From 74de121572732797c944a0f94273bc4044eae223 Mon Sep 17 00:00:00 2001 From: Amneesh Singh Date: Tue, 18 Oct 2022 00:03:14 +0530 Subject: [PATCH 001/144] default-crate-overrides: add alsa-lib for alsa-sys crate Signed-off-by: Amneesh Singh --- pkgs/build-support/rust/default-crate-overrides.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/build-support/rust/default-crate-overrides.nix b/pkgs/build-support/rust/default-crate-overrides.nix index f6383af44e82..fa421406e679 100644 --- a/pkgs/build-support/rust/default-crate-overrides.nix +++ b/pkgs/build-support/rust/default-crate-overrides.nix @@ -28,6 +28,7 @@ , rdkafka , udev , libevdev +, alsa-lib , ... }: @@ -35,6 +36,11 @@ let inherit (darwin.apple_sdk.frameworks) CoreFoundation Security; in { + alsa-sys = attrs: { + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ alsa-lib ]; + }; + cairo-rs = attrs: { buildInputs = [ cairo ]; }; From 40d0d325d3e62d2e4d9a095f461d7a247499d289 Mon Sep 17 00:00:00 2001 From: Eric Drechsel Date: Thu, 20 Oct 2022 16:25:19 -0700 Subject: [PATCH 002/144] obsidian: enable wayland flag if NIXOS_OZONE_WL is set --- pkgs/applications/misc/obsidian/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/obsidian/default.nix b/pkgs/applications/misc/obsidian/default.nix index 2ef17f9c1cdf..e7b5d668aa5a 100644 --- a/pkgs/applications/misc/obsidian/default.nix +++ b/pkgs/applications/misc/obsidian/default.nix @@ -51,7 +51,8 @@ let runHook preInstall mkdir -p $out/bin makeWrapper ${electron_18}/bin/electron $out/bin/obsidian \ - --add-flags $out/share/obsidian/app.asar + --add-flags $out/share/obsidian/app.asar \ + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland}}" install -m 444 -D resources/app.asar $out/share/obsidian/app.asar install -m 444 -D resources/obsidian.asar $out/share/obsidian/obsidian.asar install -m 444 -D "${desktopItem}/share/applications/"* \ From 9508a4ac68b3818631ae644e9c0beea597fc9dcf Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 3 Nov 2022 12:33:27 -0400 Subject: [PATCH 003/144] fetchCrate: rewrite in terms of fetchzip --- pkgs/build-support/rust/fetchcrate.nix | 35 +++++--------------------- 1 file changed, 6 insertions(+), 29 deletions(-) diff --git a/pkgs/build-support/rust/fetchcrate.nix b/pkgs/build-support/rust/fetchcrate.nix index 4e6c38b032ce..53219b2d0629 100644 --- a/pkgs/build-support/rust/fetchcrate.nix +++ b/pkgs/build-support/rust/fetchcrate.nix @@ -1,38 +1,15 @@ -{ lib, fetchurl, unzip }: +{ lib, fetchzip }: { crateName ? args.pname , pname ? null , version -, sha256 -, ... } @ args: +, ... +} @ args: assert pname == null || pname == crateName; -lib.overrideDerivation (fetchurl ({ - +fetchzip ({ name = "${crateName}-${version}.tar.gz"; url = "https://crates.io/api/v1/crates/${crateName}/${version}/download"; - recursiveHash = true; - - downloadToTemp = true; - - postFetch = - '' - export PATH=${unzip}/bin:$PATH - - unpackDir="$TMPDIR/unpack" - mkdir "$unpackDir" - cd "$unpackDir" - - renamed="$TMPDIR/${crateName}-${version}.tar.gz" - mv "$downloadedFile" "$renamed" - unpackFile "$renamed" - fn=$(cd "$unpackDir" && echo *) - if [ -f "$unpackDir/$fn" ]; then - mkdir $out - fi - mv "$unpackDir/$fn" "$out" - ''; -} // removeAttrs args [ "crateName" "pname" "version" ])) -# Hackety-hack: we actually need unzip hooks, too -(x: {nativeBuildInputs = x.nativeBuildInputs++ [unzip];}) + extension = "tar.gz"; +} // removeAttrs args [ "crateName" "pname" "version" ]) From 896198cd9f238fe13693237fb1a3b31b12f749d9 Mon Sep 17 00:00:00 2001 From: phdcybersec <82591009+phdcybersec@users.noreply.github.com> Date: Mon, 21 Nov 2022 23:34:36 +0100 Subject: [PATCH 004/144] nap: init at 0.1.1 --- maintainers/maintainer-list.nix | 10 ++++++++++ pkgs/development/tools/nap/default.nix | 24 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 36 insertions(+) create mode 100644 pkgs/development/tools/nap/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ee2014d6525b..a5508515e046 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10781,6 +10781,16 @@ fingerprint = "5D69 CF04 B7BC 2BC1 A567 9267 00BC F29B 3208 0700"; }]; }; + phdcybersec = { + name = "Léo Lavaur"; + email = "phdcybersec@pm.me"; + + github = "phdcybersec"; + githubId = 82591009; + keys = [{ + fingerprint = "7756 E88F 3C6A 47A5 C5F0 CDFB AB54 6777 F93E 20BF"; + }]; + }; phfroidmont = { name = "Paul-Henri Froidmont"; email = "nix.contact-j9dw4d@froidmont.org"; diff --git a/pkgs/development/tools/nap/default.nix b/pkgs/development/tools/nap/default.nix new file mode 100644 index 000000000000..3d925b33801c --- /dev/null +++ b/pkgs/development/tools/nap/default.nix @@ -0,0 +1,24 @@ +{ lib, buildGoModule, fetchFromGitHub, callPackage }: + +buildGoModule rec { + pname = "nap"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "maaslalani"; + repo = pname; + rev = "v${version}"; + sha256 = "0b3sz8zp1nwcjl02b3lli5yjc7vfay1ig6fs8bgxwz22imfx076p"; + }; + + vendorSha256 = "sha256-puCqql77kvdWTcwp8z6LExBt/HbNRNe0f+wtM0kLoWM="; + + excludedPackages = ".nap"; + + meta = { + description = "Code snippets in your terminal 🛌"; + homepage = "https://github.com/maaslalani/nap"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phdcybersec maaslalani ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4f48ad8215f6..eea32ad6e690 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17434,6 +17434,8 @@ with pkgs; nailgun = callPackage ../development/tools/nailgun { }; + nap = callPackage ../development/tools/nap { }; + nil = callPackage ../development/tools/nil { }; ninja = callPackage ../development/tools/build-managers/ninja { }; From e3c8c4636786154731b35cfb1bc25bc73e475caf Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sun, 20 Nov 2022 07:09:57 +0100 Subject: [PATCH 005/144] unixODBCDrivers.psql: unbreak on darwin --- pkgs/development/libraries/unixODBCDrivers/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index 1e5149683d4c..5b5c9d1a57e9 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -20,11 +20,10 @@ }; meta = with lib; { - broken = stdenv.isDarwin; description = "Official PostgreSQL ODBC Driver"; homepage = "https://odbc.postgresql.org/"; license = licenses.lgpl2; - platforms = platforms.linux; + platforms = platforms.unix; }; }; From 06a54ab073bc0fad87d33f0f6d28027820b81318 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sun, 20 Nov 2022 07:10:46 +0100 Subject: [PATCH 006/144] unixODBCDrivers.sqlite: unbreak on darwin --- pkgs/development/libraries/unixODBCDrivers/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index 5b5c9d1a57e9..20c969ade951 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -125,11 +125,10 @@ }; meta = with lib; { - broken = stdenv.isDarwin; description = "ODBC driver for SQLite"; homepage = "http://www.ch-werner.de/sqliteodbc"; license = licenses.bsd2; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = with maintainers; [ vlstill ]; }; }; From cc12a9ae0362084079df41923897010d415b998d Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sun, 20 Nov 2022 07:11:06 +0100 Subject: [PATCH 007/144] unixODBCDrivers.mariadb: fix build on darwin --- pkgs/development/libraries/unixODBCDrivers/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index 20c969ade951..16b7c1aa0242 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -46,7 +46,9 @@ preConfigure = '' # we don't want to build a .pkg - sed -i 's/ADD_SUBDIRECTORY(osxinstall)//g' CMakeLists.txt + substituteInPlace CMakeLists.txt \ + --replace "IF(APPLE)" "IF(0)" \ + --replace "CMAKE_SYSTEM_NAME MATCHES AIX" "APPLE" ''; cmakeFlags = [ @@ -61,7 +63,6 @@ }; meta = with lib; { - broken = stdenv.isDarwin; description = "MariaDB ODBC database driver"; homepage = "https://downloads.mariadb.org/connector-odbc/"; license = licenses.gpl2; From 26eeca7b9de36e798997607bb6dae817598ce0d3 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Fri, 25 Nov 2022 15:00:47 +0100 Subject: [PATCH 008/144] organicmaps: 2022.11.02-2 -> 2022.11.24-3 --- pkgs/applications/misc/organicmaps/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/organicmaps/default.nix b/pkgs/applications/misc/organicmaps/default.nix index 639f1d4773c1..625f1cb26a9a 100644 --- a/pkgs/applications/misc/organicmaps/default.nix +++ b/pkgs/applications/misc/organicmaps/default.nix @@ -19,13 +19,13 @@ mkDerivation rec { pname = "organicmaps"; - version = "2022.11.02-2"; + version = "2022.11.24-3"; src = fetchFromGitHub { owner = "organicmaps"; repo = "organicmaps"; rev = "${version}-android"; - sha256 = "sha256-E/lJDw1QMPT0QcaTOxEyJL4hmEFkq21vQkgZbssszJg="; + sha256 = "sha256-4RW7/sCtOXxA8n0Jx4ksNGRg7r8ErujmyzbnA1pi6ng="; fetchSubmodules = true; }; From 71eee85daa5b6743d55a1a9f96a0f1064fa666f7 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 25 Nov 2022 18:02:39 +0100 Subject: [PATCH 009/144] rml: init at 1.09.07 --- pkgs/development/compilers/rml/default.nix | 36 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/compilers/rml/default.nix diff --git a/pkgs/development/compilers/rml/default.nix b/pkgs/development/compilers/rml/default.nix new file mode 100644 index 000000000000..7eebf8a622b4 --- /dev/null +++ b/pkgs/development/compilers/rml/default.nix @@ -0,0 +1,36 @@ +{ lib +, stdenv +, fetchFromGitHub +, ocamlPackages +}: + +stdenv.mkDerivation rec { + pname = "rml"; + version = "1.09.07"; + + src = fetchFromGitHub { + owner = "reactiveml"; + repo = pname; + rev = "${pname}-${version}-2021-07-26"; + hash = "sha256-UFqXQBeIQMSV4O439j9s06p1hh7xA98Tu79FsjK9PIY="; + }; + + nativeBuildInputs = with ocamlPackages; [ + ocaml + ]; + + buildInputs = with ocamlPackages; [ + num + ]; + + configureFlags = [ "--prefix" "${placeholder "out"}" ]; + + dontAddPrefix = true; + + meta = with lib; { + description = "ReactiveML: a programming language for implementing interactive systems"; + homepage = "https://rml.lri.fr"; + license = with licenses; [ qpl lgpl21Plus ]; + maintainers = with maintainers; [ wegank ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aa0c6b4c803a..bc27df262198 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14928,6 +14928,8 @@ with pkgs; rgbds = callPackage ../development/compilers/rgbds { }; + rml = callPackage ../development/compilers/rml { }; + composable_kernel = callPackage ../development/libraries/composable_kernel { inherit (llvmPackages) openmp; }; From 1b23119f2186d594f2adb1543bcc1bf293c42ca6 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 28 Nov 2022 23:51:18 +0100 Subject: [PATCH 010/144] qt6.qtconnectivity: fix build on aarch64-darwin --- pkgs/development/libraries/qt-6/default.nix | 4 +++- pkgs/development/libraries/qt-6/modules/qtconnectivity.nix | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qt-6/default.nix b/pkgs/development/libraries/qt-6/default.nix index b2409b1398f0..18b32c17802e 100644 --- a/pkgs/development/libraries/qt-6/default.nix +++ b/pkgs/development/libraries/qt-6/default.nix @@ -90,7 +90,9 @@ let qt3d = callPackage ./modules/qt3d.nix { }; qt5compat = callPackage ./modules/qt5compat.nix { }; qtcharts = callPackage ./modules/qtcharts.nix { }; - qtconnectivity = callPackage ./modules/qtconnectivity.nix { }; + qtconnectivity = callPackage ./modules/qtconnectivity.nix { + inherit (darwin.apple_sdk_11_0.frameworks) PCSC; + }; qtdatavis3d = callPackage ./modules/qtdatavis3d.nix { }; qtdeclarative = callPackage ./modules/qtdeclarative.nix { }; qtdoc = callPackage ./modules/qtdoc.nix { }; diff --git a/pkgs/development/libraries/qt-6/modules/qtconnectivity.nix b/pkgs/development/libraries/qt-6/modules/qtconnectivity.nix index 33fbd7231548..c62f13167fb1 100644 --- a/pkgs/development/libraries/qt-6/modules/qtconnectivity.nix +++ b/pkgs/development/libraries/qt-6/modules/qtconnectivity.nix @@ -5,11 +5,13 @@ , qtdeclarative , bluez , pkg-config +, PCSC }: qtModule { pname = "qtconnectivity"; qtInputs = [ qtbase qtdeclarative ]; - buildInputs = [ bluez ]; nativeBuildInputs = [ pkg-config ]; + buildInputs = lib.optionals stdenv.isLinux [ bluez ]; + propagatedBuildInputs = lib.optionals stdenv.isDarwin [ PCSC ]; } From 8091739d36c795d937689eafc496f8f86f49eb14 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 25 Nov 2022 15:03:27 +0100 Subject: [PATCH 011/144] qt6.qtmultimedia: unbreak on aarch64-darwin --- pkgs/development/libraries/qt-6/default.nix | 1 + .../libraries/qt-6/modules/qtmultimedia.nix | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qt-6/default.nix b/pkgs/development/libraries/qt-6/default.nix index 18b32c17802e..f7759e37df97 100644 --- a/pkgs/development/libraries/qt-6/default.nix +++ b/pkgs/development/libraries/qt-6/default.nix @@ -102,6 +102,7 @@ let qtlottie = callPackage ./modules/qtlottie.nix { }; qtmultimedia = callPackage ./modules/qtmultimedia.nix { inherit gstreamer gst-plugins-base gst-plugins-good gst-libav gst-vaapi; + inherit (darwin.apple_sdk_11_0.frameworks) VideoToolbox; }; qtnetworkauth = callPackage ./modules/qtnetworkauth.nix { }; qtpositioning = callPackage ./modules/qtpositioning.nix { }; diff --git a/pkgs/development/libraries/qt-6/modules/qtmultimedia.nix b/pkgs/development/libraries/qt-6/modules/qtmultimedia.nix index bfd33cadf395..96ea3d18bab6 100644 --- a/pkgs/development/libraries/qt-6/modules/qtmultimedia.nix +++ b/pkgs/development/libraries/qt-6/modules/qtmultimedia.nix @@ -17,12 +17,21 @@ , elfutils , libunwind , orc +, VideoToolbox }: qtModule { pname = "qtmultimedia"; qtInputs = [ qtbase qtdeclarative qtsvg qtshadertools ]; nativeBuildInputs = [ pkg-config ]; - buildInputs = [ libpulseaudio elfutils libunwind alsa-lib wayland orc ]; - propagatedBuildInputs = [ gstreamer gst-plugins-base gst-plugins-good gst-libav gst-vaapi ]; + buildInputs = [ libunwind orc ] + ++ lib.optionals stdenv.isLinux [ libpulseaudio elfutils alsa-lib wayland ]; + propagatedBuildInputs = [ gstreamer gst-plugins-base gst-plugins-good gst-libav ] + ++ lib.optionals stdenv.isLinux [ gst-vaapi ] + ++ lib.optionals stdenv.isDarwin [ VideoToolbox ]; + + NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin + "-include AudioToolbox/AudioToolbox.h"; + NIX_LDFLAGS = lib.optionalString stdenv.isDarwin + "-framework AudioToolbox"; } From 2e7f0a84c0203dc2ca0d146d88905b302261d27e Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 25 Nov 2022 15:06:12 +0100 Subject: [PATCH 012/144] qt6.qtserialport: unbreak on aarch64-darwin --- pkgs/development/libraries/qt-6/modules/qtserialport.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-6/modules/qtserialport.nix b/pkgs/development/libraries/qt-6/modules/qtserialport.nix index 96b7a25bb3b4..2d23ae17cc5f 100644 --- a/pkgs/development/libraries/qt-6/modules/qtserialport.nix +++ b/pkgs/development/libraries/qt-6/modules/qtserialport.nix @@ -10,5 +10,5 @@ qtModule { pname = "qtserialport"; qtInputs = [ qtbase ]; nativeBuildInputs = [ pkg-config ]; - propagatedBuildInputs = [ udev ]; + propagatedBuildInputs = lib.optionals stdenv.isLinux [ udev ]; } From 65a2669c011e25b1799b5c58ee13668f160a4a94 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 25 Nov 2022 15:07:25 +0100 Subject: [PATCH 013/144] qt6.qtspeech: unbreak on aarch64-darwin --- pkgs/development/libraries/qt-6/default.nix | 4 +++- pkgs/development/libraries/qt-6/modules/qtspeech.nix | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qt-6/default.nix b/pkgs/development/libraries/qt-6/default.nix index f7759e37df97..aef216f5a689 100644 --- a/pkgs/development/libraries/qt-6/default.nix +++ b/pkgs/development/libraries/qt-6/default.nix @@ -110,7 +110,9 @@ let qtserialbus = callPackage ./modules/qtserialbus.nix { }; qtserialport = callPackage ./modules/qtserialport.nix { }; qtshadertools = callPackage ./modules/qtshadertools.nix { }; - qtspeech = callPackage ./modules/qtspeech.nix { }; + qtspeech = callPackage ./modules/qtspeech.nix { + inherit (darwin.apple_sdk_11_0.frameworks) Cocoa; + }; qtquick3d = callPackage ./modules/qtquick3d.nix { }; qtquick3dphysics = callPackage ./modules/qtquick3dphysics.nix { }; qtquicktimeline = callPackage ./modules/qtquicktimeline.nix { }; diff --git a/pkgs/development/libraries/qt-6/modules/qtspeech.nix b/pkgs/development/libraries/qt-6/modules/qtspeech.nix index 64f1e2c14a8e..ec713bc98c68 100644 --- a/pkgs/development/libraries/qt-6/modules/qtspeech.nix +++ b/pkgs/development/libraries/qt-6/modules/qtspeech.nix @@ -1,15 +1,19 @@ { qtModule +, lib +, stdenv , qtbase , qtmultimedia , pkg-config , flite , alsa-lib , speechd +, Cocoa }: qtModule { pname = "qtspeech"; qtInputs = [ qtbase qtmultimedia ]; nativeBuildInputs = [ pkg-config ]; - buildInputs = [ flite alsa-lib speechd ]; + buildInputs = lib.optionals stdenv.isLinux [ flite alsa-lib speechd ]; + propagatedBuildInputs = lib.optionals stdenv.isDarwin [ Cocoa ]; } From dfb9d038c512b078442d982b1ee4ce9694610c49 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 21 Nov 2022 16:35:40 +0100 Subject: [PATCH 014/144] qt6.qttools: fix build on aarch64-darwin --- pkgs/development/libraries/qt-6/modules/qttools.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/qt-6/modules/qttools.nix b/pkgs/development/libraries/qt-6/modules/qttools.nix index 06ce64424d55..df4b043eb78a 100644 --- a/pkgs/development/libraries/qt-6/modules/qttools.nix +++ b/pkgs/development/libraries/qt-6/modules/qttools.nix @@ -3,12 +3,14 @@ , lib , qtbase , qtdeclarative +, cups , substituteAll }: qtModule { pname = "qttools"; qtInputs = [ qtbase qtdeclarative ]; + propagatedBuildInputs = lib.optionals stdenv.isDarwin [ cups ]; patches = [ ../patches/qttools-paths.patch ]; From df46edff3e5fbe5b4a1d47e0b95889160990339c Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Thu, 24 Nov 2022 13:24:59 +0100 Subject: [PATCH 015/144] qt6.qtwebview: add aarch64-darwin support --- pkgs/development/libraries/qt-6/default.nix | 4 +++- pkgs/development/libraries/qt-6/modules/qtwebview.nix | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qt-6/default.nix b/pkgs/development/libraries/qt-6/default.nix index aef216f5a689..35e486652c42 100644 --- a/pkgs/development/libraries/qt-6/default.nix +++ b/pkgs/development/libraries/qt-6/default.nix @@ -126,7 +126,9 @@ let qtwebchannel = callPackage ./modules/qtwebchannel.nix { }; qtwebengine = callPackage ./modules/qtwebengine.nix { }; qtwebsockets = callPackage ./modules/qtwebsockets.nix { }; - qtwebview = callPackage ./modules/qtwebview.nix { }; + qtwebview = callPackage ./modules/qtwebview.nix { + inherit (darwin.apple_sdk_11_0.frameworks) WebKit; + }; wrapQtAppsHook = makeSetupHook { deps = [ buildPackages.makeWrapper ]; diff --git a/pkgs/development/libraries/qt-6/modules/qtwebview.nix b/pkgs/development/libraries/qt-6/modules/qtwebview.nix index ba784f73ad45..1e7c42397792 100644 --- a/pkgs/development/libraries/qt-6/modules/qtwebview.nix +++ b/pkgs/development/libraries/qt-6/modules/qtwebview.nix @@ -3,9 +3,12 @@ , qtModule , qtdeclarative , qtwebengine +, WebKit }: qtModule { pname = "qtwebview"; - qtInputs = [ qtdeclarative qtwebengine ]; + qtInputs = [ qtdeclarative ] + ++ lib.optionals (!stdenv.isDarwin) [ qtwebengine ]; + propagatedBuildInputs = lib.optionals stdenv.isDarwin [ WebKit ]; } From c44dd89beff94c7b1c41904894f93a03e74d0c08 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 21 Nov 2022 20:58:04 +0100 Subject: [PATCH 016/144] qt6.qtbase: fix build on x86_64-darwin --- pkgs/development/libraries/qt-6/modules/qtbase.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/qt-6/modules/qtbase.nix b/pkgs/development/libraries/qt-6/modules/qtbase.nix index 436fe4633075..50f8c830f789 100644 --- a/pkgs/development/libraries/qt-6/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-6/modules/qtbase.nix @@ -162,6 +162,8 @@ stdenv.mkDerivation rec { python3 at-spi2-core libinput + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ + AppKit ] ++ lib.optional withGtk3 gtk3 ++ lib.optional developerBuild gdb From 5821ec24784bb9f7063d3a09d16f5f5967f172c5 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Thu, 24 Nov 2022 13:26:48 +0100 Subject: [PATCH 017/144] qt6.qtquick3dphysics: fix build on x86_64-darwin --- pkgs/development/libraries/qt-6/modules/qtquick3dphysics.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/qt-6/modules/qtquick3dphysics.nix b/pkgs/development/libraries/qt-6/modules/qtquick3dphysics.nix index 5ace804fe4c5..94e6cb9920c5 100644 --- a/pkgs/development/libraries/qt-6/modules/qtquick3dphysics.nix +++ b/pkgs/development/libraries/qt-6/modules/qtquick3dphysics.nix @@ -1,4 +1,6 @@ { qtModule +, lib +, stdenv , qtbase , qtquick3d }: @@ -6,4 +8,6 @@ qtModule { pname = "qtquick3dphysics"; qtInputs = [ qtbase qtquick3d ]; + NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) + "-faligned-allocation"; } From 743fdc3a47e8fdfd36889a19d2c983cca42fe48f Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Tue, 29 Nov 2022 00:32:31 +0100 Subject: [PATCH 018/144] python3Packages.pyqt6: mark as broken on darwin --- pkgs/development/python-modules/pyqt/6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pyqt/6.x.nix b/pkgs/development/python-modules/pyqt/6.x.nix index c2ef82a158c6..00933da8471a 100644 --- a/pkgs/development/python-modules/pyqt/6.x.nix +++ b/pkgs/development/python-modules/pyqt/6.x.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , isPy27 , fetchPypi @@ -134,5 +135,7 @@ buildPythonPackage rec { license = licenses.gpl3Only; platforms = platforms.mesaPlatforms; maintainers = with maintainers; [ LunNova ]; + # python3Packages.pyqt-builder needs to be patched + broken = stdenv.isDarwin; }; } From c0d8c84f4024a3b2b6a7b648a3b692532bd84a2c Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Tue, 29 Nov 2022 00:33:35 +0100 Subject: [PATCH 019/144] qt6.qtbase: add aarch64-darwin support --- pkgs/development/libraries/qt-6/default.nix | 10 +++- .../libraries/qt-6/modules/qtbase.nix | 56 ++++++++++++++----- pkgs/development/libraries/qt-6/qtModule.nix | 2 +- pkgs/top-level/all-packages.nix | 6 +- 4 files changed, 54 insertions(+), 20 deletions(-) diff --git a/pkgs/development/libraries/qt-6/default.nix b/pkgs/development/libraries/qt-6/default.nix index 35e486652c42..54c9f4863637 100644 --- a/pkgs/development/libraries/qt-6/default.nix +++ b/pkgs/development/libraries/qt-6/default.nix @@ -23,6 +23,7 @@ , gtk3 , dconf , libglvnd +, darwin , buildPackages # options @@ -43,7 +44,7 @@ let addPackages = self: with self; let - callPackage = self.newScope { inherit qtModule srcs; }; + callPackage = self.newScope ({ inherit qtModule stdenv srcs; }); in { @@ -53,9 +54,16 @@ let withGtk3 = true; inherit (srcs.qtbase) src version; inherit bison cups harfbuzz libGL dconf gtk3 developerBuild cmake; + inherit (darwin.apple_sdk_11_0.frameworks) AGL AVFoundation AppKit GSS MetalKit; patches = [ ./patches/qtbase-qmake-pkg-config.patch ./patches/qtbase-tzdir.patch + # Remove symlink check causing build to bail out and fail. + # https://gitlab.kitware.com/cmake/cmake/-/issues/23251 + (fetchpatch { + url = "https://github.com/Homebrew/formula-patches/raw/c363f0edf9e90598d54bc3f4f1bacf95abbda282/qt/qt_internal_check_if_path_has_symlinks.patch"; + sha256 = "sha256-Gv2L8ymZSbJxcmUijKlT2NnkIB3bVH9D7YSsDX2noTU="; + }) ]; }; env = callPackage ./qt-env.nix {}; diff --git a/pkgs/development/libraries/qt-6/modules/qtbase.nix b/pkgs/development/libraries/qt-6/modules/qtbase.nix index 50f8c830f789..e1675e029fc3 100644 --- a/pkgs/development/libraries/qt-6/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-6/modules/qtbase.nix @@ -71,6 +71,13 @@ , at-spi2-core , unixODBC , unixODBCDrivers + # darwin +, xcbuild +, AGL +, AVFoundation +, AppKit +, GSS +, MetalKit # optional dependencies , cups , libmysqlclient @@ -79,7 +86,7 @@ , dconf , gtk3 # options -, libGLSupported ? true +, libGLSupported ? stdenv.isLinux , libGL , debug ? false , developerBuild ? false @@ -111,13 +118,20 @@ stdenv.mkDerivation rec { pcre2 pcre libproxy - xlibsWrapper zstd double-conversion - util-linux - systemd libb2 md4c + dbus + glib + # unixODBC drivers + unixODBCDrivers.psql + unixODBCDrivers.sqlite + unixODBCDrivers.mariadb + ] ++ lib.optionals stdenv.isLinux [ + xlibsWrapper + util-linux + systemd mtdev lksctp-tools libselinux @@ -129,8 +143,6 @@ stdenv.mkDerivation rec { libdrm libdatrie valgrind - dbus - glib udev # Text rendering fontconfig @@ -152,15 +164,18 @@ stdenv.mkDerivation rec { xorg.libXtst xorg.xcbutilcursor libepoxy - ] ++ (with unixODBCDrivers; [ - psql - sqlite - mariadb - ]) ++ lib.optional libGLSupported libGL; + ] ++ lib.optionals stdenv.isDarwin [ + AGL + AVFoundation + AppKit + GSS + MetalKit + ] ++ lib.optional libGLSupported libGL; buildInputs = [ python3 at-spi2-core + ] ++ lib.optionals (!stdenv.isDarwin) [ libinput ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ AppKit @@ -182,6 +197,8 @@ stdenv.mkDerivation rec { # https://bugreports.qt.io/browse/QTBUG-97568 postPatch = '' substituteInPlace src/corelib/CMakeLists.txt --replace /bin/ls ${coreutils}/bin/ls + '' + lib.optionalString stdenv.isDarwin '' + substituteInPlace cmake/QtAutoDetect.cmake --replace "/usr/bin/xcrun" "${xcbuild}/bin/xcrun" ''; fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh; @@ -199,14 +216,23 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DINSTALL_PLUGINSDIR=${qtPluginPrefix}" "-DINSTALL_QMLDIR=${qtQmlPrefix}" - "-DQT_FEATURE_journald=ON" - "-DQT_FEATURE_sctp=ON" "-DQT_FEATURE_libproxy=ON" "-DQT_FEATURE_system_sqlite=ON" - "-DQT_FEATURE_vulkan=ON" "-DQT_FEATURE_openssl_linked=ON" + ] ++ lib.optionals (!stdenv.isDarwin) [ + "-DQT_FEATURE_sctp=ON" + "-DQT_FEATURE_journald=ON" + "-DQT_FEATURE_vulkan=ON" + ] ++ lib.optionals stdenv.isDarwin [ + # build as a set of dynamic libraries + "-DFEATURE_framework=OFF" ]; + NIX_LDFLAGS = toString (lib.optionals stdenv.isDarwin [ + # Undefined symbols for architecture arm64: "___gss_c_nt_hostbased_service_oid_desc" + "-framework GSS" + ]); + outputs = [ "out" "dev" ]; postInstall = '' @@ -261,6 +287,6 @@ stdenv.mkDerivation rec { description = "A cross-platform application framework for C++"; license = with licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ]; maintainers = with maintainers; [ milahu nickcao LunNova ]; - platforms = platforms.linux; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/qt-6/qtModule.nix b/pkgs/development/libraries/qt-6/qtModule.nix index 5f6d429edf58..06e1f4d179b2 100644 --- a/pkgs/development/libraries/qt-6/qtModule.nix +++ b/pkgs/development/libraries/qt-6/qtModule.nix @@ -83,6 +83,6 @@ stdenv.mkDerivation (args // { description = "A cross-platform application framework for C++"; license = with licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ]; maintainers = with maintainers; [ milahu nickcao ]; - platforms = platforms.linux; + platforms = platforms.unix; } // (args.meta or { }); }) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d58efc3c6ac..9092fd34840d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22060,11 +22060,11 @@ with pkgs; qt6 = recurseIntoAttrs (makeOverridable (import ../development/libraries/qt-6) { inherit newScope; - inherit lib stdenv fetchurl fetchpatch fetchgit fetchFromGitHub makeSetupHook makeWrapper writeText; + inherit lib fetchurl fetchpatch fetchgit fetchFromGitHub makeSetupHook makeWrapper writeText; inherit bison cups dconf harfbuzz libGL perl gtk3 ninja; inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-libav gst-vaapi; - inherit buildPackages; - inherit libglvnd; + inherit darwin buildPackages libglvnd; + stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; cmake = cmake.overrideAttrs (attrs: { patches = attrs.patches ++ [ ../development/libraries/qt-6/patches/cmake.patch From 44b66a31f8533bf55797ba080a42f3a91e17e959 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Tue, 29 Nov 2022 01:10:18 +0100 Subject: [PATCH 020/144] qt6Packages.qtpbfimageplugin: fix build on aarch64-darwin --- pkgs/development/libraries/qtpbfimageplugin/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/libraries/qtpbfimageplugin/default.nix b/pkgs/development/libraries/qtpbfimageplugin/default.nix index 9dbc2491ad95..69a492180dbc 100644 --- a/pkgs/development/libraries/qtpbfimageplugin/default.nix +++ b/pkgs/development/libraries/qtpbfimageplugin/default.nix @@ -23,9 +23,16 @@ stdenv.mkDerivation rec { '' + lib.optionalString stdenv.isDarwin '' # Fix darwin build substituteInPlace pbfplugin.pro \ + --replace '$$PROTOBUF/include' '${protobuf}/include' \ --replace '$$PROTOBUF/lib/libprotobuf-lite.a' '${protobuf}/lib/libprotobuf-lite.dylib' ''; + # error: 'path' is unavailable: introduced in macOS 10.15 + qmakeFlags = lib.optionals stdenv.isDarwin [ + "CONFIG+=c++17" + "QMAKE_MACOSX_DEPLOYMENT_TARGET=10.15" + ]; + meta = with lib; { description = "Qt image plugin for displaying Mapbox vector tiles"; longDescription = '' From 9f97f46403500b3a5fc1efeaac14ccbf55793319 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 29 Nov 2022 04:20:00 +0000 Subject: [PATCH 021/144] snowflake: 2.3.1 -> 2.4.0 --- pkgs/tools/networking/snowflake/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/networking/snowflake/default.nix b/pkgs/tools/networking/snowflake/default.nix index 5118186c4de2..1ff98c7d8253 100644 --- a/pkgs/tools/networking/snowflake/default.nix +++ b/pkgs/tools/networking/snowflake/default.nix @@ -1,20 +1,24 @@ -{ lib, buildGoModule, fetchgit }: +{ lib, buildGoModule, fetchFromGitLab }: buildGoModule rec { pname = "snowflake"; - version = "2.3.1"; + version = "2.4.0"; - src = fetchgit { - url = "https://git.torproject.org/pluggable-transports/${pname}"; + src = fetchFromGitLab { + domain = "gitlab.torproject.org"; + group = "tpo"; + owner = "anti-censorship/pluggable-transports"; + repo = "snowflake"; rev = "v${version}"; - sha256 = "sha256-4/ZTLyST73krOL87am28TM+1mktchpoCSaASMqQl5e8="; + sha256 = "sha256-Jr9ihExw++cRZpunP43DbDx0RTaGpgil0avs4mTW8tA="; }; - vendorSha256 = "sha256-a2Ng+D1I0v5odChM6XVVnNwea/0SOTOmdm2dqKaSU3s="; + vendorHash = "sha256-66GqvwHPkMii5oXZV36ayYYkW1oaq5qTjkEA5BeS/5U="; meta = with lib; { description = "System to defeat internet censorship"; homepage = "https://snowflake.torproject.org/"; + changelog = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/raw/v${version}/ChangeLog"; maintainers = with maintainers; [ lourkeur ]; license = licenses.bsd3; }; From 321e4a5a9fd07eb6ffa7dd61f4284015012a772e Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sun, 30 Oct 2022 12:45:06 +0100 Subject: [PATCH 022/144] python3Packages.sphinxext-opengraph: 0.6.3 -> 0.7.3 https://github.com/wpilibsuite/sphinxext-opengraph/releases/tag/v0.7.3 --- .../python-modules/sphinxext-opengraph/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sphinxext-opengraph/default.nix b/pkgs/development/python-modules/sphinxext-opengraph/default.nix index 76e5079e9163..b333d508e106 100644 --- a/pkgs/development/python-modules/sphinxext-opengraph/default.nix +++ b/pkgs/development/python-modules/sphinxext-opengraph/default.nix @@ -4,19 +4,26 @@ , sphinx , pytestCheckHook , beautifulsoup4 +, setuptools-scm }: buildPythonPackage rec { pname = "sphinxext-opengraph"; - version = "0.6.3"; + version = "0.7.3"; src = fetchFromGitHub { owner = "wpilibsuite"; repo = "sphinxext-opengraph"; rev = "v${version}"; - sha256 = "sha256-YR6TlsmND5IhLdbPbmtVhRN2vSZfx70g2a6Yn6y6L/M="; + hash = "sha256-KzbtuDTMXsp9yf3hiiG6VzpUbSEm3bOtujApsG37H14="; }; + SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + setuptools-scm + ]; + propagatedBuildInputs = [ sphinx ]; From 909cfd2b8dd8bd43078975043c5deceeb1cae492 Mon Sep 17 00:00:00 2001 From: Nicolas Benes Date: Sat, 12 Nov 2022 01:01:42 +0100 Subject: [PATCH 023/144] cups-kyodialog: 8.1601 -> 9.2-20220928 * Rename `cups-kyodialog3` -> `cups-kyodialog` * Update from 8.1601 (2016) to 9.2 (2022) with support for more and recent printer models (170 vs. 373 PPD files) * Make Qt GUI optional to reduce closure size, Qt4 -> Qt5 * Avoid full paths to kyodialog filters in PPD files. A PPD file is copied to /etc/cups/ppd/ for each configured printer and is not updated when the cups-kyodialog package is updated, thus, potentially creating dangling references to /nix/store or invoking the old version of the cups filters. --- pkgs/misc/cups/drivers/kyodialog/default.nix | 106 ++++++++++++++++++ pkgs/misc/cups/drivers/kyodialog3/default.nix | 62 ---------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 108 insertions(+), 63 deletions(-) create mode 100644 pkgs/misc/cups/drivers/kyodialog/default.nix delete mode 100644 pkgs/misc/cups/drivers/kyodialog3/default.nix diff --git a/pkgs/misc/cups/drivers/kyodialog/default.nix b/pkgs/misc/cups/drivers/kyodialog/default.nix new file mode 100644 index 000000000000..7137b5df56bf --- /dev/null +++ b/pkgs/misc/cups/drivers/kyodialog/default.nix @@ -0,0 +1,106 @@ +{ lib +, stdenv +, fetchzip +, cups +, autoPatchelfHook +, python3Packages + +# Sets the default paper format: use "EU" for A4, or "Global" for Letter +, region ? "EU" +# optional GUI, quite redundant to CUPS admin web GUI +, withQtGui ? false +, qt5 +}: + +# Open issues: +# +# Printing in grayscale mode (e.g. the test page) generates a warning +# > [Job 59] Grayscale/monochrome printing requested for this job but Poppler is not able to convert to grayscale/monochrome PostScript. +# > [Job 59] Use \"pdftops-renderer\" option (see cups-filters README file) to use Ghostscript or MuPDF for the PDF -> PostScript conversion. +# +# This is related to https://github.com/OpenPrinting/cups-filters/issues/169. + +assert region == "Global" || region == "EU"; + +let + kyodialog_version = "9.2"; + date = "20220928"; +in +stdenv.mkDerivation rec { + pname = "cups-kyodialog"; + version = "${kyodialog_version}-${date}"; + + dontStrip = true; + + src = fetchzip { + urls = [ + "https://www.kyoceradocumentsolutions.us/content/download-center-americas/us/drivers/drivers/KyoceraLinuxPackages_${date}_tar_gz.download.gz" + "https://web.archive.org/web/20221122230412/https://www.kyoceradocumentsolutions.us/content/download-center-americas/us/drivers/drivers/KyoceraLinuxPackages_${date}_tar_gz.download.gz" + ]; + sha256 = "sha256-WCHuAQO2T6S8JtRsI2Yf/ypeCLMH365Ax/qX+Ah2s3k="; + extension = "tar.gz"; + stripRoot = false; + postFetch = '' + # delete redundant Linux package dirs to reduce size in the Nix store; only keep Debian + rm -r $out/{CentOS,Fedora,OpenSUSE,Redhat,Ubuntu} + ''; + }; + + sourceRoot = "."; + + unpackCmd = let + platforms = { + x86_64-linux = "amd64"; + i686-linux = "i386"; + }; + platform = platforms.${stdenv.hostPlatform.system} or (throw "unsupported system: ${stdenv.hostPlatform.system}"); + in '' + ar p "$src/Debian/${region}/kyodialog_${platform}/kyodialog_${kyodialog_version}-0_${platform}.deb" data.tar.gz | tar -xz + ''; + + nativeBuildInputs = [ autoPatchelfHook python3Packages.wrapPython ] + ++ lib.optionals withQtGui [ qt5.wrapQtAppsHook ]; + + buildInputs = [ cups ] ++ lib.optionals withQtGui [ qt5.qtbase ]; + + # For lib/cups/filter/kyofilter_pre_H. + # The source already contains a copy of pypdf3, but we use the Nix package + propagatedBuildInputs = with python3Packages; [ reportlab pypdf3 setuptools ]; + + installPhase = '' + # allow cups to find the ppd files + mkdir -p $out/share/cups/model + mv ./usr/share/kyocera${kyodialog_version}/ppd${kyodialog_version} $out/share/cups/model/Kyocera + + # remove absolute path prefixes to filters in ppd + find $out -name "*.ppd" -exec sed -E -i "s:/usr/lib/cups/filter/::g" {} \; + + + mkdir -p $out/lib/cups/ + mv ./usr/lib/cups/filter/ $out/lib/cups/ + # for lib/cups/filter/kyofilter_pre_H + wrapPythonProgramsIn $out/lib/cups/filter "$propagatedBuildInputs" + + + install -Dm444 usr/share/doc/kyodialog/copyright $out/share/doc/${pname}/copyright + '' + lib.optionalString withQtGui '' + install -D usr/bin/kyoPPDWrite_H $out/bin/kyoPPDWrite_H + install -D usr/bin/kyodialog${kyodialog_version} $out/bin/kyodialog + + install -Dm444 usr/share/kyocera${kyodialog_version}/appicon_H.png $out/share/${pname}/icons/appicon_H.png + + install -Dm444 usr/share/applications/kyodialog${kyodialog_version}.desktop $out/share/applications/kyodialog.desktop + substituteInPlace $out/share/applications/kyodialog.desktop \ + --replace Exec=\"/usr/bin/kyodialog${kyodialog_version}\" Exec=\"$out/bin/kyodialog\" \ + --replace Icon=/usr/share/kyocera/appicon_H.png Icon=$out/share/${pname}/icons/appicon_H.png + ''; + + meta = with lib; { + description = "CUPS drivers for several Kyocera printers"; + homepage = "https://www.kyoceradocumentsolutions.com"; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = [ maintainers.steveej ]; + platforms = [ "i686-linux" "x86_64-linux" ]; + }; +} diff --git a/pkgs/misc/cups/drivers/kyodialog3/default.nix b/pkgs/misc/cups/drivers/kyodialog3/default.nix deleted file mode 100644 index 7eeae6daa53c..000000000000 --- a/pkgs/misc/cups/drivers/kyodialog3/default.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ stdenv, lib, fetchzip, cups, autoPatchelfHook - - # Can either be "EU" or "Global"; it's unclear what the difference is - , region ? "Global", qt4 -}: - -let - platform = - if stdenv.hostPlatform.system == "x86_64-linux" then "64bit" - else if stdenv.hostPlatform.system == "i686-linux" then "32bit" - else throw "Unsupported system: ${stdenv.hostPlatform.system}"; - debPlatform = - if platform == "64bit" then "amd64" - else "i386"; - debRegion = if region == "EU" then "EU." else ""; -in -stdenv.mkDerivation rec { - pname = "cups-kyodialog3"; - version = "8.1601"; - - dontStrip = true; - - src = fetchzip { - url = "https://www.kyoceradocumentsolutions.us/content/download-center-americas/us/drivers/drivers/Kyocera_Linux_PPD_Ver_${lib.replaceChars ["."] ["_"] version}_tar_gz.download.gz"; - sha256 = "11znnlkfssakml7w80gxlz1k59f3nvhph91fkzzadnm9i7a8yjal"; - }; - - nativeBuildInputs = [ autoPatchelfHook ]; - - buildInputs = [ cups qt4 ]; - - installPhase = '' - mkdir -p $out - cd $out - - # unpack the debian archive - ar p ${src}/KyoceraLinuxPackages/${region}/${platform}/kyodialog3.en${debRegion}_0.5-0_${debPlatform}.deb data.tar.gz | tar -xz - rm -Rf KyoceraLinuxPackages - - # strip $out/usr - mv usr/* . - rmdir usr - - # allow cups to find the ppd files - mkdir -p share/cups/model - mv share/ppd/kyocera share/cups/model/Kyocera - rmdir share/ppd - - # prepend $out to all references in ppd and desktop files - find -name "*.ppd" -exec sed -E -i "s:/usr/lib:$out/lib:g" {} \; - find -name "*.desktop" -exec sed -E -i "s:/usr/lib:$out/lib:g" {} \; - ''; - - meta = with lib; { - description = "CUPS drivers for several Kyocera printers"; - homepage = "https://www.kyoceradocumentsolutions.com"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = [ maintainers.steveej ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3894b850d8ee..9f559df75cdd 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -301,6 +301,7 @@ mapAliases ({ cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15 cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; + cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12 cupsBjnp = throw "'cupsBjnp' has been renamed to/replaced by 'cups-bjnp'"; # Converted to throw 2022-02-22 cups_filters = throw "'cups_filters' has been renamed to/replaced by 'cups-filters'"; # Converted to throw 2022-02-22 curlcpp = throw "curlcpp has been removed, no active maintainers and no usage within nixpkgs"; # Added 2022-05-10 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 561df7c4bea7..be07a8a50514 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -36421,7 +36421,7 @@ with pkgs; cups-kyocera-ecosys-m552x-p502x = callPackage ../misc/cups/drivers/kyocera-ecosys-m552x-p502x {}; - cups-kyodialog3 = callPackage ../misc/cups/drivers/kyodialog3 {}; + cups-kyodialog = callPackage ../misc/cups/drivers/kyodialog {}; cups-dymo = callPackage ../misc/cups/drivers/dymo {}; From 53495400fbbbdf6791f417982ad46b0169de568e Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Fri, 2 Dec 2022 00:39:02 -0500 Subject: [PATCH 024/144] edk2: 202205 -> 202211 --- pkgs/development/compilers/edk2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/edk2/default.nix b/pkgs/development/compilers/edk2/default.nix index 8ce4322a12e9..43dc18244a91 100644 --- a/pkgs/development/compilers/edk2/default.nix +++ b/pkgs/development/compilers/edk2/default.nix @@ -34,7 +34,7 @@ buildType = if stdenv.isDarwin then edk2 = buildStdenv.mkDerivation { pname = "edk2"; - version = "202205"; + version = "202211"; patches = [ # pass targetPrefix as an env var @@ -50,7 +50,7 @@ edk2 = buildStdenv.mkDerivation { repo = "edk2"; rev = "edk2-stable${edk2.version}"; fetchSubmodules = true; - sha256 = "sha256-5V3gXZoePxRVL0miV/ku/HILT7d06E8UI28XRx8vZjA="; + sha256 = "sha256-0jE73xPyenAcgJ1mS35oTc5cYw7jJvVYxhPdhTWpKA0="; }; nativeBuildInputs = [ pythonEnv ]; From 1e260a06833347bff75975194be3a8462c513728 Mon Sep 17 00:00:00 2001 From: Raphael Robatsch Date: Fri, 4 Nov 2022 09:15:23 +0100 Subject: [PATCH 025/144] jetbrains.rider: fix test coverage analysis JetBrains.Profiler.PdbServer is used by the IDE's test coverage analyzer. It needs to be patchelf'd. --- pkgs/applications/editors/jetbrains/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index 096fdf8427a8..1208db442417 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -252,7 +252,9 @@ let }).overrideAttrs (attrs: { postPatch = lib.optionalString (!stdenv.isDarwin) (attrs.postPatch + '' interp="$(cat $NIX_CC/nix-support/dynamic-linker)" - patchelf --set-interpreter $interp lib/ReSharperHost/linux-x64/Rider.Backend + patchelf --set-interpreter $interp \ + lib/ReSharperHost/linux-x64/Rider.Backend \ + plugins/dotCommon/DotFiles/linux-x64/JetBrains.Profiler.PdbServer rm -rf lib/ReSharperHost/linux-x64/dotnet ln -s ${dotnet-sdk_6} lib/ReSharperHost/linux-x64/dotnet From 51b5602b458f8ab2b62f397fe98dcd16b7f44135 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Fri, 25 Nov 2022 17:47:47 -0800 Subject: [PATCH 026/144] nixos/networkd: add wait-online.enable option When no interfaces are managed by systemd-networkd, it will unconditionally fail. This option allows it to be disabled in those situations where it prevents system switches from succeeding. --- nixos/modules/system/boot/networkd.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index 28abf820ec09..3f6666b20482 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -1900,6 +1900,20 @@ in }; systemd.network.wait-online = { + enable = mkOption { + type = types.bool; + default = true; + example = false; + description = lib.mdDoc '' + Whether to enable the systemd-networkd-wait-online service. + + systemd-networkd-wait-online can timeout and fail if there are no network interfaces + available for it to manage. When systemd-networkd is enabled but a different service is + responsible for managing the system's internet connection (for example, NetworkManager or + connman are used to manage WiFi connections), this service is unnecessary and can be + disabled. + ''; + }; anyInterface = mkOption { description = lib.mdDoc '' Whether to consider the network online when any interface is online, as opposed to all of them. @@ -1981,6 +1995,7 @@ in }; systemd.services.systemd-networkd-wait-online = { + inherit (cfg.wait-online) enable; wantedBy = [ "network-online.target" ]; serviceConfig.ExecStart = [ "" From f8404eba3fa6a1001fc21dddfbda295615c41dd7 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Dec 2022 04:20:00 +0000 Subject: [PATCH 027/144] esbuild: 0.15.16 -> 0.15.17 https://github.com/evanw/esbuild/releases/tag/v0.15.17 --- pkgs/development/tools/esbuild/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix index d5cc59b41030..06d2b89ab0cf 100644 --- a/pkgs/development/tools/esbuild/default.nix +++ b/pkgs/development/tools/esbuild/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "esbuild"; - version = "0.15.16"; + version = "0.15.17"; src = fetchFromGitHub { owner = "evanw"; repo = "esbuild"; rev = "v${version}"; - sha256 = "sha256-m23K1BH1Cw452GN14G9rmFi0a+sGnPwIdSyWXqTqiKw="; + sha256 = "sha256-+krp/fEEm6M3YkP4N8vsTsM9O4Uf+xqw3tOpiVjX8PY="; }; vendorSha256 = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; @@ -20,6 +20,7 @@ buildGoModule rec { meta = with lib; { description = "An extremely fast JavaScript bundler"; homepage = "https://esbuild.github.io"; + changelog = "https://github.com/evanw/esbuild/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ lucus16 marsam ]; }; From be18e7928b1054aca999786420891fae8af0291a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Dec 2022 04:20:00 +0000 Subject: [PATCH 028/144] luau: 0.554 -> 0.555 https://github.com/Roblox/luau/releases/tag/0.555 --- pkgs/development/interpreters/luau/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/luau/default.nix b/pkgs/development/interpreters/luau/default.nix index 03fd14d03dd6..783717624ab2 100644 --- a/pkgs/development/interpreters/luau/default.nix +++ b/pkgs/development/interpreters/luau/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "luau"; - version = "0.554"; + version = "0.555"; src = fetchFromGitHub { owner = "Roblox"; repo = "luau"; rev = version; - sha256 = "sha256-BgCeLvMwMPsXIopSO2OH50SPqwZ4Ehqmog+3DydJ3vU="; + sha256 = "sha256-p3BTtjTmg8sS0gOugPCO1oqqboppcXa0wLHmRqmf3AA="; }; nativeBuildInputs = [ cmake ]; From 7b19557a8db8d5ae0ba4fa793495c9202c2a9c9e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Dec 2022 04:20:00 +0000 Subject: [PATCH 029/144] snowflake: 2.4.0 -> 2.4.1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/raw/v2.4.1/ChangeLog --- pkgs/tools/networking/snowflake/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/snowflake/default.nix b/pkgs/tools/networking/snowflake/default.nix index 1ff98c7d8253..b88eea42e83c 100644 --- a/pkgs/tools/networking/snowflake/default.nix +++ b/pkgs/tools/networking/snowflake/default.nix @@ -2,7 +2,7 @@ buildGoModule rec { pname = "snowflake"; - version = "2.4.0"; + version = "2.4.1"; src = fetchFromGitLab { domain = "gitlab.torproject.org"; @@ -10,7 +10,7 @@ buildGoModule rec { owner = "anti-censorship/pluggable-transports"; repo = "snowflake"; rev = "v${version}"; - sha256 = "sha256-Jr9ihExw++cRZpunP43DbDx0RTaGpgil0avs4mTW8tA="; + sha256 = "sha256-DR1H5ncFPHZWQAwOZKkfRrjwfzhirSzwtvKesaRmqcA="; }; vendorHash = "sha256-66GqvwHPkMii5oXZV36ayYYkW1oaq5qTjkEA5BeS/5U="; From f7b8a5d7f636c37f0a46ac2c5ca69a342bfccc90 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 6 Nov 2022 21:48:26 +0100 Subject: [PATCH 030/144] python310Packages.websocket-client: 1.4.1 -> 1.4.2 --- .../python-modules/websocket-client/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/websocket-client/default.nix b/pkgs/development/python-modules/websocket-client/default.nix index 1e1823095b0b..b54b0b5e2614 100644 --- a/pkgs/development/python-modules/websocket-client/default.nix +++ b/pkgs/development/python-modules/websocket-client/default.nix @@ -4,29 +4,31 @@ , pythonOlder , pytestCheckHook , python-socks -, six }: buildPythonPackage rec { pname = "websocket-client"; - version = "1.4.1"; - disabled = pythonOlder "3.6"; + version = "1.4.2"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-+WEetlyCQaZ/s3O+8ECzz4rTd6n2VGoStiC2UR6Oqe8="; + hash = "sha256-1uj5DKji3U6AJ8RWGt65RWtUBEMS26ZV58rmUs65rlk="; }; propagatedBuildInputs = [ python-socks - six ]; checkInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ "websocket" ]; + pythonImportsCheck = [ + "websocket" + ]; meta = with lib; { description = "Websocket client for Python"; From bcfe2a82e4de7d32807b8fbe7f9ac132fa4ed1cf Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 3 Dec 2022 09:56:50 +0000 Subject: [PATCH 031/144] opensnitch: transfer maintainership to onny I'm not using opensnitch myself anymore, and onny has done some great work in this area --- pkgs/tools/networking/opensnitch/daemon.nix | 2 +- pkgs/tools/networking/opensnitch/ui.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/opensnitch/daemon.nix b/pkgs/tools/networking/opensnitch/daemon.nix index 33e8030d5632..94a4c0661c9a 100644 --- a/pkgs/tools/networking/opensnitch/daemon.nix +++ b/pkgs/tools/networking/opensnitch/daemon.nix @@ -74,7 +74,7 @@ buildGoModule rec { description = "An application firewall"; homepage = "https://github.com/evilsocket/opensnitch/wiki"; license = licenses.gpl3Only; - maintainers = with maintainers; [ raboof onny ]; + maintainers = with maintainers; [ onny ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/networking/opensnitch/ui.nix b/pkgs/tools/networking/opensnitch/ui.nix index dc1c6fa765ef..3cac87bf55e9 100644 --- a/pkgs/tools/networking/opensnitch/ui.nix +++ b/pkgs/tools/networking/opensnitch/ui.nix @@ -64,7 +64,7 @@ python3Packages.buildPythonApplication rec { description = "An application firewall"; homepage = "https://github.com/evilsocket/opensnitch/wiki"; license = licenses.gpl3Only; - maintainers = [ maintainers.raboof ]; + maintainers = with maintainers; [ onny ]; platforms = platforms.linux; }; } From cfdd900d66a39636851ba61e821b70fba94a7b62 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 3 Dec 2022 10:04:15 +0000 Subject: [PATCH 032/144] manual: update meta-attributes section Promote the `maintainers = with maintainers; [ ]` syntax as that is most common in nixpkgs, and remove the `nix-env` example which doesn't work like that anymore. --- doc/stdenv/meta.chapter.md | 50 ++------------------------------------ 1 file changed, 2 insertions(+), 48 deletions(-) diff --git a/doc/stdenv/meta.chapter.md b/doc/stdenv/meta.chapter.md index f4d8ed2919dd..46114dacb458 100644 --- a/doc/stdenv/meta.chapter.md +++ b/doc/stdenv/meta.chapter.md @@ -11,58 +11,12 @@ meta = with lib; { ''; homepage = "https://www.gnu.org/software/hello/manual/"; license = licenses.gpl3Plus; - maintainers = [ maintainers.eelco ]; + maintainers = with maintainers; [ eelco ]; platforms = platforms.all; }; ``` -Meta-attributes are not passed to the builder of the package. Thus, a change to a meta-attribute doesn’t trigger a recompilation of the package. The value of a meta-attribute must be a string. - -The meta-attributes of a package can be queried from the command-line using `nix-env`: - -```ShellSession -$ nix-env -qa hello --json -{ - "hello": { - "meta": { - "description": "A program that produces a familiar, friendly greeting", - "homepage": "https://www.gnu.org/software/hello/manual/", - "license": { - "fullName": "GNU General Public License version 3 or later", - "shortName": "GPLv3+", - "url": "http://www.fsf.org/licensing/licenses/gpl.html" - }, - "longDescription": "GNU Hello is a program that prints \"Hello, world!\" when you run it.\nIt is fully customizable.\n", - "maintainers": [ - "Ludovic Court\u00e8s " - ], - "platforms": [ - "i686-linux", - "x86_64-linux", - "armv5tel-linux", - "armv7l-linux", - "mips32-linux", - "x86_64-darwin", - "i686-cygwin", - "i686-freebsd13", - "x86_64-freebsd13", - "i686-openbsd", - "x86_64-openbsd" - ], - "position": "/home/user/dev/nixpkgs/pkgs/applications/misc/hello/default.nix:14" - }, - "name": "hello-2.9", - "system": "x86_64-linux" - } -} -``` - -`nix-env` knows about the `description` field specifically: - -```ShellSession -$ nix-env -qa hello --description -hello-2.3 A program that produces a familiar, friendly greeting -``` +Meta-attributes are not passed to the builder of the package. Thus, a change to a meta-attribute doesn’t trigger a recompilation of the package. ## Standard meta-attributes {#sec-standard-meta-attributes} From 367897a68b3ba59b7f849fd38a49bb0cd0a6ef7d Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sat, 3 Dec 2022 13:02:20 +0100 Subject: [PATCH 033/144] nixos/mailman: remove trailing slash from `/static` location Otherwise HTTP routes such as `/static/django-mailman3/css/main.css` will cause a 404. --- nixos/modules/services/mail/mailman.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/mail/mailman.nix b/nixos/modules/services/mail/mailman.nix index 198c2f3280f5..5edcd313a91a 100644 --- a/nixos/modules/services/mail/mailman.nix +++ b/nixos/modules/services/mail/mailman.nix @@ -443,7 +443,7 @@ in { virtualHosts = lib.genAttrs cfg.webHosts (webHost: { locations = { ${cfg.serve.virtualRoot}.extraConfig = "uwsgi_pass unix:/run/mailman-web.socket;"; - "${cfg.serve.virtualRoot}/static/".alias = webSettings.STATIC_ROOT + "/"; + "${removeSuffix "/" cfg.serve.virtualRoot}/static/".alias = webSettings.STATIC_ROOT + "/"; }; }); }; From 64e9a730e3fa6d4e62455bd1146a8c1980e06f06 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 3 Dec 2022 20:03:34 +0100 Subject: [PATCH 034/144] python310Packages.elegy: add changelog to meta --- pkgs/development/python-modules/elegy/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/elegy/default.nix b/pkgs/development/python-modules/elegy/default.nix index 12c205761b5e..d4df308e679c 100644 --- a/pkgs/development/python-modules/elegy/default.nix +++ b/pkgs/development/python-modules/elegy/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "poets-ai"; repo = pname; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-FZmLriYhsX+zyQKCtCjbOy6MH+AvjzHRNUyaDSXGlLI="; }; @@ -73,9 +73,9 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook - torch sh tensorflow + torch ]; disabledTests = [ @@ -89,6 +89,7 @@ buildPythonPackage rec { meta = with lib; { description = "Neural Networks framework based on Jax inspired by Keras and Haiku"; homepage = "https://github.com/poets-ai/elegy"; + changelog = "https://github.com/poets-ai/elegy/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ ndl ]; }; From 9e6c78656c0eb7b637feced64d90cc47a5e180b7 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Sat, 3 Dec 2022 23:00:04 +0100 Subject: [PATCH 035/144] xercesc: 3.2.3 -> 3.2.4 https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12350542&styleName=Text&projectId=10510 --- pkgs/development/libraries/xercesc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/xercesc/default.nix b/pkgs/development/libraries/xercesc/default.nix index f5109a1ebd6a..c7509bc43ab5 100644 --- a/pkgs/development/libraries/xercesc/default.nix +++ b/pkgs/development/libraries/xercesc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "xerces-c"; - version = "3.2.3"; + version = "3.2.4"; src = fetchurl { url = "mirror://apache/xerces/c/3/sources/${pname}-${version}.tar.gz"; - sha256 = "0zicsydx6s7carwr7q0csgkg1xncibd6lfp5chg2v2gvn54zr5pv"; + sha256 = "sha256-PY7Bx/lOOP7g5Mpa0eHZ2yPL86ELumJva0r6Le2v5as="; }; # Disable SSE2 extensions on platforms for which they are not enabled by default From 1830f9dc306611adecba0c2b64ca81850591087d Mon Sep 17 00:00:00 2001 From: figsoda Date: Sat, 3 Dec 2022 19:40:26 -0500 Subject: [PATCH 036/144] patsh: 0.1.3 -> 0.2.0 Diff: https://github.com/nix-community/patsh/compare/v0.1.3...v0.2.0 Changelog: https://github.com/nix-community/patsh/blob/v0.2.0/CHANGELOG.md --- pkgs/development/tools/misc/patsh/default.nix | 31 +++++++++++++------ 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/misc/patsh/default.nix b/pkgs/development/tools/misc/patsh/default.nix index 9d79fc8ba53e..e36ce7c884bd 100644 --- a/pkgs/development/tools/misc/patsh/default.nix +++ b/pkgs/development/tools/misc/patsh/default.nix @@ -1,30 +1,41 @@ { lib +, runCommand , rustPlatform , fetchFromGitHub , stdenv -, runCommand -, tree-sitter +, coreutils }: +let + custom = runCommand "custom" { } '' + mkdir -p $out/bin + touch $out/bin/{'foo$','foo"`'} + chmod +x $out/bin/{'foo$','foo"`'} + ''; +in + rustPlatform.buildRustPackage rec { pname = "patsh"; - version = "0.1.3"; + version = "0.2.0"; src = fetchFromGitHub { owner = "nix-community"; repo = pname; rev = "v${version}"; - sha256 = "sha256-KmQVZwZC7KHlzNnL2IKQ76wHUDNUZKz/aFaY4ujvBo4="; + sha256 = "sha256-7HXJspebluQeejKYmVA7sy/F3dtU1gc4eAbKiPexMMA="; }; - cargoSha256 = "sha256-vozQKBxAVELdqTnqBpgHX0Wyk18EZAtpiRsKjwz8xKE="; + cargoSha256 = "sha256-R6ScpLYbEJAu7+CyJsMdljtXq7wsMojHK5O1lH+E/E8="; - # tests fail on darwin due to rpath issues - doCheck = !stdenv.isDarwin; + checkInputs = [ custom ]; - TREE_SITTER_BASH = runCommand "tree-sitter-bash" { } '' - mkdir $out - ln -s ${tree-sitter.builtGrammars.tree-sitter-bash}/parser $out/libtree-sitter-bash.a + postPatch = '' + for file in tests/fixtures/*-expected.sh; do + substituteInPlace $file \ + --subst-var-by cc ${stdenv.cc} \ + --subst-var-by coreutils ${coreutils} \ + --subst-var-by custom ${custom} + done ''; meta = with lib; { From 1d6a709f5c10c165d7dbe35ae31829d3fcbb17f8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 4 Dec 2022 08:50:16 +0000 Subject: [PATCH 037/144] metal-cli: 0.11.0 -> 0.12.0 --- pkgs/development/tools/metal-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/metal-cli/default.nix b/pkgs/development/tools/metal-cli/default.nix index e373ecd9ef26..88f7e4699269 100644 --- a/pkgs/development/tools/metal-cli/default.nix +++ b/pkgs/development/tools/metal-cli/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "metal-cli"; - version = "0.11.0"; + version = "0.12.0"; src = fetchFromGitHub { owner = "equinix"; repo = pname; rev = "v${version}"; - sha256 = "sha256-tbnG/MF83cAnsG2LOqdQSGF2XT+UWSzIpxVbkolzEQQ="; + sha256 = "sha256-oPMojw6CGncBJ8PZOTrzvQu2gRs1cw1Jwi38eOZggI8="; }; vendorSha256 = "sha256-drsNZXLNUWICLI8D+IvJE4X8GmWrP9U3dmpf9HnKCWw="; From 364d3609cd8e90c179a577d122fb76659a247d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Fri, 2 Dec 2022 22:09:49 +0100 Subject: [PATCH 038/144] nixos/installer/cd-dvd: use filtered nixpkgs source Pin the `nixpkgs` registry entry to the *filtered* nixpkgs source to avoid copying the entire `.git` directory to the ISO when building from a local checkout. Also set `to` directly instead of the `flake.outPath` hack. --- nixos/modules/installer/cd-dvd/channel.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/cd-dvd/channel.nix b/nixos/modules/installer/cd-dvd/channel.nix index 2a0feaeb2845..4b4c2e393348 100644 --- a/nixos/modules/installer/cd-dvd/channel.nix +++ b/nixos/modules/installer/cd-dvd/channel.nix @@ -6,6 +6,12 @@ with lib; let + # This is copied into the installer image, so it's important that it is filtered + # to avoid including a large .git directory. + # We also want the source name to be normalised to "source" to avoid depending on the + # location of nixpkgs. + # In the future we might want to expose the ISO image from the flake and use + # `self.outPath` directly instead. nixpkgs = lib.cleanSource pkgs.path; # We need a copy of the Nix expressions for Nixpkgs and NixOS on the @@ -31,7 +37,14 @@ let in { - nix.registry.nixpkgs.flake.outPath = builtins.path { name = "source"; path = pkgs.path; }; + # Pin the nixpkgs flake in the installer to our cleaned up nixpkgs source. + # FIXME: this might be surprising and is really only needed for offline installations, + # see discussion in https://github.com/NixOS/nixpkgs/pull/204178#issuecomment-1336289021 + nix.registry.nixpkgs.to = { + type = "path"; + path = nixpkgs; + }; + # Provide the NixOS/Nixpkgs sources in /etc/nixos. This is required # for nixos-install. boot.postBootCommands = mkAfter From 563fad90a56cb5000282b06a170ea4b0b899f76f Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 4 Dec 2022 17:01:30 +0100 Subject: [PATCH 039/144] deploy-rs: 2022-08-15 -> 2022-11-18 --- pkgs/tools/package-management/deploy-rs/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/package-management/deploy-rs/default.nix b/pkgs/tools/package-management/deploy-rs/default.nix index 63c70facb91a..546ec70df387 100644 --- a/pkgs/tools/package-management/deploy-rs/default.nix +++ b/pkgs/tools/package-management/deploy-rs/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "deploy-rs"; - version = "unstable-2022-08-05"; + version = "unstable-2022-11-18"; src = fetchFromGitHub { owner = "serokell"; repo = "deploy-rs"; - rev = "41f15759dd8b638e7b4f299730d94d5aa46ab7eb"; - sha256 = "sha256-1ZxuK67TL29YLw88vQ18Y2Y6iYg8Jb7I6/HVzmNB6nM="; + rev = "2a3c5f70eee04a465aa534d8bd4fcc9bb3c4a8ce"; + sha256 = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM="; }; - cargoHash = "sha256-IXmcpYcWmTGBVNwNCk1TMDOcLxkZytlEIILknUle3Rg="; + cargoHash = "sha256-Ki9/mYNLUq74v3u+e3aM139+06CTrvPLJv0O+qHL9dA="; buildInputs = lib.optionals stdenv.isDarwin [ CoreServices SystemConfiguration ]; From 9330a280be868d669f3a163cb9a1bd138135900d Mon Sep 17 00:00:00 2001 From: Bill Huang Date: Mon, 5 Dec 2022 00:46:18 +0800 Subject: [PATCH 040/144] feishu: 5.14.14 -> 5.18.11 --- .../networking/instant-messengers/feishu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/feishu/default.nix b/pkgs/applications/networking/instant-messengers/feishu/default.nix index 0102476954ec..740e793d6520 100644 --- a/pkgs/applications/networking/instant-messengers/feishu/default.nix +++ b/pkgs/applications/networking/instant-messengers/feishu/default.nix @@ -61,13 +61,13 @@ }: stdenv.mkDerivation rec { - version = "5.14.14"; + version = "5.18.11"; pname = "feishu"; - packageHash = "2844ab12b34f"; # A hash value used in the download url + packageHash = "9d89b152d581"; # A hash value used in the download url src = fetchurl { url = "https://sf3-cn.feishucdn.com/obj/ee-appcenter/${packageHash}/Feishu-linux_x64-${version}.deb"; - sha256 = "c0ca999edc10d8ada08c46b33b15d7db0ced264248abd3ebfdb895d8457e1bec"; + hash = "sha256-93LEybYePIEbmE8mjRL95haMuBuY0xH6/8fhwF7/ctM="; }; nativeBuildInputs = [ From 9d1896eb120c8e4de2d32ea4132c00088c809288 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 4 Dec 2022 16:49:37 +0000 Subject: [PATCH 041/144] python310Packages.mapbox-earcut: 1.0.0 -> 1.0.1 --- pkgs/development/python-modules/mapbox-earcut/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/mapbox-earcut/default.nix b/pkgs/development/python-modules/mapbox-earcut/default.nix index 009bf2ed653c..226567b272ce 100644 --- a/pkgs/development/python-modules/mapbox-earcut/default.nix +++ b/pkgs/development/python-modules/mapbox-earcut/default.nix @@ -10,13 +10,13 @@ buildPythonPackage rec { pname = "mapbox-earcut"; - version = "1.0.0"; + version = "1.0.1"; src = fetchFromGitHub { owner = "skogler"; repo = "mapbox_earcut_python"; - rev = "v${version}"; - sha256 = "m4q2qTL55fkdi3hm75C3/XV9SUQkpJS+B5SEgpPEctk="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-+Vxvo++bkoCsJFmt/u1eaqhgpz8Uddz06iIi66ju+MQ="; }; nativeBuildInputs = [ setuptools pybind11 ]; From 517ce3aba91ea04f0d33eec3f87285cbce0d8eec Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 17:53:33 +0100 Subject: [PATCH 042/144] metal-cli: add changelog to meta --- pkgs/development/tools/metal-cli/default.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/metal-cli/default.nix b/pkgs/development/tools/metal-cli/default.nix index 88f7e4699269..9c254bb2c79a 100644 --- a/pkgs/development/tools/metal-cli/default.nix +++ b/pkgs/development/tools/metal-cli/default.nix @@ -1,4 +1,8 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: +{ lib +, buildGoModule +, fetchFromGitHub +, installShellFiles +}: buildGoModule rec { pname = "metal-cli"; @@ -8,17 +12,20 @@ buildGoModule rec { owner = "equinix"; repo = pname; rev = "v${version}"; - sha256 = "sha256-oPMojw6CGncBJ8PZOTrzvQu2gRs1cw1Jwi38eOZggI8="; + hash = "sha256-oPMojw6CGncBJ8PZOTrzvQu2gRs1cw1Jwi38eOZggI8="; }; - vendorSha256 = "sha256-drsNZXLNUWICLI8D+IvJE4X8GmWrP9U3dmpf9HnKCWw="; + vendorHash = "sha256-drsNZXLNUWICLI8D+IvJE4X8GmWrP9U3dmpf9HnKCWw="; ldflags = [ - "-s" "-w" + "-s" + "-w" "-X github.com/equinix/metal-cli/cmd.Version=${version}" ]; - nativeBuildInputs = [ installShellFiles ]; + nativeBuildInputs = [ + installShellFiles + ]; postInstall = '' installShellCompletion --cmd metal \ @@ -30,6 +37,7 @@ buildGoModule rec { doCheck = false; doInstallCheck = true; + installCheckPhase = '' $out/bin/metal --version | grep ${version} ''; @@ -37,6 +45,7 @@ buildGoModule rec { meta = with lib; { description = "Official Equinix Metal CLI"; homepage = "https://github.com/equinix/metal-cli/"; + changelog = "https://github.com/equinix/metal-cli/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ Br1ght0ne nshalman ]; mainProgram = "metal"; From 215be027c56e8621ebc5bb6de5ebc22591c9e4b4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 Nov 2022 23:25:33 +0100 Subject: [PATCH 043/144] python310Packages.oauthlib: 3.2.1 -> 3.2.2 --- pkgs/development/python-modules/oauthlib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/oauthlib/default.nix b/pkgs/development/python-modules/oauthlib/default.nix index 078e4a383445..01538f69693d 100644 --- a/pkgs/development/python-modules/oauthlib/default.nix +++ b/pkgs/development/python-modules/oauthlib/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "oauthlib"; - version = "3.2.1"; + version = "3.2.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "v${version}"; - hash = "sha256-9Du0REnN7AkvMmejXsWc7Uy+YF8MYeLK+QnYHbrPhPA="; + hash = "sha256-KADS1pEaLYi86LEt2VVuz8FVTBANzxC8EeQLgGMxuBU="; }; propagatedBuildInputs = [ From 1625a78826ee3b141074418c58b21d301677bda0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 Nov 2022 23:26:04 +0100 Subject: [PATCH 044/144] python310Packages.weconnect: 0.48.3 -> 0.49.0 --- pkgs/development/python-modules/weconnect/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix index 58f2fcd7a637..fd16d41dd143 100644 --- a/pkgs/development/python-modules/weconnect/default.nix +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "weconnect"; - version = "0.48.3"; + version = "0.49.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "tillsteinbach"; repo = "WeConnect-python"; rev = "refs/tags/v${version}"; - hash = "sha256-GXTjG/3Gk58C6TxKrgtblUZI+xf7Te9OA8HnDvNEIvA="; + hash = "sha256-EwjKZa71EM73HCKaHjupuieiHcYX89XCm65jl2pFZDE="; }; propagatedBuildInputs = [ From e19bb575cf569dec11061b9b16f951942086154a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 18:07:58 +0100 Subject: [PATCH 045/144] python310Packages.weconnect: add changelog to meta --- pkgs/development/python-modules/weconnect/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix index fd16d41dd143..b5a45b70cb4a 100644 --- a/pkgs/development/python-modules/weconnect/default.nix +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -61,6 +61,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python client for the Volkswagen WeConnect Services"; homepage = "https://github.com/tillsteinbach/WeConnect-python"; + changelog = "https://github.com/tillsteinbach/WeConnect-python/releases/tag/v${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From a86f7bdfeeb7c04605d066cd7138f1daba5b4449 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 18:09:02 +0100 Subject: [PATCH 046/144] python310Packages.weconnect: 0.49.0 -> 0.50.0 Diff: https://github.com/tillsteinbach/WeConnect-python/compare/refs/tags/v0.49.0...0.50.0 Changelog: https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.50.0 --- pkgs/development/python-modules/weconnect/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix index b5a45b70cb4a..eb3c772e9739 100644 --- a/pkgs/development/python-modules/weconnect/default.nix +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "weconnect"; - version = "0.49.0"; + version = "0.50.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "tillsteinbach"; repo = "WeConnect-python"; rev = "refs/tags/v${version}"; - hash = "sha256-EwjKZa71EM73HCKaHjupuieiHcYX89XCm65jl2pFZDE="; + hash = "sha256-+N/xGQ7BaW6zHUUQy1Cf45bad15yniaqIPGOzk1iBhM="; }; propagatedBuildInputs = [ @@ -48,7 +48,7 @@ buildPythonPackage rec { --replace "setup_requires=SETUP_REQUIRED," "setup_requires=[]," \ --replace "tests_require=TEST_REQUIRED," "tests_require=[]," substituteInPlace image_extra_requirements.txt \ - --replace "pillow~=9.2.0" "pillow" + --replace "pillow~=9.3.0" "pillow" substituteInPlace pytest.ini \ --replace "--cov=weconnect --cov-config=.coveragerc --cov-report html" "" \ --replace "pytest-cov" "" From 8fd54278951c839f7d437d716e1886d0c5fd7c98 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 18:12:00 +0100 Subject: [PATCH 047/144] python310Packages.weconnect-mqtt: add changelog to meta --- pkgs/development/python-modules/weconnect-mqtt/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/weconnect-mqtt/default.nix b/pkgs/development/python-modules/weconnect-mqtt/default.nix index 19e394ff26ba..bb4ad4f8cd10 100644 --- a/pkgs/development/python-modules/weconnect-mqtt/default.nix +++ b/pkgs/development/python-modules/weconnect-mqtt/default.nix @@ -47,6 +47,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python client that publishes data from Volkswagen WeConnect"; homepage = "https://github.com/tillsteinbach/WeConnect-mqtt"; + changelog = "https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From 55ef419a6e2b4536549e6115d66a11f611674cbc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 4 Dec 2022 17:16:21 +0000 Subject: [PATCH 048/144] prometheus-blackbox-exporter: 0.22.0 -> 0.23.0 --- pkgs/servers/monitoring/prometheus/blackbox-exporter.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix b/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix index a5cb1f25cd64..1a6910d023dc 100644 --- a/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "blackbox_exporter"; - version = "0.22.0"; + version = "0.23.0"; rev = "v${version}"; src = fetchFromGitHub { inherit rev; owner = "prometheus"; repo = "blackbox_exporter"; - sha256 = "sha256-TelyZTzh/+fHe42H3AarZzuU8zY1EflHVo9c4WymMVc="; + sha256 = "sha256-im/B5PM7oSE9ejcr558sJKM67UjZUXfm5dci4ZlMycA="; }; - vendorSha256 = "sha256-pzEEi9O/Sgsv1dFm7wQt6PaP/beV5PMrXEZC9N/6lUc="; + vendorSha256 = "sha256-f2m/8KvnEX0lZkmQtFOLOMj5gMUIiBKKvC+yq7QY0B4="; # dns-lookup is performed for the tests doCheck = false; From aece0863ab889953c0d09f1454e7c4f507caeaa8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 18:23:00 +0100 Subject: [PATCH 049/144] python310Packages.weconnect: 0.50.0 -> 0.50.1 Diff: https://github.com/tillsteinbach/WeConnect-python/compare/refs/tags/v0.50.0...v0.50.1 Changelog: https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.50.1 --- pkgs/development/python-modules/weconnect/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix index eb3c772e9739..c476581fc42f 100644 --- a/pkgs/development/python-modules/weconnect/default.nix +++ b/pkgs/development/python-modules/weconnect/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "weconnect"; - version = "0.50.0"; + version = "0.50.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "tillsteinbach"; repo = "WeConnect-python"; rev = "refs/tags/v${version}"; - hash = "sha256-+N/xGQ7BaW6zHUUQy1Cf45bad15yniaqIPGOzk1iBhM="; + hash = "sha256-KYGNtUJXpY1UrRbUxr71EHxLCR6WixTAk+ybkfqB3Ps="; }; propagatedBuildInputs = [ From a3d4659349693b7f406e3441f6e77814a145d838 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 18:23:07 +0100 Subject: [PATCH 050/144] python310Packages.weconnect-mqtt: 0.40.3 -> 0.41.1 Diff: https://github.com/tillsteinbach/WeConnect-mqtt/compare/refs/tags/v0.40.3...v0.41.1 Changelog: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.41.1 --- pkgs/development/python-modules/weconnect-mqtt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/weconnect-mqtt/default.nix b/pkgs/development/python-modules/weconnect-mqtt/default.nix index bb4ad4f8cd10..868155427770 100644 --- a/pkgs/development/python-modules/weconnect-mqtt/default.nix +++ b/pkgs/development/python-modules/weconnect-mqtt/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "weconnect-mqtt"; - version = "0.40.3"; + version = "0.41.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "tillsteinbach"; repo = "WeConnect-mqtt"; rev = "refs/tags/v${version}"; - hash = "sha256-kV4BWQ4XfB2QjXY5b46+pxt3rhyo1glKRYO2mMJNhJM="; + hash = "sha256-RYxfz5uBWV1HLbcIK1N/glJv2w0nfPLBPyM2b7HuDIY="; }; propagatedBuildInputs = [ From 619fc8f27878d581de363b369171b9a75ebe7f12 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 18:38:19 +0100 Subject: [PATCH 051/144] python310Packages.mapbox-earcut: add changelog to meta --- .../python-modules/mapbox-earcut/default.nix | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/mapbox-earcut/default.nix b/pkgs/development/python-modules/mapbox-earcut/default.nix index 226567b272ce..c7dba7a80d8c 100644 --- a/pkgs/development/python-modules/mapbox-earcut/default.nix +++ b/pkgs/development/python-modules/mapbox-earcut/default.nix @@ -6,29 +6,43 @@ , pybind11 , pytestCheckHook , setuptools +, pythonOlder }: buildPythonPackage rec { pname = "mapbox-earcut"; version = "1.0.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "skogler"; repo = "mapbox_earcut_python"; rev = "refs/tags/v${version}"; - sha256 = "sha256-+Vxvo++bkoCsJFmt/u1eaqhgpz8Uddz06iIi66ju+MQ="; + hash = "sha256-+Vxvo++bkoCsJFmt/u1eaqhgpz8Uddz06iIi66ju+MQ="; }; - nativeBuildInputs = [ setuptools pybind11 ]; + nativeBuildInputs = [ + setuptools + pybind11 + ]; - propagatedBuildInputs = [ numpy ]; + propagatedBuildInputs = [ + numpy + ]; - checkInputs = [ pytestCheckHook ]; + checkInputs = [ + pytestCheckHook + ]; - pythonImportsCheck = [ "mapbox_earcut" ]; + pythonImportsCheck = [ + "mapbox_earcut" + ]; meta = with lib; { homepage = "https://github.com/skogler/mapbox_earcut_python"; + changelog = "https://github.com/skogler/mapbox_earcut_python/releases/tag/v${version}"; license = licenses.isc; description = "Mapbox-earcut fast triangulation of 2D-polygons"; longDescription = '' From d911353cf8af68ca67f24fe193a6bcdfe12d598f Mon Sep 17 00:00:00 2001 From: Steven Keuchel Date: Sun, 4 Dec 2022 21:12:19 +0100 Subject: [PATCH 052/144] mbuffer: fix cross compilation --- pkgs/tools/misc/mbuffer/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/misc/mbuffer/default.nix b/pkgs/tools/misc/mbuffer/default.nix index f01a0c6d4d54..c7f14cf6a582 100644 --- a/pkgs/tools/misc/mbuffer/default.nix +++ b/pkgs/tools/misc/mbuffer/default.nix @@ -16,18 +16,11 @@ stdenv.mkDerivation rec { buildInputs = [ openssl + ]; + nativeBuildInputs = [ which ]; - # The mbuffer configure scripts fails to recognize the correct - # objdump binary during cross-building for foreign platforms. - # The correct objdump is exposed via the environment variable - # $OBJDUMP, which should be used in such cases. - preConfigure = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' - substituteInPlace configure \ - --replace "OBJDUMP=$ac_cv_path_OBJDUMP" 'OBJDUMP=''${OBJDUMP}' - ''; - doCheck = true; meta = with lib; { From 37d44151f3141092079eff9c63daf622835ae440 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 4 Dec 2022 22:46:56 +0100 Subject: [PATCH 053/144] deploy-rs: adjust description --- .../package-management/deploy-rs/default.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/package-management/deploy-rs/default.nix b/pkgs/tools/package-management/deploy-rs/default.nix index 546ec70df387..0b85b3d29b26 100644 --- a/pkgs/tools/package-management/deploy-rs/default.nix +++ b/pkgs/tools/package-management/deploy-rs/default.nix @@ -1,4 +1,10 @@ -{ stdenv, lib, fetchFromGitHub, rustPlatform, CoreServices, SystemConfiguration }: +{ lib +, stdenv +, fetchFromGitHub +, rustPlatform +, CoreServices +, SystemConfiguration +}: rustPlatform.buildRustPackage rec { pname = "deploy-rs"; @@ -8,17 +14,20 @@ rustPlatform.buildRustPackage rec { owner = "serokell"; repo = "deploy-rs"; rev = "2a3c5f70eee04a465aa534d8bd4fcc9bb3c4a8ce"; - sha256 = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM="; + hash = "sha256-0w6iD3GSSQbIeSFVDzAAQZB+hDq670ZTms3d9XI+BtM="; }; cargoHash = "sha256-Ki9/mYNLUq74v3u+e3aM139+06CTrvPLJv0O+qHL9dA="; - buildInputs = lib.optionals stdenv.isDarwin [ CoreServices SystemConfiguration ]; + buildInputs = lib.optionals stdenv.isDarwin [ + CoreServices + SystemConfiguration + ]; meta = with lib; { - description = " A simple multi-profile Nix-flake deploy tool. "; + description = "Multi-profile Nix-flake deploy tool"; homepage = "https://github.com/serokell/deploy-rs"; license = licenses.mpl20; - maintainers = [ maintainers.teutat3s ]; + maintainers = with maintainers; [ teutat3s ]; }; } From 08e041d8faeb7c5133a852d5bb11e8f8f0b7d9d6 Mon Sep 17 00:00:00 2001 From: Alexandre Acebedo Date: Sun, 4 Dec 2022 23:21:29 +0100 Subject: [PATCH 054/144] mailspring: add libappindicator --- pkgs/applications/networking/mailreaders/mailspring/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/mailreaders/mailspring/default.nix b/pkgs/applications/networking/mailreaders/mailspring/default.nix index 07de3be99651..9e5dab937476 100644 --- a/pkgs/applications/networking/mailreaders/mailspring/default.nix +++ b/pkgs/applications/networking/mailreaders/mailspring/default.nix @@ -17,6 +17,7 @@ , xorg , mesa , libdrm +, libappindicator }: stdenv.mkDerivation rec { @@ -55,6 +56,7 @@ stdenv.mkDerivation rec { coreutils openssl (lib.getLib udev) + libappindicator ]; unpackPhase = '' From a64dcea595c7085ab1add8dddd5d7c1cc088d17d Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Tue, 29 Nov 2022 21:45:00 +0100 Subject: [PATCH 055/144] jna: init at 4.5.2 --- pkgs/development/java-modules/jna/default.nix | 37 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/java-modules/jna/default.nix diff --git a/pkgs/development/java-modules/jna/default.nix b/pkgs/development/java-modules/jna/default.nix new file mode 100644 index 000000000000..5ab3f14354b1 --- /dev/null +++ b/pkgs/development/java-modules/jna/default.nix @@ -0,0 +1,37 @@ +{ stdenv, lib, fetchFromGitHub, ant, jdk8 }: + +stdenv.mkDerivation rec { + pname = "jna"; + version = "4.5.2"; + + src = fetchFromGitHub { + owner = "java-native-access"; + repo = pname; + rev = version; + hash = "sha256-FJXYej49soHPa+kAUeLZYzbw+NnFoag2LdKrTihPWvE="; + }; + + nativeBuildInputs = [ ant jdk8 ]; + + buildPhase = '' + runHook preBuild + rm -r dist # remove prebuilt files + ant dist + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + install -Dm444 -t $out/share/java dist/jna{,-platform}.jar + runHook postInstall + ''; + + meta = with lib; { + inherit (src.meta) homepage; + description = "Java Native Access"; + license = with licenses; [ lgpl21 asl20 ]; + maintainers = with maintainers; [ nagy ]; + platforms = platforms.linux; + changelog = "https://github.com/java-native-access/jna/blob/${version}/CHANGES.md"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c6c6afb60b06..c431aad550c5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14696,6 +14696,8 @@ with pkgs; jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 }; + jna = callPackage ../development/java-modules/jna { }; + javacard-devkit = pkgsi686Linux.callPackage ../development/compilers/javacard-devkit { }; juniper = callPackage ../development/compilers/juniper { }; From 58e794cdb44db6260aa415bb0ce7fe2fcfef0202 Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Tue, 29 Nov 2022 21:45:00 +0100 Subject: [PATCH 056/144] freenet: use jna from nixpkgs, not upstream bundled one --- .../networking/p2p/freenet/default.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/p2p/freenet/default.nix b/pkgs/applications/networking/p2p/freenet/default.nix index 9f4f1d841472..05cc0466264f 100644 --- a/pkgs/applications/networking/p2p/freenet/default.nix +++ b/pkgs/applications/networking/p2p/freenet/default.nix @@ -1,15 +1,7 @@ -{ lib, stdenv, fetchurl, jdk, bash, coreutils, substituteAll, nixosTests }: +{ lib, stdenv, fetchurl, jdk, bash, coreutils, substituteAll, nixosTests, jna }: let version = "build01494"; - jna = fetchurl { - url = "https://github.com/freenet/fred/releases/download/${version}/jna-4.5.2.jar"; - sha256 = "sha256-DI63rPZyYWVteQBRkd66ujtr9d1gpDc1okVCk4Hb7P8="; - }; - jna_platform = fetchurl { - url = "https://github.com/freenet/fred/releases/download/${version}/jna-platform-4.5.2.jar"; - sha256 = "sha256-8dAMFn2JIcbiPGJu+fHDrgvkc8lcaP+gErx65VqH4tY="; - }; freenet_ext = fetchurl { url = "https://github.com/freenet/fred/releases/download/${version}/freenet-ext.jar"; sha256 = "sha256-MvKz1r7t9UE36i+aPr72dmbXafCWawjNF/19tZuk158="; @@ -38,8 +30,8 @@ let mkdir -p $out/share/freenet ln -s ${bcprov} $out/share/freenet/bcprov.jar ln -s ${freenet_ext} $out/share/freenet/freenet-ext.jar - ln -s ${jna_platform} $out/share/freenet/jna_platform.jar - ln -s ${jna} $out/share/freenet/jna.jar + ln -s ${jna}/share/java/jna-platform.jar $out/share/freenet/jna_platform.jar + ln -s ${jna}/share/java/jna.jar $out/share/freenet/jna.jar ln -s $src $out/share/freenet/freenet.jar ''; }; @@ -71,5 +63,6 @@ in stdenv.mkDerivation { license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ nagy ]; platforms = with lib.platforms; linux; + changelog = "https://github.com/freenet/fred/blob/build${version}/NEWS.md"; }; } From e22198417d98dd1a6da0d5a8fd208819dd923012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 5 Dec 2022 02:02:12 +0100 Subject: [PATCH 057/144] zbar: fix enableVideo not fully removing gtk/qt --- pkgs/tools/graphics/zbar/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index d3c4003741e3..3ddc1678dae1 100644 --- a/pkgs/tools/graphics/zbar/default.nix +++ b/pkgs/tools/graphics/zbar/default.nix @@ -41,8 +41,9 @@ stdenv.mkDerivation rec { xmlto autoreconfHook docbook_xsl - wrapQtAppsHook + ] ++ lib.optionals enableVideo [ wrapGAppsHook + wrapQtAppsHook ]; buildInputs = [ From 4312ffd16a37b560de9275440b51a3e962d1a207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 5 Dec 2022 01:15:20 +0100 Subject: [PATCH 058/144] zbar: add option to disable Xorg --- pkgs/tools/graphics/zbar/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index 3ddc1678dae1..4e850e4fe6c7 100644 --- a/pkgs/tools/graphics/zbar/default.nix +++ b/pkgs/tools/graphics/zbar/default.nix @@ -3,6 +3,7 @@ , fetchFromGitHub , imagemagickBig , pkg-config +, withXorg ? true , libX11 , libv4l , qtbase @@ -48,10 +49,11 @@ stdenv.mkDerivation rec { buildInputs = [ imagemagickBig - libX11 libintl ] ++ lib.optionals enableDbus [ dbus + ] ++ lib.optionals withXorg [ + libX11 ] ++ lib.optionals enableVideo [ libv4l gtk3 From d0ffce42bba02f505d2038b13b88e52ade242fa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 5 Dec 2022 02:02:31 +0100 Subject: [PATCH 059/144] nixos/no-x-libs: add imagemagick/imagemagickBig --- nixos/modules/config/no-x-libs.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix index 946c9bf38c47..489765261da9 100644 --- a/nixos/modules/config/no-x-libs.nix +++ b/nixos/modules/config/no-x-libs.nix @@ -33,6 +33,8 @@ with lib; ffmpeg_4 = super.ffmpeg_4.override { sdlSupport = false; vdpauSupport = false; }; ffmpeg_5 = super.ffmpeg_5.override { sdlSupport = false; vdpauSupport = false; }; gobject-introspection = super.gobject-introspection.override { x11Support = false; }; + imagemagick = super.imagemagick.override { libX11Support = false; libXtSupport = false; }; + imagemagickBig = super.imagemagickBig.override { libX11Support = false; libXtSupport = false; }; libva = super.libva-minimal; networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; }; networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; }; From de66678a605ee3acb6ab65f9f68fceaab7ed0a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 5 Dec 2022 00:51:58 +0100 Subject: [PATCH 060/144] nixos/no-x-libs: add zbar --- nixos/modules/config/no-x-libs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix index 489765261da9..1a6c64ef26cc 100644 --- a/nixos/modules/config/no-x-libs.nix +++ b/nixos/modules/config/no-x-libs.nix @@ -44,6 +44,7 @@ with lib; networkmanager-sstp = super.networkmanager-vpnc.override { withGnome = false; }; networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; }; qemu = super.qemu.override { gtkSupport = false; spiceSupport = false; sdlSupport = false; }; + zbar = super.zbar.override { enableVideo = false; withXorg = false; }; })); }; } From 04084c1775a7719e53d55bc465410ea5f8540504 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 01:55:03 +0000 Subject: [PATCH 061/144] sentry-cli: 2.9.0 -> 2.10.0 --- pkgs/development/tools/sentry-cli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/sentry-cli/default.nix b/pkgs/development/tools/sentry-cli/default.nix index 7fcb9fc6f2fe..1d0ff729663e 100644 --- a/pkgs/development/tools/sentry-cli/default.nix +++ b/pkgs/development/tools/sentry-cli/default.nix @@ -9,13 +9,13 @@ }: rustPlatform.buildRustPackage rec { pname = "sentry-cli"; - version = "2.9.0"; + version = "2.10.0"; src = fetchFromGitHub { owner = "getsentry"; repo = "sentry-cli"; rev = version; - sha256 = "sha256-PhcCYdc865682UZMSjwj0WWh+6pJeEaYyjX+v1XZqVk="; + sha256 = "sha256-1KFKLvF/oFeU05BxShAoHkP24QBT88MHhjbcSXFario="; }; doCheck = false; @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; nativeBuildInputs = [ pkg-config ]; - cargoSha256 = "sha256-WQYiYxbSr4fOlaI5LaBllk21I7U9sL2Xq7hMBIGCL7M="; + cargoSha256 = "sha256-IEcQKAgZfZ3L5+1Kdbsnms6qHXGXLwxSklu1y4kk+0w="; meta = with lib; { homepage = "https://docs.sentry.io/cli/"; From 709ab669fe59aca3c984c90211bfe89d674da744 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 02:22:57 +0000 Subject: [PATCH 062/144] skaffold: 2.0.2 -> 2.0.3 --- pkgs/development/tools/skaffold/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/skaffold/default.nix b/pkgs/development/tools/skaffold/default.nix index 73763ce654d4..c4c8fc0c4bdc 100644 --- a/pkgs/development/tools/skaffold/default.nix +++ b/pkgs/development/tools/skaffold/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "skaffold"; - version = "2.0.2"; + version = "2.0.3"; src = fetchFromGitHub { owner = "GoogleContainerTools"; repo = "skaffold"; rev = "v${version}"; - sha256 = "sha256-ldyGKey/s6FJLmxV25Q+blNjOOsASGqUsnqiXJme3+g="; + sha256 = "sha256-wt1BEa8ir8i4VWW03opfy7cSNqCPzQoHgtJz+i8iaLw="; }; - vendorSha256 = "sha256-yy1BVorjLEcZR6PqupBiZx2plwPJ6xlxripbyB6RLek="; + vendorSha256 = "sha256-2i7NKf/VJduBec4rEBJqFt1cb6ODqOviSY+flGekN4w="; subPackages = ["cmd/skaffold"]; From 17a7494dae1c9250d5dd8b15adeec486c60b7135 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 21:24:20 -0500 Subject: [PATCH 063/144] cargo-hakari: 0.9.16 -> 0.9.17 Changelog: https://github.com/guppy-rs/guppy/blob/cargo-hakari-0.9.17/tools/cargo-hakari/CHANGELOG.md --- pkgs/development/tools/rust/cargo-hakari/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-hakari/default.nix b/pkgs/development/tools/rust/cargo-hakari/default.nix index c2b2712ce498..c596e61586c4 100644 --- a/pkgs/development/tools/rust/cargo-hakari/default.nix +++ b/pkgs/development/tools/rust/cargo-hakari/default.nix @@ -2,14 +2,14 @@ rustPlatform.buildRustPackage rec { pname = "cargo-hakari"; - version = "0.9.16"; + version = "0.9.17"; src = fetchCrate { inherit pname version; - sha256 = "sha256-V4rCtqt3HmvAtanithYAJv9FMt/g2R5JCJUwKITnoV4="; + sha256 = "sha256-FgG9sdXZhSlX4p3I9WL5ORN7FCg4Zgt/Y+GRCWhIoP8="; }; - cargoHash = "sha256-IGxKIgV7UtPrNAFEzKNJfPiSZ8lW2S2M7AJ7sigCWzQ="; + cargoHash = "sha256-pYjjiQUnBfZ9wQgXhm4c+A7zMAF9k/Mzl5ccPX407/A="; meta = with lib; { description = "Manage workspace-hack packages to speed up builds in large workspaces."; From 8c7a50749d8d7e66bc8c3956846a13aa16ccb8e4 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 21:25:58 -0500 Subject: [PATCH 064/144] cargo-guppy: unstable-2022-11-07 -> unstable-2022-12-05 Diff: https://github.com/guppy-rs/guppy/compare/40d66ee25a12657c36b9cef67293fc4c296a144f...4dad33053d3047293da35ade33158b709fe8bb23 --- pkgs/development/tools/rust/cargo-guppy/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-guppy/default.nix b/pkgs/development/tools/rust/cargo-guppy/default.nix index 7074dd4e93ca..479c5d6cef7c 100644 --- a/pkgs/development/tools/rust/cargo-guppy/default.nix +++ b/pkgs/development/tools/rust/cargo-guppy/default.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-guppy"; - version = "unstable-2022-11-07"; + version = "unstable-2022-12-05"; src = fetchFromGitHub { owner = "guppy-rs"; repo = "guppy"; - rev = "40d66ee25a12657c36b9cef67293fc4c296a144f"; - sha256 = "sha256-f+xUifb7TlaXONNQfFZpnuYDTxgkelL+Knc+X8vc3Gg="; + rev = "4dad33053d3047293da35ade33158b709fe8bb23"; + sha256 = "sha256-CWyXNBBo+yyF2s6BT6FFu6CI7xId38vsyg0uSezsusc="; }; - cargoSha256 = "sha256-qRFJJX/5hgveGAQtW0HJYAPZjHRlTHalvqSRdEjtYiU="; + cargoSha256 = "sha256-jwfZ5FH2qlzmxKT9LTXkmvwL5fhKljUPYwYXXqDRDXc="; nativeBuildInputs = [ pkg-config ]; From 02d25d3fee5431990cc69df296dc44c53d573edf Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 4 Dec 2022 21:38:00 -0500 Subject: [PATCH 065/144] esbuild: 0.15.17 -> 0.15.18 https://github.com/evanw/esbuild/releases/tag/v0.15.18 --- pkgs/development/tools/esbuild/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix index 06d2b89ab0cf..df4729eeb816 100644 --- a/pkgs/development/tools/esbuild/default.nix +++ b/pkgs/development/tools/esbuild/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "esbuild"; - version = "0.15.17"; + version = "0.15.18"; src = fetchFromGitHub { owner = "evanw"; repo = "esbuild"; rev = "v${version}"; - sha256 = "sha256-+krp/fEEm6M3YkP4N8vsTsM9O4Uf+xqw3tOpiVjX8PY="; + sha256 = "sha256-b9R1ML+pgRg9j2yrkQmBulPuLHYLUQvW+WTyR/Cq6zE="; }; vendorSha256 = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; From 47a9f2f8f892b8c32f1736e6bac759465d949be9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 03:06:03 +0000 Subject: [PATCH 066/144] spdx-license-list-data: 3.18 -> 3.19 --- pkgs/data/misc/spdx-license-list-data/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/spdx-license-list-data/default.nix b/pkgs/data/misc/spdx-license-list-data/default.nix index 20778f1e5e91..93405fb788ef 100644 --- a/pkgs/data/misc/spdx-license-list-data/default.nix +++ b/pkgs/data/misc/spdx-license-list-data/default.nix @@ -2,13 +2,13 @@ stdenvNoCC.mkDerivation rec { pname = "spdx-license-list-data"; - version = "3.18"; + version = "3.19"; src = fetchFromGitHub { owner = "spdx"; repo = "license-list-data"; rev = "v${version}"; - hash = "sha256-iXuGJzURcRyiq2rVP5jabOmFByF0YuiZg4HPCM6mk3A="; + hash = "sha256-qT9Q6Mntnt9lOhYmGFJlkDyAHQ0CGQpWr1rLF08FGeg="; }; # List of file formats to package. From 61aacee77d6c293d7e36e6655408479c5868360c Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 22:58:15 -0500 Subject: [PATCH 067/144] sniffnet: init at 1.0.1 --- .../networking/sniffnet/default.nix | 51 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/applications/networking/sniffnet/default.nix diff --git a/pkgs/applications/networking/sniffnet/default.nix b/pkgs/applications/networking/sniffnet/default.nix new file mode 100644 index 000000000000..6dc59e1432ab --- /dev/null +++ b/pkgs/applications/networking/sniffnet/default.nix @@ -0,0 +1,51 @@ +{ lib +, rustPlatform +, fetchCrate +, pkg-config +, libpcap +, stdenv +, fontconfig +, libGL +, xorg +, darwin +}: + +rustPlatform.buildRustPackage rec { + pname = "sniffnet"; + version = "1.0.1"; + + src = fetchCrate { + inherit pname version; + sha256 = "sha256-8K774j04BOEuJjnFYjaSctPwBrKYYKqjFS2+PyxJ2FM="; + }; + + cargoSha256 = "sha256-096i4wDdoJCICd0L2QNY+7cKHQnijK22zj4XaQNuko8="; + + nativeBuildInputs = [ pkg-config ]; + + buildInputs = [ + libpcap + ] ++ lib.optionals stdenv.isLinux [ + fontconfig + libGL + xorg.libX11 + xorg.libXcursor + xorg.libXi + xorg.libXrandr + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.AppKit + ]; + + postFixup = lib.optionalString stdenv.isLinux '' + patchelf $out/bin/sniffnet \ + --add-rpath ${lib.makeLibraryPath [ libGL xorg.libX11 ]} + ''; + + meta = with lib; { + description = "Cross-platform application to monitor your network traffic with ease"; + homepage = "https://github.com/gyulyvgc/sniffnet"; + changelog = "https://github.com/gyulyvgc/sniffnet/blob/main/CHANGELOG.md"; + license = with licenses; [ mit /* or */ asl20 ]; + maintainers = with maintainers; [ figsoda ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d8d21c8e8cba..7be967c8e35e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -31942,6 +31942,8 @@ with pkgs; slrn = callPackage ../applications/networking/newsreaders/slrn { }; + sniffnet = callPackage ../applications/networking/sniffnet { }; + sniproxy = callPackage ../applications/networking/sniproxy { }; snixembed = callPackage ../applications/misc/snixembed { }; From e37ec17e4400f8770292989fca5b74477ceb3418 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 23:29:43 -0500 Subject: [PATCH 068/144] cargo-nextest: 0.9.44 -> 0.9.45 Diff: https://github.com/nextest-rs/nextest/compare/cargo-nextest-0.9.44...cargo-nextest-0.9.45 Changelog: https://nexte.st/CHANGELOG.html --- pkgs/development/tools/rust/cargo-nextest/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-nextest/default.nix b/pkgs/development/tools/rust/cargo-nextest/default.nix index 09a8e0746626..c6b1abdaa5af 100644 --- a/pkgs/development/tools/rust/cargo-nextest/default.nix +++ b/pkgs/development/tools/rust/cargo-nextest/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-nextest"; - version = "0.9.44"; + version = "0.9.45"; src = fetchFromGitHub { owner = "nextest-rs"; repo = "nextest"; rev = "cargo-nextest-${version}"; - sha256 = "sha256-hEBRwezymduUlPZTAHAmK5Xkc/6nGr/JDL5TDWUiZO0="; + sha256 = "sha256-Sb5xJCxUz60TfDMqv7Q7hTRVXvligpWkTG4FRAO/H3c="; }; - cargoSha256 = "sha256-i7XYDy9NVOszanCGDaoPkc6z5DV8vm6TsekqBkV5eRA="; + cargoSha256 = "sha256-LzhrPQXr+CfzNoMWrPekDvtoPn0iqLhBV+3NO5AV0Po="; buildInputs = lib.optionals stdenv.isDarwin [ Security ]; From 427545645623e496f9215f1a6c8d4fbfe068332b Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 23:51:22 -0500 Subject: [PATCH 069/144] eureka-ideas: enable cargo parallel tests with nextest --- pkgs/applications/misc/eureka-ideas/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/eureka-ideas/default.nix b/pkgs/applications/misc/eureka-ideas/default.nix index ee15f31632cb..45e36010906b 100644 --- a/pkgs/applications/misc/eureka-ideas/default.nix +++ b/pkgs/applications/misc/eureka-ideas/default.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { Security ]; - dontUseCargoParallelTests = true; + useNextest = true; meta = with lib; { description = "CLI tool to input and store your ideas without leaving the terminal"; From a1bf5b35153a9a3c8468c0031ee1d2976096c5fe Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Dec 2022 23:54:00 -0500 Subject: [PATCH 070/144] castor: enable parallels tests with nextest --- pkgs/applications/networking/browsers/castor/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/castor/default.nix b/pkgs/applications/networking/browsers/castor/default.nix index 5a0a7f0d215b..6a898fb0c95d 100644 --- a/pkgs/applications/networking/browsers/castor/default.nix +++ b/pkgs/applications/networking/browsers/castor/default.nix @@ -40,8 +40,7 @@ rustPlatform.buildRustPackage rec { postInstall = "make PREFIX=$out copy-data"; - # Sometimes tests fail when run in parallel - dontUseCargoParallelThreads = true; + useNextest = true; meta = with lib; { description = "A graphical client for plain-text protocols written in Rust with GTK. It currently supports the Gemini, Gopher and Finger protocols"; From 7833b95d8e30660533fe1ef0ec62715f18fcc65a Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sun, 4 Dec 2022 21:46:07 -0800 Subject: [PATCH 071/144] python310Packages.invisible-watermark: pytorch -> torch --- .../python-modules/invisible-watermark/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/invisible-watermark/default.nix b/pkgs/development/python-modules/invisible-watermark/default.nix index 82357741bab5..ce77b9e3115c 100644 --- a/pkgs/development/python-modules/invisible-watermark/default.nix +++ b/pkgs/development/python-modules/invisible-watermark/default.nix @@ -3,7 +3,7 @@ , pythonOlder , fetchFromGitHub , opencv4 -, pytorch +, torch , onnx , onnxruntime , pillow @@ -14,6 +14,7 @@ buildPythonPackage rec { pname = "invisible-watermark"; version = "0.1.5"; + format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { @@ -25,7 +26,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ opencv4 - pytorch + torch onnx onnxruntime pillow From 4590da9d9c2c4d59ea10667124b0092b1e2a041a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Dec 2022 03:06:47 +0000 Subject: [PATCH 072/144] =?UTF-8?q?terraform-providers.keycloak:=204.0.1?= =?UTF-8?q?=20=E2=86=92=204.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index b4a9d3db3ac8..54a3a16e6d10 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -616,11 +616,11 @@ "vendorHash": "sha256-cLp8w0UcO9Hork/GTLOGCcSvfaYEIKl5so3/0ELm79Y=" }, "keycloak": { - "hash": "sha256-1yV3w3hhZf113XMxvpRvr3ADaRcuCl7BCIa5SIZPcCs=", + "hash": "sha256-DW80CkmeQKJ4tEBrLsdks+mXweL8K1pVu3yQKGAvZOs=", "homepage": "https://registry.terraform.io/providers/mrparkers/keycloak", "owner": "mrparkers", "repo": "terraform-provider-keycloak", - "rev": "v4.0.1", + "rev": "v4.1.0", "spdx": "MIT", "vendorHash": "sha256-nDvnLEOtXkUJFY22pKogOzkWrj4qjyQbdlJ5pa/xnK8=" }, From f9b369ec2e18b9afaf20cd081ef0e48e5e393b23 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 06:27:18 +0000 Subject: [PATCH 073/144] python310Packages.buildbot: 3.6.1 -> 3.7.0 --- pkgs/development/python-modules/buildbot/default.nix | 4 ++-- pkgs/development/python-modules/buildbot/pkg.nix | 2 +- pkgs/development/python-modules/buildbot/plugins.nix | 10 +++++----- pkgs/development/python-modules/buildbot/worker.nix | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix index b1add1a764c0..036759bc1d59 100644 --- a/pkgs/development/python-modules/buildbot/default.nix +++ b/pkgs/development/python-modules/buildbot/default.nix @@ -33,11 +33,11 @@ let package = buildPythonPackage rec { pname = "buildbot"; - version = "3.6.1"; + version = "3.7.0"; src = fetchPypi { inherit pname version; - sha256 = "sha256-ByJPkI0AHis+Ey1lSuMly4M6W4s/xes4eG0gPPJ3fZA="; + sha256 = "sha256-YMLT1SP6NenJIUVTvr58GVrtNXHw+bhfgMpZu3revG4="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/buildbot/pkg.nix b/pkgs/development/python-modules/buildbot/pkg.nix index 2abe2979ccb9..3b16184ae702 100644 --- a/pkgs/development/python-modules/buildbot/pkg.nix +++ b/pkgs/development/python-modules/buildbot/pkg.nix @@ -6,7 +6,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-YmAO8o25uVk1KlyzFg79025KyiopXxWZVpfrvI0H8c4="; + sha256 = "sha256-4BXCOLW5e7RuZEzyD+oRmS2I4oT2W3oTcH4ZPxwKKvU="; }; postPatch = '' diff --git a/pkgs/development/python-modules/buildbot/plugins.nix b/pkgs/development/python-modules/buildbot/plugins.nix index a493d75f8562..4aee37e102ca 100644 --- a/pkgs/development/python-modules/buildbot/plugins.nix +++ b/pkgs/development/python-modules/buildbot/plugins.nix @@ -7,7 +7,7 @@ src = fetchPypi { inherit pname version; - sha256 = "sha256-MXCLaFXmZCzLp3nuzK2PW4aa1CC5JOXkvvswAbMwkXI="; + sha256 = "sha256-t4xHfox6h5PY4+phdCQbClHd77+WfpUWErMZCEcMxu0="; }; # Remove unneccessary circular dependency on buildbot @@ -34,7 +34,7 @@ src = fetchPypi { inherit pname version; - sha256 = "sha256-U89IyfhgIjrf6XH5pFod89zDE9Ln817AHMBCRTPw4tQ="; + sha256 = "sha256-JySn7QO+SgoXjVeV4wYwc9twr0Q2c/wsEspqeq038+k="; }; buildInputs = [ buildbot-pkg ]; @@ -56,7 +56,7 @@ src = fetchPypi { inherit pname version; - sha256 = "sha256-vbf4mMbgCePXlPwQQWeC7knBP1WZhhhEggy1ULNESG8="; + sha256 = "sha256-935eeF2kpT68lK/UMg8MZQOYEj7D8FaT9iSs/lNahYA="; }; buildInputs = [ buildbot-pkg ]; @@ -78,7 +78,7 @@ src = fetchPypi { inherit pname version; - sha256 = "sha256-haLbaeE1aKhHRT5UsKABBeNBRRvt7bVKalT3doQU7SI="; + sha256 = "sha256-3pHSiVoOZj2iCGfiz+tMWWMPHSBH5Ggp6e3+a8topsg="; }; buildInputs = [ buildbot-pkg ]; @@ -100,7 +100,7 @@ src = fetchPypi { inherit pname version; - sha256 = "sha256-zarpv8kwJMFwfZYA+EqEc7636tKud9wXfAbrlZM4bB4="; + sha256 = "sha256-5Qr1FeYIJG/qaFaTB7ScFN9uca+joHKE6FlfKwhubfo="; }; buildInputs = [ buildbot-pkg ]; diff --git a/pkgs/development/python-modules/buildbot/worker.nix b/pkgs/development/python-modules/buildbot/worker.nix index 91c29e31d61b..9099af82f374 100644 --- a/pkgs/development/python-modules/buildbot/worker.nix +++ b/pkgs/development/python-modules/buildbot/worker.nix @@ -28,7 +28,7 @@ buildPythonPackage (rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-13I7sttnxO6vORFZzpOKmXu3PfwOpSGmXqvozrhzIm0="; + sha256 = "sha256-Lc+FNrfXLfeEnDqNBs9R96jtoFEOCG2vLRWGKip/+VM="; }; postPatch = '' From 26f0929fb7d2a57ce9676e58258bff06e399512a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 07:13:25 +0000 Subject: [PATCH 074/144] coturn: 4.6.0 -> 4.6.1 --- pkgs/servers/coturn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix index 92c1e9b4a30a..abf6583350d1 100644 --- a/pkgs/servers/coturn/default.nix +++ b/pkgs/servers/coturn/default.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "coturn"; - version = "4.6.0"; + version = "4.6.1"; src = fetchFromGitHub { owner = "coturn"; repo = "coturn"; rev = version; - sha256 = "sha256-QXApGJme/uteeKS8oiVLPOYUKzxTKdSC4WMlKS0VW5Q="; + sha256 = "sha256-ckqPxG3ieqA0H9g1GfE8hYs6tUsZfzt6/yYR1qlgoxE="; }; nativeBuildInputs = [ pkg-config ]; From 8236c5ebbd9e75087179d47c9545b8534e1722dd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:35:05 +0100 Subject: [PATCH 075/144] python310Packages.aliyun-python-sdk-cdn: add changelog to meta --- .../development/python-modules/aliyun-python-sdk-cdn/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix index c83e7d59e50b..81f046e5bc09 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix @@ -31,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "CDN module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-cdn/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From e69a8d0a40268b68aadc94adc37b3e2cfedb6d11 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:37:50 +0100 Subject: [PATCH 076/144] python310Packages.aliyun-python-sdk-config: add changelog to meta --- .../python-modules/aliyun-python-sdk-config/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix index a1796a2b25f0..0a0d0f29a9b8 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix @@ -31,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "Configuration module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-config/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 4013d8477d39de73dcac6074903d69991feeacf2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:41:13 +0100 Subject: [PATCH 077/144] python310Packages.aliyun-python-sdk-dbfs: add changelog to meta --- .../python-modules/aliyun-python-sdk-dbfs/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix index 9378d620b034..c0a2bed20c3c 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-dbfs/default.nix @@ -31,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "DBFS module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-dbfs/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 0c768a11a13ab8845629074d9c061caf4bd15580 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:42:53 +0100 Subject: [PATCH 078/144] python310Packages.aliyun-python-sdk-core: add changelog to meta --- .../python-modules/aliyun-python-sdk-core/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix index 272a2ea5cccb..16d2842b5e56 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix @@ -40,6 +40,7 @@ buildPythonPackage rec { meta = with lib; { description = "Core module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-core/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 2d75d45a00518a37aa9438445a787369389b20ec Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:44:16 +0100 Subject: [PATCH 079/144] python310Packages.aliyun-python-sdk-iot: add changelog to meta --- .../development/python-modules/aliyun-python-sdk-iot/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix index 069b06d7ad9a..ee690c4981d6 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix @@ -31,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "IoT module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-iot/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 280482e845b580ef55de671704528740cea51859 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:45:19 +0100 Subject: [PATCH 080/144] python310Packages.aliyun-python-sdk-ksm: add changelog to meta --- .../development/python-modules/aliyun-python-sdk-kms/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix index 4356c00a7c73..a57373d02b00 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-kms/default.nix @@ -31,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "KMS module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-kms/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 326da6b31b96f9e73d40948024fecbd41bc048fc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:46:19 +0100 Subject: [PATCH 081/144] python310Packages.aliyun-python-sdk-sts: add changelog to meta --- .../development/python-modules/aliyun-python-sdk-sts/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix index 7217822bbcce..297d347b9f06 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix @@ -31,6 +31,7 @@ buildPythonPackage rec { meta = with lib; { description = "STS module of Aliyun Python SDK"; homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk"; + changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-sts/ChangeLog.txt"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 97cbe0ea6f4f11554cf4ad3820bd5bfb47bd9fb8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:48:01 +0100 Subject: [PATCH 082/144] python310Packages.aliyun-python-sdk-iot: 8.45.0 -> 8.47.0 Changelog: https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-iot/ChangeLog.txt --- .../python-modules/aliyun-python-sdk-iot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix index ee690c4981d6..e8ef83d98fb6 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "aliyun-python-sdk-iot"; - version = "8.45.0"; + version = "8.47.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-9vLc+Rp81P28lCs6KM8Dmt97lPlhnWd6hqZZDTdQEGk="; + hash = "sha256-4NcobMGamIhBnACEQJ9Kvdvj9k4XjJx/Urx38nslAa8="; }; propagatedBuildInputs = [ From 698fb287cf129c5f63812ca0c4958d883cd31f38 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:48:23 +0100 Subject: [PATCH 083/144] python310Packages.aliyun-python-sdk-config: 2.2.1 -> 2.2.2 Changelog: https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-config/ChangeLog.txt --- .../python-modules/aliyun-python-sdk-config/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix index 0a0d0f29a9b8..9bda15181312 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-config/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "aliyun-python-sdk-config"; - version = "2.2.1"; + version = "2.2.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-Me5z68cOfLt8PDHaZ1b/F/KG5mtYAW3LXmNd+0epha8="; + hash = "sha256-cX3DqY8n0UEq9F1xOQI3IQi2Rc4cutcT0y3xc5G9dcg="; }; propagatedBuildInputs = [ From 539fe9be905c042d7a518c62d5696086999ee1e3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:48:50 +0100 Subject: [PATCH 084/144] python310Packages.aliyun-python-sdk-cdn: 3.7.7 -> 3.7.8 Changelog: https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-cdn/ChangeLog.txt --- .../python-modules/aliyun-python-sdk-cdn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix b/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix index 81f046e5bc09..72c91bcc8583 100644 --- a/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix +++ b/pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "aliyun-python-sdk-cdn"; - version = "3.7.7"; + version = "3.7.8"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-Rqz4V6QunddSFeMyROROOL5T4MFPWK1gTorPpNWO8oQ="; + hash = "sha256-alZBTwrImneGNXRWCJy/EhDKWT3/sy4j6BB5fOML8ZA="; }; propagatedBuildInputs = [ From 893863003052ad6e8d14f8807a1a3a1978d1b2f8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:53:12 +0100 Subject: [PATCH 085/144] python310Packages.pyswitchbot: 0.20.8 -> 0.22.0 Diff: https://github.com/Danielhiversen/pySwitchbot/compare/refs/tags/0.20.8...0.22.0 Changelog: https://github.com/Danielhiversen/pySwitchbot/releases/tag/0.22.0 --- pkgs/development/python-modules/pyswitchbot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyswitchbot/default.nix b/pkgs/development/python-modules/pyswitchbot/default.nix index 454ffb2ea0d9..41f4ea8103af 100644 --- a/pkgs/development/python-modules/pyswitchbot/default.nix +++ b/pkgs/development/python-modules/pyswitchbot/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "pyswitchbot"; - version = "0.20.8"; + version = "0.22.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "Danielhiversen"; repo = "pySwitchbot"; rev = "refs/tags/${version}"; - hash = "sha256-fSuWpxao56WSfgW3ZEhcyfWuVG9ebLVfBHK1GN1Nffk="; + hash = "sha256-/FECjJ/iVx4CTtOgxpPBF0lZCctghmD4qUrQQYwmAkQ="; }; propagatedBuildInputs = [ From 7612975ad049e85fb2b01a7881b4ea19bcfa7de9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:56:10 +0100 Subject: [PATCH 086/144] python310Packages.sentry-sdk: 1.11.0 -> 1.11.1 Diff: https://github.com/getsentry/sentry-python/compare/refs/tags/1.11.0...1.11.1 Changelog: https://github.com/getsentry/sentry-python/blob/1.11.1/CHANGELOG.md --- pkgs/development/python-modules/sentry-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix index 5db4264507a4..ff52a049c7ff 100644 --- a/pkgs/development/python-modules/sentry-sdk/default.nix +++ b/pkgs/development/python-modules/sentry-sdk/default.nix @@ -40,7 +40,7 @@ buildPythonPackage rec { pname = "sentry-sdk"; - version = "1.11.0"; + version = "1.11.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -49,7 +49,7 @@ buildPythonPackage rec { owner = "getsentry"; repo = "sentry-python"; rev = "refs/tags/${version}"; - hash = "sha256-PObYXwWYQ7cC//W3c+n/qceu2ShjFqMGAaLyNflwcL4="; + hash = "sha256-2AAi9BrF15TDiv9v2d/UF9JPgJheet33k+7iHqPlw5g="; }; propagatedBuildInputs = [ From 17bc8d4b6a3cd1171a42e08fe21ba07fcb9eca9e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:57:31 +0100 Subject: [PATCH 087/144] python310Packages.twilio: add changelog to meta --- pkgs/development/python-modules/twilio/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix index 6cf44ee9dc7f..38f67381f10d 100644 --- a/pkgs/development/python-modules/twilio/default.nix +++ b/pkgs/development/python-modules/twilio/default.nix @@ -53,6 +53,7 @@ buildPythonPackage rec { meta = with lib; { description = "Twilio API client and TwiML generator"; homepage = "https://github.com/twilio/twilio-python/"; + changelog = "https://github.com/twilio/twilio-python/blob/${version}/CHANGES.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; From b0a76368f3fb2bb93a56a00a3360fc90ad1406c3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 08:59:13 +0100 Subject: [PATCH 088/144] python310Packages.twilio: 7.15.3 -> 7.15.4 Diff: https://github.com/twilio/twilio-python/compare/refs/tags/7.15.3...7.15.4 Changelog: https://github.com/twilio/twilio-python/blob/7.15.4/CHANGES.md --- pkgs/development/python-modules/twilio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix index 38f67381f10d..64e7678bd2b7 100644 --- a/pkgs/development/python-modules/twilio/default.nix +++ b/pkgs/development/python-modules/twilio/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "twilio"; - version = "7.15.3"; + version = "7.15.4"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "twilio"; repo = "twilio-python"; rev = "refs/tags/${version}"; - hash = "sha256-c1UNqp8eYK9tkogpcDtTOTHa5ME+yOkop2UccXwOAqM="; + hash = "sha256-V7JLFesMj0W6k9+svgIBAfemDWiyi7DGdFLBk4/wd+8="; }; propagatedBuildInputs = [ From 96b6cfb7be83440302a2800337bfae23ddad9ab8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:08:35 +0100 Subject: [PATCH 089/144] python310Packages.buildbot: add changelog to meta - specify license - update disabled --- .../python-modules/buildbot/default.nix | 56 +++++++++++++++---- 1 file changed, 44 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix index 036759bc1d59..ed6f37b5e644 100644 --- a/pkgs/development/python-modules/buildbot/default.nix +++ b/pkgs/development/python-modules/buildbot/default.nix @@ -1,8 +1,35 @@ -{ stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k -, python, twisted, jinja2, msgpack, zope_interface, sqlalchemy, alembic -, python-dateutil, txaio, autobahn, pyjwt, pyyaml, treq, txrequests, pypugjs -, boto3, moto, mock, lz4, setuptoolsTrial -, buildbot-worker, buildbot-pkg, buildbot-plugins, parameterized, git, openssh +{ lib +, stdenv +, buildPythonPackage +, fetchPypi +, makeWrapper +, pythonOlder +, python +, twisted +, jinja2 +, msgpack +, zope_interface +, sqlalchemy +, alembic +, python-dateutil +, txaio +, autobahn +, pyjwt +, pyyaml +, treq +, txrequests +, pypugjs +, boto3 +, moto +, mock +, lz4 +, setuptoolsTrial +, buildbot-worker +, buildbot-pkg +, buildbot-plugins +, parameterized +, git +, openssh , glibcLocales , nixosTests }: @@ -17,7 +44,10 @@ let dontBuild = true; doCheck = false; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ + makeWrapper + ]; + propagatedBuildInputs = plugins ++ package.propagatedBuildInputs; installPhase = '' @@ -34,10 +64,13 @@ let package = buildPythonPackage rec { pname = "buildbot"; version = "3.7.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-YMLT1SP6NenJIUVTvr58GVrtNXHw+bhfgMpZu3revG4="; + hash = "sha256-YMLT1SP6NenJIUVTvr58GVrtNXHw+bhfgMpZu3revG4="; }; propagatedBuildInputs = [ @@ -96,8 +129,6 @@ let rm buildbot/test/integration/test_graphql.py ''; - disabled = !isPy3k; - passthru = { inherit withPlugins; tests.buildbot = nixosTests.buildbot; @@ -105,11 +136,12 @@ let }; meta = with lib; { - broken = stdenv.isDarwin; - homepage = "https://buildbot.net/"; description = "An open-source continuous integration framework for automating software build, test, and release processes"; + homepage = "https://buildbot.net/"; + changelog = "https://github.com/buildbot/buildbot/releases/tag/v${version}"; maintainers = with maintainers; [ ryansydnor lopsided98 ]; - license = licenses.gpl2; + license = licenses.gpl2Only; + broken = stdenv.isDarwin; }; }; in package From 108f679f4f80689571205adf375607b0bac49cc2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:14:27 +0100 Subject: [PATCH 090/144] python310Packages.buildbot: fix lint issues --- pkgs/development/python-modules/buildbot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix index ed6f37b5e644..c68595dcec88 100644 --- a/pkgs/development/python-modules/buildbot/default.nix +++ b/pkgs/development/python-modules/buildbot/default.nix @@ -47,7 +47,7 @@ let nativeBuildInputs = [ makeWrapper ]; - + propagatedBuildInputs = plugins ++ package.propagatedBuildInputs; installPhase = '' @@ -65,7 +65,7 @@ let pname = "buildbot"; version = "3.7.0"; format = "setuptools"; - + disabled = pythonOlder "3.7"; src = fetchPypi { From 3ee2983103952069b96407aeee2248a0e74a243c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:17:34 +0100 Subject: [PATCH 091/144] coturn: add changelog to meta --- pkgs/servers/coturn/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix index abf6583350d1..b6e2acfc5902 100644 --- a/pkgs/servers/coturn/default.nix +++ b/pkgs/servers/coturn/default.nix @@ -19,11 +19,14 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "coturn"; repo = "coturn"; - rev = version; - sha256 = "sha256-ckqPxG3ieqA0H9g1GfE8hYs6tUsZfzt6/yYR1qlgoxE="; + rev = "refs/tags/${version}"; + hash = "sha256-ckqPxG3ieqA0H9g1GfE8hYs6tUsZfzt6/yYR1qlgoxE="; }; - nativeBuildInputs = [ pkg-config ]; + nativeBuildInputs = [ + pkg-config + ]; + buildInputs = [ openssl libevent @@ -47,11 +50,12 @@ stdenv.mkDerivation rec { passthru.tests.coturn = nixosTests.coturn; meta = with lib; { - homepage = "https://coturn.net/"; - license = with licenses; [ bsd3 ]; description = "A TURN server"; + homepage = "https://coturn.net/"; + changelog = "https://github.com/coturn/coturn/blob/${version}/ChangeLog", + license = with licenses; [ bsd3 ]; platforms = platforms.all; - broken = stdenv.isDarwin; # 2018-10-21 maintainers = with maintainers; [ ralith _0x4A6F ]; + broken = stdenv.isDarwin; # 2018-10-21 }; } From 2c16d64efdceea43826cf6c7e7a407b8555898da Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:18:14 +0100 Subject: [PATCH 092/144] coturn: fix typo --- pkgs/servers/coturn/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix index b6e2acfc5902..6b9bee6dcdae 100644 --- a/pkgs/servers/coturn/default.nix +++ b/pkgs/servers/coturn/default.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A TURN server"; homepage = "https://coturn.net/"; - changelog = "https://github.com/coturn/coturn/blob/${version}/ChangeLog", + changelog = "https://github.com/coturn/coturn/blob/${version}/ChangeLog"; license = with licenses; [ bsd3 ]; platforms = platforms.all; maintainers = with maintainers; [ ralith _0x4A6F ]; From 3eb6874bda0b517574ecfa06a7cf536fe322b42b Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 2 Dec 2022 10:24:09 +0100 Subject: [PATCH 093/144] compcert: add support for Coq 8.16.1 --- pkgs/development/coq-modules/compcert/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/coq-modules/compcert/default.nix b/pkgs/development/coq-modules/compcert/default.nix index c8c66395c428..fb6527989d8e 100644 --- a/pkgs/development/coq-modules/compcert/default.nix +++ b/pkgs/development/coq-modules/compcert/default.nix @@ -145,6 +145,11 @@ compcert.overrideAttrs (o: url = "https://github.com/AbsInt/CompCert/commit/34be08a23d18d56f2dde24fd24b6dbe3bcb01ec3.patch"; sha256 = "sha256-a5YnftGVadVypEqrOYRRxI7YtGOEWyKnO4GqakFhvzI="; }) + # Support for Coq 8.16.1 + (fetchpatch { + url = "https://github.com/AbsInt/CompCert/commit/35531503b3493cb9b0ec8a8585e84928c85b4af9.patch"; + hash = "sha256-DvtYi/eiPUe8tA0EFTcCjJA0JjtVKceUsX4ZDM0pWkE="; + }) ]; } ] []; From da52ce18b67bad743a45b314693b8a143b7c906a Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 2 Dec 2022 10:39:19 +0100 Subject: [PATCH 094/144] coqPackages.VST: add support for Coq 8.16.1 --- pkgs/development/coq-modules/VST/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/coq-modules/VST/default.nix b/pkgs/development/coq-modules/VST/default.nix index 8ffa99d29b4b..b726a81c24c9 100644 --- a/pkgs/development/coq-modules/VST/default.nix +++ b/pkgs/development/coq-modules/VST/default.nix @@ -39,7 +39,7 @@ mkCoqDerivation { preConfigure = '' patchShebangs util substituteInPlace Makefile \ - --replace 'COQVERSION= ' 'COQVERSION= 8.16.0 or-else 8.15.2 or-else 8.15.1 or-else '\ + --replace 'COQVERSION= ' 'COQVERSION= 8.16.1 or-else 8.16.0 or-else 8.15.2 or-else 8.15.1 or-else '\ --replace 'FLOYD_FILES=' 'FLOYD_FILES= ${toString extra_floyd_files}' ''; From 221b44a07175050f7ed4534e5ea75cd180edc6d5 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 30 Nov 2022 21:19:33 +0100 Subject: [PATCH 095/144] =?UTF-8?q?coq:=208.16.0=20=E2=86=92=208.16.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/applications/science/logic/coq/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix index a258c4f5cea7..82c2b0b61419 100644 --- a/pkgs/applications/science/logic/coq/default.nix +++ b/pkgs/applications/science/logic/coq/default.nix @@ -52,6 +52,7 @@ let "8.15.1".sha256 = "sha256:1janvmnk3czimp0j5qmnfwx6509vhpjc2q7lcza1bc6dm6kn8n42"; "8.15.2".sha256 = "sha256:0qibbvzrhsvs6w3zpkhyclndp29jnr6bs9i5skjlpp431jdjjfqd"; "8.16.0".sha256 = "sha256-3V6kL9j2rn5FHBxq1mtmWWTZS9X5cAyvtUsS6DaM+is="; + "8.16.1".sha256 = "sha256-n7830+zfZeyYHEOGdUo57bH6bb2/SZs8zv8xJhV+iAc="; }; releaseRev = v: "V${v}"; fetched = import ../../../../build-support/coq/meta-fetch/default.nix From 60259cb9eab3a361dc0d4762aae8f8a530dfefcd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:38:05 +0100 Subject: [PATCH 096/144] python310Packages.ttls: add changelog to meta --- pkgs/development/python-modules/ttls/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ttls/default.nix b/pkgs/development/python-modules/ttls/default.nix index ea1d3b789152..573d70b36bf1 100644 --- a/pkgs/development/python-modules/ttls/default.nix +++ b/pkgs/development/python-modules/ttls/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "jschlyter"; repo = pname; - rev = "v${version}"; + rev = "refs/tags/v${version}"; hash = "sha256-lBmkfB7HXB+1xLbfOl4wVtsOVfKhztoDBqzV8i6bFAg="; }; @@ -42,6 +42,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to interact with Twinkly LEDs"; homepage = "https://github.com/jschlyter/ttls"; + changelog = ""https://github.com/jschlyter/ttls/blob/v${version}/CHANGES.md; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; From 4e3a77ecf0cc79f00d870a6babde63b5a2c3ebbe Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:39:58 +0100 Subject: [PATCH 097/144] python310Packages.ttls: 1.4.3 -> 1.5.1 Diff: https://github.com/jschlyter/ttls/compare/refs/tags/v1.4.3...v1.5.1 Changelog: https://github.com/jschlyter/ttls/blob/v1.5.1/CHANGES.md --- pkgs/development/python-modules/ttls/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ttls/default.nix b/pkgs/development/python-modules/ttls/default.nix index 573d70b36bf1..f9e11387d326 100644 --- a/pkgs/development/python-modules/ttls/default.nix +++ b/pkgs/development/python-modules/ttls/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "ttls"; - version = "1.4.3"; + version = "1.5.1"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "jschlyter"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-lBmkfB7HXB+1xLbfOl4wVtsOVfKhztoDBqzV8i6bFAg="; + hash = "sha256-Oh70mLwTaJ2+uQDr2t6wAgskW5L06mZxtD/8dE01YA0="; }; nativeBuildInputs = [ @@ -42,7 +42,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to interact with Twinkly LEDs"; homepage = "https://github.com/jschlyter/ttls"; - changelog = ""https://github.com/jschlyter/ttls/blob/v${version}/CHANGES.md; + changelog = "https://github.com/jschlyter/ttls/blob/v${version}/CHANGES.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; From 9924a10a52eb020ec2a0943dfc1d48690d95fe37 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:47:06 +0100 Subject: [PATCH 098/144] python310Packages.ttp-templates: add changelog to meta --- pkgs/development/python-modules/ttp-templates/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/ttp-templates/default.nix b/pkgs/development/python-modules/ttp-templates/default.nix index ac27cc1aef50..f9b61b760c04 100644 --- a/pkgs/development/python-modules/ttp-templates/default.nix +++ b/pkgs/development/python-modules/ttp-templates/default.nix @@ -34,6 +34,7 @@ buildPythonPackage rec { meta = with lib; { description = "Template Text Parser Templates collections"; homepage = "https://github.com/dmulyalin/ttp_templates"; + changelog = "https://github.com/dmulyalin/ttp_templates/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; From 1090778a4304ac15dc0dceb5265ad7746dc1f784 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:47:54 +0100 Subject: [PATCH 099/144] python310Packages.ttp-templates: 0.3.1 -> 0.3.2 Diff: https://github.com/dmulyalin/ttp_templates/compare/refs/tags/0.3.1...0.3.2 Changelog: https://github.com/dmulyalin/ttp_templates/releases/tag/0.3.2 --- pkgs/development/python-modules/ttp-templates/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ttp-templates/default.nix b/pkgs/development/python-modules/ttp-templates/default.nix index f9b61b760c04..afe58c880546 100644 --- a/pkgs/development/python-modules/ttp-templates/default.nix +++ b/pkgs/development/python-modules/ttp-templates/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "ttp-templates"; - version = "0.3.1"; + version = "0.3.2"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -16,7 +16,7 @@ buildPythonPackage rec { owner = "dmulyalin"; repo = "ttp_templates"; rev = "refs/tags/${version}"; - hash = "sha256-35Ej76E9qy5EY41Jt2GDCldyXq7IkdqKxVFrBOJh9nE="; + hash = "sha256-Bm9//hahM1sP/XDUDR7JcGWz0qF8ovkWZU5x/qj0UZg="; }; nativeBuildInputs = [ From e7ebafeb0227dfe72de8bf516c4c9d1b67ee6b07 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:55:12 +0100 Subject: [PATCH 100/144] python310Packages.slowapi: add changelog to meta --- pkgs/development/python-modules/slowapi/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/slowapi/default.nix b/pkgs/development/python-modules/slowapi/default.nix index 6880053f4900..f018de1ef273 100644 --- a/pkgs/development/python-modules/slowapi/default.nix +++ b/pkgs/development/python-modules/slowapi/default.nix @@ -23,8 +23,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "laurentS"; repo = pname; - rev = "v${version}"; - sha256 = "sha256-3ZkQnroHMCHuTPH/cvi/iWndvdyQ/ZJQ2Qtu1CZyeGg="; + rev = "refs/tags/v${version}"; + hash = "sha256-3ZkQnroHMCHuTPH/cvi/iWndvdyQ/ZJQ2Qtu1CZyeGg="; }; nativeBuildInputs = [ @@ -65,6 +65,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for API rate limiting"; homepage = "https://github.com/laurentS/slowapi"; + changelog = "https://github.com/laurentS/slowapi/blob/v${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From b735e42a08681f79741e2d8c41311a3d8b579b2f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:56:57 +0100 Subject: [PATCH 101/144] python310Packages.slowapi: 0.1.6 -> 0.1.7 Diff: https://github.com/laurentS/slowapi/compare/refs/tags/v0.1.6...v0.1.7 Changelog: https://github.com/laurentS/slowapi/blob/v0.1.7/CHANGELOG.md --- pkgs/development/python-modules/slowapi/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/slowapi/default.nix b/pkgs/development/python-modules/slowapi/default.nix index f018de1ef273..c7f4fcf16175 100644 --- a/pkgs/development/python-modules/slowapi/default.nix +++ b/pkgs/development/python-modules/slowapi/default.nix @@ -15,16 +15,16 @@ buildPythonPackage rec { pname = "slowapi"; - version = "0.1.6"; + version = "0.1.7"; format = "pyproject"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "laurentS"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-3ZkQnroHMCHuTPH/cvi/iWndvdyQ/ZJQ2Qtu1CZyeGg="; + hash = "sha256-IAB7JW8iVb5M610GVK0POXlSiya22KzNgr26BNvPC4Q="; }; nativeBuildInputs = [ From 8fb65a543a8b2d0fd563736751f945c8cb08ca30 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 09:58:57 +0100 Subject: [PATCH 102/144] python310Packages.boschshcpy: 0.2.37 -> 0.2.38 Diff: https://github.com/tschamm/boschshcpy/compare/0.2.37...0.2.38 --- pkgs/development/python-modules/boschshcpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/boschshcpy/default.nix b/pkgs/development/python-modules/boschshcpy/default.nix index c205e7e36eff..3a4c59a44831 100644 --- a/pkgs/development/python-modules/boschshcpy/default.nix +++ b/pkgs/development/python-modules/boschshcpy/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "boschshcpy"; - version = "0.2.37"; + version = "0.2.38"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "tschamm"; repo = pname; rev = version; - sha256 = "sha256-ax1tdqxY4VPuNdH9lJKh5Izmu03XALJ93x5zmSCbeJk="; + sha256 = "sha256-PDS68JJsnKO2MVlNxvhlDEGuK7zlsGhCRVOLZ/TSlTM="; }; propagatedBuildInputs = [ From 2b982eee2103689bbc3e29291c5ff6111f41712f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 10:04:24 +0100 Subject: [PATCH 103/144] python310Packages.elmax-api: add changelog to meta --- pkgs/development/python-modules/elmax-api/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/elmax-api/default.nix b/pkgs/development/python-modules/elmax-api/default.nix index 34d848d9a195..efb734d111c4 100644 --- a/pkgs/development/python-modules/elmax-api/default.nix +++ b/pkgs/development/python-modules/elmax-api/default.nix @@ -17,8 +17,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "albertogeniola"; repo = pname; - rev = "v${version}"; - sha256 = "sha256-YUnLi8+ibUgWoMFMgZPSPbpr286bnWBefxjOV7JfCuY="; + rev = "refs/tags/v${version}"; + hash = "sha256-YUnLi8+ibUgWoMFMgZPSPbpr286bnWBefxjOV7JfCuY="; }; propagatedBuildInputs = [ @@ -37,6 +37,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for interacting with the Elmax cloud"; homepage = "https://github.com/albertogeniola/elmax-api"; + changelog = "https://github.com/albertogeniola/elmax-api/releases/tag/v${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; }; From bdfcc251ab2c5ed55283705253caadee4bf4d732 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 10:08:56 +0100 Subject: [PATCH 104/144] python310Packages.elmax-api: 0.0.2 -> 0.0.3 Diff: https://github.com/albertogeniola/elmax-api/compare/refs/tags/v0.0.2...v0.0.3 Changelog: https://github.com/albertogeniola/elmax-api/releases/tag/v0.0.3 --- pkgs/development/python-modules/elmax-api/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/elmax-api/default.nix b/pkgs/development/python-modules/elmax-api/default.nix index efb734d111c4..a57225d41db0 100644 --- a/pkgs/development/python-modules/elmax-api/default.nix +++ b/pkgs/development/python-modules/elmax-api/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "elmax-api"; - version = "0.0.2"; + version = "0.0.3"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "albertogeniola"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-YUnLi8+ibUgWoMFMgZPSPbpr286bnWBefxjOV7JfCuY="; + hash = "sha256-ZqPDnIiFzxS6nU19bfEgnqEsuz7oI+Z4ac6br6Gr4Vk="; }; propagatedBuildInputs = [ From 18c786729c2f90bea00fd3d7b6c0380a27fcc6ce Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 10:19:14 +0100 Subject: [PATCH 105/144] python310Packages.buildbot: remove whitespace --- pkgs/development/python-modules/buildbot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix index c68595dcec88..c30e54aca998 100644 --- a/pkgs/development/python-modules/buildbot/default.nix +++ b/pkgs/development/python-modules/buildbot/default.nix @@ -47,7 +47,7 @@ let nativeBuildInputs = [ makeWrapper ]; - + propagatedBuildInputs = plugins ++ package.propagatedBuildInputs; installPhase = '' From 547614a2ec53acbd7937ce5acc28b4f89ce04622 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 09:20:08 +0000 Subject: [PATCH 106/144] freecad: 0.20.1 -> 0.20.2 --- pkgs/applications/graphics/freecad/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/freecad/default.nix b/pkgs/applications/graphics/freecad/default.nix index 0cc93bbbe8ab..3794f7cf84fa 100644 --- a/pkgs/applications/graphics/freecad/default.nix +++ b/pkgs/applications/graphics/freecad/default.nix @@ -48,13 +48,13 @@ mkDerivation rec { pname = "freecad"; - version = "0.20.1"; + version = "0.20.2"; src = fetchFromGitHub { owner = "FreeCAD"; repo = "FreeCAD"; rev = version; - hash = "sha256-r2lhFv4ReASteoVxwwiW9TdSckpaju6QE8UegxeY4rE="; + hash = "sha256-v8hanhy0UE0o+XqqIH3ZUtVom3q0KGELcfXFRSDr0TA="; }; nativeBuildInputs = [ From 4495daaa3bfbe9db41847c5f43a43759a5b26f2e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 10:26:20 +0100 Subject: [PATCH 107/144] python310Packages.fakeredis: 2.1.0 -> 2.2.0 Changelog: https://github.com/cunla/fakeredis-py/releases/tag/v2.2.0 --- pkgs/development/python-modules/fakeredis/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fakeredis/default.nix b/pkgs/development/python-modules/fakeredis/default.nix index cc45b86ab626..d86e6b016568 100644 --- a/pkgs/development/python-modules/fakeredis/default.nix +++ b/pkgs/development/python-modules/fakeredis/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "fakeredis"; - version = "2.1.0"; + version = "2.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "dsoftwareinc"; repo = "fakeredis-py"; rev = "refs/tags/v${version}"; - hash = "sha256-d+colAAESTt2YME8URX3e/l6GsC1l0vzg3wY/NQPkDk="; + hash = "sha256-W24DMVp3E6SYaVTUYCRDm/tLaGcjDqecO3rN1RO/J84="; }; nativeBuildInputs = [ From 440211d4d9da3db32234aa054e5c97f8b32a4679 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 10:29:22 +0100 Subject: [PATCH 108/144] python310Packages.adlfs: 2022.10.0 -> 2022.11.2 Changelog: https://github.com/fsspec/adlfs/blob/2022.11.2/CHANGELOG.md --- pkgs/development/python-modules/adlfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/adlfs/default.nix b/pkgs/development/python-modules/adlfs/default.nix index e41f8b75f62f..f600a92162c5 100644 --- a/pkgs/development/python-modules/adlfs/default.nix +++ b/pkgs/development/python-modules/adlfs/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "adlfs"; - version = "2022.10.0"; + version = "2022.11.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "fsspec"; repo = pname; rev = version; - hash = "sha256-h/xcqb7G4uj4WNVE8is/s2LQ2NfzP1negh15G8B9YCs="; + hash = "sha256-S6dJK5ZhDCSwM/14sTrXNJ/+dDe9OeDRemsnuoe4IW0="; }; propagatedBuildInputs = [ From 7c31a00bd8f0354d38b790138372229d7c2736aa Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 10:31:34 +0100 Subject: [PATCH 109/144] python310Packages.adlfs: add changelog to meta --- pkgs/development/python-modules/adlfs/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/adlfs/default.nix b/pkgs/development/python-modules/adlfs/default.nix index f600a92162c5..bdf833276067 100644 --- a/pkgs/development/python-modules/adlfs/default.nix +++ b/pkgs/development/python-modules/adlfs/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "fsspec"; repo = pname; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-S6dJK5ZhDCSwM/14sTrXNJ/+dDe9OeDRemsnuoe4IW0="; }; @@ -43,6 +43,7 @@ buildPythonPackage rec { meta = with lib; { description = "Filesystem interface to Azure-Datalake Gen1 and Gen2 Storage"; homepage = "https://github.com/fsspec/adlfs"; + changelog = "https://github.com/fsspec/adlfs/blob/${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; From 31a9917ad28cb6c0d4b27057d7d03886d86d964c Mon Sep 17 00:00:00 2001 From: rembo10 Date: Fri, 4 Mar 2022 11:11:47 +0530 Subject: [PATCH 110/144] roundcubePlugins.custom_from: init at 1.6.6 --- .../servers/roundcube/plugins/custom_from/default.nix | 11 +++++++++++ pkgs/servers/roundcube/plugins/plugins.nix | 1 + 2 files changed, 12 insertions(+) create mode 100644 pkgs/servers/roundcube/plugins/custom_from/default.nix diff --git a/pkgs/servers/roundcube/plugins/custom_from/default.nix b/pkgs/servers/roundcube/plugins/custom_from/default.nix new file mode 100644 index 000000000000..d7b87a795e8a --- /dev/null +++ b/pkgs/servers/roundcube/plugins/custom_from/default.nix @@ -0,0 +1,11 @@ +{ roundcubePlugin, fetchzip }: + +roundcubePlugin rec { + pname = "custom_from"; + version = "1.6.6"; + + src = fetchzip { + url = "https://github.com/r3c/custom_from/archive/refs/tags/${version}.zip"; + hash = "sha256-QvMYwFWY0BZOkzhDtW7XJ77i5mVkDNAiN4JBdsCuUy0="; + }; +} diff --git a/pkgs/servers/roundcube/plugins/plugins.nix b/pkgs/servers/roundcube/plugins/plugins.nix index 2de2ff736496..8e986f056f25 100644 --- a/pkgs/servers/roundcube/plugins/plugins.nix +++ b/pkgs/servers/roundcube/plugins/plugins.nix @@ -7,6 +7,7 @@ carddav = callPackage ./carddav { }; contextmenu = callPackage ./contextmenu { }; + custom_from = callPackage ./custom_from { }; persistent_login = callPackage ./persistent_login { }; thunderbird_labels = callPackage ./thunderbird_labels { }; } From 543070eafe8d5e86ebaa3095fd1e568db09b9b73 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 28 Nov 2022 11:57:36 +0100 Subject: [PATCH 111/144] =?UTF-8?q?ocamlPackages.gen:=200.5=20=E2=86=92=20?= =?UTF-8?q?1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../development/ocaml-modules/gen/default.nix | 29 +++++++++---------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/pkgs/development/ocaml-modules/gen/default.nix b/pkgs/development/ocaml-modules/gen/default.nix index 1c12f3ac5f87..ee932bffd5e6 100644 --- a/pkgs/development/ocaml-modules/gen/default.nix +++ b/pkgs/development/ocaml-modules/gen/default.nix @@ -1,31 +1,30 @@ -{ stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, ounit }: +{ lib, buildDunePackage, fetchFromGitHub, ocaml +, dune-configurator +, seq +, qcheck, ounit2 +}: -stdenv.mkDerivation rec { - version = "0.5"; - pname = "ocaml${ocaml.version}-gen"; +buildDunePackage rec { + version = "1.0"; + pname = "gen"; + minimalOCamlVersion = "4.03"; src = fetchFromGitHub { owner = "c-cube"; repo = "gen"; - rev = version; - sha256 = "14b8vg914nb0yp1hgxzm29bg692m0gqncjj43b599s98s1cwl92h"; + rev = "v${version}"; + hash = "sha256-YWoVcl2TQoMIgU1LoKL16ia31zJjwAMwuphtSXnhtvw="; }; - nativeBuildInputs = [ ocaml findlib ocamlbuild ]; - buildInputs = lib.optionals doCheck [ qtest ounit ]; - strictDeps = true; - - configureFlags = lib.optional doCheck "--enable-tests"; + buildInputs = [ dune-configurator ]; + propagatedBuildInputs = [ seq ]; + checkInputs = [ qcheck ounit2 ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - checkTarget = "test"; - - createFindlibDestdir = true; meta = { homepage = "https://github.com/c-cube/gen"; description = "Simple, efficient iterators for OCaml"; license = lib.licenses.bsd3; - inherit (ocaml.meta) platforms; }; } From 99775242d3e3ac17174a09103ea4f55b40858b2d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 10:49:38 +0000 Subject: [PATCH 112/144] appthreat-depscan: 3.2.3 -> 3.2.7 --- pkgs/development/tools/appthreat-depscan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/appthreat-depscan/default.nix b/pkgs/development/tools/appthreat-depscan/default.nix index 81096c44ac44..9d77e21c5883 100644 --- a/pkgs/development/tools/appthreat-depscan/default.nix +++ b/pkgs/development/tools/appthreat-depscan/default.nix @@ -5,13 +5,13 @@ python3.pkgs.buildPythonApplication rec { pname = "appthreat-depscan"; - version = "3.2.3"; + version = "3.2.7"; src = fetchFromGitHub { owner = "AppThreat"; repo = "dep-scan"; rev = "refs/tags/v${version}"; - hash = "sha256-VWFYgRIpEmOpOonazoRF0wPUfAiOu90gxm22M6Wkvgo="; + hash = "sha256-nHKEELQzcMKvxAC+u4lPBglsMwyzRpiQF3O+felHTbk="; }; propagatedBuildInputs = with python3.pkgs; [ From 535c434fa831cb5f6bc9018e4477589d8d5eea47 Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Sun, 4 Dec 2022 13:50:29 +0100 Subject: [PATCH 113/144] nixos/snapserver: openFirewall default to false --- nixos/modules/services/audio/snapserver.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/audio/snapserver.nix b/nixos/modules/services/audio/snapserver.nix index fdc1f605bb32..2af42eeb3705 100644 --- a/nixos/modules/services/audio/snapserver.nix +++ b/nixos/modules/services/audio/snapserver.nix @@ -101,9 +101,7 @@ in { openFirewall = mkOption { type = types.bool; - # Make the behavior consistent with other services. Set the default to - # false and remove the accompanying warning after NixOS 22.05 is released. - default = true; + default = false; description = lib.mdDoc '' Whether to automatically open the specified ports in the firewall. ''; @@ -279,12 +277,7 @@ in { # https://github.com/badaix/snapcast/blob/98ac8b2fb7305084376607b59173ce4097c620d8/server/streamreader/stream_manager.cpp#L85 filter (w: w != "") (mapAttrsToList (k: v: if v.type == "spotify" then '' services.snapserver.streams.${k}.type = "spotify" is deprecated, use services.snapserver.streams.${k}.type = "librespot" instead. - '' else "") cfg.streams) - # Remove this warning after NixOS 22.05 is released. - ++ optional (options.services.snapserver.openFirewall.highestPrio >= (mkOptionDefault null).priority) '' - services.snapserver.openFirewall will no longer default to true starting with NixOS 22.11. - Enable it explicitly if you need to control Snapserver remotely. - ''; + '' else "") cfg.streams); systemd.services.snapserver = { after = [ "network.target" ]; From efeb1e50d94d32f6bd8d5821b870a85c1b0a1a9a Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Sun, 4 Dec 2022 13:50:40 +0100 Subject: [PATCH 114/144] nixos/avahi-daemon: openFirewall default to false --- nixos/modules/services/networking/avahi-daemon.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix index 56113bd34594..0875d8a85140 100644 --- a/nixos/modules/services/networking/avahi-daemon.nix +++ b/nixos/modules/services/networking/avahi-daemon.nix @@ -103,7 +103,7 @@ in openFirewall = mkOption { type = types.bool; - default = true; + default = false; description = lib.mdDoc '' Whether to open the firewall for UDP port 5353. ''; From 659803e8794fcb6df44cbe2eceb9abaced8b7a05 Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Sun, 4 Dec 2022 13:50:48 +0100 Subject: [PATCH 115/144] nixos/tmate-ssh-server: openFirewall default to false --- nixos/modules/services/networking/tmate-ssh-server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/tmate-ssh-server.nix b/nixos/modules/services/networking/tmate-ssh-server.nix index 1b8f6662ef4c..f7740b1ddfcc 100644 --- a/nixos/modules/services/networking/tmate-ssh-server.nix +++ b/nixos/modules/services/networking/tmate-ssh-server.nix @@ -44,7 +44,7 @@ in openFirewall = mkOption { type = types.bool; - default = true; + default = false; description = mdDoc "Whether to automatically open the specified ports in the firewall."; }; From 372a2d211115178be0af566a8621f25041015bde Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Sun, 4 Dec 2022 13:50:59 +0100 Subject: [PATCH 116/144] nixos/unifi-video: openFirewall default to false --- nixos/modules/services/video/unifi-video.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/video/unifi-video.nix b/nixos/modules/services/video/unifi-video.nix index fcc3cb02a1b0..450e92dd9a37 100644 --- a/nixos/modules/services/video/unifi-video.nix +++ b/nixos/modules/services/video/unifi-video.nix @@ -148,7 +148,7 @@ in openFirewall = mkOption { type = types.bool; - default = true; + default = false; description = lib.mdDoc '' Whether or not to open the required ports on the firewall. ''; From 0d805d3a0b4a6913ac65a0d1e981e529779a22b5 Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Sun, 4 Dec 2022 19:38:29 +0100 Subject: [PATCH 117/144] nixos/rl-2305: mention openFirewall changed to false for services --- .../from_md/release-notes/rl-2305.section.xml | 40 +++++++++++++++++++ .../manual/release-notes/rl-2305.section.md | 8 ++++ 2 files changed, 48 insertions(+) diff --git a/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml index 0fd0382998c2..914be23576e0 100644 --- a/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml +++ b/nixos/doc/manual/from_md/release-notes/rl-2305.section.xml @@ -70,6 +70,46 @@ deprecation. + + + The + services.snapserver.openFirewall + module option default value has been changed from + true to false. You will + need to explicitely set this option to + true, or configure your firewall. + + + + + The + services.avahi.openFirewall + module option default value has been changed from + true to false. You will + need to explicitely set this option to + true, or configure your firewall. + + + + + The + services.tmate-ssh-server.openFirewall + module option default value has been changed from + true to false. You will + need to explicitely set this option to + true, or configure your firewall. + + + + + The + services.unifi-video.openFirewall + module option default value has been changed from + true to false. You will + need to explicitely set this option to + true, or configure your firewall. + + The EC2 image module previously detected and automatically diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md index 39550d44733a..3640cf8e963e 100644 --- a/nixos/doc/manual/release-notes/rl-2305.section.md +++ b/nixos/doc/manual/release-notes/rl-2305.section.md @@ -27,6 +27,14 @@ In addition to numerous new and upgraded packages, this release has the followin - `services.sourcehut.dispatch` and the corresponding package (`sourcehut.dispatchsrht`) have been removed due to [upstream deprecation](https://sourcehut.org/blog/2022-08-01-dispatch-deprecation-plans/). +- The [services.snapserver.openFirewall](#opt-services.snapserver.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. + +- The [services.avahi.openFirewall](#opt-services.avahi.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. + +- The [services.tmate-ssh-server.openFirewall](#opt-services.tmate-ssh-server.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. + +- The [services.unifi-video.openFirewall](#opt-services.unifi-video.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitely set this option to `true`, or configure your firewall. + - The EC2 image module previously detected and automatically mounted ext3-formatted instance store devices and partitions in stage-1 (initramfs), storing `/tmp` on the first discovered device. This behaviour, which only catered to very specific use cases and could not be disabled, has been removed. Users relying on this should provide their own implementation, and probably use ext4 and perform the mount in stage-2. - The EC2 image module previously detected and activated swap-formatted instance store devices and partitions in stage-1 (initramfs). This behaviour has been removed. Users relying on this should provide their own implementation. From 600a84ae16a679f1d504d5bcb3e76dd244e2e533 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 12:19:57 +0100 Subject: [PATCH 118/144] python310Packages.teslajsonpy: 3.4.0 -> 3.4.1 Diff: https://github.com/zabuldon/teslajsonpy/compare/refs/tags/v3.4.0...v3.4.1 Changelog: https://github.com/zabuldon/teslajsonpy/releases/tag/v3.4.1 --- pkgs/development/python-modules/teslajsonpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/teslajsonpy/default.nix b/pkgs/development/python-modules/teslajsonpy/default.nix index 92925e18578e..35df2ced7e89 100644 --- a/pkgs/development/python-modules/teslajsonpy/default.nix +++ b/pkgs/development/python-modules/teslajsonpy/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "teslajsonpy"; - version = "3.4.0"; + version = "3.4.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "zabuldon"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-R3/Oh1sQCTPooL6+wNz2KD9NlxxshslT4DgSkga0x8k="; + hash = "sha256-RPCzxcuD57ma306GLYsxxvvvZ0e8RTd/KxOeMSaQQQQ="; }; nativeBuildInputs = [ From ccabe4e63265f99f955600d3444e826e1c2322db Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 12:26:14 +0100 Subject: [PATCH 119/144] python310Packages.slack-sdk: 3.19.4 -> 3.19.5 Diff: https://github.com/slackapi/python-slack-sdk/compare/refs/tags/v3.19.4...v3.19.5 Changelog: https://github.com/slackapi/python-slack-sdk/releases/tag/v3.19.5 --- pkgs/development/python-modules/slack-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/slack-sdk/default.nix b/pkgs/development/python-modules/slack-sdk/default.nix index df9861e6a2a5..86a944668e2c 100644 --- a/pkgs/development/python-modules/slack-sdk/default.nix +++ b/pkgs/development/python-modules/slack-sdk/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "slack-sdk"; - version = "3.19.4"; + version = "3.19.5"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "slackapi"; repo = "python-slack-sdk"; rev = "refs/tags/v${version}"; - hash = "sha256-cSPua601vQRJ431Sh02CLFtNb7pqbrkJ5ned/NjKM4s="; + hash = "sha256-/DVcnfHjvmRreHSlZbzxz6pbqytEUdqbaGbQVxIW4Qk="; }; propagatedBuildInputs = [ From ab268cd1be5367e1f23d3a7bc9c32991fa4ea8f6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 12:22:33 +0000 Subject: [PATCH 120/144] aliyun-cli: 3.0.139 -> 3.0.140 --- pkgs/tools/admin/aliyun-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/aliyun-cli/default.nix b/pkgs/tools/admin/aliyun-cli/default.nix index 3519795ecdf5..5a3495002cad 100644 --- a/pkgs/tools/admin/aliyun-cli/default.nix +++ b/pkgs/tools/admin/aliyun-cli/default.nix @@ -2,14 +2,14 @@ buildGoModule rec { pname = "aliyun-cli"; - version = "3.0.139"; + version = "3.0.140"; src = fetchFromGitHub { rev = "v${version}"; owner = "aliyun"; repo = pname; fetchSubmodules = true; - sha256 = "sha256-SNqOxloz4/mIl2VmrcSz+GUYfgDZMnYFV0nkGCjQY0c="; + sha256 = "sha256-mkUHYow3UA+lZ7/T18Qao9Ugxh27Mm1AuUDAG3JzUrU="; }; vendorSha256 = "sha256-aviRsflpS9/o2B7mpYQE7d9ahLclM+jiVz+cJOlegCY="; From 53f5d708b65cc86ab062a71125c957db149e3276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?PedroHLC=20=E2=98=AD?= Date: Fri, 2 Dec 2022 15:43:32 -0300 Subject: [PATCH 121/144] linuxKernel.kernels.linux_zen: 6.0.10-zen2 -> 6.0.11-zen1 --- pkgs/os-specific/linux/kernel/zen-kernels.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/zen-kernels.nix b/pkgs/os-specific/linux/kernel/zen-kernels.nix index 6ee6c38a31b8..7d40603432e4 100644 --- a/pkgs/os-specific/linux/kernel/zen-kernels.nix +++ b/pkgs/os-specific/linux/kernel/zen-kernels.nix @@ -4,9 +4,9 @@ let # comments with variant added for update script # ./update-zen.py zen zenVariant = { - version = "6.0.10"; #zen - suffix = "zen2"; #zen - sha256 = "12mpgw1maa5yi35ls4j1m0vmlw4fka69n0pidbxqi3yadbfn2iy5"; #zen + version = "6.0.11"; #zen + suffix = "zen1"; #zen + sha256 = "0b694kbi3xyl23p7xf4w9abnp033gfp2czlpla9a5q7xwmjlc67p"; #zen isLqx = false; }; # ./update-zen.py lqx From dc970c83493742d20ce314eb53c6379ebb753f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?PedroHLC=20=E2=98=AD?= Date: Fri, 2 Dec 2022 15:44:44 -0300 Subject: [PATCH 122/144] linuxKernel.kernels.linux_lqx: 6.0.10-lqx1 -> 6.0.11-lqx2 --- pkgs/os-specific/linux/kernel/zen-kernels.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/zen-kernels.nix b/pkgs/os-specific/linux/kernel/zen-kernels.nix index 7d40603432e4..df7f5fe0bef6 100644 --- a/pkgs/os-specific/linux/kernel/zen-kernels.nix +++ b/pkgs/os-specific/linux/kernel/zen-kernels.nix @@ -11,9 +11,9 @@ let }; # ./update-zen.py lqx lqxVariant = { - version = "6.0.10"; #lqx - suffix = "lqx1"; #lqx - sha256 = "0hbak9m4j259xrhbv173axbfzr13r47xqsax7s64ga9688bra1m7"; #lqx + version = "6.0.11"; #lqx + suffix = "lqx2"; #lqx + sha256 = "089mhxfdfi6wv0f2jx3j30y71mrkwrw5k8a7hyga1516j17qxva1"; #lqx isLqx = true; }; zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // { From 790134b280661d903a8fb2f3e3ef0074ebe0852f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 12:53:02 +0000 Subject: [PATCH 123/144] aws-sso-cli: 1.9.5 -> 1.9.6 --- pkgs/tools/admin/aws-sso-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/aws-sso-cli/default.nix b/pkgs/tools/admin/aws-sso-cli/default.nix index c00593d71951..34219c35cf15 100644 --- a/pkgs/tools/admin/aws-sso-cli/default.nix +++ b/pkgs/tools/admin/aws-sso-cli/default.nix @@ -6,13 +6,13 @@ }: buildGoModule rec { pname = "aws-sso-cli"; - version = "1.9.5"; + version = "1.9.6"; src = fetchFromGitHub { owner = "synfinatic"; repo = pname; rev = "v${version}"; - sha256 = "sha256-voCFr5rb9VBSG926SeE2cMuk1gJskoaqjvkRY/9TZFU="; + sha256 = "sha256-3IqWmd3Qi2eVSR9vmZSTt5GLrlO4akjOGdpzndh6nT8="; }; vendorSha256 = "sha256-f0HrQzHK1JDWmRrnqG/N4X8TG0DP/IRWd6b7QR/vyzo="; From 462e073113035e49fd80fd33a139217cad2f30e7 Mon Sep 17 00:00:00 2001 From: gbtb Date: Mon, 5 Dec 2022 23:10:06 +1000 Subject: [PATCH 124/144] speechd: prevent leak of mbrola into closure if espeak is disabled --- pkgs/development/libraries/speechd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/speechd/default.nix b/pkgs/development/libraries/speechd/default.nix index 021246d73028..962d056ce7dd 100644 --- a/pkgs/development/libraries/speechd/default.nix +++ b/pkgs/development/libraries/speechd/default.nix @@ -39,7 +39,7 @@ in stdenv.mkDerivation rec { src = ./fix-paths.patch; utillinux = util-linux; }) - ] ++ lib.optionals espeak.mbrolaSupport [ + ] ++ lib.optionals (withEspeak && espeak.mbrolaSupport) [ # Replace FHS paths. (substituteAll { src = ./fix-mbrola-paths.patch; From 50bb886acc6f240980c9b010c89c58434d7d0fa5 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 5 Dec 2022 01:42:15 -0500 Subject: [PATCH 125/144] the-way: 0.17.1 -> 0.18.0, add figsoda as a maintainer, use nextest Diff: https://github.com/out-of-cheese-error/the-way/compare/v0.17.1...v0.18.0 Changelog: https://github.com/out-of-cheese-error/the-way/blob/v0.18.0/CHANGELOG.md --- pkgs/development/tools/the-way/default.nix | 25 +++++++++++----------- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/pkgs/development/tools/the-way/default.nix b/pkgs/development/tools/the-way/default.nix index 2e54aeb3046d..f17cd980d919 100644 --- a/pkgs/development/tools/the-way/default.nix +++ b/pkgs/development/tools/the-way/default.nix @@ -1,23 +1,23 @@ -{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, AppKit, Security }: +{ lib, rustPlatform, fetchCrate, installShellFiles, stdenv, darwin }: rustPlatform.buildRustPackage rec { pname = "the-way"; - version = "0.17.1"; + version = "0.18.0"; - src = fetchFromGitHub { - owner = "out-of-cheese-error"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-Imo1CUk2H4/K9w/FnIBEkKFXd7OIAuApejcNY+rs7JU="; + src = fetchCrate { + inherit pname version; + sha256 = "sha256-UgD9ulJtRlNuux80FQhgLYjJ6OsyWXZCBGY9qdmd9Jk="; }; + cargoSha256 = "sha256-z5+71I/q1+vz2CPAU06yjRSjpKyT6npjPi48lu21NZs="; + nativeBuildInputs = [ installShellFiles ]; - buildInputs = lib.optionals stdenv.isDarwin [ AppKit Security ]; + buildInputs = lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.AppKit + ]; - cargoSha256 = "sha256-3ZiNRXrb3gpXXOxztf0eimJE16PpQTD/OWFmeTDIr2w="; - checkFlagsArray = lib.optionals stdenv.isDarwin [ "--skip=copy" ]; - dontUseCargoParallelTests = true; + useNextest = true; postInstall = '' $out/bin/the-way config default tmp.toml @@ -30,7 +30,8 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Terminal code snippets manager"; homepage = "https://github.com/out-of-cheese-error/the-way"; + changelog = "https://github.com/out-of-cheese-error/the-way/blob/v${version}/CHANGELOG.md"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ numkem ]; + maintainers = with maintainers; [ figsoda numkem ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4b721e3997ba..f3bcaead836d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6635,9 +6635,7 @@ with pkgs; teamocil = callPackage ../tools/misc/teamocil { }; - the-way = callPackage ../development/tools/the-way { - inherit (darwin.apple_sdk.frameworks) AppKit Security; - }; + the-way = callPackage ../development/tools/the-way { }; timeline = callPackage ../applications/office/timeline { }; From dcbb3c0b48aefbeaa2881815a63711bd2d08f29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 5 Dec 2022 15:05:58 +0100 Subject: [PATCH 126/144] jemalloc: move comment to right place, update website --- pkgs/development/libraries/jemalloc/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/jemalloc/default.nix b/pkgs/development/libraries/jemalloc/default.nix index c505dc6db55a..420f414da6f7 100644 --- a/pkgs/development/libraries/jemalloc/default.nix +++ b/pkgs/development/libraries/jemalloc/default.nix @@ -28,9 +28,9 @@ stdenv.mkDerivation rec { }) ]; - # see the comment on stripPrefix - configureFlags = [] - ++ lib.optional stripPrefix "--with-jemalloc-prefix=" + configureFlags = + # see the comment on stripPrefix + lib.optional stripPrefix "--with-jemalloc-prefix=" ++ lib.optional disableInitExecTls "--disable-initial-exec-tls" # jemalloc is unable to correctly detect transparent hugepage support on # ARM (https://github.com/jemalloc/jemalloc/issues/526), and the default @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with lib; { - homepage = "http://jemalloc.net"; + homepage = "https://jemalloc.net/"; description = "General purpose malloc(3) implementation"; longDescription = '' malloc(3)-compatible memory allocator that emphasizes fragmentation From c6059ff8b6dee55564aca53338dd8c4e619698e1 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 5 Dec 2022 14:12:38 +0000 Subject: [PATCH 127/144] resholve: use system from stdenv.hostPlatform instead of alias --- pkgs/development/misc/resholve/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/misc/resholve/default.nix b/pkgs/development/misc/resholve/default.nix index 6b8e71994189..3e901070a2e2 100644 --- a/pkgs/development/misc/resholve/default.nix +++ b/pkgs/development/misc/resholve/default.nix @@ -1,12 +1,12 @@ { lib +, stdenv , pkgsBuildHost -, system , ... }: let pkgs = import ../../../.. { - inherit system; + inherit (stdenv.hostPlatform) system; # Allow python27 with known security issues only for resholve, # see issue #201859 for the reasoning # In resholve case this should not be a security issue, From 6c6111a66c695c73a0877c8dc04cdd282e11b06e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 16:53:25 +0000 Subject: [PATCH 128/144] jackett: 0.20.2318 -> 0.20.2325 --- pkgs/servers/jackett/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix index bc6feacb1a5a..34d2910f8f09 100644 --- a/pkgs/servers/jackett/default.nix +++ b/pkgs/servers/jackett/default.nix @@ -9,13 +9,13 @@ buildDotnetModule rec { pname = "jackett"; - version = "0.20.2318"; + version = "0.20.2325"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "H5djOk/kxN0998oM/hQB6VF6s+ONfyAmRrPX4lDDw3Q="; + sha256 = "LFdgvLFdVSkSaJKonbFz+Wi6+BWkIcybNLvW0C21FOU="; }; projectFile = "src/Jackett.Server/Jackett.Server.csproj"; From 1a0449aba32cebf7dddee42b44601dd78ce43ce9 Mon Sep 17 00:00:00 2001 From: William Kral Date: Sun, 13 Nov 2022 09:16:10 -0800 Subject: [PATCH 129/144] scryer-prolog: 0.9.0 -> 0.9.1 --- .../compilers/scryer-prolog/cargo.patch | 64 ++++--------------- .../compilers/scryer-prolog/default.nix | 16 +---- .../compilers/scryer-prolog/fix-tests.patch | 29 --------- 3 files changed, 14 insertions(+), 95 deletions(-) delete mode 100644 pkgs/development/compilers/scryer-prolog/fix-tests.patch diff --git a/pkgs/development/compilers/scryer-prolog/cargo.patch b/pkgs/development/compilers/scryer-prolog/cargo.patch index ccce7ba357d7..48db924ca261 100644 --- a/pkgs/development/compilers/scryer-prolog/cargo.patch +++ b/pkgs/development/compilers/scryer-prolog/cargo.patch @@ -1,66 +1,24 @@ diff --git a/Cargo.lock b/Cargo.lock -index 4d699f11..1eb894fc 100644 +index 05e54911..3a567165 100644 --- a/Cargo.lock +++ b/Cargo.lock -@@ -875,15 +875,6 @@ version = "0.1.4" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" - --[[package]] --name = "openssl-src" --version = "300.0.2+3.0.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "14a760a11390b1a5daf72074d4f6ff1a6e772534ae191f999f57e9ee8146d1fb" --dependencies = [ -- "cc", --] -- - [[package]] - name = "openssl-sys" - version = "0.9.70" -@@ -893,7 +884,6 @@ dependencies = [ - "autocfg 1.0.1", - "cc", - "libc", -- "openssl-src", - "pkg-config", - "vcpkg", - ] -@@ -1432,6 +1422,7 @@ dependencies = [ - "divrem", +@@ -1826,6 +1826,7 @@ dependencies = [ + "futures", "fxhash", "git-version", + "gmp-mpfr-sys", "hostname", - "indexmap", - "instructions-template", + "hyper", + "hyper-tls", diff --git a/Cargo.toml b/Cargo.toml -index 8e81a947..d21a8d49 100644 +index 6e42de23..a50e3d47 100644 --- a/Cargo.toml +++ b/Cargo.toml -@@ -55,7 +55,7 @@ ring = "0.16.13" - ripemd160 = "0.8.0" - sha3 = "0.8.2" - blake2 = "0.8.1" --openssl = { version = "0.10.29", features = ["vendored"] } -+openssl = { version = "0.10.29" } - native-tls = "0.2.4" - chrono = "0.4.11" - select = "0.4.3" -@@ -66,10 +66,14 @@ sodiumoxide = "0.2.6" - static_assertions = "1.1.0" - slice-deque = "0.3.0" +@@ -63,6 +63,7 @@ hyper = { version = "0.14", features = ["full"] } + hyper-tls = "0.5.0" + tokio = { version = "1", features = ["full"] } + futures = "0.3" ++gmp-mpfr-sys = { version = "1.4.10", features = ["use-system-libs"] } -+[dependencies.gmp-mpfr-sys] -+version = "1.4" -+features = ["use-system-libs"] -+ [dev-dependencies] assert_cmd = "1.0.3" - predicates-core = "1.0.2" - serial_test = "0.5.1" - - [profile.release] --debug = true -\ No newline at end of file -+debug = true diff --git a/pkgs/development/compilers/scryer-prolog/default.nix b/pkgs/development/compilers/scryer-prolog/default.nix index 0d4d843664ca..739d600bf63d 100644 --- a/pkgs/development/compilers/scryer-prolog/default.nix +++ b/pkgs/development/compilers/scryer-prolog/default.nix @@ -1,7 +1,6 @@ { stdenv , lib , fetchFromGitHub -, fetchpatch , rustPlatform , rustfmt , gmp @@ -13,30 +12,21 @@ rustPlatform.buildRustPackage rec { pname = "scryer-prolog"; - version = "0.9.0"; + version = "0.9.1"; src = fetchFromGitHub { owner = "mthom"; repo = "scryer-prolog"; rev = "v${version}"; - sha256 = "3NHpEg6QaUaqbBCq8uM5hFcqS24q4XrOnKjMmn8Z1Dg="; + sha256 = "bDLVOXX9nv6Guu5czRFkviJf7dBiaqt5O8SLUJlcBZo="; }; cargoPatches = [ # Use system openssl, gmp, mpc and mpfr. ./cargo.patch - - ./fix-tests.patch - - # Avoid testing failing with "couldn't save history" - (fetchpatch { - name = "fix-tests-1"; - url = "https://patch-diff.githubusercontent.com/raw/mthom/scryer-prolog/pull/1342.patch"; - sha256 = "2N0AOkFuf+H/aUn2QTXgmqjmvShTxHxB6kNuNdNoVRI="; - }) ]; - cargoSha256 = "nqAHVXAmTW9mdE2L2yhpOTz16JbYgQUmCgiFq9pBzUU="; + cargoSha256 = "A6HtvxGTjJliDMUSGkQKB13FRyfBU4EPvrlZ97ic0Ic="; nativeBuildInputs = [ pkg-config rustfmt]; buildInputs = [ openssl gmp libmpc mpfr ]; diff --git a/pkgs/development/compilers/scryer-prolog/fix-tests.patch b/pkgs/development/compilers/scryer-prolog/fix-tests.patch deleted file mode 100644 index 53ececfdc794..000000000000 --- a/pkgs/development/compilers/scryer-prolog/fix-tests.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff --git a/tests/scryer/src_tests.rs b/tests/scryer/src_tests.rs -index b0b9efb5..8fddd842 100644 ---- a/tests/scryer/src_tests.rs -+++ b/tests/scryer/src_tests.rs -@@ -46,24 +46,6 @@ fn rules() { - load_module_test("src/tests/rules.pl", ""); - } - --#[serial] --#[test] --fn setup_call_cleanup_load() { -- load_module_test( -- "src/tests/setup_call_cleanup.pl", -- "1+21+31+2>_17737+_177381+_158071+2>41+2>_177381+2>31+2>31+2>4ba" -- ); --} -- --#[test] --fn setup_call_cleanup_process() { -- run_top_level_test_with_args( -- &["src/tests/setup_call_cleanup.pl", "-f", "-g", "halt"], -- "", -- "1+21+31+2>_19590+_195911+_176601+2>41+2>_195911+2>31+2>31+2>4ba" -- ); --} -- - #[serial] - #[test] - fn clpz_load() { From 4acbee468cd78915c8e91ba59839f8bb12125ceb Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Mon, 5 Dec 2022 09:29:30 -0800 Subject: [PATCH 130/144] hexyl: 0.10.0 -> 0.11.0 --- pkgs/tools/misc/hexyl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/hexyl/default.nix b/pkgs/tools/misc/hexyl/default.nix index b426c7c117a6..07c3d54d3108 100644 --- a/pkgs/tools/misc/hexyl/default.nix +++ b/pkgs/tools/misc/hexyl/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "hexyl"; - version = "0.10.0"; + version = "0.11.0"; src = fetchFromGitHub { owner = "sharkdp"; repo = pname; rev = "v${version}"; - sha256 = "sha256-LskDHUm45OlWbzlumaIXPXCZEBA5dXanhzgAvenJgVk="; + hash = "sha256-Y/zEJx+tUYCA/Clvwvnsy7L3whIXT7e5bgluhrOOPjM="; }; - cargoSha256 = "sha256-qKk95hGcThu0y3ND9z3mXw1TBaVkwAOrznaqj2k3SEk="; + cargoHash = "sha256-NpEwuVz0tFkbUZQ4W+ojeD3omEXZ7YRqDmy/zLe5Z1o="; meta = with lib; { changelog = "https://github.com/sharkdp/hexyl/releases/tag/v${version}"; From 470cc589bcfab8b6ad52507918d4dd0070c9b9c0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 18:32:23 +0100 Subject: [PATCH 131/144] python310Packages.winacl: add changelog to meta --- pkgs/development/python-modules/winacl/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/winacl/default.nix b/pkgs/development/python-modules/winacl/default.nix index c8c92c2f08bf..1ae83c7df9dc 100644 --- a/pkgs/development/python-modules/winacl/default.nix +++ b/pkgs/development/python-modules/winacl/default.nix @@ -36,6 +36,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module for ACL/ACE/Security descriptor manipulation"; homepage = "https://github.com/skelsec/winacl"; + changelog = "https://github.com/skelsec/winacl/releases/tag/${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From a8b32d0184655cd41e1694806e87eba24550a872 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 5 Dec 2022 18:33:06 +0100 Subject: [PATCH 132/144] python310Packages.winacl: 0.1.5 -> 0.1.6 Changelog: https://github.com/skelsec/winacl/releases/tag/0.1.6 --- pkgs/development/python-modules/winacl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/winacl/default.nix b/pkgs/development/python-modules/winacl/default.nix index 1ae83c7df9dc..f58ce1fecbf7 100644 --- a/pkgs/development/python-modules/winacl/default.nix +++ b/pkgs/development/python-modules/winacl/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "winacl"; - version = "0.1.5"; + version = "0.1.6"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-8/dLFbzn7ARuJ27MA8LSMCykBdEntYQXuOyj/yqjaWE="; + hash = "sha256-GAw3Vgej9v8gSIpMaN2pbOptWsqTvC0Kph70yfj2LDQ="; }; propagatedBuildInputs = [ From 20e9c067c7b394443b05378015d1148ffd482040 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 13:01:33 +0000 Subject: [PATCH 133/144] bazarr: 1.1.2 -> 1.1.3 --- pkgs/servers/bazarr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/bazarr/default.nix b/pkgs/servers/bazarr/default.nix index ce9b03189222..71f2272e3b52 100644 --- a/pkgs/servers/bazarr/default.nix +++ b/pkgs/servers/bazarr/default.nix @@ -8,13 +8,13 @@ let in stdenv.mkDerivation rec { pname = "bazarr"; - version = "1.1.2"; + version = "1.1.3"; sourceRoot = "."; src = fetchurl { url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip"; - sha256 = "sha256-cTSRfnMYAyoOoTy0wx8sxqyS92zP6GZu8aH5hRRTxU4="; + sha256 = "sha256-jt6E+VtD7JdPIJdWBkVrQyiNfT7vxSYz4kXrFQAdpXE="; }; nativeBuildInputs = [ unzip makeWrapper ]; From 831fc4f86ae716f702ba39e2e4b1ca95198fec35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 5 Dec 2022 17:08:00 +0100 Subject: [PATCH 134/144] nixos/tests/bazarr: remove unneeded timezone workaround The issue was fixed in bazarr-1.1.3. --- nixos/tests/bazarr.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/nixos/tests/bazarr.nix b/nixos/tests/bazarr.nix index 13b27bb530c0..2e49c958dd00 100644 --- a/nixos/tests/bazarr.nix +++ b/nixos/tests/bazarr.nix @@ -17,9 +17,6 @@ in listenPort = port; }; nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["unrar"]; - # Workaround for https://github.com/morpheus65535/bazarr/issues/1983 - # ("Crash when running without timezone info"). - time.timeZone = "UTC"; }; testScript = '' From 957790410031fcea6de97efbbcce197c931c634f Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Mon, 5 Dec 2022 10:46:34 -0800 Subject: [PATCH 135/144] unpoller: 2.2.0 -> 2.3.1 --- pkgs/servers/monitoring/unpoller/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/unpoller/default.nix b/pkgs/servers/monitoring/unpoller/default.nix index 77a68d18ef82..a9d7730f48ca 100644 --- a/pkgs/servers/monitoring/unpoller/default.nix +++ b/pkgs/servers/monitoring/unpoller/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "unpoller"; - version = "2.2.0"; + version = "2.3.1"; src = fetchFromGitHub { owner = "unpoller"; repo = "unpoller"; rev = "v${version}"; - hash = "sha256-jPatTo+5nQ73AETXI88x/bma0wlY333DNvuyaYQTgz0="; + hash = "sha256-0IknWsJ7fWJuvXeiMZscWEv8p90KZQaQC4Q0KV98Z88="; }; - vendorHash = "sha256-Y4FcBLdVB3AjJOpP2CuoNVAIxaqlZxHI0yKzp7Wqpwc="; + vendorHash = "sha256-l2V41Rf8KDoh/fC9NcuGF4ISwCLwpbVuzQZiqiGNbuc="; ldflags = [ "-w" "-s" From 87849c9009979276b09390ce7a3e2832d6cbea4c Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Mon, 5 Dec 2022 10:47:13 -0800 Subject: [PATCH 136/144] unpoller: add Frostman to maintainers --- pkgs/servers/monitoring/unpoller/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/unpoller/default.nix b/pkgs/servers/monitoring/unpoller/default.nix index a9d7730f48ca..7c55f580fe78 100644 --- a/pkgs/servers/monitoring/unpoller/default.nix +++ b/pkgs/servers/monitoring/unpoller/default.nix @@ -29,6 +29,6 @@ buildGoModule rec { homepage = "https://github.com/unpoller/unpoller"; changelog = "https://github.com/unpoller/unpoller/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ Frostman ]; }; } From eeb1fad1bc5995dc2b36e5cff7a78ace4621a17f Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 5 Dec 2022 13:59:15 -0500 Subject: [PATCH 137/144] neovide: drop python2, clean up --- .../editors/neovim/neovide/default.nix | 95 +++++++------------ pkgs/top-level/all-packages.nix | 4 +- 2 files changed, 35 insertions(+), 64 deletions(-) diff --git a/pkgs/applications/editors/neovim/neovide/default.nix b/pkgs/applications/editors/neovim/neovide/default.nix index 3a32516b7d3c..f9c3ea8a7c78 100644 --- a/pkgs/applications/editors/neovim/neovide/default.nix +++ b/pkgs/applications/editors/neovim/neovide/default.nix @@ -1,40 +1,34 @@ -{ rustPlatform -, runCommand -, lib +{ lib +, rustPlatform +, clangStdenv , fetchFromGitHub +, linkFarm , fetchgit -, fetchurl +, runCommand +, gn +, ninja , makeWrapper , pkg-config -, python2 , python3 -, openssl +, removeReferencesTo +, xcbuild , SDL2 , fontconfig -, freetype -, ninja -, gn -, llvmPackages -, makeFontsConf +, xorg +, stdenv +, darwin , libglvnd , libxkbcommon -, stdenv , enableWayland ? stdenv.isLinux , wayland -, xorg -, xcbuild -, Security -, ApplicationServices -, AppKit -, Carbon -, removeReferencesTo }: -rustPlatform.buildRustPackage rec { + +rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } rec { pname = "neovide"; version = "0.10.3"; src = fetchFromGitHub { - owner = "Kethku"; + owner = "neovide"; repo = "neovide"; rev = version; sha256 = "sha256-CcBiCcfOJzuq0DnokTUHpMdo7Ry29ugQ+N7Hk0R+cQE="; @@ -52,35 +46,24 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-w5dw/lGm40gKkHPR1ji/L82Oa808Kuh8qaCeiqBLkLw="; }; # The externals for skia are taken from skia/DEPS - externals = lib.mapAttrs (n: fetchgit) (lib.importJSON ./skia-externals.json); + externals = linkFarm "skia-externals" (lib.mapAttrsToList + (name: value: { inherit name; path = fetchgit value; }) + (lib.importJSON ./skia-externals.json)); in - runCommand "source" {} ( - '' - cp -R ${repo} $out - chmod -R +w $out + runCommand "source" { } '' + cp -R ${repo} $out + chmod -R +w $out + ln -s ${externals} $out/third_party/externals + '' + ; - mkdir -p $out/third_party/externals - cd $out/third_party/externals - '' + (builtins.concatStringsSep "\n" (lib.mapAttrsToList (name: value: "cp -ra ${value} ${name}") externals)) - ); - - SKIA_NINJA_COMMAND = "${ninja}/bin/ninja"; SKIA_GN_COMMAND = "${gn}/bin/gn"; - LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; - - preConfigure = '' - unset CC CXX - ''; - - # test needs a valid fontconfig file - FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; }; + SKIA_NINJA_COMMAND = "${ninja}/bin/ninja"; nativeBuildInputs = [ - pkg-config makeWrapper - python2 # skia-bindings - python3 # rust-xcb - llvmPackages.clang # skia + pkg-config + python3 # skia removeReferencesTo ] ++ lib.optionals stdenv.isDarwin [ xcbuild ]; @@ -91,21 +74,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; buildInputs = [ - openssl SDL2 - (fontconfig.overrideAttrs (old: { - propagatedBuildInputs = [ - # skia is not compatible with freetype 2.11.0 - (freetype.overrideAttrs (old: rec { - version = "2.10.4"; - src = fetchurl { - url = "mirror://savannah/${old.pname}/${old.pname}-${version}.tar.xz"; - sha256 = "112pyy215chg7f7fmp2l9374chhhpihbh8wgpj5nj6avj3c59a46"; - }; - })) - ]; - })) - ] ++ lib.optionals stdenv.isDarwin [ Security ApplicationServices Carbon AppKit ]; + fontconfig + rustPlatform.bindgenHook + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.AppKit + ]; postFixup = let libPath = lib.makeLibraryPath ([ @@ -138,10 +112,9 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "This is a simple graphical user interface for Neovim."; - homepage = "https://github.com/Kethku/neovide"; + homepage = "https://github.com/neovide/neovide"; + changelog = "https://github.com/neovide/neovide/releases/tag/${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ ck3d ]; - platforms = platforms.all; - mainProgram = "neovide"; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4b721e3997ba..4686d84422a9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32782,9 +32782,7 @@ with pkgs; gnvim = callPackage ../applications/editors/neovim/gnvim/wrapper.nix { }; - neovide = callPackage ../applications/editors/neovim/neovide { - inherit (darwin.apple_sdk.frameworks) Security ApplicationServices Carbon AppKit; - }; + neovide = callPackage ../applications/editors/neovim/neovide { }; neovim-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { }; From 929771b9ed06bc8405647267101fb75dec43cc03 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 29 Nov 2022 05:32:55 +0100 Subject: [PATCH 138/144] =?UTF-8?q?ocaml-ng.ocamlPackages=5F5=5F0:=205.0.0?= =?UTF-8?q?-=CE=B21=20=E2=86=92=205.0.0-=CE=B22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/compilers/ocaml/5.0.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/ocaml/5.0.nix b/pkgs/development/compilers/ocaml/5.0.nix index a36b3e31a427..f469be56445b 100644 --- a/pkgs/development/compilers/ocaml/5.0.nix +++ b/pkgs/development/compilers/ocaml/5.0.nix @@ -1,9 +1,9 @@ import ./generic.nix { major_version = "5"; minor_version = "0"; - patch_version = "0-beta1"; + patch_version = "0-beta2"; src = fetchTarball { - url = "https://caml.inria.fr/pub/distrib/ocaml-5.0/ocaml-5.0.0~beta1.tar.xz"; - sha256 = "sha256:1kwb53ra5qbwiiyrx5da7l5mqkjf0fr3rqgkrm3wr83l25scimj4"; + url = "https://caml.inria.fr/pub/distrib/ocaml-5.0/ocaml-5.0.0~beta2.tar.xz"; + sha256 = "sha256:1r76a3wadidca9306wkkcxdh5l0rk93pc6xmbs46cc1jfm6pgwas"; }; } From c8366d7f3e282c46b3dba73c305692089c924d55 Mon Sep 17 00:00:00 2001 From: Bill Huang Date: Tue, 6 Dec 2022 04:00:45 +0800 Subject: [PATCH 139/144] python310Packages.ale-py: init at 0.8.0 (#199118) Co-authored-by: Sandro --- .../ale-py/cmake-pybind11.patch | 18 ++++ .../python-modules/ale-py/default.nix | 83 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 3 files changed, 103 insertions(+) create mode 100644 pkgs/development/python-modules/ale-py/cmake-pybind11.patch create mode 100644 pkgs/development/python-modules/ale-py/default.nix diff --git a/pkgs/development/python-modules/ale-py/cmake-pybind11.patch b/pkgs/development/python-modules/ale-py/cmake-pybind11.patch new file mode 100644 index 000000000000..5bcf5b1d9b2f --- /dev/null +++ b/pkgs/development/python-modules/ale-py/cmake-pybind11.patch @@ -0,0 +1,18 @@ +diff --git a/src/python/CMakeLists.txt b/src/python/CMakeLists.txt +index 911e280..d484943 100644 +--- a/src/python/CMakeLists.txt ++++ b/src/python/CMakeLists.txt +@@ -1,12 +1,6 @@ + find_package(Python3 COMPONENTS Interpreter Development.Module REQUIRED) + +-include(FetchContent) +-FetchContent_Declare( +- pybind11 +- GIT_REPOSITORY https://github.com/pybind/pybind11 +- GIT_TAG v2.10.0) +-FetchContent_MakeAvailable(pybind11) +- ++find_package(pybind11 REQUIRED) + add_library(ale-py MODULE ale_python_interface.cpp) + # Depend on the ALE and pybind11 module + target_link_libraries(ale-py PUBLIC ale ale-lib) diff --git a/pkgs/development/python-modules/ale-py/default.nix b/pkgs/development/python-modules/ale-py/default.nix new file mode 100644 index 000000000000..5a2893349eaf --- /dev/null +++ b/pkgs/development/python-modules/ale-py/default.nix @@ -0,0 +1,83 @@ +{ buildPythonPackage +, SDL2 +, cmake +, fetchFromGitHub +, git +, gym +, importlib-metadata +, importlib-resources +, lib +, ninja +, numpy +, pybind11 +, pytestCheckHook +, python +, pythonOlder +, setuptools +, stdenv +, typing-extensions +, wheel +, zlib +}: + +buildPythonPackage rec { + pname = "ale-py"; + version = "0.8.0"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "mgbellemare"; + repo = "Arcade-Learning-Environment"; + rev = "v${version}"; + sha256 = "sha256-OPAtCc2RapK1lALTKHd95bkigxcZ9bcONu32I/91HIg="; + }; + + patches = [ + # don't download pybind11, use local pybind11 + ./cmake-pybind11.patch + ]; + + nativeBuildInputs = [ + cmake + setuptools + wheel + pybind11 + ]; + + buildInputs = [ + zlib + SDL2 + ]; + + propagatedBuildInputs = [ + typing-extensions + importlib-resources + numpy + ] ++ lib.optionals (pythonOlder "3.10") [ + importlib-metadata + ]; + + checkInputs = [ + pytestCheckHook + gym + ]; + + postPatch = '' + substituteInPlace pyproject.toml \ + --replace 'dynamic = ["version"]' 'version = "${version}"' + substituteInPlace setup.py \ + --replace 'subprocess.check_output(["git", "rev-parse", "--short", "HEAD"], cwd=here)' 'b"${src.rev}"' + ''; + + dontUseCmakeConfigure = true; + + pythonImportsCheck = [ "ale_py" ]; + + meta = with lib; { + description = "a simple framework that allows researchers and hobbyists to develop AI agents for Atari 2600 games"; + homepage = "https://github.com/mgbellemare/Arcade-Learning-Environment"; + license = licenses.gpl2; + maintainers = with maintainers; [ billhuang ]; + broken = stdenv.isDarwin; # fails to link with missing library + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0b9ac35ef5fb..2c8945f53617 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -372,6 +372,8 @@ self: super: with self; { alarmdecoder = callPackage ../development/python-modules/alarmdecoder { }; + ale-py = callPackage ../development/python-modules/ale-py { }; + alectryon = callPackage ../development/python-modules/alectryon { }; alembic = callPackage ../development/python-modules/alembic { }; From 0284480527be8935b21600cf1cdfaf3d7274bfb6 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 5 Dec 2022 15:01:35 -0500 Subject: [PATCH 140/144] patsh: add comments explaining the patches --- pkgs/development/tools/misc/patsh/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/misc/patsh/default.nix b/pkgs/development/tools/misc/patsh/default.nix index e36ce7c884bd..63ec7ec1e5e5 100644 --- a/pkgs/development/tools/misc/patsh/default.nix +++ b/pkgs/development/tools/misc/patsh/default.nix @@ -7,6 +7,8 @@ }: let + # copied from flake.nix + # tests require extra setup with nix custom = runCommand "custom" { } '' mkdir -p $out/bin touch $out/bin/{'foo$','foo"`'} @@ -29,6 +31,7 @@ rustPlatform.buildRustPackage rec { checkInputs = [ custom ]; + # see comment on `custom` postPatch = '' for file in tests/fixtures/*-expected.sh; do substituteInPlace $file \ From 5d723f6ad4126ae0e2525c85e6995209c3cf0e15 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 4 Dec 2022 20:49:06 +0100 Subject: [PATCH 141/144] ansible-language-server: init at 1.0.2-next.0 --- .../tools/ansible-language-server/default.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/development/tools/ansible-language-server/default.nix diff --git a/pkgs/development/tools/ansible-language-server/default.nix b/pkgs/development/tools/ansible-language-server/default.nix new file mode 100644 index 000000000000..be4bba8c2659 --- /dev/null +++ b/pkgs/development/tools/ansible-language-server/default.nix @@ -0,0 +1,43 @@ +{ lib +, buildNpmPackage +, fetchFromGitHub +}: + +buildNpmPackage rec { + pname = "ansible-language-server"; + version = "1.0.2-next.0"; + + src = fetchFromGitHub { + owner = "ansible"; + repo = pname; + rev = "refs/tags/v${version}"; + hash = "sha256-E4xWwqXl5n/eChJ8JM32K2gTYE/F8Y76J3Sll++48Uo="; + }; + + npmDepsHash = "sha256-8FP6hF85w1Zbhiwi2V350ZWFAykAfvsXRGL8bvGk1XE="; + npmBuildScript = "compile"; + + # We remove the prepare and prepack scripts because they run the + # build script, and therefore are redundant. + # + # Additionally, the prepack script runs npm ci in addition to the + # build script. Directly before npm pack is run, we make npm unaware + # of the dependency cache, causing the npm ci invocation to fail, + # wiping out node_modules, which causes a mysterious error stating that tsc isn't installed. + postPatch = '' + sed -i '/"prepare"/d' package.json + sed -i '/"prepack"/d' package.json + ''; + + passthru.updateScript = { + attrPath = pname; + }; + + meta = with lib; { + changelog = "https://github.com/ansible/ansible-language-server/releases/tag/v${version}"; + description = "Ansible Language Server"; + homepage = "https://github.com/ansible/ansible-language-server"; + license = licenses.mit; + maintainers = with maintainers; [ hexa ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8825c82a6480..b301c0d10cfd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16463,6 +16463,8 @@ with pkgs; ansible-doctor = with python3.pkgs; toPythonApplication ansible-doctor; + ansible-language-server = callPackage ../development/tools/ansible-language-server { }; + ansible-later = with python3.pkgs; toPythonApplication ansible-later; ansible-lint = with python3.pkgs; toPythonApplication ansible-lint; From 3a5e1d626cea9459a8e4ce65ef1ba77bbeef61e9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 5 Dec 2022 00:59:38 +0100 Subject: [PATCH 142/144] nodePackages."@ansible/ansible-language-server": drop in favor of `ansible-language-server` built using buildNpmPackage. --- .../node-packages/node-packages.json | 1 - .../node-packages/node-packages.nix | 14776 ++++++++-------- 2 files changed, 6956 insertions(+), 7821 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index dd08fb37e67f..490b2d42483d 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -1,6 +1,5 @@ [ "@angular/cli" -, "@ansible/ansible-language-server" , "@antfu/ni" , "@antora/cli" , "@antora/site-generator-default" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 89848dc12c11..2eac3cc94afc 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -148,13 +148,13 @@ let sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; }; }; - "@angular-devkit/architect-0.1402.8" = { + "@angular-devkit/architect-0.1500.2" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1402.8"; + version = "0.1500.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.8.tgz"; - sha512 = "z3HXPBi3h3y+D04NNA/5lVaUCMF+dkE/75bCqg4DG3FqV0i0dh4hozjKtWgX6xuoJ8AJlDfrJSaBCvjsog+Jhg=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1500.2.tgz"; + sha512 = "gprTEy6vD57yJCd6JqRaFZ/pfmXuEDHlH7mOVBcBdTGuuE1VJkiNJ69E9gw552L7wwVEsF0D6lVYTFHVDkMDmA=="; }; }; "@angular-devkit/core-14.2.1" = { @@ -175,13 +175,13 @@ let sha512 = "ofDhTmJqoAkmkJP0duwUaCxDBMxPlc+AWYwgs3rKKZeJBb0d+tchEXHXevD5bYbbRfXtnwM+Vye2XYHhA4nWAA=="; }; }; - "@angular-devkit/core-14.2.8" = { + "@angular-devkit/core-15.0.2" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "14.2.8"; + version = "15.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.8.tgz"; - sha512 = "30nDq2PH91X7T42xXFBlTiXTBG143z0BL8IUgpVCxTFYwxgPbtV4bcXTkiBgh1FL/usZcHa0Bd/64wxmFOpYwA=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-15.0.2.tgz"; + sha512 = "XkdNKyeYvnCq0zWuEda163muUV38ifNyK6EjrbhI5pQWNg7myxtDmLenjtpXLGLZwjxqsart2l/uoYsk1xQCmQ=="; }; }; "@angular-devkit/schematics-14.2.1" = { @@ -202,13 +202,13 @@ let sha512 = "90hseNg1yQ2AR+lVr/NByZRHnYAlzCL6hr9p9q1KPHxA3Owo04yX6n6dvR/xf27hCopXInXKPsasR59XCx5ZOQ=="; }; }; - "@angular-devkit/schematics-14.2.8" = { + "@angular-devkit/schematics-15.0.2" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "14.2.8"; + version = "15.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.8.tgz"; - sha512 = "L5GEgueZV4vqZy9Ar0zxVJOHK/4ttF1nPjW4Ut1vRFJGxsHFVEpxq5eGBf2JYSiOhqmFYc6GnJOxA6C4xAIHjA=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.0.2.tgz"; + sha512 = "FqimOzQCwRGmz/NPPiK6QpAxI+qpy8rYQRlWRWSOfQgjb+cl4rD2isllalYvzO+5mmb88fwJ7bj9cP2X5khpcg=="; }; }; "@angular-devkit/schematics-cli-14.2.2" = { @@ -382,6 +382,15 @@ let sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; }; }; + "@apidevtools/json-schema-ref-parser-9.1.0" = { + name = "_at_apidevtools_slash_json-schema-ref-parser"; + packageName = "@apidevtools/json-schema-ref-parser"; + version = "9.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.1.0.tgz"; + sha512 = "teB30tFooE3iQs2HQIKJ02D8UZA1Xy1zaczzhUjJs0CymYxeC0g+y5rCY2p8NHBM6DBUVoR8rSM4kHLj1WE9mQ=="; + }; + }; "@apidevtools/openapi-schemas-2.1.0" = { name = "_at_apidevtools_slash_openapi-schemas"; packageName = "@apidevtools/openapi-schemas"; @@ -418,6 +427,24 @@ let sha512 = "Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw=="; }; }; + "@apollo/protobufjs-1.2.7" = { + name = "_at_apollo_slash_protobufjs"; + packageName = "@apollo/protobufjs"; + version = "1.2.7"; + src = fetchurl { + url = "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.7.tgz"; + sha512 = "Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg=="; + }; + }; + "@apollo/usage-reporting-protobuf-4.0.2" = { + name = "_at_apollo_slash_usage-reporting-protobuf"; + packageName = "@apollo/usage-reporting-protobuf"; + version = "4.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@apollo/usage-reporting-protobuf/-/usage-reporting-protobuf-4.0.2.tgz"; + sha512 = "GfE8aDqi/lAFut95pjH9IRvH0zGsQ5G/2lYL0ZLZfML7ArX+A4UVHFANQcPCcUYGE6bI6OPhLekg4Vsjf6B1cw=="; + }; + }; "@apollo/utils.dropunuseddefinitions-1.1.0" = { name = "_at_apollo_slash_utils.dropunuseddefinitions"; packageName = "@apollo/utils.dropunuseddefinitions"; @@ -427,13 +454,13 @@ let sha512 = "jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg=="; }; }; - "@apollo/utils.keyvaluecache-1.0.1" = { + "@apollo/utils.keyvaluecache-1.0.2" = { name = "_at_apollo_slash_utils.keyvaluecache"; packageName = "@apollo/utils.keyvaluecache"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.1.tgz"; - sha512 = "nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA=="; + url = "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.2.tgz"; + sha512 = "p7PVdLPMnPzmXSQVEsy27cYEjVON+SH/Wb7COyW3rQN8+wJgT1nv9jZouYtztWW8ZgTkii5T6tC9qfoDREd4mg=="; }; }; "@apollo/utils.logger-1.0.1" = { @@ -481,13 +508,13 @@ let sha512 = "E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w=="; }; }; - "@apollo/utils.usagereporting-1.0.0" = { + "@apollo/utils.usagereporting-1.0.1" = { name = "_at_apollo_slash_utils.usagereporting"; packageName = "@apollo/utils.usagereporting"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.0.tgz"; - sha512 = "5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w=="; + url = "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.1.tgz"; + sha512 = "6dk+0hZlnDbahDBB2mP/PZ5ybrtCJdLMbeNJD+TJpKyZmSY6bA3SjI8Cr2EM9QA+AdziywuWg+SgbWUF3/zQqQ=="; }; }; "@apollographql/apollo-tools-0.5.4" = { @@ -535,13 +562,13 @@ let sha512 = "TmB2K5UfpDpSbCNBBntXzKHcAk2EA3/P68jmWvmJvglVUdkO9V6kTAuXVe12+h6C4GK0ndwuCrHHtEVcL5t6pQ=="; }; }; - "@astrojs/compiler-0.27.2" = { + "@astrojs/compiler-0.29.18" = { name = "_at_astrojs_slash_compiler"; packageName = "@astrojs/compiler"; - version = "0.27.2"; + version = "0.29.18"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-0.27.2.tgz"; - sha512 = "VG4X87cUkcmT40HqEwShQzUgl0VSnVTszobbmnhAOkHzdoWMxhwAm61A2o5fEsv6eEK8M0lW/fGwkSofYM5GcQ=="; + url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-0.29.18.tgz"; + sha512 = "45WhB74a/Eb/3iMJPjDXHs8r0S6NuPi3maVNLWnuW3CDmkUcJGMFPXP+qH1Xn0YDNkzk7Lt9Kw529heFPMMbZA=="; }; }; "@asyncapi/specs-3.2.1" = { @@ -625,13 +652,13 @@ let sha512 = "Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA=="; }; }; - "@aws-sdk/abort-controller-3.201.0" = { + "@aws-sdk/abort-controller-3.222.0" = { name = "_at_aws-sdk_slash_abort-controller"; packageName = "@aws-sdk/abort-controller"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.201.0.tgz"; - sha512 = "xJ984k+CKlGjBmvNarzM8Y+b6X4L1Zt0TycQmVBJq7fAr/ju9l13pQIoXR5WlDIW1FkGeVczF5Nu6fN46SCORQ=="; + url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.222.0.tgz"; + sha512 = "Ric2vJQEWrzz915wBeZlYLWAnIsnywOcZpzroPVTY/TNKRvM0GcSPVuD9vv1lOwybVnDHsipukzwQBAZXkNWVA=="; }; }; "@aws-sdk/chunked-blob-reader-3.188.0" = { @@ -643,202 +670,211 @@ let sha512 = "zkPRFZZPL3eH+kH86LDYYXImiClA1/sW60zYOjse9Pgka+eDJlvBN6hcYxwDEKjcwATYiSRR1aVQHcfCinlGXg=="; }; }; - "@aws-sdk/chunked-blob-reader-native-3.204.0" = { + "@aws-sdk/chunked-blob-reader-native-3.208.0" = { name = "_at_aws-sdk_slash_chunked-blob-reader-native"; packageName = "@aws-sdk/chunked-blob-reader-native"; - version = "3.204.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.204.0.tgz"; - sha512 = "ejJntS6usQpKKwisIaK4yYjo8DKEPpk7eJ7fJCw0r4WmIa7xN3amZISP4TrnKa401nWxbfzd40Wh/R5p75JMNQ=="; + url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.208.0.tgz"; + sha512 = "JeOZ95PW+fJ6bbuqPySYqLqHk1n4+4ueEEraJsiUrPBV0S1ZtyvOGHcnGztKUjr2PYNaiexmpWuvUve9K12HRA=="; }; }; - "@aws-sdk/client-s3-3.204.0" = { + "@aws-sdk/client-s3-3.223.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.204.0.tgz"; - sha512 = "TtaOQ0ArmqV23Ie/FUChMIdAT5ebg5FSSimN3X2SFVmXRt9c9N73X/gLHKqzf30Dgsl7M/w9O6jFtlbvANjBmA=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.223.0.tgz"; + sha512 = "hIQfiseFXf04jz14iyQhfV9eRz9XgiMihl9oQhKs3CpL7bFGkhCkCIwbqUrsheqcD1O2wcOSKTAt6QdYbDyhzg=="; }; }; - "@aws-sdk/client-sso-3.204.0" = { + "@aws-sdk/client-sso-3.223.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.204.0.tgz"; - sha512 = "AECcNrcAQxV/Jlu8ogshRaYwt2jayx0omQJs/SXj70mWxmbk4MQnb+DqJIpPpOKBHaza/xlC2TKS1RzkiuZxyw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.223.0.tgz"; + sha512 = "1gVmZ7XypZEWUeKnvjS/cZSL/cM1riOGrhp+dr+np58ZT5zSrpWAAeKE5+ftzC/vn770vnD5piLGdAZwg/Jf1g=="; }; }; - "@aws-sdk/client-sts-3.204.0" = { + "@aws-sdk/client-sso-oidc-3.223.0" = { + name = "_at_aws-sdk_slash_client-sso-oidc"; + packageName = "@aws-sdk/client-sso-oidc"; + version = "3.223.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.223.0.tgz"; + sha512 = "MeXm6expqpBwwN5GWm8QedAxWGv1jpdxae5oSqsrfRSHFVcHVxWWQzx9/GMBpKqGLtXVmisex2vckBQa1MhybQ=="; + }; + }; + "@aws-sdk/client-sts-3.223.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.204.0.tgz"; - sha512 = "Tp6FqENRw31XK5r5hul1JXnQgHBhbbXhoMebyFih6/zjpATaqg0bnV6tpww4yPi3uc+yDGXKw2/tDroSsyTsRA=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.223.0.tgz"; + sha512 = "RYGx6SOT38MfX4Dm8lyEwZ/bEqhl3TZyGFqtFHGTEEgyqPkuqiZPfSSWNmsaf6HAVYKObp7kJUX6w8EeEw332w=="; }; }; - "@aws-sdk/config-resolver-3.201.0" = { + "@aws-sdk/config-resolver-3.222.0" = { name = "_at_aws-sdk_slash_config-resolver"; packageName = "@aws-sdk/config-resolver"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.201.0.tgz"; - sha512 = "6YLIel7OGMGi+r8XC1A54cQJRIpx/NJ4fBALy44zFpQ+fdJUEmw4daUf1LECmAQiPA2Pr/hD0nBtX+wiiTf5/g=="; + url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.222.0.tgz"; + sha512 = "rG/Yh0R+GQe86ofEb24QAjQ19tHb4HMCyCuMZUZCsIdgNmUfcaH21Ug5s7pJrAfEy/F2gwxs+VfBeXKjT0MqSQ=="; }; }; - "@aws-sdk/credential-provider-env-3.201.0" = { + "@aws-sdk/credential-provider-env-3.222.0" = { name = "_at_aws-sdk_slash_credential-provider-env"; packageName = "@aws-sdk/credential-provider-env"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.201.0.tgz"; - sha512 = "g2MJsowzFhSsIOITUjYp7EzWFeHINjEP526Uf+5z2/p2kxQVwYYWZQK7j+tPE2Bk3MEjGOCmVHbbE7IFj0rNHw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.222.0.tgz"; + sha512 = "xV6cmJ9zMi8nWySqBv1ze/EFlzXEfazu3i/T/5MpOufPvuGpXTQ3/PDEbC6mKBtvomoQ0fonc/cZrix7YcJV0Q=="; }; }; - "@aws-sdk/credential-provider-imds-3.201.0" = { + "@aws-sdk/credential-provider-imds-3.222.0" = { name = "_at_aws-sdk_slash_credential-provider-imds"; packageName = "@aws-sdk/credential-provider-imds"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.201.0.tgz"; - sha512 = "i8U2k3/L3iUWJJ1GSlwVBMfLQ2OTUT97E8yJi/xz5GavYuPOsUQWQe4fp7WGQivxh+AqybXAGFUCYub6zfUqag=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.222.0.tgz"; + sha512 = "n090ouw5AFhb0EfzRElUTmqCNOQ1zjlxau30oVM7+qKtXH85hEGMQOoRQAl9ch/pXcbjKLh1mbUhmonR97/Kvw=="; }; }; - "@aws-sdk/credential-provider-ini-3.204.0" = { + "@aws-sdk/credential-provider-ini-3.223.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.204.0.tgz"; - sha512 = "ddtaS0ya5lgZZwfuJ/FuniroreLJ6yDgPAasol/rla9U5EU0qUEK1+6PX463exghUGjYfTqxdrKXhGYZfuEoIw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.223.0.tgz"; + sha512 = "+jB0XIqAw7Cni1uqPV6SMQl7FlpUVELdHVnR+DYL3WOV4MJ4amTu9MAXrpvbEXbK3+7eFQ2/tDe+7i8qGXZFTw=="; }; }; - "@aws-sdk/credential-provider-node-3.204.0" = { + "@aws-sdk/credential-provider-node-3.223.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.204.0.tgz"; - sha512 = "kGbR5JE90zBGDS4cIz7tlUklMMeOm5oc5ES74YStLUacpQKwzVcHmDG8aT2DCONS/wEYysOIs5LygHurOJ/+Ww=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.223.0.tgz"; + sha512 = "mvY96yX4xQ9/Aujr0HqMXhdToiEKg7fFUoN+NgV3yB/hj2q1Ry3j8WbiIfAcBvFLjNwHT7ae/8nVRHYYlNeXFw=="; }; }; - "@aws-sdk/credential-provider-process-3.201.0" = { + "@aws-sdk/credential-provider-process-3.222.0" = { name = "_at_aws-sdk_slash_credential-provider-process"; packageName = "@aws-sdk/credential-provider-process"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.201.0.tgz"; - sha512 = "jTK3HSZgNj/hVrWb0wuF/cPUWSJYoRI/80fnN55o6QLS8WWIgOI8o2PNeVTAT5OrKioSoN4fgKTeUm3DZy3npQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.222.0.tgz"; + sha512 = "IgEk8Tne1b2v2k/wVjuddKi+HEAFJWUoEcvLCnYRdlVX5l+Nnatw8vGYb+gTi9X7nKNqEGfMbifKCFoePKjC0Q=="; }; }; - "@aws-sdk/credential-provider-sso-3.204.0" = { + "@aws-sdk/credential-provider-sso-3.223.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.204.0.tgz"; - sha512 = "iS884Gda99x4zmdCK3XxFcceve4wB+wudpeTUm2wwX9AGrSzoUnLWqNXv/R8UAMAsKANaWMBkqv/bsHpsEitZw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.223.0.tgz"; + sha512 = "sRxH6fhLYME+EIiHRqIzkUgPaAvc5+dV8+09jEZ1yBjum9AQycipXrbbDRNLXWJZJZTA/BsHfUpAScFOjyZf7A=="; }; }; - "@aws-sdk/credential-provider-web-identity-3.201.0" = { + "@aws-sdk/credential-provider-web-identity-3.222.0" = { name = "_at_aws-sdk_slash_credential-provider-web-identity"; packageName = "@aws-sdk/credential-provider-web-identity"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.201.0.tgz"; - sha512 = "U54bqhYaClPVZfswgknhlICp3BAtKXpOgHQCUF8cko5xUgbL4lVgd1rC3lWviGFMQAaTIF3QOXyEouemxr3VXw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.222.0.tgz"; + sha512 = "dImqTEWt38nVcDe/wQqHWJ+R2zyNqVKwejfslgbH2YilUnDU43xq2KJhNe4s+YhCB6tHOTkbNnpZo7vPV5Zxog=="; }; }; - "@aws-sdk/eventstream-codec-3.201.0" = { + "@aws-sdk/eventstream-codec-3.222.0" = { name = "_at_aws-sdk_slash_eventstream-codec"; packageName = "@aws-sdk/eventstream-codec"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.201.0.tgz"; - sha512 = "lz0FFzOMXvVdy47GnRk+niK+L7MxUZITvK7UUOL6u++JB+54jS+EsD9iLSNhM5qoR9vCiFjabBhkPz9Ml6bdmw=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.222.0.tgz"; + sha512 = "sxLpo3NYrvj8CnTkpLsb2uXvUU8jnAG5q22HIBxBrpeFzgvUA9uIfPD7yPZhe4+/C7v+ER19ysXetKjiAOrQMA=="; }; }; - "@aws-sdk/eventstream-serde-browser-3.201.0" = { + "@aws-sdk/eventstream-serde-browser-3.222.0" = { name = "_at_aws-sdk_slash_eventstream-serde-browser"; packageName = "@aws-sdk/eventstream-serde-browser"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.201.0.tgz"; - sha512 = "3/rZRBTxikj1Uyo8NDdaXey9zy7Xck/rKjykpBMbUYr4lnvXZDGQ0ie4/EMz+k5UbRsZgP46KdJo2ThgwTBvdw=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.222.0.tgz"; + sha512 = "owwgmkpuLM7UtNPRZjvCOp5fo6MKY8avygQA0VMsbQSCq1DJFpmDsk7yTRB+n7jQuoDGn8uVxER3S0oS/Y/xVQ=="; }; }; - "@aws-sdk/eventstream-serde-config-resolver-3.201.0" = { + "@aws-sdk/eventstream-serde-config-resolver-3.222.0" = { name = "_at_aws-sdk_slash_eventstream-serde-config-resolver"; packageName = "@aws-sdk/eventstream-serde-config-resolver"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.201.0.tgz"; - sha512 = "dUpqO5yX1TdAShIuyBuWMiW7DWj9adtoeAzFvqPyQMXRFTPDQcggSelfoaXGcvUQUfcNZDUbCoigU23f+xmk6Q=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.222.0.tgz"; + sha512 = "zb8vMSbBEjUrHKpA2bZdAqfYp8oCsWgeBPOt0XJx+y6lzy67zyADs97Grl+lyZAoswao/zc2sxgm9yqcMDt7lQ=="; }; }; - "@aws-sdk/eventstream-serde-node-3.201.0" = { + "@aws-sdk/eventstream-serde-node-3.222.0" = { name = "_at_aws-sdk_slash_eventstream-serde-node"; packageName = "@aws-sdk/eventstream-serde-node"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.201.0.tgz"; - sha512 = "h7YYPKrPIRjsAq8PnpkAmmwnz2UofHr98BCFtw/eAIFVLZ8lzQbi1kI+dAmwPSlY1L59tgXakmJ6cGvtsDdG5w=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.222.0.tgz"; + sha512 = "rfDrTxcsYL0ZKc5MnoqbDTa0oQFiK7qTJOnQ7sASooexqoKTn3wVq68J7TZddbImmH/ENpkU+O0hcGuiwE9Ucg=="; }; }; - "@aws-sdk/eventstream-serde-universal-3.201.0" = { + "@aws-sdk/eventstream-serde-universal-3.222.0" = { name = "_at_aws-sdk_slash_eventstream-serde-universal"; packageName = "@aws-sdk/eventstream-serde-universal"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.201.0.tgz"; - sha512 = "Iq7sofa2Ns/ToseL8/m0PwIO5PHY800K4fi3i+6P1JA0bpZxmvkA/bfn+WCLvcB7sNluasqETHNxGs6DgNteIA=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.222.0.tgz"; + sha512 = "+/Fc7+ZPuD6SwphYcuLJ/GU0RmVzG/M0dUYs1JL/JQJ8dkJ0AlH1fH3L5Fhm2RO/ACkE28kXAuyZ40TLeRLRNA=="; }; }; - "@aws-sdk/fetch-http-handler-3.204.0" = { + "@aws-sdk/fetch-http-handler-3.222.0" = { name = "_at_aws-sdk_slash_fetch-http-handler"; packageName = "@aws-sdk/fetch-http-handler"; - version = "3.204.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.204.0.tgz"; - sha512 = "TfIhWYQ4CTjrD+FSuBcKMSVrqq8GCwqCfUyalWmSKo4JIFhN5OxUnOFb1/ecE/TJX+YgZ65w4qhVJVHHmh229Q=="; + url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.222.0.tgz"; + sha512 = "0PWnOp47mNfwBFEZhuBpz5A+66jbvb2ySidnM5vWHRxu5yN7rCJEdEMSJKDzR6nH3GLZ9dHoOxTzQy21NoDTtA=="; }; }; - "@aws-sdk/hash-blob-browser-3.204.0" = { + "@aws-sdk/hash-blob-browser-3.222.0" = { name = "_at_aws-sdk_slash_hash-blob-browser"; packageName = "@aws-sdk/hash-blob-browser"; - version = "3.204.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.204.0.tgz"; - sha512 = "Et0Nic7jnrYtqQt97JMPGkKJ3CFaulW70vFElDypV+TURsuxelweANQfrHsurk+xvHLHakMG5glAVHgyONtXZg=="; + url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.222.0.tgz"; + sha512 = "Z6y3JZPNp+os9vZdvsNkM6mIjDzeZNr9MYkQslANhGZ9WgQrzuI7xZN6XAyR83OGRCrDCorZdX+nnl5mzY1VwQ=="; }; }; - "@aws-sdk/hash-node-3.201.0" = { + "@aws-sdk/hash-node-3.222.0" = { name = "_at_aws-sdk_slash_hash-node"; packageName = "@aws-sdk/hash-node"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.201.0.tgz"; - sha512 = "WJsMZg5/TMoWnLM+0NuwLwFzHsi89Bi9J1Dt7JdJHXFLoEZV54FEz1PK/Sq5NOldhVljpXQwWOB2dHA2wxFztg=="; + url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.222.0.tgz"; + sha512 = "Fw0acblG0LQT9tfD2/4j98QHNq+Crotig/M1/zPDcVoGb8OBHd2442zpeA0fYYjGnGGhy9psRHdJrjZGj1vDUw=="; }; }; - "@aws-sdk/hash-stream-node-3.201.0" = { + "@aws-sdk/hash-stream-node-3.222.0" = { name = "_at_aws-sdk_slash_hash-stream-node"; packageName = "@aws-sdk/hash-stream-node"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.201.0.tgz"; - sha512 = "nagsIlflHlFNswa6XQfpH7/G0OkKu8t2BhZ5NnNzPCx56kcY2asztwBTEeRJEGu8FaaHhUXbVuWi746AK6PHSQ=="; + url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.222.0.tgz"; + sha512 = "PO/N0PsgJjRiH9WKSOnGjDP9tWNjwSvUezicT8ItWgkk7npd278MAe7G692TLACgf6sJr2jGQbs6xzZHq0/3Zg=="; }; }; - "@aws-sdk/invalid-dependency-3.201.0" = { + "@aws-sdk/invalid-dependency-3.222.0" = { name = "_at_aws-sdk_slash_invalid-dependency"; packageName = "@aws-sdk/invalid-dependency"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.201.0.tgz"; - sha512 = "f/zgntOfIozNyKSaG9dvHjjBaR3y20kYNswMYkSuCM2NIT5LpyHiiq5I11TwaocatUFcDztWpcsv7vHpIgI5Ig=="; + url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.222.0.tgz"; + sha512 = "tWJWWTcL7DrhFiDmPBvLaw2lopHJMsF4Uj52yIQJskwd2IeBOxjl30zLo/oidmk73IFUB7TCObc85zJrtt/KcQ=="; }; }; "@aws-sdk/is-array-buffer-3.201.0" = { @@ -850,337 +886,328 @@ let sha512 = "UPez5qLh3dNgt0DYnPD/q0mVJY84rA17QE26hVNOW3fAji8W2wrwrxdacWOxyXvlxWsVRcKmr+lay1MDqpAMfg=="; }; }; - "@aws-sdk/md5-js-3.204.0" = { + "@aws-sdk/md5-js-3.222.0" = { name = "_at_aws-sdk_slash_md5-js"; packageName = "@aws-sdk/md5-js"; - version = "3.204.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.204.0.tgz"; - sha512 = "RXiCvi58Xl2ja9bmd5iFVZyzhGVzBdlLC7uu8Ug9IbF++6muBJ2WdjMkhoMsi5GXqs6238rX3rRt3dLVGKEIqA=="; + url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.222.0.tgz"; + sha512 = "LI44dy+ECCL+vsIYJ/Ot4rNOl3Vpa4Nv8zxireKcQGmn547Cb6i3n/bEi/DkcfgHv6R84qOtOXsxt/ILuWNQ/g=="; }; }; - "@aws-sdk/middleware-bucket-endpoint-3.201.0" = { + "@aws-sdk/middleware-bucket-endpoint-3.222.0" = { name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; packageName = "@aws-sdk/middleware-bucket-endpoint"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.201.0.tgz"; - sha512 = "ZZp3YwkEaPqrdL46WzYOMWdBixaVDG0crCdoyBNw/3cI+4bFcsgFp369mqDDmRj3cuJKV4QNSRjlr2ElTz65dQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.222.0.tgz"; + sha512 = "TP4mjEWsQ/JsACAFDUlltl/0sAe5dxqdhBDAPO6LHRHvROz2oYVjZwvcaK4F9x8QLWh09H0Sw501SndFK2+o3w=="; }; }; - "@aws-sdk/middleware-content-length-3.201.0" = { + "@aws-sdk/middleware-content-length-3.222.0" = { name = "_at_aws-sdk_slash_middleware-content-length"; packageName = "@aws-sdk/middleware-content-length"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.201.0.tgz"; - sha512 = "p4G9AtdrKO8A3Z4RyZiy0isEYwuge7bQRBS7UzcGkcIOhJONq2pcM+gRZYz+NWvfYYNWUg5uODsFQfU8342yKg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.222.0.tgz"; + sha512 = "Wlah+nrPhcq5qcwHiK1ymVRAvcKjV2py2RXhJsNZWgYwphdt5RHaZHPDKoodI27alrDJVyBBQWGzIm/Ag1bypQ=="; }; }; - "@aws-sdk/middleware-endpoint-3.201.0" = { + "@aws-sdk/middleware-endpoint-3.222.0" = { name = "_at_aws-sdk_slash_middleware-endpoint"; packageName = "@aws-sdk/middleware-endpoint"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.201.0.tgz"; - sha512 = "F3JlXo5GusbeZR956hA9VxmDxUeg77Xh6o8fveAE2+G4Bjcb1iq9jPNlw6A14vDj3oTKenv2LLnjL2OIfl6hRA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.222.0.tgz"; + sha512 = "e1bM+CvuUWmBdydQpV5sF8cxZrXQ++0G5s1M7pLimKdWXQvCQ1ZEwA3LLi2IWomXmS9a3BaH3iKAf87RTWjIXw=="; }; }; - "@aws-sdk/middleware-expect-continue-3.201.0" = { + "@aws-sdk/middleware-expect-continue-3.222.0" = { name = "_at_aws-sdk_slash_middleware-expect-continue"; packageName = "@aws-sdk/middleware-expect-continue"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.201.0.tgz"; - sha512 = "tpNLdHpwgWAvoMicUARld5MwQ2B6iKGW6vN1Z1si9LTJWGtu8ZXAWACuUDLxC+6A1mDkAcbEc7oy4ABjFldUqA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.222.0.tgz"; + sha512 = "/nTCLXrau8jEyehsD7QM49gJQ6kmzQGw7plPDJzdFakfAwb2b/jLJ/Hj/ZSaaLWWEXAtZBiPzVXUJltPDoXv5g=="; }; }; - "@aws-sdk/middleware-flexible-checksums-3.201.0" = { + "@aws-sdk/middleware-flexible-checksums-3.222.0" = { name = "_at_aws-sdk_slash_middleware-flexible-checksums"; packageName = "@aws-sdk/middleware-flexible-checksums"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.201.0.tgz"; - sha512 = "InmDcMeaBu1QQ9oS+85eq+hJWTZjYUe9QK2f6S035Tka9FBee4kI8eU61ImNit5FsFsw+POcVGmjYukeXsB4QA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.222.0.tgz"; + sha512 = "P900+KLMUg0eOf75FK/wH/Gjz3rkNtB6iBfAG2Xg4DY5+78qh40deG0y0ZvtkHQP8YOqjLF3QMbEA90YXo4x9Q=="; }; }; - "@aws-sdk/middleware-host-header-3.201.0" = { + "@aws-sdk/middleware-host-header-3.222.0" = { name = "_at_aws-sdk_slash_middleware-host-header"; packageName = "@aws-sdk/middleware-host-header"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.201.0.tgz"; - sha512 = "7KNzdV7nFcKAoahvgGAlzsOq9FFDsU5h3w2iPtVdJhz6ZRDH/2v6WFeUCji+UNZip36gFfMPivoO8Y5smb5r/A=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.222.0.tgz"; + sha512 = "R4STwHkWgdxMRqOy6riYfXepsQURR5YhK6psPFZHkBYByIRc9JxJdLA0qZcfLRriQIAGmqEO2WWsqRmr8nkbBw=="; }; }; - "@aws-sdk/middleware-location-constraint-3.201.0" = { + "@aws-sdk/middleware-location-constraint-3.222.0" = { name = "_at_aws-sdk_slash_middleware-location-constraint"; packageName = "@aws-sdk/middleware-location-constraint"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.201.0.tgz"; - sha512 = "3QL6rM/7Qw0rIqRRI7hQJ6YupR1EXbyhrGQC5nMoZSZ/dQkGkYQLQJmwQDc4yadkJEGE8E1k2yQN0dF65PnJDA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.222.0.tgz"; + sha512 = "srrAkOHuvpXeaMG9a6kvfYrhzFFX/plBaZATy8iW6ethgvG1qdPeFj4ZVS9Eisx+13NbGFtydc1WkBZfx2nUWg=="; }; }; - "@aws-sdk/middleware-logger-3.201.0" = { + "@aws-sdk/middleware-logger-3.222.0" = { name = "_at_aws-sdk_slash_middleware-logger"; packageName = "@aws-sdk/middleware-logger"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.201.0.tgz"; - sha512 = "kYLsa9x3oUJxYU7V5KOO50Kl7b0kk+I4ltkrdarLvvXcVI7ZXmWHzHLT2dkUhj8S0ceVdi0FYHVPJ3GoE8re4A=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.222.0.tgz"; + sha512 = "eAxGCcNXl1APMOFbkUaAC6pNBPUbajyGqsDf6GLdlrYHrMVAtJdYd988ov6C52h7k6iDZ+OPHwv8dwUz+PRfpw=="; }; }; - "@aws-sdk/middleware-recursion-detection-3.201.0" = { + "@aws-sdk/middleware-recursion-detection-3.222.0" = { name = "_at_aws-sdk_slash_middleware-recursion-detection"; packageName = "@aws-sdk/middleware-recursion-detection"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.201.0.tgz"; - sha512 = "NGOr+n559ZcJLdFoJR8LNGdrOJFIp2BTuWEDYeicNdNb0bETTXrkzcfT1BRhV9CWqCDmjFvjdrzbhS0cw/UUGA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.222.0.tgz"; + sha512 = "4JRVs7y5JDXXjc5fkz0FCZJt/0HTP2vh3QyZsWRbCYesw2cWVqQlp/fUXp8w5KGqm5nYkTF4e5SQ7Ca8powJNA=="; }; }; - "@aws-sdk/middleware-retry-3.201.0" = { + "@aws-sdk/middleware-retry-3.222.0" = { name = "_at_aws-sdk_slash_middleware-retry"; packageName = "@aws-sdk/middleware-retry"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.201.0.tgz"; - sha512 = "4jQjSKCpSc4oB1X9nNq4FbIAwQrr+mvmUSmg/oe2Llf42Ak1G9gg3rNTtQdfzA/wNMlL4ZFfF5Br+uz06e1hnQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.222.0.tgz"; + sha512 = "8FZpGuJDtntjXZ/mfJ9EdP5mYiUunQHEmk6OERk3h4XW3D/e97denwDAcBBIK8iYYGic5PoWF4KgTFJWs1YOcw=="; }; }; - "@aws-sdk/middleware-sdk-s3-3.201.0" = { + "@aws-sdk/middleware-sdk-s3-3.222.0" = { name = "_at_aws-sdk_slash_middleware-sdk-s3"; packageName = "@aws-sdk/middleware-sdk-s3"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.201.0.tgz"; - sha512 = "IZGFWevHMQnyDnJTK2MponaSuFbHkj7z7MYX964hC0qoJEfED+rYPYIhUIPjZm5RiQq34MDQPWHLkNQLf9HnPg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.222.0.tgz"; + sha512 = "GCgbzWy3Dn9+dz/ZZjS5OiJ+feighHfMt461r1zjHNUXnb2tEf5kU+P80d3WqG8er4RRQg+Ao49SatOKgPcrlA=="; }; }; - "@aws-sdk/middleware-sdk-sts-3.201.0" = { + "@aws-sdk/middleware-sdk-sts-3.222.0" = { name = "_at_aws-sdk_slash_middleware-sdk-sts"; packageName = "@aws-sdk/middleware-sdk-sts"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.201.0.tgz"; - sha512 = "clZuXcoN0mAP4JH5C6pW5+0tdF25+fpFJqE7GNRjjH/NYNk6ImVI0Kq2espEWwVBuaS0/chTDK3b+pK8YOWdhw=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.222.0.tgz"; + sha512 = "YbL4lTBFgqyL2Ob+dMyw/UNd5K9IOnZHHxjpwWlYKMrfT+pp2bvrr7XUbRHnxSoDsOg9bf6IyTSRVnVxP4psJg=="; }; }; - "@aws-sdk/middleware-serde-3.201.0" = { + "@aws-sdk/middleware-serde-3.222.0" = { name = "_at_aws-sdk_slash_middleware-serde"; packageName = "@aws-sdk/middleware-serde"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.201.0.tgz"; - sha512 = "Z7AzIuqEDvsZmp80zeT1oYxsoB8uQZby20Z8kF6/vNoq3sIzaGf/wHeNn0p+Vgo2auGSbZcVUZKoDptQLSLwIQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.222.0.tgz"; + sha512 = "UoeLbgCJB07dX8tRByR0KzZaOwCoIyXj/SfFTuOhBUjkpKwqFCam/hofDlK3FR6kvl+xiURv57W/FtKV/9TDHg=="; }; }; - "@aws-sdk/middleware-signing-3.201.0" = { + "@aws-sdk/middleware-signing-3.222.0" = { name = "_at_aws-sdk_slash_middleware-signing"; packageName = "@aws-sdk/middleware-signing"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.201.0.tgz"; - sha512 = "08ri5+mB28tva9RjVIXFcUP5lRTx+Pj8C2HYqF2GL5H3uAo+h3RQ++fEG1uwUMLf7tCEFivcw6SHA1KmCnB7+w=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.222.0.tgz"; + sha512 = "MwMw2Lz7SBOniAc0slWXt65ocqL+E956bdW+LOvBin6OgkVWaLRbWI9nOzA6B2d8b65fCGEc+N15i0UdrEf+MQ=="; }; }; - "@aws-sdk/middleware-ssec-3.201.0" = { + "@aws-sdk/middleware-ssec-3.222.0" = { name = "_at_aws-sdk_slash_middleware-ssec"; packageName = "@aws-sdk/middleware-ssec"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.201.0.tgz"; - sha512 = "o1OUjVhtXeFbNyNijw4NPu/2xcA2SqqGNg0e5TP0j4HKfZ1S/QVKVCenx+9dlwlElW0tAQxL4bsNGNWOar3FTA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.222.0.tgz"; + sha512 = "WThCx/+UG4gIyqx0G3QKD1RM71+adh9Jv3Sh/KiS07Jjm+pb71wW+RRzBuNyhdjwB3aoKC/YKW8eFQg6M7eaQg=="; }; }; - "@aws-sdk/middleware-stack-3.201.0" = { + "@aws-sdk/middleware-stack-3.222.0" = { name = "_at_aws-sdk_slash_middleware-stack"; packageName = "@aws-sdk/middleware-stack"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.201.0.tgz"; - sha512 = "lqHYSBP5FBxzA5w5XiYYYpfXabFzleXonqRkqZts1tapNJ4sOd+itiKG8JoNP7LDOwJ8qxNW/a33/gQeh3wkwQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.222.0.tgz"; + sha512 = "ASKbstAKbOBUZhFhst6/NCr11x94BDBiQn2zDs2Lvjo89n2efMeb4wEr17VCMZVeKI6ojtPFa1ZVLsH8AOn4Yw=="; }; }; - "@aws-sdk/middleware-user-agent-3.201.0" = { + "@aws-sdk/middleware-user-agent-3.222.0" = { name = "_at_aws-sdk_slash_middleware-user-agent"; packageName = "@aws-sdk/middleware-user-agent"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.201.0.tgz"; - sha512 = "/rYZ93WN1gDJudXis/0382CEoTqRa4qZJA608u2EPWs5aiMocUrm7pjH5XvKm2OYX8K/lyaMSBvL2OTIMzXGaQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.222.0.tgz"; + sha512 = "fjdxCRIAhOTsI9OcEKwJp4lhsvyCSXoeYV49mO/bdG6pFyFRm3Jezx7TNVNeLTGuMHTTTvRrCTF8sgE5t17Pzw=="; }; }; - "@aws-sdk/node-config-provider-3.201.0" = { + "@aws-sdk/node-config-provider-3.222.0" = { name = "_at_aws-sdk_slash_node-config-provider"; packageName = "@aws-sdk/node-config-provider"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.201.0.tgz"; - sha512 = "JO0K2qPTYn+pPC7g8rWr1oueg9CqGCkYbINuAuz79vjToOLUQnZT9GiFm7QADe6J6RT1oGEKRQabNaJnp8cFpQ=="; + url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.222.0.tgz"; + sha512 = "hrbw90LlVa4xJJc4WiyAfaPMY/sJubSeTwuxTChLsFOavr6hSMCwLASrWmOiKRIj5hKdSfEA87n/q+DnKHlA8A=="; }; }; - "@aws-sdk/node-http-handler-3.201.0" = { + "@aws-sdk/node-http-handler-3.222.0" = { name = "_at_aws-sdk_slash_node-http-handler"; packageName = "@aws-sdk/node-http-handler"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.201.0.tgz"; - sha512 = "bWjXBd4WCiQcV4PwY+eFnlz9tZ4UiqfiJteav4MDt8YWkVlsVnR8RutmVSm3KZZjO2tJNSrla0ZWBebkNnI/Xg=="; + url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.222.0.tgz"; + sha512 = "k3WqxUgZzGbiCQt1HyzDGlRzq8muGIOWZs9T3HtCa5LtACvl0qlNmiwCc+C/o7GRLyC9FuWkP3lOW6MiAFQUcA=="; }; }; - "@aws-sdk/property-provider-3.201.0" = { + "@aws-sdk/property-provider-3.222.0" = { name = "_at_aws-sdk_slash_property-provider"; packageName = "@aws-sdk/property-provider"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.201.0.tgz"; - sha512 = "lVMP75VsYHIW04uYbkjA0I8Bb7b+aEj6PBBLdFoA22S0uCeJOD42OSr2Gtg2fToDGO7LQJw/K2D+LMCYKfZ3vQ=="; + url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.222.0.tgz"; + sha512 = "rEqAgQ7itmB7GB+WWLgyT7/YWJkjEBCfggxycccChWAeqg+gjpstIiGX2BjP2K/wnzwE0D91JsozSXcQIDOtNQ=="; }; }; - "@aws-sdk/protocol-http-3.201.0" = { + "@aws-sdk/protocol-http-3.222.0" = { name = "_at_aws-sdk_slash_protocol-http"; packageName = "@aws-sdk/protocol-http"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.201.0.tgz"; - sha512 = "RdOc1elWFpj8MogxG87nkhtylw0a+OD7W8WFM+Gw4yJMkl7cwW42VIBFfb0+KCGZfIQltIeSLRvfe3WvVPyo7Q=="; + url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.222.0.tgz"; + sha512 = "Zj+ytEgrOagCE7yczjdDan7W+1a0OL5DPAx69Z00NxGoBI2h0GRZD28dRYb3Pzs5/Ft4KbCedH/RUnyaYjaZxw=="; }; }; - "@aws-sdk/querystring-builder-3.201.0" = { + "@aws-sdk/querystring-builder-3.222.0" = { name = "_at_aws-sdk_slash_querystring-builder"; packageName = "@aws-sdk/querystring-builder"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.201.0.tgz"; - sha512 = "FgQnVHpYR19w/HmHEgWpykCn9tdogW0n45Ins6LBCo2aImDf9kBATD4xgN/F2rtogGuLGgu5LIIMHIOj1Tzs/w=="; + url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.222.0.tgz"; + sha512 = "qrNUGDyDp9yVQMnBbz1T5YBQkA/u6D5o0PPzSwfZ9azdAcBLjHOEfsBrKhxP+K92L/nilbnmY89KrjMR8+BNtw=="; }; }; - "@aws-sdk/querystring-parser-3.201.0" = { + "@aws-sdk/querystring-parser-3.222.0" = { name = "_at_aws-sdk_slash_querystring-parser"; packageName = "@aws-sdk/querystring-parser"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.201.0.tgz"; - sha512 = "vS9Ljbqrwi0sIKYxgyZYJUN1AcE291hvuqwty9etgD2w/26SbWiMhjIW/fXJUOZjUvGKkYCpbivJYSzAGAuWfQ=="; + url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.222.0.tgz"; + sha512 = "3KfkCA/753PlF5QqhGuQ7u+NOgLyiBFeV8R8ut/pfBmG8fF6l3RKrkbcu+87QpqXntRzG+RLHDqS7ryT3B2ICg=="; }; }; - "@aws-sdk/s3-request-presigner-3.204.0" = { + "@aws-sdk/s3-request-presigner-3.223.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.204.0"; + version = "3.223.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.204.0.tgz"; - sha512 = "Jii3HgvImzhUvUZiwb/KAD9bxQvdDYcTNFT0WsPupA36Ewcadk7yeeBeoOXtFsYqVmgVV/Hlt8sF2E9kBDfpzw=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.223.0.tgz"; + sha512 = "rJViOjX1ToEboTCFRmJVr/czqLFfUwX15ZpPnMjc+CSdXvCoWH9SFwyhn5rB2vZf2IdTW8ZM+qkU8M9UsvOERA=="; }; }; - "@aws-sdk/service-error-classification-3.201.0" = { + "@aws-sdk/service-error-classification-3.222.0" = { name = "_at_aws-sdk_slash_service-error-classification"; packageName = "@aws-sdk/service-error-classification"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.201.0.tgz"; - sha512 = "Pfcfmurgq8UpM0rXco6FVblcruqN4Mo3TW8/yaXrbctWpmdNT/8v19fffQIIgk94TU8Vf/nPJ7E5DXL7MZr4Fw=="; + url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.222.0.tgz"; + sha512 = "Dn/WGtm+v5nney0CaYZjdOtJmdEuI8EQiQ5J3eQ3G0jjT6mr1/tCajsNpq3ZqHXiwLtydwaVvsL3AKXn+oxFVA=="; }; }; - "@aws-sdk/shared-ini-file-loader-3.201.0" = { + "@aws-sdk/shared-ini-file-loader-3.222.0" = { name = "_at_aws-sdk_slash_shared-ini-file-loader"; packageName = "@aws-sdk/shared-ini-file-loader"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.201.0.tgz"; - sha512 = "Pbxk0TXep0yI8MnK7Prly6JuBm5Me9AITav8/zPEgTZ3fMhXhQhhiuQcuTCI9GeosSzoiu8VvK53oPtBZZFnXQ=="; + url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.222.0.tgz"; + sha512 = "2dowzMXjvIf5gwX5gNCwpv/TzAbbXxrId3zYJgPdEtApsa7NxyFs5MfnHt1zZI6P3YORGheRnNUK9RUYOPKHgA=="; }; }; - "@aws-sdk/signature-v4-3.201.0" = { + "@aws-sdk/signature-v4-3.222.0" = { name = "_at_aws-sdk_slash_signature-v4"; packageName = "@aws-sdk/signature-v4"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.201.0.tgz"; - sha512 = "zEHoG1/hzJq169slggkPy1SN9YPWI78Bbe/MvHGYmCmQDspblu60JSBIbAatNqAxAmcWKc2HqpyGKjCkMG94ZA=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.222.0.tgz"; + sha512 = "2qQZuKqx56b2uN2rdjdKL6u0Cvk82uTGNtIuetmySY9xPEAljSBdriaxTqNqK9Gs3M4obG22alUK4a85uwqS3g=="; }; }; - "@aws-sdk/signature-v4-crt-3.201.0" = { + "@aws-sdk/signature-v4-crt-3.222.0" = { name = "_at_aws-sdk_slash_signature-v4-crt"; packageName = "@aws-sdk/signature-v4-crt"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.201.0.tgz"; - sha512 = "msjr54b3/8FuWApGQ8Sk1GLIbcbiTX68ihhJTY7URc+mvnuVOq7Q6bbhxksgTLVoe2naq6lX0H5wPRplAsbuNA=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.222.0.tgz"; + sha512 = "hf0JghK4Y8pHRBFEt2g9ZNy11wg8lsd4JONHe3mk1To2VyUpnUBfNgxwPdmNEcIyPyREzHymb9UTystiH4em4w=="; }; }; - "@aws-sdk/signature-v4-multi-region-3.201.0" = { + "@aws-sdk/signature-v4-multi-region-3.222.0" = { name = "_at_aws-sdk_slash_signature-v4-multi-region"; packageName = "@aws-sdk/signature-v4-multi-region"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.201.0.tgz"; - sha512 = "5lVYYcWDwZd/q0mYPGn4zht08nIeeACYCM8HKYMwF7Qzcrne+RM0F4GU1ZWoId1pxjiX+xQSOUEeskx3A5wUtg=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.222.0.tgz"; + sha512 = "SF6Qi0KW69OzgLbA9q6AsZNFQCA+DI66SnAjW774sAE6aQyJmCbUsxETk37XodSymXzDOEDDC6QoY64HUoSoVw=="; }; }; - "@aws-sdk/smithy-client-3.201.0" = { + "@aws-sdk/smithy-client-3.222.0" = { name = "_at_aws-sdk_slash_smithy-client"; packageName = "@aws-sdk/smithy-client"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.201.0.tgz"; - sha512 = "cL87Jgxczee8YFkWGWKQ2Ze0vjn4+eCa1kDvEYMCOQvNujTuFgatXLgije5a7nVkSnL9WLoIP7Y7fsBGrKfMnQ=="; + url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.222.0.tgz"; + sha512 = "4dnU7TvwKxVuOWduvFGClYe0EgNov5Ke1ef7O1bdKaj5MmlH6wBDgGJM4NKREBFapC2dUXkoPtwsihtYBci1Bw=="; }; }; - "@aws-sdk/types-3.201.0" = { + "@aws-sdk/token-providers-3.223.0" = { + name = "_at_aws-sdk_slash_token-providers"; + packageName = "@aws-sdk/token-providers"; + version = "3.223.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.223.0.tgz"; + sha512 = "ik6IYiZO9tTzYPJKzUob4U9faC9We6UtVZGynEGLMWSLETM+LefSHK0elEaJaCqx2F4NLodw+t9uvllR+8YUow=="; + }; + }; + "@aws-sdk/types-3.222.0" = { name = "_at_aws-sdk_slash_types"; packageName = "@aws-sdk/types"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.201.0.tgz"; - sha512 = "RCQj2pQyHD330Jd4c5CHJ87k2ZqC3Mmtl6nhwH1dy3vbnGUpc3q+3yinOKoTAY934kIa7ia32Y/2EjuyHxaj1A=="; + url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.222.0.tgz"; + sha512 = "yXRYptInkfEFaOvWFxlRXsRh9jWOmQc1sZeKqjfx2UCtzNJ7ebedN0VfCz4SaDotcw9Q4JWuN66qhRMJjDx7/w=="; }; }; - "@aws-sdk/url-parser-3.201.0" = { + "@aws-sdk/url-parser-3.222.0" = { name = "_at_aws-sdk_slash_url-parser"; packageName = "@aws-sdk/url-parser"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.201.0.tgz"; - sha512 = "V15aqj0tj4Y79VpuIdHUvX4Nvn4hYPB0RAn/qg5CCComIl0doLOirAQtW1MOBOyctdRlD9Uv7d1QdPLzJZMHjQ=="; + url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.222.0.tgz"; + sha512 = "1+QbVdT/phYDb5JDQRJWoZeCujkXaI5m8z3bIiPxcRRY3NPuluDGrfX3kfnFen5s9QGByLvJxWKWZS+i+iUFRg=="; }; }; - "@aws-sdk/util-arn-parser-3.201.0" = { + "@aws-sdk/util-arn-parser-3.208.0" = { name = "_at_aws-sdk_slash_util-arn-parser"; packageName = "@aws-sdk/util-arn-parser"; - version = "3.201.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.201.0.tgz"; - sha512 = "FNZsr9ofEf3Ybglgj8ElhuXnHnSFCF1ctT/zGPwNc+7XTMROO36uPIxP22J/GTyMpf4Bx48rXs8JTFvu3P3hig=="; + url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.208.0.tgz"; + sha512 = "QV4af+kscova9dv4VuHOgH8wEr/IIYHDGcnyVtkUEqahCejWr1Kuk+SBK0xMwnZY5LSycOtQ8aeqHOn9qOjZtA=="; }; }; - "@aws-sdk/util-base64-3.202.0" = { + "@aws-sdk/util-base64-3.208.0" = { name = "_at_aws-sdk_slash_util-base64"; packageName = "@aws-sdk/util-base64"; - version = "3.202.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-base64/-/util-base64-3.202.0.tgz"; - sha512 = "0QlvxCSU2CITeR/x87zls9ma+CkN3EXRGM3M5XnHWaneDI9K+O2uPpAbDfLh0SBJyO0AfIMn7Vh/BvnNNPEDpg=="; - }; - }; - "@aws-sdk/util-base64-browser-3.188.0" = { - name = "_at_aws-sdk_slash_util-base64-browser"; - packageName = "@aws-sdk/util-base64-browser"; - version = "3.188.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.188.0.tgz"; - sha512 = "qlH+5NZBLiyKziL335BEPedYxX6j+p7KFRWXvDQox9S+s+gLCayednpK+fteOhBenCcR9fUZOVuAPScy1I8qCg=="; - }; - }; - "@aws-sdk/util-base64-node-3.201.0" = { - name = "_at_aws-sdk_slash_util-base64-node"; - packageName = "@aws-sdk/util-base64-node"; - version = "3.201.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.201.0.tgz"; - sha512 = "ydZqNpB3l5kiicInpPDExPb5xHI7uyVIa1vMupnuIrJ412iNb0F2+K8LlFynzw6fSJShVKnqFcWOYRA96z1iIw=="; + url = "https://registry.npmjs.org/@aws-sdk/util-base64/-/util-base64-3.208.0.tgz"; + sha512 = "PQniZph5A6N7uuEOQi+1hnMz/FSOK/8kMFyFO+4DgA1dZ5pcKcn5wiFwHkcTb/BsgVqQa3Jx0VHNnvhlS8JyTg=="; }; }; "@aws-sdk/util-body-length-browser-3.188.0" = { @@ -1192,76 +1219,76 @@ let sha512 = "8VpnwFWXhnZ/iRSl9mTf+VKOX9wDE8QtN4bj9pBfxwf90H1X7E8T6NkiZD3k+HubYf2J94e7DbeHs7fuCPW5Qg=="; }; }; - "@aws-sdk/util-body-length-node-3.201.0" = { + "@aws-sdk/util-body-length-node-3.208.0" = { name = "_at_aws-sdk_slash_util-body-length-node"; packageName = "@aws-sdk/util-body-length-node"; - version = "3.201.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.201.0.tgz"; - sha512 = "q+gwQoLn/DOwirb2hgZJeEwo1D3vLhoD6FfSV42Ecfvtb4jHnWReWMHguujfCubuDgZCrMEvYQzuocS75HHsbA=="; + url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.208.0.tgz"; + sha512 = "3zj50e5g7t/MQf53SsuuSf0hEELzMtD8RX8C76f12OSRo2Bca4FLLYHe0TZbxcfQHom8/hOaeZEyTyMogMglqg=="; }; }; - "@aws-sdk/util-buffer-from-3.201.0" = { + "@aws-sdk/util-buffer-from-3.208.0" = { name = "_at_aws-sdk_slash_util-buffer-from"; packageName = "@aws-sdk/util-buffer-from"; - version = "3.201.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.201.0.tgz"; - sha512 = "s6Wjltd9vU+vR3n0pqSPmNDcrrkrVTdV4t7x2zz3nDsFKTI77iVNafDmuaUlOA/bIlpjCJqaWecoVrZmEKeR7A=="; + url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.208.0.tgz"; + sha512 = "7L0XUixNEFcLUGPeBF35enCvB9Xl+K6SQsmbrPk1P3mlV9mguWSDQqbOBwY1Ir0OVbD6H/ZOQU7hI/9RtRI0Zw=="; }; }; - "@aws-sdk/util-config-provider-3.201.0" = { + "@aws-sdk/util-config-provider-3.208.0" = { name = "_at_aws-sdk_slash_util-config-provider"; packageName = "@aws-sdk/util-config-provider"; - version = "3.201.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.201.0.tgz"; - sha512 = "cCRJlnRRP8vrLJomzJRBIyiyohsjJKmnIaQ9t0tAhGCywZbyjx6TlpYRZYfVWo+MwdF1Pi8ZScTrFPW0JuBOIQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.208.0.tgz"; + sha512 = "DSRqwrERUsT34ug+anlMBIFooBEGwM8GejC7q00Y/9IPrQy50KnG5PW2NiTjuLKNi7pdEOlwTSEocJE15eDZIg=="; }; }; - "@aws-sdk/util-create-request-3.201.0" = { + "@aws-sdk/util-create-request-3.222.0" = { name = "_at_aws-sdk_slash_util-create-request"; packageName = "@aws-sdk/util-create-request"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.201.0.tgz"; - sha512 = "bzOy/hW/j6lIn5ulXwcOHKfA1BrlqLXOIt95ZdT6TCsi+sXFACAS9ns0mrEUTMPXCLGEQM6lIW0tVmh9a1BMSg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.222.0.tgz"; + sha512 = "r8IBZonKY/D4GBBHDHrnRTTLSW3H2JOWDABSl56s79zIoChoRONvtVHN5clMLbUVR7bOWkAU84uzpOSLR83Ghg=="; }; }; - "@aws-sdk/util-defaults-mode-browser-3.201.0" = { + "@aws-sdk/util-defaults-mode-browser-3.222.0" = { name = "_at_aws-sdk_slash_util-defaults-mode-browser"; packageName = "@aws-sdk/util-defaults-mode-browser"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.201.0.tgz"; - sha512 = "skRMAM+xrV/sDvvtHC81ExEKQEiZFaRrRdUT39fBX1SpGnFTo2wpv7XK+rAW2XopGgnLPytXLQD97Kub79o4zA=="; + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.222.0.tgz"; + sha512 = "+dGsp59lrEkDmK7OO5ecMYasrTGIKacFHjqZ6aqmbn1xtcUd/o3Qe7g5YSRXMGwtZ6xhvBD+NJLkEERI7U7cMw=="; }; }; - "@aws-sdk/util-defaults-mode-node-3.201.0" = { + "@aws-sdk/util-defaults-mode-node-3.222.0" = { name = "_at_aws-sdk_slash_util-defaults-mode-node"; packageName = "@aws-sdk/util-defaults-mode-node"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.201.0.tgz"; - sha512 = "9N5LXRhxigbkbEcjQ4nNXHuQxp0VFlbc2/5wbcuPjIKX/OROiQI4mYQ6nuSKk7eku5sNFb9FtEHeD/RZo8od6Q=="; + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.222.0.tgz"; + sha512 = "W/duYMtmCCWdzHP+yscBB6yrARgAqWpFdxgBvMSlT8TjOTrh/F+aj4NPamiNMeUfqfMFGnboYfyWRr1avkcAGQ=="; }; }; - "@aws-sdk/util-endpoints-3.202.0" = { + "@aws-sdk/util-endpoints-3.222.0" = { name = "_at_aws-sdk_slash_util-endpoints"; packageName = "@aws-sdk/util-endpoints"; - version = "3.202.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.202.0.tgz"; - sha512 = "sNees5uDp7nfEbvzaA1DAHqoEvEb9ZOkdNH5gcj/FMBETbr00YtsuXsTZogTHQsX/otRTiudZBE3iH7R4SLSAQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.222.0.tgz"; + sha512 = "qujJQv8lFysAr1lOlBTJhz7949NZyq5cj74Q9dR99AcAMXXeI9CQayPKH7477AnXRGOTMahZ3mV0HZ1bCJoNTw=="; }; }; - "@aws-sdk/util-format-url-3.201.0" = { + "@aws-sdk/util-format-url-3.222.0" = { name = "_at_aws-sdk_slash_util-format-url"; packageName = "@aws-sdk/util-format-url"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.201.0.tgz"; - sha512 = "hoGPnhB7qRbTMf0o1vUtG+q1Bu7YTOZEt8yMA9tjC6b4Je3ZWGu4+Tx+d6zUTPt06n37Ek7oDIsU8KG/hcRYew=="; + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.222.0.tgz"; + sha512 = "2A419z8GwleLMgbEyEP4/jhJEii6YdszZ294SEc3K7y9av0KthGKBl/T1nm6Jz5MFAI7E7iMFzpaBEPdWUdtBQ=="; }; }; "@aws-sdk/util-hex-encoding-3.201.0" = { @@ -1273,40 +1300,40 @@ let sha512 = "7t1vR1pVxKx0motd3X9rI3m/xNp78p3sHtP5yo4NP4ARpxyJ0fokBomY8ScaH2D/B+U5o9ARxldJUdMqyBlJcA=="; }; }; - "@aws-sdk/util-locate-window-3.201.0" = { + "@aws-sdk/util-locate-window-3.208.0" = { name = "_at_aws-sdk_slash_util-locate-window"; packageName = "@aws-sdk/util-locate-window"; - version = "3.201.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.201.0.tgz"; - sha512 = "hPJgifWh/rADabLAk1C9xXA2B3O4NUmbU58KgBRgC1HksiiHGFVZObB5fkBH8US/XV2jwORkpSf4OhretXQuKg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.208.0.tgz"; + sha512 = "iua1A2+P7JJEDHVgvXrRJSvsnzG7stYSGQnBVphIUlemwl6nN5D+QrgbjECtrbxRz8asYFHSzhdhECqN+tFiBg=="; }; }; - "@aws-sdk/util-middleware-3.201.0" = { + "@aws-sdk/util-middleware-3.222.0" = { name = "_at_aws-sdk_slash_util-middleware"; packageName = "@aws-sdk/util-middleware"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.201.0.tgz"; - sha512 = "iAitcEZo17IyKn4ku1IBgtomr25esu5OuSRjw5Or4bNOeqXB0w50cItf/9qft8LIhbvBEAUtNAYXvqNzvhTZdQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.222.0.tgz"; + sha512 = "Y4BPtSa+6+qvg6OVW6RrdDx0OADfWa2Uxsxqdozpdnx2OQY0q+1diqsNgFMV+FIvdXqffE147KG7roG+/AfPeA=="; }; }; - "@aws-sdk/util-stream-browser-3.204.0" = { + "@aws-sdk/util-stream-browser-3.222.0" = { name = "_at_aws-sdk_slash_util-stream-browser"; packageName = "@aws-sdk/util-stream-browser"; - version = "3.204.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.204.0.tgz"; - sha512 = "LH+Th/Oww6icUvqVbL5Y+R4mUGUuwLRWpiOJnK8/Ufyw7JMEvHZOGXPIAtXmEB1t+0gTVVDCP0Z0y6ItINlGtA=="; + url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.222.0.tgz"; + sha512 = "GW9Y1/pLHS7WYHHdswcDd4vaM9mzxDwewcDVujCd/L9MRbG1nA/wfCL7hAAXT1AN2GbGfbfT+jjHQqzexpKBnA=="; }; }; - "@aws-sdk/util-stream-node-3.201.0" = { + "@aws-sdk/util-stream-node-3.222.0" = { name = "_at_aws-sdk_slash_util-stream-node"; packageName = "@aws-sdk/util-stream-node"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.201.0.tgz"; - sha512 = "RWU+ZJHKL4lYZBeNIpHo5EuNaYRDkJeytP8cbBQn+wuzDz19mGF2uikK+JaQdNd5HG9lovDP66SJ8gJ0WBnwNw=="; + url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.222.0.tgz"; + sha512 = "iMwKG+RaGVAjzXDuzmMl63SnN6qVc+0VbbfaKW1eIK9Ihr5mko3GuYAFqKaECSQ+XdMNuMSVXzphveKw6t2zwg=="; }; }; "@aws-sdk/util-uri-escape-3.201.0" = { @@ -1318,22 +1345,22 @@ let sha512 = "TeTWbGx4LU2c5rx0obHeDFeO9HvwYwQtMh1yniBz00pQb6Qt6YVOETVQikRZ+XRQwEyCg/dA375UplIpiy54mA=="; }; }; - "@aws-sdk/util-user-agent-browser-3.201.0" = { + "@aws-sdk/util-user-agent-browser-3.222.0" = { name = "_at_aws-sdk_slash_util-user-agent-browser"; packageName = "@aws-sdk/util-user-agent-browser"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.201.0.tgz"; - sha512 = "iL2gyz7GuUVtZcMZpqvfxdFrl9hc28qpagymmJ/w2yhN86YNPHdK8Sx1Yo6VxNGVDCCWGb7tHXf7VP+U4Yv/Lg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.222.0.tgz"; + sha512 = "DREMeL0XHl4QIS2GVSHFwVH4mJZ+Dr04R3U8WfiMktXdA93j5tDMJpU3+PNaCZPeaqz2QNwrVSBWKwbwA357zQ=="; }; }; - "@aws-sdk/util-user-agent-node-3.201.0" = { + "@aws-sdk/util-user-agent-node-3.222.0" = { name = "_at_aws-sdk_slash_util-user-agent-node"; packageName = "@aws-sdk/util-user-agent-node"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.201.0.tgz"; - sha512 = "6lhhvwB3AZSISnYQpDGdlyTrzfYK2P9QYjy7vZEBRd9TSOaggiFICXe03ZvZfVOSeg0EInlMKn1fIHzPUHRuHQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.222.0.tgz"; + sha512 = "BMRMrPXL/HS3dSha9vcABkoANluKjB0pH78bc659EY2WUj9wCZdbUNQpACiYx8bwm7xKSxugCkmPd6NLWXUURw=="; }; }; "@aws-sdk/util-utf8-browser-3.188.0" = { @@ -1345,22 +1372,22 @@ let sha512 = "jt627x0+jE+Ydr9NwkFstg3cUvgWh56qdaqAMDsqgRlKD21md/6G226z/Qxl7lb1VEW2LlmCx43ai/37Qwcj2Q=="; }; }; - "@aws-sdk/util-utf8-node-3.201.0" = { + "@aws-sdk/util-utf8-node-3.208.0" = { name = "_at_aws-sdk_slash_util-utf8-node"; packageName = "@aws-sdk/util-utf8-node"; - version = "3.201.0"; + version = "3.208.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.201.0.tgz"; - sha512 = "A+bJFR/1rHYOJg137E69L1sX0I+LH+xf9ZjMXG9BVO0hSo7yDPoJVpHrzTJyOc3tuRITjIGBv9Qi4TKcoOSi1A=="; + url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.208.0.tgz"; + sha512 = "jKY87Acv0yWBdFxx6bveagy5FYjz+dtV8IPT7ay1E2WPWH1czoIdMAkc8tSInK31T6CRnHWkLZ1qYwCbgRfERQ=="; }; }; - "@aws-sdk/util-waiter-3.201.0" = { + "@aws-sdk/util-waiter-3.222.0" = { name = "_at_aws-sdk_slash_util-waiter"; packageName = "@aws-sdk/util-waiter"; - version = "3.201.0"; + version = "3.222.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.201.0.tgz"; - sha512 = "NE8+BkPDXq86oyVr9EKN1s+iN8GID8mhj6DbtEZKZES3fJ36xH7MldRylgCewgv1Qpd1W00M4c/mVvUx3zp7sg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.222.0.tgz"; + sha512 = "/07RkfxvDncsMeQ+GhigPdiSRd2v/1FJoCV4a5e9XDI1ZSMvUKm36wFqw5Bzts+AUY8f4HOPpGI9ZQeNb7u27Q=="; }; }; "@aws-sdk/xml-builder-3.201.0" = { @@ -1498,13 +1525,13 @@ let sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; }; }; - "@azure/msal-browser-2.30.0" = { + "@azure/msal-browser-2.32.0" = { name = "_at_azure_slash_msal-browser"; packageName = "@azure/msal-browser"; - version = "2.30.0"; + version = "2.32.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.30.0.tgz"; - sha512 = "4Y9+rjJiTFP7KEmuq1btmIrBgk0ImNyKsXj6A6NHZALd1X0M6W7L7kxpH6F+d1tEkMv8bYnZdn7IcauXbL8Llw=="; + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.32.0.tgz"; + sha512 = "uDP0vNmIefM6+RjILGKu+zOiN+VGnEvxRfUIV5hOWOWLLkG7kcDPYG/v/EJMoG+R5DYW9jXA5nvZT76t5HdEAQ=="; }; }; "@azure/msal-common-7.6.0" = { @@ -1516,13 +1543,22 @@ let sha512 = "XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q=="; }; }; - "@azure/msal-node-1.14.2" = { + "@azure/msal-common-9.0.0" = { + name = "_at_azure_slash_msal-common"; + packageName = "@azure/msal-common"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.0.0.tgz"; + sha512 = "uiFiFKVNTsRpmKio5bcObTuHcaHHZB2GEsjJJN8rbJNmzoYuZzNioOoK+J0QK0jEasRBgAoR5A8hSty2iKRzIg=="; + }; + }; + "@azure/msal-node-1.14.4" = { name = "_at_azure_slash_msal-node"; packageName = "@azure/msal-node"; - version = "1.14.2"; + version = "1.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.2.tgz"; - sha512 = "t3whVhhLdZVVeDEtUPD2Wqfa8BDi3EDMnpWp8dbuRW0GhUpikBfs4AQU0Fe6P9zS87n9LpmUTLrIcPEEuzkvfA=="; + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.4.tgz"; + sha512 = "j9GzZu5mTLWtuJ+cYN6e67UNymIS5OysblrOzH8lakt9XxH0GCPYjuqbOEKTP84r+Rbj3io+TuW1KS+0Xxuj/g=="; }; }; "@babel/cli-7.19.3" = { @@ -1561,13 +1597,13 @@ let sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; }; }; - "@babel/compat-data-7.20.1" = { + "@babel/compat-data-7.20.5" = { name = "_at_babel_slash_compat-data"; packageName = "@babel/compat-data"; - version = "7.20.1"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz"; - sha512 = "EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ=="; + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz"; + sha512 = "KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g=="; }; }; "@babel/core-7.0.0" = { @@ -1579,13 +1615,13 @@ let sha512 = "nrvxS5u6QUN5gLl1GEakIcmOeoUHT1/gQtdMRq18WFURJ5osn4ppJLVSseMQo4zVWKJfBTF4muIYijXUnKlRLQ=="; }; }; - "@babel/core-7.20.2" = { + "@babel/core-7.20.5" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz"; - sha512 = "w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz"; + sha512 = "UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ=="; }; }; "@babel/core-7.9.0" = { @@ -1615,13 +1651,13 @@ let sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="; }; }; - "@babel/generator-7.20.2" = { + "@babel/generator-7.20.5" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.2.tgz"; - sha512 = "SD75PMIK6i9H8G/tfGvB4KKl4Nw6Ssos9nGgYwxbgyTP0iX/Z55DveoH86rmUB/YHTQQ+ZC0F7xxaY8l2OF44Q=="; + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz"; + sha512 = "jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA=="; }; }; "@babel/helper-annotate-as-pure-7.18.6" = { @@ -1651,22 +1687,22 @@ let sha512 = "0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ=="; }; }; - "@babel/helper-create-class-features-plugin-7.20.2" = { + "@babel/helper-create-class-features-plugin-7.20.5" = { name = "_at_babel_slash_helper-create-class-features-plugin"; packageName = "@babel/helper-create-class-features-plugin"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz"; - sha512 = "k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA=="; + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.5.tgz"; + sha512 = "3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww=="; }; }; - "@babel/helper-create-regexp-features-plugin-7.19.0" = { + "@babel/helper-create-regexp-features-plugin-7.20.5" = { name = "_at_babel_slash_helper-create-regexp-features-plugin"; packageName = "@babel/helper-create-regexp-features-plugin"; - version = "7.19.0"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz"; - sha512 = "htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw=="; + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz"; + sha512 = "m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w=="; }; }; "@babel/helper-define-polyfill-provider-0.3.3" = { @@ -1831,22 +1867,22 @@ let sha512 = "XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="; }; }; - "@babel/helper-wrap-function-7.19.0" = { + "@babel/helper-wrap-function-7.20.5" = { name = "_at_babel_slash_helper-wrap-function"; packageName = "@babel/helper-wrap-function"; - version = "7.19.0"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz"; - sha512 = "txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg=="; + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz"; + sha512 = "bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q=="; }; }; - "@babel/helpers-7.20.1" = { + "@babel/helpers-7.20.6" = { name = "_at_babel_slash_helpers"; packageName = "@babel/helpers"; - version = "7.20.1"; + version = "7.20.6"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz"; - sha512 = "J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg=="; + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz"; + sha512 = "Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w=="; }; }; "@babel/highlight-7.18.6" = { @@ -1858,13 +1894,13 @@ let sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; }; }; - "@babel/node-7.20.2" = { + "@babel/node-7.20.5" = { name = "_at_babel_slash_node"; packageName = "@babel/node"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/node/-/node-7.20.2.tgz"; - sha512 = "s4zKG8fccCpqXEXxSkzE8vAREefRneatdGfNQDPqikTTpQmWF4Bt1OTZ9r8GghKJSeNEgRJwbI5ZSmGBQLvAEQ=="; + url = "https://registry.npmjs.org/@babel/node/-/node-7.20.5.tgz"; + sha512 = "ElSr40UtumWE4fYYF1xfLP2C6b9nfS/rswK7YYpLo9HDGEXGXEAWZaGCxIirxGIDyoV0rbl6jV1LyFMQ6ZOQSA=="; }; }; "@babel/parser-7.18.4" = { @@ -1876,13 +1912,13 @@ let sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; }; }; - "@babel/parser-7.20.2" = { + "@babel/parser-7.20.5" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.2.tgz"; - sha512 = "afk318kh2uKbo7BEj2QtEi8HVCGrwHUffrYDy7dgVcSa2j9lY3LDjPzcyGdpX7xgm35aWqvciZJ4WKmdF/SxYg=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz"; + sha512 = "r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA=="; }; }; "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { @@ -1939,13 +1975,13 @@ let sha512 = "+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw=="; }; }; - "@babel/plugin-proposal-decorators-7.20.2" = { + "@babel/plugin-proposal-decorators-7.20.5" = { name = "_at_babel_slash_plugin-proposal-decorators"; packageName = "@babel/plugin-proposal-decorators"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.2.tgz"; - sha512 = "nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.5.tgz"; + sha512 = "Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q=="; }; }; "@babel/plugin-proposal-dynamic-import-7.18.6" = { @@ -2056,13 +2092,13 @@ let sha512 = "nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA=="; }; }; - "@babel/plugin-proposal-private-property-in-object-7.18.6" = { + "@babel/plugin-proposal-private-property-in-object-7.20.5" = { name = "_at_babel_slash_plugin-proposal-private-property-in-object"; packageName = "@babel/plugin-proposal-private-property-in-object"; - version = "7.18.6"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz"; - sha512 = "9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz"; + sha512 = "Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ=="; }; }; "@babel/plugin-proposal-unicode-property-regex-7.18.6" = { @@ -2290,13 +2326,13 @@ let sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; }; }; - "@babel/plugin-transform-block-scoping-7.20.2" = { + "@babel/plugin-transform-block-scoping-7.20.5" = { name = "_at_babel_slash_plugin-transform-block-scoping"; packageName = "@babel/plugin-transform-block-scoping"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz"; - sha512 = "y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.5.tgz"; + sha512 = "WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA=="; }; }; "@babel/plugin-transform-classes-7.20.2" = { @@ -2434,13 +2470,13 @@ let sha512 = "dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ=="; }; }; - "@babel/plugin-transform-named-capturing-groups-regex-7.19.1" = { + "@babel/plugin-transform-named-capturing-groups-regex-7.20.5" = { name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; packageName = "@babel/plugin-transform-named-capturing-groups-regex"; - version = "7.19.1"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz"; - sha512 = "oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz"; + sha512 = "mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA=="; }; }; "@babel/plugin-transform-new-target-7.18.6" = { @@ -2461,13 +2497,13 @@ let sha512 = "uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="; }; }; - "@babel/plugin-transform-parameters-7.20.1" = { + "@babel/plugin-transform-parameters-7.20.5" = { name = "_at_babel_slash_plugin-transform-parameters"; packageName = "@babel/plugin-transform-parameters"; - version = "7.20.1"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.1.tgz"; - sha512 = "nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.5.tgz"; + sha512 = "h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ=="; }; }; "@babel/plugin-transform-property-literals-7.18.6" = { @@ -2533,13 +2569,13 @@ let sha512 = "I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ=="; }; }; - "@babel/plugin-transform-regenerator-7.18.6" = { + "@babel/plugin-transform-regenerator-7.20.5" = { name = "_at_babel_slash_plugin-transform-regenerator"; packageName = "@babel/plugin-transform-regenerator"; - version = "7.18.6"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz"; - sha512 = "poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz"; + sha512 = "kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ=="; }; }; "@babel/plugin-transform-reserved-words-7.18.6" = { @@ -2740,15 +2776,6 @@ let sha512 = "7hGhzlcmg01CvH1EHdSPVXYX1aJ8KCEyz6I9xYIi/asDtzBPMyMhVibhM/K6g/5qnKBwjZtp10bNZIEFTRW1MA=="; }; }; - "@babel/runtime-7.19.4" = { - name = "_at_babel_slash_runtime"; - packageName = "@babel/runtime"; - version = "7.19.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz"; - sha512 = "EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA=="; - }; - }; "@babel/runtime-7.20.1" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; @@ -2758,6 +2785,15 @@ let sha512 = "mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg=="; }; }; + "@babel/runtime-7.20.6" = { + name = "_at_babel_slash_runtime"; + packageName = "@babel/runtime"; + version = "7.20.6"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz"; + sha512 = "Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA=="; + }; + }; "@babel/runtime-7.9.0" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; @@ -2776,13 +2812,13 @@ let sha512 = "Yww0jXgolNtkhcK+Txo5JN+DjBpNmmAtD7G99HOebhEjBzjnACG09Tip9C8lSOF6PrhA56OeJWeOZduNJaKxBA=="; }; }; - "@babel/runtime-corejs3-7.20.1" = { + "@babel/runtime-corejs3-7.20.6" = { name = "_at_babel_slash_runtime-corejs3"; packageName = "@babel/runtime-corejs3"; - version = "7.20.1"; + version = "7.20.6"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz"; - sha512 = "CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg=="; + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.6.tgz"; + sha512 = "tqeujPiuEfcH067mx+7otTQWROVMKHXEaOQcAeNV5dDdbPWvPcFA8/W9LXw2NfjNmOetqLl03dfnG2WALPlsRQ=="; }; }; "@babel/template-7.0.0" = { @@ -2803,13 +2839,13 @@ let sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; }; }; - "@babel/traverse-7.20.1" = { + "@babel/traverse-7.20.5" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.20.1"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz"; - sha512 = "d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz"; + sha512 = "WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ=="; }; }; "@babel/types-7.18.4" = { @@ -2821,40 +2857,13 @@ let sha512 = "ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="; }; }; - "@babel/types-7.20.2" = { + "@babel/types-7.20.5" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.20.2"; + version = "7.20.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz"; - sha512 = "FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog=="; - }; - }; - "@blueprintjs/colors-4.1.8" = { - name = "_at_blueprintjs_slash_colors"; - packageName = "@blueprintjs/colors"; - version = "4.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.8.tgz"; - sha512 = "J3N3PIBlmZS7+br+8KkR0yilGp74Fwp8SXfs0Bf4OGgLcqrBixqCqAs+YnpS2iOV0m2D22cZc8YsnPVdx0kH7w=="; - }; - }; - "@blueprintjs/core-4.11.6" = { - name = "_at_blueprintjs_slash_core"; - packageName = "@blueprintjs/core"; - version = "4.11.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.11.6.tgz"; - sha512 = "elgJ3BIT1007O5A+5KRM8+tIw6sy64h02tv4bQ1azjB+8DknZoSPakYlGKHLNezsh+h3u5EHPDVcskJQ+zxn7A=="; - }; - }; - "@blueprintjs/icons-4.10.0" = { - name = "_at_blueprintjs_slash_icons"; - packageName = "@blueprintjs/icons"; - version = "4.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.10.0.tgz"; - sha512 = "YMj+Cfd23zJK3aAFWtlIno2ysZi6Zl8HIbXmeouX7TwriB5H48JThWTCYS5trWZ9v57kzOJ/FALONFeZltgPxw=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz"; + sha512 = "c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg=="; }; }; "@bmewburn/js-beautify-1.13.0" = { @@ -2902,49 +2911,58 @@ let sha512 = "WUwXC5pOHNuSzFUpzh0KpbuTfAtbPAU5DLKdYIWhWSrs4iof7Qxq25dkWfiA6Ksp/AmM2tnCTLDWaU7AxpCQOQ=="; }; }; - "@braintree/sanitize-url-6.0.1" = { + "@braintree/sanitize-url-6.0.2" = { name = "_at_braintree_slash_sanitize-url"; packageName = "@braintree/sanitize-url"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.1.tgz"; - sha512 = "zr9Qs9KFQiEvMWdZesjcmRJlUck5NR+eKGS1uyKk+oYTWwlYrsoPEi6VmG6/TzBD1hKCGEimrhTgGS6hvn/xIQ=="; + url = "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz"; + sha512 = "Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg=="; }; }; - "@cdktf/hcl2cdk-0.13.3" = { + "@cdktf/hcl2cdk-0.14.1" = { name = "_at_cdktf_slash_hcl2cdk"; packageName = "@cdktf/hcl2cdk"; - version = "0.13.3"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.13.3.tgz"; - sha512 = "pGCylbXGR0V5koS14VCRgfPTJmL7glFJz8ZYmkmm2kCqRMoHrbUb9pJLpIotJd8zULEvmF/LSxCBUK8nhhgo8w=="; + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.14.1.tgz"; + sha512 = "28J0Qh+jBSy5ocAxQY26zDw4o2zdrq0R/hEJHxjrvtJ0lOCgDp3NCNOnxZyMgt7j2widrRyX8w9+lKvFpigpPw=="; }; }; - "@cdktf/hcl2json-0.13.3" = { + "@cdktf/hcl2json-0.14.1" = { name = "_at_cdktf_slash_hcl2json"; packageName = "@cdktf/hcl2json"; - version = "0.13.3"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.13.3.tgz"; - sha512 = "h6k4hNUhzADf+l9dyAzLQVAORedOadI66Lg4NnLejyXxLdomDeVcGxNWWkctqCZFQmWxzci85XZq8fjsL9N+sQ=="; + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.14.1.tgz"; + sha512 = "nzhZbXlBQsq8/gGBCc0FR/CtMd+CkoylF1zatPNh45W7pTmlFQVrKeuk3sim+J4L9NzhtTz1GY3YR8KC8JJesA=="; }; }; - "@cdktf/provider-generator-0.13.3" = { + "@cdktf/provider-generator-0.14.1" = { name = "_at_cdktf_slash_provider-generator"; packageName = "@cdktf/provider-generator"; - version = "0.13.3"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.13.3.tgz"; - sha512 = "vTtJp0KmaBYVwypaINLJzSddtfzhWAJIVLfhUU0LVUG+fkWQmN7110reqTHVVewkAW3AR4ZAOpjGd15tlIbp7Q=="; + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.14.1.tgz"; + sha512 = "dewzav9FH0NH6Uu5tellgz/lL+aDCjndMhEeGoydOLPZdVMIBsFa6cRQw+RrefMVAR9EFM6zfdck5xZPWy/PMg=="; }; }; - "@chemzqm/neovim-5.8.0" = { + "@chemzqm/msgpack-lite-0.1.29" = { + name = "_at_chemzqm_slash_msgpack-lite"; + packageName = "@chemzqm/msgpack-lite"; + version = "0.1.29"; + src = fetchurl { + url = "https://registry.npmjs.org/@chemzqm/msgpack-lite/-/msgpack-lite-0.1.29.tgz"; + sha512 = "WbOT869c9BBLTpd51tQaFQRxwQZGaFzaaz03/df8zvXpHW8Xkfvw5u9SBxYuf+noJqeRKQxXsLWzeipMj2p3bQ=="; + }; + }; + "@chemzqm/neovim-5.8.10" = { name = "_at_chemzqm_slash_neovim"; packageName = "@chemzqm/neovim"; - version = "5.8.0"; + version = "5.8.10"; src = fetchurl { - url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.8.0.tgz"; - sha512 = "1yn2tQLv7ztw+pTDhmXJWrNPegXq5IUBwev/D7bs3yRBPWm3zCfbNAiI1MFnLh7/Ik2JJEtnC5HV6bkxzTppqA=="; + url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.8.10.tgz"; + sha512 = "ZvTSvkRBJiCZC6Q5mg8gjkLKWq8PufZ4zlUl09rAPAKCHx/4639IiXo9QJIY2czk5kHHgr4wbLOwQmoB41w+Ug=="; }; }; "@chinachu/aribts-1.3.5-mirakurun.17" = { @@ -2983,13 +3001,13 @@ let sha512 = "Q1rRRSU09ngrTgeTXHq6ePJs2KrI+axPTgkNYDWSJIuS1Op4w3J30vUfSXjwn5YEJHklK3fSqWNHmBhmTR7Vdg=="; }; }; - "@commitlint/ensure-17.0.0" = { + "@commitlint/ensure-17.3.0" = { name = "_at_commitlint_slash_ensure"; packageName = "@commitlint/ensure"; - version = "17.0.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.0.0.tgz"; - sha512 = "M2hkJnNXvEni59S0QPOnqCKIK52G1XyXBGw51mvh7OXDudCmZ9tZiIPpU882p475Mhx48Ien1MbWjCP1zlyC0A=="; + url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.3.0.tgz"; + sha512 = "kWbrQHDoW5veIUQx30gXoLOCjWvwC6OOEofhPCLl5ytRPBDAQObMbxTha1Bt2aSyNE/IrJ0s0xkdZ1Gi3wJwQg=="; }; }; "@commitlint/execute-rule-17.0.0" = { @@ -3019,22 +3037,22 @@ let sha512 = "rgUPUQraHxoMLxiE8GK430HA7/R2vXyLcOT4fQooNrZq9ERutNrP6dw3gdKLkq22Nede3+gEHQYUzL4Wu75ndg=="; }; }; - "@commitlint/lint-17.2.0" = { + "@commitlint/lint-17.3.0" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.2.0.tgz"; - sha512 = "N2oLn4Dj672wKH5qJ4LGO+73UkYXGHO+NTVUusGw83SjEv7GjpqPGKU6KALW2kFQ/GsDefSvOjpSi3CzWHQBDg=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.3.0.tgz"; + sha512 = "VilOTPg0i9A7CCWM49E9bl5jytfTvfTxf9iwbWAWNjxJ/A5mhPKbm3sHuAdwJ87tDk1k4j8vomYfH23iaY+1Rw=="; }; }; - "@commitlint/load-17.2.0" = { + "@commitlint/load-17.3.0" = { name = "_at_commitlint_slash_load"; packageName = "@commitlint/load"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-17.2.0.tgz"; - sha512 = "HDD57qSqNrk399R4TIjw31AWBG8dBjNj1MrDKZKmC/wvimtnIFlqzcu1+sxfXIOHj/+M6tcMWDtvknGUd7SU+g=="; + url = "https://registry.npmjs.org/@commitlint/load/-/load-17.3.0.tgz"; + sha512 = "u/pV6rCAJrCUN+HylBHLzZ4qj1Ew3+eN9GBPhNi9otGxtOfA8b+8nJSxaNbcC23Ins/kcpjGf9zPSVW7628Umw=="; }; }; "@commitlint/message-17.2.0" = { @@ -3064,22 +3082,22 @@ let sha512 = "bbblBhrHkjxra3ptJNm0abxu7yeAaxumQ8ZtD6GIVqzURCETCP7Dm0tlVvGRDyXBuqX6lIJxh3W7oyKqllDsHQ=="; }; }; - "@commitlint/resolve-extends-17.1.0" = { + "@commitlint/resolve-extends-17.3.0" = { name = "_at_commitlint_slash_resolve-extends"; packageName = "@commitlint/resolve-extends"; - version = "17.1.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.1.0.tgz"; - sha512 = "jqKm00LJ59T0O8O4bH4oMa4XyJVEOK4GzH8Qye9XKji+Q1FxhZznxMV/bDLyYkzbTodBt9sL0WLql8wMtRTbqQ=="; + url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.3.0.tgz"; + sha512 = "Lf3JufJlc5yVEtJWC8o4IAZaB8FQAUaVlhlAHRACd0TTFizV2Lk2VH70et23KgvbQNf7kQzHs/2B4QZalBv6Cg=="; }; }; - "@commitlint/rules-17.2.0" = { + "@commitlint/rules-17.3.0" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.2.0.tgz"; - sha512 = "1YynwD4Eh7HXZNpqG8mtUlL2pSX2jBy61EejYJv4ooZPcg50Ak7LPOyD3a9UZnsE76AXWFBz+yo9Hv4MIpAa0Q=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.3.0.tgz"; + sha512 = "s2UhDjC5yP2utx3WWqsnZRzjgzAX8BMwr1nltC0u0p8T/nzpkx4TojEfhlsOUj1t7efxzZRjUAV0NxNwdJyk+g=="; }; }; "@commitlint/to-lines-17.0.0" = { @@ -3118,49 +3136,49 @@ let sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; }; }; - "@cspell/cspell-bundled-dicts-6.14.0" = { + "@cspell/cspell-bundled-dicts-6.16.0" = { name = "_at_cspell_slash_cspell-bundled-dicts"; packageName = "@cspell/cspell-bundled-dicts"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.14.0.tgz"; - sha512 = "GItmbgKcqMUiNKy2Z3xPGEyS8Tu1DXrJCyj9uQD4J+MPQeirZfLb1wSNsZsVTTmRQm8eTZ/m73X95l8Ekfqm2A=="; + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.16.0.tgz"; + sha512 = "POcRwK6X+T3n+D6dRin4YdgQAXLDjwvUfXNexH5r+Oc0rQvl+lV0sZXg8W9miW2g9rhcetaDLStc+e9UmWh8EA=="; }; }; - "@cspell/cspell-pipe-6.14.0" = { + "@cspell/cspell-pipe-6.16.0" = { name = "_at_cspell_slash_cspell-pipe"; packageName = "@cspell/cspell-pipe"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.14.0.tgz"; - sha512 = "8dZZst6jZ7ELrNV1JqHNb7EnlXZTjgRYl6C+3PrC30/XUkMubBUj9nncLQH+M1ZUVpSN1ErbnTPOpbCllZ8tvQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.16.0.tgz"; + sha512 = "QB62ykIpRsPZFKRjNjmzJ1mQyW+Agdw0wL1a3Gbi59D7+02P2C8cC0h7viI1F2g9SUhjTHJa7ypQcm4OoV1Vug=="; }; }; - "@cspell/cspell-service-bus-6.14.0" = { + "@cspell/cspell-service-bus-6.16.0" = { name = "_at_cspell_slash_cspell-service-bus"; packageName = "@cspell/cspell-service-bus"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.14.0.tgz"; - sha512 = "p8sgtPfWm0UozKr4wPK/JK/IRqQZVJmA5O4YHaFYx3CHK4F7Lki0v6octds8ks9b3bP7KyVX+zix61y1LcCUQw=="; + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.16.0.tgz"; + sha512 = "brrxK2o/tnDqQvGS2xH5IiQg6igQ0yu3CNwJLRy2+sbrKmZWTd6WnDeIGdKiN0TgANAiprCXddVQxno9Svt8OQ=="; }; }; - "@cspell/cspell-types-6.14.0" = { + "@cspell/cspell-types-6.16.0" = { name = "_at_cspell_slash_cspell-types"; packageName = "@cspell/cspell-types"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.14.0.tgz"; - sha512 = "QHl/M02JeqvIvBJsH4U6OMV6B210QaHYfau8RapbZi1xqVdWuO9UQ44Z180AG41Y8a7T41pi5QWCQVB2s1WA+w=="; + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.16.0.tgz"; + sha512 = "eIN7fG1PM35y68Hcrp/WN4onkCD8w2v965pfuM85AUkyHklJD3NBrU25dNvrEdW0/FVYo2S1A3cafAl616m+lA=="; }; }; - "@cspell/dict-ada-3.0.0" = { + "@cspell/dict-ada-4.0.0" = { name = "_at_cspell_slash_dict-ada"; packageName = "@cspell/dict-ada"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-3.0.0.tgz"; - sha512 = "jpUVex0JTMGIQC/+T/GglLRpimmvH8HUcpf3gC+bS1ZcVGzyWQo5clevxYbz2MBVoLxSMZiqPoqB5dt/vAOTwQ=="; + url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.0.tgz"; + sha512 = "M0n4ZYmpLOXbDD07Qb/Ekk0K5pX2C+mCuJ2ZxPgbTq9HGlrN43PmqrGJHWcgtVHE3fd1D4VxS85QcQP6r1Y+KQ=="; }; }; "@cspell/dict-aws-1.0.14" = { @@ -3190,13 +3208,13 @@ let sha512 = "kJIqQ+FD2TCSgaaP5XLEDgy222+pVWTc+VhveNO++gnTWU3BCVjkD5LjfW7g/CmGONnz+nwXDueWspProaSdJw=="; }; }; - "@cspell/dict-bash-3.0.0" = { + "@cspell/dict-bash-4.1.0" = { name = "_at_cspell_slash_dict-bash"; packageName = "@cspell/dict-bash"; - version = "3.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-3.0.0.tgz"; - sha512 = "bQl6mk1SrcmrDL+F4XTeZtW2JnqgNJx5pNX6PIfWe5QA+J2blLlYbwDQOvjovpZEirwy8iqQmu//6bKjaDu1ow=="; + url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.1.0.tgz"; + sha512 = "8pFL03ZKejynfbsa2UZ3iZ7BrT1TAGTD8ZlK822ioAb7aoDvQhYao2Bjz5cXU0uk7CyrlgsSnYX94sLfqDfTxQ=="; }; }; "@cspell/dict-companies-1.0.40" = { @@ -3262,13 +3280,13 @@ let sha512 = "nub+ZCiTgmT87O+swI+FIAzNwaZPWUGckJU4GN402wBq420V+F4ZFqNV7dVALJrGaWH7LvADRtJxi6cZVHJKeA=="; }; }; - "@cspell/dict-csharp-4.0.1" = { + "@cspell/dict-csharp-4.0.2" = { name = "_at_cspell_slash_dict-csharp"; packageName = "@cspell/dict-csharp"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.1.tgz"; - sha512 = "BkfT6S790FcyWLTWYBwkj9dKxuNz4pHFDrj9GFrmqXd2HWzfSa944S0NJhal42TnW30JJljQY5P1ZYau+s2Pbg=="; + url = "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz"; + sha512 = "1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g=="; }; }; "@cspell/dict-css-1.0.13" = { @@ -3280,13 +3298,13 @@ let sha512 = "HU8RbFRoGanFH85mT01Ot/Ay48ixr/gG25VPLtdq56QTrmPsw79gxYm/5Qay16eQbpoPIxaj5CAWNam+DX4GbA=="; }; }; - "@cspell/dict-css-3.0.0" = { + "@cspell/dict-css-4.0.0" = { name = "_at_cspell_slash_dict-css"; packageName = "@cspell/dict-css"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-3.0.0.tgz"; - sha512 = "GNg4EMhP+8yVr3AuebBMUxsb/otCz2DS8rTp2M5Fo1179uwpjMfPqLezFxH+YaiA3vgBiwajdrl/0ZGn44qBRw=="; + url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.0.tgz"; + sha512 = "ieSeG9KAJGIr5eK0JRWqD5KXstPPUw6JUTmGWc7P/qiqj/sjmhWqWKEt7HhoSNcb8uQxAkAoxhrNpfbKzqnKAw=="; }; }; "@cspell/dict-dart-2.0.0" = { @@ -3307,13 +3325,13 @@ let sha512 = "mn9bd7Et1L2zuibc08GVHTiD2Go3/hdjyX5KLukXDklBkq06r+tb0OtKtf1zKodtFDTIaYekGADhNhA6AnKLkg=="; }; }; - "@cspell/dict-django-3.0.0" = { + "@cspell/dict-django-4.0.0" = { name = "_at_cspell_slash_dict-django"; packageName = "@cspell/dict-django"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-3.0.0.tgz"; - sha512 = "Ag6ecPokb12RcAwD9eOvKl5G2l4h5aOQl36mipqINLc+NPtIGVN3qa2FBg3hHeS6OvIDwCZ/LQ/zz5xbBhakhg=="; + url = "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.0.0.tgz"; + sha512 = "k0npSzQrPQSqjR2XtumV14sv9waTRMUzPx0UfOuJZcnCCZY8ofPeqFYoku+O+9Kc9etFOziOxnScshKVDzYWOQ=="; }; }; "@cspell/dict-docker-1.1.3" = { @@ -3334,13 +3352,13 @@ let sha512 = "9H9vXrgJB4KF8xsyTToXO53cXD33iyfrpT4mhCds+YLUw3P3x3E9myszgJzshnrxYBvQZ+QMII57Qr6SjZVk4Q=="; }; }; - "@cspell/dict-dotnet-3.0.1" = { + "@cspell/dict-dotnet-4.0.0" = { name = "_at_cspell_slash_dict-dotnet"; packageName = "@cspell/dict-dotnet"; - version = "3.0.1"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-3.0.1.tgz"; - sha512 = "Flruqsmhwrm1K2+HKsA4I6aywmsM5QnCddFb8FIQLgluyuTss6Hs1Xj380+k3PeU/wAg4xNTD7f6b4xxZLbfjw=="; + url = "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-4.0.0.tgz"; + sha512 = "biZiTWyDqwVV2m+c17lLIliPDXPjOR1VwwmyMxvb3nFS84aP9x52SAVCf0w7Io1CIpUiY7XnG6/xeI7esYU78w=="; }; }; "@cspell/dict-elixir-1.0.26" = { @@ -3352,13 +3370,13 @@ let sha512 = "hz1yETUiRJM7yjN3mITSnxcmZaEyaBbyJhpZPpg+cKUil+xhHeZ2wwfbRc83QHGmlqEuDWbdCFqKSpCDJYpYhg=="; }; }; - "@cspell/dict-elixir-3.0.0" = { + "@cspell/dict-elixir-4.0.0" = { name = "_at_cspell_slash_dict-elixir"; packageName = "@cspell/dict-elixir"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-3.0.0.tgz"; - sha512 = "DJxGMNfcT1ieYupyzq7GNSIJEkdJAnpEoL58R54bf2mxRfC02Uu2sIcKWJO18ozOn3jgOY408TxOCEc8bz39jw=="; + url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.0.tgz"; + sha512 = "0TqqdQjg/zu3wAjk2FQkZ87pPIS9tA9kl6he5NJB729ysrWhND/7aSPC48QrP46VZ+oFrvFZK8DC8ZlYs16cjQ=="; }; }; "@cspell/dict-en-gb-1.1.33" = { @@ -3379,13 +3397,13 @@ let sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; }; }; - "@cspell/dict-en_us-4.0.0" = { + "@cspell/dict-en_us-4.1.0" = { name = "_at_cspell_slash_dict-en_us"; packageName = "@cspell/dict-en_us"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.0.0.tgz"; - sha512 = "ZqWPm0cdC/3KdhWWHojti7/gfH5/JIzyGqI2zlmibz/jpR5Z0IzsW71xQCuU3KpNaYU1Frfivk0m34yicm1JFw=="; + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.1.0.tgz"; + sha512 = "EnfxP/5U3kDhmTWcHV7Xs2Fxa9KAE5fbHm+4u8LGBOUZvSkZC5+ayjQ50CfEyTGuaI/946ITQYPRNxUZ7oqOiQ=="; }; }; "@cspell/dict-filetypes-1.1.8" = { @@ -3460,13 +3478,13 @@ let sha512 = "qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg=="; }; }; - "@cspell/dict-golang-4.0.0" = { + "@cspell/dict-golang-5.0.0" = { name = "_at_cspell_slash_dict-golang"; packageName = "@cspell/dict-golang"; - version = "4.0.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-4.0.0.tgz"; - sha512 = "XxKINt3dmpixrmAcxVdP545eh0S6vmaGbddZyzIWzQlwoIE0b98l3AvtcdhCyYxbvcKAcZ+pkf+t2zGTnMvQug=="; + url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-5.0.0.tgz"; + sha512 = "Cbx4mVHsGbr5D+wlT0yU3n/0c5iLvciU48rSOQR7SCAzu5mTXyM1mqRu6nqnRiMv6G6mO50EL2LCTq6RZrlIOg=="; }; }; "@cspell/dict-haskell-1.0.13" = { @@ -3478,13 +3496,13 @@ let sha512 = "kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA=="; }; }; - "@cspell/dict-haskell-3.0.0" = { + "@cspell/dict-haskell-4.0.0" = { name = "_at_cspell_slash_dict-haskell"; packageName = "@cspell/dict-haskell"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-3.0.0.tgz"; - sha512 = "vVreZvGp9M8UcF/3fJAl/99M3NkcH0ik19xnFTsp4RWhy7+Ar/yCXo8251sSBtwL4TdR+0BHXdXKb2PYZ2UFdQ=="; + url = "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.0.tgz"; + sha512 = "U/DPpDoitGeUvduM9teDkDc1zs4Plgh0pNONDP3YbsEICErSlp1NfatD0i35Z6cR0C7I8uEe4gG2phG00zrSqw=="; }; }; "@cspell/dict-html-1.1.9" = { @@ -3496,13 +3514,13 @@ let sha512 = "vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w=="; }; }; - "@cspell/dict-html-4.0.0" = { + "@cspell/dict-html-4.0.1" = { name = "_at_cspell_slash_dict-html"; packageName = "@cspell/dict-html"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.0.tgz"; - sha512 = "UQRolrzTTMS3Ja1qkrdERnqG04qqwqp4vbMV+BLKvR0oiibfH56Dfnx/qz/C5KgFLc48GLGXLALjgCiHtPjPiA=="; + url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.1.tgz"; + sha512 = "q5fCzkoOz+8BW79qLrnANEDnG+Jb2WS2fXERxg9xwgKBXwXUxH8ttGVNhfkLpNWe/UMm00U1IZMnVGyYLNTO5w=="; }; }; "@cspell/dict-html-symbol-entities-1.0.23" = { @@ -3784,6 +3802,15 @@ let sha512 = "J3X8VSgWpc/4McQEs138abtBw/SO3Z+vGaYi5X7XV1pKPBxjupHTTNQHSS/HWUDmVWj6fR3OV+ZGptcmvv3Clg=="; }; }; + "@cspell/dict-svelte-1.0.0" = { + name = "_at_cspell_slash_dict-svelte"; + packageName = "@cspell/dict-svelte"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.0.tgz"; + sha512 = "5mE1bPMv+0Zdv6fiaHw86kZ47FhqNy9waUyGOT/wSWf6M5lxCZ3ze15rDruit6/62DaYo7A4/1dgKxpRo6/ZBQ=="; + }; + }; "@cspell/dict-swift-2.0.0" = { name = "_at_cspell_slash_dict-swift"; packageName = "@cspell/dict-swift"; @@ -3820,6 +3847,15 @@ let sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A=="; }; }; + "@cspell/strong-weak-map-6.16.0" = { + name = "_at_cspell_slash_strong-weak-map"; + packageName = "@cspell/strong-weak-map"; + version = "6.16.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.16.0.tgz"; + sha512 = "2vA+r/yQ+oLY9tnZIXJwhKjCDeosWBrfgb1ea1eJ2LpXb3AS8IRP60wnqYbK9FNqqdPZIt98/LYJ/EZN23SmLQ=="; + }; + }; "@cspotcode/source-map-consumer-0.8.0" = { name = "_at_cspotcode_slash_source-map-consumer"; packageName = "@cspotcode/source-map-consumer"; @@ -4045,24 +4081,6 @@ let sha512 = "hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA=="; }; }; - "@deltachat/message_parser_wasm-0.4.0" = { - name = "_at_deltachat_slash_message_parser_wasm"; - packageName = "@deltachat/message_parser_wasm"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@deltachat/message_parser_wasm/-/message_parser_wasm-0.4.0.tgz"; - sha512 = "lnFkj1nwYUU09Ee7udBkci61aUltv7TsgqhPmh812nvr18yw+/gYmZM9tvD8qPkGVU1tgbQ36Iruv+QWmLUFUw=="; - }; - }; - "@deltachat/react-qr-reader-4.0.0" = { - name = "_at_deltachat_slash_react-qr-reader"; - packageName = "@deltachat/react-qr-reader"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@deltachat/react-qr-reader/-/react-qr-reader-4.0.0.tgz"; - sha512 = "MdsQTo1Q18IUP3yMADQHDeWlVCq9p+LV96+dKCyNSBffaZ/5nE4J+Rbldd9QjPyVL615Hp4m9cubVfk/iAIjyA=="; - }; - }; "@devicefarmer/adbkit-3.2.3" = { name = "_at_devicefarmer_slash_adbkit"; packageName = "@devicefarmer/adbkit"; @@ -4144,94 +4162,85 @@ let sha512 = "BOLrAX8IWHRXu1siZocwLguKJPEUv7cr+rG8tI4hvHgMdIsBWHJlLeB8EjuUVnIURFrUiM49lVKn8DRrECmngw=="; }; }; - "@electron-forge/async-ora-6.0.0" = { - name = "_at_electron-forge_slash_async-ora"; - packageName = "@electron-forge/async-ora"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0.tgz"; - sha512 = "qRbdJRvpxpmSzoNh0YzsYFR7cKsgMwI4hRbaL8qstYHs4bvEzvtmrLLEUpfGM6rh0a3AAZDC67PbOBT0dhGLLw=="; - }; - }; - "@electron-forge/core-6.0.0" = { + "@electron-forge/core-6.0.4" = { name = "_at_electron-forge_slash_core"; packageName = "@electron-forge/core"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0.tgz"; - sha512 = "EIHzle+n7fyOGQQyhL6hlyy6akzrVUVWXcYcYBlF+kI7MdonvJxQvtebiJBItX1gd4E4Fqe2fHi5ufk3ghqhlQ=="; + url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.4.tgz"; + sha512 = "l3OiXB/9ebtZZtcQAbofaTmivQUqUVv8TKoxQ8GJbH48Eyk//mphbo7hDC5kb5Tyd0UedMOM9MxJrYjnd6jRnA=="; }; }; - "@electron-forge/core-utils-6.0.0" = { + "@electron-forge/core-utils-6.0.4" = { name = "_at_electron-forge_slash_core-utils"; packageName = "@electron-forge/core-utils"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-6.0.0.tgz"; - sha512 = "JX9COxf+V7py7V8QjX4aQySDLx2RceujNB1omXKm7fdfwItYVhimKz9QBfDwG8q5+K2nbCRSfpAbIEOuhUBl6Q=="; + url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-6.0.4.tgz"; + sha512 = "nOCjmm8Qr/bYkVNfEiXSk/LKjtv6iBrKcyhKIanNM3n7MJRuTH0ksvuajFBqg+V+EHplMb7y6acDvI+TTRDUxg=="; }; }; - "@electron-forge/maker-base-6.0.0" = { + "@electron-forge/maker-base-6.0.4" = { name = "_at_electron-forge_slash_maker-base"; packageName = "@electron-forge/maker-base"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0.tgz"; - sha512 = "zT4NQzJ4zjlKwmRtY/HeKcd/eP+R2vtYvpen5z6vuqY12+jubGgRoGyot4VT0nN5p46gcofGW/Y6aPEuND4ORg=="; + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.4.tgz"; + sha512 = "qJJ2oPFlyt6u/H67WLfZL0JclSpFj4VwxPfwxqNL/HcwXULJcOeat7oqJLY9UKBE4U2j+++xbA3LSoPAErroIg=="; }; }; - "@electron-forge/plugin-base-6.0.0" = { + "@electron-forge/plugin-base-6.0.4" = { name = "_at_electron-forge_slash_plugin-base"; packageName = "@electron-forge/plugin-base"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0.tgz"; - sha512 = "0PVEz0cFL0KKlBfyCaLVKfdOkdaSlJu+vl3oGLZoDVyOw3wNu5Tk2o84gKgkgtZ1jZTH3dmxUhimdWSMYl0QYA=="; + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.4.tgz"; + sha512 = "iILzbFzmUIGggsTNL9PO1ma6e4OuuhKunNnOkpkoyg6jIaz8Oh1WSHhOALMztlBn2FhreabZnBRy7JsvHVDXlg=="; }; }; - "@electron-forge/publisher-base-6.0.0" = { + "@electron-forge/publisher-base-6.0.4" = { name = "_at_electron-forge_slash_publisher-base"; packageName = "@electron-forge/publisher-base"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0.tgz"; - sha512 = "Aa6Xf00BQwxlyXpuismOtOt6XezP8CURWRnj1WN2kvSJDkLSzFwJqppHUIdz1htRx65h0H+uyaaCb2WlaWivMg=="; + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.4.tgz"; + sha512 = "0C86jnOSTo0z/W58zRx6BijuR4lscB0F6yXaBCFA5xaJ8+fVIsgz29kmVlLrp+YFRgatDCljvk+1+qVRM/Mfpg=="; }; }; - "@electron-forge/shared-types-6.0.0" = { + "@electron-forge/shared-types-6.0.4" = { name = "_at_electron-forge_slash_shared-types"; packageName = "@electron-forge/shared-types"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0.tgz"; - sha512 = "FN+158+EvSzbL/ZGwsLxeUbYOJm8bhHCLbR7SPAmKwn/X2P8pVj4HuhiROkqdiuU4kUDmrOg/LgObODofyvIKw=="; + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.4.tgz"; + sha512 = "lILLKcGZqfJYVI1x6RssVh37E934rCOaSdBQ9I7LypdfI2NWL+5PLLoUqvXbok1V28m3/O5JrXdigwEIZdhjzQ=="; }; }; - "@electron-forge/template-base-6.0.0" = { + "@electron-forge/template-base-6.0.4" = { name = "_at_electron-forge_slash_template-base"; packageName = "@electron-forge/template-base"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0.tgz"; - sha512 = "jFFS7U6T6owLGZ9uB1m7KgAzWrG1QG0cg/0XK2OijpgRJuTy3O/qUzAf7IhdwxT7CARMq2vLq6yMbTYb/0tQ7Q=="; + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.4.tgz"; + sha512 = "23/b0n+ls0+c2+OG1XrHROk6i3PseONLJY3tcR42uFaP/yGZL8nJfgXE2qTKBwUyFQ0tCgUAD3a4vYkMPLKrwg=="; }; }; - "@electron-forge/template-webpack-6.0.0" = { + "@electron-forge/template-webpack-6.0.4" = { name = "_at_electron-forge_slash_template-webpack"; packageName = "@electron-forge/template-webpack"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0.tgz"; - sha512 = "o7gUO8zdUyvkcQ9nlBd20F9nDErO5Hd75Tk9GCXPQ4nQuEEZnUp+mzd5j+bzmSaidjFfVCfz1hXzwko5fch34g=="; + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.4.tgz"; + sha512 = "mrzNzkhsLfD20y/vfTYVBFSkptmgSEwqn4zh4vnzP9tzAJ4eMbvhfVtkK/XQfm8ZspPjs+RZSzRrRNo+e0iEaw=="; }; }; - "@electron-forge/template-webpack-typescript-6.0.0" = { + "@electron-forge/template-webpack-typescript-6.0.4" = { name = "_at_electron-forge_slash_template-webpack-typescript"; packageName = "@electron-forge/template-webpack-typescript"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.0.0.tgz"; - sha512 = "lhWZIqLHPt7gffdfTl0mg5YLh6nUgcNxpzW8Osctstc7XM2eF0CK09Gbi6d/E2MPIK911zrTSqsvBkYXWCUprQ=="; + url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.0.4.tgz"; + sha512 = "Z9fJ0JfZw9w5OVZgy0qVGapGMQqfaLyQSHzEfm2HQdGGJrHkeXJkMn8Yd1E8h5EPMb3jF5tHRw3VopelzcPQxQ=="; }; }; "@electron/asar-3.2.2" = { @@ -4243,15 +4252,6 @@ let sha512 = "32fMU68x8a6zvxtC1IC/BhPDKTh8rQjdmwEplj3CDpnkcwBzZVN9v/8cK0LJqQ0FOQQVZW8BWZ1S6UU53TYR4w=="; }; }; - "@electron/get-1.14.1" = { - name = "_at_electron_slash_get"; - packageName = "@electron/get"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@electron/get/-/get-1.14.1.tgz"; - sha512 = "BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw=="; - }; - }; "@electron/get-2.0.2" = { name = "_at_electron_slash_get"; packageName = "@electron/get"; @@ -4270,13 +4270,13 @@ let sha512 = "9oRzT56rKh5bspk3KpAVF8lPKHYQrBnRwcgiOeR0hdilVEQmszDaAu0IPCPrwwzJN0ugNs0rRboTreHMt/6mBQ=="; }; }; - "@electron/osx-sign-1.0.1" = { + "@electron/osx-sign-1.0.2" = { name = "_at_electron_slash_osx-sign"; packageName = "@electron/osx-sign"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.1.tgz"; - sha512 = "WkUcva+qkt809bI6uxxEG/uOWfl8HAw0m8aPijpKmGMIpZ1CWWB808YG6aY3wckUO86xZdmiOsUJTM4keLhY8A=="; + url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.2.tgz"; + sha512 = "TuDdc+J2LKRyX2w1ue/P3doabxRAsYqmF+32x1fxf5tFnWBfhcbM0eoM/wbbEIuM+gleNhaOkWzk2j5ZJTfL9w=="; }; }; "@electron/rebuild-3.2.10" = { @@ -4288,13 +4288,13 @@ let sha512 = "SUBM6Mwi3yZaDFQjZzfGKpYTtOp9m60glounwX6tfGeVc/ZOl4jbquktUcyy7gYSLDWFLtKkftkY2xgMJZLQgg=="; }; }; - "@electron/universal-1.3.3" = { + "@electron/universal-1.3.4" = { name = "_at_electron_slash_universal"; packageName = "@electron/universal"; - version = "1.3.3"; + version = "1.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/universal/-/universal-1.3.3.tgz"; - sha512 = "79yc61D5QWaQpia+sLQbIIi5iVoV4y9HtgOTlE0fYT0xoyg+ChwndBl4a0Q7yJfDsqq+/nLEPE655F0bTpDiCg=="; + url = "https://registry.npmjs.org/@electron/universal/-/universal-1.3.4.tgz"; + sha512 = "BdhBgm2ZBnYyYRLRgOjM5VHkyFItsbggJ0MHycOjKWdFGYwK97ZFXH54dTvUWEfha81vfvwr5On6XBjt99uDcg=="; }; }; "@emmetio/abbreviation-2.2.3" = { @@ -4396,22 +4396,22 @@ let sha512 = "uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg=="; }; }; - "@esbuild/android-arm-0.15.13" = { + "@esbuild/android-arm-0.15.17" = { name = "_at_esbuild_slash_android-arm"; packageName = "@esbuild/android-arm"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.13.tgz"; - sha512 = "RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw=="; + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.17.tgz"; + sha512 = "ay6Ken4u+JStjYmqIgh71jMT0bs/rXpCCDKaMfl78B20QYWJglT5P6Ejfm4hWf6Zi+uUWNe7ZmqakRs2BQYIeg=="; }; }; - "@esbuild/linux-loong64-0.15.13" = { + "@esbuild/linux-loong64-0.15.17" = { name = "_at_esbuild_slash_linux-loong64"; packageName = "@esbuild/linux-loong64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.13.tgz"; - sha512 = "+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag=="; + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.17.tgz"; + sha512 = "IA1O7f7qxw2DX8oqTpugHElr926phs7Rq8ULXleBMk4go5K05BU0mI8BfCkWcYAvcmVaMc13bv5W3LIUlU6Y9w=="; }; }; "@eslint/eslintrc-0.4.3" = { @@ -4441,31 +4441,31 @@ let sha512 = "5HzrA5N0lSMtx2RdXfD9Z4HUFaRGwVOFs7jsFG8jDivoZjYYwZFsSqvA17TaNZYFcwBrkSCqHlxDu2YDpjjUBA=="; }; }; - "@esm2cjs/cacheable-request-10.2.2" = { + "@esm2cjs/cacheable-request-10.2.3" = { name = "_at_esm2cjs_slash_cacheable-request"; packageName = "@esm2cjs/cacheable-request"; - version = "10.2.2"; + version = "10.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@esm2cjs/cacheable-request/-/cacheable-request-10.2.2.tgz"; - sha512 = "Le2lPwq0AJkT6dpzfN6D8I7GnDS5nWVkgzJWqmLxOPbeNir2d1i30jOdeUrZFS3bVaJUGhot7VioBOe8uTfRHg=="; + url = "https://registry.npmjs.org/@esm2cjs/cacheable-request/-/cacheable-request-10.2.3.tgz"; + sha512 = "3XI8RZmu37SaqAOcoKq2mn0oI1hg2kZf2YvLfye1izti2n9W6o5UnFE4sQK/IPLPJx1XPWuvq3EQPdUzGCX99g=="; }; }; - "@esm2cjs/form-data-encoder-2.1.3" = { + "@esm2cjs/form-data-encoder-2.1.4" = { name = "_at_esm2cjs_slash_form-data-encoder"; packageName = "@esm2cjs/form-data-encoder"; - version = "2.1.3"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/@esm2cjs/form-data-encoder/-/form-data-encoder-2.1.3.tgz"; - sha512 = "gX11zQAutacDK2URqivqRQ3KUzWqxgjjVcamIvM9i+oS2Qf0QVZoBiVv34E3Nmjf+IYNBjXpOlwiyc9F1vni1A=="; + url = "https://registry.npmjs.org/@esm2cjs/form-data-encoder/-/form-data-encoder-2.1.4.tgz"; + sha512 = "HfuSoCMEgT5oHOwnN+o0f4Kzm+vBvRtddzJFFbLmawzPlFr3Djh2DHVDa2XpJCON4vjmd6RObd9R/oa0MvCLjg=="; }; }; - "@esm2cjs/got-12.5.2" = { + "@esm2cjs/got-12.5.3" = { name = "_at_esm2cjs_slash_got"; packageName = "@esm2cjs/got"; - version = "12.5.2"; + version = "12.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@esm2cjs/got/-/got-12.5.2.tgz"; - sha512 = "BADfmu71GA9RYWx0pEWwzpaJO4Xcx0XTST2UeeHhsO0S12Bsf/6OJ9jdtKlQDM/VoYp4DkbMhL5SH54w2uMGRg=="; + url = "https://registry.npmjs.org/@esm2cjs/got/-/got-12.5.3.tgz"; + sha512 = "eI+5wDoF5bV4juELczVb65i+dFVPoQCq0XsnnBudzClQUYV+oScXVKt+LrToXO/1Vimfvt+EZoNmuwdQjz+Kkg=="; }; }; "@esm2cjs/http-timer-5.0.1" = { @@ -4504,13 +4504,13 @@ let sha512 = "v0OcLK+2AmkCaUVirWNu+e8j8xd8jRIXhC/VbpFp4AkVXGovFspCmwx26IluxXiz8vHckP4uLy/GzMatiEqdLg=="; }; }; - "@esm2cjs/normalize-url-7.2.0" = { + "@esm2cjs/normalize-url-8.0.0" = { name = "_at_esm2cjs_slash_normalize-url"; packageName = "@esm2cjs/normalize-url"; - version = "7.2.0"; + version = "8.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@esm2cjs/normalize-url/-/normalize-url-7.2.0.tgz"; - sha512 = "K1y4qR6p3PVE01NPvsozNHWTiCuD44XGk+lmri8N/t0GjfMIFsgVYvHRUoVKB/f4o/f0egQvaThLlEaSN+ELsA=="; + url = "https://registry.npmjs.org/@esm2cjs/normalize-url/-/normalize-url-8.0.0.tgz"; + sha512 = "9lrM8Q0ANSfM7ziVpNXEDKrVYcU4M3xIAUZWcvH9bY0fINBCkew1YBU1C1otfNoFDCERvCH0AkO70wkePdQwQw=="; }; }; "@esm2cjs/p-cancelable-3.0.0" = { @@ -4549,6 +4549,15 @@ let sha512 = "VIQ3pvevlVGC1uzQ7JxCQH3VFmzmC8ASXk35oKq4+VaLBZioKJR/eXk8C7GD8OgajnNByClo/rEsku1fqMTNSw=="; }; }; + "@ewoudenberg/difflib-0.1.0" = { + name = "_at_ewoudenberg_slash_difflib"; + packageName = "@ewoudenberg/difflib"; + version = "0.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@ewoudenberg/difflib/-/difflib-0.1.0.tgz"; + sha512 = "OU5P5mJyD3OoWYMWY+yIgwvgNS9cFAU10f+DDuvtogcWQOoJIsQ4Hy2McSfUfhKjq8L0FuWVb4Rt7kgA+XK86A=="; + }; + }; "@exodus/schemasafe-1.0.0-rc.9" = { name = "_at_exodus_slash_schemasafe"; packageName = "@exodus/schemasafe"; @@ -4585,22 +4594,13 @@ let sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; }; }; - "@expo/cli-0.4.6" = { + "@expo/cli-0.4.10" = { name = "_at_expo_slash_cli"; packageName = "@expo/cli"; - version = "0.4.6"; + version = "0.4.10"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/cli/-/cli-0.4.6.tgz"; - sha512 = "TGgw3cA+6xzdpVrT8Ym8lc1wrOlaEzUD33wLndU3BjpdVIcgwxG4YKkUVU0GgdcVrb/sP5LDZtdVZi2s0KDClw=="; - }; - }; - "@expo/code-signing-certificates-0.0.2" = { - name = "_at_expo_slash_code-signing-certificates"; - packageName = "@expo/code-signing-certificates"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.2.tgz"; - sha512 = "vnPHFjwOqxQ1VLztktY+fYCfwvLzjqpzKn09rchcQE7Sdf0wtW5fFtIZBEFOOY5wasp8tXSnp627zrAwazPHzg=="; + url = "https://registry.npmjs.org/@expo/cli/-/cli-0.4.10.tgz"; + sha512 = "c8NJOVa5b8g9CYj8ahdaN21cVE2wPwUaFrtTE0kLeRR5ASy8reWLFEOcstEtt6eufdcN/uGgBWQ0FLovgLZuzw=="; }; }; "@expo/code-signing-certificates-0.0.3" = { @@ -4612,6 +4612,15 @@ let sha512 = "rHOUnsLaceOcdC8wUhkG+SuBJDbj/Nf/7kbBZH6ZbHzn22x92ZII/clIYOxt7C5P0xfeUwYKa7pRuZm6ut5k/g=="; }; }; + "@expo/code-signing-certificates-0.0.5" = { + name = "_at_expo_slash_code-signing-certificates"; + packageName = "@expo/code-signing-certificates"; + version = "0.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz"; + sha512 = "BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw=="; + }; + }; "@expo/config-6.0.24" = { name = "_at_expo_slash_config"; packageName = "@expo/config"; @@ -4702,40 +4711,40 @@ let sha512 = "kqr71GAXzBVmjT+qSmqckBKY6Y9lFf4Oy1S4aVygx72CNgyzVTw4CPqT5RsNhcvQEEdACgarczDbPnNkmrm7GQ=="; }; }; - "@expo/dev-server-0.1.122" = { + "@expo/dev-server-0.1.123" = { name = "_at_expo_slash_dev-server"; packageName = "@expo/dev-server"; - version = "0.1.122"; + version = "0.1.123"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.122.tgz"; - sha512 = "nUx1yFYVLVXVLW7+bOz2O4OWfwdp1WVGpcZpKRC38yPkXkAVCaWrK6p0muWZJJb7Nm0sXfDiMdsudxZFNIKFmQ=="; + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.123.tgz"; + sha512 = "N6UVzzeemfX0AONUSWInvkAAbqon8hRXpyYE/nMPaC6TvAmgGY5ILZAGoXwlpxwY2VKNT0Lx4s/UJ53ytIaHbA=="; }; }; - "@expo/devcert-1.0.0" = { + "@expo/devcert-1.1.0" = { name = "_at_expo_slash_devcert"; packageName = "@expo/devcert"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/devcert/-/devcert-1.0.0.tgz"; - sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ=="; + url = "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.0.tgz"; + sha512 = "ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA=="; }; }; - "@expo/eas-build-job-0.2.96" = { + "@expo/eas-build-job-0.2.97" = { name = "_at_expo_slash_eas-build-job"; packageName = "@expo/eas-build-job"; - version = "0.2.96"; + version = "0.2.97"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.96.tgz"; - sha512 = "Y8jeEEwzU/GfYNSq+5Snbl5NFpXSgqtRCvPIpWUWka0XsPf4qhU9e6iWjOJboi5VbQIAQfZbXMjW/OZByjT/OA=="; + url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.97.tgz"; + sha512 = "1OtHIoJbMQSsp0jEqBLI7nsqqhy1Hv38H0Ogznyr3uFqk5zWLX57pmSx4wWYv9R8M6SXsgJJq/nNa5RAopsipA=="; }; }; - "@expo/eas-json-2.6.0" = { + "@expo/eas-json-2.8.0" = { name = "_at_expo_slash_eas-json"; packageName = "@expo/eas-json"; - version = "2.6.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-2.6.0.tgz"; - sha512 = "DnamwAlsnWd8a7mPR5a6a6bYUSlKwAm2dw5/5Xl5G69OPjzkAZ1xdIqoJ018KubfoI92DgMKNX3l1ojOAEcvGw=="; + url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-2.8.0.tgz"; + sha512 = "9MUWyYy2Gm1jY4p5g+h3raaX3+0OIvS4U2162O1gSSQN7O4mczFiHq1n/jJLulEl8hm9gvK6kdSeeCRSyvvKhA=="; }; }; "@expo/image-utils-0.3.20" = { @@ -4891,13 +4900,13 @@ let sha512 = "G4j1H3WFjRaiQ+FgFNULrnIm7RsQyjc4xp6lLTP2ydBv79wO3x8wAdeZvaZh7eOkfu9BESpQzACT1uuJTag5jg=="; }; }; - "@expo/prebuild-config-5.0.6" = { + "@expo/prebuild-config-5.0.7" = { name = "_at_expo_slash_prebuild-config"; packageName = "@expo/prebuild-config"; - version = "5.0.6"; + version = "5.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-5.0.6.tgz"; - sha512 = "umHVsle+inPFPt+GMWRjZhkHwNbbaXpiEKbRnWKweInaXEZa9R9qt8gLyzniaREnw+/cEAIgL1znrKmNk4lUfQ=="; + url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-5.0.7.tgz"; + sha512 = "D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew=="; }; }; "@expo/results-1.0.0" = { @@ -5098,157 +5107,148 @@ let sha512 = "P4ZMRFxVMnfMsOyTfBM/+nkTodLeOUfXNPo+X1bKEWBiZxRErqX/IHS5sLA0yAH8XmtKZcL7Cu6M26ztGcQYxw=="; }; }; - "@flatten-js/interval-tree-1.0.19" = { - name = "_at_flatten-js_slash_interval-tree"; - packageName = "@flatten-js/interval-tree"; - version = "1.0.19"; - src = fetchurl { - url = "https://registry.npmjs.org/@flatten-js/interval-tree/-/interval-tree-1.0.19.tgz"; - sha512 = "E+uCpmzAP6EL1L0VDligIg2oUnwbzhSMRXts8Ct7OQ+i+dFEgefExcKnTwGFa+MUZGYAIKHBoUWo/f/lhqc1Ew=="; - }; - }; - "@fluentui/date-time-utilities-8.5.2" = { + "@fluentui/date-time-utilities-8.5.3" = { name = "_at_fluentui_slash_date-time-utilities"; packageName = "@fluentui/date-time-utilities"; - version = "8.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.2.tgz"; - sha512 = "u540ACUdnC+Jms1DIHkho80eJmoCg/LtAzR4a/1Tum6PicxWv59UYp9Ba7qFbIw+mrjWnwX/2ZmBpqTy9Rgn7w=="; - }; - }; - "@fluentui/dom-utilities-2.2.2" = { - name = "_at_fluentui_slash_dom-utilities"; - packageName = "@fluentui/dom-utilities"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.2.tgz"; - sha512 = "puklLc6Jvg279OGagqkSfuHML6ckBhw3gJakdvIZHKeJiduh+34U4Finl3K24yBSXzG2WsN+LwLTd1Vcociy+g=="; - }; - }; - "@fluentui/font-icons-mdl2-8.5.2" = { - name = "_at_fluentui_slash_font-icons-mdl2"; - packageName = "@fluentui/font-icons-mdl2"; - version = "8.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.2.tgz"; - sha512 = "qDbZNiXVPx6X/Z2MpU3Oa2kWNSrk5+mG8ZRdH/thD7iwnV4l6DtBctNyXK/Cjq4EpG3eQQra8LBVxwOyDt0GqA=="; - }; - }; - "@fluentui/foundation-legacy-8.2.22" = { - name = "_at_fluentui_slash_foundation-legacy"; - packageName = "@fluentui/foundation-legacy"; - version = "8.2.22"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.22.tgz"; - sha512 = "wyv5KxmgG/Qivd0eUkQ4mpAdy3caPV9WrPd10MMw/0TGyCCrzq7+REZYVilRy1+VWQspQxWxRH7Kex9+LqPlKA=="; - }; - }; - "@fluentui/keyboard-key-0.4.2" = { - name = "_at_fluentui_slash_keyboard-key"; - packageName = "@fluentui/keyboard-key"; - version = "0.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.2.tgz"; - sha512 = "6WdMrnFpY94uWefUGGRqO4WiS6R+Kso6/FR95SxXMuS6kfnjGJCHzywFGZcN5OU1fX067Zna4aPQ/nDwYMgBPw=="; - }; - }; - "@fluentui/merge-styles-8.5.3" = { - name = "_at_fluentui_slash_merge-styles"; - packageName = "@fluentui/merge-styles"; version = "8.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.3.tgz"; - sha512 = "bHWftN3zTp1bbBfmAEH8YK9UURWj2mffw7b7VaW2Og1qxwv3GMSza1cyv/d3EVqpMJ8AVwFv3mbi9p1ieMN9mw=="; + url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.3.tgz"; + sha512 = "jwbwcJlnerdjENIAfn/YHxl5H2sQruReOMWXWMgmvX0CmcbqsN9VBxBt+E35Tlr4Ds3MbGs60eyfZUIPpaB5RQ=="; }; }; - "@fluentui/react-8.100.0" = { - name = "_at_fluentui_slash_react"; - packageName = "@fluentui/react"; - version = "8.100.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.100.0.tgz"; - sha512 = "zdMTJgZEg0NCDLcchlFOnDP1krm7Qel7uUSjfYm5MGS/rK08o9dgpwzjAwjEukGkIZ/Q3C4DZQablVdV/CpW+A=="; - }; - }; - "@fluentui/react-focus-8.8.8" = { - name = "_at_fluentui_slash_react-focus"; - packageName = "@fluentui/react-focus"; - version = "8.8.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.8.tgz"; - sha512 = "N4JmmduWk50tIGTH6kYTDa1HJfJ9qzGztbmo7HEh+gzHLwHDkL0GOV5+VWfwPuBcUqD1eKP4fz/e/gCBswBShg=="; - }; - }; - "@fluentui/react-hooks-8.6.12" = { - name = "_at_fluentui_slash_react-hooks"; - packageName = "@fluentui/react-hooks"; - version = "8.6.12"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.12.tgz"; - sha512 = "zjxOgBMNgg0RRmlB/lfGvApvVxwLfVqwQF5BtKe9DHWGXV7B1Pz9IrYOZ+vI6Mup3eqBAcnU01AURU8PG5RT/g=="; - }; - }; - "@fluentui/react-portal-compat-context-9.0.3" = { - name = "_at_fluentui_slash_react-portal-compat-context"; - packageName = "@fluentui/react-portal-compat-context"; - version = "9.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.3.tgz"; - sha512 = "XZczqvKJflK6jFv6RekFXzZFnxvd1tBbIsRFs6JMX8zNqMO7ZQJ6Yfee5LLs6HnZE5BKowE7jIUMOTH9yOmyJg=="; - }; - }; - "@fluentui/react-window-provider-2.2.3" = { - name = "_at_fluentui_slash_react-window-provider"; - packageName = "@fluentui/react-window-provider"; + "@fluentui/dom-utilities-2.2.3" = { + name = "_at_fluentui_slash_dom-utilities"; + packageName = "@fluentui/dom-utilities"; version = "2.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.3.tgz"; - sha512 = "uJztbyMu7x/cSYnJ0Rbmult/t22zFnQG20Jtlhmh5/g+M8QiF/T7xz9dkNe4Hon4KmpqnZpd8ds4nmX0fwxODg=="; + url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.3.tgz"; + sha512 = "Ml/xwpTC6vb9lHHVAbSUD9jMbt9nVzV208D0FEoQn0c0+dP2vdMXSvXC/QHs/57B6JicttVQPuX6EcPwR3Mkpg=="; }; }; - "@fluentui/set-version-8.2.2" = { + "@fluentui/font-icons-mdl2-8.5.4" = { + name = "_at_fluentui_slash_font-icons-mdl2"; + packageName = "@fluentui/font-icons-mdl2"; + version = "8.5.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.4.tgz"; + sha512 = "sIf1ND1Qr1Y1A/XAYG3vCAVnjNljXZxrwenv36VGBqjG/xwJ0Lu5bNAUqjmPy6biKiMttz73zcL2ST3QNlYvhw=="; + }; + }; + "@fluentui/foundation-legacy-8.2.24" = { + name = "_at_fluentui_slash_foundation-legacy"; + packageName = "@fluentui/foundation-legacy"; + version = "8.2.24"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.24.tgz"; + sha512 = "ccGbQmXW2qXSl/xtFVuAkCFH5TJMJX4+qoQ/CwAq+43ZCJaMQaz0KHmk3t3u+TXUWLCc8EGSEgYAIxMPzHI53A=="; + }; + }; + "@fluentui/keyboard-key-0.4.3" = { + name = "_at_fluentui_slash_keyboard-key"; + packageName = "@fluentui/keyboard-key"; + version = "0.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.3.tgz"; + sha512 = "uLiwx+UyXDN7tShv/s2NzDPtqeT/BZCHvY9yxEeb6LgEkos8TZvT5ep/7G8BpxA/SuBnviZ8xpDB5JObyZikqQ=="; + }; + }; + "@fluentui/merge-styles-8.5.4" = { + name = "_at_fluentui_slash_merge-styles"; + packageName = "@fluentui/merge-styles"; + version = "8.5.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.4.tgz"; + sha512 = "CeQIEcEgZu0cxqqyhJyTqySXoUL1vXfdWDJ8WMzchaNnhvOvoXISw8xXHpNXUtEn+HgPrcy9mHQwFcAc+jv3Wg=="; + }; + }; + "@fluentui/react-8.103.4" = { + name = "_at_fluentui_slash_react"; + packageName = "@fluentui/react"; + version = "8.103.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.103.4.tgz"; + sha512 = "S3gQhgC75qSeI5ARdDCRKViN0wr/TL424HtejNDqDNeuz7HBB1eVEzNq1O23VY2WvUl4e84EmgysKm6G2SmnjQ=="; + }; + }; + "@fluentui/react-focus-8.8.10" = { + name = "_at_fluentui_slash_react-focus"; + packageName = "@fluentui/react-focus"; + version = "8.8.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.10.tgz"; + sha512 = "CB1/VXRCvy6qLFLY8dCxOF8PPYxM2vayTRSNva4/uDqg60jlMSsdZiPJE1PnC9FQKUKXgMZp78kak/ckGc8VZQ=="; + }; + }; + "@fluentui/react-hooks-8.6.14" = { + name = "_at_fluentui_slash_react-hooks"; + packageName = "@fluentui/react-hooks"; + version = "8.6.14"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.14.tgz"; + sha512 = "mM2bW7xIRGGx7thBXKDR64SaZB1tYwICdM9qpM/Jfiu0H+VPQhhhtMPJ+ImmG+DM8MxX9n5Su8ePo2QWtz9mYA=="; + }; + }; + "@fluentui/react-portal-compat-context-9.0.4" = { + name = "_at_fluentui_slash_react-portal-compat-context"; + packageName = "@fluentui/react-portal-compat-context"; + version = "9.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.4.tgz"; + sha512 = "qw2lmkxZ2TmgC0pB2dvFyrzVffxBdpCx1BdWRaF+MRGUlTxRtqfybSx3Edsqa6NMewc3J0ThLMFdVFBQ5Yafqw=="; + }; + }; + "@fluentui/react-window-provider-2.2.4" = { + name = "_at_fluentui_slash_react-window-provider"; + packageName = "@fluentui/react-window-provider"; + version = "2.2.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.4.tgz"; + sha512 = "tCiIGQSILSipcn8DwwRgYq5IMtwBKiSQ+/cVRNq54cJZoq5ie/kMGFpldZ+vREDbM8wjmO3eNgNi63A3QRx39g=="; + }; + }; + "@fluentui/set-version-8.2.3" = { name = "_at_fluentui_slash_set-version"; packageName = "@fluentui/set-version"; - version = "8.2.2"; + version = "8.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.2.tgz"; - sha512 = "Vg20KZ0ufgWjxx6GFbqC5wiVxXZDUWgNT0r0By/Eyj4bUSb1jG6lmf5z1oY1dUX0YS6Cp5e6GnvbNdXg5E7orA=="; + url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.3.tgz"; + sha512 = "/+5vrI1Bq/ZsNDEK9++RClnDOeCILS8RXxZb7OAqmOc8GnPScxKcIN8e/1bosUxTjb2EB1KbVk6XeUpk0WvQIg=="; }; }; - "@fluentui/style-utilities-8.8.1" = { + "@fluentui/style-utilities-8.8.3" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.8.1"; + version = "8.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.8.1.tgz"; - sha512 = "asOdSI9+9qgnvpriRuAluREM94iyJJOONA+yZvJiYkVttgFRt77xWrabFjuEbX4pPCmqHhmA0d7dz8zPKgV7cA=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.8.3.tgz"; + sha512 = "DxcCIHnKdaBpzdIawZIMcVyn8xVbK6A37J0Q7MPdjb9VV4Nsp/ohWnM9nPrPlbB+RSsKWrIssgWJdn5yZM9Wxg=="; }; }; - "@fluentui/theme-2.6.17" = { + "@fluentui/theme-2.6.19" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "2.6.17"; + version = "2.6.19"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.17.tgz"; - sha512 = "9pxMhOugX3bwY86TresiR6UQNszylD4oiVCAj5s5li7zGos+psdOMrmz9LykIEn1mbAofT/XvRCYfiKECtHEpA=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.19.tgz"; + sha512 = "Pk4STq3WAM3Mq4fGCBrq3F43o1u2SitO7CZ6A3/ALreaxTA1LC4bbyKQTYH3tvxapqEOYaEPYZ3dFjWjqYlFfg=="; }; }; - "@fluentui/utilities-8.13.2" = { + "@fluentui/utilities-8.13.4" = { name = "_at_fluentui_slash_utilities"; packageName = "@fluentui/utilities"; - version = "8.13.2"; + version = "8.13.4"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.2.tgz"; - sha512 = "0AHJBMyYVI7vFChXdPynFf32IYB2y6z4EB5ACzW8UkPFrwkHncbj5pPPE24MCbV7jYR49YrHn9eLY38B+H4iiw=="; + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.4.tgz"; + sha512 = "oJ6q8BvVdr0eEG5RgI/VBtKX2JvJV2h0AUkR7FwZoT8fvUUH/iykPZO/5CAVcQDyiXj73hmBibiEGkWNFFuPfw=="; }; }; - "@forge/api-2.8.0" = { + "@forge/api-2.8.1" = { name = "_at_forge_slash_api"; packageName = "@forge/api"; - version = "2.8.0"; + version = "2.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/api/-/api-2.8.0.tgz"; - sha512 = "C4ZQWKwn/Hy863gJ2Zjg7TjK0ZPggjin96/fXsTKp5xl3LXvZ5NUkyQ5mfbV7ufGUuC21/9/AS9+co+IIZOBHA=="; + url = "https://registry.npmjs.org/@forge/api/-/api-2.8.1.tgz"; + sha512 = "r85AkJXnHGIU0Y7n287Vzm/l5u+7/CreXyqwpq2Y0dlZXgDTdMds+zjNzx9D+UYW6hrP/CUzF1tF65MCjLfAPA=="; }; }; "@forge/auth-0.0.1" = { @@ -5269,22 +5269,22 @@ let sha512 = "+GFtFqBhFzwKaKmeEfw1jWQgZJNX4q11CCx1fSPFJB49Fdjb7k3lx74jAyzHlX0UWnm6DMK+/cYT7j5t6G9LfA=="; }; }; - "@forge/bundler-4.0.0" = { + "@forge/bundler-4.0.2" = { name = "_at_forge_slash_bundler"; packageName = "@forge/bundler"; - version = "4.0.0"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.0.0.tgz"; - sha512 = "2hqHE5jR030bjAG5XHfmeGxVTM76qAI3eu0XWKxEBj4rGiIg1p4VOptq3d3OUvU+yq9pKX0sd6tQRayUWLfc2Q=="; + url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.0.2.tgz"; + sha512 = "Xe69zy8JzxISo4YkPky4vZInXzwSWMVIqfmxrjLjDWnn//mEdANF8uHZqiK8h9ZMgJzDyZgPT6ve+/Tgvj8sLw=="; }; }; - "@forge/cli-shared-3.2.2" = { + "@forge/cli-shared-3.3.0" = { name = "_at_forge_slash_cli-shared"; packageName = "@forge/cli-shared"; - version = "3.2.2"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.2.2.tgz"; - sha512 = "ij6N9//qE8vV39UbXS1UIliEDgt0AeDTBkBGhUscKwA3xktDEXLl/Rel5BOnBPVLHLR6ztCIe3TROLQKaLdzEA=="; + url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.3.0.tgz"; + sha512 = "d6O56RCGJomdy4/4SCPP9367fN9L05bjz7EQhNoVnATJ0gswOKAWdYgI6xxOEvCkbp7Hi4EYERT6wIPYorRVgA=="; }; }; "@forge/egress-1.1.1" = { @@ -5296,31 +5296,31 @@ let sha512 = "ycnIIOKyurzchlocjjvTwqtQNsCF98XRT+YvwVwZWwKZ0OmSzPcXPZImrIFw3dF1qySwRwRL31R0xZ1HYUEs8w=="; }; }; - "@forge/lint-3.2.8" = { + "@forge/lint-3.2.10" = { name = "_at_forge_slash_lint"; packageName = "@forge/lint"; - version = "3.2.8"; + version = "3.2.10"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.8.tgz"; - sha512 = "CYY6lSOUdTW9Sfp0AclyiGoKP9s5XfiL9yT7nv2UKkA1VxUQSJzGW1oW9MJcH3uFJ9oZWulYBcF7Fft/MAebcQ=="; + url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.10.tgz"; + sha512 = "9MttFxijiYbuuexzPTulhbWQ4+XjgxfpyKKrqNTL0TZV2Hx/Jh4Yk66Dhg9tMU3CdhLR5fx+3to4ibNxZufsRg=="; }; }; - "@forge/manifest-4.4.1" = { + "@forge/manifest-4.5.1" = { name = "_at_forge_slash_manifest"; packageName = "@forge/manifest"; - version = "4.4.1"; + version = "4.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.4.1.tgz"; - sha512 = "F7uLzYs+aMTHBGHJKoHaIPTeeGIpmOrnpoOKTLLLuzBNO16cXtEOo5veyNUelmQ3z1GuH1tKYOQdKc047o6M9Q=="; + url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.5.1.tgz"; + sha512 = "WwPUNzsWdUNqZiV8Ut9N1Z0qowhVUaCIfk3uoNothwOf5bt0KLsgRMLMs1p7h2+CMzeJMxHugQptej1lBsxMJw=="; }; }; - "@forge/storage-1.3.0" = { + "@forge/storage-1.3.1" = { name = "_at_forge_slash_storage"; packageName = "@forge/storage"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/storage/-/storage-1.3.0.tgz"; - sha512 = "Tje/X+KY8i/u624YoxiOY+zP5sQc6rqo+vXA//nmIFGx0yWlPhUNf6ft7fFJrFe2JGpqgtNgfo3AjspveyMkzg=="; + url = "https://registry.npmjs.org/@forge/storage/-/storage-1.3.1.tgz"; + sha512 = "BU1qU0R08FH68MynaF409sp6mt3Ps8+XxyMk4Lsh9PYwYxMOpz5ynczv/DY0331G2n0LMBS1nVsJ9q88PFxI/Q=="; }; }; "@forge/util-1.2.0" = { @@ -5341,31 +5341,31 @@ let sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="; }; }; - "@gitbeaker/core-35.7.0" = { + "@gitbeaker/core-35.8.0" = { name = "_at_gitbeaker_slash_core"; packageName = "@gitbeaker/core"; - version = "35.7.0"; + version = "35.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/core/-/core-35.7.0.tgz"; - sha512 = "1N9QcHElYa1NuLhX9mJJ6tnL7wbCsK8Naj2kLXwNC4qyEcDhMiJDnI3YoqNIXSzPTufoNUAbgIsc/h/JmO17/A=="; + url = "https://registry.npmjs.org/@gitbeaker/core/-/core-35.8.0.tgz"; + sha512 = "l/LgTmPFeUBnqyxU/VbFmqKsanCITBBMp7A0yXVbiTQCvNWSV6JJyUL3ILR3q825RRU/AzRm40FFli0AgBpXTw=="; }; }; - "@gitbeaker/node-35.7.0" = { + "@gitbeaker/node-35.8.0" = { name = "_at_gitbeaker_slash_node"; packageName = "@gitbeaker/node"; - version = "35.7.0"; + version = "35.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/node/-/node-35.7.0.tgz"; - sha512 = "zh215EUloAxj2gwTHevBVypEiiwQR0WsFLGPWJwY+yUFJVQRcya+3mcsDbxgCLAk00wwhrTVYyNppvmoYbEZNg=="; + url = "https://registry.npmjs.org/@gitbeaker/node/-/node-35.8.0.tgz"; + sha512 = "n8xbGemNs3aZb7gaYsEya0FKxemjyAJ4UyaF2MWM6mrj5rCnL3Y9Siko2rT/AuSJwjx82Z7BdKxV9QH/ihqjOQ=="; }; }; - "@gitbeaker/requester-utils-35.7.0" = { + "@gitbeaker/requester-utils-35.8.0" = { name = "_at_gitbeaker_slash_requester-utils"; packageName = "@gitbeaker/requester-utils"; - version = "35.7.0"; + version = "35.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-35.7.0.tgz"; - sha512 = "SDYKhL+XUrslpVwUumkCf4I4Ubf+lvzdghCYPwBt/og5kZIorFVbHCxRmtr5bO+iC9nrVNfg24sdoe51vDGn1w=="; + url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-35.8.0.tgz"; + sha512 = "d/cseQQUvj1V02jXo6HBpuMarf6e6GdrxEaiWrjAiS2nDEQFRGxDGtPHzqgU84aN11nEBFnFa0vaSMqcZG/+9w=="; }; }; "@google-cloud/paginator-4.0.1" = { @@ -5422,13 +5422,13 @@ let sha512 = "/LDNozZ+6qTS0yqMXo/ki6yJqTVx2s6ncOM/m/t4PjqeXrN8ejTwoiNDoDVZq18bsHjZBPP4o03M2goFYWJCHA=="; }; }; - "@grammyjs/types-2.10.0" = { + "@grammyjs/types-2.10.2" = { name = "_at_grammyjs_slash_types"; packageName = "@grammyjs/types"; - version = "2.10.0"; + version = "2.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.10.0.tgz"; - sha512 = "3w5z6UUgbFldLa1N5GP09BTiFZLDNaq2xFxPVtKeaIuKg2WY7mDDgraDE2CfSxl79RnNWMp4WNKX21E9Z6mtMg=="; + url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.10.2.tgz"; + sha512 = "YhOQEkl4KwZvHH2BSvSkN27R5s5MGVLnK8W3bh8h3OMwA1ZlrqNPsnTyvenrmv6sKk62CZlDlFJpPb3MFUWXUA=="; }; }; "@graphql-cli/common-4.1.0" = { @@ -5458,13 +5458,13 @@ let sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; }; }; - "@graphql-tools/batch-execute-8.5.10" = { + "@graphql-tools/batch-execute-8.5.12" = { name = "_at_graphql-tools_slash_batch-execute"; packageName = "@graphql-tools/batch-execute"; - version = "8.5.10"; + version = "8.5.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.10.tgz"; - sha512 = "f3b/UPvscQ4NaSmSQIeZPNFhpZ9xb3AftKKSn9NzsUp3vxz0d8tymBVn28f51oqiqN9BMDpCH9P8TZrKpH1//Q=="; + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.12.tgz"; + sha512 = "eNdN5CirW3ILoBaVyy4GI6JpLoJELeH0A7+uLRjwZuMFxpe4cljSrY8P+id28m43+uvBzB3rvNTv0+mnRjrMRw=="; }; }; "@graphql-tools/delegate-7.1.5" = { @@ -5476,22 +5476,49 @@ let sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; }; }; - "@graphql-tools/delegate-9.0.14" = { + "@graphql-tools/delegate-9.0.17" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "9.0.14"; + version = "9.0.17"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.14.tgz"; - sha512 = "yKwNQl10fOdKxSk5yBoKnSjq1oumf4QYVinV9niD9KVow6j0dONtaiAYvhzaQwN/Xwwi7oADFACmKRtphlhFTw=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.17.tgz"; + sha512 = "y7h5H+hOhQWEkG67A4wurlphHMYJuMlQIEY7wZPVpmViuV6TuSPB7qkLITsM99XiNQhX+v1VayN2cuaP/8nIhw=="; }; }; - "@graphql-tools/executor-0.0.6" = { + "@graphql-tools/executor-0.0.9" = { name = "_at_graphql-tools_slash_executor"; packageName = "@graphql-tools/executor"; - version = "0.0.6"; + version = "0.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.6.tgz"; - sha512 = "2KIj1grRb1Lni97xgX1ryekcjU/WTMC1ZdPpnd0nYrBWs/C4Nv4UMNP7E/Tr8za8zlrsESvEUbpLHsBRiQsGxA=="; + url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.9.tgz"; + sha512 = "qLhQWXTxTS6gbL9INAQa4FJIqTd2tccnbs4HswOx35KnyLaLtREuQ8uTfU+5qMrRIBhuzpGdkP2ssqxLyOJ5rA=="; + }; + }; + "@graphql-tools/executor-graphql-ws-0.0.3" = { + name = "_at_graphql-tools_slash_executor-graphql-ws"; + packageName = "@graphql-tools/executor-graphql-ws"; + version = "0.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.3.tgz"; + sha512 = "8VATDf82lTaYRE4/BrFm8v6Cz6UHoNTlSkQjPcGtDX4nxbBUYLDfN+Z8ZXl0eZc3tCwsIHkYQunJO0OjmcrP5Q=="; + }; + }; + "@graphql-tools/executor-http-0.0.4" = { + name = "_at_graphql-tools_slash_executor-http"; + packageName = "@graphql-tools/executor-http"; + version = "0.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.0.4.tgz"; + sha512 = "m7UwOhzIXLXXisxOD8x+niN3ae38A8bte47eBBfzr8eTrjsSEEQRbwsc6ciUmoys/5iQabnbtJN10rNIaZaU8w=="; + }; + }; + "@graphql-tools/executor-legacy-ws-0.0.3" = { + name = "_at_graphql-tools_slash_executor-legacy-ws"; + packageName = "@graphql-tools/executor-legacy-ws"; + version = "0.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.3.tgz"; + sha512 = "ulQ3IsxQ9VRA2S+afJefFpMZHedoUDRd8ylz+9DjqAoykYz6CDD2s3pi6Fud52VCq3DP79dRM7a6hjWgt+YPWw=="; }; }; "@graphql-tools/graphql-file-loader-6.2.7" = { @@ -5503,22 +5530,22 @@ let sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; }; }; - "@graphql-tools/graphql-file-loader-7.5.9" = { + "@graphql-tools/graphql-file-loader-7.5.11" = { name = "_at_graphql-tools_slash_graphql-file-loader"; packageName = "@graphql-tools/graphql-file-loader"; - version = "7.5.9"; + version = "7.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.9.tgz"; - sha512 = "hEvWFLOG8JGsguWWdHqaFvj0xqwQu4KhqAKEjmIBq4vipVKLcmcjvOM56S0fv/dtn5pcKp9ZOZAxgncYVJ1hzw=="; + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.11.tgz"; + sha512 = "E4/YYLlM/T/VDYJ3MfQzJSkCpnHck+xMv2R6QTjO3khUeTCWJY4qsLDPFjAWE0+Mbe9NanXi/yL8Bz0yS/usDw=="; }; }; - "@graphql-tools/import-6.7.10" = { + "@graphql-tools/import-6.7.12" = { name = "_at_graphql-tools_slash_import"; packageName = "@graphql-tools/import"; - version = "6.7.10"; + version = "6.7.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.10.tgz"; - sha512 = "6L19Ep0pP5wWywq9/jwCt2FdCJnEnyrxkmRkSRdYoTEmOFz5xrsfhyUfWl8ibx34gWzVYhCDOX1bN43zsLCbDA=="; + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.12.tgz"; + sha512 = "3+IV3RHqnpQz0o+0Liw3jkr0HL8LppvsFROKdfXihbnCGO7cIq4S9QYdczZ2DAJ7AosyzSu8m36X5dEmOYY6WA=="; }; }; "@graphql-tools/json-file-loader-6.2.6" = { @@ -5530,13 +5557,13 @@ let sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; }; }; - "@graphql-tools/json-file-loader-7.4.10" = { + "@graphql-tools/json-file-loader-7.4.12" = { name = "_at_graphql-tools_slash_json-file-loader"; packageName = "@graphql-tools/json-file-loader"; - version = "7.4.10"; + version = "7.4.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.10.tgz"; - sha512 = "/njUvIW/zdSr70eWDfDQNDXp2UQLe+YKFRLMZkpuISrw5cdvGaMepwpr0Yz6kFnHGwB6wSYLH25LkRAzpiKz+g=="; + url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.12.tgz"; + sha512 = "KuOBJg9ZVrgDsYUaolSXJI90HpwkNiPJviWSc5aqNYSkE+C9DwelBOaKBVQNk1ecEnktqx6Nd+KVsF3m+dupRQ=="; }; }; "@graphql-tools/load-6.2.4" = { @@ -5548,13 +5575,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/load-7.8.4" = { + "@graphql-tools/load-7.8.6" = { name = "_at_graphql-tools_slash_load"; packageName = "@graphql-tools/load"; - version = "7.8.4"; + version = "7.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.4.tgz"; - sha512 = "swS3sJx/gVpSw1CfI18zSwLlTFbN6PVlkfaLZJ8VN3d/3C+ESff553LLleXGgzOY9X0H1x3VHZeAR2+HUCrbbw=="; + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.6.tgz"; + sha512 = "yFDM5hVhV0eOom3SGyc+mjL8FvEb+0PZTZ/OSc4zrs3m/ABiQFHm2ilhzNS+OsMCpOsfGl2kXguEdt86QPp60Q=="; }; }; "@graphql-tools/merge-6.2.17" = { @@ -5575,22 +5602,22 @@ let sha512 = "BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg=="; }; }; - "@graphql-tools/merge-8.3.10" = { + "@graphql-tools/merge-8.3.12" = { name = "_at_graphql-tools_slash_merge"; packageName = "@graphql-tools/merge"; - version = "8.3.10"; + version = "8.3.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.10.tgz"; - sha512 = "/hSg69JwqEA+t01wQmMGKPuaJ9VJBSz6uAXhbNNrTBJu8bmXljw305NVXM49pCwDKFVUGtbTqYrBeLcfT3RoYw=="; + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.12.tgz"; + sha512 = "BFL8r4+FrqecPnIW0H8UJCBRQ4Y8Ep60aujw9c/sQuFmQTiqgWgpphswMGfaosP2zUinDE3ojU5wwcS2IJnumA=="; }; }; - "@graphql-tools/mock-8.7.10" = { + "@graphql-tools/mock-8.7.12" = { name = "_at_graphql-tools_slash_mock"; packageName = "@graphql-tools/mock"; - version = "8.7.10"; + version = "8.7.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.10.tgz"; - sha512 = "PuRGfk6TQger7EfE08yO3+QCAcZ6nYo3kyoEmTPc27w4yiqKCwZIyD8vegzl/EQphEourjaOhO149te6qNEUeQ=="; + url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.12.tgz"; + sha512 = "bEjj52T5idjzqFXfDZPFfPZDPFEjVmayYA6RYqMxM3Qdv5JJ8pSMEGDBcXhinbQudPKdRkLmR17usNmRMpUQEg=="; }; }; "@graphql-tools/schema-7.1.5" = { @@ -5611,13 +5638,13 @@ let sha512 = "0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg=="; }; }; - "@graphql-tools/schema-9.0.8" = { + "@graphql-tools/schema-9.0.10" = { name = "_at_graphql-tools_slash_schema"; packageName = "@graphql-tools/schema"; - version = "9.0.8"; + version = "9.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.8.tgz"; - sha512 = "PnES7sNkhQ/FdPQhP7cup0OIzwzQh+nfjklilU7YJzE209ACIyEQtxoNCfvPW5eV6hc9bWsBQeI3Jm4mMtwxNA=="; + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.10.tgz"; + sha512 = "lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ=="; }; }; "@graphql-tools/url-loader-6.10.1" = { @@ -5629,13 +5656,13 @@ let sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; }; }; - "@graphql-tools/url-loader-7.16.11" = { + "@graphql-tools/url-loader-7.16.22" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "7.16.11"; + version = "7.16.22"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.11.tgz"; - sha512 = "krovI7b+1NNtHe7cOMUQCp3Ib/rt70ru5fXMe2v16Rran2mPedMn8eq2V7K2jKnBKteMX4cjuxHdrpBJ7wGh8A=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.22.tgz"; + sha512 = "JA0+7w2eidPmsVFRFgzZQ+RQKiS9WE0T5R/wKudxLdC8NnCKdEw0hdA7wKmhhIXNhOs5UtWGfwQ1O2CrvStxWw=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -5683,13 +5710,13 @@ let sha512 = "pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg=="; }; }; - "@graphql-tools/utils-9.0.1" = { + "@graphql-tools/utils-9.1.1" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "9.0.1"; + version = "9.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.0.1.tgz"; - sha512 = "z6FimVa5E44bHKmqK0/uMp9hHvHo2Tkt9A5rlLb40ReD/8IFKehSXLzM4b2N1vcP7mSsbXIdDK9Aoc8jT/he1Q=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.1.tgz"; + sha512 = "DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w=="; }; }; "@graphql-tools/wrap-7.0.8" = { @@ -5701,13 +5728,13 @@ let sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; }; }; - "@graphql-tools/wrap-9.2.10" = { + "@graphql-tools/wrap-9.2.18" = { name = "_at_graphql-tools_slash_wrap"; packageName = "@graphql-tools/wrap"; - version = "9.2.10"; + version = "9.2.18"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.10.tgz"; - sha512 = "K21XFLxcZ6JJGRzmzylY/HvoQ6eJU0o6J8ZLR828M/HVGKQgbK7qhn+AZrZKqBjFeZfBQojx8SzWDJPUmv8oEw=="; + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.18.tgz"; + sha512 = "ocdwRM2lDjqXiu/1tpvegmxumYuwHZVLLnzLFuch5i5S10y+EmTqcfgalG/2CbMrPV6BS9t4R7/w6p6+ZbppVg=="; }; }; "@graphql-typed-document-node/core-3.1.1" = { @@ -5746,15 +5773,6 @@ let sha512 = "wvKxal+40Xx11DXO2q5PfY3UiE25iwTb8SOz6A9IJII/V7d19x2ex0he+GJfVW0JZCaBjCPSjUB0yU9Ecm4WCw=="; }; }; - "@grpc/grpc-js-1.7.2" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.7.2.tgz"; - sha512 = "MqqbVynbe3VUSnApFW/dpkDaa9T1ASqRnMWeSPGFO/Ro98R7XUDLacfeBa7RaSI1iFu9GYk5gBKARf0zipFe4w=="; - }; - }; "@grpc/grpc-js-1.7.3" = { name = "_at_grpc_slash_grpc-js"; packageName = "@grpc/grpc-js"; @@ -5872,13 +5890,13 @@ let sha512 = "foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="; }; }; - "@heroku-cli/color-1.1.14" = { + "@heroku-cli/color-1.1.15" = { name = "_at_heroku-cli_slash_color"; packageName = "@heroku-cli/color"; - version = "1.1.14"; + version = "1.1.15"; src = fetchurl { - url = "https://registry.npmjs.org/@heroku-cli/color/-/color-1.1.14.tgz"; - sha512 = "2JYy//YE2YINTe21hpdVMBNc7aYFkgDeY9JUz/BCjFZmYLn0UjGaCc4BpTcMGXNJwuqoUenw2WGOFGHsJqlIDw=="; + url = "https://registry.npmjs.org/@heroku-cli/color/-/color-1.1.15.tgz"; + sha512 = "eUjF6KD36iQm+32mMVExWosmLQsimtWIe6xdKFGpxGTTEM1SPd4ut+dsWVax38WRumezRsQpV0GADYUxuPewwQ=="; }; }; "@homebridge/ciao-1.1.5" = { @@ -5908,15 +5926,6 @@ let sha512 = "A0NOZI+Glp3Xgcz6Na7i7o09+/+xm2m0UCU8gdtM2nIv6/cjLmhMZMqehSpTlgbx9omtLmV8LVqOskPEyWnmZQ=="; }; }; - "@humanwhocodes/config-array-0.10.7" = { - name = "_at_humanwhocodes_slash_config-array"; - packageName = "@humanwhocodes/config-array"; - version = "0.10.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz"; - sha512 = "MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w=="; - }; - }; "@humanwhocodes/config-array-0.11.7" = { name = "_at_humanwhocodes_slash_config-array"; packageName = "@humanwhocodes/config-array"; @@ -5998,15 +6007,6 @@ let sha512 = "TvRRRd//a3q+JhpSh5PaHJfnP4oLM/0eZikyDh2Z+eaJpIZP+vZwdlpPd10neTsPq1zfJX8weRjYLFHNpoMZVg=="; }; }; - "@hypnosphi/create-react-context-0.3.1" = { - name = "_at_hypnosphi_slash_create-react-context"; - packageName = "@hypnosphi/create-react-context"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz"; - sha512 = "V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A=="; - }; - }; "@iarna/toml-2.2.5" = { name = "_at_iarna_slash_toml"; packageName = "@iarna/toml"; @@ -6412,40 +6412,31 @@ let sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg=="; }; }; - "@jsii/check-node-1.70.0" = { + "@jsii/check-node-1.71.0" = { name = "_at_jsii_slash_check-node"; packageName = "@jsii/check-node"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.70.0.tgz"; - sha512 = "lebc8VgekEEStNn1K/khkRzs41sjC88tBE0xEkjDpsFNBMXNuek8I9dkaFbjQ9c+P0TsOa17JJUMLxjgCtjW5A=="; + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.71.0.tgz"; + sha512 = "O4jN/3QhbUdzKVzyiP3P4X5CTPK1+g0+hSTnBSaHpi7F4T1klK+oUF9JBmhFdUtwVJE9bZuySnXkms2f/P0fsw=="; }; }; - "@jsii/spec-1.70.0" = { + "@jsii/spec-1.71.0" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.70.0.tgz"; - sha512 = "2l09VaZvT8OLRMwtVm+JxzrzpO6+eR4Scn9B8+zvE9NptX5jN+X68V0VngDuWTJqHs7ntbYCmHQDWuLm0bPr1A=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.71.0.tgz"; + sha512 = "qNwCoc1kMTVmjdQ6No8LG3OXAgoySd6CmFGHtRsE1Pc3sd7satYicivhUTtZQsNykf17TCcJLNEQ4aW6/lyF+g=="; }; }; - "@juggle/resize-observer-3.4.0" = { - name = "_at_juggle_slash_resize-observer"; - packageName = "@juggle/resize-observer"; - version = "3.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz"; - sha512 = "dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA=="; - }; - }; - "@koa/multer-3.0.0" = { + "@koa/multer-3.0.2" = { name = "_at_koa_slash_multer"; packageName = "@koa/multer"; - version = "3.0.0"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@koa/multer/-/multer-3.0.0.tgz"; - sha512 = "y+OQBmex5D1jIl723gAEUYcAWPEicIXppaAKw/zCMfpllQ08ZNweDPwoCLxEoatqd5pCu2XG6V8dl67JRq3RJw=="; + url = "https://registry.npmjs.org/@koa/multer/-/multer-3.0.2.tgz"; + sha512 = "Q6WfPpE06mJWyZD1fzxM6zWywaoo+zocAn2YA9QYz4RsecoASr1h/kSzG0c5seDpFVKCMZM9raEfuM7XfqbRLw=="; }; }; "@koa/router-10.1.1" = { @@ -6493,13 +6484,13 @@ let sha512 = "4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA=="; }; }; - "@ledgerhq/devices-7.0.3" = { + "@ledgerhq/devices-7.0.5" = { name = "_at_ledgerhq_slash_devices"; packageName = "@ledgerhq/devices"; - version = "7.0.3"; + version = "7.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.3.tgz"; - sha512 = "URlcgq6yKklWxj35nIu/eTF0UpGLGUOp69xp8uHeyoMK2wqVC0GNGeD2MvKyJ+ul83edqMEI98GycA98Y7trsg=="; + url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.5.tgz"; + sha512 = "2o2zD2Yv1Hgd3+R2aLCvlyT7NxBz2nltawTCPSXaf3+8MDIyZbiJlXi43hLEISRFBG3u3bYwAQuiOisimN9C6Q=="; }; }; "@ledgerhq/errors-5.50.0" = { @@ -6511,13 +6502,13 @@ let sha512 = "gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow=="; }; }; - "@ledgerhq/errors-6.11.1" = { + "@ledgerhq/errors-6.12.1" = { name = "_at_ledgerhq_slash_errors"; packageName = "@ledgerhq/errors"; - version = "6.11.1"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.11.1.tgz"; - sha512 = "HT1PFvNrejcN5z3ba6xikacIdHWMkjBeE9U5FFoGHhaKBKGjC74mnCeEo0/oJunyuVId+9mhGnv6lrBl6Mkqdg=="; + url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.12.1.tgz"; + sha512 = "2qeUSUCpQbMhV9eLJDLI8wycFwTcWszP8g3cJycBt9Jf1VczC5MRERwAQv5AYhPa4rcy+jLKBOVZYxc35r5l7g=="; }; }; "@ledgerhq/hw-transport-5.51.1" = { @@ -6529,31 +6520,31 @@ let sha512 = "6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw=="; }; }; - "@ledgerhq/hw-transport-6.27.6" = { + "@ledgerhq/hw-transport-6.27.8" = { name = "_at_ledgerhq_slash_hw-transport"; packageName = "@ledgerhq/hw-transport"; - version = "6.27.6"; + version = "6.27.8"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.6.tgz"; - sha512 = "DRGUsB8WfbeEPuU42nAtwYpA5D6Bq3q1CvC2VjDinkukLcf6XMc22YUJl9mxt+h+/cLTU1Ff/pz+fqYqeELLEA=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.8.tgz"; + sha512 = "WSUgF1W3tAikSnAfeNAT2e2dgTdEQd5Vi/095C2mR5Fr0/POCSl9X4T9rlBhK5NSVD+nGXI0rN2ISj08zai8HQ=="; }; }; - "@ledgerhq/hw-transport-node-hid-6.27.6" = { + "@ledgerhq/hw-transport-node-hid-6.27.8" = { name = "_at_ledgerhq_slash_hw-transport-node-hid"; packageName = "@ledgerhq/hw-transport-node-hid"; - version = "6.27.6"; + version = "6.27.8"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.6.tgz"; - sha512 = "ZQGKTydb3niMfGBrhbYR7zDiykOadiXRj05qfrjkCvvLXEq3KkUy8WnhfoSQEgaQpOx+i4SUJwzzfAih5eP3GA=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.8.tgz"; + sha512 = "l0YNHf4aNk5ReMbPZY2afxtZnxNdnm+TSMpbTgSVPTA/2k5aQr0RY8MLrRbgBdUNK8yS+SeVBzMJrnAe6q3nSg=="; }; }; - "@ledgerhq/hw-transport-node-hid-noevents-6.27.6" = { + "@ledgerhq/hw-transport-node-hid-noevents-6.27.8" = { name = "_at_ledgerhq_slash_hw-transport-node-hid-noevents"; packageName = "@ledgerhq/hw-transport-node-hid-noevents"; - version = "6.27.6"; + version = "6.27.8"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.6.tgz"; - sha512 = "9WvUBUhk0eRSZjXgEsdNVGkxHuDLoh6fR1PJIeXKHgC8dzTREYrGKytx8ECqO5OPotXeAZURC3yB00XZrKIupw=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.8.tgz"; + sha512 = "z5OP8ehnewN2EfoC+7q2jdfLl/j+5R23Rzj4Q0E1E2IYskJw7sJJisUOPtU1qfhsG7iJLdOxNXYjw6eb4ZlotQ=="; }; }; "@ledgerhq/hw-transport-u2f-5.36.0-deprecated" = { @@ -6610,544 +6601,544 @@ let sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; }; }; - "@lerna/add-6.0.1" = { + "@lerna/add-6.1.0" = { name = "_at_lerna_slash_add"; packageName = "@lerna/add"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/add/-/add-6.0.1.tgz"; - sha512 = "cCQIlMODhi3KYyTDOp2WWL4Kj2dKK+MmCiaSf+USrbSWPVVXQGn5Eb11XOMUfYYq3Ula75sWL2urtYwuu8IbmA=="; + url = "https://registry.npmjs.org/@lerna/add/-/add-6.1.0.tgz"; + sha512 = "f2cAeS1mE/p7QvSRn5TCgdUXw6QVbu8PeRxaTOxTThhTdJIWdXZfY00QjAsU6jw1PdYXK1qGUSwWOPkdR16mBg=="; }; }; - "@lerna/bootstrap-6.0.1" = { + "@lerna/bootstrap-6.1.0" = { name = "_at_lerna_slash_bootstrap"; packageName = "@lerna/bootstrap"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-6.0.1.tgz"; - sha512 = "a3DWchHFOiRmDN24VTdmTxKvAqw6Msp8pDCWXq4rgOQSFxqyYECd8BYvmy8dTW6LcC4EG0HqTGRguuEaKCasOw=="; + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-6.1.0.tgz"; + sha512 = "aDxKqgxexVj/Z0B1aPu7P1iPbPqhk1FPkl/iayCmPlkAh90pYEH0uVytGzi1hFB5iXEfG7Pa6azGQywUodx/1g=="; }; }; - "@lerna/changed-6.0.1" = { + "@lerna/changed-6.1.0" = { name = "_at_lerna_slash_changed"; packageName = "@lerna/changed"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/changed/-/changed-6.0.1.tgz"; - sha512 = "b0KzqpNv25ZxH9M/7jtDQaXWUBhVzBVJ8DQ4PjjeoulOCQ+mA9tNQr8UVmeU1UZiaNtNz6Hcy55vyvVvNe07VA=="; + url = "https://registry.npmjs.org/@lerna/changed/-/changed-6.1.0.tgz"; + sha512 = "p7C2tf1scmvoUC1Osck/XIKVKXAQ8m8neL8/rfgKSYsvUVjsOB1LbF5HH1VUZntE6S4OxkRxUQGkAHVf5xrGqw=="; }; }; - "@lerna/check-working-tree-6.0.1" = { + "@lerna/check-working-tree-6.1.0" = { name = "_at_lerna_slash_check-working-tree"; packageName = "@lerna/check-working-tree"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-6.0.1.tgz"; - sha512 = "9Ti1EuE3IiJUvvAtFk+Xr9Uw6KehT78ghnI4f/hi4uew5q0Mf2+DMaBNexbhOTpRFBeIq4ucDFhiN091pNkUNw=="; + url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-6.1.0.tgz"; + sha512 = "hSciDmRqsNPevMhAD+SYbnhjatdb7UUu9W8vTyGtUXkrq2xtRZU0vAOgqovV8meirRkbC41pZePYKqyQtF0y3w=="; }; }; - "@lerna/child-process-6.0.1" = { + "@lerna/child-process-6.1.0" = { name = "_at_lerna_slash_child-process"; packageName = "@lerna/child-process"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-6.0.1.tgz"; - sha512 = "5smM8Or/RQkHysNFrUYdrCYlhpr3buNpCYU7T2DPYzOWRPm+X5rCvt/dDOcS3UgYT2jEyS86S5Y7pK2X7eXtmg=="; + url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-6.1.0.tgz"; + sha512 = "jhr3sCFeps6Y15SCrWEPvqE64i+QLOTSh+OzxlziCBf7ZEUu7sF0yA4n5bAqw8j43yCKhhjkf/ZLYxZe+pnl3Q=="; }; }; - "@lerna/clean-6.0.1" = { + "@lerna/clean-6.1.0" = { name = "_at_lerna_slash_clean"; packageName = "@lerna/clean"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/clean/-/clean-6.0.1.tgz"; - sha512 = "ZaWPzzYNkJM7Ib2GWPLSELVBf5nRCGOGBtR9DSLKAore0Me876JLgi4h2R+Y2PVyCvT1kmoQKAclnjxdZbCONA=="; + url = "https://registry.npmjs.org/@lerna/clean/-/clean-6.1.0.tgz"; + sha512 = "LRK2hiNUiBhPe5tmJiefOVpkaX2Yob0rp15IFNIbuteRWUJg0oERFQo62WvnxwElfzKSOhr8OGuEq/vN4bMrRA=="; }; }; - "@lerna/cli-6.0.1" = { + "@lerna/cli-6.1.0" = { name = "_at_lerna_slash_cli"; packageName = "@lerna/cli"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/cli/-/cli-6.0.1.tgz"; - sha512 = "AuAnUXkBGdts/rmHltrkZucYy11OwYPb/4HM3zxLeq4O30w2ocZIytkOtSkuVKOMPWBZR8b37fNuZBzvxe5OmA=="; + url = "https://registry.npmjs.org/@lerna/cli/-/cli-6.1.0.tgz"; + sha512 = "p4G/OSPIrHiNkEl8bXrQdFOh4ORAZp2+ljvbXmAxpdf2qmopaUdr+bZYtIAxd+Z42SxRnDNz9IEyR0kOsARRQQ=="; }; }; - "@lerna/collect-uncommitted-6.0.1" = { + "@lerna/collect-uncommitted-6.1.0" = { name = "_at_lerna_slash_collect-uncommitted"; packageName = "@lerna/collect-uncommitted"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-6.0.1.tgz"; - sha512 = "qPqwmIlSlf8XBJnqMc+6pz6qXQ0Pfjil70FB2IPvoWbfrLvMI6K3I/AXeub9X5fj5HYqNs1XtwhWHJcMFpJddw=="; + url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-6.1.0.tgz"; + sha512 = "VvWvqDZG+OiF4PwV4Ro695r3+8ty4w+11Bnq8tbsbu5gq8qZiam8Fkc/TQLuNNqP0SPi4qmMPaIzWvSze3SmDg=="; }; }; - "@lerna/collect-updates-6.0.1" = { + "@lerna/collect-updates-6.1.0" = { name = "_at_lerna_slash_collect-updates"; packageName = "@lerna/collect-updates"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-6.0.1.tgz"; - sha512 = "OwRcLqD1N5znlZM/Ctf031RDkodHVO62byiD35AbHGoGM2EI2TSYyIbqnJ8QsQJMB05/KhIBndL8Mpcdle7/rg=="; + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-6.1.0.tgz"; + sha512 = "dgH7kgstwCXFctylQ4cxuCmhwSIE6VJZfHdh2bOaLuncs6ATMErKWN/mVuFHuUWEqPDRyy5Ky40Cu9S40nUq5w=="; }; }; - "@lerna/command-6.0.1" = { + "@lerna/command-6.1.0" = { name = "_at_lerna_slash_command"; packageName = "@lerna/command"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/command/-/command-6.0.1.tgz"; - sha512 = "V9w8M7pMU7KztxaL0+fetTSQYTa12bhTl86ll9VjlgYZ5qUAXk9E42Y8hbVThyYtHEhkRnIMinkWsmH/9YKU/A=="; + url = "https://registry.npmjs.org/@lerna/command/-/command-6.1.0.tgz"; + sha512 = "OnMqBDaEBY0C8v9CXIWFbGGKgsiUtZrnKVvQRbupMSZDKMpVGWIUd3X98Is9j9MAmk1ynhBMWE9Fwai5ML/mcA=="; }; }; - "@lerna/conventional-commits-6.0.1" = { + "@lerna/conventional-commits-6.1.0" = { name = "_at_lerna_slash_conventional-commits"; packageName = "@lerna/conventional-commits"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-6.0.1.tgz"; - sha512 = "6oIGEZKy1GpooW28C0aEDkZ/rVkqpX44knP8Jyb5//1054QogqPhGC5q6J0lZxyhun8dQkpF6XTHlIintI8xow=="; + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-6.1.0.tgz"; + sha512 = "Tipo3cVr8mNVca4btzrCIzct59ZJWERT8/ZCZ/TQWuI4huUJZs6LRofLtB0xsGJAVZ7Vz2WRXAeH4XYgeUxutQ=="; }; }; - "@lerna/create-6.0.1" = { + "@lerna/create-6.1.0" = { name = "_at_lerna_slash_create"; packageName = "@lerna/create"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create/-/create-6.0.1.tgz"; - sha512 = "VuTdvBJDzvAaMBYoKTRMBQC+nfwnihxdA/ekUqBD+W8MMsqPLCGCneyl7JK9RaSSib/10LyRDEmfo79UAndcgQ=="; + url = "https://registry.npmjs.org/@lerna/create/-/create-6.1.0.tgz"; + sha512 = "ZqlknXu0L29cV5mcfNgBLl+1RbKTWmNk8mj545zgXc7qQDgmrY+EVvrs8Cirey8C7bBpVkzP7Brzze0MSoB4rQ=="; }; }; - "@lerna/create-symlink-6.0.1" = { + "@lerna/create-symlink-6.1.0" = { name = "_at_lerna_slash_create-symlink"; packageName = "@lerna/create-symlink"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-6.0.1.tgz"; - sha512 = "ZmLx9SP5De6u1xkD7Z6gMMFuyLKCb+2bodreFe7ryOVP3cOLbmNOmgMgj+gtUgIwIv7BDwX3qFWlPY6B3VW3hQ=="; + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-6.1.0.tgz"; + sha512 = "ulMa5OUJEwEWBHSgCUNGxrcsJllq1YMYWqhufvIigmMPJ0Zv3TV1Hha5i2MsqLJAakxtW0pNuwdutkUTtUdgxQ=="; }; }; - "@lerna/describe-ref-6.0.1" = { + "@lerna/describe-ref-6.1.0" = { name = "_at_lerna_slash_describe-ref"; packageName = "@lerna/describe-ref"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-6.0.1.tgz"; - sha512 = "PcTVt4qgAXUPBtWHyqixtwE/eXe56+DFRnfTcJlb4x5F7LJ+7VNpdR/81qfP89Xj10U5IjELXbXmriz1KMwhfw=="; + url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-6.1.0.tgz"; + sha512 = "0RQAYnxBaMz1SrEb/rhfR+8VeZx5tvCNYKRee5oXIDZdQ2c6/EPyrKCp3WcqiuOWY50SfGOVfxJEcxpK8Y3FNA=="; }; }; - "@lerna/diff-6.0.1" = { + "@lerna/diff-6.1.0" = { name = "_at_lerna_slash_diff"; packageName = "@lerna/diff"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/diff/-/diff-6.0.1.tgz"; - sha512 = "/pGXH9txA8wX1YJ/KOBXzx0Z2opADBW4HKPCxxHAu+6dTGMbKABDljVT5Np3UpfIrAGDE5fTuf0aGL4vkKUWrg=="; + url = "https://registry.npmjs.org/@lerna/diff/-/diff-6.1.0.tgz"; + sha512 = "GhP+jPDbcp9QcAMSAjFn4lzM8MKpLR1yt5jll+zUD831U1sL0I5t8HUosFroe5MoRNffEL/jHuI3SbC3jjqWjQ=="; }; }; - "@lerna/exec-6.0.1" = { + "@lerna/exec-6.1.0" = { name = "_at_lerna_slash_exec"; packageName = "@lerna/exec"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/exec/-/exec-6.0.1.tgz"; - sha512 = "x9puoI3091Alp45w7XOGRxThOw45p+tWGPR5TBCEQiiH7f8eF9Dc4WX5HXf31ooK6NmD40eKPYhBgy8oQnJY9w=="; + url = "https://registry.npmjs.org/@lerna/exec/-/exec-6.1.0.tgz"; + sha512 = "Ej6WlPHXLF6hZHsfD+J/dxeuTrnc0HIfIXR1DU//msHW5RNCdi9+I7StwreCAQH/dLEsdBjPg5chNmuj2JLQRg=="; }; }; - "@lerna/filter-options-6.0.1" = { + "@lerna/filter-options-6.1.0" = { name = "_at_lerna_slash_filter-options"; packageName = "@lerna/filter-options"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-6.0.1.tgz"; - sha512 = "6KxbBI/2skRl/yQdjugQ1PWrSLq19650z8mltF0HT7B686fj7LlDNtESFOtY6iZ8IPqKBkIavOP0DPmJZd7Szw=="; + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-6.1.0.tgz"; + sha512 = "kPf92Z7uLsR6MUiXnyXWebaUWArLa15wLfpfTwIp5H3MNk1lTbuG7QnrxE7OxQj+ozFmBvXeV9fuwfLsYTfmOw=="; }; }; - "@lerna/filter-packages-6.0.1" = { + "@lerna/filter-packages-6.1.0" = { name = "_at_lerna_slash_filter-packages"; packageName = "@lerna/filter-packages"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-6.0.1.tgz"; - sha512 = "2bKhexeF07Urs2b0xYX2OgYUN0EzmS2FSgvw0KT6He48PGOkqgJjU7PIiWdPyOvZdukwm07qXTmJZulAHftceA=="; + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-6.1.0.tgz"; + sha512 = "zW2avsZHs/ITE/37AEMhegGVHjiD0rgNk9bguNDfz6zaPa90UaW6PWDH6Tf4ThPRlbkl2Go48N3bFYHYSJKbcw=="; }; }; - "@lerna/get-npm-exec-opts-6.0.1" = { + "@lerna/get-npm-exec-opts-6.1.0" = { name = "_at_lerna_slash_get-npm-exec-opts"; packageName = "@lerna/get-npm-exec-opts"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.0.1.tgz"; - sha512 = "y2T+ODP8HNzHQn1ldrrPW+n823fGsN2sY0r78yURFxYZnxA9ZINyQ6IAejo5LqHrYN8Qhr++0RHo2tUisIHdKg=="; + url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.1.0.tgz"; + sha512 = "10Pdf+W0z7RT34o0SWlf+WVzz2/WbnTIJ1tQqXvXx6soj2L/xGLhOPvhJiKNtl4WlvUiO/zQ91yb83ESP4TZaA=="; }; }; - "@lerna/get-packed-6.0.1" = { + "@lerna/get-packed-6.1.0" = { name = "_at_lerna_slash_get-packed"; packageName = "@lerna/get-packed"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-6.0.1.tgz"; - sha512 = "Z/5J5vbjdeGqZcPvUSiszvyizHdsTRiFlpPORWK3YfIsHllUB7QZnVHLg92UnSJrpPE0O1gH+k6ByhhR+3qEdA=="; + url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-6.1.0.tgz"; + sha512 = "lg0wPpV0wPekcD0mebJp619hMxsOgbZDOH5AkL/bCR217391eha0iPhQ0dU/G0Smd2vv6Cg443+J5QdI4LGRTg=="; }; }; - "@lerna/github-client-6.0.1" = { + "@lerna/github-client-6.1.0" = { name = "_at_lerna_slash_github-client"; packageName = "@lerna/github-client"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-6.0.1.tgz"; - sha512 = "UA7V3XUunJnrfCL2eyW9QsCjBWShv4dCRGUITXmpQJrNIMZIqVbBJzqN9LVHDNc/hEVZGt0EjtHWdpFCgD4ypg=="; + url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-6.1.0.tgz"; + sha512 = "+/4PtDgsjt0VRRZtOCN2Piyu0asU/16gSZZy/opVb8dlT44lTrH/ZghrJLE4tSL8Nuv688kx0kSgbUG8BY54jQ=="; }; }; - "@lerna/gitlab-client-6.0.1" = { + "@lerna/gitlab-client-6.1.0" = { name = "_at_lerna_slash_gitlab-client"; packageName = "@lerna/gitlab-client"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-6.0.1.tgz"; - sha512 = "yyaBKf/OqBAau6xDk1tnMjfkxRpC/j3OwUyXFFGfJFSulWRHpbHoFSfvIgOn/hkjAr9FfHC7TXItRg8qdm38Wg=="; + url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-6.1.0.tgz"; + sha512 = "fUI/ppXzxJafN9ceSl+FDgsYvu3iTsO6UW0WTD63pS32CfM+PiCryLQHzuc4RkyVW8WQH3aCR/GbaKCqbu52bw=="; }; }; - "@lerna/global-options-6.0.1" = { + "@lerna/global-options-6.1.0" = { name = "_at_lerna_slash_global-options"; packageName = "@lerna/global-options"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-6.0.1.tgz"; - sha512 = "vzjDI3Bg2NR+cSgfjHWax2bF1HmQYjJF2tmZlT/hJbwhaVMIEnhzHnJ9Yycmm98cdV77xEMlbmk5YD7xgFdG2w=="; + url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-6.1.0.tgz"; + sha512 = "1OyJ/N1XJh3ZAy8S20c6th9C4yBm/k3bRIdC+z0XxpDaHwfNt8mT9kUIDt6AIFCUvVKjSwnIsMHwhzXqBnwYSA=="; }; }; - "@lerna/has-npm-version-6.0.1" = { + "@lerna/has-npm-version-6.1.0" = { name = "_at_lerna_slash_has-npm-version"; packageName = "@lerna/has-npm-version"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-6.0.1.tgz"; - sha512 = "ol1onJaauMXK0cQsfRX2rvbhNRyNBY9Ne5trrRjfMROa7Tnr8c3I4+aKQs7m4z1JdWaGBV4xBH+NSZ/esPuaWA=="; + url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-6.1.0.tgz"; + sha512 = "up5PVuP6BmKQ5/UgH/t2c5B1q4HhjwW3/bqbNayX6V0qNz8OijnMYvEUbxFk8fOdeN41qVnhAk0Tb5kbdtYh2A=="; }; }; - "@lerna/import-6.0.1" = { + "@lerna/import-6.1.0" = { name = "_at_lerna_slash_import"; packageName = "@lerna/import"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/import/-/import-6.0.1.tgz"; - sha512 = "GrTtIWUCnDf+FqRjenV2OKWU+khoZj0h/etgfXus45PBO2+V/SkkzIY4xof23XphiydUYrSrYtwx2i1aEmk3Wg=="; + url = "https://registry.npmjs.org/@lerna/import/-/import-6.1.0.tgz"; + sha512 = "xsBhiKLUavATR32dAFL+WFY0yuab0hsM1eztKtRKk4wy7lSyxRfA5EIUcNCsLXx2xaDOKoMncCTXgNcpeYuqcQ=="; }; }; - "@lerna/info-6.0.1" = { + "@lerna/info-6.1.0" = { name = "_at_lerna_slash_info"; packageName = "@lerna/info"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/info/-/info-6.0.1.tgz"; - sha512 = "QEW7JtJjoR1etUrcft7BnrwPZFHE2JPmt2DoSvSmLISLyy+HlmdXHK+p6Ej3g1ql8gS0GWCacgwmlRZ27CDp5A=="; + url = "https://registry.npmjs.org/@lerna/info/-/info-6.1.0.tgz"; + sha512 = "CsrWdW/Wyb4kcvHSnrsm7KYWFvjUNItu+ryeyWBZJtWYQOv45jNmWix6j2L4/w1+mMlWMjsfLmBscg82UBrF5w=="; }; }; - "@lerna/init-6.0.1" = { + "@lerna/init-6.1.0" = { name = "_at_lerna_slash_init"; packageName = "@lerna/init"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/init/-/init-6.0.1.tgz"; - sha512 = "zOMrSij09LSAVUUujpD3y32wkHp8dQ+/dVCp4USlfcGfI+kIPc5prkYCGDO8dEcqkze0pMfDMF23pVNvAf9g7w=="; + url = "https://registry.npmjs.org/@lerna/init/-/init-6.1.0.tgz"; + sha512 = "z8oUeVjn+FQYAtepAw6G47cGodLyBAyNoEjO3IsJjQLWE1yH3r83L2sjyD/EckgR3o2VTEzrKo4ArhxLp2mNmg=="; }; }; - "@lerna/link-6.0.1" = { + "@lerna/link-6.1.0" = { name = "_at_lerna_slash_link"; packageName = "@lerna/link"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/link/-/link-6.0.1.tgz"; - sha512 = "VXZ77AWsJCycTu219ZLUHyRzMd5hgivLk5ZyBD1s/emArFvdEmGLscj2RXn3P3w/951b+DNG2Zbi6nek0iJ6DA=="; + url = "https://registry.npmjs.org/@lerna/link/-/link-6.1.0.tgz"; + sha512 = "7OD2lYNQHl6Kl1KYmplt8KoWjVHdiaqpYqwD38AwcB09YN58nGmo4aJgC12Fdx8DSNjkumgM0ROg/JOjMCTIzQ=="; }; }; - "@lerna/list-6.0.1" = { + "@lerna/list-6.1.0" = { name = "_at_lerna_slash_list"; packageName = "@lerna/list"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/list/-/list-6.0.1.tgz"; - sha512 = "M9Vneh866E1nlpU88rcUMLR+XTVi3VY0fLPr1OqXdYF+eTe6RkEHUQj8HIk94Rnt02HsWc4+FO31T4i5sf+PaA=="; + url = "https://registry.npmjs.org/@lerna/list/-/list-6.1.0.tgz"; + sha512 = "7/g2hjizkvVnBGpVm+qC7lUFGhZ/0GIMUbGQwnE6yXDGm8yP9aEcNVkU4JGrDWW+uIklf9oodnMHaLXd/FJe6Q=="; }; }; - "@lerna/listable-6.0.1" = { + "@lerna/listable-6.1.0" = { name = "_at_lerna_slash_listable"; packageName = "@lerna/listable"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/listable/-/listable-6.0.1.tgz"; - sha512 = "+xEByVX0sbnBW3EBu3XCg71Bz9/dahncmCjNK0kVnZLnQZzfULCndaQeSt+f9KO0VCs8h1tnXdo2uLPm4lThnw=="; + url = "https://registry.npmjs.org/@lerna/listable/-/listable-6.1.0.tgz"; + sha512 = "3KZ9lQ9AtNfGNH/mYJYaMKCiF2EQvLLBGYkWHeIzIs6foegcZNXe0Cyv3LNXuo5WslMNr5RT4wIgy3BOoAxdtg=="; }; }; - "@lerna/log-packed-6.0.1" = { + "@lerna/log-packed-6.1.0" = { name = "_at_lerna_slash_log-packed"; packageName = "@lerna/log-packed"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-6.0.1.tgz"; - sha512 = "HTJdZzfBbb5jyk/QU2O6o+yaWRwLoaPruhK+Q3ESTzQ2mlNCr0CI4UKWDcWURWx0EsVsYqsoUHuPZInpIHqCnA=="; + url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-6.1.0.tgz"; + sha512 = "Sq2HZJAcPuoNeEHeIutcPYQCyWBxLyVGvEhgsP3xTe6XkBGQCG8piCp9wX+sc2zT+idPdpI6qLqdh85yYIMMhA=="; }; }; - "@lerna/npm-conf-6.0.1" = { + "@lerna/npm-conf-6.1.0" = { name = "_at_lerna_slash_npm-conf"; packageName = "@lerna/npm-conf"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-6.0.1.tgz"; - sha512 = "VjxODCnl6QJGoQ8z8AWEID1GO9CtCr2yRyn6NoRdBOTYmzI5KhBBM+nWmyMSOUe0EZI+K5j04/GRzKHg2KXTAQ=="; + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-6.1.0.tgz"; + sha512 = "+RD3mmJe9XSQj7Diibs0+UafAHPcrFCd29ODpDI+tzYl4MmYZblfrlL6mbSCiVYCZQneQ8Uku3P0r+DlbYBaFw=="; }; }; - "@lerna/npm-dist-tag-6.0.1" = { + "@lerna/npm-dist-tag-6.1.0" = { name = "_at_lerna_slash_npm-dist-tag"; packageName = "@lerna/npm-dist-tag"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-6.0.1.tgz"; - sha512 = "jJKDgnhj6xGqSWGcbwdcbPtoo2m4mHRwqu8iln9e3TMOEyUO9aA4uvd0/18tEAsboOMiLUhhcQ8709iKv21ZEA=="; + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-6.1.0.tgz"; + sha512 = "1zo+Yww/lvWJWZnEXpke9dZSb5poDzhUM/pQNqAQYSlbZ96o18SuCR6TEi5isMPiw63Aq1MMzbUqttQfJ11EOA=="; }; }; - "@lerna/npm-install-6.0.1" = { + "@lerna/npm-install-6.1.0" = { name = "_at_lerna_slash_npm-install"; packageName = "@lerna/npm-install"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-6.0.1.tgz"; - sha512 = "saDJSyhhl/wxgZSzRx2/pr0wsMR+hZpdhLGd1lZgo5XzLq3ogK+BxPFz3AK3xhRnNaMq96gDQ3xmeetoV53lwQ=="; + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-6.1.0.tgz"; + sha512 = "1SHmOHZA1YJuUctLQBRjA2+yMp+UNYdOBsFb3xUVT7MjWnd1Zl0toT3jxGu96RNErD9JKkk/cGo/Aq+DU3s9pg=="; }; }; - "@lerna/npm-publish-6.0.1" = { + "@lerna/npm-publish-6.1.0" = { name = "_at_lerna_slash_npm-publish"; packageName = "@lerna/npm-publish"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-6.0.1.tgz"; - sha512 = "hgzF9fOfp010z7PJtqNLxNXiHr6u4UDVwiX8g22rhJKBh9Ekrq7N9NS3mF0l+RcleRU/jJKYtZ0Ci3fICaaRUg=="; + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-6.1.0.tgz"; + sha512 = "N0LdR1ImZQw1r4cYaKtVbBhBPtj4Zu9NbvygzizEP5HuTfxZmE1Ans3w93Kks9VTXZXob8twNbXnzBwzTyEpEA=="; }; }; - "@lerna/npm-run-script-6.0.1" = { + "@lerna/npm-run-script-6.1.0" = { name = "_at_lerna_slash_npm-run-script"; packageName = "@lerna/npm-run-script"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-6.0.1.tgz"; - sha512 = "K+D4LEoVRuBoKRImprkVRHIORu0xouX+c6yI1B93KWHKJ60H8qCeB0gQkA30pFALx3qG07bXVnFmfK9SGQXD3Q=="; + url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-6.1.0.tgz"; + sha512 = "7p13mvdxdY5+VqWvvtMsMDeyCRs0PrrTmSHRO+FKuLQuGhBvUo05vevcMEOQNDvEvl/tXPrOVbeGCiGubYTCLg=="; }; }; - "@lerna/otplease-6.0.1" = { + "@lerna/otplease-6.1.0" = { name = "_at_lerna_slash_otplease"; packageName = "@lerna/otplease"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-6.0.1.tgz"; - sha512 = "RrP8GtfE9yz37GuuCFqddR3mVIQc1ulUpAaaDNK4AOTb7gM0aCsTN7V2gCGBk1zdIsBuvNvNqt5jpWm4U6/EAA=="; + url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-6.1.0.tgz"; + sha512 = "gqSE6IbaD4IeNJePkaDLaFLoGp0Ceu35sn7z0AHAOoHiQGGorOmvM+h1Md3xZZRSXQmY9LyJVhG5eRa38SoG4g=="; }; }; - "@lerna/output-6.0.1" = { + "@lerna/output-6.1.0" = { name = "_at_lerna_slash_output"; packageName = "@lerna/output"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/output/-/output-6.0.1.tgz"; - sha512 = "4jZ3fgaCbnsTZ353/lXE/3w20Cge6G3iUoESVip+JE2yhZ8rWgPISG8RFR0YGEtSgq2yC9AgGnGlvmOnAc4SAQ=="; + url = "https://registry.npmjs.org/@lerna/output/-/output-6.1.0.tgz"; + sha512 = "mgCIzLKIuroytXuxjTB689ERtpfgyNXW0rMv9WHOa6ufQc+QJPjh3L4jVsOA0l+/OxZyi97PUXotduNj+0cbnA=="; }; }; - "@lerna/pack-directory-6.0.1" = { + "@lerna/pack-directory-6.1.0" = { name = "_at_lerna_slash_pack-directory"; packageName = "@lerna/pack-directory"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-6.0.1.tgz"; - sha512 = "vNgS5Rs7s6khOYuHE5nTds0VDfHBH8YNGvV1s0yGAg/Zkivi7bOTs8jDQFiYhQX3HOTC1/85BLhGQ3zcDHlrew=="; + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-6.1.0.tgz"; + sha512 = "Xsixqm2nkGXs9hvq08ClbGpRlCYnlBV4TwSrLttIDL712RlyXoPe2maJzTUqo9OXBbOumFSahUEInCMT2OS05g=="; }; }; - "@lerna/package-6.0.1" = { + "@lerna/package-6.1.0" = { name = "_at_lerna_slash_package"; packageName = "@lerna/package"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package/-/package-6.0.1.tgz"; - sha512 = "vCwyiLVJ4K3SR6KZleglq1dUXIiYGmk3b+NrFWP/Z3dhVE0C+RqgxSsAS4aaUNMSO2KSI0dBdce7BT/D+FdpIQ=="; + url = "https://registry.npmjs.org/@lerna/package/-/package-6.1.0.tgz"; + sha512 = "PyNFtdH2IcLasp/nyMDshmeXotriOSlhbeFIxhdl1XuGj5v1so3utMSOrJMO5kzZJQg5zyx8qQoxL+WH/hkrVQ=="; }; }; - "@lerna/package-graph-6.0.1" = { + "@lerna/package-graph-6.1.0" = { name = "_at_lerna_slash_package-graph"; packageName = "@lerna/package-graph"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-6.0.1.tgz"; - sha512 = "OMppRWpfSaI6HO/Tc5FVpNefgOsCc3/DzaMLme6QTTpbEwD3EhvQ3Xx0MgsGMPdmZhWp/WOoAJsVRnLa+l03gg=="; + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-6.1.0.tgz"; + sha512 = "yGyxd/eHTDjkpnBbDhTV0hwKF+i01qZc+6/ko65wOsh8xtgqpQeE6mtdgbvsLKcuMcIQ7PDy1ntyIv9phg14gQ=="; }; }; - "@lerna/prerelease-id-from-version-6.0.1" = { + "@lerna/prerelease-id-from-version-6.1.0" = { name = "_at_lerna_slash_prerelease-id-from-version"; packageName = "@lerna/prerelease-id-from-version"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.0.1.tgz"; - sha512 = "aZBs/FinztKjNXlk0cW99FpABynZzZwlmJuW4h9nMrQPgWoaDAERfImbefIH/lcpxdRuuGtClyZUFBOSq8ppfg=="; + url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.1.0.tgz"; + sha512 = "ngC4I6evvZztB6aOaSDEnhUgRTlqX3TyBXwWwLGTOXCPaCQBTPaLNokhmRdJ+ZVdZ4iHFbzEDSL07ubZrYUcmQ=="; }; }; - "@lerna/profiler-6.0.1" = { + "@lerna/profiler-6.1.0" = { name = "_at_lerna_slash_profiler"; packageName = "@lerna/profiler"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-6.0.1.tgz"; - sha512 = "vZrgF5pDhYWY/Gx7MjtyOgTVMA6swDV2+xPZwkvRD1Z0XpWEIn5d79zRN/1SBpdMNozC7Lj++1oEbCGNWhy/ow=="; + url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-6.1.0.tgz"; + sha512 = "WFDQNpuqPqMJLg8llvrBHF8Ib5Asgp23lMeNUe89T62NUX6gkjVBTYdjsduxM0tZH6Pa0GAGaQcha97P6fxfdQ=="; }; }; - "@lerna/project-6.0.1" = { + "@lerna/project-6.1.0" = { name = "_at_lerna_slash_project"; packageName = "@lerna/project"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/project/-/project-6.0.1.tgz"; - sha512 = "/n2QuAEgImbwUqrJND15FxYu29p/mLTUpL/8cSg6IUlOQRFyXteESRyl8A2Ex7Wj00FMbtB13vgbmTdkTgKL0A=="; + url = "https://registry.npmjs.org/@lerna/project/-/project-6.1.0.tgz"; + sha512 = "EOkfjjrTM16c3GUxGqcfYD2stV35p9mBEmkF41NPmyjfbzjol/irDF1r6Q7BsQSRsdClMJRCeZ168xdSxC2X0A=="; }; }; - "@lerna/prompt-6.0.1" = { + "@lerna/prompt-6.1.0" = { name = "_at_lerna_slash_prompt"; packageName = "@lerna/prompt"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-6.0.1.tgz"; - sha512 = "faR7oVdHBO3QTJ6o9kUEDPpyjCftd/CCa1rAC6q8f3vlLfCPrTym0qT+DcOBFGpDQh4m2dmGfJZgpXIVi6bMbg=="; + url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-6.1.0.tgz"; + sha512 = "981J/C53TZ2l2mFVlWJN7zynSzf5GEHKvKQa12Td9iknhASZOuwTAWb6eq46246Ant6W5tWwb0NSPu3I5qtcrA=="; }; }; - "@lerna/publish-6.0.1" = { + "@lerna/publish-6.1.0" = { name = "_at_lerna_slash_publish"; packageName = "@lerna/publish"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/publish/-/publish-6.0.1.tgz"; - sha512 = "xIleRwCuPHtShNSPc6RDH33Z+EO1E4O0LOhPq5qTwanNPYh5eL6bDHBsox44BbMD9dhhI4PUrqIGTu3AoKdDxg=="; + url = "https://registry.npmjs.org/@lerna/publish/-/publish-6.1.0.tgz"; + sha512 = "XtvuydtU0IptbAapLRgoN1AZj/WJR+e3UKnx9BQ1Dwc+Fpg2oqPxR/vi+6hxAsr95pdQ5CnWBdgS+dg2wEUJ7Q=="; }; }; - "@lerna/pulse-till-done-6.0.1" = { + "@lerna/pulse-till-done-6.1.0" = { name = "_at_lerna_slash_pulse-till-done"; packageName = "@lerna/pulse-till-done"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-6.0.1.tgz"; - sha512 = "DK5Ylh/O7Vzn9ObEggvoHdLxc1hiXsDZ4fUvSmi50kc5QrMrk+xo6OyPgIaDBhYxj6lm3TQ1KkvWnRgiEynKAg=="; + url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-6.1.0.tgz"; + sha512 = "a2RVT82E4R9nVXtehzp2TQL6iXp0QfEM3bu8tBAR/SfI1A9ggZWQhuuUqtRyhhVCajdQDOo7rS0UG7R5JzK58w=="; }; }; - "@lerna/query-graph-6.0.1" = { + "@lerna/query-graph-6.1.0" = { name = "_at_lerna_slash_query-graph"; packageName = "@lerna/query-graph"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-6.0.1.tgz"; - sha512 = "X8Z63Ax5a9nXgNBG+IAXEdCL4MG88akr7L4mBvKiTPrK5VgP46YzuZSaSoPI8bU67MlWBkSYQWAJJ5t0HEtKTw=="; + url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-6.1.0.tgz"; + sha512 = "YkyCc+6aR7GlCOcZXEKPcl5o5L2v+0YUNs59JrfAS0mctFosZ/2tP7pkdu2SI4qXIi5D0PMNsh/0fRni56znsQ=="; }; }; - "@lerna/resolve-symlink-6.0.1" = { + "@lerna/resolve-symlink-6.1.0" = { name = "_at_lerna_slash_resolve-symlink"; packageName = "@lerna/resolve-symlink"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-6.0.1.tgz"; - sha512 = "btosycLN+2lpqou6pz0Oeq4XIKHDIn0NvdnuCBLxtuBOBNIkdlx5QWKCtZ31GYKbCUt55w1DSGL64kfVuejVQQ=="; + url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-6.1.0.tgz"; + sha512 = "8ILO+h5fsE0q8MSLfdL+MT1GEsNhAB1fDyMkSsYgLRCsssN/cViZbffpclZyT/EfAhpyKfBCHZ0CmT1ZGofU1A=="; }; }; - "@lerna/rimraf-dir-6.0.1" = { + "@lerna/rimraf-dir-6.1.0" = { name = "_at_lerna_slash_rimraf-dir"; packageName = "@lerna/rimraf-dir"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-6.0.1.tgz"; - sha512 = "rBFkwrxEQWFfZV5IMiPfGVubOquvOTNsPJPUf5tZoPAqKHXVQi5iYZGB65VG8JA7eFenZxh5mVErX2gtWFh1Ew=="; + url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-6.1.0.tgz"; + sha512 = "J9YeGHkCCeAIzsnKURYeGECBexiIii6HA+Bbd+rAgoKPsNCOj6ql4+qJE8Jbd7fQEFNDPQeBCYvM7JcdMc0WSA=="; }; }; - "@lerna/run-6.0.1" = { + "@lerna/run-6.1.0" = { name = "_at_lerna_slash_run"; packageName = "@lerna/run"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run/-/run-6.0.1.tgz"; - sha512 = "F1vvpaevsWCjaQs3NlBegH54izm3cO3Qbg/cRRzPZMK4Jo7gE1ddL7+zCIq0zGt6aeVqRGBOtUMk4SvNGkzI4w=="; + url = "https://registry.npmjs.org/@lerna/run/-/run-6.1.0.tgz"; + sha512 = "vlEEKPcTloiob6EK7gxrjEdB6fQQ/LNfWhSJCGxJlvNVbrMpoWIu0Kpp20b0nE+lzX7rRJ4seWr7Wdo/Fjub4Q=="; }; }; - "@lerna/run-lifecycle-6.0.1" = { + "@lerna/run-lifecycle-6.1.0" = { name = "_at_lerna_slash_run-lifecycle"; packageName = "@lerna/run-lifecycle"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-6.0.1.tgz"; - sha512 = "gC7rnV3mrgFFIM8GlHc3d22ovYHoExu9CuIAxN26CVrMq7iEYxWoxYvweqVANsCHR7CVbs+dsDx8/TP1pQG8wg=="; + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-6.1.0.tgz"; + sha512 = "GbTdKxL+hWHEPgyBEKtqY9Nf+jFlt6YLtP5VjEVc5SdLkm+FeRquar9/YcZVUbzr3c+NJwWNgVjHuePfowdpUA=="; }; }; - "@lerna/run-topologically-6.0.1" = { + "@lerna/run-topologically-6.1.0" = { name = "_at_lerna_slash_run-topologically"; packageName = "@lerna/run-topologically"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-6.0.1.tgz"; - sha512 = "p4J9RvOUyDUjQ21tDh7Durci9YnuBu3T8WXD8xu5ZwcxVnawK1h5B8kP4V1R5L/jwNqkXsAnlLwikPVGQ5Iptw=="; + url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-6.1.0.tgz"; + sha512 = "kpTaSBKdKjtf61be8Z1e7TIaMt/aksfxswQtpFxEuKDsPsdHfR8htSkADO4d/3SZFtmcAHIHNCQj9CaNj4O4Xw=="; }; }; - "@lerna/symlink-binary-6.0.1" = { + "@lerna/symlink-binary-6.1.0" = { name = "_at_lerna_slash_symlink-binary"; packageName = "@lerna/symlink-binary"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-6.0.1.tgz"; - sha512 = "TcwxDMgU9w+hGl0EeYihPytVRKV0KTeZZW4Bq6NEtjTCIIuKWxZjcY5ocxW22i6BClBvfFAJqkf+e+i3Nixlhg=="; + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-6.1.0.tgz"; + sha512 = "DaiRNZk/dvomNxgEaTW145PyL7vIGP7rvnfXV2FO+rjX8UUSNUOjmVmHlYfs64gV9Eqx/dLfQClIbKcwYMD83A=="; }; }; - "@lerna/symlink-dependencies-6.0.1" = { + "@lerna/symlink-dependencies-6.1.0" = { name = "_at_lerna_slash_symlink-dependencies"; packageName = "@lerna/symlink-dependencies"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-6.0.1.tgz"; - sha512 = "ImyqjLjMBu0ORGO9gYHr9oDgN/5QeeGuELtYNweLS5vMNSH1dokQW9fqZSrgfCJPbxeCizBcDTi/Knqg17ebkA=="; + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-6.1.0.tgz"; + sha512 = "hrTvtY1Ek+fLA4JjXsKsvwPjuJD0rwB/+K4WY57t00owj//BpCsJ37w3kkkS7f/PcW/5uRjCuHcY67LOEwsRxw=="; }; }; - "@lerna/temp-write-6.0.1" = { + "@lerna/temp-write-6.1.0" = { name = "_at_lerna_slash_temp-write"; packageName = "@lerna/temp-write"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-6.0.1.tgz"; - sha512 = "9eklYncDnwTnGF9o14GOrZU05ZK5n6/x5XYRQHbuLfK5T9pmOiUyl6sO1613cZygUMaWHHi7BLtBPiw2CklqXQ=="; + url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-6.1.0.tgz"; + sha512 = "ZcQl88H9HbQ/TeWUOVt+vDYwptm7kwprGvj9KkZXr9S5Bn6SiKRQOeydCCfCrQT+9Q3dm7QZXV6rWzLsACcAlQ=="; }; }; - "@lerna/timer-6.0.1" = { + "@lerna/timer-6.1.0" = { name = "_at_lerna_slash_timer"; packageName = "@lerna/timer"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/timer/-/timer-6.0.1.tgz"; - sha512 = "FLoga8iprKmRkh9jO+LP4Bm7MZLO4wNHM4LML4Dlh9CPwcIOWTteI8wSgRXvEJpt33IRIoPOUnfL3iHh8WwaYA=="; + url = "https://registry.npmjs.org/@lerna/timer/-/timer-6.1.0.tgz"; + sha512 = "du+NQ9q7uO4d2nVU4AD2DSPuAZqUapA/bZKuVpFVxvY9Qhzb8dQKLsFISe4A9TjyoNAk8ZeWK0aBc/6N+Qer9A=="; }; }; - "@lerna/validation-error-6.0.1" = { + "@lerna/validation-error-6.1.0" = { name = "_at_lerna_slash_validation-error"; packageName = "@lerna/validation-error"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-6.0.1.tgz"; - sha512 = "kjAxfFY1pDltwoCTvMQCbnpBwMXBFuvE4hdi8qePhBQ1Lf0PlTOI4ZqMFIkaTud+oujzysDXraTJbYTjc+C+zw=="; + url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-6.1.0.tgz"; + sha512 = "q0c3XCi5OpyTr8AcfbisS6e3svZaJF/riCvBDqRMaQUT4A8QOPzB4fVF3/+J2u54nidBuTlIk0JZu9aOdWTUkQ=="; }; }; - "@lerna/version-6.0.1" = { + "@lerna/version-6.1.0" = { name = "_at_lerna_slash_version"; packageName = "@lerna/version"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/version/-/version-6.0.1.tgz"; - sha512 = "d/addeHVsRFWx3fb/XZIh6f23KuEC9Fn3ytpaMzA8rlLF3Nob1opIR98ZfUz7Nf+skpIV1QiIbXdJTZzIKvd9g=="; + url = "https://registry.npmjs.org/@lerna/version/-/version-6.1.0.tgz"; + sha512 = "RUxVFdzHt0739lRNMrAbo6HWcFrcyG7atM1pn+Eo61fUoA5R/9N4bCk4m9xUGkJ/mOcROjuwAGe+wT1uOs58Bg=="; }; }; - "@lerna/write-log-file-6.0.1" = { + "@lerna/write-log-file-6.1.0" = { name = "_at_lerna_slash_write-log-file"; packageName = "@lerna/write-log-file"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-6.0.1.tgz"; - sha512 = "fJGDE8rlE35DwKSqV8M1VV2xw/vQlgwTwURjNOMvd1Ar23Aa9CkJC4XAwc9uUgIku34IsWUM8MNbw9ClSsJaqw=="; + url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-6.1.0.tgz"; + sha512 = "09omu2w4NCt8mJH/X9ZMuToQQ3xu/KpC7EU4yDl2Qy8nxKf8HiG8Oe+YYNprngmkdsq60F5eUZvoiFDZ5JeGIg=="; }; }; "@lezer/common-0.15.12" = { @@ -7312,42 +7303,6 @@ let sha512 = "1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg=="; }; }; - "@mapbox/extent-0.4.0" = { - name = "_at_mapbox_slash_extent"; - packageName = "@mapbox/extent"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/extent/-/extent-0.4.0.tgz"; - sha512 = "MSoKw3qPceGuupn04sdaJrFeLKvcSETVLZCGS8JA9x6zXQL3FWiKaIXYIZEDXd5jpXpWlRxinCZIN49yRy0C9A=="; - }; - }; - "@mapbox/geojson-coords-0.0.2" = { - name = "_at_mapbox_slash_geojson-coords"; - packageName = "@mapbox/geojson-coords"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/geojson-coords/-/geojson-coords-0.0.2.tgz"; - sha512 = "YuVzpseee/P1T5BWyeVVPppyfmuXYHFwZHmybkqaMfu4BWlOf2cmMGKj2Rr92MwfSTOCSUA0PAsVGRG8akY0rg=="; - }; - }; - "@mapbox/geojson-extent-1.0.1" = { - name = "_at_mapbox_slash_geojson-extent"; - packageName = "@mapbox/geojson-extent"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/geojson-extent/-/geojson-extent-1.0.1.tgz"; - sha512 = "hh8LEO3djT4fqfr8sSC6wKt+p0TMiu+KOLMBUiFOyj+zGq7+IXwQGl0ppCVDkyzCewyd9LoGe9zAvDxXrLfhLw=="; - }; - }; - "@mapbox/geojson-normalize-0.0.1" = { - name = "_at_mapbox_slash_geojson-normalize"; - packageName = "@mapbox/geojson-normalize"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/geojson-normalize/-/geojson-normalize-0.0.1.tgz"; - sha512 = "82V7YHcle8lhgIGqEWwtXYN5cy0QM/OHq3ypGhQTbvHR57DF0vMHMjjVSQKFfVXBe/yWCBZTyOuzvK7DFFnx5Q=="; - }; - }; "@mapbox/geojson-rewind-0.5.2" = { name = "_at_mapbox_slash_geojson-rewind"; packageName = "@mapbox/geojson-rewind"; @@ -7357,15 +7312,6 @@ let sha512 = "tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA=="; }; }; - "@mapbox/geojson-types-1.0.2" = { - name = "_at_mapbox_slash_geojson-types"; - packageName = "@mapbox/geojson-types"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz"; - sha512 = "e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw=="; - }; - }; "@mapbox/jsonlint-lines-primitives-2.0.2" = { name = "_at_mapbox_slash_jsonlint-lines-primitives"; packageName = "@mapbox/jsonlint-lines-primitives"; @@ -7375,15 +7321,6 @@ let sha512 = "rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ=="; }; }; - "@mapbox/mapbox-gl-supported-1.5.0" = { - name = "_at_mapbox_slash_mapbox-gl-supported"; - packageName = "@mapbox/mapbox-gl-supported"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz"; - sha512 = "/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg=="; - }; - }; "@mapbox/mapbox-gl-supported-2.0.1" = { name = "_at_mapbox_slash_mapbox-gl-supported"; packageName = "@mapbox/mapbox-gl-supported"; @@ -7411,15 +7348,6 @@ let sha512 = "6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ=="; }; }; - "@mapbox/tiny-sdf-1.2.5" = { - name = "_at_mapbox_slash_tiny-sdf"; - packageName = "@mapbox/tiny-sdf"; - version = "1.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz"; - sha512 = "cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw=="; - }; - }; "@mapbox/tiny-sdf-2.0.5" = { name = "_at_mapbox_slash_tiny-sdf"; packageName = "@mapbox/tiny-sdf"; @@ -7429,15 +7357,6 @@ let sha512 = "OhXt2lS//WpLdkqrzo/KwB7SRD8AiNTFFzuo9n14IBupzIMa67yGItcK7I2W9D8Ghpa4T04Sw9FWsKCJG50Bxw=="; }; }; - "@mapbox/unitbezier-0.0.0" = { - name = "_at_mapbox_slash_unitbezier"; - packageName = "@mapbox/unitbezier"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz"; - sha512 = "HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA=="; - }; - }; "@mapbox/unitbezier-0.0.1" = { name = "_at_mapbox_slash_unitbezier"; packageName = "@mapbox/unitbezier"; @@ -7492,13 +7411,13 @@ let sha512 = "ES5rj6J39FUkHe/b3C9SJs8bqIungYhuU7rBINTBaHOv/Ce4RCb3Gw08CZVl32W33UEkgRkzyWaIedV4at+QHg=="; }; }; - "@mdn/browser-compat-data-5.2.6" = { + "@mdn/browser-compat-data-5.2.17" = { name = "_at_mdn_slash_browser-compat-data"; packageName = "@mdn/browser-compat-data"; - version = "5.2.6"; + version = "5.2.17"; src = fetchurl { - url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.2.6.tgz"; - sha512 = "KJfP6iTcVX+R5OSC4NOIF4V9fTyifcjwmdkOk7UzsaWxkF21rc6KhGlohqiSRVEynidGO1EEyyYf/PD3jsM1gA=="; + url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.2.17.tgz"; + sha512 = "aA+rFHhXmq14GVIcEWNk8OntLEOQFwEZk9ZgG5VcDquz+pQhIjJPXacR+rwL9Z0Elfg909EcRRHC96p06/CNUg=="; }; }; "@medable/mdctl-api-1.0.67" = { @@ -7897,58 +7816,58 @@ let sha512 = "h9u4u/jiIRKbq25PM+zymTyW6bhTzELvOoUd+AvYriWOAKpLGnIamaET3pnHYoI5iYphAHBI4ayx0MehR+VVPQ=="; }; }; - "@msgpackr-extract/msgpackr-extract-darwin-arm64-2.1.2" = { + "@msgpackr-extract/msgpackr-extract-darwin-arm64-2.2.0" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-darwin-arm64"; packageName = "@msgpackr-extract/msgpackr-extract-darwin-arm64"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-2.1.2.tgz"; - sha512 = "TyVLn3S/+ikMDsh0gbKv2YydKClN8HaJDDpONlaZR+LVJmsxLFUgA+O7zu59h9+f9gX1aj/ahw9wqa6rosmrYQ=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-2.2.0.tgz"; + sha512 = "Z9LFPzfoJi4mflGWV+rv7o7ZbMU5oAU9VmzCgL240KnqDW65Y2HFCT3MW06/ITJSnbVLacmcEJA8phywK7JinQ=="; }; }; - "@msgpackr-extract/msgpackr-extract-darwin-x64-2.1.2" = { + "@msgpackr-extract/msgpackr-extract-darwin-x64-2.2.0" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-darwin-x64"; packageName = "@msgpackr-extract/msgpackr-extract-darwin-x64"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-2.1.2.tgz"; - sha512 = "YPXtcVkhmVNoMGlqp81ZHW4dMxK09msWgnxtsDpSiZwTzUBG2N+No2bsr7WMtBKCVJMSD6mbAl7YhKUqkp/Few=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-2.2.0.tgz"; + sha512 = "vq0tT8sjZsy4JdSqmadWVw6f66UXqUCabLmUVHZwUFzMgtgoIIQjT4VVRHKvlof3P/dMCkbMJ5hB1oJ9OWHaaw=="; }; }; - "@msgpackr-extract/msgpackr-extract-linux-arm-2.1.2" = { + "@msgpackr-extract/msgpackr-extract-linux-arm-2.2.0" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-linux-arm"; packageName = "@msgpackr-extract/msgpackr-extract-linux-arm"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-2.1.2.tgz"; - sha512 = "42R4MAFeIeNn+L98qwxAt360bwzX2Kf0ZQkBBucJ2Ircza3asoY4CDbgiu9VWklq8gWJVSJSJBwDI+c/THiWkA=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-2.2.0.tgz"; + sha512 = "SaJ3Qq4lX9Syd2xEo9u3qPxi/OB+5JO/ngJKK97XDpa1C587H9EWYO6KD8995DAjSinWvdHKRrCOXVUC5fvGOg=="; }; }; - "@msgpackr-extract/msgpackr-extract-linux-arm64-2.1.2" = { + "@msgpackr-extract/msgpackr-extract-linux-arm64-2.2.0" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-linux-arm64"; packageName = "@msgpackr-extract/msgpackr-extract-linux-arm64"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-2.1.2.tgz"; - sha512 = "vHZ2JiOWF2+DN9lzltGbhtQNzDo8fKFGrf37UJrgqxU0yvtERrzUugnfnX1wmVfFhSsF8OxrfqiNOUc5hko1Zg=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-2.2.0.tgz"; + sha512 = "hlxxLdRmPyq16QCutUtP8Tm6RDWcyaLsRssaHROatgnkOxdleMTgetf9JsdncL8vLh7FVy/RN9i3XR5dnb9cRA=="; }; }; - "@msgpackr-extract/msgpackr-extract-linux-x64-2.1.2" = { + "@msgpackr-extract/msgpackr-extract-linux-x64-2.2.0" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-linux-x64"; packageName = "@msgpackr-extract/msgpackr-extract-linux-x64"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-2.1.2.tgz"; - sha512 = "RjRoRxg7Q3kPAdUSC5EUUPlwfMkIVhmaRTIe+cqHbKrGZ4M6TyCA/b5qMaukQ/1CHWrqYY2FbKOAU8Hg0pQFzg=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-2.2.0.tgz"; + sha512 = "94y5PJrSOqUNcFKmOl7z319FelCLAE0rz/jPCWS+UtdMZvpa4jrQd+cJPQCLp2Fes1yAW/YUQj/Di6YVT3c3Iw=="; }; }; - "@msgpackr-extract/msgpackr-extract-win32-x64-2.1.2" = { + "@msgpackr-extract/msgpackr-extract-win32-x64-2.2.0" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-win32-x64"; packageName = "@msgpackr-extract/msgpackr-extract-win32-x64"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-2.1.2.tgz"; - sha512 = "rIZVR48zA8hGkHIK7ED6+ZiXsjRCcAVBJbm8o89OKAMTmEAQ2QvoOxoiu3w2isAaWwzgtQIOFIqHwvZDyLKCvw=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-2.2.0.tgz"; + sha512 = "XrC0JzsqQSvOyM3t04FMLO6z5gCuhPE6k4FXuLK5xf52ZbdvcFe1yBmo7meCew9B8G2f0T9iu9t3kfTYRYROgA=="; }; }; "@nestjs/schematics-9.0.3" = { @@ -8221,13 +8140,13 @@ let sha512 = "+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A=="; }; }; - "@npmcli/config-4.2.2" = { + "@npmcli/config-6.1.0" = { name = "_at_npmcli_slash_config"; packageName = "@npmcli/config"; - version = "4.2.2"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/config/-/config-4.2.2.tgz"; - sha512 = "5GNcLd+0c4bYBnFop53+26CO5GQP0R9YcxlernohpHDWdIgzUg9I0+GEMk3sNHnLntATVU39d283A4OO+W402w=="; + url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.0.tgz"; + sha512 = "fPVlvy6MmSN0zgJU1TOD0fimnKVmcFpK3WuPyIQfNtCE+HMkFDN1mIKBKhUNow5QYHmCzMvGbu7pAgwdlSoaQA=="; }; }; "@npmcli/fs-1.1.1" = { @@ -8275,6 +8194,15 @@ let sha512 = "CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w=="; }; }; + "@npmcli/git-4.0.3" = { + name = "_at_npmcli_slash_git"; + packageName = "@npmcli/git"; + version = "4.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@npmcli/git/-/git-4.0.3.tgz"; + sha512 = "8cXNkDIbnXPVbhXMmQ7/bklCAjtmPaXfI9aEM4iH+xSuEHINLMHhlfESvVwdqmHJRJkR48vNJTSUvoF6GRPSFA=="; + }; + }; "@npmcli/installed-package-contents-1.0.7" = { name = "_at_npmcli_slash_installed-package-contents"; packageName = "@npmcli/installed-package-contents"; @@ -8284,6 +8212,15 @@ let sha512 = "9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw=="; }; }; + "@npmcli/installed-package-contents-2.0.1" = { + name = "_at_npmcli_slash_installed-package-contents"; + packageName = "@npmcli/installed-package-contents"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.1.tgz"; + sha512 = "GIykAFdOVK31Q1/zAtT5MbxqQL2vyl9mvFJv+OGu01zxbhL3p0xc8gJjdNGX1mWmUT43aEKVO2L6V/2j4TOsAA=="; + }; + }; "@npmcli/map-workspaces-2.0.4" = { name = "_at_npmcli_slash_map-workspaces"; packageName = "@npmcli/map-workspaces"; @@ -8293,6 +8230,15 @@ let sha512 = "bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg=="; }; }; + "@npmcli/map-workspaces-3.0.0" = { + name = "_at_npmcli_slash_map-workspaces"; + packageName = "@npmcli/map-workspaces"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-3.0.0.tgz"; + sha512 = "aaEDwQ+fUH80iNYSDAcKv9lxIFWsgGkLjIPZENyep75hKeAk2CfSbCAZ6IHDDrVlNybvvNmlFjPap6GdTz9cCw=="; + }; + }; "@npmcli/metavuln-calculator-2.0.0" = { name = "_at_npmcli_slash_metavuln-calculator"; packageName = "@npmcli/metavuln-calculator"; @@ -8356,6 +8302,15 @@ let sha512 = "doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A=="; }; }; + "@npmcli/node-gyp-3.0.0" = { + name = "_at_npmcli_slash_node-gyp"; + packageName = "@npmcli/node-gyp"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz"; + sha512 = "gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA=="; + }; + }; "@npmcli/package-json-1.0.1" = { name = "_at_npmcli_slash_package-json"; packageName = "@npmcli/package-json"; @@ -8392,6 +8347,15 @@ let sha512 = "s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g=="; }; }; + "@npmcli/promise-spawn-6.0.1" = { + name = "_at_npmcli_slash_promise-spawn"; + packageName = "@npmcli/promise-spawn"; + version = "6.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.1.tgz"; + sha512 = "+hcUpxgx0vEpDJI9Cn+lkTdKLoqKBXFCVps5H7FujEU2vLOp6KwqjLlxbnz8Wzgm8oEqW/u5FeNAXSFjLdCD0A=="; + }; + }; "@npmcli/run-script-1.8.6" = { name = "_at_npmcli_slash_run-script"; packageName = "@npmcli/run-script"; @@ -8419,31 +8383,40 @@ let sha512 = "7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg=="; }; }; - "@nrwl/cli-15.0.10" = { + "@npmcli/run-script-6.0.0" = { + name = "_at_npmcli_slash_run-script"; + packageName = "@npmcli/run-script"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.0.tgz"; + sha512 = "ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ=="; + }; + }; + "@nrwl/cli-15.2.4" = { name = "_at_nrwl_slash_cli"; packageName = "@nrwl/cli"; - version = "15.0.10"; + version = "15.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.0.10.tgz"; - sha512 = "+HtEyrSMcaNq1SNhOanKXX3oFntC0mdd5UNIkw8qipSv/7cysBch+3RUwqvnqUFRZhJejCZgFRzUp7rAD7SZ2Q=="; + url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.2.4.tgz"; + sha512 = "Urhkzj/hzhTlJqOHFZyibYGjvzHvSQhkjN3keHiYCNEOaAGp9DPF+oC5cYrPcqWbu3ZkldDWTk7aVBbeqwDWZQ=="; }; }; - "@nrwl/devkit-15.0.10" = { + "@nrwl/devkit-15.2.4" = { name = "_at_nrwl_slash_devkit"; packageName = "@nrwl/devkit"; - version = "15.0.10"; + version = "15.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.0.10.tgz"; - sha512 = "JPLB6kyC4L7e4D4LSWhZNrY0bCmlwyagn9ubuPPT/MWQ9LX7RWr/OL87IEHAp/kH93hYPNmwzkIXNpc30y4/GA=="; + url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.2.4.tgz"; + sha512 = "5JZWB4ydnu+NKNIfj958nML8AWwhareQ+Q1hLXoOIS/7brqfALNP3y/Ef1ljrLIo1f3xc484TPclqwSH7aRdvQ=="; }; }; - "@nrwl/tao-15.0.10" = { + "@nrwl/tao-15.2.4" = { name = "_at_nrwl_slash_tao"; packageName = "@nrwl/tao"; - version = "15.0.10"; + version = "15.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.0.10.tgz"; - sha512 = "8MTx+eNxJSH826IOC0LplvVR2fxFz0+VOOUORk2gq75+3jCxmW7uxcTM5WvzgtCw7lFJCvWVZASoGCVEIns6Fg=="; + url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.2.4.tgz"; + sha512 = "ebGJCkg84yfptuNhGMnIrgHvnknJkeyxWLqRQ7AlMXTzxXOfMS+whjVImM9XjfVYVpBVFWc5QBU5gaKQtzLHmA=="; }; }; "@oclif/command-1.8.0" = { @@ -8482,15 +8455,6 @@ let sha512 = "cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA=="; }; }; - "@oclif/config-1.18.5" = { - name = "_at_oclif_slash_config"; - packageName = "@oclif/config"; - version = "1.18.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.5.tgz"; - sha512 = "R6dBedaUVn5jtAh79aaRm7jezx4l3V7Im9NORlLmudz5BL1foMeuXEvnqm+bMiejyexVA+oi9mto6YKZPzo/5Q=="; - }; - }; "@oclif/config-1.18.6" = { name = "_at_oclif_slash_config"; packageName = "@oclif/config"; @@ -8536,13 +8500,13 @@ let sha512 = "fYaU4aDceETd89KXP+3cLyg9EHZsLD3RxF2IU9yxahhBpspWjkWi3Dy3bTgcwZ3V47BgxQaGapzJWDM33XIVDQ=="; }; }; - "@oclif/help-1.0.3" = { + "@oclif/help-1.0.4" = { name = "_at_oclif_slash_help"; packageName = "@oclif/help"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.3.tgz"; - sha512 = "AjjhSWFQkRb9rChEH+IRUmp0CxEacYpUbh+kQqtdCR9CDSsj2a3ibWjtMtJb4lFGAle6kVKfaal/juYe+6P5TQ=="; + url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.4.tgz"; + sha512 = "w3xsdZj1af/dFN7oCmvAHbHRj6L0SOO5uGXEve0LLroAJSM3DeEpzgNMjxS5RTV2gVC4RmJ/rTqmp0SRaXGiTA=="; }; }; "@oclif/linewrap-1.0.0" = { @@ -8905,13 +8869,13 @@ let sha512 = "qe+uWtCJetuG78KhfiQyEA+ZciC/qeECXRj+LCm4m0s98qR2wPwYHRI1u8aFbtkN6G4ZMyKN+opY++fJS5l3vg=="; }; }; - "@opentelemetry/api-1.2.0" = { + "@opentelemetry/api-1.3.0" = { name = "_at_opentelemetry_slash_api"; packageName = "@opentelemetry/api"; - version = "1.2.0"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.2.0.tgz"; - sha512 = "0nBr+VZNKm9tvNDZFstI3Pq1fCTEDK5OZTnVKNvBNAKgd0yIvmwsP4m61rEv7ZP+tOUjWJhROpxK5MsnlF911g=="; + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.3.0.tgz"; + sha512 = "YveTnGNsFFixTKJz09Oi4zYkiLT5af3WpZDu4aIUM7xX+2bHAkOJayFTVQd6zB8kkWPpbua4Ha6Ql00grdLlJQ=="; }; }; "@opentelemetry/semantic-conventions-1.3.1" = { @@ -8923,409 +8887,400 @@ let sha512 = "wU5J8rUoo32oSef/rFpOT1HIjLjAv3qIDHkw1QIhODV3OpAVHi5oVzlouozg9obUmZKtbZ0qUe/m7FP0y0yBzA=="; }; }; - "@ot-builder/bin-composite-types-1.5.4" = { + "@ot-builder/bin-composite-types-1.5.5" = { name = "_at_ot-builder_slash_bin-composite-types"; packageName = "@ot-builder/bin-composite-types"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.4.tgz"; - sha512 = "BGa0e3eN9ZLfwcJWcD/htPjbBadTYse42aLItPbpVhIc2HEClFFmrtwVR1AyYIHX08Iru9P6ExK2c5JcOtAxFw=="; + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.5.tgz"; + sha512 = "CK8DmpDC/BILM57mX5jq1aAKRGqHPIRknnBTOtr+kAEdyYPJ28ATAojk7jcBb+tw6WPCdDRmmAj9XvKkXfwTdg=="; }; }; - "@ot-builder/bin-util-1.5.4" = { + "@ot-builder/bin-util-1.5.5" = { name = "_at_ot-builder_slash_bin-util"; packageName = "@ot-builder/bin-util"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.4.tgz"; - sha512 = "VSMqaiNu1tbdyXFJObLuhLjfwp4CgrwHBG8y2EyoG6ipyxon345tvtsSdyW71N/t2nfS4IZHxxNmgoiEyTGjew=="; + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.5.tgz"; + sha512 = "YilwtBHMAcqa+C/8gCqekM4nZkIGkdS64Sd/N4Q2aw68ly3l94hgPOioNRq7Ixju+reg1HHQrn6e/ug8UJ1F4A=="; }; }; - "@ot-builder/cli-help-shower-1.5.4" = { + "@ot-builder/cli-help-shower-1.5.5" = { name = "_at_ot-builder_slash_cli-help-shower"; packageName = "@ot-builder/cli-help-shower"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.4.tgz"; - sha512 = "dgDXk5A2W+BXdscJ9V//X/oRCesFj5X8elv0Ks3hyGsb+HEnVmmpGqYD+yNvsh7DCB+VabHTRI9HIhjx52DYeA=="; + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.5.tgz"; + sha512 = "TwopK3Xwhhsw8o9rEz4eV4Fov9AvAA4bWSfCpt7vv1E8Ri+oXGVGZKiStjnrQJSr2WaZ4KqZcEvZew8F+ZYDbQ=="; }; }; - "@ot-builder/cli-proc-1.5.4" = { + "@ot-builder/cli-proc-1.5.5" = { name = "_at_ot-builder_slash_cli-proc"; packageName = "@ot-builder/cli-proc"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.4.tgz"; - sha512 = "9IhKDfSat06iroaGHQG8x4cpzoctoBwKu3AA6xUE5PEEb7xImcGaZ0hDaNEZGJd/yYEvatBbytzI5NAJfdvSjA=="; + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.5.tgz"; + sha512 = "kxwViISxgMpK00eronqF+StDAfWcqF0nIm2l84zs4qJY6ddsBbhVgSNtY19DfDDjJPEEHDoNGEOJYAeyxquRIg=="; }; }; - "@ot-builder/cli-shared-1.5.4" = { + "@ot-builder/cli-shared-1.5.5" = { name = "_at_ot-builder_slash_cli-shared"; packageName = "@ot-builder/cli-shared"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.4.tgz"; - sha512 = "QALOu8sjBrVhA7rrHNX3CgQTMUokC0GHnOTMcyqep1ogLOAKPvmmM0vmqPHVrolWLoEVgKI1bs3nFfZmtZC/cA=="; + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.5.tgz"; + sha512 = "lqIaWGEJ+Xw3tJLF7faX5gH7GWaNLjRnnadiR/fK6o2wdRhjEiw+DQa4hmE9mXdBCNaAxPSDkRR3GA6hvsw4lA=="; }; }; - "@ot-builder/common-impl-1.5.4" = { + "@ot-builder/common-impl-1.5.5" = { name = "_at_ot-builder_slash_common-impl"; packageName = "@ot-builder/common-impl"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.4.tgz"; - sha512 = "B6j9Fv9iXGSim7dNlZkfD5gWJ+VK57wmlb9SwNlxTI8M0JBfTaWVkajyEz+GPn4BEvVOBJ95PFnecO43K552aA=="; + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.5.tgz"; + sha512 = "BhNB6m/dIaXMUbRlYLcmnEYwFoPVcvUD7fpij2wL/sbuSXh5IVj/wvcGqNDaRMJN7jWF1iApoWYb25s2cMI0eg=="; }; }; - "@ot-builder/errors-1.5.4" = { + "@ot-builder/errors-1.5.5" = { name = "_at_ot-builder_slash_errors"; packageName = "@ot-builder/errors"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.4.tgz"; - sha512 = "2xo+cpRrK93JLyfxORekkpslavILzX7c+AOlf754otRN8UK0rfVSNcFUifN7BobpHCaHuBgJtbYiq+zBnjMbew=="; + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.5.tgz"; + sha512 = "r1/31jN6MXb+sUMgFa7fl7cvh6WbyUrWHtU2aWNXo+v3ANF02pAANm3kHRYeo1A5hbsPdpYGT59eA2wKsFv6pg=="; }; }; - "@ot-builder/io-bin-cff-1.5.4" = { + "@ot-builder/io-bin-cff-1.5.5" = { name = "_at_ot-builder_slash_io-bin-cff"; packageName = "@ot-builder/io-bin-cff"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.4.tgz"; - sha512 = "CuEbsQwDoKF2/tonyy6J+cEtY8yzPZ7aCl/+Y5X+ZdYN9BmYZ64V1W1Qyc6wEwik78fDdgzsBni15YsUCTvGnA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.5.tgz"; + sha512 = "fZXVdnCsV2xGd12ixn/ZD7I73NUJty2RzAru0/SPcKh9+MM9+0WAaC8K2959JoK1k+uWTwkm9GfVFWBrqgkm1Q=="; }; }; - "@ot-builder/io-bin-encoding-1.5.4" = { + "@ot-builder/io-bin-encoding-1.5.5" = { name = "_at_ot-builder_slash_io-bin-encoding"; packageName = "@ot-builder/io-bin-encoding"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.4.tgz"; - sha512 = "5O5E7941ScCmzoxtyK/KT1D3Wl3vHUWZY784no97e6udCndngPuvVI1UZck2lmLrrrn/EvNU0eJCHN7neHsSXw=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.5.tgz"; + sha512 = "f9H94M2v3DaLQpWV9sG2e5vYubzI+I2AXlRCKplexfSWoIU7Wsusb3ZNXs+rWB3tFKTOVjwZ2c8prSNsKVPZWA=="; }; }; - "@ot-builder/io-bin-ext-private-1.5.4" = { + "@ot-builder/io-bin-ext-private-1.5.5" = { name = "_at_ot-builder_slash_io-bin-ext-private"; packageName = "@ot-builder/io-bin-ext-private"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.4.tgz"; - sha512 = "r0NEJHb+3XduOnjr9qOuTkUiOM+eJVSGZ1pvPumQXDlMJlz+VQsHop7MD1pSCKS/modXN1hKBo6BBki3gty7/A=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.5.tgz"; + sha512 = "kuybGd55HbVW+6E05yZLmR98IhH+BiwjHgyOq2+/DiD5iSE/SCqtqHJ7Gs94UfJp16PaCCnWDXjcJdkSPMhqKg=="; }; }; - "@ot-builder/io-bin-font-1.5.4" = { + "@ot-builder/io-bin-font-1.5.5" = { name = "_at_ot-builder_slash_io-bin-font"; packageName = "@ot-builder/io-bin-font"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.4.tgz"; - sha512 = "rcJ9qe0S4dBWMRXYh3Gi9lqgiW1qWCmNOAyjEoNYOcAUoXFasRuP+JNMu3sUM/Yi8eOGtkrnU2nq+T392/4nZA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.5.tgz"; + sha512 = "JCAYsJIXiV0nYrWZHK9WV1YgGkz+nNbngziQyTNoO4qp8qmrvuc0cCwd6TOwuBapgfd7WJTyW2h5RVqbICxZ3g=="; }; }; - "@ot-builder/io-bin-glyph-store-1.5.4" = { + "@ot-builder/io-bin-glyph-store-1.5.5" = { name = "_at_ot-builder_slash_io-bin-glyph-store"; packageName = "@ot-builder/io-bin-glyph-store"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.4.tgz"; - sha512 = "/lv2HLCSOlpPKctycCz+PAoUL8jZ2Ysk7XD9g2oi/eu7N5Tc9OKMQ38Xb9uR8AVSWUKb/COUcflCg3PCgwaQJA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.5.tgz"; + sha512 = "9NurbkwdnmlnHEKzFRcrwleTU2PL8T++Gjl8TqDUZ+O2+RoNDOjZ8j0JnARv6+yj7w1+uFZlrdDd2r+/Hox5bQ=="; }; }; - "@ot-builder/io-bin-layout-1.5.4" = { + "@ot-builder/io-bin-layout-1.5.5" = { name = "_at_ot-builder_slash_io-bin-layout"; packageName = "@ot-builder/io-bin-layout"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.4.tgz"; - sha512 = "5KJb4MTnpxbr9W9hCJWzYRw3OM9f6x5TeZPZMHDS1XL9L0dvq2+SxGBWjB5BgpLMpJ6mlY1LRj9FmNiFXL/CJQ=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.5.tgz"; + sha512 = "mbI3XHVw++lUJPxtiUEBP+Cxxr38cJ9fdENH00snSyBAaM4NifYUcVab51Hw1idYqGhtT+HdXUDql5fHqmGLrg=="; }; }; - "@ot-builder/io-bin-metadata-1.5.4" = { + "@ot-builder/io-bin-metadata-1.5.5" = { name = "_at_ot-builder_slash_io-bin-metadata"; packageName = "@ot-builder/io-bin-metadata"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.4.tgz"; - sha512 = "hjg8S/Xn8Vj9wUfksGehqjFkqXfJV6OSZGg7cmJrTwhCQEIwOnD9rtzlAKhPKjrPp2eEC2hlKIzdowWsSQS0nw=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.5.tgz"; + sha512 = "avWLjS2IQ/g1qv+rDDuNovuu7lvmQSOr6rShk9uJNcSXU+w54n0auWquLyok42RFoW7YYmmPebgsJsTypSEUDQ=="; }; }; - "@ot-builder/io-bin-metric-1.5.4" = { + "@ot-builder/io-bin-metric-1.5.5" = { name = "_at_ot-builder_slash_io-bin-metric"; packageName = "@ot-builder/io-bin-metric"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.4.tgz"; - sha512 = "KEoSB0AswO8pfFT0rSiXUJak3K1g66ZGI50jf9GKOvK9V6nG9apOqAPwIc6ZnMAXfl9Air62dgrvF6QbL7iO+Q=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.5.tgz"; + sha512 = "jjfyuHLwgQhyZEHP7hHVl3jX20i3dPbmDb2E7X3GbTmW+rTxodXrHN6OqnEzT+qluK+6RcQs5jdJ5GTW9r21wA=="; }; }; - "@ot-builder/io-bin-name-1.5.4" = { + "@ot-builder/io-bin-name-1.5.5" = { name = "_at_ot-builder_slash_io-bin-name"; packageName = "@ot-builder/io-bin-name"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.4.tgz"; - sha512 = "pZ0TXgyr4kVMcbyVo9qjn3Epx//ykoUInZHmE3R2f6/u3NjXBvCmLM+WrbKf7fc+oBX2nkWacgkRrMf4L03P/w=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.5.tgz"; + sha512 = "pUjKYAXczvqsFfwki8IGJe6PkdxO28GR+4nLrIxyiK6ZSePtMjauDfTUC/mWAVHQZ0uI+tr7n9Un5BONM5PPOg=="; }; }; - "@ot-builder/io-bin-sfnt-1.5.4" = { + "@ot-builder/io-bin-sfnt-1.5.5" = { name = "_at_ot-builder_slash_io-bin-sfnt"; packageName = "@ot-builder/io-bin-sfnt"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.4.tgz"; - sha512 = "PbWoy8aqphUpU50hgsyB/wjscrR/OjN+P68O7fTXc/DsdyZUJP4ncetor1dOfAJf1zEOBr33VFc8rABDrFhPvw=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.5.tgz"; + sha512 = "SiZRMR1jXhFFPQvBZgJuOb4kSrpaWtwAOQaq13Atmxsc855rTbC5u/p7ll55lj8RGcLBsZjwsw9fe4l/0NEJDw=="; }; }; - "@ot-builder/io-bin-ttf-1.5.4" = { + "@ot-builder/io-bin-ttf-1.5.5" = { name = "_at_ot-builder_slash_io-bin-ttf"; packageName = "@ot-builder/io-bin-ttf"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.4.tgz"; - sha512 = "HSTw8DXhqfBWWfk9yToKHMUwSZZv3AAxt0LIaYHSo3Lr4HG2tqgTtpk62gc6hyiMR0d1U4JdYA5mbYPnSWMMdw=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.5.tgz"; + sha512 = "6idmtX8UHM7mqUt4J2o/I/102RksvitKlinOrvUUNj64JtS/Mjy82ugFObLPDZAhXm0CjQIuIOYDS7ULHMtQqg=="; }; }; - "@ot-builder/io-bin-vtt-private-1.5.4" = { + "@ot-builder/io-bin-vtt-private-1.5.5" = { name = "_at_ot-builder_slash_io-bin-vtt-private"; packageName = "@ot-builder/io-bin-vtt-private"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.4.tgz"; - sha512 = "OllpfHLq63mBNxdHRuZu3UztPcBEFfA67W5S/lCQZhyay0VcMbNc/7jcRdyZXmgjkZNO+Szg82msZxookW/OBg=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.5.tgz"; + sha512 = "TAdtW8L8iBOUY8L5HfiNo1fGVKbugw4Oy0k5jomA+nob4Jt87G1MCNof03Tzudw+ncTI0WfhqMAqpp/Z5DIqIw=="; }; }; - "@ot-builder/ot-1.5.4" = { + "@ot-builder/ot-1.5.5" = { name = "_at_ot-builder_slash_ot"; packageName = "@ot-builder/ot"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.4.tgz"; - sha512 = "x/92wj1hk0MG8rmuUFwmyV5YJYEUJ6HiAgR8FPS2hQK2Ut7do5z0Ttc/eog3qBiVjnPS3Dzh1C6qLLSY3RR+mQ=="; + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.5.tgz"; + sha512 = "Kbn1lGkQi/jfKdOU/72KZe5joNLtCIkuS/+RM37OimOGSBCZqrnHyldCBv3U+ANPXREUqoBsSug4ar53fwROIQ=="; }; }; - "@ot-builder/ot-encoding-1.5.4" = { + "@ot-builder/ot-encoding-1.5.5" = { name = "_at_ot-builder_slash_ot-encoding"; packageName = "@ot-builder/ot-encoding"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.4.tgz"; - sha512 = "XbEuxSkNKd8eguFv1Qut175Xl14Gja035Aci4Vw3979AtuT2QO7wDrjLhlfbn7Xob98dXcE180r7Zpc86iP53g=="; + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.5.tgz"; + sha512 = "WvtRzUCkYZ1t6hc6tBYFdgECuYGUT2sJ00qV0RHA/4k5KfofblavvduMD7DaTjMG+CP13lK1Hf2nZthY6Sjwvg=="; }; }; - "@ot-builder/ot-ext-private-1.5.4" = { + "@ot-builder/ot-ext-private-1.5.5" = { name = "_at_ot-builder_slash_ot-ext-private"; packageName = "@ot-builder/ot-ext-private"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.4.tgz"; - sha512 = "L2L2dPhMxaqEhuDW8tMaLJnR/BAnOWvqJE16Kkm8BwLxCbVuUlznvbfLaKOQj0UmTAXhLNkOLz2ZXJ7UGBCJ7g=="; + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.5.tgz"; + sha512 = "kJ7/bR83V73+WMDE59Uy22zb4po54/gCnrUDoWTDdo8jnhri9wHtFpuL5W1RMQSsegI9PnYTFgTXwAuCmX8EBg=="; }; }; - "@ot-builder/ot-glyphs-1.5.4" = { + "@ot-builder/ot-glyphs-1.5.5" = { name = "_at_ot-builder_slash_ot-glyphs"; packageName = "@ot-builder/ot-glyphs"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.4.tgz"; - sha512 = "mH0i6sVOseqiz84RTMZqNxFcOT+dSfShHAc4Sx9gAfelFyIWcYI8djdhWeSsdDu1n9G2mGZSpbPAH+6+ZA+7+Q=="; + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.5.tgz"; + sha512 = "8BIjHFzzsRjF0N+lRzna6mwmcQS61MIBFrRY2/hKzQVNqfmXfDRKPkFhbn/5tRb1mmvqNnLM7DrnQcz2r7sMew=="; }; }; - "@ot-builder/ot-layout-1.5.4" = { + "@ot-builder/ot-layout-1.5.5" = { name = "_at_ot-builder_slash_ot-layout"; packageName = "@ot-builder/ot-layout"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.4.tgz"; - sha512 = "XgmO0vQ0MRg3KD/T11q0KQGgUiUAjod8J6LoMMkHs0/CevP4gjJr7xf21Sy1+cjxYQ1ltY9W4u2lcTgxAmS59w=="; + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.5.tgz"; + sha512 = "ABRaW09S1ynrEa61ZF5LuznpDqv6Q/zWVocrU4zaO6v42b5ZR87shbXDuYBTu10Ho+ieveMJkIgomjWWHSW4OQ=="; }; }; - "@ot-builder/ot-metadata-1.5.4" = { + "@ot-builder/ot-metadata-1.5.5" = { name = "_at_ot-builder_slash_ot-metadata"; packageName = "@ot-builder/ot-metadata"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.4.tgz"; - sha512 = "KegFbpqN9DBx5IgYtMnhxpjg5s1YqNK+y6lZs7lutLLY8Y8wHddhcPcaISho7/yqS0/rCy3NiYwDZd3hJF3n2g=="; + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.5.tgz"; + sha512 = "PHg5FS/4ayQcbRL2leT5PfWj/tw7hQsCJGYL0RNg+QvkY/IeExq+fHKzbC5HwLYZFCsVKdi5++cWM1rSaPCJIQ=="; }; }; - "@ot-builder/ot-name-1.5.4" = { + "@ot-builder/ot-name-1.5.5" = { name = "_at_ot-builder_slash_ot-name"; packageName = "@ot-builder/ot-name"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.4.tgz"; - sha512 = "qLq/atnsaBqZegvwJiTzhGxO6gVrQaohwT9V+gvNmnN/cd2V/+V+kNCOoyJM+mIphnijEAmXG5E4dqSzs+gvwA=="; + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.5.tgz"; + sha512 = "HNHZbc2TFzFyJ1FHVlxV3sGQJqGQjdlTBW4CfgVxxHhbSe59/DMsX1oiplRQ3w7kYQ6SCfU2qp1JXVSXgVBPZw=="; }; }; - "@ot-builder/ot-sfnt-1.5.4" = { + "@ot-builder/ot-sfnt-1.5.5" = { name = "_at_ot-builder_slash_ot-sfnt"; packageName = "@ot-builder/ot-sfnt"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.4.tgz"; - sha512 = "VFRA5rh23YAxckk+N1oBkt68Z2VYhZqMCh36nNBbw6C2I4P4Cqzj9I6EBncqJ+mzXnxYULx/lz+HzpHAqKMN+Q=="; + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.5.tgz"; + sha512 = "B3vMza3hSdGyOlzhIKsNVUHe6knOKpQlWuAZUQXIQCTuKdLGcDAsYBFuTEZEtLhpRzm+jSfEyGZ87V0YV2nUBg=="; }; }; - "@ot-builder/ot-standard-glyph-namer-1.5.4" = { + "@ot-builder/ot-standard-glyph-namer-1.5.5" = { name = "_at_ot-builder_slash_ot-standard-glyph-namer"; packageName = "@ot-builder/ot-standard-glyph-namer"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.4.tgz"; - sha512 = "TIOS1RlJKgRhuvFF8XX7Rr3nPvhw15yXJC5iVyuBJgJcoiQOQHg3gKAL0rHDXEHLU6nISL2q5iE8IJiahpP+UA=="; + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.5.tgz"; + sha512 = "L+quAs3jQ1I4U3byONrPp9i8jTf8YT7CuF4ONUiExGyJnK9WIvD5NaVKdI/MPkxVUb1Udc9SaBYtoUm9ImUHQQ=="; }; }; - "@ot-builder/ot-vtt-private-1.5.4" = { + "@ot-builder/ot-vtt-private-1.5.5" = { name = "_at_ot-builder_slash_ot-vtt-private"; packageName = "@ot-builder/ot-vtt-private"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.4.tgz"; - sha512 = "GTDN4M2MBudjSUuCSw9FVQUmOSZG5OGU2XIPBHFmUi0VwX/DNML3BwaQT7CpFh0MJHsGko+1PZOYlgENjO+tWA=="; + url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.5.tgz"; + sha512 = "l8lY6BD1dzlHTW93TlBLcAxxRLHUjlRuFN7w+1Akmtfq/l15AWEW3OqxzxrGAw7TX7Q9Np7HhN0QGbTYjrul3g=="; }; }; - "@ot-builder/prelude-1.5.4" = { + "@ot-builder/prelude-1.5.5" = { name = "_at_ot-builder_slash_prelude"; packageName = "@ot-builder/prelude"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.4.tgz"; - sha512 = "A0US/TENKS5VjW6haBkMRn7VNl0NS9h9Lok4H1/s0fMdB/o5e8mOueTHCfke6wmzdPB+pQIvCvA/JYS0QBNboQ=="; + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.5.tgz"; + sha512 = "sTecdvnGlYdQ6Qbu4NSyYIzil72k7gwGaVJiFRZyudNouGiurijHt5F+RiWl05U83zrlcdpcN7iiXzHfr5NnWQ=="; }; }; - "@ot-builder/primitive-1.5.4" = { + "@ot-builder/primitive-1.5.5" = { name = "_at_ot-builder_slash_primitive"; packageName = "@ot-builder/primitive"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.4.tgz"; - sha512 = "aXr4ZjbqVwpmv7Yg/MXy+6TuNUqjAchtQ4Z9P3wmWRv90cY7J0wUJi6W1XLKICCYlB3PffS5fto0qi2uMu84sg=="; + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.5.tgz"; + sha512 = "AKrFDof1e6r7K5EC71wGhOfAjujf9GuJ0g56CKGps4FfDw7CwFg77KFwpqsFWjyt6t1fmvFAlKdhVXuNyH4c2Q=="; }; }; - "@ot-builder/rectify-1.5.4" = { + "@ot-builder/rectify-1.5.5" = { name = "_at_ot-builder_slash_rectify"; packageName = "@ot-builder/rectify"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.4.tgz"; - sha512 = "mv1AvjDYgV9HHbMJGS2zSGBW6ngeXLxjx4fUX3csN8I+8j8X7ghcpQ0Bnk/AnR+GjEpQfSRZ4pNWoVcsGD1pSw=="; + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.5.tgz"; + sha512 = "nrx6Ubt7IX9IKUMJcAmNrHyi0kC83laGpnHKCGiBWGVfn/BdmFogRUGNR0NUpEImIVWTq0Y8Ae/tf/i9yI5eZQ=="; }; }; - "@ot-builder/stat-glyphs-1.5.4" = { + "@ot-builder/stat-glyphs-1.5.5" = { name = "_at_ot-builder_slash_stat-glyphs"; packageName = "@ot-builder/stat-glyphs"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.4.tgz"; - sha512 = "bX9p/wrqKk/XQpYBwzru67XHjFYgAHsAemtgVCKSEOx795yMFJCJ/G6Nlic/4Hoia17feDcf0jy1bVrL2NkJww=="; + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.5.tgz"; + sha512 = "DgWbUPy5de/2fL0JJ94UXJ5fibvDAtVWtjHUmgy38i+3vHYcQ14WPjq3sLxyOKRrrvBQ7CK7Z92N9JjBN+a5ZQ=="; }; }; - "@ot-builder/trace-1.5.4" = { + "@ot-builder/trace-1.5.5" = { name = "_at_ot-builder_slash_trace"; packageName = "@ot-builder/trace"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.4.tgz"; - sha512 = "5gwLOL311REuWB+2iCNLCPAqc9SBtWHTJATy3S2Dp0SVB8h+yn+pEkW/QxGdXNyM233JKTSuHElN+fN5/8abKw=="; + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.5.tgz"; + sha512 = "hOH55nKImSbq/5ZgZ8pya1/yIvC3IDRfqfWL/3Uz0Zp0StD6/9xhegK+9bM3Qs/llmDXZd7JYOsyWETw8f1iIg=="; }; }; - "@ot-builder/var-store-1.5.4" = { + "@ot-builder/var-store-1.5.5" = { name = "_at_ot-builder_slash_var-store"; packageName = "@ot-builder/var-store"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.4.tgz"; - sha512 = "0RL9S+OCfeQrh1eC1yh8BaQiyvdLmbCN7uBaFS5KrUz2V2XO5kQCwzz6NERETWXmieUfzFbfqyFKcBIinLTz0A=="; + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.5.tgz"; + sha512 = "H18j0yR9qrwXC665lHDq07DBRKkxxlB3mcjUXYX8xElkv/UcD42FOI5lTlvLYV39e3f8uBTf9IhVYPNTYtZHmg=="; }; }; - "@ot-builder/variance-1.5.4" = { + "@ot-builder/variance-1.5.5" = { name = "_at_ot-builder_slash_variance"; packageName = "@ot-builder/variance"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.4.tgz"; - sha512 = "t/DabVMo+uzZgf3ZQCy5++ZVvqTgpKU+5bG/nXWSkmX8vfJz4onJh4ded9kgjcb+nmbT0j3avS91lVPq5g6hWQ=="; + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.5.tgz"; + sha512 = "Jp20Ro43mLR32erJkLolduF1Q+jBYwDJitcEaGztVEmNGLbJNHb++jFIQSswIFDUrmj/3pKgret4ASiLc4WIkw=="; }; }; - "@parcel/bundler-default-2.7.0" = { + "@parcel/bundler-default-2.8.0" = { name = "_at_parcel_slash_bundler-default"; packageName = "@parcel/bundler-default"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.7.0.tgz"; - sha512 = "PU5MtWWhc+dYI9x8mguYnm9yiG6TkI7niRpxgJgtqAyGHuEyNXVBQQ0X+qyOF4D9LdankBf8uNN18g31IET2Zg=="; + url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.8.0.tgz"; + sha512 = "OvDDhxX4LwfGe7lYVMbJMzqNcDk8ydOqNw0Hra9WPgl0m5gju/eVIbDvot3JXp5F96FmV36uCxdODJhKTNoAzQ=="; }; }; - "@parcel/cache-2.7.0" = { + "@parcel/cache-2.8.0" = { name = "_at_parcel_slash_cache"; packageName = "@parcel/cache"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.7.0.tgz"; - sha512 = "JlXNoZXcWzLKdDlfeF3dIj5Vtel5T9vtdBN72PJ+cjC4qNHk4Uwvc5sfOBELuibGN0bVu2bwY9nUgSwCiB1iIA=="; + url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.8.0.tgz"; + sha512 = "k945hrafMDR2wyCKyZYgwypeLLuZWce6FzhgunI4taBUeVnNCcpFAWzbfOVQ39SqZTGDqG3MNT+VuehssHXxyg=="; }; }; - "@parcel/codeframe-2.7.0" = { + "@parcel/codeframe-2.8.0" = { name = "_at_parcel_slash_codeframe"; packageName = "@parcel/codeframe"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.7.0.tgz"; - sha512 = "UTKx0jejJmmO1dwTHSJuRgrO8N6PMlkxRT6sew8N6NC3Bgv6pu0EbO+RtlWt/jCvzcdLOPdIoTzj4MMZvgcMYg=="; + url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.8.0.tgz"; + sha512 = "821d+KVcpEvJNMj9WMC39xXZK6zvRS/HUjQag2f3DkcRcZwk1uXJZdW6p1EB7C3e4e/0KSK3NTSVGEvbOSR+9w=="; }; }; - "@parcel/compressor-raw-2.7.0" = { + "@parcel/compressor-raw-2.8.0" = { name = "_at_parcel_slash_compressor-raw"; packageName = "@parcel/compressor-raw"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.7.0.tgz"; - sha512 = "SCXwnOOQT6EmpusBsYWNQ/RFri+2JnKuE0gMSf2dROl2xbererX45FYzeDplWALCKAdjMNDpFwU+FyMYoVZSCQ=="; + url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.8.0.tgz"; + sha512 = "tM49t0gDQnwJbrDCeoCn9LRc8inZ/TSPQTttJTfcmFHHFqEllI0ZDVG0AiQw5NOMQbBLYiKun1adXn8pkcPLEA=="; }; }; - "@parcel/config-default-2.7.0" = { + "@parcel/config-default-2.8.0" = { name = "_at_parcel_slash_config-default"; packageName = "@parcel/config-default"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.7.0.tgz"; - sha512 = "ZzsLr97AYrz8c9k6qn3DlqPzifi3vbP7q3ynUrAFxmt0L4+K0H9N508ZkORYmCgaFjLIQ8Y3eWpwCJ0AewPNIg=="; + url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.8.0.tgz"; + sha512 = "j9g50QNSLjuNpY0TP01EgGJPxWNes9d+e8+N07Z5Wv0u+UUnJ2uIOpo7PVn7ullOGhm1f9lP4KsJenu5gWb+cg=="; }; }; - "@parcel/core-2.7.0" = { + "@parcel/core-2.8.0" = { name = "_at_parcel_slash_core"; packageName = "@parcel/core"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/core/-/core-2.7.0.tgz"; - sha512 = "7yKZUdh314Q/kU/9+27ZYTfcnXS6VYHuG+iiUlIohnvUUybxLqVJhdMU9Q+z2QcPka1IdJWz4K4Xx0y6/4goyg=="; + url = "https://registry.npmjs.org/@parcel/core/-/core-2.8.0.tgz"; + sha512 = "udzbe3jjbpfKlRE9pdlROAa+lvAjS1L/AzN6r2j1y/Fsn7ze/NfvnCFw6o2YNIrXg002aQ7M1St/x1fdGfmVKA=="; }; }; - "@parcel/css-1.14.0" = { - name = "_at_parcel_slash_css"; - packageName = "@parcel/css"; - version = "1.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css/-/css-1.14.0.tgz"; - sha512 = "r5tJWe6NF6lesfPw1N3g7N7WUKpHqi2ONnw9wl5ccSGGIxkmgcPaPQxfvmhdjXvQnktSuIOR0HjQXVXu+/en/w=="; - }; - }; - "@parcel/diagnostic-2.7.0" = { + "@parcel/diagnostic-2.8.0" = { name = "_at_parcel_slash_diagnostic"; packageName = "@parcel/diagnostic"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.7.0.tgz"; - sha512 = "pdq/cTwVoL0n8yuDCRXFRSQHVWdmmIXPt3R3iT4KtYDYvOrMT2dLPT79IMqQkhYPANW8GuL15n/WxRngfRdkug=="; + url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.8.0.tgz"; + sha512 = "ERnk0zDvm0jQUSj1M+2PLiwVC6nWrtuFEuye6VGuxRDcp9NHbz6gwApeEYxFkPsb3TQPhNjnXXm5nmAw1bpWWw=="; }; }; - "@parcel/events-2.7.0" = { + "@parcel/events-2.8.0" = { name = "_at_parcel_slash_events"; packageName = "@parcel/events"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/events/-/events-2.7.0.tgz"; - sha512 = "kQDwMKgZ1U4M/G17qeDYF6bW5kybluN6ajYPc7mZcrWg+trEI/oXi81GMFaMX0BSUhwhbiN5+/Vb2wiG/Sn6ig=="; + url = "https://registry.npmjs.org/@parcel/events/-/events-2.8.0.tgz"; + sha512 = "xqSZYY3oONM4IZm9+vhyFqX+KFIl145veIczUikwGJlcJZQfAAw736syPx6ecpB+m1EVg3AlvJWy7Lmel4Ak+Q=="; }; }; "@parcel/fs-1.11.0" = { @@ -9337,40 +9292,40 @@ let sha512 = "86RyEqULbbVoeo8OLcv+LQ1Vq2PKBAvWTU9fCgALxuCTbbs5Ppcvll4Vr+Ko1AnmMzja/k++SzNAwJfeQXVlpA=="; }; }; - "@parcel/fs-2.7.0" = { + "@parcel/fs-2.8.0" = { name = "_at_parcel_slash_fs"; packageName = "@parcel/fs"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.7.0.tgz"; - sha512 = "PU5fo4Hh8y03LZgemgVREttc0wyHQUNmsJCybxTB7EjJie2CqJRumo+DFppArlvdchLwJdc9em03yQV/GNWrEg=="; + url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.8.0.tgz"; + sha512 = "v3DbJlpl8v2/VRlZPw7cy+0myi0YfLblGZcwDvqIsWS35qyxD2rmtYV8u1BusonbgmJeaKiopSECmJkumt0jCw=="; }; }; - "@parcel/fs-search-2.7.0" = { + "@parcel/fs-search-2.8.0" = { name = "_at_parcel_slash_fs-search"; packageName = "@parcel/fs-search"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.7.0.tgz"; - sha512 = "K1Hv25bnRpwQVA15RvcRuB8ZhfclnCHA8N8L6w7Ul1ncSJDxCIkIAc5hAubYNNYW3kWjCC2SOaEgFKnbvMllEQ=="; + url = "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.8.0.tgz"; + sha512 = "yo7/Y8DCFlhOlIBb5SsRDTkM+7g0DY9sK57iw3hn2z1tGoIiIRptrieImFYSizs7HfDwDY/PMLfORmUdoReDzQ=="; }; }; - "@parcel/graph-2.7.0" = { + "@parcel/graph-2.8.0" = { name = "_at_parcel_slash_graph"; packageName = "@parcel/graph"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/graph/-/graph-2.7.0.tgz"; - sha512 = "Q6E94GS6q45PtsZh+m+gvFRp/N1Qopxhu2sxjcWsGs5iBd6IWn2oYLWOH5iVzEjWuYpW2HkB08lH6J50O63uOA=="; + url = "https://registry.npmjs.org/@parcel/graph/-/graph-2.8.0.tgz"; + sha512 = "JvAyvBpGmhZ30bi+hStQr52eu+InfJBoiN9Z/32byIWhXEl02EAOwfsPqAe+FGCsdgXnnCGg5F9ZCqwzZ9dwbw=="; }; }; - "@parcel/hash-2.7.0" = { + "@parcel/hash-2.8.0" = { name = "_at_parcel_slash_hash"; packageName = "@parcel/hash"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/hash/-/hash-2.7.0.tgz"; - sha512 = "k6bSKnIlPJMPU3yjQzfgfvF9zuJZGOAlJgzpL4BbWvdbE8BTdjzLcFn0Ujrtud94EgIkiXd22sC2HpCUWoHGdA=="; + url = "https://registry.npmjs.org/@parcel/hash/-/hash-2.8.0.tgz"; + sha512 = "KV1+96t7Nukth5K7ldUXjVr8ZTH9Dohl49K0Tc+5Qkysif0OxwcDtpVDmcnrUnWmqdBX0AdoLY0Q2Nnly89n/w=="; }; }; "@parcel/logger-1.11.1" = { @@ -9382,211 +9337,211 @@ let sha512 = "9NF3M6UVeP2udOBDILuoEHd8VrF4vQqoWHEafymO1pfSoOMfxrSJZw1MfyAAIUN/IFp9qjcpDCUbDZB+ioVevA=="; }; }; - "@parcel/logger-2.7.0" = { + "@parcel/logger-2.8.0" = { name = "_at_parcel_slash_logger"; packageName = "@parcel/logger"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.7.0.tgz"; - sha512 = "qjMY/bYo38+o+OiIrTRldU9CwL1E7J72t+xkTP8QIcUxLWz5LYR0YbynZUVulmBSfqsykjjxCy4a+8siVr+lPw=="; + url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.8.0.tgz"; + sha512 = "W+7rKsLxLUX6xRmP8PhGWcG48PqrzTPeMWpgSds5nXxAHEFh4cYbkwPKGoTU65a9xUDVyqNreHNIKyizgwAZHQ=="; }; }; - "@parcel/markdown-ansi-2.7.0" = { + "@parcel/markdown-ansi-2.8.0" = { name = "_at_parcel_slash_markdown-ansi"; packageName = "@parcel/markdown-ansi"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.7.0.tgz"; - sha512 = "ipOX0D6FVZFEXeb/z8MnTMq2RQEIuaILY90olVIuHEFLHHfOPEn+RK3u13HA1ChF5/9E3cMD79tu6x9JL9Kqag=="; + url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.8.0.tgz"; + sha512 = "xItzXmc3btFhJXsIbE946iaqE6STd2xe5H0zSIaZVXEeucCtMzcd4hxRELquxPstlrAOrrp/lrRpbAlMhso9iA=="; }; }; - "@parcel/namer-default-2.7.0" = { + "@parcel/namer-default-2.8.0" = { name = "_at_parcel_slash_namer-default"; packageName = "@parcel/namer-default"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.7.0.tgz"; - sha512 = "lIKMdsmi//7fepecNDYmJYzBlL91HifPsX03lJCdu1dC6q5fBs+gG0XjKKG7yPnSCw1qH/4m7drzt9+dRZYAHQ=="; + url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.8.0.tgz"; + sha512 = "cVCx2kJA/Bv7O9pVad1UOibaybR/B+QdWV8Ols8HH4lC2gyjLBXEIR0uuPSEbkGwMEcofG6zA3MwsoPa6r5lBg=="; }; }; - "@parcel/node-resolver-core-2.7.0" = { + "@parcel/node-resolver-core-2.8.0" = { name = "_at_parcel_slash_node-resolver-core"; packageName = "@parcel/node-resolver-core"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.7.0.tgz"; - sha512 = "5UJQHalqMxdhJIs2hhqQzFfQpF7+NAowsRq064lYtiRvcD8wMr3OOQ9wd1iazGpFSl4JKdT7BwDU9/miDJmanQ=="; + url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.8.0.tgz"; + sha512 = "cECSh08NSRt1csmmMeKxlnO6ZhXRTuRijkHKFa4iG5hPL+3Cu04YGhuK/QWlP5vNCPVrH3ISlhzlPU5fAi/nEg=="; }; }; - "@parcel/optimizer-css-2.7.0" = { + "@parcel/optimizer-css-2.8.0" = { name = "_at_parcel_slash_optimizer-css"; packageName = "@parcel/optimizer-css"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.7.0.tgz"; - sha512 = "IfnOMACqhcAclKyOW9X9JpsknB6OShk9OVvb8EvbDTKHJhQHNNmzE88OkSI/pS3ZVZP9Zj+nWcVHguV+kvDeiQ=="; + url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.8.0.tgz"; + sha512 = "T5r3gZVm1xFw6l//iLkzLDUvFzNTUvL5kAtyU5gS5yH/dg7eCS09Km/c2anViQnmXwFUt7zIlBovj1doxAVNSw=="; }; }; - "@parcel/optimizer-htmlnano-2.7.0" = { + "@parcel/optimizer-htmlnano-2.8.0" = { name = "_at_parcel_slash_optimizer-htmlnano"; packageName = "@parcel/optimizer-htmlnano"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.7.0.tgz"; - sha512 = "5QrGdWS5Hi4VXE3nQNrGqugmSXt68YIsWwKRAdarOxzyULSJS3gbCiQOXqIPRJobfZjnSIcdtkyxSiCUe1inIA=="; + url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.8.0.tgz"; + sha512 = "NxEKTRvue/WAU+XbQGfNIU6c7chDekdkwwv9YnCxHEOhnBu4Ok+2tdmCtPuA+4UUNszGxXlaHMnqSrjmqX2S6Q=="; }; }; - "@parcel/optimizer-image-2.7.0" = { + "@parcel/optimizer-image-2.8.0" = { name = "_at_parcel_slash_optimizer-image"; packageName = "@parcel/optimizer-image"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.7.0.tgz"; - sha512 = "EnaXz5UjR67FUu0BEcqZTT9LsbB/iFAkkghCotbnbOuC5QQsloq6tw54TKU3y+R3qsjgUoMtGxPcGfVoXxZXYw=="; + url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.8.0.tgz"; + sha512 = "66eSoCCGZVRiY6U4OqqYrhQcBcHI9cOkIEbxadZYOF4cJhsskjUDJR0jLb4j2PE6QxUNYlyj5OglQqRLwhz7vA=="; }; }; - "@parcel/optimizer-svgo-2.7.0" = { + "@parcel/optimizer-svgo-2.8.0" = { name = "_at_parcel_slash_optimizer-svgo"; packageName = "@parcel/optimizer-svgo"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.7.0.tgz"; - sha512 = "IO1JV4NpfP3V7FrhsqCcV8pDQIHraFi1/ZvEJyssITxjH49Im/txKlwMiQuZZryAPn8Xb8g395Muawuk6AK6sg=="; + url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.8.0.tgz"; + sha512 = "qQzM32CzJJuniFaTZDspVn/Vtz/PJ/f89+FckLpWZJVWNihgwTHC1/F0YTDH8g6czNw5ZijwQ3xBVuJQYyIXsQ=="; }; }; - "@parcel/optimizer-terser-2.7.0" = { + "@parcel/optimizer-terser-2.8.0" = { name = "_at_parcel_slash_optimizer-terser"; packageName = "@parcel/optimizer-terser"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.7.0.tgz"; - sha512 = "07VZjIO8xsl2/WmS/qHI8lI/cpu47iS9eRpqwfZEEsdk1cfz50jhWkmFudHBxiHGMfcZ//1+DdaPg9RDBWZtZA=="; + url = "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.8.0.tgz"; + sha512 = "slS6GWQ3u418WtJmlqlA5Njljcq4OaEdDDR2ifEwltG8POv+hsvD5AAoM2XB0GJwY97TQtdMbBu2DuDF3yM/1Q=="; }; }; - "@parcel/package-manager-2.7.0" = { + "@parcel/package-manager-2.8.0" = { name = "_at_parcel_slash_package-manager"; packageName = "@parcel/package-manager"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.7.0.tgz"; - sha512 = "wmfSX1mRrTi8MeA4KrnPk/x7zGUsILCQmTo6lA4gygzAxDbM1pGuyFN8/Kt0y0SFO2lbljARtD/4an5qdotH+Q=="; + url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.8.0.tgz"; + sha512 = "n4FgerAX1lTKKTgxmiocnos47Y+b0L60iwU6Q4cC2n4KQNRuNyfhxFXwWcqHstR9wa72JgPaDgo4k0l3Bk8FZw=="; }; }; - "@parcel/packager-css-2.7.0" = { + "@parcel/packager-css-2.8.0" = { name = "_at_parcel_slash_packager-css"; packageName = "@parcel/packager-css"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.7.0.tgz"; - sha512 = "44nzZwu+ssGuiFmYM6cf/Y4iChiUZ4DUzzpegnGlhXtKJKe4NHntxThJynuRZWKN2AAf48avApDpimg2jW0KDw=="; + url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.8.0.tgz"; + sha512 = "tv/Bto0P6fXjqQ9uCZ8/6b/+38Zr/N2MC7/Nbflzww/lp0k2+kkE9MVJJDr5kST/SzTBRrhbDo+yTbtdZikJYg=="; }; }; - "@parcel/packager-html-2.7.0" = { + "@parcel/packager-html-2.8.0" = { name = "_at_parcel_slash_packager-html"; packageName = "@parcel/packager-html"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.7.0.tgz"; - sha512 = "Zgqd7sdcY/UnR370GR0q2ilmEohUDXsO8A1F28QCJzIsR1iCB6KRUT74+pawfQ1IhXZLaaFLLYe0UWcfm0JeXg=="; + url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.8.0.tgz"; + sha512 = "4x09v/bt767rxwGTuEw82CjheoOtIKNu4sx1gqwQOz9QowKPniXOIaD+0XmLiARdzRErucf0sL19QHfNcPAhUw=="; }; }; - "@parcel/packager-js-2.7.0" = { + "@parcel/packager-js-2.8.0" = { name = "_at_parcel_slash_packager-js"; packageName = "@parcel/packager-js"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.7.0.tgz"; - sha512 = "wTRdM81PgRVDzWGXdWmqLwguWnTYWzhEDdjXpW2n8uMOu/CjHhMtogk65aaYk3GOnq6OBL/NsrmBiV/zKPj1vA=="; + url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.8.0.tgz"; + sha512 = "Tn2EtWM1TEdj4t5pt0QjBDzqrXrfRTL3WsdMipZwDSuX04KS0jedJINHjh46HOMwyfJxLbUg3xkGX7F5mYQj5g=="; }; }; - "@parcel/packager-raw-2.7.0" = { + "@parcel/packager-raw-2.8.0" = { name = "_at_parcel_slash_packager-raw"; packageName = "@parcel/packager-raw"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.7.0.tgz"; - sha512 = "jg2Zp8dI5VpIQlaeahXDCfrPN9m/DKht1NkR9P2CylMAwqCcc1Xc1RRiF0wfwcPZpPMpq1265n+4qnB7rjGBlA=="; + url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.8.0.tgz"; + sha512 = "s3VniER3X2oNTlfytBGIQF+UZFVNLFWuVu1IkZ8Wg6uYQffrExDlbNDcmFCDcfvcejL3Ch5igP+L6N00f6+wAQ=="; }; }; - "@parcel/packager-svg-2.7.0" = { + "@parcel/packager-svg-2.8.0" = { name = "_at_parcel_slash_packager-svg"; packageName = "@parcel/packager-svg"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.7.0.tgz"; - sha512 = "EmJg3HpD6/xxKBjir/CdCKJZwI24iVfBuxRS9LUp3xHAIebOzVh1z6IN+i2Di5+NyRwfOFaLliL4uMa1zwbyCA=="; + url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.8.0.tgz"; + sha512 = "+BSpdPiNjlAne28nOjG2AyiOejAehe/+X9MxL2FIpPP7UBLNc2ekaM0mDTR5iY45YtZa57oyErBT/U6wZ1TCjw=="; }; }; - "@parcel/plugin-2.7.0" = { + "@parcel/plugin-2.8.0" = { name = "_at_parcel_slash_plugin"; packageName = "@parcel/plugin"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.7.0.tgz"; - sha512 = "qqgx+nnMn6/0lRc4lKbLGmhNtBiT93S2gFNB4Eb4Pfz/SxVYoW+fmml+KdfOSiZffWOAH5L6NwhyD7N8aSikzw=="; + url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.8.0.tgz"; + sha512 = "Tsf+7nDg7KauvTVY6rGc7CmgJruKSwJ54KJ9s5nYFFP9nfwmyqbayCi9xOxicWU9zIHfuF5Etwf17lcA0oAvzw=="; }; }; - "@parcel/reporter-cli-2.7.0" = { + "@parcel/reporter-cli-2.8.0" = { name = "_at_parcel_slash_reporter-cli"; packageName = "@parcel/reporter-cli"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.7.0.tgz"; - sha512 = "80gEODg8cnAmnxGVuaSVDo8JJ54P9AA2bHwSs1cIkHWlJ3BjDQb83H31bBHncJ5Kn5kQ/j+7WjlqHpTCiOR9PA=="; + url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.8.0.tgz"; + sha512 = "ea4/Lp+2jDbzb/tfTgUKzYU51FK8wcewDoYNr06uL+wvx/vzYIDG0jHfzaOTasREnm7ECDr1Zu2Iknrgk1STqQ=="; }; }; - "@parcel/reporter-dev-server-2.7.0" = { + "@parcel/reporter-dev-server-2.8.0" = { name = "_at_parcel_slash_reporter-dev-server"; packageName = "@parcel/reporter-dev-server"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.7.0.tgz"; - sha512 = "ySuou5addK8fGue8aXzo536BaEjMujDrEc1xkp4TasInXHVcA98b+SYX5NAZTGob5CxKvZQ5ylhg77zW30B+iA=="; + url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.8.0.tgz"; + sha512 = "wg6hUrQ8vUmvlP2fg8YEzYndmq7hWZ21ZgBv4So1Z65I+Qav85Uox7bjGLCSJwEAjdjFKfhV9RGULGzqh8vcAQ=="; }; }; - "@parcel/resolver-default-2.7.0" = { + "@parcel/resolver-default-2.8.0" = { name = "_at_parcel_slash_resolver-default"; packageName = "@parcel/resolver-default"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.7.0.tgz"; - sha512 = "v8TvWsbLK7/q7n4gv6OrYNbW18xUx4zKbVMGZb1u4yMhzEH4HFr1D9OeoTq3jk+ximAigds8B6triQbL5exF7A=="; + url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.8.0.tgz"; + sha512 = "kO5W+O3Ql6NXNFS6lvfSSt1R+PxO1atNLYxZdVSM6+QQxRMiztfqzZs//RM+oUp+af6muDSUPlNs+RORX0fing=="; }; }; - "@parcel/runtime-browser-hmr-2.7.0" = { + "@parcel/runtime-browser-hmr-2.8.0" = { name = "_at_parcel_slash_runtime-browser-hmr"; packageName = "@parcel/runtime-browser-hmr"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.7.0.tgz"; - sha512 = "PLbMLdclQeYsi2LkilZVGFV1n3y55G1jaBvby4ekedUZjMw3SWdMY2tDxgSDdFWfLCnYHJXdGUQSzGGi1kPzjA=="; + url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.8.0.tgz"; + sha512 = "zV5wGGvm1cDwWAzkwPUaKh6inWYKxq67YWY4G396PXLMxddM9SQC1c7iFM60OPnD4A+BMOLOy7N6//20h15Dlg=="; }; }; - "@parcel/runtime-js-2.7.0" = { + "@parcel/runtime-js-2.8.0" = { name = "_at_parcel_slash_runtime-js"; packageName = "@parcel/runtime-js"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.7.0.tgz"; - sha512 = "9/YUZTBNrSN2H6rbz/o1EOM0O7I3ZR/x9IDzxjJBD6Mi+0uCgCD02aedare/SNr1qgnbZZWmhpOzC+YgREcfLA=="; + url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.8.0.tgz"; + sha512 = "IwT1rX8ZamoYZv0clfswZemfXcIfk+YXwNsqXwzzh6TaMGagj/ZZl1llkn7ERQFq4EoLEoDGGkxqsrJjBp9NDQ=="; }; }; - "@parcel/runtime-react-refresh-2.7.0" = { + "@parcel/runtime-react-refresh-2.8.0" = { name = "_at_parcel_slash_runtime-react-refresh"; packageName = "@parcel/runtime-react-refresh"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.7.0.tgz"; - sha512 = "vDKO0rWqRzEpmvoZ4kkYUiSsTxT5NnH904BFPFxKI0wJCl6yEmPuEifmATo73OuYhP6jIP3Qfl1R4TtiDFPJ1Q=="; + url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.8.0.tgz"; + sha512 = "a6uuZWkl+mJur2WLZKmpEqq1P06tvRwqGefYbE26DWpwXwU9dLpfnv/nT0hqCmVDHd2TkMyCffolSmq1vY05ew=="; }; }; - "@parcel/runtime-service-worker-2.7.0" = { + "@parcel/runtime-service-worker-2.8.0" = { name = "_at_parcel_slash_runtime-service-worker"; packageName = "@parcel/runtime-service-worker"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.7.0.tgz"; - sha512 = "uD2pAV0yV6+e7JaWH4KVPbG+zRCrxr/OACyS9tIh+Q/R1vRmh8zGM3yhdrcoiZ7tFOnM72vd6xY11eTrUsSVig=="; + url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.8.0.tgz"; + sha512 = "Q3Q2O/axQbFi/5Z+BidLB3qhmYdZLTMDagZtsmyH7CktDkZVNV/0UoOGYlqoK06T4cww3XjLSEomXbBu9TlQKQ=="; }; }; "@parcel/source-map-2.1.1" = { @@ -9598,112 +9553,112 @@ let sha512 = "Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew=="; }; }; - "@parcel/transformer-babel-2.7.0" = { + "@parcel/transformer-babel-2.8.0" = { name = "_at_parcel_slash_transformer-babel"; packageName = "@parcel/transformer-babel"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.7.0.tgz"; - sha512 = "7iklDXXnKH1530+QbI+e4kIJ+Q1puA1ulRS10db3aUJMj5GnvXGDFwhSZ7+T1ps66QHO7cVO29VlbqiRDarH1Q=="; + url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.8.0.tgz"; + sha512 = "ie+wFe9pucdnRyX2PTN9amOHrhr/IOwUEAfTz/3dPydOYCuX7ErEngCpI9fBzdYE2AV6/noEwC2Mjeoyz9mT2A=="; }; }; - "@parcel/transformer-css-2.7.0" = { + "@parcel/transformer-css-2.8.0" = { name = "_at_parcel_slash_transformer-css"; packageName = "@parcel/transformer-css"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.7.0.tgz"; - sha512 = "J4EpWK9spQpXyNCmKK8Xnane0xW/1B/EAmfp7Fiv7g+5yUjY4ODf4KUugvE+Eb2gekPkhOKNHermO2KrX0/PFA=="; + url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.8.0.tgz"; + sha512 = "jCMQSfsxCoepblBAHCYMuNWNPQlqasoD6PfNftMdTlv12aUcnjNIYO9600TVLTL799CrEohljbXcfFn6hDGVWw=="; }; }; - "@parcel/transformer-html-2.7.0" = { + "@parcel/transformer-html-2.8.0" = { name = "_at_parcel_slash_transformer-html"; packageName = "@parcel/transformer-html"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.7.0.tgz"; - sha512 = "wYJl5rn81W+Rlk9oQwDJcjoVsWVDKyeri84FzmlGXOsg0EYgnqOiG+3MDM8GeZjfuGe5fuoum4eqZeS0WdUHXw=="; + url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.8.0.tgz"; + sha512 = "KLcZCWSIItZ1s12Sav3uvfTrwhX92craN9u7V3qUs8ld7ompTKsCdnf+gYmeCyISb5yiFDyYBvTGc1bOXvaDRQ=="; }; }; - "@parcel/transformer-image-2.7.0" = { + "@parcel/transformer-image-2.8.0" = { name = "_at_parcel_slash_transformer-image"; packageName = "@parcel/transformer-image"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.7.0.tgz"; - sha512 = "mhi9/R5/ULhCkL2COVIKhNFoLDiZwQgprdaTJr5fnODggVxEX5o7ebFV6KNLMTEkwZUJWoB1hL0ziI0++DtoFA=="; + url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.8.0.tgz"; + sha512 = "hJGsZxGlGEkiUvN8kCxA4DhB6/WrHzcIlZZYEgEien9pLctyc6np6idjdcyudPAhH3LwBPkiyeUfCvLAOA1zkA=="; }; }; - "@parcel/transformer-js-2.7.0" = { + "@parcel/transformer-js-2.8.0" = { name = "_at_parcel_slash_transformer-js"; packageName = "@parcel/transformer-js"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.7.0.tgz"; - sha512 = "mzerR+D4rDomUSIk5RSTa2w+DXBdXUeQrpDO74WCDdpDi1lIl8ppFpqtmU7O6y6p8QsgkmS9b0g/vhcry6CJTA=="; + url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.8.0.tgz"; + sha512 = "C5WTkDRiJGBB9tZa1mBsZwsqZjYEKkOa4mdVym3dMokwhFLUga8WtK7kGw4fmXIq41U8ip4orywj+Rd4mvGVWg=="; }; }; - "@parcel/transformer-json-2.7.0" = { + "@parcel/transformer-json-2.8.0" = { name = "_at_parcel_slash_transformer-json"; packageName = "@parcel/transformer-json"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.7.0.tgz"; - sha512 = "RQjuxBpYOch+kr4a0zi77KJtOLTPYRM7iq4NN80zKnA0r0dwDUCxZBtaj2l0O0o3R4MMJnm+ncP+cB7XR7dZYA=="; + url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.8.0.tgz"; + sha512 = "Pp5gROSMpzFDEI6KA2APuSpft6eXZxFgTPV6Xx9pElqseod3iL5+RnpMNV/nv76Ai2bcMEiafus5Pb09vjHgbQ=="; }; }; - "@parcel/transformer-postcss-2.7.0" = { + "@parcel/transformer-postcss-2.8.0" = { name = "_at_parcel_slash_transformer-postcss"; packageName = "@parcel/transformer-postcss"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.7.0.tgz"; - sha512 = "b6RskXBWf0MjpC9qjR2dQ1ZdRnlOiKYseG5CEovWCqM218RtdydFKz7jS+5Gxkb6qBtOG7zGPONXdPe+gTILcA=="; + url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.8.0.tgz"; + sha512 = "45Ij+cgwXprd1sCLmaMIlCbPz3eEwolGHizgZmXl5l4yjlE2wGyzodhxLpBk1PWu7OxxWRbLnJIlvMYf7Vfw0g=="; }; }; - "@parcel/transformer-posthtml-2.7.0" = { + "@parcel/transformer-posthtml-2.8.0" = { name = "_at_parcel_slash_transformer-posthtml"; packageName = "@parcel/transformer-posthtml"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.7.0.tgz"; - sha512 = "cP8YOiSynWJ1ycmBlhnnHeuQb2cwmklZ+BNyLUktj5p78kDy2de7VjX+dRNRHoW4H9OgEcSF4UEfDVVz5RYIhw=="; + url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.8.0.tgz"; + sha512 = "KrkKBFDW5PNZpr2Ha711eIABQOiJQKvfwfVs3CVpJK5wSADkappDk7CQ0mISPjhamFJ6xx/sNsi7e871I8R9lg=="; }; }; - "@parcel/transformer-raw-2.7.0" = { + "@parcel/transformer-raw-2.8.0" = { name = "_at_parcel_slash_transformer-raw"; packageName = "@parcel/transformer-raw"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.7.0.tgz"; - sha512 = "sDnItWCFSDez0izK1i5cgv+kXzZTbcJh4rNpVIgmE1kBLvAz608sqgcCkavb2wVJIvLesxYM+5G4p1CwkDlZ1g=="; + url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.8.0.tgz"; + sha512 = "uEbj+kE70vg2Gmdji/AIXPK13s5aQRw7X+xWs3vNpY2oymyMRHbfx1izJFWBh+kxu6Yo6q6qsekkh2rNHEHIUA=="; }; }; - "@parcel/transformer-react-refresh-wrap-2.7.0" = { + "@parcel/transformer-react-refresh-wrap-2.8.0" = { name = "_at_parcel_slash_transformer-react-refresh-wrap"; packageName = "@parcel/transformer-react-refresh-wrap"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.7.0.tgz"; - sha512 = "1vRmIJzyBA1nIiXTAU6tZExq2FvJj/2F0ft6KDw8GYPv0KjmdiPo/PmaZ7JeSVOM6SdXQIQCbTmp1vkMP7DtkA=="; + url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.8.0.tgz"; + sha512 = "d7G6wBdlwVXLkhC7EO/3UkUOfEOJvsIsQUCEujsrdFF+nfBElXw/TZ+KP8UkmrwMdD0spU/8cKoTyi5k19vt6w=="; }; }; - "@parcel/transformer-svg-2.7.0" = { + "@parcel/transformer-svg-2.8.0" = { name = "_at_parcel_slash_transformer-svg"; packageName = "@parcel/transformer-svg"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.7.0.tgz"; - sha512 = "ioER37zceuuE+K6ZrnjCyMUWEnv+63hIAFResc1OXxRhyt+7kzMz9ZqK0Mt6QMLwl1dxhkLmrU41n9IxzKZuSQ=="; + url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.8.0.tgz"; + sha512 = "8S6yZoUTCbHOnuWY3M50fscTpI8414945I44fmed+C1e36TnWem8FifuVtGkRZeR8pokF453lmmwWG1eH/4U3w=="; }; }; - "@parcel/types-2.7.0" = { + "@parcel/types-2.8.0" = { name = "_at_parcel_slash_types"; packageName = "@parcel/types"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/types/-/types-2.7.0.tgz"; - sha512 = "+dhXVUnseTCpJvBTGMp0V6X13z6O/A/+CUtwEpMGZ8XSmZ4Gk44GvaTiBOp0bJpWG4fvCKp+UmC8PYbrDiiziw=="; + url = "https://registry.npmjs.org/@parcel/types/-/types-2.8.0.tgz"; + sha512 = "DeN3vCnVl9onjtyWxpbP7LwRslVEko4kBaM7yILsuQjEnXmaIOsqIf6FQJOUOPBtQTFFNeQQ2qyf5XoO/rkJ8g=="; }; }; "@parcel/utils-1.11.0" = { @@ -9715,13 +9670,13 @@ let sha512 = "cA3p4jTlaMeOtAKR/6AadanOPvKeg8VwgnHhOyfi0yClD0TZS/hi9xu12w4EzA/8NtHu0g6o4RDfcNjqN8l1AQ=="; }; }; - "@parcel/utils-2.7.0" = { + "@parcel/utils-2.8.0" = { name = "_at_parcel_slash_utils"; packageName = "@parcel/utils"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.7.0.tgz"; - sha512 = "jNZ5bIGg1r1RDRKi562o4kuVwnz+XJ2Ie3b0Zwrqwvgfj6AbRFIKzDd+h85dWWmcDYzKUbHp11u6VJl1u8Vapg=="; + url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.8.0.tgz"; + sha512 = "r4ACsGtW7zkMUIgwQyOVtPAFiy8L81gbz4tMIRSqyQKnkW7oEHcQ3uN1/LPxj2yfkyQLmhJxmtptLUy9j53rcw=="; }; }; "@parcel/watcher-1.12.1" = { @@ -9760,22 +9715,22 @@ let sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ=="; }; }; - "@parcel/workers-2.7.0" = { + "@parcel/workers-2.8.0" = { name = "_at_parcel_slash_workers"; packageName = "@parcel/workers"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.7.0.tgz"; - sha512 = "99VfaOX+89+RaoTSyH9ZQtkMBFZBFMvJmVJ/GeJT6QCd2wtKBStTHlaSnQOkLD/iRjJCNwV2xpZmm8YkTwV+hg=="; + url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.8.0.tgz"; + sha512 = "vAzoC/wPHLQnyy9P/TrSPftY8F3MhZqPTFi681mxVtLWA3t7wiNlw1zDVKRDP8m5XS1yQOr8Q56CAHyRexhc8g=="; }; }; - "@peculiar/asn1-schema-2.3.0" = { + "@peculiar/asn1-schema-2.3.3" = { name = "_at_peculiar_slash_asn1-schema"; packageName = "@peculiar/asn1-schema"; - version = "2.3.0"; + version = "2.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.0.tgz"; - sha512 = "DtNLAG4vmDrdSJFPe7rypkcj597chNQL7u+2dBtYo5mh7VW2+im6ke+O0NVr8W1f4re4C3F71LhoMb0Yxqa48Q=="; + url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.3.tgz"; + sha512 = "6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ=="; }; }; "@peculiar/json-schema-1.1.12" = { @@ -9850,13 +9805,13 @@ let sha512 = "SXsM27SGH3yTWKc2fKR4SYNxsmnvuBQ9dd6QHtEWmiZ/VqaOYPAIlS8+vMcn27YLtAEBGvNRSh3TPNvtjZgfqA=="; }; }; - "@pnpm/network.ca-file-1.0.1" = { + "@pnpm/network.ca-file-1.0.2" = { name = "_at_pnpm_slash_network.ca-file"; packageName = "@pnpm/network.ca-file"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.1.tgz"; - sha512 = "gkINruT2KUhZLTaiHxwCOh1O4NVnFT0wLjWFBHmTz9vpKag/C/noIMJXBxFe4F0mYpUVX2puLwAieLYFg2NvoA=="; + url = "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz"; + sha512 = "YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="; }; }; "@pnpm/npm-conf-1.0.5" = { @@ -9895,22 +9850,22 @@ let sha512 = "2OyvErMeqsJ/K1ZbQ902QowrwqXq+BMmGiL+PGqFzUQ85wmaWj+CobOwWPxBLs/xVGzacJJPt4fWcx4EMoRMkg=="; }; }; - "@prisma/engines-4.5.0" = { + "@prisma/engines-4.7.1" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "4.5.0"; + version = "4.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.5.0.tgz"; - sha512 = "4t9ir2SbQQr/wMCNU4YpHWp5hU14J2m3wHUZnGJPpmBF8YtkisxyVyQsKd1e6FyLTaGq8LOLhm6VLYHKqKNm+g=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.7.1.tgz"; + sha512 = "zWabHosTdLpXXlMefHmnouhXMoTB1+SCbUU3t4FCmdrtIOZcarPKU3Alto7gm/pZ9vHlGOXHCfVZ1G7OIrSbog=="; }; }; - "@prisma/prisma-fmt-wasm-4.5.0-43.0362da9eebca54d94c8ef5edd3b2e90af99ba452" = { + "@prisma/prisma-fmt-wasm-4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c" = { name = "_at_prisma_slash_prisma-fmt-wasm"; packageName = "@prisma/prisma-fmt-wasm"; - version = "4.5.0-43.0362da9eebca54d94c8ef5edd3b2e90af99ba452"; + version = "4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.5.0-43.0362da9eebca54d94c8ef5edd3b2e90af99ba452.tgz"; - sha512 = "MYWUyB+sk3AL/dJFdAzoGbmcYQKA3F8SzsdPUCVfH3I0FujdwbR+pabIXogOHVt8eZySiJWW7+yAWOD2GkBtoA=="; + url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c.tgz"; + sha512 = "o9oSp2c5yDWHn9TT2Ntv3cb6LuJKPBy32gTtipYH1D166KfKBy+1RkPySobWZCKV/TrkUGlcBn5vcQgRBHPvVA=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -10057,13 +10012,13 @@ let sha512 = "a8Nlw5fv2EIAFJxTDSSDVUT7yfBGpZO96ybZXzQpgkyLg/dxtQ1uiwTc0EGfzg1mrPjZokeBSEGTbGXekqTNOg=="; }; }; - "@redis/client-1.3.1" = { + "@redis/client-1.4.2" = { name = "_at_redis_slash_client"; packageName = "@redis/client"; - version = "1.3.1"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@redis/client/-/client-1.3.1.tgz"; - sha512 = "FKEHpOu7Q4+cuM6VWjA54988K5jkqOxvhvj2hEGSx086lvKwXyjzO7Lya7hcirZ0/Db8FLBJN7UXsJuyoNWPJg=="; + url = "https://registry.npmjs.org/@redis/client/-/client-1.4.2.tgz"; + sha512 = "oUdEjE0I7JS5AyaAjkD3aOXn9NhO7XKyPyXEyrgFDu++VrVBHUPnV6dgEya9TcMuj5nIJRuCzCm8ZP+c9zCHPw=="; }; }; "@redis/graph-1.0.1" = { @@ -10129,6 +10084,15 @@ let sha512 = "OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA=="; }; }; + "@redis/time-series-1.0.4" = { + name = "_at_redis_slash_time-series"; + packageName = "@redis/time-series"; + version = "1.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.4.tgz"; + sha512 = "ThUIgo2U/g7cCuZavucQTQzA9g9JbDDY2f64u3AbAoz/8vE2lt2U37LamDUVChhaDA3IRT9R6VvJwqnUfTJzng=="; + }; + }; "@redocly/ajv-8.11.0" = { name = "_at_redocly_slash_ajv"; packageName = "@redocly/ajv"; @@ -10138,13 +10102,13 @@ let sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw=="; }; }; - "@redocly/openapi-core-1.0.0-beta.112" = { + "@redocly/openapi-core-1.0.0-beta.115" = { name = "_at_redocly_slash_openapi-core"; packageName = "@redocly/openapi-core"; - version = "1.0.0-beta.112"; + version = "1.0.0-beta.115"; src = fetchurl { - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.112.tgz"; - sha512 = "VNJPQwLUvTtgsMrd4CAPnl6zJWvggHE50LCOhnQAReyo4Em7HAGYYo9v920HbIgZ5LCB6Y/f5QUTINrgYPaTkg=="; + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.115.tgz"; + sha512 = "knM3deYsnBMNnl+c2/vhg6UKA1n+77mxef3f4UNlZLyG0MHi/1NViKyUZdMstmmBInMamOkcZYy4EBh6q9H1aA=="; }; }; "@repeaterjs/repeater-3.0.4" = { @@ -10201,22 +10165,22 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@sap/hana-client-2.14.22" = { + "@sap/hana-client-2.14.23" = { name = "_at_sap_slash_hana-client"; packageName = "@sap/hana-client"; - version = "2.14.22"; + version = "2.14.23"; src = fetchurl { - url = "https://registry.npmjs.org/@sap/hana-client/-/hana-client-2.14.22.tgz"; - sha512 = "Do1VnybxssI5kAg/ti4GoEOhgU7p7R9T9/v9amzDNZMg7rC7C4LVno+x++ERTWv81pzSaSrYKkr2O/MP7OE1hA=="; + url = "https://registry.npmjs.org/@sap/hana-client/-/hana-client-2.14.23.tgz"; + sha512 = "7xeZdv7NACxkP+9mFTkBoNOscip/WiLGGfoqjITuvu5pQBxgamaa33F2xHxR9kChvRIkW1PtY3e0lzTPVargpg=="; }; }; - "@schematics/angular-14.2.8" = { + "@schematics/angular-15.0.2" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "14.2.8"; + version = "15.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.8.tgz"; - sha512 = "SuzeCpWHF9+8jey7WheM1Va0iyJrYAD88O2VT2x0NEF2PXEH63lV7BCBtE7kKurIAmXBbvTCsPyZuFKYJGDHFA=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-15.0.2.tgz"; + sha512 = "h5vTcOkJD0s+BMHRI87fVyKB+A/YqFolR7fhmhETTq2NwRg2oR0HTf7DbjVxPBwhvI5XzUV1MBPb30xXR2UG0w=="; }; }; "@segment/ajv-human-errors-2.1.2" = { @@ -10255,13 +10219,13 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.17.4" = { + "@sentry/core-7.23.0" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.17.4"; + version = "7.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.17.4.tgz"; - sha512 = "U3ABSJBKGK8dJ01nEG2+qNOb6Wv7U3VqoajiZxfV4lpPWNFGCoEhiTytxBlFTOCmdUH8209zSZiWJZaDLy+TSA=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.23.0.tgz"; + sha512 = "oNLGsscSdMs1urCbpwe868NsoJWyeTOQXOm5w2e78yE7G6zm2Ra473NQio3lweaEvjQgSGpFyEfAn/3ubZbtPw=="; }; }; "@sentry/hub-6.19.7" = { @@ -10273,13 +10237,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.17.4" = { + "@sentry/integrations-7.23.0" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.17.4"; + version = "7.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.17.4.tgz"; - sha512 = "9vL0RRLuMnj0mj61THgRhDUCgTGYbRoCT6HmLGrErHjyTG3d7lUgUwTBQPgw9qYLss1uLKoEtRvcxgtW7ef0BA=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.23.0.tgz"; + sha512 = "KbVaIRQPhGkmrdFVXS+eTM2Dvzz5skb7lnxsRF3dGfH6+EsVJfqfz/9jbAKgEDMpHtPCGJ6/369g/AgM/ljoGg=="; }; }; "@sentry/minimal-6.19.7" = { @@ -10300,13 +10264,13 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.17.4" = { + "@sentry/node-7.23.0" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.17.4"; + version = "7.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.17.4.tgz"; - sha512 = "cR+Gsir9c/tzFWxvk4zXkMQy6tNRHEYixHrb88XIjZVYDqDS9l2/bKs5nJusdmaUeLtmPp5Et2o7RJyS7gvKTQ=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.23.0.tgz"; + sha512 = "w6J+5YRsQEn55508yQYT43ahMP5IHruxq8XnFqYMFZvRohVxrZ1qTz7AMoSgc8fDcHr+LKhs1PxJIqqNwkWrFA=="; }; }; "@sentry/types-6.19.7" = { @@ -10318,13 +10282,13 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.17.4" = { + "@sentry/types-7.23.0" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.17.4"; + version = "7.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.17.4.tgz"; - sha512 = "QJj8vO4AtxuzQfJIzDnECSmoxwnS+WJsm1Ta2Cwdy+TUCBJyWpW7aIJJGta76zb9gNPGb3UcAbeEjhMJBJeRMQ=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.23.0.tgz"; + sha512 = "fZ5XfVRswVZhKoCutQ27UpIHP16tvyc6ws+xq+njHv8Jg8gFBCoOxlJxuFhegD2xxylAn1aiSHNAErFWdajbpA=="; }; }; "@sentry/utils-6.19.7" = { @@ -10336,13 +10300,13 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.17.4" = { + "@sentry/utils-7.23.0" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.17.4"; + version = "7.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.17.4.tgz"; - sha512 = "ioG0ANy8uiWzig82/e7cc+6C9UOxkyBzJDi1luoQVDH6P0/PvM8GzVU+1iUVUipf8+OL1Jh09GrWnd5wLm3XNQ=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.23.0.tgz"; + sha512 = "ad/XXH03MfgDH/7N7FjKEOVaKrfQWdMaE0nCxZCr2RrvlitlmGQmPpms95epr1CpzSU3BDRImlILx6+TlrXOgg=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -10354,121 +10318,121 @@ let sha512 = "HAFzGhk9OuFMpuor7aT5G1ChPgn5qSsklTFOTUX72Rl6p0xwcSVsRtG/xaGp6bxpN7fI9D/S8THLBWbBgS6ldw=="; }; }; - "@serialport/bindings-cpp-10.7.0" = { + "@serialport/bindings-cpp-10.8.0" = { name = "_at_serialport_slash_bindings-cpp"; packageName = "@serialport/bindings-cpp"; - version = "10.7.0"; + version = "10.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/bindings-cpp/-/bindings-cpp-10.7.0.tgz"; - sha512 = "Xx1wA2UCG2loS32hxNvWJI4smCzGKhWqE85//fLRzHoGgE1lSLe3Nk7W40/ebrlGFHWRbQZmeaIF4chb2XLliA=="; + url = "https://registry.npmjs.org/@serialport/bindings-cpp/-/bindings-cpp-10.8.0.tgz"; + sha512 = "OMQNJz5kJblbmZN5UgJXLwi2XNtVLxSKmq5VyWuXQVsUIJD4l9UGHnLPqM5LD9u3HPZgDI5w7iYN7gxkQNZJUw=="; }; }; - "@serialport/bindings-interface-1.2.1" = { + "@serialport/bindings-interface-1.2.2" = { name = "_at_serialport_slash_bindings-interface"; packageName = "@serialport/bindings-interface"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/bindings-interface/-/bindings-interface-1.2.1.tgz"; - sha512 = "63Dyqz2gtryRDDckFusOYqLYhR3Hq/M4sEdbF9i/VsvDb6T+tNVgoAKUZ+FMrXXKnCSu+hYbk+MTc0XQANszxw=="; + url = "https://registry.npmjs.org/@serialport/bindings-interface/-/bindings-interface-1.2.2.tgz"; + sha512 = "CJaUd5bLvtM9c5dmO9rPBHPXTa9R2UwpkJ0wdh9JCYcbrPWsKz+ErvR0hBLeo7NPeiFdjFO4sonRljiw4d2XiA=="; }; }; - "@serialport/parser-byte-length-10.3.0" = { + "@serialport/parser-byte-length-10.5.0" = { name = "_at_serialport_slash_parser-byte-length"; packageName = "@serialport/parser-byte-length"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-byte-length/-/parser-byte-length-10.3.0.tgz"; - sha512 = "pJ/VoFemzKRRNDHLhFfPThwP40QrGaEnm9TtwL7o2GihEPwzBg3T0bN13ew5TpbbUYZdMpUtpm3CGfl6av9rUQ=="; + url = "https://registry.npmjs.org/@serialport/parser-byte-length/-/parser-byte-length-10.5.0.tgz"; + sha512 = "eHhr4lHKboq1OagyaXAqkemQ1XyoqbLQC8XJbvccm95o476TmEdW5d7AElwZV28kWprPW68ZXdGF2VXCkJgS2w=="; }; }; - "@serialport/parser-cctalk-10.3.0" = { + "@serialport/parser-cctalk-10.5.0" = { name = "_at_serialport_slash_parser-cctalk"; packageName = "@serialport/parser-cctalk"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-cctalk/-/parser-cctalk-10.3.0.tgz"; - sha512 = "8ujmk8EvVbDPrNF4mM33bWvUYJOZ0wXbY3WCRazHRWvyCdL0VO0DQvW81ZqgoTpiDQZm5r8wQu9rmuemahF6vQ=="; + url = "https://registry.npmjs.org/@serialport/parser-cctalk/-/parser-cctalk-10.5.0.tgz"; + sha512 = "Iwsdr03xmCKAiibLSr7b3w6ZUTBNiS+PwbDQXdKU/clutXjuoex83XvsOtYVcNZmwJlVNhAUbkG+FJzWwIa4DA=="; }; }; - "@serialport/parser-delimiter-10.3.0" = { + "@serialport/parser-delimiter-10.5.0" = { name = "_at_serialport_slash_parser-delimiter"; packageName = "@serialport/parser-delimiter"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-delimiter/-/parser-delimiter-10.3.0.tgz"; - sha512 = "9E4Vj6s0UbbcCCTclwegHGPYjJhdm9qLCS0lowXQDEQC5naZnbsELemMHs93nD9jHPcyx1B4oXkMnVZLxX5TYw=="; + url = "https://registry.npmjs.org/@serialport/parser-delimiter/-/parser-delimiter-10.5.0.tgz"; + sha512 = "/uR/yT3jmrcwnl2FJU/2ySvwgo5+XpksDUR4NF/nwTS5i3CcuKS+FKi/tLzy1k8F+rCx5JzpiK+koqPqOUWArA=="; }; }; - "@serialport/parser-inter-byte-timeout-10.3.0" = { + "@serialport/parser-inter-byte-timeout-10.5.0" = { name = "_at_serialport_slash_parser-inter-byte-timeout"; packageName = "@serialport/parser-inter-byte-timeout"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-inter-byte-timeout/-/parser-inter-byte-timeout-10.3.0.tgz"; - sha512 = "wKP0QK85NHgvT6BBB1qBfKBBU4pf8kespNXAZBUYmFT+P4n8r8IZE2mqigCD+AiZcfWNQoAizwOsT/Jx/qeVig=="; + url = "https://registry.npmjs.org/@serialport/parser-inter-byte-timeout/-/parser-inter-byte-timeout-10.5.0.tgz"; + sha512 = "WPvVlSx98HmmUF9jjK6y9mMp3Wnv6JQA0cUxLeZBgS74TibOuYG3fuUxUWGJALgAXotOYMxfXSezJ/vSnQrkhQ=="; }; }; - "@serialport/parser-packet-length-10.3.0" = { + "@serialport/parser-packet-length-10.5.0" = { name = "_at_serialport_slash_parser-packet-length"; packageName = "@serialport/parser-packet-length"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-packet-length/-/parser-packet-length-10.3.0.tgz"; - sha512 = "bj0cWzt8YSQj/E5fRQVYdi4TsfTlZQrXlXrUwjyTsCONv8IPOHzsz+yY0fw5SEMiJtaLyqvPkCHLsttOd/zFsg=="; + url = "https://registry.npmjs.org/@serialport/parser-packet-length/-/parser-packet-length-10.5.0.tgz"; + sha512 = "jkpC/8w4/gUBRa2Teyn7URv1D7T//0lGj27/4u9AojpDVXsR6dtdcTG7b7dNirXDlOrSLvvN7aS5/GNaRlEByw=="; }; }; - "@serialport/parser-readline-10.3.0" = { + "@serialport/parser-readline-10.5.0" = { name = "_at_serialport_slash_parser-readline"; packageName = "@serialport/parser-readline"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-readline/-/parser-readline-10.3.0.tgz"; - sha512 = "ki3ATZ3/RAqnqGROBKE7k+OeZ0DZXZ53GTca4q71OU5RazbbNhTOBQLKLXD3v9QZXCMJdg4hGW/2Y0DuMUqMQg=="; + url = "https://registry.npmjs.org/@serialport/parser-readline/-/parser-readline-10.5.0.tgz"; + sha512 = "0aXJknodcl94W9zSjvU+sLdXiyEG2rqjQmvBWZCr8wJZjWEtv3RgrnYiWq4i2OTOyC8C/oPK8ZjpBjQptRsoJQ=="; }; }; - "@serialport/parser-ready-10.3.0" = { + "@serialport/parser-ready-10.5.0" = { name = "_at_serialport_slash_parser-ready"; packageName = "@serialport/parser-ready"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-ready/-/parser-ready-10.3.0.tgz"; - sha512 = "1owywJ4p592dJyVrEJZPIh6pUZ3/y/LN6kGTDH2wxdewRUITo/sGvDy0er5i2+dJD3yuowiAz0dOHSdz8tevJA=="; + url = "https://registry.npmjs.org/@serialport/parser-ready/-/parser-ready-10.5.0.tgz"; + sha512 = "QIf65LTvUoxqWWHBpgYOL+soldLIIyD1bwuWelukem2yDZVWwEjR288cLQ558BgYxH4U+jLAQahhqoyN1I7BaA=="; }; }; - "@serialport/parser-regex-10.3.0" = { + "@serialport/parser-regex-10.5.0" = { name = "_at_serialport_slash_parser-regex"; packageName = "@serialport/parser-regex"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-regex/-/parser-regex-10.3.0.tgz"; - sha512 = "tIogTs7CvTH+UUFnsvE7i33MSISyTPTGPWlglWYH2/5coipXY503jlaYS1YGe818wWNcSx6YAjMZRdhTWwM39w=="; + url = "https://registry.npmjs.org/@serialport/parser-regex/-/parser-regex-10.5.0.tgz"; + sha512 = "9jnr9+PCxRoLjtGs7uxwsFqvho+rxuJlW6ZWSB7oqfzshEZWXtTJgJRgac/RuLft4hRlrmRz5XU40i3uoL4HKw=="; }; }; - "@serialport/parser-slip-encoder-10.3.0" = { + "@serialport/parser-slip-encoder-10.5.0" = { name = "_at_serialport_slash_parser-slip-encoder"; packageName = "@serialport/parser-slip-encoder"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-slip-encoder/-/parser-slip-encoder-10.3.0.tgz"; - sha512 = "JI0ILF5sylWn8f0MuMzHFBix/iMUTa79/Z95KaPZYnVaEdA7h7hh/o21Jmon/26P3RJwL1SNJCjZ81zfan+LtQ=="; + url = "https://registry.npmjs.org/@serialport/parser-slip-encoder/-/parser-slip-encoder-10.5.0.tgz"; + sha512 = "wP8m+uXQdkWSa//3n+VvfjLthlabwd9NiG6kegf0fYweLWio8j4pJRL7t9eTh2Lbc7zdxuO0r8ducFzO0m8CQw=="; }; }; - "@serialport/parser-spacepacket-10.3.0" = { + "@serialport/parser-spacepacket-10.5.0" = { name = "_at_serialport_slash_parser-spacepacket"; packageName = "@serialport/parser-spacepacket"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/parser-spacepacket/-/parser-spacepacket-10.3.0.tgz"; - sha512 = "PDF73ClEPsClD1FEJZHNuBevDKsJCkqy/XD5+S5eA6+tY5D4HLrVgSWsg+3qqB6+dlpwf2CzHe+uO8D3teuKHA=="; + url = "https://registry.npmjs.org/@serialport/parser-spacepacket/-/parser-spacepacket-10.5.0.tgz"; + sha512 = "BEZ/HAEMwOd8xfuJSeI/823IR/jtnThovh7ils90rXD4DPL1ZmrP4abAIEktwe42RobZjIPfA4PaVfyO0Fjfhg=="; }; }; - "@serialport/stream-10.3.0" = { + "@serialport/stream-10.5.0" = { name = "_at_serialport_slash_stream"; packageName = "@serialport/stream"; - version = "10.3.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serialport/stream/-/stream-10.3.0.tgz"; - sha512 = "7sooi5fHogYNVEJwxVdg872xO6TuMgQd2E9iRmv+o8pk/1dbBnPkmH6Ka3st1mVE+0KnIJqVlgei+ncSsqXIGw=="; + url = "https://registry.npmjs.org/@serialport/stream/-/stream-10.5.0.tgz"; + sha512 = "gbcUdvq9Kyv2HsnywS7QjnEB28g+6OGB5Z8TLP7X+UPpoMIWoUsoQIq5Kt0ZTgMoWn3JGM2lqwTsSHF+1qhniA=="; }; }; "@serverless/dashboard-plugin-6.2.2" = { @@ -10624,13 +10588,13 @@ let sha512 = "ikwHOfJF0umx1eV/JpQDMsFxODvCSdD9zdIQVDEjcTNpfofz7+PZrjfKUFkG3iQ9mSUG3BwODv0XOEvTRNdovw=="; }; }; - "@sinonjs/commons-1.8.4" = { + "@sinonjs/commons-1.8.6" = { name = "_at_sinonjs_slash_commons"; packageName = "@sinonjs/commons"; - version = "1.8.4"; + version = "1.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.4.tgz"; - sha512 = "RpmQdHVo8hCEHDVpO39zToS9jOhR6nw+/lQAzRNq9ErrGV9IeHM71XCn68svVl/euFeVW6BWX4p35gkhbOcSIQ=="; + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz"; + sha512 = "Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ=="; }; }; "@sinonjs/fake-timers-8.1.0" = { @@ -10858,13 +10822,13 @@ let sha512 = "z46fnrvraaWMio8Y9RYYkLO+XdmtxOWpy5qNJF3CsmWua0FZ4iOTryb5Cm3GkB0wEtqxNUCBUHvoo4hS6Noyqg=="; }; }; - "@stoplight/spectral-core-1.15.1" = { + "@stoplight/spectral-core-1.16.0" = { name = "_at_stoplight_slash_spectral-core"; packageName = "@stoplight/spectral-core"; - version = "1.15.1"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.15.1.tgz"; - sha512 = "IZV8L1Hyz9759KdqJIA90W5uvurHplMmaPPIZjQzG2Bq/39kN/sbLA/Js8uOf3xB9cHBbG599t4AB+uGsI8t0g=="; + url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.16.0.tgz"; + sha512 = "W/NG+wV2UffwLExboqEa04/JbjGhiSTOl7GghLWYP4NKxZGaO6karP6fIxRBOnm34n1qyoZv9thsjSe92MWcDw=="; }; }; "@stoplight/spectral-formats-1.4.0" = { @@ -10903,22 +10867,22 @@ let sha512 = "ah6NIB/O1EdEaEu89So3LmtbKRXPVnSElgQ7oBRE9S4/VOedSqyXn+qqMd40tGnO2CsKgZaFUYXdSEHOshpHYw=="; }; }; - "@stoplight/spectral-ruleset-bundler-1.4.0" = { + "@stoplight/spectral-ruleset-bundler-1.5.0" = { name = "_at_stoplight_slash_spectral-ruleset-bundler"; packageName = "@stoplight/spectral-ruleset-bundler"; - version = "1.4.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-bundler/-/spectral-ruleset-bundler-1.4.0.tgz"; - sha512 = "aYDI4a145IXED+6jvRjj9Ha0fnB+s54cr8KbQbPCEyhCHW1cP8UGVeOuwAfk+9C4ZIg40OuYrugN5EhA35oQtA=="; + url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-bundler/-/spectral-ruleset-bundler-1.5.0.tgz"; + sha512 = "I1ZbhnJtRTi0lG6oXA1r8J6KLxoZKkNB3aSdrNJJTHoo/AccMSMhV4ey8zbLsYNsJ/9ywR5ttkBAbyGuo3Jtxg=="; }; }; - "@stoplight/spectral-ruleset-migrator-1.9.0" = { + "@stoplight/spectral-ruleset-migrator-1.9.1" = { name = "_at_stoplight_slash_spectral-ruleset-migrator"; packageName = "@stoplight/spectral-ruleset-migrator"; - version = "1.9.0"; + version = "1.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-migrator/-/spectral-ruleset-migrator-1.9.0.tgz"; - sha512 = "hPSjgXsTxMQ5UV1hfkVVPknhqRjmjSnCZD5jideM4rRU5NS1fj2Pse1CiXBsRChsuAGi/2s0Ke5uuOmFFsHrxQ=="; + url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-migrator/-/spectral-ruleset-migrator-1.9.1.tgz"; + sha512 = "TiH7UZIuHX+yb6EsWA9Z2ou455Wtki3z7SCkVRgd7WdzkD7O13R8ywqKoCUJ44UP7iuo1Ejnog18Rw4qJJE/fg=="; }; }; "@stoplight/spectral-rulesets-1.14.1" = { @@ -11038,121 +11002,121 @@ let sha512 = "PA4p7nC5LwPdEVcQXFxMTpfvizYPeMoB55nIIx+yC3FiLnyPgC2hcpUitPy5h8RRGdCZ/Mvb2ryEcVYS8nI6YA=="; }; }; - "@swc/core-1.3.14" = { + "@swc/core-1.3.21" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.14.tgz"; - sha512 = "LpTTrXOGS7vnbR/rHrAux7GykUWbyVmI5NbICl9iF9yeqFdGm6JjaGBhbanmG8zrQL5aFx2kMxxb92V9D1KUiw=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.21.tgz"; + sha512 = "RTmqkm5e5sb+Q+YbyqiE52xjvX+kcIVDgaSdSD7mNy2opgDfIdFMhExmB8UQStt3TLrlpAslWaFNWNmvaHP9rg=="; }; }; - "@swc/core-darwin-arm64-1.3.14" = { + "@swc/core-darwin-arm64-1.3.21" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.14.tgz"; - sha512 = "QFuUq3341uOCrJMIWGuo+CmRC5qZoM2lUo7o2lmv1FO1Dh9njTG85pLD83vz6y4j/F034DBGzvRgSti/Bsoccw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.21.tgz"; + sha512 = "5dBrJyrCzdHOQ9evS9NBJm2geKcXffIuAvSrnwbMHkfTpl+pOM7crry2tolydFXdOE/Jbx8yyahAIXPne1fTHw=="; }; }; - "@swc/core-darwin-x64-1.3.14" = { + "@swc/core-darwin-x64-1.3.21" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.14.tgz"; - sha512 = "fpAjbjXimJBmxCumRB8zjEtPc0lGUi9Uvu92XH6ww6AyXvg7KQmua5P2R9tnzAm6NwTCXKkgS86cgKysAbbObw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.21.tgz"; + sha512 = "CAtzfsRoVZr7DLKOOWPua6npFdj06wRuv1us275CY2QS3mg1bPl9BxA3c94q3mMcu5Bf06+dzUOjJSGrsBD7Ig=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.14" = { + "@swc/core-linux-arm-gnueabihf-1.3.21" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.14.tgz"; - sha512 = "3XSFlgIyDPS+x2c0IFr0AGj4NUbrWGKbkkUCpmAURII0n3YoDsYw8Ux73I8MkWxTTwDGkou8qQOXyA28kAUM4w=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.21.tgz"; + sha512 = "oPO7oFr89pjDFlHJ2aZvzGR6hwy5nmQyeiuqpTgfn+RFFLLbipFawJe/2NBWyD35bxuguW6a3/w9I6edKTpLUw=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.14" = { + "@swc/core-linux-arm64-gnu-1.3.21" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.14.tgz"; - sha512 = "r3fToDRYX76NEptAjvDg5aGrbitOgqooV37RpSTIGYd/CSNuin4cpCNFdca/Vh5lnNfal7mqdGDbG7gMruARtw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.21.tgz"; + sha512 = "cgPw35T8HO4gB/tvPJMwjJuNNpydmw6U5hkxZ+7jiE+qA8hN8a71i+BBfXeSzlo60t4c44+zK4t+gK7UacZg2w=="; }; }; - "@swc/core-linux-arm64-musl-1.3.14" = { + "@swc/core-linux-arm64-musl-1.3.21" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.14.tgz"; - sha512 = "IivEUC+3HNSsQNCfaCDzev2CpsvWpgFReitCmj0PKIdXFRsTi78jtJiraLWnYy956j4wwZbKN0OFGkS2ekKAVg=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.21.tgz"; + sha512 = "kwH+HHtcakSqR3gF5QJ7N7SPs96ilFiXuauB02Ct3UflaGbVYVoeFYj/VEIJ+ZJvlvvOEDByOiLyrk2bw0bG7A=="; }; }; - "@swc/core-linux-x64-gnu-1.3.14" = { + "@swc/core-linux-x64-gnu-1.3.21" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.14.tgz"; - sha512 = "HtwwA1Z0tE2z9fgaR5ehgY5ULbnVLHj3tayyWhIElF4EWsi6aQfCyn/oCZAcjoPKfEnJiSNBYt5gMmfK8l4mJA=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.21.tgz"; + sha512 = "/kLQLNxwdX6kO2R751uUrxXZsAhOkA1EeQzAqj+5Y+bzt3hA5asH5evkY0w0Aj1zCofX4p4o/Q35mandUPxMlw=="; }; }; - "@swc/core-linux-x64-musl-1.3.14" = { + "@swc/core-linux-x64-musl-1.3.21" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.14.tgz"; - sha512 = "RPXilkTD8IVgpou4TNuqZJOB7kMrVJ7sm7GgHF4v1eV3xdIyvy4w5FWjXZRdwMW6iunLgQEckuOmVx0I4mrdNg=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.21.tgz"; + sha512 = "s+l3LqUzDli6rbmIPR3IfO23IOLYBVxk97CDdcJWrRTVtCwUKFhFVJVZyErveriqLXSGJhy5+UL+aOuxC4dk8g=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.14" = { + "@swc/core-win32-arm64-msvc-1.3.21" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.14.tgz"; - sha512 = "H8Ka/ahJRs84hQCHC5ndORujbLBmi1mv+Z/m4CXpOaEX7TmeAo8nA17rrRckNvVkud9fghsKQGjkBQvJ0v7mRw=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.21.tgz"; + sha512 = "59gWcdbZxvmyzh+J50yCCodKDYRUnMwNypzzfamF1Vusa4Np+IGMWEaE2KsZUq50OQIRo0PGHpBPMKVYkuGv8g=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.14" = { + "@swc/core-win32-ia32-msvc-1.3.21" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.14.tgz"; - sha512 = "H3ZmDXrVxrqBzzCFodwYfcXfTHE0xGNLJlLGzJ4haV6RBM3ZYIvRzDtPivDzic/VQncmPj1WpLoEDfx/7KNC8Q=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.21.tgz"; + sha512 = "3gH86ffVAiCmeRy+xSxR5iWSbKy4nUddo4PIahD1zwGJx6LC5ahC/I6EpL1pvoX3KdJKVioUBn0KDfPDUYfqJw=="; }; }; - "@swc/core-win32-x64-msvc-1.3.14" = { + "@swc/core-win32-x64-msvc-1.3.21" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.14.tgz"; - sha512 = "/D1lhWF/DQi2M7b6jWL35NmTY0mRJ5mwTXdmjqNNWOZ8h8TXQo1A3/FDFnfIIcRUeSNdF7IeB3xInT3BI34E1w=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.21.tgz"; + sha512 = "JKWLJdJ3oFc8fGBk4P6mGKhW8n+FmEjLLbsST+h94bZmelrSTeShBt3rr+pMMatFevlu/c9lM3OW2GHsZeZNkg=="; }; }; - "@swc/helpers-0.4.12" = { + "@swc/helpers-0.4.14" = { name = "_at_swc_slash_helpers"; packageName = "@swc/helpers"; - version = "0.4.12"; + version = "0.4.14"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.12.tgz"; - sha512 = "R6RmwS9Dld5lNvwKlPn62+piU+WDG1sMfsnfJioXCciyko/gZ0DQ4Mqglhq1iGU1nQ/RcGkAwfMH+elMSkJH3Q=="; + url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz"; + sha512 = "4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw=="; }; }; - "@swc/wasm-1.3.14" = { + "@swc/wasm-1.3.21" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.14"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.14.tgz"; - sha512 = "Rtxx7BR8y0OcRUyAEUul079Za0ZrEsL2IKR4rCztEj14xvcwCpH6bPWhCH/oeC4W2NheJ1mbPqpDN806Jam/Sw=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.21.tgz"; + sha512 = "dypb8fgPHDjzizYNRNMJKKOqH/7FdRGTK/zMEyICqRpEk6cgW2o4WKExbqxcg9xt2SNKafFjMX7basjGbJbOCw=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -11218,130 +11182,130 @@ let sha512 = "qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A=="; }; }; - "@textlint/ast-tester-12.2.2" = { + "@textlint/ast-tester-12.2.3" = { name = "_at_textlint_slash_ast-tester"; packageName = "@textlint/ast-tester"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.2.2.tgz"; - sha512 = "l5VP2LG+cFCjVvBR3uRrXBeoElKLic2rG+tTQUsH/rywh3TeeDKsHZBk1gGz8kAHVoeEuuH7lx0Wu8AjP4AqGw=="; + url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.2.3.tgz"; + sha512 = "+yLj38mgrluEFXD8rmwmMo+2lQbrx3v5aQBkHUZdddAq/1LJu4qqctikUzAeVRJZPWKsdLrN3vaLT2rp4h8KYg=="; }; }; - "@textlint/ast-traverse-12.2.2" = { + "@textlint/ast-traverse-12.2.3" = { name = "_at_textlint_slash_ast-traverse"; packageName = "@textlint/ast-traverse"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.2.2.tgz"; - sha512 = "ROd6W9P76DFA9hv7wCf1+Dc6aehLcsd0/3qKerQN/Luc3B2ek+/qJbGgWeAEsSBKl9LVLJhTBydmdgOAHrVjwA=="; + url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.2.3.tgz"; + sha512 = "sv06SITci07P1LQQxH1hSv04xoHz2OC+WlppTuMoOFR20kRBMyOs7Ssvor0NdNmspDXG8qvdCBxh9rFmdNSJyQ=="; }; }; - "@textlint/feature-flag-12.2.2" = { + "@textlint/feature-flag-12.2.3" = { name = "_at_textlint_slash_feature-flag"; packageName = "@textlint/feature-flag"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.2.2.tgz"; - sha512 = "L0v/ZjxmdzRXygja1WiXBjA2ZczvU3cG6qkwME4JGKwUsbEa9UzpwD8i3yBoO7ISkjkMpPM5BYD3AtJgQpCuEg=="; + url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.2.3.tgz"; + sha512 = "KrKc8dY3iept6Hv/dSKwaYAkjFdYbaithXAnRpp0O4fkXPdv6HYu7iGtM2kA4nkVLdjrzAnPNKA9tmP3EE0qNg=="; }; }; - "@textlint/fixer-formatter-12.2.2" = { + "@textlint/fixer-formatter-12.2.3" = { name = "_at_textlint_slash_fixer-formatter"; packageName = "@textlint/fixer-formatter"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.2.2.tgz"; - sha512 = "uKJScqlJvIP9ttVxSq4632kYUjeEhsqc1mLmbViFd+H+GGtrKMwhHYI4zs9/6PQQxE1sUy6dBVkh/LAjgqOaUA=="; + url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.2.3.tgz"; + sha512 = "O3O1B1Xihlk5bXnMqjTgwMegnDTzE3rAQRvcJ2zTZQNhjSLpUDsRRcZW4FteGsQkWT9rOFrFQbHNbJdkiyu4cA=="; }; }; - "@textlint/kernel-12.2.2" = { + "@textlint/kernel-12.2.3" = { name = "_at_textlint_slash_kernel"; packageName = "@textlint/kernel"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.2.2.tgz"; - sha512 = "rDa//HGBQh2BTcJvsgMDP1WRaVxwa57zeE6FPXUdaIA41GGKupQq9GXX8P0PcAVo9gxzOFnMrtbBw7mkQYu4hQ=="; + url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.2.3.tgz"; + sha512 = "O0oifeiotA7ZEpWGssGPHCpIDUcsUfkmNTypk6j0l5m+VL+X3Zz0z/F+i02O9eMcizzLFcnC8oMoLxeYNhJCKg=="; }; }; - "@textlint/linter-formatter-12.2.2" = { + "@textlint/linter-formatter-12.2.4" = { name = "_at_textlint_slash_linter-formatter"; packageName = "@textlint/linter-formatter"; - version = "12.2.2"; + version = "12.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.2.2.tgz"; - sha512 = "R4/n02lNPqiTT1WuxBe4Lh1vUZUME020y+cD8fDn++GR4QlEcWaWWaYNz5ZDtRJ6Li9CYnc6MC6uf2jnTcmFXw=="; + url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.2.4.tgz"; + sha512 = "vF/qPrDYLH9jGB/HU8euVLv7BBATYmviBl9fGcx5vO8Lq/D2vHS9MUdk1JddgW/cDqnrI0nNVlLFUphJsXtp6w=="; }; }; - "@textlint/markdown-to-ast-12.2.2" = { + "@textlint/markdown-to-ast-12.2.3" = { name = "_at_textlint_slash_markdown-to-ast"; packageName = "@textlint/markdown-to-ast"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.2.2.tgz"; - sha512 = "OP0cnGCzt8Bbfhn8fO/arQSHBhmuXB4maSXH8REJAtKRpTADWOrbuxAOaI9mjQ7EMTDiml02RZ9MaELQAWAsqQ=="; + url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.2.3.tgz"; + sha512 = "omZqcZV1Q8t9K0IKvlHNIdTV3SKNaS2P5qkbTjzDj7PuTuvG20JFqL9Naiwwi9ty3NzTzq+W8lLG3H2HgX0WvA=="; }; }; - "@textlint/module-interop-12.2.2" = { + "@textlint/module-interop-12.2.3" = { name = "_at_textlint_slash_module-interop"; packageName = "@textlint/module-interop"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.2.2.tgz"; - sha512 = "3OVZDJ8GCgQ3V+dm5btCwhZhJUEO5xR7jEMI6i9n1/gA6yePBM4b1qT1gwYUItthNRFqy6q5x4zTx9MKqBGVGg=="; + url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.2.3.tgz"; + sha512 = "tBtjf+hcOV8bTGae48bBj05Z8PmC6AQ+wCLl4PWE1zqUZIo9hxJL5nRpBn8l6HT6HCdtACE0UU85op9QmjmPXw=="; }; }; - "@textlint/source-code-fixer-12.2.2" = { + "@textlint/source-code-fixer-12.2.3" = { name = "_at_textlint_slash_source-code-fixer"; packageName = "@textlint/source-code-fixer"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.2.2.tgz"; - sha512 = "wk/8MmF3m1U9IAqGrvR0yehHsRGDfXuVAkXSahyRmafSwn88p8oS/iY6qDjECADVXJEnuRuxOcQ1GPlKM/eFOg=="; + url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.2.3.tgz"; + sha512 = "uXGpD3hcqGNVL8yUpZci0+DDXUi81/MlMOzK6OWLDYBXdIZvJ0ADXQ/oUkljWIdmzMcME1AXkHvC5EGL0td2Sg=="; }; }; - "@textlint/text-to-ast-12.2.2" = { + "@textlint/text-to-ast-12.2.3" = { name = "_at_textlint_slash_text-to-ast"; packageName = "@textlint/text-to-ast"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.2.2.tgz"; - sha512 = "LgCqy1y4oQfDws6rqYSlQaYyiIGRQHcGMT+ukbpBkwEtzzh9urbr6NIeVnHhEuZUITl+pZCHyHeKF2/RlGsn6Q=="; + url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.2.3.tgz"; + sha512 = "nsBI5TFe38ZzzbCyshZqLkG2DD4G8fJ0mC3imiTAGamGnUV8mDANmdvE7nmUtZTLlU319s/U0oXC0E7btgN+cQ=="; }; }; - "@textlint/textlint-plugin-markdown-12.2.2" = { + "@textlint/textlint-plugin-markdown-12.2.3" = { name = "_at_textlint_slash_textlint-plugin-markdown"; packageName = "@textlint/textlint-plugin-markdown"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.2.2.tgz"; - sha512 = "ougYCuGavxCPwsFZZ/fCGzoaMxwvy2yM1siKa7Ra9chZHjxtj3y76m0QtJkboFcz/FEZV8tqh96T9Bq/4jD+nQ=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.2.3.tgz"; + sha512 = "phmA5e1JQaJt0IFHm0WkNpX66ieYXShoIzg6J3wcrAHS12kQcL0HxBgjdUjOeulOemKst2JqFNqsvhGXdTAUFw=="; }; }; - "@textlint/textlint-plugin-text-12.2.2" = { + "@textlint/textlint-plugin-text-12.2.3" = { name = "_at_textlint_slash_textlint-plugin-text"; packageName = "@textlint/textlint-plugin-text"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.2.2.tgz"; - sha512 = "0HLOr9kQRXKqEcZvIaNAnOhixNfTSpveOHBuhHepByDXkXcUrb+BJdxZzhtgVu4twBAR3qJ3KYhDE8XPHc9iDg=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.2.3.tgz"; + sha512 = "CMK9h3EwyQFayYBGafQairg2MbVtGkw1roazOjXLSTicYr7xT/rqhN26Ix6C7OvBbugyRO+DhqJjPY8Xyv0BQA=="; }; }; - "@textlint/types-12.2.2" = { + "@textlint/types-12.2.3" = { name = "_at_textlint_slash_types"; packageName = "@textlint/types"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/types/-/types-12.2.2.tgz"; - sha512 = "fmKH9w8O3XOvIvf3cPNI7PWdJScRIiJYJ5VsoIMp/o41Hlkt5m//MObfAPYpQ/3nuXhzlB05kfRUxyj/NvcPAQ=="; + url = "https://registry.npmjs.org/@textlint/types/-/types-12.2.3.tgz"; + sha512 = "7948CPxVsZu99zlIWDyxwT6MI33WpwKwVSD9jk0e5M8VcdxMUnecVq6D40h8LAtfsT5V8NTJqFxKFT6+LpiBvg=="; }; }; - "@textlint/utils-12.2.2" = { + "@textlint/utils-12.2.3" = { name = "_at_textlint_slash_utils"; packageName = "@textlint/utils"; - version = "12.2.2"; + version = "12.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.2.2.tgz"; - sha512 = "74p3VWj5KlmXs+gFRJALEuUsyt/Sz4t91KQ//LAX1zNTY/aK0nk8LxipUcDZeBHArn3Gh5nf3SwlTgUZ7jvNrQ=="; + url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.2.3.tgz"; + sha512 = "1dEihBt9A+DcQ/4IZC3c3TFktb/6p61m6WItyqEYU4h9UjUOH4l1sEKqorEOkJ/DIlA9VQcJT/LF5CCFYOKkcw=="; }; }; "@tokenizer/token-0.1.1" = { @@ -11560,13 +11524,13 @@ let sha512 = "p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw=="; }; }; - "@types/cacheable-request-6.0.2" = { + "@types/cacheable-request-6.0.3" = { name = "_at_types_slash_cacheable-request"; packageName = "@types/cacheable-request"; - version = "6.0.2"; + version = "6.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz"; - sha512 = "B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA=="; + url = "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz"; + sha512 = "IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw=="; }; }; "@types/caseless-0.12.2" = { @@ -11668,15 +11632,6 @@ let sha512 = "vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="; }; }; - "@types/debounce-1.2.1" = { - name = "_at_types_slash_debounce"; - packageName = "@types/debounce"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.1.tgz"; - sha512 = "epMsEE85fi4lfmJUH/89/iV/LI+F5CvNIvmgs5g5jYFPfhO2S/ae8WSsLOKWdwtoaZw9Q2IhJ4tQ5tFCcS/4HA=="; - }; - }; "@types/debug-4.1.7" = { name = "_at_types_slash_debug"; packageName = "@types/debug"; @@ -11695,15 +11650,6 @@ let sha512 = "aqcrAbqT/0+ULJJ73bwKWsiFkBh3ZnAelj9u+iI5/cr4Nz3yXGf3w4glx5am6uvvgBbKinK1PAqSJs7fSKD6ig=="; }; }; - "@types/dom4-2.0.2" = { - name = "_at_types_slash_dom4"; - packageName = "@types/dom4"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz"; - sha512 = "Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="; - }; - }; "@types/duplexify-3.6.1" = { name = "_at_types_slash_duplexify"; packageName = "@types/duplexify"; @@ -11722,15 +11668,6 @@ let sha512 = "RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA=="; }; }; - "@types/emoji-mart-3.0.9" = { - name = "_at_types_slash_emoji-mart"; - packageName = "@types/emoji-mart"; - version = "3.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.9.tgz"; - sha512 = "qdBo/2Y8MXaJ/2spKjDZocuq79GpnOhkwMHnK2GnVFa8WYFgfA+ei6sil3aeWQPCreOKIx9ogPpR5+7MaOqYAA=="; - }; - }; "@types/es-aggregate-error-1.0.2" = { name = "_at_types_slash_es-aggregate-error"; packageName = "@types/es-aggregate-error"; @@ -11956,13 +11893,13 @@ let sha512 = "rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw=="; }; }; - "@types/inquirer-8.2.4" = { + "@types/inquirer-8.2.5" = { name = "_at_types_slash_inquirer"; packageName = "@types/inquirer"; - version = "8.2.4"; + version = "8.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.4.tgz"; - sha512 = "Pxxx3i3AyK7vKAj3LRM/vF7ETcHKiLJ/u5CnNgbz/eYj/vB3xGAYtRxI5IKtq0hpe5iFHD22BKV3n6WHUu0k4Q=="; + url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.5.tgz"; + sha512 = "QXlzybid60YtAwfgG3cpykptRYUx2KomzNutMlWsQC64J/WG/gQSl+P4w7A21sGN0VIxRVava4rgnT7FQmFCdg=="; }; }; "@types/is-empty-1.2.1" = { @@ -12091,15 +12028,6 @@ let sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; }; }; - "@types/keyv-4.2.0" = { - name = "_at_types_slash_keyv"; - packageName = "@types/keyv"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/keyv/-/keyv-4.2.0.tgz"; - sha512 = "xoBtGl5R9jeKUhc8ZqeYaRDx04qqJ10yhhXYGmJ4Jr8qKpvMsDQQrNUvF/wUJ4klOtmJeJM+p2Xo3zp9uaC3tw=="; - }; - }; "@types/linkify-it-3.0.2" = { name = "_at_types_slash_linkify-it"; packageName = "@types/linkify-it"; @@ -12127,13 +12055,13 @@ let sha512 = "0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="; }; }; - "@types/lodash-4.14.188" = { + "@types/lodash-4.14.191" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.14.188"; + version = "4.14.191"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.188.tgz"; - sha512 = "zmEmF5OIM3rb7SbLCFYoQhO4dGt2FRM9AMkxvA3LaADOF1n8in/zGJlWji9fmafLoNyz+FoL6FE0SLtGIArD7w=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz"; + sha512 = "BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ=="; }; }; "@types/long-4.0.2" = { @@ -12145,15 +12073,6 @@ let sha512 = "MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA=="; }; }; - "@types/mapbox-gl-0.54.5" = { - name = "_at_types_slash_mapbox-gl"; - packageName = "@types/mapbox-gl"; - version = "0.54.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-0.54.5.tgz"; - sha512 = "h0MqA7rtP88vuMepODf1oomJLeuRAZfOiYdeGS3NYO4TMQs237TkA+bNehy7V5nfyCjPRuKrb0fnWMjncHak0g=="; - }; - }; "@types/mapbox__point-geometry-0.1.2" = { name = "_at_types_slash_mapbox__point-geometry"; packageName = "@types/mapbox__point-geometry"; @@ -12208,15 +12127,6 @@ let sha512 = "Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="; }; }; - "@types/mime-types-2.1.1" = { - name = "_at_types_slash_mime-types"; - packageName = "@types/mime-types"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz"; - sha512 = "vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw=="; - }; - }; "@types/minimatch-3.0.5" = { name = "_at_types_slash_minimatch"; packageName = "@types/minimatch"; @@ -12352,6 +12262,15 @@ let sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg=="; }; }; + "@types/node-14.18.34" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "14.18.34"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-14.18.34.tgz"; + sha512 = "hcU9AIQVHmPnmjRK+XUUYlILlr9pQrsqSrwov/JK1pnf3GTQowVBhx54FbvM0AU/VXGH4i3+vgXS5EguR7fysA=="; + }; + }; "@types/node-15.14.9" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -12370,22 +12289,22 @@ let sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; }; }; - "@types/node-16.18.3" = { + "@types/node-16.18.4" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.18.3"; + version = "16.18.4"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.18.3.tgz"; - sha512 = "jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.18.4.tgz"; + sha512 = "9qGjJ5GyShZjUfx2ArBIGM+xExdfLvvaCyQR0t6yRXKPcWCVYF/WemtX/uIU3r7FYECXRXkIiw2Vnhn6y8d+pw=="; }; }; - "@types/node-18.11.2" = { + "@types/node-18.11.10" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.11.2"; + version = "18.11.10"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.11.2.tgz"; - sha512 = "BWN3M23gLO2jVG8g/XHIRFWiiV4/GckeFIqbU/C4V3xpoBBWSMk4OZomouN0wCkfQFPqgZikyLr7DOYDysIkkw=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz"; + sha512 = "juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="; }; }; "@types/node-18.11.7" = { @@ -12550,15 +12469,6 @@ let sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; }; }; - "@types/rc-1.2.1" = { - name = "_at_types_slash_rc"; - packageName = "@types/rc"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/rc/-/rc-1.2.1.tgz"; - sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA=="; - }; - }; "@types/react-17.0.52" = { name = "_at_types_slash_react"; packageName = "@types/react"; @@ -12568,49 +12478,22 @@ let sha512 = "vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A=="; }; }; - "@types/react-18.0.25" = { + "@types/react-18.0.26" = { name = "_at_types_slash_react"; packageName = "@types/react"; - version = "18.0.25"; + version = "18.0.26"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react/-/react-18.0.25.tgz"; - sha512 = "xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g=="; + url = "https://registry.npmjs.org/@types/react/-/react-18.0.26.tgz"; + sha512 = "hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug=="; }; }; - "@types/react-dom-17.0.18" = { + "@types/react-dom-18.0.9" = { name = "_at_types_slash_react-dom"; packageName = "@types/react-dom"; - version = "17.0.18"; + version = "18.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.18.tgz"; - sha512 = "rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw=="; - }; - }; - "@types/react-dom-18.0.8" = { - name = "_at_types_slash_react-dom"; - packageName = "@types/react-dom"; - version = "18.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.8.tgz"; - sha512 = "C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw=="; - }; - }; - "@types/react-window-1.8.5" = { - name = "_at_types_slash_react-window"; - packageName = "@types/react-window"; - version = "1.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/react-window/-/react-window-1.8.5.tgz"; - sha512 = "V9q3CvhC9Jk9bWBOysPGaWy/Z0lxYcTXLtLipkt2cnRj1JOSFNF7wqGpkScSXMgBwC+fnVRg/7shwgddBG5ICw=="; - }; - }; - "@types/react-window-infinite-loader-1.0.6" = { - name = "_at_types_slash_react-window-infinite-loader"; - packageName = "@types/react-window-infinite-loader"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/react-window-infinite-loader/-/react-window-infinite-loader-1.0.6.tgz"; - sha512 = "V8g8sBDLVeJJAfEENJS7VXZK+DRJ+jzPNtk8jpj2G+obhf+iqGNUDGwNWCbBhLiD+KpHhf3kWQlKBRi0tAeU4Q=="; + url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.9.tgz"; + sha512 = "qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg=="; }; }; "@types/request-2.48.8" = { @@ -12631,15 +12514,6 @@ let sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA=="; }; }; - "@types/responselike-3.0.0" = { - name = "_at_types_slash_responselike"; - packageName = "@types/responselike"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/responselike/-/responselike-3.0.0.tgz"; - sha512 = "zfgGLWx5IQOTJgQPD4UfGEhapTKUPC1ra/QCG02y3GUJWrhX05bBf/EfTh3aFj2DKi7cLo+cipXLNclD27tQXQ=="; - }; - }; "@types/retry-0.12.0" = { name = "_at_types_slash_retry"; packageName = "@types/retry"; @@ -12901,15 +12775,6 @@ let sha512 = "wDXw9LEEUHyV+7UWy7U315nrJGJ7p1BzaCxDpEoLr789Dk1WDVMMlf3iBfbG2F8NdWnYyFbtTxUn2ZNbm1Q4LQ=="; }; }; - "@types/url-parse-1.4.8" = { - name = "_at_types_slash_url-parse"; - packageName = "@types/url-parse"; - version = "1.4.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/url-parse/-/url-parse-1.4.8.tgz"; - sha512 = "zqqcGKyNWgTLFBxmaexGUKQyWqeG7HjXj20EuQJSJWwXe54BjX0ihIo5cJB9yAQzH8dNugJ9GvkBYMjPXs/PJw=="; - }; - }; "@types/uuid-3.4.10" = { name = "_at_types_slash_uuid"; packageName = "@types/uuid"; @@ -12937,13 +12802,13 @@ let sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw=="; }; }; - "@types/vinyl-2.0.6" = { + "@types/vinyl-2.0.7" = { name = "_at_types_slash_vinyl"; packageName = "@types/vinyl"; - version = "2.0.6"; + version = "2.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz"; - sha512 = "ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g=="; + url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.7.tgz"; + sha512 = "4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg=="; }; }; "@types/vscode-1.66.0" = { @@ -13045,13 +12910,13 @@ let sha512 = "T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw=="; }; }; - "@types/yargs-17.0.13" = { + "@types/yargs-17.0.15" = { name = "_at_types_slash_yargs"; packageName = "@types/yargs"; - version = "17.0.13"; + version = "17.0.15"; src = fetchurl { - url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.13.tgz"; - sha512 = "9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg=="; + url = "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.15.tgz"; + sha512 = "ZHc4W2dnEQPfhn06TBEdWaiUHEZAocYaiVMfwOipY5jcJt/251wVrKCBWBetGZWO5CF8tdb7L3DmdxVlZ2BOIg=="; }; }; "@types/yargs-parser-21.0.0" = { @@ -13090,13 +12955,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.42.0" = { + "@typescript-eslint/eslint-plugin-5.45.0" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.42.0.tgz"; - sha512 = "5TJh2AgL6+wpL8H/GTSjNb4WrjKoR2rqvFxR/DDTqYNk6uXn8BJMEcncLSpMbf/XV1aS0jAjYwn98uvVCiAywQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.45.0.tgz"; + sha512 = "CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -13117,13 +12982,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.42.0" = { + "@typescript-eslint/parser-5.45.0" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.42.0.tgz"; - sha512 = "Ixh9qrOTDRctFg3yIwrLkgf33AHyEIn6lhyf5cCfwwiGtkWhNpVKlEZApi3inGQR/barWnY7qY8FbGKBO7p3JA=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.45.0.tgz"; + sha512 = "brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -13135,22 +13000,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.42.0" = { + "@typescript-eslint/scope-manager-5.45.0" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.42.0.tgz"; - sha512 = "l5/3IBHLH0Bv04y+H+zlcLiEMEMjWGaCX6WyHE5Uk2YkSGAMlgdUPsT/ywTSKgu9D1dmmKMYgYZijObfA39Wow=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.45.0.tgz"; + sha512 = "noDMjr87Arp/PuVrtvN3dXiJstQR1+XlQ4R1EvzG+NMgXi8CuMCXpb8JqNtFHKceVSQ985BZhfRdowJzbv4yKw=="; }; }; - "@typescript-eslint/type-utils-5.42.0" = { + "@typescript-eslint/type-utils-5.45.0" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.42.0.tgz"; - sha512 = "HW14TXC45dFVZxnVW8rnUGnvYyRC0E/vxXShFCthcC9VhVTmjqOmtqj6H5rm9Zxv+ORxKA/1aLGD7vmlLsdlOg=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.45.0.tgz"; + sha512 = "DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -13162,13 +13027,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.42.0" = { + "@typescript-eslint/types-5.45.0" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.42.0.tgz"; - sha512 = "t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.45.0.tgz"; + sha512 = "QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -13180,22 +13045,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.42.0" = { + "@typescript-eslint/typescript-estree-5.45.0" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.42.0.tgz"; - sha512 = "2O3vSq794x3kZGtV7i4SCWZWCwjEtkWfVqX4m5fbUBomOsEOyd6OAD1qU2lbvV5S8tgy/luJnOYluNyYVeOTTg=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.45.0.tgz"; + sha512 = "maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ=="; }; }; - "@typescript-eslint/utils-5.42.0" = { + "@typescript-eslint/utils-5.45.0" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.42.0.tgz"; - sha512 = "JZ++3+h1vbeG1NUECXQZE3hg0kias9kOtcQr3+JVQ3whnjvKuMyktJAAIj6743OeNPnGBmjj7KEmiDL7qsdnCQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.45.0.tgz"; + sha512 = "OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -13207,13 +13072,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.42.0" = { + "@typescript-eslint/visitor-keys-5.45.0" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.42.0"; + version = "5.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.42.0.tgz"; - sha512 = "QHbu5Hf/2lOEOwy+IUw0GoSCuAzByTAWWrOTKzTzsotiUnWFpuKnXcAhC9YztAf2EElQ0VvIK+pHJUPkM0q7jg=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.45.0.tgz"; + sha512 = "jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg=="; }; }; "@uphold/request-logger-2.0.0" = { @@ -13261,40 +13126,40 @@ let sha512 = "UGyyGAMXzop9C/fIoe7Ij63DkPSy1uMw2jipB5dnB8R3kl80za7LYzVnA1HvBEt2ZPWfMuwez/VGLOQ7XX4bTA=="; }; }; - "@vercel/build-utils-5.5.7" = { + "@vercel/build-utils-5.7.0" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "5.5.7"; + version = "5.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-5.5.7.tgz"; - sha512 = "F8brek8VcR3CLgcuKyXbb8k8y/KRwqO/yEV5dTUW6OZ0fGxxa+0RnaaY1UbHlCVF1Cnu+/IsMDsmsj9o1RCP5A=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-5.7.0.tgz"; + sha512 = "hOcb7HxYza5LtZLcmh9VkShV3hLaLlZarLBqQmMR/oTlvgIybeW6LjrPpFiu2hCCf9VbkdBR1OFmDh8EydFswQ=="; }; }; - "@vercel/go-2.2.15" = { + "@vercel/go-2.2.19" = { name = "_at_vercel_slash_go"; packageName = "@vercel/go"; - version = "2.2.15"; + version = "2.2.19"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/go/-/go-2.2.15.tgz"; - sha512 = "GDaG7ajKPQ0G9UT0w9UCWiD31UE27ksPP8gJFVBN3I3UmgypIiSkKadAjHZTZYPVp7mLDUeOqxL9I0A/G3bx+g=="; + url = "https://registry.npmjs.org/@vercel/go/-/go-2.2.19.tgz"; + sha512 = "wB9JfHBpsKVZwczydGGPxXuij/OHV4Ww/CsED0X7shZZ+hNt58MAKwphfl/Lz/VDemOBPSchZAhKDAACQPROog=="; }; }; - "@vercel/hydrogen-0.0.28" = { + "@vercel/hydrogen-0.0.33" = { name = "_at_vercel_slash_hydrogen"; packageName = "@vercel/hydrogen"; - version = "0.0.28"; + version = "0.0.33"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.28.tgz"; - sha512 = "Yfb6/0xtWMlBb96Xqlt1tnOmClcc+Vq3qfSpf8Zd+OiJP7qbmgIzi1bN2s7m5t5p34boDQ4TISlQx1FsVxWH0A=="; + url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.33.tgz"; + sha512 = "2lQpnEPVXkl34aWO8LZfclSVLz8bpKl+e0CHa+e/A30Zw8WvG0XWtUyL7xyNkAxFi3UFogqLK0JwdYT4gc65UA=="; }; }; - "@vercel/next-3.2.8" = { + "@vercel/next-3.3.2" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.2.8"; + version = "3.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.2.8.tgz"; - sha512 = "LjZ83L1lnMLKJy3Et8jz4FxSAe99QdIpWdb2kHST7uiUveUX+Ke8DA32QZcszd7OObgbRxutFnC791kAqtr4og=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.3.2.tgz"; + sha512 = "J44LvZK6NKFCv+MgsUekz2jAAVn0Eqekr0KDigEcXjs9T1rIM54qyWXIsUiCJuPBgTVoL1Ejh9OzWACwvXKJpw=="; }; }; "@vercel/nft-0.22.1" = { @@ -13306,85 +13171,85 @@ let sha512 = "lYYZIoxRurqDOSoVIdBicGnpUIpfyaS5qVjdPq+EfI285WqtZK3NK/dyCkiyBul+X2U2OEhRyeMdXPCHGJbohw=="; }; }; - "@vercel/node-2.6.1" = { + "@vercel/node-2.7.1" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.6.1"; + version = "2.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.6.1.tgz"; - sha512 = "8AXrXxx1XKMT5OpSjQ5ghzjw0HYp4Cuv6GUWJ48jPcvzmU9VC5mZvjmhzmbIT4pPHdKjKZLPy8/rHqDjqztuJg=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.7.1.tgz"; + sha512 = "TaNZKXvZvKzwz+ALf4/od64wniOpSwaYcGzQXs9onkzonOdO4C1biGBaIHpnqdlAxbaFRMvqQQbqjfJHJavPhQ=="; }; }; - "@vercel/node-bridge-3.1.1" = { + "@vercel/node-bridge-3.1.2" = { name = "_at_vercel_slash_node-bridge"; packageName = "@vercel/node-bridge"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.1.tgz"; - sha512 = "sWg2okUTj8IbeWnAaY3IKbDp3Vinj4zdt3Q11S+cRMXO+pAUbqJxmiPD5+MS0RyIVvufoNotooiitRGlgQjA5w=="; + url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.2.tgz"; + sha512 = "dgcLXug0IqUeRsywf0G8IrhUFcgw+GYj+EZB4JneglKSofFBh3Xy/t7KfBUxLlKnoq6kyGYJvTmAVB1YBt11qw=="; }; }; - "@vercel/python-3.1.24" = { + "@vercel/python-3.1.29" = { name = "_at_vercel_slash_python"; packageName = "@vercel/python"; - version = "3.1.24"; + version = "3.1.29"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.24.tgz"; - sha512 = "rQcmxHkzCAB83BC17RoiXXdEktmR4BAnJvlItpw7UpmVoSEBjHINOvdbu2XnxG5AslcTYBTbtyn1NBPcx6NaDg=="; + url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.29.tgz"; + sha512 = "1afGZ0Bt3gT24mAuvObUAt/cand694l4Q72dTp6HCZLLQZoSiiOf5r3F4j2CO8gd4gg0xEBJrJfFAC7BhCLJpQ=="; }; }; - "@vercel/redwood-1.0.33" = { + "@vercel/redwood-1.0.39" = { name = "_at_vercel_slash_redwood"; packageName = "@vercel/redwood"; - version = "1.0.33"; + version = "1.0.39"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.0.33.tgz"; - sha512 = "7qXKa0pTn31YcLDjxBgFXM2rFftgiX6tS1nvvbP3dFrL/1SdwkfcNJLR0K3qFkiPkrWJdYBdeAIZVFnI2kyA1w=="; + url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.0.39.tgz"; + sha512 = "AcLmi84YNf0r696DybeJnPqp/AlrN2tqz3M7+1wdZjNA76l50wECmk+9P0Fe4v7FfhdclqxKiZxjlwXGY9KmIA=="; }; }; - "@vercel/remix-1.0.34" = { + "@vercel/remix-1.1.1" = { name = "_at_vercel_slash_remix"; packageName = "@vercel/remix"; - version = "1.0.34"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.0.34.tgz"; - sha512 = "xcxRitagosqSWgZPfYFgMN//MJD+i5LpPB7zsXfwuOC5La4DJ8DU0ZKJpTWAor4j0kdxQX4D54jjw3vAxap4sQ=="; + url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.1.1.tgz"; + sha512 = "RzMPwZicRmC/Pcb3kkVsNMJHy1+LCoglTKb8pRVReujYG3vqUqgThZ6dn1Ev/sc/P1iVUF4+kDxMXNFAzkHH9Q=="; }; }; - "@vercel/routing-utils-2.1.1" = { + "@vercel/routing-utils-2.1.3" = { name = "_at_vercel_slash_routing-utils"; packageName = "@vercel/routing-utils"; - version = "2.1.1"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.1.tgz"; - sha512 = "X5mYkJi8Zuc74bvufI6jaUfzLZJSQ/nat7WOoOgBpd4DRqfGNm7umqEe3xe7BKcuc95tnDkzR1yNjcqkkumydg=="; + url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.3.tgz"; + sha512 = "MkZq6YgmzpjkN/LxIxgnw81kEN+j7PYNjQQasOjCVvq5o/dFTVRgud7eUuyl8LMCnh0vZ1odRneMtPBnFKbwJQ=="; }; }; - "@vercel/ruby-1.3.41" = { + "@vercel/ruby-1.3.45" = { name = "_at_vercel_slash_ruby"; packageName = "@vercel/ruby"; - version = "1.3.41"; + version = "1.3.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.41.tgz"; - sha512 = "Tn+j9g/VRQLVVzn1Sz1DBEvrlKkXHG+7IxuYdJ9K/+t3iKk4EheYI/lBo3aDPEszPbI0eHNsO7Bg7xWRGW0hsQ=="; + url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.45.tgz"; + sha512 = "DcL1wZVifZI9WzMvZrM6QkhWrJ5JDufiQLcB5DZri5BXm/uHfVIhbEyrorGiCNnnQGQuQlI5YPweMRg2Pe1qaw=="; }; }; - "@vercel/static-build-1.0.34" = { + "@vercel/static-build-1.0.42" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.0.34"; + version = "1.0.42"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.0.34.tgz"; - sha512 = "nWQGn2NEst9cZAWRRjjuuLhO0x2DyhfYKHcWQYhmqhKeXObTDV4iIgMa6yxMBJVPTx5dwsKfVDIHKtNB69j22A=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.0.42.tgz"; + sha512 = "YVRYr6dxG7XPKAVOPyCfx1xid60O+FLU1pPU1SrBUYcshbOXIn2eAXBUFR4k0HbyzzSRHHyE8CylSyhxOjZ2Ig=="; }; }; - "@vercel/static-config-2.0.5" = { + "@vercel/static-config-2.0.6" = { name = "_at_vercel_slash_static-config"; packageName = "@vercel/static-config"; - version = "2.0.5"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.5.tgz"; - sha512 = "f3wt+vQ3ARRR7hXHteMbrRNjH8iMETmP8f/t2HC8TpOjitjsjUKZg+3YS54AtLDEw/ZZ1s/7EG9nMK2BbU/t6g=="; + url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.6.tgz"; + sha512 = "P0kh9ZBA9RrP4u0pDENxsuU/PAOw/ph+CoGgS5ZfDNa7P0qYhi9TfgVAtjFnGxi0dImq/S49uTVW5NPYWwc+ww=="; }; }; "@vscode/emmet-helper-2.8.4" = { @@ -13396,6 +13261,15 @@ let sha512 = "lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg=="; }; }; + "@vscode/l10n-0.0.10" = { + name = "_at_vscode_slash_l10n"; + packageName = "@vscode/l10n"; + version = "0.0.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.10.tgz"; + sha512 = "E1OCmDcDWa0Ya7vtSjp/XfHFGqYJfh+YPC1RkATU71fTac+j1JjCcB3qwSzmlKAighx2WxhLlfhS0RwAN++PFQ=="; + }; + }; "@vscode/test-electron-2.2.0" = { name = "_at_vscode_slash_test-electron"; packageName = "@vscode/test-electron"; @@ -13504,49 +13378,49 @@ let sha512 = "jNYQ+3z7HDZ3IR3Z3Dlo3yOPbHexpygkn2IJ7sjA62oGolnNWeF7kvpLwni18l8N5InhS66m9w31an1Fs5pCZA=="; }; }; - "@vue/compiler-core-3.2.41" = { + "@vue/compiler-core-3.2.45" = { name = "_at_vue_slash_compiler-core"; packageName = "@vue/compiler-core"; - version = "3.2.41"; + version = "3.2.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.41.tgz"; - sha512 = "oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw=="; + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.45.tgz"; + sha512 = "rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A=="; }; }; - "@vue/compiler-dom-3.2.41" = { + "@vue/compiler-dom-3.2.45" = { name = "_at_vue_slash_compiler-dom"; packageName = "@vue/compiler-dom"; - version = "3.2.41"; + version = "3.2.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.41.tgz"; - sha512 = "xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw=="; + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz"; + sha512 = "tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw=="; }; }; - "@vue/compiler-sfc-2.7.13" = { + "@vue/compiler-sfc-2.7.14" = { name = "_at_vue_slash_compiler-sfc"; packageName = "@vue/compiler-sfc"; - version = "2.7.13"; + version = "2.7.14"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.13.tgz"; - sha512 = "zzu2rLRZlgIU+OT3Atbr7Y6PG+LW4wVQpPfNRrGDH3dM9PsrcVfa+1pKb8bW467bGM3aDOvAnsYLWVpYIv3GRg=="; + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz"; + sha512 = "aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA=="; }; }; - "@vue/compiler-sfc-3.2.41" = { + "@vue/compiler-sfc-3.2.45" = { name = "_at_vue_slash_compiler-sfc"; packageName = "@vue/compiler-sfc"; - version = "3.2.41"; + version = "3.2.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.41.tgz"; - sha512 = "+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w=="; + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz"; + sha512 = "1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q=="; }; }; - "@vue/compiler-ssr-3.2.41" = { + "@vue/compiler-ssr-3.2.45" = { name = "_at_vue_slash_compiler-ssr"; packageName = "@vue/compiler-ssr"; - version = "3.2.41"; + version = "3.2.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.41.tgz"; - sha512 = "Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ=="; + url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz"; + sha512 = "6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ=="; }; }; "@vue/component-compiler-utils-3.3.0" = { @@ -13585,22 +13459,22 @@ let sha512 = "LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ=="; }; }; - "@vue/reactivity-transform-3.2.41" = { + "@vue/reactivity-transform-3.2.45" = { name = "_at_vue_slash_reactivity-transform"; packageName = "@vue/reactivity-transform"; - version = "3.2.41"; + version = "3.2.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.41.tgz"; - sha512 = "mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A=="; + url = "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz"; + sha512 = "BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ=="; }; }; - "@vue/shared-3.2.41" = { + "@vue/shared-3.2.45" = { name = "_at_vue_slash_shared"; packageName = "@vue/shared"; - version = "3.2.41"; + version = "3.2.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.41.tgz"; - sha512 = "W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw=="; + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.45.tgz"; + sha512 = "Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg=="; }; }; "@vue/web-component-wrapper-1.3.0" = { @@ -13612,13 +13486,13 @@ let sha512 = "Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA=="; }; }; - "@vvo/tzdb-6.75.0" = { + "@vvo/tzdb-6.77.0" = { name = "_at_vvo_slash_tzdb"; packageName = "@vvo/tzdb"; - version = "6.75.0"; + version = "6.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vvo/tzdb/-/tzdb-6.75.0.tgz"; - sha512 = "36hx1wBIJD+ddu2vA3o0JL2xtR6yFbpmLm4hngd59OYtYY/0Mh6BVusUlCdayf9qVZs7UASN07+cwXAanCAuww=="; + url = "https://registry.npmjs.org/@vvo/tzdb/-/tzdb-6.77.0.tgz"; + sha512 = "t7aN3GAznzt8fQ5enJiM3C7HKPEDBoqKExp2W7nYu2AgS0J9FfMk6rwWhL2jjTe0+27REmO9C+TL3XM2evileQ=="; }; }; "@webassemblyjs/ast-1.11.1" = { @@ -14287,6 +14161,15 @@ let sha512 = "4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg=="; }; }; + "@webpack-cli/configtest-2.0.0" = { + name = "_at_webpack-cli_slash_configtest"; + packageName = "@webpack-cli/configtest"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.0.0.tgz"; + sha512 = "war4OU8NGjBqU3DP3bx6ciODXIh7dSXcpQq+P4K2Tqyd8L5OjZ7COx9QXx/QdCIwL2qoX09Wr4Cwf7uS4qdEng=="; + }; + }; "@webpack-cli/info-1.5.0" = { name = "_at_webpack-cli_slash_info"; packageName = "@webpack-cli/info"; @@ -14296,6 +14179,15 @@ let sha512 = "e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ=="; }; }; + "@webpack-cli/info-2.0.0" = { + name = "_at_webpack-cli_slash_info"; + packageName = "@webpack-cli/info"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.0.tgz"; + sha512 = "NNxDgbo4VOkNhOlTgY0Elhz3vKpOJq4/PKeKg7r8cmYM+GQA9vDofLYyup8jS6EpUvhNmR30cHTCEIyvXpskwA=="; + }; + }; "@webpack-cli/serve-1.7.0" = { name = "_at_webpack-cli_slash_serve"; packageName = "@webpack-cli/serve"; @@ -14305,6 +14197,15 @@ let sha512 = "oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q=="; }; }; + "@webpack-cli/serve-2.0.0" = { + name = "_at_webpack-cli_slash_serve"; + packageName = "@webpack-cli/serve"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.0.tgz"; + sha512 = "Rumq5mHvGXamnOh3O8yLk1sjx8dB30qF1OeR6VC00DIR6SLJ4bwwUGKC4pE7qBFoQyyh0H9sAg3fikYgAqVR0w=="; + }; + }; "@webtorrent/http-node-1.3.0" = { name = "_at_webtorrent_slash_http-node"; packageName = "@webtorrent/http-node"; @@ -14314,22 +14215,22 @@ let sha512 = "GWZQKroPES4z91Ijx6zsOsb7+USOxjy66s8AoTWg0HiBBdfnbtf9aeh3Uav0MgYn4BL8Q7tVSUpd0gGpngKGEQ=="; }; }; - "@whatwg-node/fetch-0.5.1" = { + "@whatwg-node/fetch-0.5.3" = { name = "_at_whatwg-node_slash_fetch"; packageName = "@whatwg-node/fetch"; - version = "0.5.1"; + version = "0.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.5.1.tgz"; - sha512 = "RBZS60EU6CbRJ370BVVKW4F9csZuGh0OQNrUDhJ0IaIFLsXsJorFCM2iwaDWZTAPMqxW1TmuVcVKJ3d/H1dV1g=="; + url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.5.3.tgz"; + sha512 = "cuAKL3Z7lrJJuUrfF1wxkQTb24Qd1QO/lsjJpM5ZSZZzUMms5TPnbGeGUKWA3hVKNHh30lVfr2MyRCT5Jfkucw=="; }; }; - "@withgraphite/graphite-cli-routes-0.22.0" = { + "@withgraphite/graphite-cli-routes-0.23.0" = { name = "_at_withgraphite_slash_graphite-cli-routes"; packageName = "@withgraphite/graphite-cli-routes"; - version = "0.22.0"; + version = "0.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/graphite-cli-routes/-/graphite-cli-routes-0.22.0.tgz"; - sha512 = "0LqJ2UMyGkZgP/cp4x89nKibX8r/XMgC+G4Xhobxq34gSOrihqHQjEvPeTiVgjX4MsH7340v8cE2y5pKX6m0aA=="; + url = "https://registry.npmjs.org/@withgraphite/graphite-cli-routes/-/graphite-cli-routes-0.23.0.tgz"; + sha512 = "+hVC6QEkIXKAWeRifpJ925dVjYSSkg/N743RGyP7oljLeI05RPLyvOJoTSs8qRjtLp4XRei+9kNbSZVbd8wKmQ=="; }; }; "@withgraphite/retype-0.3.15" = { @@ -14656,13 +14557,13 @@ let sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; }; }; - "@yarnpkg/parsers-3.0.0-rc.27" = { + "@yarnpkg/parsers-3.0.0-rc.32" = { name = "_at_yarnpkg_slash_parsers"; packageName = "@yarnpkg/parsers"; - version = "3.0.0-rc.27"; + version = "3.0.0-rc.32"; src = fetchurl { - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.27.tgz"; - sha512 = "qs2wZulOYVjaOS6tYOs3SsR7m/qeHwjPrB5i4JtBJELsgWrEkyL+rJH21RA+fVwttJobAYQqw5Xj5SYLaDK/bQ=="; + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.32.tgz"; + sha512 = "Sz2g88b3iAu2jpMnhtps2bRX2GAAOvanOxGcVi+o7ybGjLetxK23o2cHskXKypvXxtZTsJegel5pUWSPpYphww=="; }; }; "@zeit/schemas-2.21.0" = { @@ -14692,22 +14593,22 @@ let sha512 = "nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg=="; }; }; - "@zwave-js/cc-10.3.0" = { + "@zwave-js/cc-10.3.1" = { name = "_at_zwave-js_slash_cc"; packageName = "@zwave-js/cc"; - version = "10.3.0"; + version = "10.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.3.0.tgz"; - sha512 = "2i6X692ZbJwWmL/SWAy9Q+Kk1P0wJY6rt2C6XiNKKN3JjGFERk8YeQBqfkZOgmw5X1VVZAKdGgd7sV4j2Ea6kA=="; + url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.3.1.tgz"; + sha512 = "AnTeQrg0Hb3Kc59zg+OxOwSUI9K607Paf+RjumlCtG9PqNv0rP8UYi9h0MwYWLu2ETGcca7Hes+FRDGQ8JP8BQ=="; }; }; - "@zwave-js/config-10.3.0" = { + "@zwave-js/config-10.3.1" = { name = "_at_zwave-js_slash_config"; packageName = "@zwave-js/config"; - version = "10.3.0"; + version = "10.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.3.0.tgz"; - sha512 = "y5ECjFiDJoTPoDwmMk/QZ/OQggoxwuwR1Ztb5ycHzZC9vpemjcqJ1MwDggoQ7VHwI2OGQwYG5bA0X6DjhAM6PA=="; + url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.3.1.tgz"; + sha512 = "KdmU3VnKGX6zJn8Y6SnC6E+ywfp+b0OcrPMiqMJNVVeDfwCaE73hnUzqji0wKHhd3xDeNNeBYqZ+aHEx22dMnQ=="; }; }; "@zwave-js/core-10.3.0" = { @@ -14719,13 +14620,13 @@ let sha512 = "TP8fzgCq6Nh92tMgN4s2tObMO74vp5NtoX6w3u+WmmtJVyxBf40QeWVJlvbuvpKUZt01uZ2jsnI399SibJgxYg=="; }; }; - "@zwave-js/host-10.3.0" = { + "@zwave-js/host-10.3.1" = { name = "_at_zwave-js_slash_host"; packageName = "@zwave-js/host"; - version = "10.3.0"; + version = "10.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.3.0.tgz"; - sha512 = "Z61yHrC+8p7eyC/w2I81DBvD0htWLLEPHwYPRqCpoetyMqCktKseTdFzj59arRPCWIhKE8xDoiwVxjmfxRENrw=="; + url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.3.1.tgz"; + sha512 = "OlBvGDrf5T8xStH8ZuFpnUlA0Q/PltwNY6PJ8LjDNuHmrsI6Si8WHvjp/fPgWovddXn8RgA/WDx/3y1lXVgZqQ=="; }; }; "@zwave-js/nvmedit-10.3.0" = { @@ -14737,13 +14638,13 @@ let sha512 = "0WwTxkPErfuZCKDfJyXAmpzkaNkCnYVw2GmWquavF8QRCv/N40aX7hYoVt8F3JoiPL4/V/gSNUCx6VxvlO3QRA=="; }; }; - "@zwave-js/serial-10.3.0" = { + "@zwave-js/serial-10.3.1" = { name = "_at_zwave-js_slash_serial"; packageName = "@zwave-js/serial"; - version = "10.3.0"; + version = "10.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.3.0.tgz"; - sha512 = "/WFTuDNO7VINlBpuTK/NU9U+MP9705juvlCC6ntUggzHaQVn1U6NLB72PcPvbQlZszocWq3Gv0BTfxYvMe5VzA=="; + url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.3.1.tgz"; + sha512 = "eCYUdZ9bqDaoeAWOEl966YV0/LKATNIFzPDMzBTebYgHKTOxo0n527B+8BG9pGAkOJnWJoItCS3/e88zU9U8fw=="; }; }; "@zwave-js/shared-10.3.0" = { @@ -14755,13 +14656,13 @@ let sha512 = "3U9S8lJZQxf6aVoH7Hir4KsGnHiinJkzqaEUeOzHyxNeYoZlniIlN9QYtkc21GXFxCcEIrkhoiXbHat7R0LOKg=="; }; }; - "@zwave-js/testing-10.3.0" = { + "@zwave-js/testing-10.3.1" = { name = "_at_zwave-js_slash_testing"; packageName = "@zwave-js/testing"; - version = "10.3.0"; + version = "10.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.3.0.tgz"; - sha512 = "8gif28+miJ6eA8VFkpmiGIDsBWhXW6EEm0t6f2ECDrKlU+mUqZzahZqcPICXDmT7RRqPB/XLoNzMWtsaK6bROQ=="; + url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.3.1.tgz"; + sha512 = "+EPDhy4lPlgneUNHREA8PCYEngS9J/S5iQys4QwFZRCu1uSc1VDCEYyveTxZZIdcjJp+uf05gsu+ZAXdIOWuVA=="; }; }; "CSSselect-0.4.1" = { @@ -14845,6 +14746,15 @@ let sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; }; }; + "abbrev-2.0.0" = { + name = "abbrev"; + packageName = "abbrev"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz"; + sha512 = "6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ=="; + }; + }; "abort-controller-3.0.0" = { name = "abort-controller"; packageName = "abort-controller"; @@ -15214,22 +15124,22 @@ let sha512 = "qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ=="; }; }; - "addons-linter-5.18.0" = { + "addons-linter-5.23.0" = { name = "addons-linter"; packageName = "addons-linter"; - version = "5.18.0"; + version = "5.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-5.18.0.tgz"; - sha512 = "pce7nSuf/fNesDTmiD077auB15gcWZVHSVFmmAU/mm4BpzDPJBYp5rBYVMDaLjTAsYxR6Qq1ICBN8zryso2UxQ=="; + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-5.23.0.tgz"; + sha512 = "Vo6+5YlM2Ge3yYMY+gNg9Smcfcl1J0ZMfGVXnGJjUwDVHuszHVIvurunQuJURnO4FR1gi4Vy1sWye8ArRL5LOw=="; }; }; - "addons-moz-compare-1.2.0" = { + "addons-moz-compare-1.3.0" = { name = "addons-moz-compare"; packageName = "addons-moz-compare"; - version = "1.2.0"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/addons-moz-compare/-/addons-moz-compare-1.2.0.tgz"; - sha512 = "COG8qk2/dubPqabfcoJW4E7pm2EQDI43iMrHnhlobvq/uRMEzx/PYJ1KaUZ97Vgg44R3QdRG5CvDsTRbMUHcDw=="; + url = "https://registry.npmjs.org/addons-moz-compare/-/addons-moz-compare-1.3.0.tgz"; + sha512 = "/rXpQeaY0nOKhNx00pmZXdk5Mu+KhVlL3/pSBuAYwrxRrNiTvI/9xfQI8Lmm7DMMl+PDhtfAHY/0ibTpdeoQQQ=="; }; }; "addons-scanner-utils-8.1.0" = { @@ -15457,6 +15367,15 @@ let sha512 = "wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg=="; }; }; + "ajv-8.11.2" = { + name = "ajv"; + packageName = "ajv"; + version = "8.11.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz"; + sha512 = "E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="; + }; + }; "ajv-8.6.3" = { name = "ajv"; packageName = "ajv"; @@ -16042,13 +15961,13 @@ let sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="; }; }; - "anymatch-3.1.2" = { + "anymatch-3.1.3" = { name = "anymatch"; packageName = "anymatch"; - version = "3.1.2"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"; - sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; + url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"; + sha512 = "KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="; }; }; "ap-0.1.0" = { @@ -16258,22 +16177,13 @@ let sha512 = "nMIiFleSSoO+KLW4Qr5vLor5L6LB2lt43kaiuOl4CqDRdB07T4T/N94c2M8P17C/pLKG0IVeAYrrX61b61bajw=="; }; }; - "application-config-1.0.1" = { - name = "application-config"; - packageName = "application-config"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/application-config/-/application-config-1.0.1.tgz"; - sha512 = "4/pxvg7ujMT7UD+b0OyXwlYntRnqZxjBUoA+vtYwdUA6Nxfx4rGPMaP3kQQcm1aZ9fnXl6Aw2sJy+ZID85/nug=="; - }; - }; - "application-config-path-0.1.0" = { + "application-config-path-0.1.1" = { name = "application-config-path"; packageName = "application-config-path"; - version = "0.1.0"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz"; - sha512 = "lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q=="; + url = "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz"; + sha512 = "zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw=="; }; }; "applicationinsights-1.8.10" = { @@ -16717,13 +16627,13 @@ let sha512 = "c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng=="; }; }; - "array-includes-3.1.5" = { + "array-includes-3.1.6" = { name = "array-includes"; packageName = "array-includes"; - version = "3.1.5"; + version = "3.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz"; - sha512 = "iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ=="; + url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz"; + sha512 = "sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw=="; }; }; "array-initial-1.1.0" = { @@ -16744,6 +16654,15 @@ let sha512 = "sNRaPGh9nnmdC8Zf+pT3UqP8rnWj5Hf9wiFGsX3wUQ2yVSIhO2ShFwCoceIPpB41QF6i2OEmrHmCo36xronCVA=="; }; }; + "array-iterate-2.0.1" = { + name = "array-iterate"; + packageName = "array-iterate"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz"; + sha512 = "I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg=="; + }; + }; "array-last-1.3.0" = { name = "array-last"; packageName = "array-last"; @@ -16924,6 +16843,15 @@ let sha512 = "kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q=="; }; }; + "array.prototype.tosorted-1.1.1" = { + name = "array.prototype.tosorted"; + packageName = "array.prototype.tosorted"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz"; + sha512 = "pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ=="; + }; + }; "arraybuffer.slice-0.0.6" = { name = "arraybuffer.slice"; packageName = "arraybuffer.slice"; @@ -17698,13 +17626,13 @@ let sha512 = "d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q=="; }; }; - "aws-crt-1.14.5" = { + "aws-crt-1.14.8" = { name = "aws-crt"; packageName = "aws-crt"; - version = "1.14.5"; + version = "1.14.8"; src = fetchurl { - url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.14.5.tgz"; - sha512 = "fxjTfNzFaG+cqpPSUDOKWtkufsQV7nq1COHIFcaomgSidbEg129kA+Ses0bJyoe6fKI7aMNIfzT9kDt7+KRn2g=="; + url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.14.8.tgz"; + sha512 = "I2YL08Tx4XieUYS6TygoyM77xG8725eLbCdz8T859w9vsL6rno25ZIM58NKAkmCBNc2QYWrIIsT8KAEtEHdwbA=="; }; }; "aws-sdk-1.18.0" = { @@ -17725,13 +17653,22 @@ let sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw=="; }; }; - "aws-sdk-2.1248.0" = { + "aws-sdk-2.1259.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1248.0"; + version = "2.1259.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1248.0.tgz"; - sha512 = "PxSweXAmKZyhHoPOPphz2XN9/3SDdNs/HBrLn7YF6c+AnZz8VPxCPYRFbFGUTLfQmdz5Cog82tDzwgFd4KGzFQ=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1259.0.tgz"; + sha512 = "ku0sXQ0HOpvhMfu9yszqek4T+xvR9pXemxn3ruG3raIv9Hag0bpZoSqxm6rFtlZV9C26bB47ef5A5+HbkPk8PQ=="; + }; + }; + "aws-sdk-2.1267.0" = { + name = "aws-sdk"; + packageName = "aws-sdk"; + version = "2.1267.0"; + src = fetchurl { + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1267.0.tgz"; + sha512 = "ANTtRay26WwNRbYs6eZYN71b3DURNfWaq3AD6BtVNa8fVvnSLn+NNINw2+vLRjDLPZXMAQVHm0qH/TmyBvtjRA=="; }; }; "aws-sign2-0.6.0" = { @@ -17761,13 +17698,13 @@ let sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; }; }; - "axe-core-4.5.1" = { + "axe-core-4.5.2" = { name = "axe-core"; packageName = "axe-core"; - version = "4.5.1"; + version = "4.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.5.1.tgz"; - sha512 = "1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ=="; + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.5.2.tgz"; + sha512 = "u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA=="; }; }; "axios-0.19.2" = { @@ -17833,13 +17770,13 @@ let sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; }; }; - "axios-1.1.3" = { + "axios-1.2.0" = { name = "axios"; packageName = "axios"; - version = "1.1.3"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-1.1.3.tgz"; - sha512 = "00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA=="; + url = "https://registry.npmjs.org/axios/-/axios-1.2.0.tgz"; + sha512 = "zT7wZyNYu3N5Bu0wuZ6QccIf93Qk1eV8LOewxgjOZFd2DenOs98cJ7+Y6703d0wkaXGY6/nZd4EweJaHz9uzQw=="; }; }; "axios-cookiejar-support-0.5.1" = { @@ -18625,13 +18562,13 @@ let sha512 = "aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ=="; }; }; - "better-sqlite3-7.6.2" = { + "better-sqlite3-8.0.1" = { name = "better-sqlite3"; packageName = "better-sqlite3"; - version = "7.6.2"; + version = "8.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-7.6.2.tgz"; - sha512 = "S5zIU1Hink2AH4xPsN0W43T1/AJ5jrPh7Oy07ocuW/AKYYY02GWzz9NH0nbSMn/gw6fDZ5jZ1QsHt1BXAwJ6Lg=="; + url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.0.1.tgz"; + sha512 = "JhTZjpyapA1icCEjIZB4TSSgkGdFgpWZA2Wszg7Cf4JwJwKQmbvuNnJBeR+EYG/Z29OXvR4G//Rbg31BW/Z7Yg=="; }; }; "bevent-0.1.5" = { @@ -18733,13 +18670,13 @@ let sha512 = "t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="; }; }; - "bignumber.js-9.1.0" = { + "bignumber.js-9.1.1" = { name = "bignumber.js"; packageName = "bignumber.js"; - version = "9.1.0"; + version = "9.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.0.tgz"; - sha512 = "4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A=="; + url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz"; + sha512 = "pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig=="; }; }; "bigspinner-3.1.0" = { @@ -19021,13 +18958,13 @@ let sha512 = "wrDhHe7LUkqaytxgbsFXoemzHRv6e8FrVNWWsQCgUfmuVYW6ke44hoGc9VdpjgfIsJ/ejmCFA8wDtDqACNAvyw=="; }; }; - "bittorrent-dht-10.0.6" = { + "bittorrent-dht-10.0.7" = { name = "bittorrent-dht"; packageName = "bittorrent-dht"; - version = "10.0.6"; + version = "10.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-10.0.6.tgz"; - sha512 = "Odmfmo36/vr0E4PWicans0fesjCfRib2daGaYfB8WHljPTO/U2820EFOA9HBhzdzekGBhBHlSPVi6Jf9vu7/yQ=="; + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-10.0.7.tgz"; + sha512 = "o6elCANGteECXz82LFqG1Ov2fG4uNzfUU7pBMx9ixxKUh99ZXNrhbiNLRNN2F2vBnqKSN7SHlUW4LJ5Z2u1eKw=="; }; }; "bittorrent-dht-6.4.2" = { @@ -19048,13 +18985,13 @@ let sha512 = "dWxU2Mr2lU6jzIKgZrTsXgeXDCIcYpR1b6f2n89fn7juwPAYbNU04OgWjcQPLiNliY0filsX5CQAWntVErpk+Q=="; }; }; - "bittorrent-peerid-1.3.4" = { + "bittorrent-peerid-1.3.5" = { name = "bittorrent-peerid"; packageName = "bittorrent-peerid"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.4.tgz"; - sha512 = "Xzk1FJFHmsc9H8IKFtDUkfAZIT1HW8r6UqajfZBBxWmpA1v7FsPO8xPFtnFzCqcXlPN3yi8dDmlqZCemyB7P8w=="; + url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.5.tgz"; + sha512 = "Ye27xlG2g/lG6iFdfYhvU8cqrwRSaC1RniCsqJGlZx+IB7B7m+wJL6G/cnW7c6uebFegZRmKXeVnaC1lE9KXDA=="; }; }; "bittorrent-protocol-3.5.5" = { @@ -19237,6 +19174,15 @@ let sha512 = "BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA=="; }; }; + "block-iterator-1.1.1" = { + name = "block-iterator"; + packageName = "block-iterator"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/block-iterator/-/block-iterator-1.1.1.tgz"; + sha512 = "DrjdVWZemVO4iBf4tiOXjUrY5cNesjzy0t7sIiu2rdl8cOCHRxAgKjSJFc3vBZYYMMmshUAxajl8QQh/uxXTKQ=="; + }; + }; "block-stream-0.0.9" = { name = "block-stream"; packageName = "block-stream"; @@ -19588,13 +19534,13 @@ let sha512 = "yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA=="; }; }; - "bootstrap-5.2.2" = { + "bootstrap-5.2.3" = { name = "bootstrap"; packageName = "bootstrap"; - version = "5.2.2"; + version = "5.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.2.tgz"; - sha512 = "dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ=="; + url = "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz"; + sha512 = "cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ=="; }; }; "bootstrap-vue-helper-json-1.1.1" = { @@ -20354,15 +20300,6 @@ let sha512 = "RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA=="; }; }; - "buffer-equal-1.0.0" = { - name = "buffer-equal"; - packageName = "buffer-equal"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz"; - sha512 = "tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ=="; - }; - }; "buffer-equal-1.0.1" = { name = "buffer-equal"; packageName = "buffer-equal"; @@ -20939,13 +20876,13 @@ let sha512 = "+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="; }; }; - "cacheable-request-10.2.2" = { + "cacheable-request-10.2.3" = { name = "cacheable-request"; packageName = "cacheable-request"; - version = "10.2.2"; + version = "10.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.2.tgz"; - sha512 = "KxjQZM3UIo7/J6W4sLpwFvu1GB3Whv8NtZ8ZrUL284eiQjiXeeqWTdhixNrp/NLZ/JNuFBo6BD4ZaO8ZJ5BN8Q=="; + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.3.tgz"; + sha512 = "6BehRBOs7iurNjAYN9iPazTwFDaMQavJO8W1MEm3s2pH8q/tkPTtLDRUZaweWK87WFGf2Y5wLAlaCJlR5kOz3w=="; }; }; "cacheable-request-2.1.4" = { @@ -21290,13 +21227,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001431" = { + "caniuse-lite-1.0.30001436" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001431"; + version = "1.0.30001436"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz"; - sha512 = "zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001436.tgz"; + sha512 = "ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg=="; }; }; "canvas-2.10.2" = { @@ -21326,15 +21263,6 @@ let sha512 = "rsJZYVCgXd08sPqwmaIqjAd5SUTfonV0z/gDJ8D6cN8wQphky1kkAYEqQ+hmDxTw7UihvBfjUVUSY+DBEe44jg=="; }; }; - "capital-case-1.0.4" = { - name = "capital-case"; - packageName = "capital-case"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz"; - sha512 = "ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="; - }; - }; "capture-stack-trace-1.0.2" = { name = "capture-stack-trace"; packageName = "capture-stack-trace"; @@ -21461,31 +21389,31 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.5.37" = { + "cdk8s-2.5.64" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.5.37"; + version = "2.5.64"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.37.tgz"; - sha512 = "kKR21QD5MlPYrcO8hjgRbzAo7iQFook9zsDL/i5lQ3vFne3EL51aFwPRVWtpubFLaTUmBfCxQNX49ZeidGPKuA=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.64.tgz"; + sha512 = "2Ljl29uQ6cCG/KUKrXA2wm38LemKCtcaJucTrp/sz+nWFh+SA4KxdiggY6Zr79jJs2GeYRDsfpmkezZVWJLWew=="; }; }; - "cdk8s-plus-25-2.0.19" = { + "cdk8s-plus-25-2.0.49" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.0.19"; + version = "2.0.49"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.0.19.tgz"; - sha512 = "aIbT9BIgplHjpouNGaZPkly9vTAc0vOHRyu5BmoLTBV4I2Tki52VeBLEDrTXkoN40UI2Btd4LVED4HZ7Y75wmA=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.0.49.tgz"; + sha512 = "fBDYLv9rSnF97zUJ/Abm2FfPEo+GEauucq2Yr6MPw+BUCGH9CifNlRwZnh0s7LKLt264yOiwpNZ4p6Ddan3rwA=="; }; }; - "cdktf-0.13.3" = { + "cdktf-0.14.1" = { name = "cdktf"; packageName = "cdktf"; - version = "0.13.3"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.13.3.tgz"; - sha512 = "uDNW+vKtJRZY+NaM3vsQX8lIVOkjC6AxMgx2HI3zvTCb60wI1DfEHr5ET/UCzZfrY1vQXY8ZYNhP4rxeCzW6AA=="; + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.14.1.tgz"; + sha512 = "pehl8Q3Q96pGMRfoNGKFvEGeQnleh/4HQ19d5K8Wht7F4U+eguuP/Z/0fzJZrgzbBCB4PRZUcHp4G8I5+ITVNg=="; }; }; "center-align-0.1.3" = { @@ -21497,13 +21425,13 @@ let sha512 = "Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ=="; }; }; - "chai-4.3.6" = { + "chai-4.3.7" = { name = "chai"; packageName = "chai"; - version = "4.3.6"; + version = "4.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz"; - sha512 = "bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q=="; + url = "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz"; + sha512 = "HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A=="; }; }; "chai-as-promised-7.1.1" = { @@ -21641,13 +21569,13 @@ let sha512 = "g9YLQVHVZS/3F+zIicfB58vjcxopvYQRp7xHzvyDFDhXH1aRZI/JhwSAO0X5qYiQluoGnaNAU6wByD2KTxJN1A=="; }; }; - "change-case-4.1.2" = { - name = "change-case"; - packageName = "change-case"; - version = "4.1.2"; + "char-regex-1.0.2" = { + name = "char-regex"; + packageName = "char-regex"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz"; - sha512 = "bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A=="; + url = "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"; + sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; }; }; "character-entities-1.2.4" = { @@ -22181,13 +22109,13 @@ let sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; }; }; - "ci-info-3.5.0" = { + "ci-info-3.7.0" = { name = "ci-info"; packageName = "ci-info"; - version = "3.5.0"; + version = "3.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz"; - sha512 = "yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw=="; + url = "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz"; + sha512 = "2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog=="; }; }; "cipher-base-1.0.4" = { @@ -23135,13 +23063,13 @@ let sha512 = "+xi2ENsvchtUNa8oBUU58gHgmyN6BEEeZ8NIEgeQ0XnC+AoyihivgZYe+OOiNi+fLy/NUowugwV5gP8XWYDm0Q=="; }; }; - "codemaker-1.70.0" = { + "codemaker-1.71.0" = { name = "codemaker"; packageName = "codemaker"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.70.0.tgz"; - sha512 = "ZiS349YLSwzoe9ZVfupMBd794x3IO4Au6JsyYCchFjbBCzU10TllLigFWSQuVKXBpaBk3I6QhaDuK+JsosDKsg=="; + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.71.0.tgz"; + sha512 = "kjpPxr5TRMYr2BG0EP9IEjQAeE6lTT9fybnCBxQdw3ebVoG8pvMshsQmoMwreL7IaloV8EYIkA+cfr/UpQ6CCg=="; }; }; "codepage-1.4.0" = { @@ -23423,13 +23351,13 @@ let sha512 = "GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="; }; }; - "comma-separated-tokens-2.0.2" = { + "comma-separated-tokens-2.0.3" = { name = "comma-separated-tokens"; packageName = "comma-separated-tokens"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz"; - sha512 = "G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg=="; + url = "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz"; + sha512 = "Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg=="; }; }; "command-exists-1.2.9" = { @@ -23945,15 +23873,6 @@ let sha512 = "MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="; }; }; - "conf-1.4.0" = { - name = "conf"; - packageName = "conf"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/conf/-/conf-1.4.0.tgz"; - sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg=="; - }; - }; "conf-10.2.0" = { name = "conf"; packageName = "conf"; @@ -24215,15 +24134,6 @@ let sha512 = "DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw=="; }; }; - "constant-case-3.0.4" = { - name = "constant-case"; - packageName = "constant-case"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz"; - sha512 = "I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ=="; - }; - }; "constantinople-3.1.2" = { name = "constantinople"; packageName = "constantinople"; @@ -24251,13 +24161,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.1.152" = { + "constructs-10.1.179" = { name = "constructs"; packageName = "constructs"; - version = "10.1.152"; + version = "10.1.179"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.152.tgz"; - sha512 = "yRpUKigiWWY7Awu9bomyvtilLvbVk6dyrxKlG7Pav3B5a97TXVatnsMVUHYzVf5bBZUPWBiGukT7T55ke4ybcg=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.1.179.tgz"; + sha512 = "+J2gvqPkVdSd+xiUzcNnCv2olpVSh37g4qJgTmOD0zczAvQyLBUdJ3NBFDlMcyWCc6TVydFF51pmym7bH7mgdw=="; }; }; "consume-http-header-1.0.0" = { @@ -24828,13 +24738,13 @@ let sha512 = "wPZsm+fzNUwdiTRODT+fQuPV410RNmd3Buiw63vT8BPxjC+cn6Bu8emrgwrDM4pbmU5sa5Unwu3xPcbQGQ3G3g=="; }; }; - "cordova-common-4.0.2" = { + "cordova-common-4.1.0" = { name = "cordova-common"; packageName = "cordova-common"; - version = "4.0.2"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cordova-common/-/cordova-common-4.0.2.tgz"; - sha512 = "od7aNShyuBajzPY83mUEO8tERwwWdFklXETHiXP5Ft87CWeo/tSuwNPFztyTy8XYc74yXdogXKPTJeUHuVzB8Q=="; + url = "https://registry.npmjs.org/cordova-common/-/cordova-common-4.1.0.tgz"; + sha512 = "sYfOSfpYGQOmUDlsARUbpT/EvVKT/E+GI3zwTXt+C6DjZ7xs6ZQVHs3umHKSidjf9yVM2LLmvGFpGrGX7aGxug=="; }; }; "cordova-create-4.0.0" = { @@ -24891,31 +24801,31 @@ let sha512 = "y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ=="; }; }; - "core-js-3.26.0" = { + "core-js-3.26.1" = { name = "core-js"; packageName = "core-js"; - version = "3.26.0"; + version = "3.26.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz"; - sha512 = "+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.26.1.tgz"; + sha512 = "21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA=="; }; }; - "core-js-compat-3.26.0" = { + "core-js-compat-3.26.1" = { name = "core-js-compat"; packageName = "core-js-compat"; - version = "3.26.0"; + version = "3.26.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz"; - sha512 = "piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A=="; + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz"; + sha512 = "622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A=="; }; }; - "core-js-pure-3.26.0" = { + "core-js-pure-3.26.1" = { name = "core-js-pure"; packageName = "core-js-pure"; - version = "3.26.0"; + version = "3.26.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz"; - sha512 = "LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA=="; + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz"; + sha512 = "VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ=="; }; }; "core-util-is-1.0.2" = { @@ -25017,6 +24927,24 @@ let sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; }; }; + "cosmiconfig-7.1.0" = { + name = "cosmiconfig"; + packageName = "cosmiconfig"; + version = "7.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"; + sha512 = "AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA=="; + }; + }; + "cosmiconfig-8.0.0" = { + name = "cosmiconfig"; + packageName = "cosmiconfig"; + version = "8.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz"; + sha512 = "da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ=="; + }; + }; "cosmiconfig-toml-loader-1.0.0" = { name = "cosmiconfig-toml-loader"; packageName = "cosmiconfig-toml-loader"; @@ -25152,13 +25080,13 @@ let sha512 = "gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw=="; }; }; - "create-gatsby-2.24.0" = { + "create-gatsby-3.2.0" = { name = "create-gatsby"; packageName = "create-gatsby"; - version = "2.24.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.24.0.tgz"; - sha512 = "1ZN9cIGlPVPoyKHrl7n+iLf0SbIu/wdWBpujV/UeoIPJpEwEwUFe5fJPUIGTJkyHC97G6ArM+5mKt3fTZiCfwQ=="; + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.2.0.tgz"; + sha512 = "z1/kIoB7Xig8ua5v2tLTMsZPi/4vaNijEM3bYCH7L9S1rzH0Zr04L7m9yxvj5kgFiXChqqUqbA/lf+c7dw8pZQ=="; }; }; "create-graphback-1.0.1" = { @@ -25206,13 +25134,13 @@ let sha512 = "dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="; }; }; - "create-torrent-5.0.6" = { + "create-torrent-5.0.9" = { name = "create-torrent"; packageName = "create-torrent"; - version = "5.0.6"; + version = "5.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-5.0.6.tgz"; - sha512 = "T3C23ZXdgzp6GrmbR3eJ9WSzmsR2ORvsTkr2Md32zmkYyzPmZyK+BayzaZt4kAahCKaLxvpMsvtITP0/WH1Z9g=="; + url = "https://registry.npmjs.org/create-torrent/-/create-torrent-5.0.9.tgz"; + sha512 = "WQ/bMe+aCBSa5EonIkgw7CTM/1JnJDQuLJhA78omSWvuEbXDwaUy0rG3a+IYt+EiO+rdTLxdsBwrsn/wfWOMQA=="; }; }; "cron-parser-3.5.0" = { @@ -25440,22 +25368,22 @@ let sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; }; }; - "cspell-dictionary-6.14.0" = { + "cspell-dictionary-6.16.0" = { name = "cspell-dictionary"; packageName = "cspell-dictionary"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.14.0.tgz"; - sha512 = "BJ89Fv6wiXHrR1OHKq/pnuutImXKehvGI2Wb8lkxOja7GYAypXMfyJRTJ2orE5eqmRD4DI+j3s7Bhby116z+Lw=="; + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.16.0.tgz"; + sha512 = "1Ebi2tw+4H7qLElrcw6+R0fWTaaPHTuylUYRWdUCK+kHZ/Bxj48SGB9i12Crbz04btwvbq8/PXb9nSq6MK+pLQ=="; }; }; - "cspell-gitignore-6.14.0" = { + "cspell-gitignore-6.16.0" = { name = "cspell-gitignore"; packageName = "cspell-gitignore"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.14.0.tgz"; - sha512 = "WaA2bwQQ87YNzRGidi4IJpiTFJFzRJx1I97h2VWkZAiz7mxmIX+RHDsUxgVsIUy3S2SH5SF4bUmZwz8DWTGAAQ=="; + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.16.0.tgz"; + sha512 = "pJHPWp62EMTkTh/MBsJt5qH5Z3ZrasQAzfzDQX77ObRpUZ737T2n8r7QRC1XMZpNyx6rQeVx0DjVPATsQ4MaKQ=="; }; }; "cspell-glob-0.1.25" = { @@ -25467,22 +25395,22 @@ let sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; }; }; - "cspell-glob-6.14.0" = { + "cspell-glob-6.16.0" = { name = "cspell-glob"; packageName = "cspell-glob"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.14.0.tgz"; - sha512 = "0qdqwPJ+4tXk9HwB8IHlHy+P+8OM5sbVFTr5YaC5dGoy+Tfz56Y8V7gnitrmrxcLe3lpHVxi/mHNE3N/HWc+0Q=="; + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.16.0.tgz"; + sha512 = "D+3RGKqkyWvkKM1TEHRUNZj8XJi0kBHIZIfaJOZlYOjllTxW5B2pCylWa977X6vzD+aIH0c51/dQIDBG1u1Law=="; }; }; - "cspell-grammar-6.14.0" = { + "cspell-grammar-6.16.0" = { name = "cspell-grammar"; packageName = "cspell-grammar"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.14.0.tgz"; - sha512 = "0+W6tuHRYsFvrdh3HBTsQlYRWwv+RAok+YZaTv8ypmkMAISU13ipxL9SkEc/r/AermPd5JpJAfPNw8ZNWRVsAg=="; + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.16.0.tgz"; + sha512 = "6s0IqrfO5FbSzaCmkitKvoolLwwYNe/FleFGSCsL/0VBW9whaIU45YAdbpS4f01WfUqz611yYu7A5/rp54WgbQ=="; }; }; "cspell-io-4.1.7" = { @@ -25494,13 +25422,13 @@ let sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; }; }; - "cspell-io-6.14.0" = { + "cspell-io-6.16.0" = { name = "cspell-io"; packageName = "cspell-io"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.14.0.tgz"; - sha512 = "KmjUQ2JrmH3/5JZtYvvjtlB4FWHwE75DrudYfnyFUTzLvVlSagNagfy5wPWTkydnRMdI23I7BOqBA+wtBydXcA=="; + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.16.0.tgz"; + sha512 = "t5cF3zMRRpufIPbfVApKUBWNmKGwpWicSHDUl9NgVdThLScgby/yB+tzgLKyrXKma8g10m/3dZ+WV+sIPyhhfg=="; }; }; "cspell-lib-4.3.12" = { @@ -25512,13 +25440,13 @@ let sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; }; }; - "cspell-lib-6.14.0" = { + "cspell-lib-6.16.0" = { name = "cspell-lib"; packageName = "cspell-lib"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.14.0.tgz"; - sha512 = "EqC/zhG7JSiYIcbzyPngFFrj5ElK0EACILKeqO/5lMvX19TdzaLDtnhY8ZHFY5+EIuaPkj4ahAqferx1gbJaDA=="; + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.16.0.tgz"; + sha512 = "QMRvQMjYwBqZvxOyZdUMJ2/jw5GO7LH7BYqyUAXCmfIlqemezeCie+kiaeWCi9Bs0ja6Fb2hcybxiqx5IsoDnw=="; }; }; "cspell-trie-lib-4.2.8" = { @@ -25530,13 +25458,13 @@ let sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; }; }; - "cspell-trie-lib-6.14.0" = { + "cspell-trie-lib-6.16.0" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.14.0.tgz"; - sha512 = "JY2iRwp/6/qQYmOw2B8uhYDxP7VzqSWIo8rD5lHSivQMjH7lhVnQ2LPumMTa9IEOEesCkwNM8N+krndo12Ptqg=="; + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.16.0.tgz"; + sha512 = "RI8mxXG38uhMmFUSGqnUp+JGxUbo7Mfz6uqYJF//gU8w88K4D7LaRVOCOdpKyi+/zTzK0UBAoiO8AvBJDDIPvQ=="; }; }; "cspell-util-bundle-4.1.11" = { @@ -25665,13 +25593,13 @@ let sha512 = "M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ=="; }; }; - "css-loader-6.7.1" = { + "css-loader-6.7.2" = { name = "css-loader"; packageName = "css-loader"; - version = "6.7.1"; + version = "6.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz"; - sha512 = "yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw=="; + url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.2.tgz"; + sha512 = "oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q=="; }; }; "css-modules-loader-core-1.1.0" = { @@ -25800,6 +25728,15 @@ let sha512 = "OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA=="; }; }; + "css-tree-2.3.0" = { + name = "css-tree"; + packageName = "css-tree"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/css-tree/-/css-tree-2.3.0.tgz"; + sha512 = "1rg0LiK2MFi4R3/lVvnRokEWTZb30ljSAe5x+0HHkZ+OqZaAeiP8g8Eh91VmkyCtQn9vMgQRiaTDYgLBt+2Qyw=="; + }; + }; "css-what-1.0.0" = { name = "css-what"; packageName = "css-what"; @@ -25854,13 +25791,13 @@ let sha512 = "umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w=="; }; }; - "cssdb-7.1.0" = { + "cssdb-7.2.0" = { name = "cssdb"; packageName = "cssdb"; - version = "7.1.0"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssdb/-/cssdb-7.1.0.tgz"; - sha512 = "Sd99PrFgx28ez4GHu8yoQIufc/70h9oYowDf4EjeIKi8mac9whxRjhM3IaMr6EllP6KKKWtJrMfN6C7T9tIWvQ=="; + url = "https://registry.npmjs.org/cssdb/-/cssdb-7.2.0.tgz"; + sha512 = "JYlIsE7eKHSi0UNuCyo96YuIDFqvhGgHw4Ck6lsN+DP0Tp8M64UTDT2trGbkMDqnCoEjks7CkS0XcjU0rkvBdg=="; }; }; "cssesc-3.0.0" = { @@ -26088,13 +26025,13 @@ let sha512 = "byxnDBxM1AVF3YfmsK7Smop9/usNz7gAZYSo9eYp61TGcNXraJby1rAiLyJSt1/8Iho2qaxZOtZCOvQMXogPtg=="; }; }; - "csv-parse-5.3.1" = { + "csv-parse-5.3.3" = { name = "csv-parse"; packageName = "csv-parse"; - version = "5.3.1"; + version = "5.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.1.tgz"; - sha512 = "R4Hv6eGJNzgcKdThZ6XORbSQ873HVcNke74QIq+LbwpT90LaZ8Xzl7KKiuIP16xq/P7ofzRt0h7S0xm+fVScsw=="; + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.3.tgz"; + sha512 = "kEWkAPleNEdhFNkHQpFHu9RYPogsFj3dx6bCxL847fsiLgidzWg0z/O0B1kVWMJUc5ky64zGp18LX2T3DQrOfw=="; }; }; "csv-stream-0.2.0" = { @@ -26169,13 +26106,13 @@ let sha512 = "X3VvImImJ5q6w0wOgJtxAX+RC06d26egp/A/vdSxqOrsRtAA9biXAkc4PZGj/3gx0+z+gDFri6BpcpwuG1/UEw=="; }; }; - "cuss-2.0.0" = { + "cuss-2.1.0" = { name = "cuss"; packageName = "cuss"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cuss/-/cuss-2.0.0.tgz"; - sha512 = "EHbh7F4GHvgyuakXeic9wtfeEYves17MxLpgIsljCbaDil6auJVsTTLV/qwkZ58+Gu+NKmMHVQm81J3BcEqwUg=="; + url = "https://registry.npmjs.org/cuss/-/cuss-2.1.0.tgz"; + sha512 = "xqMndOHDNnwJFjqhVyMvH2ETnNN3p10C2vcndvNVc2DDDTDIAKMws3ZF/HR2q0d25eFi5sTKJPQRP/mcbhhAOA=="; }; }; "custom-error-instance-2.1.1" = { @@ -26259,13 +26196,13 @@ let sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; }; }; - "d3-7.6.1" = { + "d3-7.7.0" = { name = "d3"; packageName = "d3"; - version = "7.6.1"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3/-/d3-7.6.1.tgz"; - sha512 = "txMTdIHFbcpLx+8a0IFhZsbp+PfBBPt8yfbmukZTQFroKuFqIwqswF0qE5JXWefylaAVpSXFoKm3yP+jpNLFLw=="; + url = "https://registry.npmjs.org/d3/-/d3-7.7.0.tgz"; + sha512 = "VEwHCMgMjD2WBsxeRGUE18RmzxT9Bn7ghDpzvTEvkLSBAKgTMydJjouZTjspgQfRHpPt/PB3EHWBa6SSyFQq4g=="; }; }; "d3-array-1.2.4" = { @@ -26286,13 +26223,13 @@ let sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; }; }; - "d3-array-3.2.0" = { + "d3-array-3.2.1" = { name = "d3-array"; packageName = "d3-array"; - version = "3.2.0"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/d3-array/-/d3-array-3.2.0.tgz"; - sha512 = "3yXFQo0oG3QCxbF06rMPFyGRMGJNS7NvsV1+2joOjbBE+9xvWQ8+GcMJAjRCzw06zQ3/arXeJgbPYcjUCuC+3g=="; + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.2.1.tgz"; + sha512 = "gUY/qeHq/yNqqoCKNq4vtpFLdoCdvyNpWoC/KNjhGbhDuQpAM9sIQQKkXSNpXa9h5KySs/gzm7R88WkUutgwWQ=="; }; }; "d3-axis-1.0.12" = { @@ -26826,13 +26763,13 @@ let sha512 = "Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA=="; }; }; - "d3-time-3.0.0" = { + "d3-time-3.1.0" = { name = "d3-time"; packageName = "d3-time"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3-time/-/d3-time-3.0.0.tgz"; - sha512 = "zmV3lRnlaLI08y9IMRXSDshQb5Nj77smnfpnd2LrBa/2K281Jijactokeak14QacHs/kKq0AQ121nidNYlarbQ=="; + url = "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz"; + sha512 = "VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q=="; }; }; "d3-time-format-2.3.0" = { @@ -27528,6 +27465,15 @@ let sha512 = "z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="; }; }; + "decamelize-2.0.0" = { + name = "decamelize"; + packageName = "decamelize"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz"; + sha512 = "Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg=="; + }; + }; "decamelize-4.0.0" = { name = "decamelize"; packageName = "decamelize"; @@ -27564,13 +27510,13 @@ let sha512 = "WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg=="; }; }; - "decimal.js-10.4.2" = { + "decimal.js-10.4.3" = { name = "decimal.js"; packageName = "decimal.js"; - version = "10.4.2"; + version = "10.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.2.tgz"; - sha512 = "ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA=="; + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz"; + sha512 = "VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="; }; }; "decimal.js-7.5.1" = { @@ -27600,13 +27546,13 @@ let sha512 = "O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg=="; }; }; - "decode-uri-component-0.2.0" = { + "decode-uri-component-0.2.2" = { name = "decode-uri-component"; packageName = "decode-uri-component"; - version = "0.2.0"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; - sha512 = "hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og=="; + url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz"; + sha512 = "FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="; }; }; "decompress-4.2.1" = { @@ -27708,13 +27654,13 @@ let sha512 = "OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ=="; }; }; - "deep-eql-3.0.1" = { + "deep-eql-4.1.2" = { name = "deep-eql"; packageName = "deep-eql"; - version = "3.0.1"; + version = "4.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz"; - sha512 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw=="; + url = "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.2.tgz"; + sha512 = "gT18+YW4CcW/DBNTwAmqTtkJh7f9qqScu2qFVlx7kCoeY9tlBu9cUcr7+I+Z/noG8INehS3xQgLpTtd/QUTn4w=="; }; }; "deep-equal-0.2.2" = { @@ -28140,15 +28086,6 @@ let sha512 = "bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="; }; }; - "deltachat-node-1.86.0" = { - name = "deltachat-node"; - packageName = "deltachat-node"; - version = "1.86.0"; - src = fetchurl { - url = "https://registry.npmjs.org/deltachat-node/-/deltachat-node-1.86.0.tgz"; - sha512 = "mePZbE0tyYlOj7hXrQNyvMVn2NI6/K0obP9uIxZC11iTZMhFtJVUG+O18yWOLUCsDeCIDFJnrXDUc4HRbBndWw=="; - }; - }; "denque-1.5.1" = { name = "denque"; packageName = "denque"; @@ -28401,22 +28338,13 @@ let sha512 = "LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A=="; }; }; - "devtools-protocol-0.0.1045489" = { + "devtools-protocol-0.0.1056733" = { name = "devtools-protocol"; packageName = "devtools-protocol"; - version = "0.0.1045489"; + version = "0.0.1056733"; src = fetchurl { - url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz"; - sha512 = "D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ=="; - }; - }; - "devtools-protocol-0.0.901419" = { - name = "devtools-protocol"; - packageName = "devtools-protocol"; - version = "0.0.901419"; - src = fetchurl { - url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.901419.tgz"; - sha512 = "4INMPwNm9XRpBukhNbF7OB6fNTTCaI8pzy/fXg0xQzAy5h3zL1P8xT3QazgKqBrb/hAYwIBizqDBZ7GtJE74QQ=="; + url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1056733.tgz"; + sha512 = "CmTu6SQx2g3TbZzDCAV58+LTxVdKplS7xip0g5oDXpZ+isr0rv5dDP8ToyVRywzPHkCCPKgKgScEcwz4uPWDIA=="; }; }; "devtools-protocol-0.0.981744" = { @@ -28428,15 +28356,6 @@ let sha512 = "0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg=="; }; }; - "dezalgo-1.0.3" = { - name = "dezalgo"; - packageName = "dezalgo"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; - sha512 = "K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ=="; - }; - }; "dezalgo-1.0.4" = { name = "dezalgo"; packageName = "dezalgo"; @@ -28599,15 +28518,6 @@ let sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="; }; }; - "difflib-0.2.4" = { - name = "difflib"; - packageName = "difflib"; - version = "0.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/difflib/-/difflib-0.2.4.tgz"; - sha512 = "9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w=="; - }; - }; "diffy-2.1.0" = { name = "diffy"; packageName = "diffy"; @@ -28635,13 +28545,13 @@ let sha512 = "QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg=="; }; }; - "dir-compare-2.4.0" = { + "dir-compare-3.3.0" = { name = "dir-compare"; packageName = "dir-compare"; - version = "2.4.0"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz"; - sha512 = "l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA=="; + url = "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz"; + sha512 = "J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg=="; }; }; "dir-glob-2.0.0" = { @@ -28914,15 +28824,6 @@ let sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="; }; }; - "dom-helpers-5.2.1" = { - name = "dom-helpers"; - packageName = "dom-helpers"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz"; - sha512 = "nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="; - }; - }; "dom-serialize-2.2.1" = { name = "dom-serialize"; packageName = "dom-serialize"; @@ -28995,15 +28896,6 @@ let sha512 = "6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="; }; }; - "dom4-2.1.6" = { - name = "dom4"; - packageName = "dom4"; - version = "2.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz"; - sha512 = "JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA=="; - }; - }; "domain-browser-1.2.0" = { name = "domain-browser"; packageName = "domain-browser"; @@ -29148,6 +29040,15 @@ let sha512 = "Be9tbQMZds4a3C6xTmz68NlMfeONA//4dOavl/1rNw50E+/QO0KVpbcU0PcaW0nsQxurXls9ZocqFxk8R2mWEA=="; }; }; + "dompurify-2.4.1" = { + name = "dompurify"; + packageName = "dompurify"; + version = "2.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/dompurify/-/dompurify-2.4.1.tgz"; + sha512 = "ewwFzHzrrneRjxzmK6oVz/rZn9VWspGFRDb4/rRtIsM1n36t9AKma/ye8syCpcw+XJ25kOK/hOG7t1j2I2yBqA=="; + }; + }; "domutils-1.4.3" = { name = "domutils"; packageName = "domutils"; @@ -29751,15 +29652,6 @@ let sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; }; }; - "electron-18.3.15" = { - name = "electron"; - packageName = "electron"; - version = "18.3.15"; - src = fetchurl { - url = "https://registry.npmjs.org/electron/-/electron-18.3.15.tgz"; - sha512 = "frkBt8skyo8SmlG4TbByDxZw6/tqttRYYIBaeTBfkoG18OyD59IVwVaXXHO8UYKB5/1C2Rce0Gj6uoxlAHQHzQ=="; - }; - }; "electron-packager-17.1.1" = { name = "electron-packager"; packageName = "electron-packager"; @@ -29870,24 +29762,6 @@ let sha512 = "pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A=="; }; }; - "emoji-js-clean-4.0.0" = { - name = "emoji-js-clean"; - packageName = "emoji-js-clean"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/emoji-js-clean/-/emoji-js-clean-4.0.0.tgz"; - sha512 = "6WZ/WH61ABR/s3TZpRW+nXBSRu6xMTdZSGjNTHo1ptv1vRjwOfbzEPQp9mtgbCi1vkFsFi1SZYz/UIliVxvLwg=="; - }; - }; - "emoji-mart-3.0.1" = { - name = "emoji-mart"; - packageName = "emoji-mart"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/emoji-mart/-/emoji-mart-3.0.1.tgz"; - sha512 = "sxpmMKxqLvcscu6mFn9ITHeZNkGzIvD0BSNFE/LJESPbCA8s1jM6bCDPjWbV31xHq7JXaxgpHxLB54RCbBZSlg=="; - }; - }; "emoji-named-characters-1.0.2" = { name = "emoji-named-characters"; packageName = "emoji-named-characters"; @@ -30086,13 +29960,13 @@ let sha512 = "b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg=="; }; }; - "engine.io-3.6.0" = { + "engine.io-3.6.1" = { name = "engine.io"; packageName = "engine.io"; - version = "3.6.0"; + version = "3.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-3.6.0.tgz"; - sha512 = "Kc8fo5bbg8F4a2f3HPHTEpGyq/IRIQpyeHu3H1ThR14XDD7VrLcsGBo16HUpahgp8YkHJDaU5gNxJZbuGcuueg=="; + url = "https://registry.npmjs.org/engine.io/-/engine.io-3.6.1.tgz"; + sha512 = "dfs8EVg/i7QjFsXxn7cCRQ+Wai1G1TlEvHhdYEi80fxn5R1vZ2K661O6v/rezj1FP234SZ14r9CmJke99iYDGg=="; }; }; "engine.io-6.0.1" = { @@ -30113,13 +29987,13 @@ let sha512 = "rqs60YwkvWTLLnfazqgZqLa/aKo+9cueVfEi/dZ8PyGyaf8TLOxj++4QMIgeG3Gn0AhrWiFXvghsoY9L9h25GA=="; }; }; - "engine.io-6.2.0" = { + "engine.io-6.2.1" = { name = "engine.io"; packageName = "engine.io"; - version = "6.2.0"; + version = "6.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz"; - sha512 = "4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg=="; + url = "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz"; + sha512 = "ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA=="; }; }; "engine.io-client-1.3.1" = { @@ -30212,13 +30086,13 @@ let sha512 = "Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg=="; }; }; - "enhanced-resolve-5.10.0" = { + "enhanced-resolve-5.12.0" = { name = "enhanced-resolve"; packageName = "enhanced-resolve"; - version = "5.10.0"; + version = "5.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz"; - sha512 = "T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ=="; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz"; + sha512 = "QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ=="; }; }; "enquirer-2.3.6" = { @@ -30320,15 +30194,6 @@ let sha512 = "ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA=="; }; }; - "env-paths-1.0.0" = { - name = "env-paths"; - packageName = "env-paths"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/env-paths/-/env-paths-1.0.0.tgz"; - sha512 = "+6r/UAzikJWJPcQZpBQS+bVmjAMz2BkDP/N4n2Uz1zz8lyw1IHWUeVdh/85gs0dp5A+z76LOQhCZkR6F88mlUw=="; - }; - }; "env-paths-2.2.0" = { name = "env-paths"; packageName = "env-paths"; @@ -30663,15 +30528,6 @@ let sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA=="; }; }; - "esbuild-0.12.29" = { - name = "esbuild"; - packageName = "esbuild"; - version = "0.12.29"; - src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.12.29.tgz"; - sha512 = "w/XuoBCSwepyiZtIRsKsetiLDUVGPVw1E/R3VTFSecIy8UR7Cq3SOtwKHJMFoVqqVG36aGkzh4e8BvpO1Fdc7g=="; - }; - }; "esbuild-0.14.47" = { name = "esbuild"; packageName = "esbuild"; @@ -30690,13 +30546,13 @@ let sha512 = "+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw=="; }; }; - "esbuild-0.15.13" = { + "esbuild-0.15.17" = { name = "esbuild"; packageName = "esbuild"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.15.13.tgz"; - sha512 = "Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ=="; + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.15.17.tgz"; + sha512 = "8MbkDX+kh0kaeYGd6klMbn1uTOXHoDw7UYMd1dQYA5cqBZivf5+pzfaXZSL1RNamJfXW/uWC5+9wX5ejDgpSqg=="; }; }; "esbuild-android-64-0.14.47" = { @@ -30717,13 +30573,13 @@ let sha512 = "6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ=="; }; }; - "esbuild-android-64-0.15.13" = { + "esbuild-android-64-0.15.17" = { name = "esbuild-android-64"; packageName = "esbuild-android-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.13.tgz"; - sha512 = "yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g=="; + url = "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.17.tgz"; + sha512 = "sUs6cKMAuAyWnJ/66ezWVr9SMRGFSwoMagxzdhXYggSA12zF7krXSuc1Y9JwxHq56wtv/gFAVo97TFm7RBc1Ig=="; }; }; "esbuild-android-arm64-0.14.47" = { @@ -30744,13 +30600,13 @@ let sha512 = "vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A=="; }; }; - "esbuild-android-arm64-0.15.13" = { + "esbuild-android-arm64-0.15.17" = { name = "esbuild-android-arm64"; packageName = "esbuild-android-arm64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.13.tgz"; - sha512 = "TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w=="; + url = "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.17.tgz"; + sha512 = "RLZuCgIx1rexwxwsXTEW40ZiZzdBI1MBphwDRFyms/iiJGwLxqCH7v75iSJk5s6AF6oa80KC6r/RmzyaX/uJNg=="; }; }; "esbuild-darwin-64-0.14.47" = { @@ -30771,13 +30627,13 @@ let sha512 = "YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA=="; }; }; - "esbuild-darwin-64-0.15.13" = { + "esbuild-darwin-64-0.15.17" = { name = "esbuild-darwin-64"; packageName = "esbuild-darwin-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.13.tgz"; - sha512 = "WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg=="; + url = "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.17.tgz"; + sha512 = "+6RTCZ0hfAb+RqTNq1uVsBcP441yZOSi6CyV9BIBryGGVg8RM3Bc6L45e5b68jdRloddN92ekS50e4ElI+cHQA=="; }; }; "esbuild-darwin-arm64-0.14.47" = { @@ -30798,13 +30654,13 @@ let sha512 = "juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow=="; }; }; - "esbuild-darwin-arm64-0.15.13" = { + "esbuild-darwin-arm64-0.15.17" = { name = "esbuild-darwin-arm64"; packageName = "esbuild-darwin-arm64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.13.tgz"; - sha512 = "U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A=="; + url = "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.17.tgz"; + sha512 = "ne4UWUHEKWLgYSE5SLr0/TBcID3k9LPnrzzRXzFLTfD+ygjnW1pMEgdMfmOKIe8jYBUYv8x/YoksriTdQb9r/Q=="; }; }; "esbuild-freebsd-64-0.14.47" = { @@ -30825,13 +30681,13 @@ let sha512 = "cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g=="; }; }; - "esbuild-freebsd-64-0.15.13" = { + "esbuild-freebsd-64-0.15.17" = { name = "esbuild-freebsd-64"; packageName = "esbuild-freebsd-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.13.tgz"; - sha512 = "whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA=="; + url = "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.17.tgz"; + sha512 = "6my3DrwLOe1zhR8UzVRKeo9AFM9XkApJBcx0IE+qKaEbKKBxYAiDBtd2ZMtRA2agqIwRP0kuHofTiDEzpfA+ZA=="; }; }; "esbuild-freebsd-arm64-0.14.47" = { @@ -30852,13 +30708,13 @@ let sha512 = "TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg=="; }; }; - "esbuild-freebsd-arm64-0.15.13" = { + "esbuild-freebsd-arm64-0.15.17" = { name = "esbuild-freebsd-arm64"; packageName = "esbuild-freebsd-arm64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.13.tgz"; - sha512 = "6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q=="; + url = "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.17.tgz"; + sha512 = "LQL7+f+bz+xmAu1FcDBB304Wm2CjONUcOeF4f3TqG7wYXMxjjYQZBFv+0OVapNXyYrM2vy9JMDbps+SheuOnHg=="; }; }; "esbuild-linux-32-0.14.47" = { @@ -30879,13 +30735,13 @@ let sha512 = "RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w=="; }; }; - "esbuild-linux-32-0.15.13" = { + "esbuild-linux-32-0.15.17" = { name = "esbuild-linux-32"; packageName = "esbuild-linux-32"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.13.tgz"; - sha512 = "VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w=="; + url = "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.17.tgz"; + sha512 = "7E9vZXMZhINQ4/KcxBxioJ2ao5gbXJ6Pa4/LEUd102g3gadSalpg0LrityFgw7ao6qmjcNWwdEYrXaDnOzyyYA=="; }; }; "esbuild-linux-64-0.14.47" = { @@ -30906,13 +30762,13 @@ let sha512 = "dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA=="; }; }; - "esbuild-linux-64-0.15.13" = { + "esbuild-linux-64-0.15.17" = { name = "esbuild-linux-64"; packageName = "esbuild-linux-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.13.tgz"; - sha512 = "rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A=="; + url = "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.17.tgz"; + sha512 = "TnedHtFQSUVlc0J0D4ZMMalYaQ0Zbt7HSwGy4sav7BlXVqDVc/rchJ/a9dathK51apzLgRyXQMseLf6bkloaSQ=="; }; }; "esbuild-linux-arm-0.14.47" = { @@ -30933,13 +30789,13 @@ let sha512 = "LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg=="; }; }; - "esbuild-linux-arm-0.15.13" = { + "esbuild-linux-arm-0.15.17" = { name = "esbuild-linux-arm"; packageName = "esbuild-linux-arm"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.13.tgz"; - sha512 = "Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ=="; + url = "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.17.tgz"; + sha512 = "+ugCmBTTDIlh+UuC7E/GvyJqjGTX2pNOA+g3isG78aYcfgswrHjvstTtIfljaU95AS30qrVNLgI5h/8TsRWTrg=="; }; }; "esbuild-linux-arm64-0.14.47" = { @@ -30960,13 +30816,13 @@ let sha512 = "D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw=="; }; }; - "esbuild-linux-arm64-0.15.13" = { + "esbuild-linux-arm64-0.15.17" = { name = "esbuild-linux-arm64"; packageName = "esbuild-linux-arm64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.13.tgz"; - sha512 = "alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ=="; + url = "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.17.tgz"; + sha512 = "oupYfh0lTHg+F/2ZoTNrioB+KLd6x0Zlhjz2Oa1jhl8wCGkNvwe25RytR2/SGPYpoNVcvCeoayWQRwwRuWGgfQ=="; }; }; "esbuild-linux-mips64le-0.14.47" = { @@ -30987,13 +30843,13 @@ let sha512 = "vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A=="; }; }; - "esbuild-linux-mips64le-0.15.13" = { + "esbuild-linux-mips64le-0.15.17" = { name = "esbuild-linux-mips64le"; packageName = "esbuild-linux-mips64le"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.13.tgz"; - sha512 = "47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A=="; + url = "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.17.tgz"; + sha512 = "aUVyHwUXJF1hi9jsAT+At+cBxZh2yGICi/e757N6d/zzOD+eVK3PKQj68tAvIflx6/ZpnuCTKol1GpgGYrzERg=="; }; }; "esbuild-linux-ppc64le-0.14.47" = { @@ -31014,13 +30870,13 @@ let sha512 = "xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ=="; }; }; - "esbuild-linux-ppc64le-0.15.13" = { + "esbuild-linux-ppc64le-0.15.17" = { name = "esbuild-linux-ppc64le"; packageName = "esbuild-linux-ppc64le"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.13.tgz"; - sha512 = "z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA=="; + url = "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.17.tgz"; + sha512 = "i7789iFTLfLccHPNADCbaZPx9CuQblsBqv2j4XqIBN1jKIJbpQ8iqCkWoHep4PLqqKLtBLtTWh919GsrFGdeJA=="; }; }; "esbuild-linux-riscv64-0.14.47" = { @@ -31041,13 +30897,13 @@ let sha512 = "syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA=="; }; }; - "esbuild-linux-riscv64-0.15.13" = { + "esbuild-linux-riscv64-0.15.17" = { name = "esbuild-linux-riscv64"; packageName = "esbuild-linux-riscv64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.13.tgz"; - sha512 = "+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow=="; + url = "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.17.tgz"; + sha512 = "fEQ/8tnZ2sDniBlPfTXEdg+0OP1olps96HvYdwl8ywJdAlD7AK761EL3lRbRdfMHNOId2N6+CVca43/Fiu/0AQ=="; }; }; "esbuild-linux-s390x-0.14.47" = { @@ -31068,13 +30924,13 @@ let sha512 = "kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw=="; }; }; - "esbuild-linux-s390x-0.15.13" = { + "esbuild-linux-s390x-0.15.17" = { name = "esbuild-linux-s390x"; packageName = "esbuild-linux-s390x"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.13.tgz"; - sha512 = "BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag=="; + url = "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.17.tgz"; + sha512 = "ZBQekST4gYgTKHAvUJtR1kFFulHTDlRZSE8T0wRQCmQqydNkC1teWxlR31xS6MZevjZGfa7OMVJD24bBhei/2Q=="; }; }; "esbuild-netbsd-64-0.14.47" = { @@ -31095,13 +30951,13 @@ let sha512 = "ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A=="; }; }; - "esbuild-netbsd-64-0.15.13" = { + "esbuild-netbsd-64-0.15.17" = { name = "esbuild-netbsd-64"; packageName = "esbuild-netbsd-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.13.tgz"; - sha512 = "EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ=="; + url = "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.17.tgz"; + sha512 = "onNBFaZVN9GzGJMm3aZJJv74n/Q8FjW20G9OfSDhHjvamqJ5vbd42hNk6igQX4lgBCHTZvvBlWDJAMy+tbJAAw=="; }; }; "esbuild-openbsd-64-0.14.47" = { @@ -31122,13 +30978,13 @@ let sha512 = "7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA=="; }; }; - "esbuild-openbsd-64-0.15.13" = { + "esbuild-openbsd-64-0.15.17" = { name = "esbuild-openbsd-64"; packageName = "esbuild-openbsd-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.13.tgz"; - sha512 = "nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w=="; + url = "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.17.tgz"; + sha512 = "QFxHmvjaRrmTCvH/A3EmzqKUSZHRQ7/pbrJeATsb/Q6qckCeL9e7zg/1A3HiZqDXeBUV3yNeBeV1GJBjY6yVyA=="; }; }; "esbuild-sunos-64-0.14.47" = { @@ -31149,13 +31005,13 @@ let sha512 = "HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA=="; }; }; - "esbuild-sunos-64-0.15.13" = { + "esbuild-sunos-64-0.15.17" = { name = "esbuild-sunos-64"; packageName = "esbuild-sunos-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.13.tgz"; - sha512 = "jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw=="; + url = "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.17.tgz"; + sha512 = "7dHZA8Kc6U8rBTKojJatXtzHTUKJ3CRYimvOGIQQ1yUDOqGx/zZkCH/HkEi3Zg5SWyDj/57E5e1YJPo4ySSw/w=="; }; }; "esbuild-windows-32-0.14.47" = { @@ -31176,13 +31032,13 @@ let sha512 = "4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg=="; }; }; - "esbuild-windows-32-0.15.13" = { + "esbuild-windows-32-0.15.17" = { name = "esbuild-windows-32"; packageName = "esbuild-windows-32"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.13.tgz"; - sha512 = "XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA=="; + url = "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.17.tgz"; + sha512 = "yDrNrwQ/0k4N3OZItZ6k6YnBUch8+of06YRYc3hFI8VDm7X1rkNZwhttZNAzF6+TtbnK4cIz7H2/EwdSoaGZ3g=="; }; }; "esbuild-windows-64-0.14.47" = { @@ -31203,13 +31059,13 @@ let sha512 = "HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA=="; }; }; - "esbuild-windows-64-0.15.13" = { + "esbuild-windows-64-0.15.17" = { name = "esbuild-windows-64"; packageName = "esbuild-windows-64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.13.tgz"; - sha512 = "Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ=="; + url = "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.17.tgz"; + sha512 = "jPnXvB4zMMToNPpCBdt+OEQiYFVs9wlQ5G8vMoJkrYJBp1aEt070MRpBFa6pfBFrgXquqgUiNAohMcTdy+JVFg=="; }; }; "esbuild-windows-arm64-0.14.47" = { @@ -31230,13 +31086,13 @@ let sha512 = "JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g=="; }; }; - "esbuild-windows-arm64-0.15.13" = { + "esbuild-windows-arm64-0.15.17" = { name = "esbuild-windows-arm64"; packageName = "esbuild-windows-arm64"; - version = "0.15.13"; + version = "0.15.17"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.13.tgz"; - sha512 = "3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg=="; + url = "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.17.tgz"; + sha512 = "I5QeSsz0X66V8rxVhmw03Wzn8Tz63H3L9GrsA7C5wvBXMk3qahLWuEL+l7SZ2DleKkFeZZMu1dPxOak9f1TZ4A=="; }; }; "esc-exit-3.0.0" = { @@ -31428,22 +31284,22 @@ let sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; }; }; - "eslint-8.25.0" = { + "eslint-8.28.0" = { name = "eslint"; packageName = "eslint"; - version = "8.25.0"; + version = "8.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.25.0.tgz"; - sha512 = "DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.28.0.tgz"; + sha512 = "S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ=="; }; }; - "eslint-8.27.0" = { + "eslint-8.29.0" = { name = "eslint"; packageName = "eslint"; - version = "8.27.0"; + version = "8.29.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.27.0.tgz"; - sha512 = "0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz"; + sha512 = "isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg=="; }; }; "eslint-config-prettier-6.15.0" = { @@ -31563,13 +31419,13 @@ let sha512 = "sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q=="; }; }; - "eslint-plugin-n-15.5.0" = { + "eslint-plugin-n-15.5.1" = { name = "eslint-plugin-n"; packageName = "eslint-plugin-n"; - version = "15.5.0"; + version = "15.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.5.0.tgz"; - sha512 = "VCqQiZDpdm1Q9grnvy+XsENZoXDgTLqPHRQwgl9qFNNgTKR4YEnQOMN0pFB/9TbmrQ88jdeTnqTcNwRvjqMOtg=="; + url = "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.5.1.tgz"; + sha512 = "kAd+xhZm7brHoFLzKLB7/FGRFJNg/srmv67mqb7tto22rpr4wv/LV6RuXzAfv3jbab7+k1wi42PsIhGviywaaw=="; }; }; "eslint-plugin-no-unsanitized-4.0.1" = { @@ -31617,13 +31473,13 @@ let sha512 = "tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig=="; }; }; - "eslint-plugin-react-7.31.10" = { + "eslint-plugin-react-7.31.11" = { name = "eslint-plugin-react"; packageName = "eslint-plugin-react"; - version = "7.31.10"; + version = "7.31.11"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz"; - sha512 = "e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA=="; + url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz"; + sha512 = "TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw=="; }; }; "eslint-plugin-react-hooks-4.6.0" = { @@ -31653,13 +31509,13 @@ let sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; }; }; - "eslint-plugin-vue-9.7.0" = { + "eslint-plugin-vue-9.8.0" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; - version = "9.7.0"; + version = "9.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.7.0.tgz"; - sha512 = "DrOO3WZCZEwcLsnd3ohFwqCoipGRSTKTBTnLwdhqAbYZtzWl0o7D+D8ZhlmiZvABKTEl8AFsqH1GHGdybyoQmw=="; + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.8.0.tgz"; + sha512 = "E/AXwcTzunyzM83C2QqDHxepMzvI2y6x+mmeYHbVDQlKFqmKYvRrhaVixEeeG27uI44p9oKDFiyCRw4XxgtfHA=="; }; }; "eslint-rule-docs-1.1.235" = { @@ -31824,15 +31680,6 @@ let sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; }; }; - "espree-9.4.0" = { - name = "espree"; - packageName = "espree"; - version = "9.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz"; - sha512 = "DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw=="; - }; - }; "espree-9.4.1" = { name = "espree"; packageName = "espree"; @@ -32571,13 +32418,13 @@ let sha512 = "/wSgNMxFusiYRy1rd19LT2SQlIXDppHpumpWo06wxjflD1OYxDLbl6rMVw+U3bxD5Nuhex4TKqv9Aem4D0lVzQ=="; }; }; - "expo-47.0.1" = { + "expo-47.0.8" = { name = "expo"; packageName = "expo"; - version = "47.0.1"; + version = "47.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/expo/-/expo-47.0.1.tgz"; - sha512 = "8EP/0xdoyC7Q0/gRxmt04hIlVhbSY8Epapp+tz5PyqlDhmtdS4nwCEvghD4Ca1E/JFNGPMCanEsrwJkcZB3Beg=="; + url = "https://registry.npmjs.org/expo/-/expo-47.0.8.tgz"; + sha512 = "PGNCIvrnYwHH4TDFsVocq/xhWZ5DW8N3bLkZJPZZgX6VgjtVLNsbZ+0lm1inLCZHP+6xSpSKRccjGHO/QQoMBQ=="; }; }; "expo-application-5.0.1" = { @@ -32661,13 +32508,13 @@ let sha512 = "MoRRkOVMoGUH/Lr8XS6UmBIZT/qrwbRt2IzUBALcM6MWZKtDn9Uct9XgMRxue82FJhRCfy9p1xZJVKHBRo4zEA=="; }; }; - "expo-modules-core-1.0.0" = { + "expo-modules-core-1.0.3" = { name = "expo-modules-core"; packageName = "expo-modules-core"; - version = "1.0.0"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.0.0.tgz"; - sha512 = "QsIRXbnqBtEKQMWohSrKTSF4lASLt3wWbfvMywEkmF36cggxP66eRjBMRKQWQlaxORCAzpFFHiVBfZWN4WVsTw=="; + url = "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.0.3.tgz"; + sha512 = "XqyA5c+zsK+cHDNVBVYu62HLBHyGMG0iWpXVP0bBQJWz0eyg5rcuEqLsnRTmoEz0YnH6QBf/cwRl+FfgnnH5Og=="; }; }; "expo-pwa-0.0.124" = { @@ -33381,13 +33228,13 @@ let sha512 = "Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="; }; }; - "fast-plist-0.1.2" = { + "fast-plist-0.1.3" = { name = "fast-plist"; packageName = "fast-plist"; - version = "0.1.2"; + version = "0.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.2.tgz"; - sha512 = "2HxzrqJhmMoxVzARjYFvkzkL2dCBB8sogU5sD8gqcZWv5UCivK9/cXM9KIPDRwU+eD3mbRDN/GhW8bO/4dtMfg=="; + url = "https://registry.npmjs.org/fast-plist/-/fast-plist-0.1.3.tgz"; + sha512 = "d9cEfo/WcOezgPLAC/8t8wGb6YOD6JTCPMw2QcG2nAdFmyY+9rTUizCTaGjIZAloWENTEUMAPpkUAIJJJ0i96A=="; }; }; "fast-readable-async-iterator-1.1.1" = { @@ -33507,13 +33354,13 @@ let sha512 = "5DtIKh6vtOmEGkYdEPNNb+mxeYCnBiKbK3s4gq52l6cX8I5QaTDWWw0Wx/iYo80fVOblSycHu1/iJeqeNxG8Jw=="; }; }; - "fastq-1.13.0" = { + "fastq-1.14.0" = { name = "fastq"; packageName = "fastq"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"; - sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; + url = "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz"; + sha512 = "eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg=="; }; }; "fault-1.0.4" = { @@ -34092,15 +33939,6 @@ let sha512 = "mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ=="; }; }; - "filesize-8.0.7" = { - name = "filesize"; - packageName = "filesize"; - version = "8.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz"; - sha512 = "pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ=="; - }; - }; "fill-range-2.2.4" = { name = "fill-range"; packageName = "fill-range"; @@ -34416,6 +34254,15 @@ let sha512 = "LNRvR4hr/S8cXXkIY5pTgVP7L3tq6LlYWcg9nWBuW7o1NMxKZo6oOVa/6GIekMGI0Iw7uC+HWimMe9u/VAeKqw=="; }; }; + "fix-esm-1.0.1" = { + name = "fix-esm"; + packageName = "fix-esm"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/fix-esm/-/fix-esm-1.0.1.tgz"; + sha512 = "EZtb7wPXZS54GaGxaWxMlhd1DUDCnAg5srlYdu/1ZVeW+7wwR3Tp59nu52dXByFs3MBRq+SByx1wDOJpRvLEXw=="; + }; + }; "fkill-7.2.1" = { name = "fkill"; packageName = "fkill"; @@ -34533,22 +34380,22 @@ let sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA=="; }; }; - "flow-parser-0.192.0" = { + "flow-parser-0.194.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.192.0"; + version = "0.194.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.192.0.tgz"; - sha512 = "FLyei0ikf4ab9xlg+05WNmdpOODiH9XVBuw7iI9OZyjIo+cX2L2OUPTovjbWLYLlI41oGTcprbKdB/f9XwBnKw=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.194.0.tgz"; + sha512 = "3dipGWKnXmE4LEE5yCPHJrSlMYOPAYU7wMBecfKiWPQSZp1CvkpJ59dfuuUIeM2TSttKGSatep77vGG9cjkeqg=="; }; }; - "flow-remove-types-2.192.0" = { + "flow-remove-types-2.194.0" = { name = "flow-remove-types"; packageName = "flow-remove-types"; - version = "2.192.0"; + version = "2.194.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-remove-types/-/flow-remove-types-2.192.0.tgz"; - sha512 = "EWKpgTjeajtI4XuCDtYmLZdjrBc4AjfCed8bn3wfUY7JEfno/KMr519Ev4sc/xwFqu5Qw6auWIGd9FlQrLYHMA=="; + url = "https://registry.npmjs.org/flow-remove-types/-/flow-remove-types-2.194.0.tgz"; + sha512 = "/tkRSpCkjas9c2IZblDAgvAyd8atLYAHcenwupaRNiZGQva6tNjOHw7nj5kR+C4n2lvxQdrAs1jpZoD1ziN04g=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -34929,13 +34776,13 @@ let sha512 = "qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A=="; }; }; - "form-data-encoder-2.1.3" = { + "form-data-encoder-2.1.4" = { name = "form-data-encoder"; packageName = "form-data-encoder"; - version = "2.1.3"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.3.tgz"; - sha512 = "KqU0nnPMgIJcCOFTNJFEA8epcseEaoox4XZffTgy8jlI6pL/5EFyR54NRG7CnCJN0biY7q52DO3MH6/sJ/TKlQ=="; + url = "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz"; + sha512 = "yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw=="; }; }; "form-urlencoded-4.5.1" = { @@ -35010,13 +34857,13 @@ let sha512 = "KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ=="; }; }; - "formidable-2.0.1" = { + "formidable-2.1.2" = { name = "formidable"; packageName = "formidable"; - version = "2.0.1"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/formidable/-/formidable-2.0.1.tgz"; - sha512 = "rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ=="; + url = "https://registry.npmjs.org/formidable/-/formidable-2.1.2.tgz"; + sha512 = "CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g=="; }; }; "forwarded-0.1.2" = { @@ -35226,6 +35073,15 @@ let sha512 = "oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="; }; }; + "fs-extra-11.1.0" = { + name = "fs-extra"; + packageName = "fs-extra"; + version = "11.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz"; + sha512 = "0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw=="; + }; + }; "fs-extra-3.0.1" = { name = "fs-extra"; packageName = "fs-extra"; @@ -35577,22 +35433,22 @@ let sha512 = "w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w=="; }; }; - "gatsby-core-utils-3.24.0" = { + "gatsby-core-utils-4.2.0" = { name = "gatsby-core-utils"; packageName = "gatsby-core-utils"; - version = "3.24.0"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.24.0.tgz"; - sha512 = "P4tbcYOJ1DSYKRP4gIAR9Xta/d/AzjmsK2C6PzX7sNcGnviDKtAIoeV9sE0kNXOqBfUCez25zmAi2cq8NlaxKw=="; + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.2.0.tgz"; + sha512 = "REU+clGHBrNnEBQzVZbVWLRhS059AdNx/843JzqXQO3XrMYkfZoWhL2apQ+ZJSOf6RO3jlSxfBtQ6ULelrvYvA=="; }; }; - "gatsby-telemetry-3.24.0" = { + "gatsby-telemetry-4.2.0" = { name = "gatsby-telemetry"; packageName = "gatsby-telemetry"; - version = "3.24.0"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.24.0.tgz"; - sha512 = "ioBzkmImRuyEAGtnyJgpln4LKTQ61MAjFaU+SFLVKDATcVh86rfNbD2ks5DzZgCtsP1/zVmHv2a7s4z/TQCZjA=="; + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.2.0.tgz"; + sha512 = "RmUIWVOoVFwVFAxUhJpP6YwWZbUObNOfS+iJQZoPwondg7fBLuE2NEtlycPfdDLYlmzQZat0l3xwvECpmjzM4Q=="; }; }; "gauge-1.2.7" = { @@ -35784,15 +35640,6 @@ let sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; }; }; - "geojson-flatten-1.1.1" = { - name = "geojson-flatten"; - packageName = "geojson-flatten"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/geojson-flatten/-/geojson-flatten-1.1.1.tgz"; - sha512 = "k/6BCd0qAt7vdqdM1LkLfAy72EsLDy0laNwX0x2h49vfYCiQkRc4PSra8DNEdJ10EKRpwEvDXMb0dBknTJuWpQ=="; - }; - }; "geojson-vt-3.2.1" = { name = "geojson-vt"; packageName = "geojson-vt"; @@ -36594,13 +36441,13 @@ let sha512 = "MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ=="; }; }; - "global-dirs-3.0.0" = { + "global-dirs-3.0.1" = { name = "global-dirs"; packageName = "global-dirs"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz"; - sha512 = "v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA=="; + url = "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz"; + sha512 = "NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA=="; }; }; "global-https://github.com/component/global/archive/v2.0.1.tar.gz" = { @@ -36703,13 +36550,13 @@ let sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; }; }; - "globals-13.17.0" = { + "globals-13.18.0" = { name = "globals"; packageName = "globals"; - version = "13.17.0"; + version = "13.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz"; - sha512 = "1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw=="; + url = "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz"; + sha512 = "/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A=="; }; }; "globals-9.18.0" = { @@ -36910,13 +36757,13 @@ let sha512 = "5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA=="; }; }; - "google-auth-library-8.6.0" = { + "google-auth-library-8.7.0" = { name = "google-auth-library"; packageName = "google-auth-library"; - version = "8.6.0"; + version = "8.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.6.0.tgz"; - sha512 = "y6bw1yTWMVgs1vGJwBZ3uu+uIClfgxQfsEVcTNKjQeNQOVwox69+ZUgTeTAzrh+74hBqrk1gWyb9RsQVDI7seg=="; + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.7.0.tgz"; + sha512 = "1M0NG5VDIvJZEnstHbRdckLZESoJwguinwN8Dhae0j2ZKIQFIV63zxm6Fo6nM4xkgqUr2bbMtV5Dgo+Hy6oo0Q=="; }; }; "google-gax-3.5.2" = { @@ -37045,13 +36892,13 @@ let sha512 = "o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ=="; }; }; - "got-12.5.2" = { + "got-12.5.3" = { name = "got"; packageName = "got"; - version = "12.5.2"; + version = "12.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-12.5.2.tgz"; - sha512 = "guHGMSEcsA5m1oPRweXUJnug0vuvlkX9wx5hzOka+ZBrBUOJHU0Z1JcNu3QE5IPGnA5aXUsQHdWOD4eJg9/v3A=="; + url = "https://registry.npmjs.org/got/-/got-12.5.3.tgz"; + sha512 = "8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w=="; }; }; "got-3.3.1" = { @@ -37081,15 +36928,6 @@ let sha512 = "Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg=="; }; }; - "got-7.1.0" = { - name = "got"; - packageName = "got"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-7.1.0.tgz"; - sha512 = "Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw=="; - }; - }; "got-8.3.2" = { name = "got"; packageName = "got"; @@ -37153,15 +36991,6 @@ let sha512 = "vH2bsdjoJLQ33sZCquG1GyiFyK+Qk8n04NzqHLWTnY9l8lg08AGUyA8ZgeZHdi3I81nrdcGO13V9qYyP6sdshw=="; }; }; - "grammy-1.11.2" = { - name = "grammy"; - packageName = "grammy"; - version = "1.11.2"; - src = fetchurl { - url = "https://registry.npmjs.org/grammy/-/grammy-1.11.2.tgz"; - sha512 = "R6NlxOAfd3H4eMBU96ARi/kwZXzc3Z8Pj/g7cxmclPsxSXTHItRkY8eagS1Ol1l/CxCkEvQzHslIE9/dZSrqTQ=="; - }; - }; "grammy-1.12.0" = { name = "grammy"; packageName = "grammy"; @@ -37342,13 +37171,13 @@ let sha512 = "duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA=="; }; }; - "graphql-language-service-server-2.9.2" = { + "graphql-language-service-server-2.9.4" = { name = "graphql-language-service-server"; packageName = "graphql-language-service-server"; - version = "2.9.2"; + version = "2.9.4"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.9.2.tgz"; - sha512 = "AmgdMLNa9P6uyg1Ct1Jq+i+otAy1i0/jzzbatNdxpiznh4wQ3CTdfw2hRhg9K//EeOHvrmtDzu/Z9HtDM5R4Cw=="; + url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.9.4.tgz"; + sha512 = "26PediCh1HWP6vIwiqCCUkh1QzKoLVFeEX79SerI3ETsfCS4RYyFAX4SiiFPLj0JKKM8Xmg7OBjRgiwwa1AdYw=="; }; }; "graphql-language-service-types-1.8.7" = { @@ -37441,15 +37270,6 @@ let sha512 = "5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q=="; }; }; - "grid-index-1.1.0" = { - name = "grid-index"; - packageName = "grid-index"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz"; - sha512 = "HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA=="; - }; - }; "gridsome-helper-json-1.0.3" = { name = "gridsome-helper-json"; packageName = "gridsome-helper-json"; @@ -38341,15 +38161,6 @@ let sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; }; }; - "header-case-2.0.4" = { - name = "header-case"; - packageName = "header-case"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz"; - sha512 = "H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q=="; - }; - }; "headless-0.1.7" = { name = "headless"; packageName = "headless"; @@ -38593,13 +38404,13 @@ let sha512 = "ujditC4vvBmZd00RRNfNPLgFVlqEeUX4sAFv5lGhBHuql8iAZodOdlZTD3em/1zo7vyjQp12up/lCVqQk8dvxA=="; }; }; - "hls.js-1.2.5" = { + "hls.js-1.2.8" = { name = "hls.js"; packageName = "hls.js"; - version = "1.2.5"; + version = "1.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/hls.js/-/hls.js-1.2.5.tgz"; - sha512 = "1xW5PBJcQu2MsQDnqoFtCfaxxJ1hHwJHRThxDtrKRcrltTtSi4A62xgOsey+KK8MTMD6i4w5fcmBBz1U62ihvQ=="; + url = "https://registry.npmjs.org/hls.js/-/hls.js-1.2.8.tgz"; + sha512 = "vH4b0ATbMEQz7776YBt6kKlRlvuT7RiFfliuxzn6nBlksrEl5HfQxN1Fn5VUNVVt8rws1rKWzpWwXANgCm03rw=="; }; }; "hmac-drbg-1.0.1" = { @@ -38719,6 +38530,15 @@ let sha512 = "xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw=="; }; }; + "hosted-git-info-6.1.1" = { + name = "hosted-git-info"; + packageName = "hosted-git-info"; + version = "6.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz"; + sha512 = "r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w=="; + }; + }; "hot-formula-parser-4.0.0" = { name = "hot-formula-parser"; packageName = "hot-formula-parser"; @@ -39025,13 +38845,13 @@ let sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg=="; }; }; - "htmlnano-2.0.2" = { + "htmlnano-2.0.3" = { name = "htmlnano"; packageName = "htmlnano"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.2.tgz"; - sha512 = "+ZrQFS4Ub+zd+/fWwfvoYCEGNEa0/zrpys6CyXxvZDwtL7Pl+pOtRkiujyvBQ7Lmfp7/iEPxtOFgxWA16Gkj3w=="; + url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.3.tgz"; + sha512 = "S4PGGj9RbdgW8LhbILNK7W9JhmYP8zmDY7KDV/8eCiJBQJlbmltp5I0gv8c5ntLljfdxxfmJ+UJVSqyH4mb41A=="; }; }; "htmlparser2-3.10.1" = { @@ -39385,13 +39205,13 @@ let sha512 = "V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg=="; }; }; - "http2-wrapper-2.1.11" = { + "http2-wrapper-2.2.0" = { name = "http2-wrapper"; packageName = "http2-wrapper"; - version = "2.1.11"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.1.11.tgz"; - sha512 = "aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ=="; + url = "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz"; + sha512 = "kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ=="; }; }; "http_ece-1.1.0" = { @@ -39520,13 +39340,13 @@ let sha512 = "un3ZAcNQGI7RzaWGZzQDH47HETM4Wrj6z6E4TId8Yeq9w5ZKUVB1nrT2jwFheTUjEmqcgTjXDc959jum+ai1kQ=="; }; }; - "humanize-string-1.0.2" = { + "humanize-string-2.1.0" = { name = "humanize-string"; packageName = "humanize-string"; - version = "1.0.2"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.2.tgz"; - sha512 = "PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w=="; + url = "https://registry.npmjs.org/humanize-string/-/humanize-string-2.1.0.tgz"; + sha512 = "sQ+hqmxyXW8Cj7iqxcQxD7oSy3+AXnIZXdUF9lQMkzaG8dtbKAB8U7lCtViMnwQ+MpdCKsO2Kiij3G6UUXq/Xg=="; }; }; "humps-2.0.1" = { @@ -39790,6 +39610,15 @@ let sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; }; }; + "ignore-5.2.1" = { + name = "ignore"; + packageName = "ignore"; + version = "5.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz"; + sha512 = "d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA=="; + }; + }; "ignore-by-default-1.0.1" = { name = "ignore-by-default"; packageName = "ignore-by-default"; @@ -40087,13 +39916,13 @@ let sha512 = "ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg=="; }; }; - "import-meta-resolve-2.1.0" = { + "import-meta-resolve-2.2.0" = { name = "import-meta-resolve"; packageName = "import-meta-resolve"; - version = "2.1.0"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.1.0.tgz"; - sha512 = "yG9pxkWJVTy4cmRsNWE3ztFdtFuYIV8G4N+cbCkO8b+qngkLyIUhxQFuZ0qJm67+0nUOxjMPT7nfksPKza1v2g=="; + url = "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.0.tgz"; + sha512 = "CpPOtiCHxP9HdtDM5F45tNiAe66Cqlv3f5uHoJjt+KlaLrUh9/Wz9vepADZ78SlqEo62aDWZtj9ydMGXV+CPnw=="; }; }; "imurmurhash-0.1.4" = { @@ -40294,15 +40123,6 @@ let sha512 = "7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="; }; }; - "ini-3.0.0" = { - name = "ini"; - packageName = "ini"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz"; - sha512 = "TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw=="; - }; - }; "ini-3.0.1" = { name = "ini"; packageName = "ini"; @@ -40555,15 +40375,6 @@ let sha512 = "ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg=="; }; }; - "insight-0.10.3" = { - name = "insight"; - packageName = "insight"; - version = "0.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/insight/-/insight-0.10.3.tgz"; - sha512 = "YOncxSN6Omh+1Oqxt+OJAvJVMDKw7l6IEG0wT2cTMGxjsTcroOGW4IR926QDzxg/uZHcFZ2cZbckDWdZhc2pZw=="; - }; - }; "insight-0.11.1" = { name = "insight"; packageName = "insight"; @@ -40852,13 +40663,31 @@ let sha512 = "uVe0WdHGdhkKubfrH1rSC/RpFREC7D0dh1IHxEgmUhV1lhn2+1UFVUxhri4dGyklBgIi+DNzE8q3665PF8z5Vw=="; }; }; - "io-ts-2.2.19" = { + "invoices-2.2.1" = { + name = "invoices"; + packageName = "invoices"; + version = "2.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/invoices/-/invoices-2.2.1.tgz"; + sha512 = "VSyzBmdKuTIMjeKAPvdCN9+w7RI1AprZVuPe6L5zmPxnYfU56EMhXa6qFybS1K9SxwBCp8QuilJywnAT3NAOIg=="; + }; + }; + "invoices-2.2.2" = { + name = "invoices"; + packageName = "invoices"; + version = "2.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/invoices/-/invoices-2.2.2.tgz"; + sha512 = "flSBneW7IYRS2K7eVoL6Uemo5LkXkv++6wul8ZBbDz48j3GSGb1pVLdHUo1nvU9+WGNU3/Pqq27r99okyCnHdQ=="; + }; + }; + "io-ts-2.2.20" = { name = "io-ts"; packageName = "io-ts"; - version = "2.2.19"; + version = "2.2.20"; src = fetchurl { - url = "https://registry.npmjs.org/io-ts/-/io-ts-2.2.19.tgz"; - sha512 = "ED0GQwvKRr5C2jqOOJCkuJW2clnbzqFexQ8V7Qsb+VB36S1Mk/OKH7k0FjSe4mjKy9qBRA3OqgVGyFMUEKIubw=="; + url = "https://registry.npmjs.org/io-ts/-/io-ts-2.2.20.tgz"; + sha512 = "Rq2BsYmtwS5vVttie4rqrOCIfHCS9TgpRLFpKQCM1wZBBRY9nWVGmEvm2FnDbSE2un1UE39DvFpTR5UL47YDcA=="; }; }; "ioredis-4.28.5" = { @@ -40915,13 +40744,13 @@ let sha512 = "u9YYtb1p2fWSbzpKmZ/b3QXWA+diRYPxc2c4y5lFB/MMk5WZ7wNZv8S3CFcIGVJ5XtlaCAl/FQy/D3eQ2XtdOA=="; }; }; - "ip-num-1.4.1" = { + "ip-num-1.5.0" = { name = "ip-num"; packageName = "ip-num"; - version = "1.4.1"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/ip-num/-/ip-num-1.4.1.tgz"; - sha512 = "7+S/V9JGNfJu2aYj5j1uHwL3rij1TeZO/szPTyX+us52a9h9qv9sPMlwl5Ts0T/49zTFHdz1JJeDjcHHFoyDYg=="; + url = "https://registry.npmjs.org/ip-num/-/ip-num-1.5.0.tgz"; + sha512 = "XPStGtjDEDgaJXZhteWoIYZe2SaLWOzlpqwUmcx2W8UAA3lBY9oTyNNJ3fTnnW9Y4Px9f6Qi1mUqeFb9/dTIwQ=="; }; }; "ip-regex-2.1.0" = { @@ -42706,13 +42535,13 @@ let sha512 = "VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw=="; }; }; - "is-yarn-global-0.4.0" = { + "is-yarn-global-0.4.1" = { name = "is-yarn-global"; packageName = "is-yarn-global"; - version = "0.4.0"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.0.tgz"; - sha512 = "HneQBCrXGBy15QnaDfcn6OLoU8AQPAa0Qn0IeJR/QCo4E8dNZaGGwxpCwWyEBQC5QvFonP8d6t60iGpAHVAfNA=="; + url = "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz"; + sha512 = "/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ=="; }; }; "is2-0.0.9" = { @@ -43291,13 +43120,13 @@ let sha512 = "jnt9OC34sLXMLJ6YfPQ2ZEKrR9mB5ZbSnQb4LPaOx1c5rTzxpR33L18jjp0r75mGGTJmsil3qwN1B5IBeTnSSA=="; }; }; - "jose-4.10.0" = { + "jose-4.11.1" = { name = "jose"; packageName = "jose"; - version = "4.10.0"; + version = "4.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/jose/-/jose-4.10.0.tgz"; - sha512 = "KEhB/eLGLomWGPTb+/RNbYsTjIyx03JmbqAyIyiXBuNSa7CmNrJd5ysFhblayzs/e/vbOPMUaLnjHUMhGp4yLw=="; + url = "https://registry.npmjs.org/jose/-/jose-4.11.1.tgz"; + sha512 = "YRv4Tk/Wlug8qicwqFNFVEZSdbROCHRAC6qu/i0dyNKr5JQdoa2pIGoS04lLO/jXQX7Z9omoNewYIVIxqZBd9Q=="; }; }; "joycon-3.1.1" = { @@ -43400,13 +43229,13 @@ let sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; }; }; - "js-base64-3.7.2" = { + "js-base64-3.7.3" = { name = "js-base64"; packageName = "js-base64"; - version = "3.7.2"; + version = "3.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.2.tgz"; - sha512 = "NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ=="; + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.3.tgz"; + sha512 = "PAr6Xg2jvd7MCR6Ld9Jg3BmTcjYsHEBx1VlwEwULb/qowPf5VD9kEMagj23Gm7JRnSvE/Da/57nChZjnvL8v6A=="; }; }; "js-beautify-1.14.7" = { @@ -43472,13 +43301,13 @@ let sha512 = "Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw=="; }; }; - "js-sdsl-4.1.5" = { + "js-sdsl-4.2.0" = { name = "js-sdsl"; packageName = "js-sdsl"; - version = "4.1.5"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz"; - sha512 = "08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q=="; + url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz"; + sha512 = "dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ=="; }; }; "js-sha256-0.9.0" = { @@ -43742,49 +43571,49 @@ let sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; }; }; - "jsii-1.70.0" = { + "jsii-1.71.0" = { name = "jsii"; packageName = "jsii"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-1.70.0.tgz"; - sha512 = "RDr/D6IPhCpx5A53qIS99rtwMlDVbjt5F0frCmgalXs2DNiqIm2C8OTUGToVQUrCbX1Lx8eZBmsYWLxG0bQLcg=="; + url = "https://registry.npmjs.org/jsii/-/jsii-1.71.0.tgz"; + sha512 = "Dn6TvKgMNEsMU/WKliSbVs93Cno238LZZeJTNXk9L6vOR3d7jjEsWh7PJ7NhdyZeft2M3RFJQDKhg8eKeKM/4g=="; }; }; - "jsii-pacmak-1.70.0" = { + "jsii-pacmak-1.71.0" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.70.0.tgz"; - sha512 = "BbfIT21BVx1QB1EBLytHxO/CeI+zseI2sp+7wA/Uzfg7U1zS7DoqvsGjZwdl0RvinIJOvkzS55vP5qY5i7btcA=="; + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.71.0.tgz"; + sha512 = "IaAzJLcvE6fgr7PBjPm/mSb4RCmBT2Ecog8G352J/n15Vqu0vEByvsyK+kxF/ymGAEbODXVN0CV2HjxLQ5FdgA=="; }; }; - "jsii-reflect-1.70.0" = { + "jsii-reflect-1.71.0" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.70.0.tgz"; - sha512 = "1enHoO6/G5o6RB+lzbQEUkXBFoZZRGJCfgYboLcYiH0tITX/FjipeTR9Wgkh9QumwdlBlMTXuxEPyRFVjQ7jcg=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.71.0.tgz"; + sha512 = "zaufJxtJi7X17bz0ya5Gp6TQ3m4/cbNSxvGboRo4dZGzz1Kaf4qXTlu08sN7NVM6ObTVeyp3atl1KLcf6MKIgw=="; }; }; - "jsii-rosetta-1.70.0" = { + "jsii-rosetta-1.71.0" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.70.0.tgz"; - sha512 = "iLfogMZ7tTP0g6iMGPHZOHCjn5+K4agb6oalFYbN8iUXVgf+DwKCOGTIN0TxNpy3YFvb4YhCWVENdYPDu/5Nvw=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.71.0.tgz"; + sha512 = "Iu36Dxpu1JphYnicmnPvS4AsqmeOwExjenVqmGJaIJwdMG6W9ou3WM1FoUa7LzenaJiFY9jj1CvbD05xgAo+ow=="; }; }; - "jsii-srcmak-0.1.726" = { + "jsii-srcmak-0.1.752" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.726"; + version = "0.1.752"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.726.tgz"; - sha512 = "XlchRo72VoSq9yqOlbzscPjyIQUyY5g4Gufk8D2Ku3kbKMAh3TJgPWkTOSFOwri2SU/AteEK3R/yQX+y1VhUWw=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.752.tgz"; + sha512 = "dq+pbMGrfw0nr4ZopuUX2Q4vxmov8qClPZtqqmgFrPQSwaVop7A2fgtLxq8JuvNoJYHhfLwrM/+3b3S0PBBTlw=="; }; }; "json-bigint-1.0.0" = { @@ -44102,6 +43931,15 @@ let sha512 = "i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg=="; }; }; + "json-stable-stringify-1.0.2" = { + name = "json-stable-stringify"; + packageName = "json-stable-stringify"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz"; + sha512 = "eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g=="; + }; + }; "json-stable-stringify-without-jsonify-1.0.1" = { name = "json-stable-stringify-without-jsonify"; packageName = "json-stable-stringify-without-jsonify"; @@ -44147,13 +43985,13 @@ let sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; }; }; - "json2jsii-0.3.175" = { + "json2jsii-0.3.202" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.3.175"; + version = "0.3.202"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.175.tgz"; - sha512 = "/LmnaPlFBVo/8pnYYQqWFruYyol4qdMOuQxp70PRbXRVxsoKpyIyWhRizGuSMk08gPvNE7xmRKMjoD2UPinOSw=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.202.tgz"; + sha512 = "gZiXGmHy3HclLxfhVmFA7PqLcFXIjI3LaHwY6nKSADpARSLD/F9jHKO4oJU8BR8Yw2UKn0hTT79lhYBCipU2Dg=="; }; }; "json3-3.2.6" = { @@ -44480,22 +44318,13 @@ let sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; }; }; - "jsqr-1.4.0" = { - name = "jsqr"; - packageName = "jsqr"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsqr/-/jsqr-1.4.0.tgz"; - sha512 = "dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A=="; - }; - }; - "jstat-1.9.5" = { + "jstat-1.9.6" = { name = "jstat"; packageName = "jstat"; - version = "1.9.5"; + version = "1.9.6"; src = fetchurl { - url = "https://registry.npmjs.org/jstat/-/jstat-1.9.5.tgz"; - sha512 = "cWnp4vObF5GmB2XsIEzxI/1ZTcYlcfNqxQ/9Fp5KFUa0Jf/4tO0ZkGVnqoEHDisJvYgvn5n3eWZbd2xTVJJPUQ=="; + url = "https://registry.npmjs.org/jstat/-/jstat-1.9.6.tgz"; + sha512 = "rPBkJbK2TnA8pzs93QcDDPlKcrtZWuuCo2dVR0TFLOJSxhqfWOVCSp8aV3/oSbn+4uY4yw1URtLpHQedtmXfug=="; }; }; "jstransform-10.1.0" = { @@ -44930,13 +44759,13 @@ let sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; }; }; - "keyv-4.5.1" = { + "keyv-4.5.2" = { name = "keyv"; packageName = "keyv"; - version = "4.5.1"; + version = "4.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/keyv/-/keyv-4.5.1.tgz"; - sha512 = "DONNzZ8b9FLIRIX8kF+JByejgBoGUD4msUvRlHnPMqTb49MwW3thKgB6yGsshzOLW0Bol6SGu5TysvSsM6apdA=="; + url = "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz"; + sha512 = "5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g=="; }; }; "khroma-2.0.0" = { @@ -45236,13 +45065,13 @@ let sha512 = "tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="; }; }; - "language-tags-1.0.5" = { + "language-tags-1.0.6" = { name = "language-tags"; packageName = "language-tags"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz"; - sha512 = "qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ=="; + url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.6.tgz"; + sha512 = "HNkaCgM8wZgE/BZACeotAAgpL9FUjEnhgF0FVQMIgH//zqTPreLYMb3rWYkYAqPoF75Jwuycp1da7uz66cfFQg=="; }; }; "last-call-webpack-plugin-3.0.0" = { @@ -45857,15 +45686,6 @@ let sha512 = "Rha4U1yZS/SHwW/GJ+IeEaxI6vqJ1bx/upQkY5RIZNCn4YoMvqd4inQUt9GNtuLy/pXus8Bms4DL2B9DkujBKQ=="; }; }; - "lightning-6.2.4" = { - name = "lightning"; - packageName = "lightning"; - version = "6.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-6.2.4.tgz"; - sha512 = "cbfuQg3hnEQS3Q43MNH/PJ/oa/znVZTPNN6tIX/aoqwbIS5VU0vbJ3URMdiyYXe1UjMDHU1i4cIbV5orWL8asw=="; - }; - }; "lightning-6.2.5" = { name = "lightning"; packageName = "lightning"; @@ -45884,85 +45704,112 @@ let sha512 = "2O68CU67XWqbahWRG4Ut5OsdqzxWh3Pg2bboiGcSSBA1boRECQLvw3cpnsFZK7Sef5s4NhgslDu7bZxyrDa8pw=="; }; }; - "lightningcss-1.16.1" = { + "lightning-6.3.0" = { + name = "lightning"; + packageName = "lightning"; + version = "6.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/lightning/-/lightning-6.3.0.tgz"; + sha512 = "d42srlAbG/XPw24GjJGLcHx2/zQUfBMB3tIpUiXrBqOWlcCaab+wHChkunMl0N8G6FMyiT3wNjI9MRHgclSL4g=="; + }; + }; + "lightning-6.3.1" = { + name = "lightning"; + packageName = "lightning"; + version = "6.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/lightning/-/lightning-6.3.1.tgz"; + sha512 = "ItcPt/FbMXZcCY65P0alYwMQCmhX4HEDlNaM54qjYsVmrDRGML5PN+zBlBvosvIoo47/0rQsdKpFnBSbo4oPEQ=="; + }; + }; + "lightning-6.3.2" = { + name = "lightning"; + packageName = "lightning"; + version = "6.3.2"; + src = fetchurl { + url = "https://registry.npmjs.org/lightning/-/lightning-6.3.2.tgz"; + sha512 = "QmOijzNW6nFe4eT9Sb54skvqAYoUZ8Mk0xbrUfZUUIqOKUghCRoWytuOGHPHQpRH7a02b4qhlKx6EaDHxwAJGA=="; + }; + }; + "lightningcss-1.17.1" = { name = "lightningcss"; packageName = "lightningcss"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.16.1.tgz"; - sha512 = "zU8OTaps3VAodmI2MopfqqOQQ4A9L/2Eo7xoTH/4fNkecy6ftfiGwbbRMTQqtIqJjRg3f927e+lnyBBPhucY1Q=="; + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.17.1.tgz"; + sha512 = "DwwM/YYqGwLLP3he41wzDXT/m+8jdEZ80i9ViQNLRgyhey3Vm6N7XHn+4o3PY6wSnVT23WLuaROIpbpIVTNOjg=="; }; }; - "lightningcss-darwin-arm64-1.16.1" = { + "lightningcss-darwin-arm64-1.17.1" = { name = "lightningcss-darwin-arm64"; packageName = "lightningcss-darwin-arm64"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.16.1.tgz"; - sha512 = "/J898YSAiGVqdybHdIF3Ao0Hbh2vyVVj5YNm3NznVzTSvkOi3qQCAtO97sfmNz+bSRHXga7ZPLm+89PpOM5gAg=="; + url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.17.1.tgz"; + sha512 = "YTAHEy4XlzI3sMbUVjbPi9P7+N7lGcgl2JhCZhiQdRAEKnZLQch8kb5601sgESxdGXjgei7JZFqi/vVEk81wYg=="; }; }; - "lightningcss-darwin-x64-1.16.1" = { + "lightningcss-darwin-x64-1.17.1" = { name = "lightningcss-darwin-x64"; packageName = "lightningcss-darwin-x64"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.16.1.tgz"; - sha512 = "vyKCNPRNRqke+5i078V+N0GLfMVLEaNcqIcv28hA/vUNRGk/90EDkDB9EndGay0MoPIrC2y0qE3Y74b/OyedqQ=="; + url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.17.1.tgz"; + sha512 = "UhXPUS2+yTTf5sXwUV0+8QY2x0bPGLgC/uhcknWSQMqWn1zGty4fFvH04D7f7ij0ujwSuN+Q0HtU7lgmMrPz0A=="; }; }; - "lightningcss-linux-arm-gnueabihf-1.16.1" = { + "lightningcss-linux-arm-gnueabihf-1.17.1" = { name = "lightningcss-linux-arm-gnueabihf"; packageName = "lightningcss-linux-arm-gnueabihf"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.16.1.tgz"; - sha512 = "0AJC52l40VbrzkMJz6qRvlqVVGykkR2MgRS4bLjVC2ab0H0I/n4p6uPZXGvNIt5gw1PedeND/hq+BghNdgfuPQ=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.17.1.tgz"; + sha512 = "alUZumuznB6K/9yZ0zuZkODXUm8uRnvs9t0CL46CXN16Y2h4gOx5ahUCMlelUb7inZEsgJIoepgLsJzBUrSsBw=="; }; }; - "lightningcss-linux-arm64-gnu-1.16.1" = { + "lightningcss-linux-arm64-gnu-1.17.1" = { name = "lightningcss-linux-arm64-gnu"; packageName = "lightningcss-linux-arm64-gnu"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.16.1.tgz"; - sha512 = "NqxYXsRvI3/Fb9AQLXKrYsU0Q61LqKz5It+Es9gidsfcw1lamny4lmlUgO3quisivkaLCxEkogaizcU6QeZeWQ=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.17.1.tgz"; + sha512 = "/1XaH2cOjDt+ivmgfmVFUYCA0MtfNWwtC4P8qVi53zEQ7P8euyyZ1ynykZOyKXW9Q0DzrwcLTh6+hxVLcbtGBg=="; }; }; - "lightningcss-linux-arm64-musl-1.16.1" = { + "lightningcss-linux-arm64-musl-1.17.1" = { name = "lightningcss-linux-arm64-musl"; packageName = "lightningcss-linux-arm64-musl"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.16.1.tgz"; - sha512 = "VUPQ4dmB9yDQxpJF8/imtwNcbIPzlL6ArLHSUInOGxipDk1lOAklhUjbKUvlL3HVlDwD3WHCxggAY01WpFcjiA=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.17.1.tgz"; + sha512 = "/IgE7lYWFHCCQFTMIwtt+fXLcVOha8rcrNze1JYGPWNorO6NBc6MJo5u5cwn5qMMSz9fZCCDIlBBU4mGwjQszQ=="; }; }; - "lightningcss-linux-x64-gnu-1.16.1" = { + "lightningcss-linux-x64-gnu-1.17.1" = { name = "lightningcss-linux-x64-gnu"; packageName = "lightningcss-linux-x64-gnu"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.16.1.tgz"; - sha512 = "A40Jjnbellnvh4YF+kt047GLnUU59iLN2LFRCyWQG+QqQZeXOCzXfTQ6EJB4yvHB1mQvWOVdAzVrtEmRw3Vh8g=="; + url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.17.1.tgz"; + sha512 = "OyE802IAp4DB9vZrHlOyWunbHLM9dN08tJIKN/HhzzLKIHizubOWX6NMzUXMZLsaUrYwVAHHdyEA+712p8mMzA=="; }; }; - "lightningcss-linux-x64-musl-1.16.1" = { + "lightningcss-linux-x64-musl-1.17.1" = { name = "lightningcss-linux-x64-musl"; packageName = "lightningcss-linux-x64-musl"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.16.1.tgz"; - sha512 = "VZf76GxW+8mk238tpw0u9R66gBi/m0YB0TvD54oeGiOqvTZ/mabkBkbsuXTSWcKYj8DSrLW+A42qu+6PLRsIgA=="; + url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.17.1.tgz"; + sha512 = "ydwGgV3Usba5P53RAOqCA9MsRsbb8jFIEVhf7/BXFjpKNoIQyijVTXhwIgQr/oGwUNOHfgQ3F8ruiUjX/p2YKw=="; }; }; - "lightningcss-win32-x64-msvc-1.16.1" = { + "lightningcss-win32-x64-msvc-1.17.1" = { name = "lightningcss-win32-x64-msvc"; packageName = "lightningcss-win32-x64-msvc"; - version = "1.16.1"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.16.1.tgz"; - sha512 = "Djy+UzlTtJMayVJU3eFuUW5Gdo+zVTNPJhlYw25tNC9HAoMCkIdSDDrGsWEdEyibEV7xwB8ySTmLuxilfhBtgg=="; + url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.17.1.tgz"; + sha512 = "Ngqtx9NazaiAOk71XWwSsqgAuwYF+8PO6UYsoU7hAukdrSS98kwaBMEDw1igeIiZy1XD/4kh5KVnkjNf7ZOxVQ=="; }; }; "lilconfig-2.0.6" = { @@ -46136,13 +45983,13 @@ let sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw=="; }; }; - "listr2-5.0.5" = { + "listr2-5.0.6" = { name = "listr2"; packageName = "listr2"; - version = "5.0.5"; + version = "5.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/listr2/-/listr2-5.0.5.tgz"; - sha512 = "DpBel6fczu7oQKTXMekeprc0o3XDgGMkD7JNYyX+X0xbwK+xgrx9dcyKoXKqpLSUvAWfmoePS7kavniOcq3r4w=="; + url = "https://registry.npmjs.org/listr2/-/listr2-5.0.6.tgz"; + sha512 = "u60KxKBy1BR2uLJNTWNptzWQ1ob/gjMzIJPZffAENzpZqbMZ/5PrXXOomDcevIS/+IB7s1mmCEtSlT2qHWMqag=="; }; }; "livereload-0.9.3" = { @@ -46181,13 +46028,13 @@ let sha512 = "iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw=="; }; }; - "ln-accounting-6.1.0" = { + "ln-accounting-6.1.1" = { name = "ln-accounting"; packageName = "ln-accounting"; - version = "6.1.0"; + version = "6.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.1.0.tgz"; - sha512 = "FjMmDVigqvbBXNHmnqe5unkZEQm9/GHQ78AvdXhPQVbYwhlpbniujFBwXi1H3iixqjTjjR5zVuocq8rNvvrSqA=="; + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.1.1.tgz"; + sha512 = "qeHM6tB6VpiFEc05Jt4IhsIJvK8K2B8J5P1BsWDGIonP6yovvKXSIQikex2MWiIveNo4Xeev6BA+wByo3Gqgsw=="; }; }; "ln-service-53.22.0" = { @@ -46208,15 +46055,6 @@ let sha512 = "Ds3IzMNEiAgP8auc9AfDbzr6E2Xdy/GTUcLc6m5FM66JtJBM3jM52apzod+VG1vGm9rVyHfCeem/iP4oyaNPYA=="; }; }; - "ln-service-54.2.3" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.3.tgz"; - sha512 = "JEIdi71SJTIQJ2bVq5jYu/NSvEmYkpGVm4w5yORR3CXc2BcVy1aKF8tiemZNOByLQv8j3hZcHao31Bwcz+1G1A=="; - }; - }; "ln-service-54.2.4" = { name = "ln-service"; packageName = "ln-service"; @@ -46235,6 +46073,33 @@ let sha512 = "HEFcTdVj1nYfhkLzPKtCtBZhw+I9FB8qoJhMb4ro8cwMebRSG/lDDcIvkANfi7ccFLbRNB+M7Tk1vHRaFdQAzw=="; }; }; + "ln-service-54.3.1" = { + name = "ln-service"; + packageName = "ln-service"; + version = "54.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-54.3.1.tgz"; + sha512 = "hEsA6BlUl4twgcnQZL1gTfonzzlwJr5Hg29zUBZlDDL43cj1y1OFXs2rJcraaoM5+aJytt5aKoJdcTyKC31w8g=="; + }; + }; + "ln-service-54.3.2" = { + name = "ln-service"; + packageName = "ln-service"; + version = "54.3.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-54.3.2.tgz"; + sha512 = "3wIZfpHKOo2L+MgqH4PtLdYQerRQTpd4Rdjhs9U7PMi9ar3PSZ/20URv0bPgA05DSc9Q7NGYmmj4vUY504iNaw=="; + }; + }; + "ln-service-54.3.3" = { + name = "ln-service"; + packageName = "ln-service"; + version = "54.3.3"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-54.3.3.tgz"; + sha512 = "DoO7PnIZAlF3QTkVpxOliG329hZI07a0M9rhpUJX5EvV99qOYKQkS1ol6acYTlTgo1Ze5veCC0cy0AzOGy9foA=="; + }; + }; "ln-sync-3.14.0" = { name = "ln-sync"; packageName = "ln-sync"; @@ -46244,15 +46109,6 @@ let sha512 = "qLRJvl9WqcVo5cbfGeOprflN9194hf9Azd9fHikeixaziWiV1WBObR8jWE4ShQ+dZVnptd6FP8fSNRJqtq4WgA=="; }; }; - "ln-sync-4.0.4" = { - name = "ln-sync"; - packageName = "ln-sync"; - version = "4.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.0.4.tgz"; - sha512 = "8ZJ239vnF+t3spwLTxVGr+YEq7qXLBsT/J6j2khCazGEiPz+C3O0Jo+vXGlU6+1omNphN+yl6qGkYAwJLioMDA=="; - }; - }; "ln-sync-4.0.5" = { name = "ln-sync"; packageName = "ln-sync"; @@ -46262,13 +46118,13 @@ let sha512 = "zzFK2CMBAiDlnLu/m+kpD4Oqz6YGXg4aiTbtygUOOFEBSdvHtXG4WaM2xFpKf7g4cvHGhYS6xsmMYwVepwsypA=="; }; }; - "ln-telegram-4.2.0" = { + "ln-telegram-4.3.1" = { name = "ln-telegram"; packageName = "ln-telegram"; - version = "4.2.0"; + version = "4.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.2.0.tgz"; - sha512 = "N5sjJj1JrLWB9gA3bp6z9PpJF2EdyIsAhaBK8ZlFOaNZiNybt9hAF51S3aIyVoz3k0o7Wo07i1WyK/lNEftVYA=="; + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.3.1.tgz"; + sha512 = "lAR12uidLQhvAIZGWFMi9rFtOAuy+sfw0YzlqRiTiiUuxcRL22v224vx0ffPY4YOwfqPdiQC61JKEdVYGwLmuA=="; }; }; "load-bmfont-1.4.1" = { @@ -46343,13 +46199,13 @@ let sha512 = "od7eKCCZ62ITvFf8nHHrIiYmgOHb4xVNDRDqxBWSaao5FZyyZVX8OmRCbwjDGPrSrgIulwPNyBsWCGnhiDC0oQ=="; }; }; - "load-plugin-5.0.0" = { + "load-plugin-5.1.0" = { name = "load-plugin"; packageName = "load-plugin"; - version = "5.0.0"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/load-plugin/-/load-plugin-5.0.0.tgz"; - sha512 = "jTz8tvC0BTMtof27lTSV5SAOnCRT0Z++k+S3QeQ5CrF8ZAS5L2nhi3euf4ZhJyDkds+nOQGyPcFqdQZ9s8ELkg=="; + url = "https://registry.npmjs.org/load-plugin/-/load-plugin-5.1.0.tgz"; + sha512 = "Lg1CZa1CFj2CbNaxijTL6PCbzd4qGTlZov+iH2p5Xwy/ApcZJh+i6jMN2cYePouTfjJfrNu3nXFdEw8LvbjPFQ=="; }; }; "load-yaml-file-0.2.0" = { @@ -46406,13 +46262,13 @@ let sha512 = "gkD9aSEG9UGglyPcDJqY9YBTUtCLKaBK6ihD2VP1d1X60lTfFspNZNulGBBbUZLkPygy4LySYHyxBpq+VhjObQ=="; }; }; - "loader-utils-1.4.0" = { + "loader-utils-1.4.2" = { name = "loader-utils"; packageName = "loader-utils"; - version = "1.4.0"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz"; - sha512 = "qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA=="; + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz"; + sha512 = "I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg=="; }; }; "loader-utils-2.0.0" = { @@ -46424,13 +46280,13 @@ let sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; }; }; - "loader-utils-2.0.3" = { + "loader-utils-2.0.4" = { name = "loader-utils"; packageName = "loader-utils"; - version = "2.0.3"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.3.tgz"; - sha512 = "THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A=="; + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz"; + sha512 = "xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw=="; }; }; "loadware-2.0.0" = { @@ -47396,6 +47252,15 @@ let sha512 = "yv3cSQZmfpbIKo4Yo45B1taEvxjNvcpF1CEOc0Y6dEyvhPIfEJE3twDwPgWTPQubcSgXyBwBKG6wpQvWMDOf6Q=="; }; }; + "lodash.kebabcase-4.1.1" = { + name = "lodash.kebabcase"; + packageName = "lodash.kebabcase"; + version = "4.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz"; + sha512 = "N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g=="; + }; + }; "lodash.keys-2.4.1" = { name = "lodash.keys"; packageName = "lodash.keys"; @@ -47459,6 +47324,15 @@ let sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; }; }; + "lodash.mergewith-4.6.2" = { + name = "lodash.mergewith"; + packageName = "lodash.mergewith"; + version = "4.6.2"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz"; + sha512 = "GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ=="; + }; + }; "lodash.noop-2.4.1" = { name = "lodash.noop"; packageName = "lodash.noop"; @@ -47594,6 +47468,15 @@ let sha512 = "HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA=="; }; }; + "lodash.startcase-4.4.0" = { + name = "lodash.startcase"; + packageName = "lodash.startcase"; + version = "4.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz"; + sha512 = "+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg=="; + }; + }; "lodash.support-2.4.1" = { name = "lodash.support"; packageName = "lodash.support"; @@ -47747,6 +47630,15 @@ let sha512 = "7lYL8bLopMoy4CTICbxygAUq6CdRJ36vFc80DucPueUee+d5NBRxz3FdT9Pes/HEx5mPoT9jwnsEJWz1N7uq7Q=="; }; }; + "lodash.upperfirst-4.3.1" = { + name = "lodash.upperfirst"; + packageName = "lodash.upperfirst"; + version = "4.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz"; + sha512 = "sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg=="; + }; + }; "lodash.zip-4.2.0" = { name = "lodash.zip"; packageName = "lodash.zip"; @@ -47891,13 +47783,13 @@ let sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; }; }; - "log4js-6.7.0" = { + "log4js-6.7.1" = { name = "log4js"; packageName = "log4js"; - version = "6.7.0"; + version = "6.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/log4js/-/log4js-6.7.0.tgz"; - sha512 = "KA0W9ffgNBLDj6fZCq/lRbgR6ABAodRIDHrZnS48vOtfKa4PzWImb0Md1lmGCdO3n3sbCm/n1/WmrNlZ8kCI3Q=="; + url = "https://registry.npmjs.org/log4js/-/log4js-6.7.1.tgz"; + sha512 = "lzbd0Eq1HRdWM2abSD7mk6YIVY0AogGJzb/z+lqzRk+8+XJP+M6L1MS5FUSc3jjGru4dbKjEMJmqlsoYYpuivQ=="; }; }; "logform-2.4.2" = { @@ -47918,13 +47810,13 @@ let sha512 = "B1Rjay3Ye/JcythUjMt+KLiLIwOjnMJN1M5BRbDgNMsJhmn7yApbx6n1rw7cT3Fi/NA77HDM+y3y1nXvKQVB9Q=="; }; }; - "loglevel-1.8.0" = { + "loglevel-1.8.1" = { name = "loglevel"; packageName = "loglevel"; - version = "1.8.0"; + version = "1.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz"; - sha512 = "G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA=="; + url = "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz"; + sha512 = "tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg=="; }; }; "loglevel-colored-level-prefix-1.0.0" = { @@ -48026,13 +47918,13 @@ let sha512 = "vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg=="; }; }; - "longest-streak-3.0.1" = { + "longest-streak-3.1.0" = { name = "longest-streak"; packageName = "longest-streak"; - version = "3.0.1"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz"; - sha512 = "cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg=="; + url = "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz"; + sha512 = "9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g=="; }; }; "looper-2.0.0" = { @@ -48107,13 +47999,13 @@ let sha512 = "S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ=="; }; }; - "loupe-2.3.5" = { + "loupe-2.3.6" = { name = "loupe"; packageName = "loupe"; - version = "2.3.5"; + version = "2.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/loupe/-/loupe-2.3.5.tgz"; - sha512 = "KNGVjhsXDxvY/cYE8GNi7SBaJSfJIT+/+/8GlprqBXpoU6cSR7/RT7OBJOsoYtyxq0L3q6oIcO8tX7dbEEXr3A=="; + url = "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz"; + sha512 = "RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA=="; }; }; "lowdb-0.13.1" = { @@ -48260,6 +48152,15 @@ let sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; }; }; + "lru-cache-7.13.1" = { + name = "lru-cache"; + packageName = "lru-cache"; + version = "7.13.1"; + src = fetchurl { + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.13.1.tgz"; + sha512 = "CHqbAq7NFlW3RSnoWXLJBxCWaZVBrfa9UEHId2M3AW8iEBurbqduNexEUCGc3SHc6iCYXNJCDi903LajSVAEPQ=="; + }; + }; "lru-cache-7.14.1" = { name = "lru-cache"; packageName = "lru-cache"; @@ -48360,15 +48261,6 @@ let sha512 = "TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ=="; }; }; - "luxon-3.0.4" = { - name = "luxon"; - packageName = "luxon"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/luxon/-/luxon-3.0.4.tgz"; - sha512 = "aV48rGUwP/Vydn8HT+5cdr26YYQiUZ42NM6ToMoaGKwYfWbfLeRkEu1wXWMHBZT6+KyLfcbbtVcoQFCbbPjKlw=="; - }; - }; "luxon-3.1.0" = { name = "luxon"; packageName = "luxon"; @@ -48378,6 +48270,15 @@ let sha512 = "7w6hmKC0/aoWnEsmPCu5Br54BmbmUp5GfcqBxQngRcXJ+q5fdfjEzn7dxmJh2YdDhgW8PccYtlWKSv4tQkrTQg=="; }; }; + "luxon-3.1.1" = { + name = "luxon"; + packageName = "luxon"; + version = "3.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/luxon/-/luxon-3.1.1.tgz"; + sha512 = "Ah6DloGmvseB/pX1cAmjbFvyU/pKuwQMQqz7d0yvuDlVYLTs2WeDHQMpC8tGjm1da+BriHROW/OEIT/KfYg6xw=="; + }; + }; "lzma-native-8.0.6" = { name = "lzma-native"; packageName = "lzma-native"; @@ -48468,6 +48369,15 @@ let sha512 = "NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A=="; }; }; + "magic-string-0.26.7" = { + name = "magic-string"; + packageName = "magic-string"; + version = "0.26.7"; + src = fetchurl { + url = "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz"; + sha512 = "hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow=="; + }; + }; "magicli-0.0.5" = { name = "magicli"; packageName = "magicli"; @@ -48567,6 +48477,15 @@ let sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w=="; }; }; + "make-fetch-happen-11.0.1" = { + name = "make-fetch-happen"; + packageName = "make-fetch-happen"; + version = "11.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.1.tgz"; + sha512 = "clv3IblugXn2CDUmqFhNzii3rjKa46u5wNeivc+QlLXkGI5FjLX3rGboo+y2kwf1pd8W0iDiC384cemeDtw9kw=="; + }; + }; "make-fetch-happen-9.1.0" = { name = "make-fetch-happen"; packageName = "make-fetch-happen"; @@ -48693,15 +48612,6 @@ let sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="; }; }; - "mapbox-gl-1.13.2" = { - name = "mapbox-gl"; - packageName = "mapbox-gl"; - version = "1.13.2"; - src = fetchurl { - url = "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.2.tgz"; - sha512 = "CPjtWygL+f7naL+sGHoC2JQR0DG7u+9ik6WdkjjVmz2uy0kBC2l+aKfdi3ZzUR7VKSQJ6Mc/CeCN+6iVNah+ww=="; - }; - }; "maplibre-gl-2.4.0" = { name = "maplibre-gl"; packageName = "maplibre-gl"; @@ -48954,13 +48864,13 @@ let sha512 = "Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A=="; }; }; - "markdown-table-3.0.2" = { + "markdown-table-3.0.3" = { name = "markdown-table"; packageName = "markdown-table"; - version = "3.0.2"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz"; - sha512 = "y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA=="; + url = "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz"; + sha512 = "Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw=="; }; }; "markdownlint-0.26.2" = { @@ -49008,13 +48918,13 @@ let sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; }; }; - "marked-4.2.2" = { + "marked-4.2.3" = { name = "marked"; packageName = "marked"; - version = "4.2.2"; + version = "4.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/marked/-/marked-4.2.2.tgz"; - sha512 = "JjBTFTAvuTgANXx82a5vzK9JLSMoV6V3LBVn4Uhdso6t7vXrGx7g1Cd2r6NYSsxrYbQGFCMqBDhFHyK5q2UvcQ=="; + url = "https://registry.npmjs.org/marked/-/marked-4.2.3.tgz"; + sha512 = "slWRdJkbTZ+PjkyJnE30Uid64eHwbwa1Q25INCAYfZlK4o6ylagBy/Le9eWntqJFoFT93ikUKMv47GZ4gTwHkw=="; }; }; "marked-terminal-5.1.1" = { @@ -49539,6 +49449,15 @@ let sha512 = "aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="; }; }; + "mdn-data-2.0.30" = { + name = "mdn-data"; + packageName = "mdn-data"; + version = "2.0.30"; + src = fetchurl { + url = "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz"; + sha512 = "GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="; + }; + }; "mdn-data-2.0.4" = { name = "mdn-data"; packageName = "mdn-data"; @@ -49665,22 +49584,13 @@ let sha512 = "7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA=="; }; }; - "memfs-3.4.10" = { + "memfs-3.4.12" = { name = "memfs"; packageName = "memfs"; - version = "3.4.10"; + version = "3.4.12"; src = fetchurl { - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.10.tgz"; - sha512 = "0bCUP+L79P4am30yP1msPzApwuMQG23TjwlwdHeEV5MxioDR1a0AgB0T9FfggU52eJuDCq8WVwb5ekznFyWiTQ=="; - }; - }; - "memoize-one-5.2.1" = { - name = "memoize-one"; - packageName = "memoize-one"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz"; - sha512 = "zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q=="; + url = "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz"; + sha512 = "BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw=="; }; }; "memoize-one-6.0.0" = { @@ -49926,13 +49836,13 @@ let sha512 = "cylD/HcPXjeSVEPj4menLP0mndi6gvqmTlDq3QF4Vptn1tgc6ilgK7rdcAUA4X3RTkymXRwLuZpNncIfq1q1AA=="; }; }; - "mermaid-9.2.0" = { + "mermaid-9.2.2" = { name = "mermaid"; packageName = "mermaid"; - version = "9.2.0"; + version = "9.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/mermaid/-/mermaid-9.2.0.tgz"; - sha512 = "iWKTBjHoPUSs+mJMpZ5+K9xg97KflKjbv91Bu42yK2jjz4wX4Nt1eshi+bmmFWAhn7f2R0X55hlxxbSxdp0QYA=="; + url = "https://registry.npmjs.org/mermaid/-/mermaid-9.2.2.tgz"; + sha512 = "6s7eKMqFJGS+0MYjmx8f6ZigqKBJVoSx5ql2gw6a4Aa+WJ49QiEJg7gPwywaBg3DZMs79UP7trESp4+jmaQccw=="; }; }; "meros-1.1.4" = { @@ -50808,13 +50718,13 @@ let sha512 = "lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A=="; }; }; - "mini-css-extract-plugin-2.6.1" = { + "mini-css-extract-plugin-2.7.1" = { name = "mini-css-extract-plugin"; packageName = "mini-css-extract-plugin"; - version = "2.6.1"; + version = "2.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz"; - sha512 = "wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg=="; + url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.1.tgz"; + sha512 = "viOoaUFy+Z2w43VsGPbtfwFrr0tKwDctK9dUofG5MBViYhD1noGFUzzDIVw0KPwCGUP+c7zqLxm+acuQs7zLzw=="; }; }; "mini-svg-data-uri-1.4.4" = { @@ -50943,6 +50853,15 @@ let sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; }; }; + "minimatch-5.1.1" = { + name = "minimatch"; + packageName = "minimatch"; + version = "5.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz"; + sha512 = "362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g=="; + }; + }; "minimist-0.0.10" = { name = "minimist"; packageName = "minimist"; @@ -51051,13 +50970,13 @@ let sha512 = "rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ=="; }; }; - "minipass-3.3.5" = { + "minipass-3.3.6" = { name = "minipass"; packageName = "minipass"; - version = "3.3.5"; + version = "3.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/minipass/-/minipass-3.3.5.tgz"; - sha512 = "rQ/p+KfKBkeNwo04U15i+hOwoVBVmekmm/HcfTkTN2t9pbQKCMm4eN5gFeqgrrSp/kH/7BYYhTIHOxGqzbBPaA=="; + url = "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz"; + sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="; }; }; "minipass-collect-1.0.2" = { @@ -51087,6 +51006,15 @@ let sha512 = "LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA=="; }; }; + "minipass-fetch-3.0.0" = { + name = "minipass-fetch"; + packageName = "minipass-fetch"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.0.tgz"; + sha512 = "NSx3k5gR4Q5Ts2poCM/19d45VwhVLBtJZ6ypYcthj2BwmDx/e7lW8Aadnyt3edd2W0ecb+b0o7FYLRYE2AGcQg=="; + }; + }; "minipass-flush-1.0.5" = { name = "minipass-flush"; packageName = "minipass-flush"; @@ -51294,22 +51222,22 @@ let sha512 = "nbj022D7cd7n6hxDuON08SQciKHSTcRSFlLfCGyIuypo4cl6Z6qJxMVlatFyS6ZbgHqOebkYm/fvwtGiKqmSwQ=="; }; }; - "mobx-6.6.2" = { + "mobx-6.7.0" = { name = "mobx"; packageName = "mobx"; - version = "6.6.2"; + version = "6.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/mobx/-/mobx-6.6.2.tgz"; - sha512 = "IOpS0bf3+hXIhDIy+CmlNMBfFpAbHS0aVHcNC+xH/TFYEKIIVDKNYRh9eKlXuVfJ1iRKAp0cRVmO145CyJAMVQ=="; + url = "https://registry.npmjs.org/mobx/-/mobx-6.7.0.tgz"; + sha512 = "1kBLBdSNG2bA522HQdbsTvwAwYf9hq9FWxmlhX7wTsJUAI54907J+ozfGW+LoYUo06vjit748g6QH1AAGLNebw=="; }; }; - "mobx-react-7.5.3" = { + "mobx-react-7.6.0" = { name = "mobx-react"; packageName = "mobx-react"; - version = "7.5.3"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.5.3.tgz"; - sha512 = "+ltotliKt4Bjn3d8taZH/VFAcRUbaASvsM8/QSvmHXcZ++RZwaFtjl9JkIosy1byaJGEDS3EFFx2InRm2VaSUw=="; + url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.6.0.tgz"; + sha512 = "+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA=="; }; }; "mobx-react-lite-3.4.0" = { @@ -51384,13 +51312,13 @@ let sha512 = "ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A=="; }; }; - "mold-source-map-0.4.0" = { + "mold-source-map-0.4.1" = { name = "mold-source-map"; packageName = "mold-source-map"; - version = "0.4.0"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/mold-source-map/-/mold-source-map-0.4.0.tgz"; - sha512 = "Y0uA/sDKVuPgLd7BmaJOai+fqzjrOlR6vZgx5cJIvturI/xOPQPgbf3X7ZbzJd6MvqQ6ucIfK8dSteFyc2Mw2w=="; + url = "https://registry.npmjs.org/mold-source-map/-/mold-source-map-0.4.1.tgz"; + sha512 = "oPowVpTm8p3jsK2AKI+NzoS6TBKv7gWY/Hj4ZNh5YWiB3S4eP54y8vSEEgVUdrqgTbjwEzIunNAVQJGRW0bakQ=="; }; }; "moment-2.29.1" = { @@ -51447,13 +51375,13 @@ let sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg=="; }; }; - "moment-timezone-0.5.38" = { + "moment-timezone-0.5.39" = { name = "moment-timezone"; packageName = "moment-timezone"; - version = "0.5.38"; + version = "0.5.39"; src = fetchurl { - url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.38.tgz"; - sha512 = "nMIrzGah4+oYZPflDvLZUgoVUO4fvAqHstvG3xAUnMolWncuAiLDWNnJZj6EwJGMGfb1ZcuTFE6GI3hNOVWI/Q=="; + url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.39.tgz"; + sha512 = "hoB6suq4ISDj7BDgctiOy6zljBsdYT0++0ZzZm9rtxIvJhIbQ3nmbgSWe7dNFGurl6/7b1OUkHlmN9JWgXVz7w=="; }; }; "mongodb-3.7.3" = { @@ -51699,22 +51627,22 @@ let sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg=="; }; }; - "msgpackr-1.7.2" = { + "msgpackr-1.8.1" = { name = "msgpackr"; packageName = "msgpackr"; - version = "1.7.2"; + version = "1.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.7.2.tgz"; - sha512 = "mWScyHTtG6TjivXX9vfIy2nBtRupaiAj0HQ2mtmpmYujAmqZmaaEVPaSZ1NKLMvicaMLFzEaMk0ManxMRg8rMQ=="; + url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.8.1.tgz"; + sha512 = "05fT4J8ZqjYlR4QcRDIhLCYKUOHXk7C/xa62GzMKj74l3up9k2QZ3LgFc6qWdsPHl91QA2WLWqWc8b8t7GLNNw=="; }; }; - "msgpackr-extract-2.1.2" = { + "msgpackr-extract-2.2.0" = { name = "msgpackr-extract"; packageName = "msgpackr-extract"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-2.1.2.tgz"; - sha512 = "cmrmERQFb19NX2JABOGtrKdHMyI6RUyceaPBQ2iRz9GnDkjBWFjNJC0jyyoOfZl2U/LZE3tQCCQc4dlRyA8mcA=="; + url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-2.2.0.tgz"; + sha512 = "0YcvWSv7ZOGl9Od6Y5iJ3XnPww8O7WLcpYMDwX+PAA/uXLDtyw94PJv9GLQV/nnp3cWlDhMoyKZIQLrx33sWog=="; }; }; "mssql-9.0.1" = { @@ -52158,15 +52086,6 @@ let sha512 = "INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg=="; }; }; - "nan-2.14.2" = { - name = "nan"; - packageName = "nan"; - version = "2.14.2"; - src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz"; - sha512 = "M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ=="; - }; - }; "nan-2.17.0" = { name = "nan"; packageName = "nan"; @@ -52590,13 +52509,13 @@ let sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; }; }; - "needle-3.1.0" = { + "needle-3.2.0" = { name = "needle"; packageName = "needle"; - version = "3.1.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/needle/-/needle-3.1.0.tgz"; - sha512 = "gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw=="; + url = "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz"; + sha512 = "oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ=="; }; }; "negotiator-0.3.0" = { @@ -52951,13 +52870,13 @@ let sha512 = "/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w=="; }; }; - "node-abi-3.28.0" = { + "node-abi-3.30.0" = { name = "node-abi"; packageName = "node-abi"; - version = "3.28.0"; + version = "3.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-abi/-/node-abi-3.28.0.tgz"; - sha512 = "fRlDb4I0eLcQeUvGq7IY3xHrSb0c9ummdvDSYWfT9+LKP+3jCKw/tKoqaM7r1BAoiAC6GtwyjaGnOz6B3OtF+A=="; + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.30.0.tgz"; + sha512 = "qWO5l3SCqbwQavymOmtTVuCWZE23++S+rxyoHjXqUmPyzRcaoI4lA2gO55/drddGnedAyjA7sk76SfQ5lfUMnw=="; }; }; "node-abort-controller-3.0.1" = { @@ -53014,6 +52933,15 @@ let sha512 = "73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="; }; }; + "node-addon-api-5.0.0" = { + name = "node-addon-api"; + packageName = "node-addon-api"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz"; + sha512 = "CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA=="; + }; + }; "node-api-version-0.1.4" = { name = "node-api-version"; packageName = "node-api-version"; @@ -53158,6 +53086,15 @@ let sha512 = "MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA=="; }; }; + "node-fetch-3.3.0" = { + name = "node-fetch"; + packageName = "node-fetch"; + version = "3.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.0.tgz"; + sha512 = "BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA=="; + }; + }; "node-fetch-h2-2.3.0" = { name = "node-fetch-h2"; packageName = "node-fetch-h2"; @@ -53293,6 +53230,15 @@ let sha512 = "Skzhqow7hyLZU93eIPthM9yjot9lszg9xrKxESleEs05V2NcbUptZc5HFqzjOkSmL0sFlZFr3kmvaYebx06wrw=="; }; }; + "node-hid-2.1.2" = { + name = "node-hid"; + packageName = "node-hid"; + version = "2.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/node-hid/-/node-hid-2.1.2.tgz"; + sha512 = "qhCyQqrPpP93F/6Wc/xUR7L8mAJW0Z6R7HMQV8jCHHksAxNDe/4z4Un/H9CpLOT+5K39OPyt9tIQlavxWES3lg=="; + }; + }; "node-html-parser-1.4.9" = { name = "node-html-parser"; packageName = "node-html-parser"; @@ -53491,13 +53437,13 @@ let sha512 = "f+Rbqt92Ful9gX0cGtdYwjTrWAaGURgaK5rZCWOgCNyGWusFYHhbqCCBoFBeat+HKETOU02AyTxNhJV0YZf2jQ=="; }; }; - "node-sass-7.0.3" = { + "node-sass-8.0.0" = { name = "node-sass"; packageName = "node-sass"; - version = "7.0.3"; + version = "8.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-sass/-/node-sass-7.0.3.tgz"; - sha512 = "8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw=="; + url = "https://registry.npmjs.org/node-sass/-/node-sass-8.0.0.tgz"; + sha512 = "jPzqCF2/e6JXw6r3VxfIqYc8tKQdkj5Z/BDATYyG6FL6b/LuYBNFGFVhus0mthcWifHm/JzBpKAd+3eXsWeK/A=="; }; }; "node-schedule-2.1.0" = { @@ -53779,6 +53725,15 @@ let sha512 = "ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g=="; }; }; + "nopt-7.0.0" = { + name = "nopt"; + packageName = "nopt"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/nopt/-/nopt-7.0.0.tgz"; + sha512 = "e6Qw1rcrGoSxEH0hQ4GBSdUjkMOtXGhGFXdNT/3ZR0S37eR9DMj5za3dEDWE6o1T3/DP8ZOsPP4MIiky0c3QeA=="; + }; + }; "normalize-newline-4.1.0" = { name = "normalize-newline"; packageName = "normalize-newline"; @@ -53815,6 +53770,15 @@ let sha512 = "EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg=="; }; }; + "normalize-package-data-5.0.0" = { + name = "normalize-package-data"; + packageName = "normalize-package-data"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz"; + sha512 = "h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q=="; + }; + }; "normalize-path-1.0.0" = { name = "normalize-path"; packageName = "normalize-path"; @@ -53923,22 +53887,13 @@ let sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="; }; }; - "normalize-url-7.2.0" = { + "normalize-url-8.0.0" = { name = "normalize-url"; packageName = "normalize-url"; - version = "7.2.0"; + version = "8.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/normalize-url/-/normalize-url-7.2.0.tgz"; - sha512 = "uhXOdZry0L6M2UIo9BTt7FdpBDiAGN/7oItedQwPKh8jh31ZlvC8U9Xl/EJ3aijDHaywXTW3QbZ6LuCocur1YA=="; - }; - }; - "normalize.css-8.0.1" = { - name = "normalize.css"; - packageName = "normalize.css"; - version = "8.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz"; - sha512 = "qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="; + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz"; + sha512 = "uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw=="; }; }; "now-and-later-2.0.1" = { @@ -53986,6 +53941,15 @@ let sha512 = "gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw=="; }; }; + "npm-bundled-3.0.0" = { + name = "npm-bundled"; + packageName = "npm-bundled"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz"; + sha512 = "Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ=="; + }; + }; "npm-conf-1.1.3" = { name = "npm-conf"; packageName = "npm-conf"; @@ -54013,13 +53977,22 @@ let sha512 = "65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA=="; }; }; - "npm-keyword-5.0.0" = { + "npm-install-checks-6.0.0" = { + name = "npm-install-checks"; + packageName = "npm-install-checks"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.0.0.tgz"; + sha512 = "SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q=="; + }; + }; + "npm-keyword-6.1.0" = { name = "npm-keyword"; packageName = "npm-keyword"; - version = "5.0.0"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-5.0.0.tgz"; - sha512 = "v172X97DB97rF23svX7KjuImvKoGmwkdjLDQslhGde9UCjUF+ASfjFThyUZ4flubYYNQJP7fznQK8bGRBLgYzg=="; + url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-6.1.0.tgz"; + sha512 = "ghcShMAA28IPhJAP4d3T+tndUPzHmvqEfaYwLG1whi4WJ06pdhA3vqL8gXF+Jn8wiqbaRuGVfjE5VXjOgVpW4Q=="; }; }; "npm-name-6.0.1" = { @@ -54058,6 +54031,15 @@ let sha512 = "g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q=="; }; }; + "npm-package-arg-10.1.0" = { + name = "npm-package-arg"; + packageName = "npm-package-arg"; + version = "10.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz"; + sha512 = "uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA=="; + }; + }; "npm-package-arg-6.1.0" = { name = "npm-package-arg"; packageName = "npm-package-arg"; @@ -54103,15 +54085,6 @@ let sha512 = "LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q=="; }; }; - "npm-package-arg-9.1.0" = { - name = "npm-package-arg"; - packageName = "npm-package-arg"; - version = "9.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-9.1.0.tgz"; - sha512 = "4J0GL+u2Nh6OnhvUKXRr2ZMG4lR8qtLp+kv7UiV00Y+nGiSxtttCyIRHCt5L5BNkXQld/RceYItau3MDOoGiBw=="; - }; - }; "npm-package-arg-9.1.2" = { name = "npm-package-arg"; packageName = "npm-package-arg"; @@ -54175,15 +54148,6 @@ let sha512 = "dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA=="; }; }; - "npm-pick-manifest-7.0.1" = { - name = "npm-pick-manifest"; - packageName = "npm-pick-manifest"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.1.tgz"; - sha512 = "IA8+tuv8KujbsbLQvselW2XQgmXWS47t3CB0ZrzsRZ82DbDfkcFunOaPm4X7qNuhMfq+FmV7hQT4iFVpHqV7mg=="; - }; - }; "npm-pick-manifest-7.0.2" = { name = "npm-pick-manifest"; packageName = "npm-pick-manifest"; @@ -54193,6 +54157,15 @@ let sha512 = "gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw=="; }; }; + "npm-pick-manifest-8.0.1" = { + name = "npm-pick-manifest"; + packageName = "npm-pick-manifest"; + version = "8.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz"; + sha512 = "mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA=="; + }; + }; "npm-prefix-1.2.0" = { name = "npm-prefix"; packageName = "npm-prefix"; @@ -54238,6 +54211,15 @@ let sha512 = "eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw=="; }; }; + "npm-registry-fetch-14.0.2" = { + name = "npm-registry-fetch"; + packageName = "npm-registry-fetch"; + version = "14.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.2.tgz"; + sha512 = "TMenrMagFA9KF81E2bkS5XRyzERK4KXu70vgXt5+i8FcrFeLNgNsc6e5hekTqjDwPDkL3HGn/holWcXDMfnFgw=="; + }; + }; "npm-registry-utilities-1.0.0" = { name = "npm-registry-utilities"; packageName = "npm-registry-utilities"; @@ -54508,13 +54490,13 @@ let sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw=="; }; }; - "nx-15.0.10" = { + "nx-15.2.4" = { name = "nx"; packageName = "nx"; - version = "15.0.10"; + version = "15.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/nx/-/nx-15.0.10.tgz"; - sha512 = "Uy6C/lj+gFjdNAKg2RNYEqMO7t2jxz5fYAEm6FnViDZ2Qz28l1L6V70MEvq6wgyDzSSRL0I+OPLb71tiaD9BiA=="; + url = "https://registry.npmjs.org/nx/-/nx-15.2.4.tgz"; + sha512 = "8rTLo5WGmM6hEo5R/u03Jllkyj4vIUbBk2MRAppCvVRXWLS4xJUEOityXJ5BAvaKoLYm6sWUP1gqU7xlldnT5A=="; }; }; "nyc-15.1.0" = { @@ -55184,13 +55166,13 @@ let sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; }; }; - "oo-ascii-tree-1.70.0" = { + "oo-ascii-tree-1.71.0" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.70.0"; + version = "1.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.70.0.tgz"; - sha512 = "vu/NGcQKC6f3fz2C7qmDW1WP2WFK3CvG1JbweyKlnRsZrdbY0VCH9RKsNaoYUTu9tzafCZ4HWeLEkgXALQMsUg=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.71.0.tgz"; + sha512 = "20AV6WE6Z9wUsmTmunnmSt7hDQCXWquYEtlkeITdHs4eGiZ/vgsf5E1TPyVLBpA6Nm0Dy9CXY87r83uotZLzbw=="; }; }; "open-0.0.2" = { @@ -55463,13 +55445,13 @@ let sha512 = "/Yvsd2D7miYB4HLJ3hOOS0+vnowQpaT75FsHzr/y5M9P4q9bwa7RcbW2YdH6KZBn8ceLbKGnHxMZ1CHliGHUFw=="; }; }; - "openapi3-ts-3.1.1" = { + "openapi3-ts-3.1.2" = { name = "openapi3-ts"; packageName = "openapi3-ts"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.1.1.tgz"; - sha512 = "lNUS87ncFqm1m8W21sbTGIeD7sydkQ4nnRUrkBiGlAzTngr50eBKU2suUXhdEk51z6m4cCgaXdB1SFgXtyn81Q=="; + url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.1.2.tgz"; + sha512 = "S8fijNOqe/ut0kEDAwHZnI7sVYqb8Q3XnISmSyXmK76jgrcf4ableI75KTY1qdksd9EI/t39Vi5M4VYKrkNKfQ=="; }; }; "opencollective-postinstall-2.0.3" = { @@ -55886,22 +55868,22 @@ let sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; }; }; - "ot-builder-1.5.4" = { + "ot-builder-1.5.5" = { name = "ot-builder"; packageName = "ot-builder"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.5.4.tgz"; - sha512 = "+GFI9JS6RfudrYmo+mlLd0irWFrtpeVq+Jrj+afvKp5f4Iubi1xArjxXcg/ItXFu3XGvvJZOdFpfnN+3KZQkuA=="; + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.5.5.tgz"; + sha512 = "LRzFRcx8+33inNTAcyxHY9vS1mp17VMIU0DUW2aPZmIEYLvOGYrL2oQl0ePESg+QB0/D40GbQB7oO9Hi8fjJpA=="; }; }; - "otb-ttc-bundle-1.5.4" = { + "otb-ttc-bundle-1.5.5" = { name = "otb-ttc-bundle"; packageName = "otb-ttc-bundle"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.5.4.tgz"; - sha512 = "vDxDfZjMOOWTpwT9qW5pJSS2SM3uyPcOItQczSkEhCwMet0ch+LS2CkPQrdfvsDXAhiX3nCYgEHrsNanYvn9Pw=="; + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.5.5.tgz"; + sha512 = "BG36gFUPVBYhM4cgsHrTBQYU+7wuV98rwjNHLBTCXaXK3lU9P1lM2mE7l1o/sG2tx9OxWwNUupE8/N+usyTnpw=="; }; }; "ow-0.21.0" = { @@ -55931,15 +55913,6 @@ let sha512 = "5rqbqfsRWNb0sukt0awwgJMlaep+8jV45S15SKKB34z4UuzjcofIfnriCBhWjZP2jbVtjt9yRl7buB6RlKsu9w=="; }; }; - "p-cancelable-0.3.0" = { - name = "p-cancelable"; - packageName = "p-cancelable"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz"; - sha512 = "RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw=="; - }; - }; "p-cancelable-0.4.1" = { name = "p-cancelable"; packageName = "p-cancelable"; @@ -56318,15 +56291,6 @@ let sha512 = "Js5XZxo6vHjB9NOYAzWDYAIyyiPvva0DWESAIWIK7uhSpGsyg5FwUPxipU/SOQx5x9EqhOh545d1jo6cVkitig=="; }; }; - "p-timeout-1.2.1" = { - name = "p-timeout"; - packageName = "p-timeout"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz"; - sha512 = "gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA=="; - }; - }; "p-timeout-2.0.1" = { name = "p-timeout"; packageName = "p-timeout"; @@ -56480,15 +56444,6 @@ let sha512 = "q/R5GrMek0vzgoomq6rm9OX+3PQve8sLwTirmK30YB3Cu0Bbt9OX9M/SIUnroN5BGJkzwGsFwDaRGD9EwBOlCA=="; }; }; - "package-json-5.0.0" = { - name = "package-json"; - packageName = "package-json"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/package-json/-/package-json-5.0.0.tgz"; - sha512 = "EeHQFFTlEmLrkIQoxbE9w0FuAWHoc1XpthDqnZ/i9keOt701cteyXwAxQFLpVqVjj3feh2TodkihjLaRUtIgLg=="; - }; - }; "package-json-6.4.0" = { name = "package-json"; packageName = "package-json"; @@ -56588,13 +56543,13 @@ let sha512 = "Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg=="; }; }; - "pacote-15.0.0" = { + "pacote-15.0.6" = { name = "pacote"; packageName = "pacote"; - version = "15.0.0"; + version = "15.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/pacote/-/pacote-15.0.0.tgz"; - sha512 = "YsMK5om14r2rf4Ukum5R43zKFoJe0swrsZRbG4fUfTJUxHpdMrie6+Js/jaNtn7Bq0YRL9SnAajPqz6n4wgi6g=="; + url = "https://registry.npmjs.org/pacote/-/pacote-15.0.6.tgz"; + sha512 = "dQwcz/sME7QIL+cdrw/jftQfMMXxSo17i2kJ/gnhBhUvvBAsxoBu1lw9B5IzCH/Ce8CvEkG/QYZ6txzKfn0bTw=="; }; }; "pad-0.0.5" = { @@ -56624,22 +56579,13 @@ let sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g=="; }; }; - "paid-services-4.0.1" = { + "paid-services-4.1.0" = { name = "paid-services"; packageName = "paid-services"; - version = "4.0.1"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-4.0.1.tgz"; - sha512 = "6nKjcza/tlgZXH6iRzIfypsduOHHk5DQ/zvPc8VqB/5AubnBdEJrdmpr6ZsHWiGVZuHHbgng026+TV3n7ilSVw=="; - }; - }; - "paid-services-4.0.5" = { - name = "paid-services"; - packageName = "paid-services"; - version = "4.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-4.0.5.tgz"; - sha512 = "dhv3Zx82P6aIL9jYfj0UDpkO5Ytln31XkZZJIdK8UNU/BVm3Gmc3oBcjSe7BXLiGsJ8F97Yb+cu7+zJ03N3KPg=="; + url = "https://registry.npmjs.org/paid-services/-/paid-services-4.1.0.tgz"; + sha512 = "SFDRaUBKgmmaKThMulB5w+R8OddIDUvwy/QzpdDd0yAwIjfyod0baECHC/qMDPuVodwJgahS6XPtxNcxGm2zSA=="; }; }; "pako-0.2.9" = { @@ -56939,13 +56885,13 @@ let sha512 = "TYKL+K98dcAWoCw/Ac1yrPviU8Trk+/gmjQVaoWEFDZmVD4KRg6c/80xKqNNFQObo2mTONgF8trzAf2UTwKafw=="; }; }; - "parse-latin-5.0.0" = { + "parse-latin-5.0.1" = { name = "parse-latin"; packageName = "parse-latin"; - version = "5.0.0"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/parse-latin/-/parse-latin-5.0.0.tgz"; - sha512 = "Ht+4/+AUySMS5HKGAiQpBmkFsHSoGrj6Y83flLCa5OIBdtsVkO3UD4OtboJ0O0vZiOznH02x8qlwg9KLUVXuNg=="; + url = "https://registry.npmjs.org/parse-latin/-/parse-latin-5.0.1.tgz"; + sha512 = "b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg=="; }; }; "parse-ms-2.1.0" = { @@ -57110,13 +57056,13 @@ let sha512 = "Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="; }; }; - "parse5-7.1.1" = { + "parse5-7.1.2" = { name = "parse5"; packageName = "parse5"; - version = "7.1.1"; + version = "7.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/parse5/-/parse5-7.1.1.tgz"; - sha512 = "kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg=="; + url = "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz"; + sha512 = "Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw=="; }; }; "parse5-htmlparser2-tree-adapter-6.0.1" = { @@ -57380,15 +57326,6 @@ let sha512 = "b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="; }; }; - "path-case-3.0.4" = { - name = "path-case"; - packageName = "path-case"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz"; - sha512 = "qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg=="; - }; - }; "path-dirname-1.0.2" = { name = "path-dirname"; packageName = "path-dirname"; @@ -58046,15 +57983,6 @@ let sha512 = "0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw=="; }; }; - "pino-8.6.1" = { - name = "pino"; - packageName = "pino"; - version = "8.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pino/-/pino-8.6.1.tgz"; - sha512 = "fi+V2K98eMZjQ/uEHHSiMALNrz7HaFdKNYuyA3ZUrbH0f1e8sPFDmeRGzg7ZH2q4QDxGnJPOswmqlEaTAZeDPA=="; - }; - }; "pino-8.7.0" = { name = "pino"; packageName = "pino"; @@ -58217,15 +58145,6 @@ let sha512 = "0+uijmzYcnhC0hStDjm/cl2VYdrmVVBpe7Q8k9YBojxmR5tG8mvR9/nooQq3QSXiQqORDVOTY3XqMEqJVIzkHA=="; }; }; - "pkg-up-2.0.0" = { - name = "pkg-up"; - packageName = "pkg-up"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz"; - sha512 = "fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg=="; - }; - }; "pkg-up-3.1.0" = { name = "pkg-up"; packageName = "pkg-up"; @@ -58577,15 +58496,6 @@ let sha512 = "HmfV88y4tmtR9JsLzdtNwJea+cQdGt+ozeDWdlxHbCiPcoG+/iSAnJ1mEAYdOqITgCoFIT67o3VdY684Ed3FWA=="; }; }; - "popper.js-1.16.1" = { - name = "popper.js"; - packageName = "popper.js"; - version = "1.16.1"; - src = fetchurl { - url = "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz"; - sha512 = "Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ=="; - }; - }; "portfinder-1.0.32" = { name = "portfinder"; packageName = "portfinder"; @@ -58649,13 +58559,13 @@ let sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; }; }; - "postcss-8.4.18" = { + "postcss-8.4.19" = { name = "postcss"; packageName = "postcss"; - version = "8.4.18"; + version = "8.4.19"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz"; - sha512 = "Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz"; + sha512 = "h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA=="; }; }; "postcss-attribute-case-insensitive-5.0.2" = { @@ -58766,13 +58676,13 @@ let sha512 = "7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg=="; }; }; - "postcss-custom-properties-12.1.10" = { + "postcss-custom-properties-12.1.11" = { name = "postcss-custom-properties"; packageName = "postcss-custom-properties"; - version = "12.1.10"; + version = "12.1.11"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz"; - sha512 = "U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A=="; + url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz"; + sha512 = "0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ=="; }; }; "postcss-custom-selectors-6.0.3" = { @@ -58955,13 +58865,13 @@ let sha512 = "flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw=="; }; }; - "postcss-import-15.0.0" = { + "postcss-import-15.0.1" = { name = "postcss-import"; packageName = "postcss-import"; - version = "15.0.0"; + version = "15.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz"; - sha512 = "Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg=="; + url = "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.1.tgz"; + sha512 = "UGlvk8EgT7Gm/Ndf9xZHnzr8xm8P54N8CBWLtcY5alP+YxlEge/Rv78etQyevZs3qWTE9If13+Bo6zATBrPOpA=="; }; }; "postcss-initial-4.0.1" = { @@ -59036,13 +58946,13 @@ let sha512 = "cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA=="; }; }; - "postcss-loader-7.0.1" = { + "postcss-loader-7.0.2" = { name = "postcss-loader"; packageName = "postcss-loader"; - version = "7.0.1"; + version = "7.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz"; - sha512 = "VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ=="; + url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.2.tgz"; + sha512 = "fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg=="; }; }; "postcss-logical-5.0.4" = { @@ -59540,13 +59450,13 @@ let sha512 = "wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g=="; }; }; - "postcss-preset-env-7.8.2" = { + "postcss-preset-env-7.8.3" = { name = "postcss-preset-env"; packageName = "postcss-preset-env"; - version = "7.8.2"; + version = "7.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.2.tgz"; - sha512 = "rSMUEaOCnovKnwc5LvBDHUDzpGP+nrUeWZGWt9M72fBvckCi45JmnJigUr4QG4zZeOHmOCNCZnd2LKDvP++ZuQ=="; + url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz"; + sha512 = "T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag=="; }; }; "postcss-pseudo-class-any-link-7.1.6" = { @@ -59684,6 +59594,15 @@ let sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; }; }; + "postcss-selector-parser-6.0.11" = { + name = "postcss-selector-parser"; + packageName = "postcss-selector-parser"; + version = "6.0.11"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz"; + sha512 = "zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g=="; + }; + }; "postcss-selector-parser-6.0.2" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; @@ -59900,13 +59819,13 @@ let sha512 = "choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="; }; }; - "pouchdb-abstract-mapreduce-7.3.0" = { + "pouchdb-abstract-mapreduce-7.3.1" = { name = "pouchdb-abstract-mapreduce"; packageName = "pouchdb-abstract-mapreduce"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.3.0.tgz"; - sha512 = "+2fVt3SDh7D776lIGbYZOsKX5js1aUyUw7iJaTGitxSdQ2ObWSTrr3SUrj5Qo1CkgPXwRM3Tdoq/53JYAa2qCA=="; + url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.3.1.tgz"; + sha512 = "0zKXVFBvrfc1KnN0ggrB762JDmZnUpePHywo9Bq3Jy+L1FnoG7fXM5luFfvv5/T0gEw+ZTIwoocZECMnESBI9w=="; }; }; "pouchdb-adapter-node-websql-7.0.0" = { @@ -59945,31 +59864,31 @@ let sha512 = "yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw=="; }; }; - "pouchdb-binary-utils-7.3.0" = { + "pouchdb-binary-utils-7.3.1" = { name = "pouchdb-binary-utils"; packageName = "pouchdb-binary-utils"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.3.0.tgz"; - sha512 = "xvBH/XGHGcou2vkEzszJxkCc7YElfRUrkLUg51Jbdmh1mogLDUO0bU3Tj6TOIIJfRkQrU/HV+dDkMAhsil0amQ=="; + url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.3.1.tgz"; + sha512 = "crZJNfAEOnUoRk977Qtmk4cxEv6sNKllQ6vDDKgQrQLFjMUXma35EHzNyIJr1s76J77Q4sqKQAmxz9Y40yHGtw=="; }; }; - "pouchdb-changes-filter-7.3.0" = { + "pouchdb-changes-filter-7.3.1" = { name = "pouchdb-changes-filter"; packageName = "pouchdb-changes-filter"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.3.0.tgz"; - sha512 = "9E/EC9BP9dH9sfqUBdcWlR5HHeDdWqP82MmdEtg5c8spgxttYPwqrPfSHa7T2n55IRnaIoQbVyndmfAoz9GsOw=="; + url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.3.1.tgz"; + sha512 = "C31zsslhlxyFdlKPdZ0013Z4GIsWjoSTgptfamrPnXEtOS6EX4jLtcmiGURCIXmZlcDGKRm8qWHL3vikwITalA=="; }; }; - "pouchdb-collate-7.3.0" = { + "pouchdb-collate-7.3.1" = { name = "pouchdb-collate"; packageName = "pouchdb-collate"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.3.0.tgz"; - sha512 = "ys7rXKtEr6cfghgUjknwFJiOkITebV6JmeTybJKCzMV0r2luXu0OoPQsKVpE/wbM/3F5LxfpbFKGFpPcfGMvTA=="; + url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.3.1.tgz"; + sha512 = "o4gyGqDMLMSNzf6EDTr3eHaH/JRMoqRhdc+eV+oA8u00nTBtr9wD+jypVe2LbgKLJ4NWqx2qVkXiTiQdUFtsLQ=="; }; }; "pouchdb-collections-7.0.0" = { @@ -59981,22 +59900,22 @@ let sha512 = "DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q=="; }; }; - "pouchdb-collections-7.3.0" = { + "pouchdb-collections-7.3.1" = { name = "pouchdb-collections"; packageName = "pouchdb-collections"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.3.0.tgz"; - sha512 = "Xr54m2+fErShXn+qAT4xwqJ+8NwddNPeTMJT4z4k1sZsrwfHmZsWbsKAyGPMF04eQaaU+7DDRMciu2VzaBUXyg=="; + url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.3.1.tgz"; + sha512 = "yUyDqR+OJmtwgExOSJegpBJXDLAEC84TWnbAYycyh+DZoA51Yw0+XVQF5Vh8Ii90/Ut2xo88fmrmp0t6kqom8w=="; }; }; - "pouchdb-core-7.3.0" = { + "pouchdb-core-7.3.1" = { name = "pouchdb-core"; packageName = "pouchdb-core"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.3.0.tgz"; - sha512 = "fpEbjrYzmZivSupl7V0Aa2vHivyJHi9gx7+d021Wxajx4br515eYcN6Whk/L0L4xgoDVKoqUwmv+XgEF8EZhwg=="; + url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.3.1.tgz"; + sha512 = "9jRZ70+4wrDohJQQ2OA8T9zzanefWf03ugGis5NJL24cpar8LjvQnceRo8X4KCQfVJr9su9LFe4L6YBqneE1VA=="; }; }; "pouchdb-errors-7.0.0" = { @@ -60008,13 +59927,13 @@ let sha512 = "dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA=="; }; }; - "pouchdb-errors-7.3.0" = { + "pouchdb-errors-7.3.1" = { name = "pouchdb-errors"; packageName = "pouchdb-errors"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.3.0.tgz"; - sha512 = "dTBbIC1BbCy6J9W/Csg5xROgb3wJN3HpbgAJHHSEtAkb8oA45KZmU3ZwEpNhf0AfPuQm4XgW1936PvlDlGgJiw=="; + url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.3.1.tgz"; + sha512 = "Zktz4gnXEUcZcty8FmyvtYUYsHskoST05m6H5/E2gg/0mCfEXq/XeyyLkZHaZmqD0ZPS9yNmASB1VaFWEKEaDw=="; }; }; "pouchdb-extend-0.1.2" = { @@ -60026,22 +59945,22 @@ let sha512 = "aGWbcFJNQLAdv30hExdFE8fhjsoOsyxv5s1TBNPSc6noTu4MX9n0s3h+YhWyJaE75SOTFbpmimuvXx9qONjI8w=="; }; }; - "pouchdb-fetch-7.3.0" = { + "pouchdb-fetch-7.3.1" = { name = "pouchdb-fetch"; packageName = "pouchdb-fetch"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.3.0.tgz"; - sha512 = "8/lcg8iMDG+GVs1dHNXA4ktJSEpH71dHU3xesMJ25tNQOqfAaaWrkfz9j71ZYDDkveLYE6UjUzl/sDacu2hSjw=="; + url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.3.1.tgz"; + sha512 = "205xAtvdHRPQ4fp1h9+RmT9oQabo9gafuPmWsS9aEl3ER54WbY8Vaj1JHZGbU4KtMTYvW7H5088zLS7Nrusuag=="; }; }; - "pouchdb-find-7.3.0" = { + "pouchdb-find-7.3.1" = { name = "pouchdb-find"; packageName = "pouchdb-find"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.3.0.tgz"; - sha512 = "EwhnfyxCAkKf8PG4tfndTTygEmtuz+o1LiZkxfPrflfXA3m1jo1ithib0hwBYtEwEYWuZxH6B8pRZutbLoQCGA=="; + url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.3.1.tgz"; + sha512 = "AeqUfAVY1c7IFaY36BRT0vIz9r4VTKq/YOWTmiqndOZUQ/pDGxyO2fNFal6NN3PyYww0JijlD377cPvhnrhJVA=="; }; }; "pouchdb-json-7.0.0" = { @@ -60053,13 +59972,13 @@ let sha512 = "w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew=="; }; }; - "pouchdb-mapreduce-utils-7.3.0" = { + "pouchdb-mapreduce-utils-7.3.1" = { name = "pouchdb-mapreduce-utils"; packageName = "pouchdb-mapreduce-utils"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.3.0.tgz"; - sha512 = "KDVSd+H2r+XWTrQfKWV71SknDDYRjYXoeWs0ZQl3xITHCcTl+fIgqyagg/XN+Zy/U9LeLPGMe2JdgPx9H8lJgw=="; + url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.3.1.tgz"; + sha512 = "oUMcq82+4pTGQ6dtrhgORHOVHZSr6w/5tFIUGlv7RABIDvJarL4snMawADjlpiEwPdiQ/ESG8Fqt8cxqvqsIgg=="; }; }; "pouchdb-md5-7.0.0" = { @@ -60071,13 +59990,13 @@ let sha512 = "yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ=="; }; }; - "pouchdb-md5-7.3.0" = { + "pouchdb-md5-7.3.1" = { name = "pouchdb-md5"; packageName = "pouchdb-md5"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.3.0.tgz"; - sha512 = "wL04QgoKyd/L/TV5gxgcvlEyCJiZoXCOEFJklTzkdza/kBQNJGPH7i0ZhKa7Sb+AvZYoWZHddf1Zgv7rBScHkA=="; + url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.3.1.tgz"; + sha512 = "aDV8ui/mprnL3xmt0gT/81DFtTtJiKyn+OxIAbwKPMfz/rDFdPYvF0BmDC9QxMMzGfkV+JJUjU6at0PPs2mRLg=="; }; }; "pouchdb-merge-7.0.0" = { @@ -60089,13 +60008,13 @@ let sha512 = "tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg=="; }; }; - "pouchdb-merge-7.3.0" = { + "pouchdb-merge-7.3.1" = { name = "pouchdb-merge"; packageName = "pouchdb-merge"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.3.0.tgz"; - sha512 = "E7LmchMzwYFm6V8OBxejzARLisanpksOju2LEfuiYnotGfNDeW7MByP0qBH0/zF8BfUyyjA1cl7ByaEpsapkeQ=="; + url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.3.1.tgz"; + sha512 = "FeK3r35mKimokf2PQ2tUI523QWyZ4lYZ0Yd75FfSch/SPY6wIokz5XBZZ6PHdu5aOJsEKzoLUxr8CpSg9DhcAw=="; }; }; "pouchdb-promise-5.4.3" = { @@ -60107,13 +60026,13 @@ let sha512 = "7WNPDutzlYiu/mF430nrK6K/eIewwEofxcU2P9h058dYXUP3zRo0Qp0UjuYP4wYt2r0DtyFtLFciZvxnXQZdXA=="; }; }; - "pouchdb-selector-core-7.3.0" = { + "pouchdb-selector-core-7.3.1" = { name = "pouchdb-selector-core"; packageName = "pouchdb-selector-core"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.3.0.tgz"; - sha512 = "sK/cCrIGeL9ImcMhKGcwa54+bzX7Wv4hhVV+oUW3T1Nasaoxh+Muem1GuA+x1+SbTCE8y37rUg8i6DIOhX51ew=="; + url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.3.1.tgz"; + sha512 = "HBX+nNGXcaL9z0uNpwSMRq2GNZd3EZXW+fe9rJHS0hvJohjZL7aRJLoaXfEdHPRTNW+CpjM3Rny60eGekQdI/w=="; }; }; "pouchdb-utils-7.0.0" = { @@ -60125,13 +60044,13 @@ let sha512 = "1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ=="; }; }; - "pouchdb-utils-7.3.0" = { + "pouchdb-utils-7.3.1" = { name = "pouchdb-utils"; packageName = "pouchdb-utils"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.3.0.tgz"; - sha512 = "HH+5IXXWn/ZgVCSnrlydBMYn6MabT7RS7SNoo9w8qVH9efpZSp3eLchw6yMQNLw8LQefWmbbskiHV9VgJmSVWQ=="; + url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.3.1.tgz"; + sha512 = "R3hHBo1zTdTu/NFs3iqkcaQAPwhIH0gMIdfVKd5lbDYlmP26rCG5pdS+v7NuoSSFLJ4xxnaGV+Gjf4duYsJ8wQ=="; }; }; "pouchdb-wrappers-4.1.0" = { @@ -60278,13 +60197,13 @@ let sha512 = "9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA=="; }; }; - "prettier-2.7.1" = { + "prettier-2.8.0" = { name = "prettier"; packageName = "prettier"; - version = "2.7.1"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz"; - sha512 = "ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g=="; + url = "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz"; + sha512 = "9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA=="; }; }; "prettier-bytes-1.0.4" = { @@ -60314,22 +60233,22 @@ let sha512 = "GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w=="; }; }; - "prettier-plugin-astro-0.6.0" = { + "prettier-plugin-astro-0.7.0" = { name = "prettier-plugin-astro"; packageName = "prettier-plugin-astro"; - version = "0.6.0"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.6.0.tgz"; - sha512 = "xU67TzyGi1u/pwVbEh55AwoOfcOpsh9BtD2MpUAEVrViAcdrBDcmA9VN0edLgla7f2NYu8ntGakxTSrSNFv1mQ=="; + url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.7.0.tgz"; + sha512 = "ehCUx7MqHWvkHwUmxxAWLsL35pFaCTM5YXQ8xjG/1W6dY2yBhvEks+2aCfjeI5zmMrZNCXkiMQtpznSlLSLrxw=="; }; }; - "prettier-plugin-svelte-2.8.0" = { + "prettier-plugin-svelte-2.8.1" = { name = "prettier-plugin-svelte"; packageName = "prettier-plugin-svelte"; - version = "2.8.0"; + version = "2.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.8.0.tgz"; - sha512 = "QlXv/U3bUszks3XYDPsk1fsaQC+fo2lshwKbcbO+lrSVdJ+40mB1BfL8OCAk1W9y4pJxpqO/4gqm6NtF3zNGCw=="; + url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.8.1.tgz"; + sha512 = "KA3K1J3/wKDnCxW7ZDRA/QL2Q67N7Xs3gOERqJ5X1qFjq1DdnN3K1R29scSKwh+kA8FF67pXbYytUpvN/i3iQw=="; }; }; "prettier-tslint-0.4.2" = { @@ -60548,6 +60467,15 @@ let sha512 = "Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw=="; }; }; + "proc-log-3.0.0" = { + name = "proc-log"; + packageName = "proc-log"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz"; + sha512 = "++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A=="; + }; + }; "process-0.10.1" = { name = "process"; packageName = "process"; @@ -60638,15 +60566,6 @@ let sha512 = "UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw=="; }; }; - "progress-2.0.1" = { - name = "progress"; - packageName = "progress"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/progress/-/progress-2.0.1.tgz"; - sha512 = "OE+a6vzqazc+K6LxJrX5UPyKFvGnL5CYmq2jFGNIBWHpc4QyE49/YOumcrpQFJpfejmvRtbJzgO1zPmMCqlbBg=="; - }; - }; "progress-2.0.3" = { name = "progress"; packageName = "progress"; @@ -60818,13 +60737,13 @@ let sha512 = "NV8aTmpwrZv+Iys54sSFOBx3tuVaOBvvrft5PNppnxy9xpU/akHbaWIril22AB22zaPgrgwKdD0KsrM0ptUtpg=="; }; }; - "promise.prototype.finally-3.1.3" = { + "promise.prototype.finally-3.1.4" = { name = "promise.prototype.finally"; packageName = "promise.prototype.finally"; - version = "3.1.3"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-3.1.3.tgz"; - sha512 = "EXRF3fC9/0gz4qkt/f5EP5iW4kj9oFpBICNpCNOb/52+8nlHIX07FPLbi/q4qYBQ1xZqivMzTpNQSnArVASolQ=="; + url = "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-3.1.4.tgz"; + sha512 = "nNc3YbgMfLzqtqvO/q5DP6RR0SiHI9pUPGzyDf1q+usTwCN2kjvAnJkBb7bHe3o+fFSBPpsGMoYtaSi+LTNqng=="; }; }; "promised-temp-0.1.0" = { @@ -60989,13 +60908,13 @@ let sha512 = "YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA=="; }; }; - "property-information-6.1.1" = { + "property-information-6.2.0" = { name = "property-information"; packageName = "property-information"; - version = "6.1.1"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/property-information/-/property-information-6.1.1.tgz"; - sha512 = "hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w=="; + url = "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz"; + sha512 = "kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg=="; }; }; "proto-list-1.2.4" = { @@ -61898,13 +61817,13 @@ let sha512 = "+uTgIM11eTOctGHxiTgNC/50qyM6PXcf8OxG1gTQIimamqlnIIxR0LjDbLWbeU1jfzg3EArVxknUQWEs8dmArw=="; }; }; - "pull-stream-3.6.14" = { + "pull-stream-3.7.0" = { name = "pull-stream"; packageName = "pull-stream"; - version = "3.6.14"; + version = "3.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.14.tgz"; - sha512 = "KIqdvpqHHaTUA2mCYcLG1ibEbu/LCKoJZsBWyv9lSYtPkJPBq8m3Hxa103xHi6D2thj5YXa0TqK3L3GUkwgnew=="; + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.7.0.tgz"; + sha512 = "Eco+/R004UaCK2qEDE8vGklcTG2OeZSVm1kTUQNrykEjDwcFXDZhygFDsW49DbXyJMEhHeRL3z5cRVqPAhXlIw=="; }; }; "pull-thenable-1.0.0" = { @@ -62096,15 +62015,6 @@ let sha512 = "bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ=="; }; }; - "puppeteer-10.4.0" = { - name = "puppeteer"; - packageName = "puppeteer"; - version = "10.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-10.4.0.tgz"; - sha512 = "2cP8mBoqnu5gzAVpbZ0fRaobBWZM8GEUF4I1F6WbgHrKV/rz7SX8PG2wMymZgD0wo0UBlg2FBPNxlF/xlqW6+w=="; - }; - }; "puppeteer-13.7.0" = { name = "puppeteer"; packageName = "puppeteer"; @@ -62114,22 +62024,22 @@ let sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA=="; }; }; - "puppeteer-18.2.1" = { + "puppeteer-19.3.0" = { name = "puppeteer"; packageName = "puppeteer"; - version = "18.2.1"; + version = "19.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-18.2.1.tgz"; - sha512 = "7+UhmYa7wxPh2oMRwA++k8UGVDxh3YdWFB52r9C3tM81T6BU7cuusUSxImz0GEYSOYUKk/YzIhkQ6+vc0gHbxQ=="; + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.3.0.tgz"; + sha512 = "WJbi/ULaeuFOz7cfMgJlJCBAZiyqIFeQ6os4h5ex3PVTt2qosXgwI9eruFZqFAwJRv8x5pOuMhWR0aSRgyDqEg=="; }; }; - "puppeteer-core-18.2.1" = { + "puppeteer-core-19.3.0" = { name = "puppeteer-core"; packageName = "puppeteer-core"; - version = "18.2.1"; + version = "19.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-18.2.1.tgz"; - sha512 = "MRtTAZfQTluz3U2oU/X2VqVWPcR1+94nbA2V6ZrSZRVEwLqZ8eclZ551qGFQD/vD2PYqHJwWOW/fpC721uznVw=="; + url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.3.0.tgz"; + sha512 = "P8VAAOBnBJo/7DKJnj1b0K9kZBF2D8lkdL94CjJ+DZKCp182LQqYemPI9omUSZkh4bgykzXjZhaVR1qtddTTQg=="; }; }; "purgecss-2.3.0" = { @@ -62141,13 +62051,13 @@ let sha512 = "BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ=="; }; }; - "purgecss-4.1.3" = { + "purgecss-5.0.0" = { name = "purgecss"; packageName = "purgecss"; - version = "4.1.3"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/purgecss/-/purgecss-4.1.3.tgz"; - sha512 = "99cKy4s+VZoXnPxaoM23e5ABcP851nC2y2GROkkjS8eJaJtlciGavd7iYAw2V84WeBqggZ12l8ef44G99HmTaw=="; + url = "https://registry.npmjs.org/purgecss/-/purgecss-5.0.0.tgz"; + sha512 = "RAnuxrGuVyLLTr8uMbKaxDRGWMgK5CCYDfRyUNNcaz5P3kGgD2b7ymQGYEyo2ST7Tl/ScwFgf5l3slKMxHSbrw=="; }; }; "push-stream-10.1.2" = { @@ -62159,13 +62069,13 @@ let sha512 = "wCDN1KkAWOMXsiV0XxH/CggHqOYeXvyn00t9Zjp5RKsLZ2rzg/lLJIMAVxYLyh79T168W3fBYcG5TRRJAlQr6g=="; }; }; - "push-stream-11.0.1" = { + "push-stream-11.2.0" = { name = "push-stream"; packageName = "push-stream"; - version = "11.0.1"; + version = "11.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/push-stream/-/push-stream-11.0.1.tgz"; - sha512 = "Cb5aOY6Z6JxjAKBmpmmzoJ+8I6pJlRjJ5WYoM2Vw3kSlClojmIXzA+FP0yglJ4ELokrqLX223frxJTnxUx0dpw=="; + url = "https://registry.npmjs.org/push-stream/-/push-stream-11.2.0.tgz"; + sha512 = "MbiU+tFKDFv6IRwxfU2pltftFiIsW6mhLT3q91EJQwZYd2A9aaytdKAnRGYCx9KAuWQ11/cClK/FvHY996WwxA=="; }; }; "push-stream-to-pull-stream-1.0.5" = { @@ -62204,13 +62114,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.278" = { + "pyright-1.1.282" = { name = "pyright"; packageName = "pyright"; - version = "1.1.278"; + version = "1.1.282"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.278.tgz"; - sha512 = "at3j7c1fFzB6Jl4+bpr9QPRC/+1gH2gAR/M6GIRS312CHE2JMt8FZRflTbuxEB8IfQAtR+l3YoRMoS1vqF28jw=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.282.tgz"; + sha512 = "qwlGhY/4wkZJJlxiwGzKL7Do6rVSOcXp72zplxJ76BbVIWuiKpGUeYIhLdONEAD22UwLTp8XvmARQzDnJ3EMSQ=="; }; }; "q-0.9.7" = { @@ -62420,15 +62330,6 @@ let sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; }; }; - "qs-6.9.3" = { - name = "qs"; - packageName = "qs"; - version = "6.9.3"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz"; - sha512 = "EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw=="; - }; - }; "qs-6.9.7" = { name = "qs"; packageName = "qs"; @@ -62474,13 +62375,13 @@ let sha512 = "XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw=="; }; }; - "query-string-7.1.1" = { + "query-string-7.1.3" = { name = "query-string"; packageName = "query-string"; - version = "7.1.1"; + version = "7.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz"; - sha512 = "MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w=="; + url = "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz"; + sha512 = "hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg=="; }; }; "querystring-0.2.0" = { @@ -63041,13 +62942,13 @@ let sha512 = "xVTNGQy/dAxOolunBLmVMGZ49VUUR1s8jZUiJQb+g1sI63GAv9+a5Jas9yHvdxeUgiZkU9r3gDExDorxHzOgRA=="; }; }; - "re2-1.17.7" = { + "re2-1.17.8" = { name = "re2"; packageName = "re2"; - version = "1.17.7"; + version = "1.17.8"; src = fetchurl { - url = "https://registry.npmjs.org/re2/-/re2-1.17.7.tgz"; - sha512 = "X8GSuiBoVWwcjuppqSjsIkRxNUKDdjhkO9SBekQbZ2ksqWUReCy7DQPWOVpoTnpdtdz5PIpTTxTFzvJv5UMfjA=="; + url = "https://registry.npmjs.org/re2/-/re2-1.17.8.tgz"; + sha512 = "KM5zYGb1BlPPU8xLq9kkxwMq2wntoluIbjELcPSRS32hxgJqked3ahmtzu6vY1SMqjxHfutStF2b3KuRjcJHHg=="; }; }; "react-16.14.0" = { @@ -63077,13 +62978,13 @@ let sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; }; }; - "react-devtools-core-4.26.1" = { + "react-devtools-core-4.27.0" = { name = "react-devtools-core"; packageName = "react-devtools-core"; - version = "4.26.1"; + version = "4.27.0"; src = fetchurl { - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.26.1.tgz"; - sha512 = "r1csa5n9nABVpSdAadwTG7K+SfgRJPc/Hdx89BkV5IlA1mEGgGi3ir630ST5D/xYlJQaY3VE75YGADgpNW7HIw=="; + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.27.0.tgz"; + sha512 = "9dfVBf/9yquz5deUUCi9kA/JA4+2MTUxfKRv6IqizR0B26/28CxJedXb0kXtPD/cRKce8ecU1KhfJiDzUkOOaQ=="; }; }; "react-dom-16.14.0" = { @@ -63149,13 +63050,13 @@ let sha512 = "4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw=="; }; }; - "react-hot-loader-4.13.0" = { + "react-hot-loader-4.13.1" = { name = "react-hot-loader"; packageName = "react-hot-loader"; - version = "4.13.0"; + version = "4.13.1"; src = fetchurl { - url = "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.13.0.tgz"; - sha512 = "JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA=="; + url = "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.13.1.tgz"; + sha512 = "ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g=="; }; }; "react-is-16.13.1" = { @@ -63185,15 +63086,6 @@ let sha512 = "fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="; }; }; - "react-popper-1.3.11" = { - name = "react-popper"; - packageName = "react-popper"; - version = "1.3.11"; - src = fetchurl { - url = "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz"; - sha512 = "VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg=="; - }; - }; "react-reconciler-0.24.0" = { name = "react-reconciler"; packageName = "react-reconciler"; @@ -63239,15 +63131,6 @@ let sha512 = "PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw=="; }; }; - "react-string-replace-1.1.0" = { - name = "react-string-replace"; - packageName = "react-string-replace"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/react-string-replace/-/react-string-replace-1.1.0.tgz"; - sha512 = "N6RalSDFGbOHs0IJi1H611WbZsvk3ZT47Jl2JEXFbiS3kTwsdCYij70Keo/tWtLy7sfhDsYm7CwNM/WmjXIaMw=="; - }; - }; "react-tabs-3.2.3" = { name = "react-tabs"; packageName = "react-tabs"; @@ -63257,15 +63140,6 @@ let sha512 = "jx325RhRVnS9DdFbeF511z0T0WEqEoMl1uCE3LoZ6VaZZm7ytatxbum0B8bCTmaiV0KsU+4TtLGTGevCic7SWg=="; }; }; - "react-transition-group-4.4.5" = { - name = "react-transition-group"; - packageName = "react-transition-group"; - version = "4.4.5"; - src = fetchurl { - url = "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz"; - sha512 = "pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g=="; - }; - }; "react-universal-component-4.5.0" = { name = "react-universal-component"; packageName = "react-universal-component"; @@ -63275,42 +63149,6 @@ let sha512 = "dBUC6afvSAQhDcE4oh1eTmfU29W0O2eZhcGXnfGUTulXkU8ejuWqlJWXXrSMx5iV1H6LNgj2NJMj3BtBMfBNhA=="; }; }; - "react-virtualized-auto-sizer-1.0.7" = { - name = "react-virtualized-auto-sizer"; - packageName = "react-virtualized-auto-sizer"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.7.tgz"; - sha512 = "Mxi6lwOmjwIjC1X4gABXMJcKHsOo0xWl3E3ugOgufB8GJU+MqrtY35aBuvCYv/razQ1Vbp7h1gWJjGjoNN5pmA=="; - }; - }; - "react-window-1.8.8" = { - name = "react-window"; - packageName = "react-window"; - version = "1.8.8"; - src = fetchurl { - url = "https://registry.npmjs.org/react-window/-/react-window-1.8.8.tgz"; - sha512 = "D4IiBeRtGXziZ1n0XklnFGu7h9gU684zepqyKzgPNzrsrk7xOCxni+TCckjg2Nr/DiaEEGVVmnhYSlT2rB47dQ=="; - }; - }; - "react-window-infinite-loader-1.0.8" = { - name = "react-window-infinite-loader"; - packageName = "react-window-infinite-loader"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/react-window-infinite-loader/-/react-window-infinite-loader-1.0.8.tgz"; - sha512 = "907ZLAiZZfBHuZyiY0V7uiSL4P/rI6UQyCF9wES1cDWTeyNLgGLaxu+BZkcUW3R5tSCQcbCcWBl0jVIpYzrKGQ=="; - }; - }; - "react-zoom-pan-pinch-2.1.3" = { - name = "react-zoom-pan-pinch"; - packageName = "react-zoom-pan-pinch"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/react-zoom-pan-pinch/-/react-zoom-pan-pinch-2.1.3.tgz"; - sha512 = "a5AChOWhjo0RmxsNZXGQIlNh3e3nLU6m4V6M+6dlbPNk5d+MtMxgKWyA5zpR06Lp3OZkZVF9nR8JeWSvKwck9g=="; - }; - }; "read-1.0.5" = { name = "read"; packageName = "read"; @@ -63419,6 +63257,15 @@ let sha512 = "BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q=="; }; }; + "read-package-json-6.0.0" = { + name = "read-package-json"; + packageName = "read-package-json"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.0.tgz"; + sha512 = "b/9jxWJ8EwogJPpv99ma+QwtqB7FSl3+V6UXS7Aaay8/5VwMY50oIFooY1UKXMWpfNCM6T/PoGqa5GD1g9xf9w=="; + }; + }; "read-package-json-fast-2.0.3" = { name = "read-package-json-fast"; packageName = "read-package-json-fast"; @@ -63950,13 +63797,13 @@ let sha512 = "bCR0gKVhIXFg8zCQjXEANzgI01DDixtPZgIUZHBCmwqixnu+MK3Tb2yqGjh+HCLASQVVgApiwhNkv+FoedZOGQ=="; }; }; - "redis-4.4.0" = { + "redis-4.5.1" = { name = "redis"; packageName = "redis"; - version = "4.4.0"; + version = "4.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/redis/-/redis-4.4.0.tgz"; - sha512 = "tQyFG6O9iewLxxHYRyirJNklhe2QI7M/0o8q0jk7D9Z/Cxh/7oZrQyHKyjWz0TkkCls8ool/xvhL9K8zRnkaYQ=="; + url = "https://registry.npmjs.org/redis/-/redis-4.5.1.tgz"; + sha512 = "oxXSoIqMJCQVBTfxP6BNTCtDMyh9G6Vi5wjdPdV/sRKkufyZslDqCScSGcOr6XGR/reAWZefz7E4leM31RgdBA=="; }; }; "redis-commands-1.7.0" = { @@ -64130,22 +63977,22 @@ let sha512 = "odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg=="; }; }; - "regenerator-runtime-0.13.10" = { + "regenerator-runtime-0.13.11" = { name = "regenerator-runtime"; packageName = "regenerator-runtime"; - version = "0.13.10"; + version = "0.13.11"; src = fetchurl { - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz"; - sha512 = "KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="; + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"; + sha512 = "kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="; }; }; - "regenerator-transform-0.15.0" = { + "regenerator-transform-0.15.1" = { name = "regenerator-transform"; packageName = "regenerator-transform"; - version = "0.15.0"; + version = "0.15.1"; src = fetchurl { - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"; - sha512 = "LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="; + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz"; + sha512 = "knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg=="; }; }; "regex-cache-0.4.4" = { @@ -64220,13 +64067,13 @@ let sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; }; }; - "regexpu-core-5.2.1" = { + "regexpu-core-5.2.2" = { name = "regexpu-core"; packageName = "regexpu-core"; - version = "5.2.1"; + version = "5.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz"; - sha512 = "HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ=="; + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz"; + sha512 = "T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw=="; }; }; "register-protocol-win32-1.1.0" = { @@ -65300,6 +65147,15 @@ let sha512 = "3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg=="; }; }; + "request-light-0.6.0" = { + name = "request-light"; + packageName = "request-light"; + version = "0.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/request-light/-/request-light-0.6.0.tgz"; + sha512 = "D3TyWnzX4Kej7ZomWbD+ZqnmzKw/otLHU4tsuhsnF3CoIBo9y0JsxkQXGAqBC4FH/y1hm/ry0/hrsVaKMCkljA=="; + }; + }; "request-oauth-0.0.3" = { name = "request-oauth"; packageName = "request-oauth"; @@ -65462,13 +65318,13 @@ let sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; }; }; - "requizzle-0.2.3" = { + "requizzle-0.2.4" = { name = "requizzle"; packageName = "requizzle"; - version = "0.2.3"; + version = "0.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz"; - sha512 = "YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ=="; + url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz"; + sha512 = "JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw=="; }; }; "reselect-4.1.7" = { @@ -65885,13 +65741,13 @@ let sha512 = "40Ym0WOgy7rRY4tR2iL01g3Y5Ql+9NBV21hycIhNX3uv+6vjaWB30NWN+tTcxNIWBJEwXHoTDMiVdAMm6ZpHVA=="; }; }; - "retext-profanities-7.2.1" = { + "retext-profanities-7.2.2" = { name = "retext-profanities"; packageName = "retext-profanities"; - version = "7.2.1"; + version = "7.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/retext-profanities/-/retext-profanities-7.2.1.tgz"; - sha512 = "VJ+opSjhmFKJnHvvqpM6/5Jxiizys9teNmQpdQgZTeUTddAGALq418/hjyvCvI1c2IGgya8pVA5pZ1b8+RMfyQ=="; + url = "https://registry.npmjs.org/retext-profanities/-/retext-profanities-7.2.2.tgz"; + sha512 = "nwrR987v3m7+JQ8wyK8oE+adqS1aYUyHyf+k6omflI/8PL9Slbp/39YieTJJvrmR0udBe2iV7aURXW5/3Uj12w=="; }; }; "rethinkdb-2.4.2" = { @@ -66281,15 +66137,6 @@ let sha512 = "OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw=="; }; }; - "rtcpeerconnection-shim-1.2.15" = { - name = "rtcpeerconnection-shim"; - packageName = "rtcpeerconnection-shim"; - version = "1.2.15"; - src = fetchurl { - url = "https://registry.npmjs.org/rtcpeerconnection-shim/-/rtcpeerconnection-shim-1.2.15.tgz"; - sha512 = "C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw=="; - }; - }; "rttc-4.5.2" = { name = "rttc"; packageName = "rttc"; @@ -66380,15 +66227,6 @@ let sha512 = "cLgakCUf6PedEu15t8kbsjnwIFFR2D4RfL+W3iWFJ4iac7z4B0ZI8fxy4R3J956kAI68HclCFGL8MPoUVC3qVA=="; }; }; - "rw-0.1.4" = { - name = "rw"; - packageName = "rw"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/rw/-/rw-0.1.4.tgz"; - sha512 = "vSj3D96kMcjNyqPcp65wBRIDImGSrUuMxngNNxvw8MQaO+aQ6llzRPH7XcJy5zrpb3wU++045+Uz/IDIM684iw=="; - }; - }; "rw-1.3.3" = { name = "rw"; packageName = "rw"; @@ -66470,13 +66308,13 @@ let sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; }; }; - "rxjs-7.5.7" = { + "rxjs-7.6.0" = { name = "rxjs"; packageName = "rxjs"; - version = "7.5.7"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz"; - sha512 = "z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA=="; + url = "https://registry.npmjs.org/rxjs/-/rxjs-7.6.0.tgz"; + sha512 = "DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ=="; }; }; "s.color-0.0.15" = { @@ -66713,94 +66551,94 @@ let sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; }; }; - "sass-1.56.0" = { + "sass-1.56.1" = { name = "sass"; packageName = "sass"; - version = "1.56.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.56.0.tgz"; - sha512 = "WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw=="; + url = "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz"; + sha512 = "VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ=="; }; }; - "sass-embedded-1.55.0" = { + "sass-embedded-1.56.1" = { name = "sass-embedded"; packageName = "sass-embedded"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.55.0.tgz"; - sha512 = "6AkKEyRjxz37iNwOdTOW94I33j5mxcih9Z604q1w0M1dOTKaZgtyNI67O0zb4akwZ9dVZ2VSJBXqY8/1TZRBIw=="; + url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.56.1.tgz"; + sha512 = "8VuohdRoGfqVWgBNeC+iqek1KXIVWYcG6AOQ6rJvRUe08HbdPQgp0+fseDQX7E5UxaoM8wvU5VBwCbZvPwFZQw=="; }; }; - "sass-embedded-darwin-arm64-1.55.0" = { + "sass-embedded-darwin-arm64-1.56.1" = { name = "sass-embedded-darwin-arm64"; packageName = "sass-embedded-darwin-arm64"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.55.0.tgz"; - sha512 = "cQ43gYDFo4xWSqG01ZmOhTyTgk/RYK7s1a4R+7VSQPhYTsd4VofAmTNw0MkLR3RzR53ziGgawA6uT/WHTm+yjg=="; + url = "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.56.1.tgz"; + sha512 = "Y6us8rg7uwLtAzGiKDebAhFn98RLpW3u5Jnfbsvetlm/rDJ1fZg/roVXFttepLdVbYBjimVFTUaNuGxU3bWbBA=="; }; }; - "sass-embedded-darwin-x64-1.55.0" = { + "sass-embedded-darwin-x64-1.56.1" = { name = "sass-embedded-darwin-x64"; packageName = "sass-embedded-darwin-x64"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.55.0.tgz"; - sha512 = "ra8z++EBey01pkiwCwjWyMbf6G5xm2Uj0dUJzzsS1MI6Fw6XaesrWmYico5pnawm3rOYtKlMxkd2Y6b1Jwxy8A=="; + url = "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.56.1.tgz"; + sha512 = "UypB3IREbreNNc+dG+L6hG5yoeTujKDCdmu38SSSS/zl9XBFTc8McX58SWapTJOUFK8G43CCimfB3r8FOcyNfA=="; }; }; - "sass-embedded-linux-arm-1.55.0" = { + "sass-embedded-linux-arm-1.56.1" = { name = "sass-embedded-linux-arm"; packageName = "sass-embedded-linux-arm"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.55.0.tgz"; - sha512 = "UIW7CaRLjHMWm64jH23n5eji/RAv8XIJ2qpFh0Ds8EJeDZmRA+qyIFHcQ805fZ22u6o0mkxq0kE4+j1XmmbBeg=="; + url = "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.56.1.tgz"; + sha512 = "pXv+2HlMsjlk0g3dzuVhofuUNJZWUfWVe5xbbWHv+wrdH9kuui6WOyHDhSdUolPrRXOrdsG6Z4/Balr9wa1JWQ=="; }; }; - "sass-embedded-linux-arm64-1.55.0" = { + "sass-embedded-linux-arm64-1.56.1" = { name = "sass-embedded-linux-arm64"; packageName = "sass-embedded-linux-arm64"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.55.0.tgz"; - sha512 = "P4zL4PnujdiSkek/g0RJjyNZcYEqSm6WFr0sSIrxe3byhGg56mWr4WJdxUNwFZ6sxyy2s0PFSjSKGmBtgEfIpw=="; + url = "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.56.1.tgz"; + sha512 = "Ly2wk8EmhjXkBpNPM+yAygSxTVIBjQlf4cDAHYgsaDUIIvRSAKAe2CUmxJjik069Qmv54g+Ac7WF6k63c2CTNw=="; }; }; - "sass-embedded-linux-ia32-1.55.0" = { + "sass-embedded-linux-ia32-1.56.1" = { name = "sass-embedded-linux-ia32"; packageName = "sass-embedded-linux-ia32"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.55.0.tgz"; - sha512 = "9XJyAl4w5KBjR4LAXckfQKqPv9UYPmOv2HFRBwhHD1k4Dc8gZbfTCzK5wl49z5Z4z1GPvqV9ucIZceXzgJ5e6Q=="; + url = "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.56.1.tgz"; + sha512 = "cGmhnHdCbwJsQgsogwmlALzS/j8g+qQTiBuKBcXIWyFn4hLWo2BAr4Gm9vY5p+8aapcYrRQF9b0nwpFQcUScOg=="; }; }; - "sass-embedded-linux-x64-1.55.0" = { + "sass-embedded-linux-x64-1.56.1" = { name = "sass-embedded-linux-x64"; packageName = "sass-embedded-linux-x64"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.55.0.tgz"; - sha512 = "vd4/4/L7gZcVyxq03/MY/+rcpGgOI0ihOUpwRJLj+9CmUxvhxCSTF51/QO5CW7Z5oJSYEABA/RYlj8NPm4ZejA=="; + url = "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.56.1.tgz"; + sha512 = "yMXS37lP3abTI5ThuydOrLacSNz4Oo9+xlfQDR0pntrugdKzH7vHWK7T7Ynd+vGjVqFajUhI+VihP7vZlhhndw=="; }; }; - "sass-embedded-win32-ia32-1.55.0" = { + "sass-embedded-win32-ia32-1.56.1" = { name = "sass-embedded-win32-ia32"; packageName = "sass-embedded-win32-ia32"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.55.0.tgz"; - sha512 = "4HxK0byJ3iIn5OECIeNVz9GcGBuQcQT6kTvI+3QSHzuKsqgQrlXOPJ3772zKD6PVwZJNFZJFf3o9w8V2VSHbTQ=="; + url = "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.56.1.tgz"; + sha512 = "cjtuKc1O0F+yQZ8hLLYhalulEkBZ6HPdR/ys0l6hn7KTlrYooMyvZXbdU5KaB2lfK1WD29I0HefT8Em7d9cpfA=="; }; }; - "sass-embedded-win32-x64-1.55.0" = { + "sass-embedded-win32-x64-1.56.1" = { name = "sass-embedded-win32-x64"; packageName = "sass-embedded-win32-x64"; - version = "1.55.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.55.0.tgz"; - sha512 = "LWUp5YpJy0/Q+5AOVcw919jktw+OnPiM4f4j5K6MJAiaodJwrSTqRGwMa2wOWyAUpjIdka8Ygm6j+2h5HNgSNQ=="; + url = "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.56.1.tgz"; + sha512 = "VxqwSluQdNBdBEx0p6N2dOrGPIEL3AcG62KuDJ4KD/rHPQgoCPiJvLa5MXKdVHC24tHgE2AYlirILS/iE/N1NQ=="; }; }; "sass-formatter-0.7.5" = { @@ -66839,13 +66677,13 @@ let sha512 = "kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw=="; }; }; - "sass-loader-13.1.0" = { + "sass-loader-13.2.0" = { name = "sass-loader"; packageName = "sass-loader"; - version = "13.1.0"; + version = "13.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/sass-loader/-/sass-loader-13.1.0.tgz"; - sha512 = "tZS1RJQ2n2+QNyf3CCAo1H562WjL/5AM6Gi8YcPVVoNxQX8d19mx8E+8fRrMWsyc93ZL6Q8vZDSM0FHVTJaVnQ=="; + url = "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.0.tgz"; + sha512 = "JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg=="; }; }; "sax-0.5.8" = { @@ -67028,15 +66866,6 @@ let sha512 = "raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw=="; }; }; - "sdp-2.12.0" = { - name = "sdp"; - packageName = "sdp"; - version = "2.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sdp/-/sdp-2.12.0.tgz"; - sha512 = "jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw=="; - }; - }; "secp256k1-4.0.3" = { name = "secp256k1"; packageName = "secp256k1"; @@ -67469,15 +67298,6 @@ let sha512 = "qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg=="; }; }; - "sentence-case-3.0.4" = { - name = "sentence-case"; - packageName = "sentence-case"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz"; - sha512 = "8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg=="; - }; - }; "sentence-splitter-3.2.2" = { name = "sentence-splitter"; packageName = "sentence-splitter"; @@ -67568,13 +67388,13 @@ let sha512 = "owllqNuDDEimQat7EPG0tH7JjO090xKNzUtYz6X+Sk2BXDnOCilDdNLwjWeFywG9xkJul1ULvtUQa9O4pUaY0w=="; }; }; - "serialport-10.4.0" = { + "serialport-10.5.0" = { name = "serialport"; packageName = "serialport"; - version = "10.4.0"; + version = "10.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/serialport/-/serialport-10.4.0.tgz"; - sha512 = "PszPM5SnFMgSXom60PkKS2A9nMlNbHkuoyRBlzdSWw9rmgOn258+V0dYbWMrETJMM+TJV32vqBzjg5MmmUMwMw=="; + url = "https://registry.npmjs.org/serialport/-/serialport-10.5.0.tgz"; + sha512 = "7OYLDsu5i6bbv3lU81pGy076xe0JwpK6b49G6RjNvGibstUqQkI+I3/X491yBGtf4gaqUdOgoU1/5KZ/XxL4dw=="; }; }; "serve-11.3.2" = { @@ -67604,6 +67424,15 @@ let sha512 = "FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w=="; }; }; + "serve-handler-6.1.5" = { + name = "serve-handler"; + packageName = "serve-handler"; + version = "6.1.5"; + src = fetchurl { + url = "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.5.tgz"; + sha512 = "ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg=="; + }; + }; "serve-index-1.9.1" = { name = "serve-index"; packageName = "serve-index"; @@ -68189,13 +68018,13 @@ let sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A=="; }; }; - "simple-git-3.14.1" = { + "simple-git-3.15.1" = { name = "simple-git"; packageName = "simple-git"; - version = "3.14.1"; + version = "3.15.1"; src = fetchurl { - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.1.tgz"; - sha512 = "1ThF4PamK9wBORVGMK9HK5si4zoGS2GpRO7tkAFObA4FZv6dKaCVHLQT+8zlgiBm6K2h+wEU9yOaFCu/SR3OyA=="; + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.15.1.tgz"; + sha512 = "73MVa5984t/JP4JcQt0oZlKGr42ROYWC3BcUZfuHtT3IHKPspIvL0cZBnvPXF7LL3S/qVeVHVdYYmJ3LOTw4Rg=="; }; }; "simple-markdown-0.4.4" = { @@ -68270,13 +68099,13 @@ let sha512 = "HWN6oNyfvMWrwCW6CiVW5k1LUyl8neiim4Tx7v5FjvGEZM3rZpoKy3xEywrdEGvVlSzHQsaINp18eP7A7YYRiA=="; }; }; - "simple-update-notifier-1.0.7" = { + "simple-update-notifier-1.1.0" = { name = "simple-update-notifier"; packageName = "simple-update-notifier"; - version = "1.0.7"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz"; - sha512 = "BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew=="; + url = "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz"; + sha512 = "VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg=="; }; }; "simple-websocket-4.3.1" = { @@ -68405,6 +68234,15 @@ let sha512 = "3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="; }; }; + "slash-5.0.0" = { + name = "slash"; + packageName = "slash"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/slash/-/slash-5.0.0.tgz"; + sha512 = "n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ=="; + }; + }; "slasp-0.0.4" = { name = "slasp"; packageName = "slasp"; @@ -68693,13 +68531,13 @@ let sha512 = "s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg=="; }; }; - "socket.io-4.5.3" = { + "socket.io-4.5.4" = { name = "socket.io"; packageName = "socket.io"; - version = "4.5.3"; + version = "4.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz"; - sha512 = "zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz"; + sha512 = "m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ=="; }; }; "socket.io-adapter-0.2.0" = { @@ -68774,13 +68612,13 @@ let sha512 = "2B9LqSunN60yV8F7S84CCEEcgbYNfrn7ejIInZtLZ7ppWtiX8rGZAjvdCvbnC8bqo/9RlCNOUsORLyskxSFP1g=="; }; }; - "socket.io-client-4.5.3" = { + "socket.io-client-4.5.4" = { name = "socket.io-client"; packageName = "socket.io-client"; - version = "4.5.3"; + version = "4.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.3.tgz"; - sha512 = "I/hqDYpQ6JKwtJOf5ikM+Qz+YujZPMEl6qBLhxiP0nX+TfXKhW4KZZG8lamrD6Y5ngjmYHreESVasVCgi5Kl3A=="; + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz"; + sha512 = "ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g=="; }; }; "socket.io-parser-2.1.2" = { @@ -68801,22 +68639,22 @@ let sha512 = "uW3UiLVibAyleKq8r/yZe1oPO51olhY18T6HtnN0iI6RLqJfYC0YiyAFlsPw1+8I0Z1qFd8jFLTRZo2vr6ISxA=="; }; }; - "socket.io-parser-3.3.2" = { + "socket.io-parser-3.3.3" = { name = "socket.io-parser"; packageName = "socket.io-parser"; - version = "3.3.2"; + version = "3.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.2.tgz"; - sha512 = "FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg=="; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.3.tgz"; + sha512 = "qOg87q1PMWWTeO01768Yh9ogn7chB9zkKtQnya41Y355S0UmpXgpcrFwAgjYJxu9BdKug5r5e9YtVSeWhKBUZg=="; }; }; - "socket.io-parser-3.4.1" = { + "socket.io-parser-3.4.2" = { name = "socket.io-parser"; packageName = "socket.io-parser"; - version = "3.4.1"; + version = "3.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.4.1.tgz"; - sha512 = "11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A=="; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.4.2.tgz"; + sha512 = "QFZBaZDNqZXeemwejc7D39jrq2eGK/qZuVDiMPKzZK1hLlNvjGilGt4ckfQZeVX4dGmuPzCytN9ZW1nQlEWjgA=="; }; }; "socket.io-parser-4.0.5" = { @@ -69098,13 +68936,13 @@ let sha512 = "GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw=="; }; }; - "sort-on-3.0.0" = { + "sort-on-4.1.1" = { name = "sort-on"; packageName = "sort-on"; - version = "3.0.0"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/sort-on/-/sort-on-3.0.0.tgz"; - sha512 = "e2RHeY1iM6dT9od3RoqeJSyz3O7naNFsGy34+EFEcwghjAncuOXC2/Xwq87S4FbypqLVp6PcizYEsGEGsGIDXA=="; + url = "https://registry.npmjs.org/sort-on/-/sort-on-4.1.1.tgz"; + sha512 = "nj8myvTCEErLMMWnye61z1pV5osa7njoosoQNdylD8WyPYHoHCBQx/xn7mGJL6h4oThvGpYSIAxfm8VUr75qTQ=="; }; }; "sorted-array-functions-1.3.0" = { @@ -69278,13 +69116,13 @@ let sha512 = "q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA=="; }; }; - "space-separated-tokens-2.0.1" = { + "space-separated-tokens-2.0.2" = { name = "space-separated-tokens"; packageName = "space-separated-tokens"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz"; - sha512 = "ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw=="; + url = "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz"; + sha512 = "PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q=="; }; }; "spark-md5-1.0.1" = { @@ -69792,13 +69630,13 @@ let sha512 = "MM8wDGg5BQJEj94tDrZDrX9wrC439/Eoeg3sgmVLPMjHgrAFeXAKk3tmFlCbKw5k+yOEhPXRpPlRcisQmqWVSQ=="; }; }; - "srcset-5.0.0" = { + "srcset-4.0.0" = { name = "srcset"; packageName = "srcset"; - version = "5.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/srcset/-/srcset-5.0.0.tgz"; - sha512 = "SqEZaAEhe0A6ETEa9O1IhSPC7MdvehZtCnTR0AftXk3QhY2UNgb+NApFOUPZILXk/YTDfFxMTNJOBpzrJsEdIA=="; + url = "https://registry.npmjs.org/srcset/-/srcset-4.0.0.tgz"; + sha512 = "wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw=="; }; }; "srt2vtt-1.3.1" = { @@ -70377,13 +70215,13 @@ let sha512 = "KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg=="; }; }; - "stack-utils-2.0.5" = { + "stack-utils-2.0.6" = { name = "stack-utils"; packageName = "stack-utils"; - version = "2.0.5"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz"; - sha512 = "xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA=="; + url = "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz"; + sha512 = "XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ=="; }; }; "stackblur-canvas-2.5.0" = { @@ -70773,13 +70611,13 @@ let sha512 = "y+ChhCov2A5nDqC2aZ6HKXs3OvDlvAp0Ps3BF1P/Iv8tUZJQQsMVaSzk0WryVTVoGITKv01UYahCXMpAs7I0lQ=="; }; }; - "stream-json-1.7.4" = { + "stream-json-1.7.5" = { name = "stream-json"; packageName = "stream-json"; - version = "1.7.4"; + version = "1.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/stream-json/-/stream-json-1.7.4.tgz"; - sha512 = "ja2dde1v7dOlx5/vmavn8kLrxvNfs7r2oNc5DYmNJzayDDdudyCSuTB1gFjH4XBVTIwxiMxL4i059HX+ZiouXg=="; + url = "https://registry.npmjs.org/stream-json/-/stream-json-1.7.5.tgz"; + sha512 = "NSkoVduGakxZ8a+pTPUlcGEeAGQpWL9rKJhOFCV+J/QtdQUEU5vtBgVg6eJXn8JB8RZvpbJWZGvXkhz70MLWoA=="; }; }; "stream-meter-1.0.4" = { @@ -71061,15 +70899,6 @@ let sha512 = "MNCACnufWUf3pQ57O5WTBMkKhzYIaKEcUioO0XHrTMafrbBaNk4IyDOLHBv5xbXO0jLLdsYWeFjpjG2hVHRDtw=="; }; }; - "string-length-2.0.0" = { - name = "string-length"; - packageName = "string-length"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz"; - sha512 = "Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ=="; - }; - }; "string-length-3.1.0" = { name = "string-length"; packageName = "string-length"; @@ -71079,6 +70908,15 @@ let sha512 = "Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA=="; }; }; + "string-length-4.0.2" = { + name = "string-length"; + packageName = "string-length"; + version = "4.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz"; + sha512 = "+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="; + }; + }; "string-natural-compare-2.0.3" = { name = "string-natural-compare"; packageName = "string-natural-compare"; @@ -71169,13 +71007,13 @@ let sha512 = "HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="; }; }; - "string.prototype.matchall-4.0.7" = { + "string.prototype.matchall-4.0.8" = { name = "string.prototype.matchall"; packageName = "string.prototype.matchall"; - version = "4.0.7"; + version = "4.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz"; - sha512 = "f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg=="; + url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz"; + sha512 = "6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg=="; }; }; "string.prototype.repeat-0.2.0" = { @@ -71187,31 +71025,31 @@ let sha512 = "1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA=="; }; }; - "string.prototype.trim-1.2.6" = { + "string.prototype.trim-1.2.7" = { name = "string.prototype.trim"; packageName = "string.prototype.trim"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.6.tgz"; - sha512 = "8lMR2m+U0VJTPp6JjvJTtGyc4FIGq9CdRt7O9p6T0e6K4vjU+OP+SQJpbe/SBmRcCUIvNUnjsbmY6lnMp8MhsQ=="; + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz"; + sha512 = "p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg=="; }; }; - "string.prototype.trimend-1.0.5" = { + "string.prototype.trimend-1.0.6" = { name = "string.prototype.trimend"; packageName = "string.prototype.trimend"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"; - sha512 = "I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="; + url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"; + sha512 = "JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ=="; }; }; - "string.prototype.trimstart-1.0.5" = { + "string.prototype.trimstart-1.0.6" = { name = "string.prototype.trimstart"; packageName = "string.prototype.trimstart"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"; - sha512 = "THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="; + url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"; + sha512 = "omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA=="; }; }; "string2compact-1.3.2" = { @@ -71889,13 +71727,13 @@ let sha512 = "dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw=="; }; }; - "sucrase-3.28.0" = { + "sucrase-3.29.0" = { name = "sucrase"; packageName = "sucrase"; - version = "3.28.0"; + version = "3.29.0"; src = fetchurl { - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.28.0.tgz"; - sha512 = "TK9600YInjuiIhVM3729rH4ZKPOsGeyXUwY+Ugu9eilNbdTFyHr6XcAGYbRVZPDgWj6tgI7bx95aaJjHnbffag=="; + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.29.0.tgz"; + sha512 = "bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A=="; }; }; "sudo-block-1.2.0" = { @@ -72159,13 +71997,13 @@ let sha512 = "ay4MPFjfiQzDsyTidljJLXQi22l2AwjcuamYnJWj/LdhaHdKmDJxRox52WXimdcLpMuLDtkQvv4+jEu+wu9eSw=="; }; }; - "svelte-3.52.0" = { + "svelte-3.53.1" = { name = "svelte"; packageName = "svelte"; - version = "3.52.0"; + version = "3.53.1"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-3.52.0.tgz"; - sha512 = "FxcnEUOAVfr10vDU5dVgJN19IvqeHQCS1zfe8vayTfis9A2t5Fhx+JDe5uv/C3j//bB1umpLJ6quhgs9xyUbCQ=="; + url = "https://registry.npmjs.org/svelte/-/svelte-3.53.1.tgz"; + sha512 = "Q4/hHkktZogGhN5iqxqSi9sjEVoe/NbIxX4hXEHoasTxj+TxEQVAq66LnDMdAZxjmsodkoI5F3slqsS68U7FNw=="; }; }; "svelte-preprocess-4.10.7" = { @@ -72177,13 +72015,13 @@ let sha512 = "sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw=="; }; }; - "svelte2tsx-0.5.20" = { + "svelte2tsx-0.5.21" = { name = "svelte2tsx"; packageName = "svelte2tsx"; - version = "0.5.20"; + version = "0.5.21"; src = fetchurl { - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.20.tgz"; - sha512 = "yNHmN/uoAnJ7d1XqVohiNA6TMFOxibHyEddUAHVt1PiLXtbwAJF3WaGYlg8QbOdoXzOVsVNCAlqRUIdULUm+OA=="; + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.21.tgz"; + sha512 = "ntc5K1q5TdIu4c/d4j9FaRYhpIcE6m61Tjkj+XbUcy3io6Hx1ex99x4EfjV5tSMCo7dqf5L4eurjH0AvWWsXFA=="; }; }; "sver-compat-1.5.0" = { @@ -72348,13 +72186,13 @@ let sha512 = "8z18eX8G/jbTXYzyNIaobrnD7PSN7yU/YkSasMmajrXtw0FGS64XjrKn5v37d36qmU3o1xLeuYnktshRr7uIFw=="; }; }; - "swagger-ui-dist-4.15.2" = { + "swagger-ui-dist-4.15.5" = { name = "swagger-ui-dist"; packageName = "swagger-ui-dist"; - version = "4.15.2"; + version = "4.15.5"; src = fetchurl { - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.15.2.tgz"; - sha512 = "sanLAioshpa+Q0PpPxD86uo4labSqeIxtjLoC7xoce3HTnECPoQwY7PUVOiGMZ4dnEnROZPLUTloCEM86jZc1Q=="; + url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.15.5.tgz"; + sha512 = "V3eIa28lwB6gg7/wfNvAbjwJYmDXy1Jo1POjyTzlB6wPcHiGlRxq39TSjYGVjQrUSAzpv+a7nzp7mDxgNy57xA=="; }; }; "swagger2openapi-7.0.8" = { @@ -72474,6 +72312,15 @@ let sha512 = "dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g=="; }; }; + "synckit-0.7.3" = { + name = "synckit"; + packageName = "synckit"; + version = "0.7.3"; + src = fetchurl { + url = "https://registry.npmjs.org/synckit/-/synckit-0.7.3.tgz"; + sha512 = "jNroMv7Juy+mJ/CHW5H6TzsLWpa1qck6sCHbkv8YTur+irSq2PjbvmGnm2gy14BUQ6jF33vyR4DPssHqmqsDQw=="; + }; + }; "synckit-0.8.4" = { name = "synckit"; packageName = "synckit"; @@ -72492,13 +72339,13 @@ let sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; }; }; - "systeminformation-5.12.13" = { + "systeminformation-5.16.1" = { name = "systeminformation"; packageName = "systeminformation"; - version = "5.12.13"; + version = "5.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.12.13.tgz"; - sha512 = "2z1Ul+PDkO50yGmEGKWOPk3+TeAtTkbn6PmxqzH9D3BAN53QXgbYy6+PPJmBrszXy+X7g8uwZd1WdThKZtICcg=="; + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.16.1.tgz"; + sha512 = "n2YQycKZar7ijkkZz10Pnn5mdt3kep2HlGplvQj5d7BFiT9bw7EH/Zeaa8qFS1l93aohp6fistGkcFYgw+6v1g=="; }; }; "sywac-1.3.0" = { @@ -72546,15 +72393,6 @@ let sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; }; }; - "table-6.8.0" = { - name = "table"; - packageName = "table"; - version = "6.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/table/-/table-6.8.0.tgz"; - sha512 = "s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA=="; - }; - }; "table-6.8.1" = { name = "table"; packageName = "table"; @@ -72628,13 +72466,13 @@ let sha512 = "PX8klSxW1u3SdgDrDeewh5GNE+hkJ4h02JvHfV6YrHqWOVJ88nUdSQqtsUf/gWhgZlPAws3fiZ+F1f8euspcuQ=="; }; }; - "tailwindcss-3.2.2" = { + "tailwindcss-3.2.4" = { name = "tailwindcss"; packageName = "tailwindcss"; - version = "3.2.2"; + version = "3.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.2.tgz"; - sha512 = "c2GtSdqg+harR4QeoTmex0Ngfg8IIHNeLQH5yr2B9uZbZR1Xt1rYbjWOWTcj3YLTZhrmZnPowoQDbSRFyZHQ5Q=="; + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz"; + sha512 = "AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ=="; }; }; "taketalk-1.0.0" = { @@ -72736,15 +72574,6 @@ let sha512 = "NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw=="; }; }; - "tar-fs-2.0.0" = { - name = "tar-fs"; - packageName = "tar-fs"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tar-fs/-/tar-fs-2.0.0.tgz"; - sha512 = "vaY0obB6Om/fso8a8vakQBzwholQ7v5+uy+tF3Ozvxv1KNezmVQAiWtcNmMHFSFPqL3dJA8ha6gdtFbfX9mcxA=="; - }; - }; "tar-fs-2.1.1" = { name = "tar-fs"; packageName = "tar-fs"; @@ -72844,13 +72673,13 @@ let sha512 = "+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA=="; }; }; - "tedious-15.1.1" = { + "tedious-15.1.2" = { name = "tedious"; packageName = "tedious"; - version = "15.1.1"; + version = "15.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/tedious/-/tedious-15.1.1.tgz"; - sha512 = "GPnitBfhB7WMVMGuu/FipfOKDL0+r1VKyoTKQeHO/BFDFERkhaqFrcK5705da1Ze2gAvIpd/ep2y4xrvfoXXbw=="; + url = "https://registry.npmjs.org/tedious/-/tedious-15.1.2.tgz"; + sha512 = "94slmnggCX8zG6iLNnM3k6PplTguP0p7R2RWOKTXdPmK1VmTpWk4+e0J4koIMXm1jjG7sGlZ1/JlaGVAdF1OOg=="; }; }; "telegraf-3.40.0" = { @@ -73051,13 +72880,13 @@ let sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; }; }; - "terser-5.15.1" = { + "terser-5.16.1" = { name = "terser"; packageName = "terser"; - version = "5.15.1"; + version = "5.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz"; - sha512 = "K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw=="; + url = "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz"; + sha512 = "xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw=="; }; }; "terser-webpack-plugin-1.4.5" = { @@ -73168,13 +72997,13 @@ let sha512 = "MeqZRHLuaGamUXGuVn2ivtU3LA3mLCCIO5kUGoohTCoGmCBg/+8yPhWVX9WSl9telvVd8erftjFk9Fwb2dD6rw=="; }; }; - "textlint-12.2.2" = { + "textlint-12.2.4" = { name = "textlint"; packageName = "textlint"; - version = "12.2.2"; + version = "12.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-12.2.2.tgz"; - sha512 = "+xORGVnAceaP3+77vGuALOtnNNtexh8VK9ssAK2r3vAr0iMApSMyvGaXousbsfLiwK5L/X0X/78yJDvXwGQPjA=="; + url = "https://registry.npmjs.org/textlint/-/textlint-12.2.4.tgz"; + sha512 = "IlBJL4bR9RuqYV+YkQQvOznhmfClGGkuOyxiUaQ4qUj2IaJu2/rXei71x3JAIJF4SLEK7SbMoLVqXIerqIbhGA=="; }; }; "textlint-rule-helper-1.2.0" = { @@ -73195,13 +73024,13 @@ let sha512 = "H499NRHVurHTFXTL+w/FI+aX6YgZD1TAFuR6kHqYDQ2ArGwkCbnRu+so+deweTFEUI4etP7EVMsrLwXP1e2Q+w=="; }; }; - "textlint-tester-12.2.2" = { + "textlint-tester-12.2.4" = { name = "textlint-tester"; packageName = "textlint-tester"; - version = "12.2.2"; + version = "12.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-tester/-/textlint-tester-12.2.2.tgz"; - sha512 = "Y6t4MuoaDXx0chSpKJCbkKQWIjxFZw93gx4LG0bMCBWbkEVuaBADhXuEEzrT9Izd3kY4Nl9ihaBOnFP8LTBBjA=="; + url = "https://registry.npmjs.org/textlint-tester/-/textlint-tester-12.2.4.tgz"; + sha512 = "/H6QLnFF3IDpz3rIYZXtyRLrRoGrPh2RPPik//ErZJbgCCfOrQeTqOXDoS4r91cJY3aMkPdZgGGX1OhuIrK5+A=="; }; }; "textlint-util-to-string-3.1.1" = { @@ -73672,13 +73501,13 @@ let sha512 = "ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA=="; }; }; - "titleize-1.0.1" = { + "titleize-2.1.0" = { name = "titleize"; packageName = "titleize"; - version = "1.0.1"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/titleize/-/titleize-1.0.1.tgz"; - sha512 = "rUwGDruKq1gX+FFHbTl5qjI7teVO7eOe+C8IcQ7QT+1BK3eEUXJqbZcBOeaRP4FwSC/C1A5jDoIVta0nIQ9yew=="; + url = "https://registry.npmjs.org/titleize/-/titleize-2.1.0.tgz"; + sha512 = "m+apkYlfiQTKLW+sI4vqUkwMEzfgEUEYSqljx1voUE3Wz/z1ZsxyzSxvH2X8uKVrOp7QkByWt0rA6+gvhCKy6g=="; }; }; "tkwidgets-0.5.27" = { @@ -73690,15 +73519,6 @@ let sha512 = "748OLoNS77xzyVNDst906EhIX/rRVb8IVM5Cb7hkO5nyrnngx70vHtmeWVUy+e3lz3I0CgRzYSUJIt7bDQ6PAQ=="; }; }; - "tldjs-2.3.1" = { - name = "tldjs"; - packageName = "tldjs"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/tldjs/-/tldjs-2.3.1.tgz"; - sha512 = "W/YVH/QczLUxVjnQhFC61Iq232NWu3TqDdO0S/MtXVz4xybejBov4ud+CIwN9aYqjOecEqIy0PscGkwpG9ZyTw=="; - }; - }; "tlds-1.203.1" = { name = "tlds"; packageName = "tlds"; @@ -73726,6 +73546,24 @@ let sha512 = "Q0TU9zh5hDs2CpRFNM7SOW3K7OSgUgJC/cMrq9t44ei4tu+G3KV8BZyIJuYVvryJHH96mKgc9WXdhgKVvGD7jg=="; }; }; + "tldts-5.7.102" = { + name = "tldts"; + packageName = "tldts"; + version = "5.7.102"; + src = fetchurl { + url = "https://registry.npmjs.org/tldts/-/tldts-5.7.102.tgz"; + sha512 = "FvqzkTsADAntBc4EPmcmIs4GkjBBtDKZKHJJU6i1TzL9d+ijBearWEgGNoE8YO9T8pEe+szYE+KFMmh6ixexYA=="; + }; + }; + "tldts-core-5.7.102" = { + name = "tldts-core"; + packageName = "tldts-core"; + version = "5.7.102"; + src = fetchurl { + url = "https://registry.npmjs.org/tldts-core/-/tldts-core-5.7.102.tgz"; + sha512 = "EFhrqqb0abo/9KZ4ZxHSF4e8CYKk/SouOLbNUMZUw+5OjC0hUJbFmHXtHNWYGaqnmwjnvdwFQ1a29Tflpz5Ufg=="; + }; + }; "tmp-0.0.29" = { name = "tmp"; packageName = "tmp"; @@ -74446,6 +74284,15 @@ let sha512 = "m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew=="; }; }; + "true-case-path-2.2.1" = { + name = "true-case-path"; + packageName = "true-case-path"; + version = "2.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz"; + sha512 = "0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q=="; + }; + }; "truncate-2.1.0" = { name = "truncate"; packageName = "truncate"; @@ -74518,13 +74365,13 @@ let sha512 = "QMTC4UFzHmu9wU2VHZEmWWE9cUajjfcdcws+Gh7FhiO+Dy0RnR1bNz0YCHqhI0yRowCE9arVnNxYHqELOy9Hjw=="; }; }; - "ts-loader-9.4.1" = { + "ts-loader-9.4.2" = { name = "ts-loader"; packageName = "ts-loader"; - version = "9.4.1"; + version = "9.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.1.tgz"; - sha512 = "384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw=="; + url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.2.tgz"; + sha512 = "OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA=="; }; }; "ts-log-2.2.5" = { @@ -75148,6 +74995,15 @@ let sha512 = "Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og=="; }; }; + "type-fest-3.3.0" = { + name = "type-fest"; + packageName = "type-fest"; + version = "3.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/type-fest/-/type-fest-3.3.0.tgz"; + sha512 = "gezeeOIZyQLGW5uuCeEnXF1aXmtt2afKspXz3YqoOcZ3l/YMJq1pujvgT+cz/Nw1O/7q/kSav5fihJHsC/AOUg=="; + }; + }; "type-is-1.6.18" = { name = "type-is"; packageName = "type-is"; @@ -75166,15 +75022,6 @@ let sha512 = "uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g=="; }; }; - "typed-styles-0.0.7" = { - name = "typed-styles"; - packageName = "typed-styles"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz"; - sha512 = "pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q=="; - }; - }; "typedarray-0.0.6" = { name = "typedarray"; packageName = "typedarray"; @@ -75328,6 +75175,15 @@ let sha512 = "QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="; }; }; + "typescript-4.9.3" = { + name = "typescript"; + packageName = "typescript"; + version = "4.9.3"; + src = fetchurl { + url = "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz"; + sha512 = "CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA=="; + }; + }; "typescript-eslint-parser-16.0.1" = { name = "typescript-eslint-parser"; packageName = "typescript-eslint-parser"; @@ -75652,15 +75508,6 @@ let sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; }; }; - "unbzip2-stream-1.3.3" = { - name = "unbzip2-stream"; - packageName = "unbzip2-stream"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.3.3.tgz"; - sha512 = "fUlAF7U9Ah1Q6EieQ4x4zLNejrRvDWUYmxXUpN3uziFYCHapjWFaCAnreY9bGgxzaMCFAPPpYNng57CypwJVhg=="; - }; - }; "unbzip2-stream-1.4.3" = { name = "unbzip2-stream"; packageName = "unbzip2-stream"; @@ -75796,13 +75643,13 @@ let sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw=="; }; }; - "undici-5.12.0" = { + "undici-5.13.0" = { name = "undici"; packageName = "undici"; - version = "5.12.0"; + version = "5.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/undici/-/undici-5.12.0.tgz"; - sha512 = "zMLamCG62PGjd9HHMpo05bSLvvwWOZgGeiWlN/vlqu3+lRo3elxktVGEyLMX+IO7c2eflLjcW74AlkhEZm15mg=="; + url = "https://registry.npmjs.org/undici/-/undici-5.13.0.tgz"; + sha512 = "UDZKtwb2k7KRsK4SdXWG7ErXiL7yTGgLWvk2AXO1JMjgjh404nFo6tWSCM2xMpJwMPx3J8i/vfqEh1zOqvj82Q=="; }; }; "undici-5.9.1" = { @@ -75832,13 +75679,13 @@ let sha512 = "Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ=="; }; }; - "unherit-3.0.0" = { + "unherit-3.0.1" = { name = "unherit"; packageName = "unherit"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/unherit/-/unherit-3.0.0.tgz"; - sha512 = "UmvIQZGEc9qdLIQ8mv8/61n6PiMgfbOoASPKHpCvII5srShCQSa6jSjBjlZOR4bxt2XnT6uo6csmPKRi+zQ0Jg=="; + url = "https://registry.npmjs.org/unherit/-/unherit-3.0.1.tgz"; + sha512 = "akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg=="; }; }; "uni-global-1.0.0" = { @@ -75877,13 +75724,13 @@ let sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; }; }; - "unicode-match-property-value-ecmascript-2.0.0" = { + "unicode-match-property-value-ecmascript-2.1.0" = { name = "unicode-match-property-value-ecmascript"; packageName = "unicode-match-property-value-ecmascript"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; - sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; + url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz"; + sha512 = "qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA=="; }; }; "unicode-property-aliases-ecmascript-2.1.0" = { @@ -75967,13 +75814,13 @@ let sha512 = "qiI0GaHi/50NVrChnmZOBeB0aNhHRMG6VnjKEAikaQD/I3gxjTsDp8gycCOUxyVCJrV/Rv3y6zEWMZczO+o3Lw=="; }; }; - "unified-engine-10.0.1" = { + "unified-engine-10.1.0" = { name = "unified-engine"; packageName = "unified-engine"; - version = "10.0.1"; + version = "10.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/unified-engine/-/unified-engine-10.0.1.tgz"; - sha512 = "lsj7VC8kNWhK87rGBhidklk4llgrEdJoOZHoQFbTZQ/fA22JqowUPM10bEf05eSZOR6UnUSrZ/mPWHrQsHGm7g=="; + url = "https://registry.npmjs.org/unified-engine/-/unified-engine-10.1.0.tgz"; + sha512 = "5+JDIs4hqKfHnJcVCxTid1yBoI/++FfF/1PFdSMpaftZZZY+qg2JFruRbf7PaIwa9KgLotXQV3gSjtY0IdcFGQ=="; }; }; "unified-engine-6.0.1" = { @@ -76300,6 +76147,15 @@ let sha512 = "HGrj7JQo9DwZt8XFsX8UD4gGqOsIlCih9opG6Y+N11XqkBGKzHo8cvDi+MfQQgiZ7zXRUiQREYHhjOBHERTMdg=="; }; }; + "unist-util-modify-children-3.1.0" = { + name = "unist-util-modify-children"; + packageName = "unist-util-modify-children"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-3.1.0.tgz"; + sha512 = "L0UizdncPZ1NIwpmkwFdLo2NaK2Eb5LU/vaQ7lZGkAaOBZfsHp+8T/gVWPVmmMO1hj6gc+XeMoytut8jr7fdyA=="; + }; + }; "unist-util-position-3.1.0" = { name = "unist-util-position"; packageName = "unist-util-position"; @@ -76426,6 +76282,15 @@ let sha512 = "sA/nXwYRCQVRwZU2/tQWUqJ9JSFM1X3x7JIOsIgSzrFHcfVt6NkzDtKzyxg2cZWkCwGF9CO8x4QNZRJRMK8FeQ=="; }; }; + "unist-util-visit-children-2.0.1" = { + name = "unist-util-visit-children"; + packageName = "unist-util-visit-children"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-2.0.1.tgz"; + sha512 = "2cEU3dhV1hMfO9ajwb8rJsDedMfsahsm6fCfR8LxDR/w7KcB5lzHQ9dBTQIXsWGNWBFH5MPmaFP3Xh0dWLqClQ=="; + }; + }; "unist-util-visit-parents-2.1.2" = { name = "unist-util-visit-parents"; packageName = "unist-util-visit-parents"; @@ -76840,24 +76705,6 @@ let sha512 = "WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA=="; }; }; - "upper-case-2.0.2" = { - name = "upper-case"; - packageName = "upper-case"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz"; - sha512 = "KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg=="; - }; - }; - "upper-case-first-2.0.2" = { - name = "upper-case-first"; - packageName = "upper-case-first"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz"; - sha512 = "514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg=="; - }; - }; "uri-js-3.0.2" = { name = "uri-js"; packageName = "uri-js"; @@ -77074,15 +76921,6 @@ let sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; }; }; - "use-debounce-3.4.3" = { - name = "use-debounce"; - packageName = "use-debounce"; - version = "3.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/use-debounce/-/use-debounce-3.4.3.tgz"; - sha512 = "nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA=="; - }; - }; "user-home-2.0.0" = { name = "user-home"; packageName = "user-home"; @@ -77560,6 +77398,15 @@ let sha512 = "mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q=="; }; }; + "validate-npm-package-name-5.0.0" = { + name = "validate-npm-package-name"; + packageName = "validate-npm-package-name"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz"; + sha512 = "YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ=="; + }; + }; "validator-10.11.0" = { name = "validator"; packageName = "validator"; @@ -78073,13 +77920,13 @@ let sha512 = "O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA=="; }; }; - "vfile-5.3.5" = { + "vfile-5.3.6" = { name = "vfile"; packageName = "vfile"; - version = "5.3.5"; + version = "5.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/vfile/-/vfile-5.3.5.tgz"; - sha512 = "U1ho2ga33eZ8y8pkbQLH54uKqGhFJ6GYIHnnG5AhRpAh3OWjkrRHKa/KogbmQn8We+c0KVV3rTOgR9V/WowbXQ=="; + url = "https://registry.npmjs.org/vfile/-/vfile-5.3.6.tgz"; + sha512 = "ADBsmerdGBs2WYckrLBEmuETSPyTD4TuLxTrw0DvjirxW1ra4ZwkbzG8ndsv3Q57smvHxo677MHaQrY9yxH8cA=="; }; }; "vfile-find-down-1.0.0" = { @@ -78154,13 +78001,13 @@ let sha512 = "DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ=="; }; }; - "vfile-message-3.1.2" = { + "vfile-message-3.1.3" = { name = "vfile-message"; packageName = "vfile-message"; - version = "3.1.2"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.2.tgz"; - sha512 = "QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA=="; + url = "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.3.tgz"; + sha512 = "0yaU+rj2gKAyEk12ffdSbBfjnnj+b1zqTBv3OQCTn8yEB02bsPizwdBPrLJjHnK+cU9EMMcUnNv938XcZIkmdA=="; }; }; "vfile-reporter-1.5.0" = { @@ -78361,13 +78208,13 @@ let sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="; }; }; - "vm2-3.9.11" = { + "vm2-3.9.12" = { name = "vm2"; packageName = "vm2"; - version = "3.9.11"; + version = "3.9.12"; src = fetchurl { - url = "https://registry.npmjs.org/vm2/-/vm2-3.9.11.tgz"; - sha512 = "PFG8iJRSjvvBdisowQ7iVF580DXb1uCIiGaXgm7tynMR1uTBlv7UJlB1zdv5KJ+Tmq1f0Upnj3fayoEOPpCBKg=="; + url = "https://registry.npmjs.org/vm2/-/vm2-3.9.12.tgz"; + sha512 = "OMmRsKh1gmdosFzuqmj6O43hqIStqXA24YbwjtUTO0TkOBP8yLNHLplbr4odnAzEcMnm9lt2r3R8kTivn8urMg=="; }; }; "voc-1.2.0" = { @@ -78397,13 +78244,13 @@ let sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="; }; }; - "vsce-2.13.0" = { + "vsce-2.15.0" = { name = "vsce"; packageName = "vsce"; - version = "2.13.0"; + version = "2.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/vsce/-/vsce-2.13.0.tgz"; - sha512 = "t1otQ2lqyi5Y/G6qUl9BEc561nEIYrZbLT8k+R1SoZaKNa6gaehaLGQG5zvB524YPGZOVvbOBzAXoO7Mor1J5g=="; + url = "https://registry.npmjs.org/vsce/-/vsce-2.15.0.tgz"; + sha512 = "P8E9LAZvBCQnoGoizw65JfGvyMqNGlHdlUXD1VAuxtvYAaHBKLBdKPnpy60XKVDAkQCfmMu53g+gq9FM+ydepw=="; }; }; "vscode-css-languageservice-3.0.13" = { @@ -78442,13 +78289,13 @@ let sha512 = "DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg=="; }; }; - "vscode-css-languageservice-6.1.1" = { + "vscode-css-languageservice-6.2.1" = { name = "vscode-css-languageservice"; packageName = "vscode-css-languageservice"; - version = "6.1.1"; + version = "6.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.1.1.tgz"; - sha512 = "7d2NCq2plT0njAKmGZ11uof95y2fwbgq8QuToE3kX9uYQfVmejHX2/lFGKbK5AV5+Ja0L80UZoU0QspwqMKMHA=="; + url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.2.1.tgz"; + sha512 = "FMaMjB2LQdkHjTCP2CWh2S94xuGsxSc8xr0H9nAACVd/iUDyZLoKFjwoB+mA3v0rpCH2U5vVCVwxyULy61CgqA=="; }; }; "vscode-emmet-helper-1.2.17" = { @@ -78460,15 +78307,6 @@ let sha512 = "X4pzcrJ8dE7M3ArFuySF5fgipKDd/EauXkiJwtjBIVRWpVNq0tF9+lNCyuC7iDUwP3Oq7ow/TGssD3GdG96Jow=="; }; }; - "vscode-emmet-helper-2.6.4" = { - name = "vscode-emmet-helper"; - packageName = "vscode-emmet-helper"; - version = "2.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-emmet-helper/-/vscode-emmet-helper-2.6.4.tgz"; - sha512 = "fP0nunW1RUWEKGf4gqiYLOVNFFGXSRHjCl0pikxtwCFlty8WwimM+RBJ5o0aIiwerrYD30HqeaVyvDW027Sseg=="; - }; - }; "vscode-html-languageservice-2.1.12" = { name = "vscode-html-languageservice"; packageName = "vscode-html-languageservice"; @@ -78496,13 +78334,13 @@ let sha512 = "dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw=="; }; }; - "vscode-html-languageservice-5.0.2" = { + "vscode-html-languageservice-5.0.3" = { name = "vscode-html-languageservice"; packageName = "vscode-html-languageservice"; - version = "5.0.2"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.2.tgz"; - sha512 = "TQmeyE14Ure/w/S+RV2IItuRWmw/i1QaS+om6t70iHCpamuTTWnACQPMSltVGm/DlbdyMquUePJREjd/h3AVkQ=="; + url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.3.tgz"; + sha512 = "6rfrtcHhXDMXmC5pR2WXrx02HiNCzQDynOBMn+53zLxr2hvZrDzoc0QgC0FaFGfcglf7GeOsfhkWvJBFC/a70g=="; }; }; "vscode-json-languageservice-3.11.0" = { @@ -78532,13 +78370,13 @@ let sha512 = "xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA=="; }; }; - "vscode-json-languageservice-5.1.1" = { + "vscode-json-languageservice-5.1.3" = { name = "vscode-json-languageservice"; packageName = "vscode-json-languageservice"; - version = "5.1.1"; + version = "5.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.1.1.tgz"; - sha512 = "EtAcTD6MOfyf8+MokDsAHNM7ttuZvCo077w9aMtJiyps41gkOcoBThAbXDk6Y0Oi6ki5aDs8lgY4KxYiVW/lxA=="; + url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.1.3.tgz"; + sha512 = "p0O1Ql5+zyWFIBU4cSxnDcuq9OnbE0MmvNKDYYvz4EPsZ9EHBT3I6KJb5Gk3snkj+jQTFILEZ06cfY7WZxxqPw=="; }; }; "vscode-jsonrpc-3.5.0" = { @@ -78622,13 +78460,13 @@ let sha512 = "RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ=="; }; }; - "vscode-jsonrpc-8.1.0-next.1" = { + "vscode-jsonrpc-8.1.0-next.3" = { name = "vscode-jsonrpc"; packageName = "vscode-jsonrpc"; - version = "8.1.0-next.1"; + version = "8.1.0-next.3"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0-next.1.tgz"; - sha512 = "FiPG+9TuMIga3t+kkalQytwqMtJu1djI+Pq+Ut2tvAJpcNHDJ0PYdjFv5mgEvTEJLujrYwjWHVkNe+XfHPBD/w=="; + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0-next.3.tgz"; + sha512 = "4eDeAnkWFKFTmT7tUR2wDngNAuwGHvV7yPCzPWGudBWJOoXaPQnwmiQChoj+umH1y2NR+MdBtx49xlZA7FoLRQ=="; }; }; "vscode-languageclient-4.0.1" = { @@ -78739,13 +78577,13 @@ let sha512 = "bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA=="; }; }; - "vscode-languageserver-8.1.0-next.1" = { + "vscode-languageserver-8.1.0-next.2" = { name = "vscode-languageserver"; packageName = "vscode-languageserver"; - version = "8.1.0-next.1"; + version = "8.1.0-next.2"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0-next.1.tgz"; - sha512 = "u14Rk4JgXI+7iS6AEXI2pNc1dWh/5JEXtaqa4TeBECKJlN+5242mbGBBPaHMOE7sSI1Kh66XhEMZJhPYjUfjHw=="; + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0-next.2.tgz"; + sha512 = "natfwUx9lPXO3ki9NtRMPb7GcaKvEE7Sfvzaw3Gpa4GJr47FWYwX26YnWpasDBMAjg5ErpFihY1+j9Gh2W9VwA=="; }; }; "vscode-languageserver-protocol-3.14.1" = { @@ -78811,13 +78649,13 @@ let sha512 = "8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg=="; }; }; - "vscode-languageserver-protocol-3.17.3-next.1" = { + "vscode-languageserver-protocol-3.17.3-next.2" = { name = "vscode-languageserver-protocol"; packageName = "vscode-languageserver-protocol"; - version = "3.17.3-next.1"; + version = "3.17.3-next.2"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3-next.1.tgz"; - sha512 = "vgjvPE0zox+1Fi4ljsSFJ+B3g8wGNbuAEEdulueVdv+R2VHtc06+dgxhWiG4LKPqXwjPDmiuxCnvd2xk3fzTTw=="; + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3-next.2.tgz"; + sha512 = "T+vSRHgApc1xCsOUJ/M7UN/tN4aINvc3FYJ6P3vAhvv0i4jZZewFMEonZB76B94TiY6z4eScgaG6m73gTgnyyw=="; }; }; "vscode-languageserver-protocol-3.5.1" = { @@ -79063,13 +78901,13 @@ let sha512 = "x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ=="; }; }; - "vue-2.7.13" = { + "vue-2.7.14" = { name = "vue"; packageName = "vue"; - version = "2.7.13"; + version = "2.7.14"; src = fetchurl { - url = "https://registry.npmjs.org/vue/-/vue-2.7.13.tgz"; - sha512 = "QnM6ULTNnPmn71eUO+4hdjfBIA3H0GLsBnchnI/kS678tjI45GOUZhXd0oP/gX9isikXz1PAzSnkPspp9EUNfQ=="; + url = "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz"; + sha512 = "b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ=="; }; }; "vue-class-component-7.2.6" = { @@ -79171,13 +79009,13 @@ let sha512 = "n+YghR059YmciANGJh9SsNWRi1YZEBVlODtmnb/12zI+4R72QZSWd+EuZ5mW6auEo/yaJXgxzwsuhvALVnm73A=="; }; }; - "vue-loader-15.10.0" = { + "vue-loader-15.10.1" = { name = "vue-loader"; packageName = "vue-loader"; - version = "15.10.0"; + version = "15.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.0.tgz"; - sha512 = "VU6tuO8eKajrFeBzMssFUP9SvakEeeSi1BxdTH5o3+1yUyrldp8IERkSdXlMI2t4kxF2sqYUDsQY+WJBxzBmZg=="; + url = "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.1.tgz"; + sha512 = "SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA=="; }; }; "vue-loader-plugin-1.3.0" = { @@ -79261,13 +79099,13 @@ let sha512 = "ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g=="; }; }; - "vue-template-compiler-2.7.13" = { + "vue-template-compiler-2.7.14" = { name = "vue-template-compiler"; packageName = "vue-template-compiler"; - version = "2.7.13"; + version = "2.7.14"; src = fetchurl { - url = "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.13.tgz"; - sha512 = "jYM6TClwDS9YqP48gYrtAtaOhRKkbYmbzE+Q51gX5YDr777n7tNI/IZk4QV4l/PjQPNh/FVa/E92sh/RqKMrog=="; + url = "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz"; + sha512 = "zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ=="; }; }; "vue-template-es2015-compiler-1.9.1" = { @@ -79594,13 +79432,13 @@ let sha512 = "flC9JJmTII9uAeeYpWF8hxDJ7bfY+leldQryetll8Nv4WgI+MXc6h7TiyAZASWl9uC9TvmfdgOjZn1DAQecb3A=="; }; }; - "web3-utils-1.8.0" = { + "web3-utils-1.8.1" = { name = "web3-utils"; packageName = "web3-utils"; - version = "1.8.0"; + version = "1.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.8.0.tgz"; - sha512 = "7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ=="; + url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.8.1.tgz"; + sha512 = "LgnM9p6V7rHHUGfpMZod+NST8cRfGzJ1BTXAyNo7A9cJX9LczBfSRxJp+U/GInYe9mby40t3v22AJdlELibnsQ=="; }; }; "webassemblyjs-1.11.1" = { @@ -79720,6 +79558,15 @@ let sha512 = "A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA=="; }; }; + "webpack-5.75.0" = { + name = "webpack"; + packageName = "webpack"; + version = "5.75.0"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz"; + sha512 = "piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ=="; + }; + }; "webpack-bundle-analyzer-3.9.0" = { name = "webpack-bundle-analyzer"; packageName = "webpack-bundle-analyzer"; @@ -79756,6 +79603,15 @@ let sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w=="; }; }; + "webpack-cli-5.0.0" = { + name = "webpack-cli"; + packageName = "webpack-cli"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.0.0.tgz"; + sha512 = "AACDTo20yG+xn6HPW5xjbn2Be4KUzQPebWXsDMHwPPyKh9OnTOJgZN2Nc+g/FZKV3ObRTYsGvibAvc+5jAUrVA=="; + }; + }; "webpack-dev-middleware-3.4.0" = { name = "webpack-dev-middleware"; packageName = "webpack-dev-middleware"; @@ -79819,13 +79675,13 @@ let sha512 = "mrG3bJGX4jgWbrpY0ghIpPgCmNhZziFMBJBmZfpIe6K/P1rWPkdkbGihbCUIufgQ8ruX4txE5/CKSeFNzDcYOw=="; }; }; - "webpack-hot-middleware-2.25.2" = { + "webpack-hot-middleware-2.25.3" = { name = "webpack-hot-middleware"; packageName = "webpack-hot-middleware"; - version = "2.25.2"; + version = "2.25.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.2.tgz"; - sha512 = "CVgm3NAQyfdIonRvXisRwPTUYuSbyZ6BY7782tMeUzWOO7RmVI2NaBYuCp41qyD4gYCkJyTneAJdK69A13B0+A=="; + url = "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz"; + sha512 = "IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA=="; }; }; "webpack-log-2.0.0" = { @@ -79945,15 +79801,6 @@ let sha512 = "UlTm7Yz4meJV0THhZMrgRTE9v/vZ0xfUoJ/eOig98TvzsqNiW+FLSv5WaZeML3uJUPrMQ6K5jo1FJJFXNCc8+g=="; }; }; - "webrtc-adapter-6.4.8" = { - name = "webrtc-adapter"; - packageName = "webrtc-adapter"; - version = "6.4.8"; - src = fetchurl { - url = "https://registry.npmjs.org/webrtc-adapter/-/webrtc-adapter-6.4.8.tgz"; - sha512 = "YM8yl545c/JhYcjGHgaCoA7jRK/KZuMwEDFeP2AcP0Auv5awEd+gZE0hXy9z7Ed3p9HvAXp8jdbe+4ESb1zxAw=="; - }; - }; "websocket-driver-0.6.5" = { name = "websocket-driver"; packageName = "websocket-driver"; @@ -79990,13 +79837,13 @@ let sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw=="; }; }; - "webtorrent-1.9.1" = { + "webtorrent-1.9.6" = { name = "webtorrent"; packageName = "webtorrent"; - version = "1.9.1"; + version = "1.9.6"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.9.1.tgz"; - sha512 = "lFVMY1+GmTJlPAzEuWqQKP3/83c4bGFuJGPjI0lFRgYvUeQqxHv2Qwriz1SOK96MKuhMPKS9y4kf1CddZzoBjQ=="; + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.9.6.tgz"; + sha512 = "fJtVlqeg7s4G3MHppdONfHfspvdfJPTEgSUnc4W+i0tCtl1hyWHSdodC2T4VtNNE00Rdy60dLji3Ai0Y/FXvow=="; }; }; "webworkify-webpack-2.1.5" = { @@ -80152,6 +79999,15 @@ let sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; }; }; + "which-3.0.0" = { + name = "which"; + packageName = "which"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/which/-/which-3.0.0.tgz"; + sha512 = "nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ=="; + }; + }; "which-boxed-primitive-1.0.2" = { name = "which-boxed-primitive"; packageName = "which-boxed-primitive"; @@ -80458,6 +80314,15 @@ let sha512 = "J5Zu4p0tojLde8mIOyDSsmLmcP8I3Z6wtwpTDHx1+hGcdhxcJaAmG4CFtagkb+NiN1M9Ek4b42pzMWqfc9jm8w=="; }; }; + "winston-2.4.7" = { + name = "winston"; + packageName = "winston"; + version = "2.4.7"; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz"; + sha512 = "vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg=="; + }; + }; "winston-3.3.3" = { name = "winston"; packageName = "winston"; @@ -80539,13 +80404,13 @@ let sha512 = "U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg=="; }; }; - "wonka-6.1.1" = { + "wonka-6.1.2" = { name = "wonka"; packageName = "wonka"; - version = "6.1.1"; + version = "6.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/wonka/-/wonka-6.1.1.tgz"; - sha512 = "shBtyZ0KFvUadtnDGlTRA4mF4pgcRoyZKikdputKhmShoXWcZDvlg6CUw6Jx9nTL7Ub8QUJoIarPpxdlosg9cw=="; + url = "https://registry.npmjs.org/wonka/-/wonka-6.1.2.tgz"; + sha512 = "zNrXPMccg/7OEp9tSfFkMgTvhhowqasiSHdJ3eCZolXxVTV/aT6HUTofoZk9gwRbGoFey/Nss3JaZKUMKMbofg=="; }; }; "word-wrap-1.2.3" = { @@ -80629,13 +80494,13 @@ let sha512 = "ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw=="; }; }; - "workerpool-6.3.0" = { + "workerpool-6.3.1" = { name = "workerpool"; packageName = "workerpool"; - version = "6.3.0"; + version = "6.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.3.0.tgz"; - sha512 = "2rVusseHGwxEEESx/szO2SHfi982WQavL2YlWGHsZE2ynZ4gaHT7kmCXph9k9fUivKOwx7PBn6vn4nXUxxdKcw=="; + url = "https://registry.npmjs.org/workerpool/-/workerpool-6.3.1.tgz"; + sha512 = "0x7gJm1rhpn5SPG9NENOxPtbfUZZtK/qOg6gEdSqeDBA3dTeR91RJqSPjccPRCkhNfrnnl/dWxSSj5w9CtdzNA=="; }; }; "wrap-ansi-2.1.0" = { @@ -80980,15 +80845,6 @@ let sha512 = "bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA=="; }; }; - "ws-8.9.0" = { - name = "ws"; - packageName = "ws"; - version = "8.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz"; - sha512 = "Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg=="; - }; - }; "x-default-browser-0.3.1" = { name = "x-default-browser"; packageName = "x-default-browser"; @@ -81151,15 +81007,6 @@ let sha512 = "gwwKa9TwNT8S4dimixE+k4wsOOxK6Rt7ctxGRtuZyT7bWPvJwMTbYLLDKu7WG19vKwDMqMqGkVjbLQquKDY7pw=="; }; }; - "xml-escape-1.1.0" = { - name = "xml-escape"; - packageName = "xml-escape"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xml-escape/-/xml-escape-1.1.0.tgz"; - sha512 = "B/T4sDK8Z6aUh/qNr7mjKAwwncIljFuUP+DO/D5hloYFj+90O88z8Wf7oSucZTHxBAsC1/CTP4rtx/x1Uf72Mg=="; - }; - }; "xml-js-1.6.11" = { name = "xml-js"; packageName = "xml-js"; @@ -81467,6 +81314,15 @@ let sha512 = "xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA=="; }; }; + "xregexp-4.0.0" = { + name = "xregexp"; + packageName = "xregexp"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz"; + sha512 = "PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg=="; + }; + }; "xsalsa20-1.2.0" = { name = "xsalsa20"; packageName = "xsalsa20"; @@ -81818,15 +81674,6 @@ let sha512 = "t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA=="; }; }; - "yargs-17.6.0" = { - name = "yargs"; - packageName = "yargs"; - version = "17.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-17.6.0.tgz"; - sha512 = "8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g=="; - }; - }; "yargs-17.6.2" = { name = "yargs"; packageName = "yargs"; @@ -82106,13 +81953,13 @@ let sha512 = "9Ni+uXWeFix9+1t7s1q40zZdbcpdi/OwgD4N4cVaqI+bppPciOOXQ/RSggannwZu8m8zrSWELn6/93G7308jgg=="; }; }; - "yeoman-environment-3.12.1" = { + "yeoman-environment-3.13.0" = { name = "yeoman-environment"; packageName = "yeoman-environment"; - version = "3.12.1"; + version = "3.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.12.1.tgz"; - sha512 = "q5nC954SE4BEkWFXOwkifbelEZrza6z7vnXCC9bTWvfHjRiaG45eqzv/M6/u4l6PvB/KMmBPgMrACV2mBHE+PQ=="; + url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.13.0.tgz"; + sha512 = "eBPpBZCvFzx6yk17x+ZrOHp8ADDv6qHradV+SgdugaQKIy9NjEX5AkbwdTHLOgccSTkQ9rN791xvYOu6OmqjBg=="; }; }; "yeoman-generator-5.7.0" = { @@ -82232,13 +82079,13 @@ let sha512 = "QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg=="; }; }; - "zeromq-5.2.8" = { + "zeromq-5.3.1" = { name = "zeromq"; packageName = "zeromq"; - version = "5.2.8"; + version = "5.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/zeromq/-/zeromq-5.2.8.tgz"; - sha512 = "bXzsk7KOmgLSv1tC0Ms1VXBy90+Rz27ZYf27cLuldRYbpqYpuWJfxxHFhO710t22zgWBnmdUP0m3SKFpLI0u5g=="; + url = "https://registry.npmjs.org/zeromq/-/zeromq-5.3.1.tgz"; + sha512 = "4WDF9bNWWXe8OAI319bVw5dmG4BklEk8wzFGwRQxEzKb+0mgDU5J/jtyZPo0BEusVIU1+3mRQIEdT5LtQn+aAw=="; }; }; "zerr-1.0.4" = { @@ -82295,13 +82142,13 @@ let sha512 = "UzIwO92D0dSFwIRyyqAfRXICITLjF0IP8tRbEK/un7adirMssWZx8xF/1hZNE7t61knWZ+lhEuUvxlu2MO8qqA=="; }; }; - "zwave-js-10.3.0" = { + "zwave-js-10.3.1" = { name = "zwave-js"; packageName = "zwave-js"; - version = "10.3.0"; + version = "10.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.3.0.tgz"; - sha512 = "t1hCpsFYH7ry2E1oJAnbI5PJfP+h9tczoW3fVs7LdVD9IOVKR9x3UHHlmW+H/quDUmXzwXRWb6l6t73xfKFsHw=="; + url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.3.1.tgz"; + sha512 = "7H4JwvYWAUPlwwBrKyxj0LwwryOQGBOOzWilbJ97DmFZbINUHr5fjuPf/w0BDu+B15YzjVKkdM1BCB4FvhBCYg=="; }; }; "zwitch-1.0.5" = { @@ -82313,13 +82160,13 @@ let sha512 = "V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw=="; }; }; - "zwitch-2.0.2" = { + "zwitch-2.0.4" = { name = "zwitch"; packageName = "zwitch"; - version = "2.0.2"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz"; - sha512 = "JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA=="; + url = "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz"; + sha512 = "bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A=="; }; }; "zxcvbn-4.4.2" = { @@ -82337,24 +82184,28 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "14.2.8"; + version = "15.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.8.tgz"; - sha512 = "yJDLSlTFwQhNJlFoXCw8r8iQWNJn9bIjBSdEL0mM9px5EvSxDYGDXwiJRvionlZAL9P4u0d8XeBy3EPyFkAE5Q=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-15.0.2.tgz"; + sha512 = "SRPCYiK5A+U0V173EUZNYHtOvFtxefH9hfie2+XcJX9B/7VxqIkyRYXOUUyWtC7yzbxWNJ1+WG5X4S5C2LrTEw=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1402.8" - sources."@angular-devkit/core-14.2.8" - sources."@angular-devkit/schematics-14.2.8" + sources."@angular-devkit/architect-0.1500.2" + sources."@angular-devkit/core-15.0.2" + sources."@angular-devkit/schematics-15.0.2" sources."@gar/promisify-1.1.3" sources."@npmcli/fs-2.1.2" - sources."@npmcli/git-3.0.2" - sources."@npmcli/installed-package-contents-1.0.7" + (sources."@npmcli/git-4.0.3" // { + dependencies = [ + sources."proc-log-3.0.0" + ]; + }) + sources."@npmcli/installed-package-contents-2.0.1" sources."@npmcli/move-file-2.0.1" - sources."@npmcli/node-gyp-2.0.0" - sources."@npmcli/promise-spawn-3.0.0" - sources."@npmcli/run-script-4.2.1" - sources."@schematics/angular-14.2.8" + sources."@npmcli/node-gyp-3.0.0" + sources."@npmcli/promise-spawn-6.0.1" + sources."@npmcli/run-script-6.0.0" + sources."@schematics/angular-15.0.2" sources."@tootallnate/once-2.0.0" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" @@ -82367,7 +82218,7 @@ in sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-2.0.0" sources."are-we-there-yet-3.0.1" sources."balanced-match-1.0.2" @@ -82378,11 +82229,14 @@ in sources."braces-3.0.2" sources."buffer-5.7.1" sources."builtins-5.0.1" - (sources."cacache-16.1.3" // { + (sources."cacache-17.0.2" // { dependencies = [ + sources."@npmcli/fs-3.1.0" sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" + sources."unique-filename-3.0.0" + sources."unique-slug-4.0.0" ]; }) sources."chalk-4.1.2" @@ -82393,7 +82247,7 @@ in sources."cli-cursor-3.1.0" sources."cli-spinners-2.7.0" sources."cli-width-3.0.0" - sources."cliui-7.0.4" + sources."cliui-8.0.1" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -82438,10 +82292,10 @@ in sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - (sources."ignore-walk-5.0.1" // { + (sources."ignore-walk-6.0.0" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."imurmurhash-0.1.4" @@ -82449,10 +82303,10 @@ in sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-3.0.0" + sources."ini-3.0.1" (sources."inquirer-8.2.4" // { dependencies = [ - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."tslib-2.4.1" ]; }) @@ -82469,18 +82323,26 @@ in sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."json-parse-even-better-errors-2.3.1" + sources."json-parse-even-better-errors-3.0.0" sources."json-schema-traverse-1.0.0" - sources."jsonc-parser-3.1.0" + sources."jsonc-parser-3.2.0" sources."jsonparse-1.3.1" sources."lodash-4.17.21" sources."log-symbols-4.1.0" sources."lru-cache-7.14.1" - sources."magic-string-0.26.2" - sources."make-fetch-happen-10.2.1" + sources."magic-string-0.26.7" + (sources."make-fetch-happen-10.2.1" // { + dependencies = [ + sources."brace-expansion-2.0.1" + sources."cacache-16.1.3" + sources."glob-8.0.3" + sources."minimatch-5.1.1" + sources."ssri-9.0.1" + ]; + }) sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" @@ -82492,25 +82354,41 @@ in sources."ms-2.1.2" sources."mute-stream-0.0.8" sources."negotiator-0.6.3" - sources."node-gyp-9.3.0" - sources."nopt-6.0.0" - sources."normalize-package-data-4.0.1" - sources."normalize-path-3.0.0" - sources."npm-bundled-1.1.2" - sources."npm-install-checks-5.0.0" - sources."npm-normalize-package-bin-1.0.1" - sources."npm-package-arg-9.1.0" - (sources."npm-packlist-5.1.3" // { + (sources."node-gyp-9.3.0" // { dependencies = [ - sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.0" - sources."npm-bundled-2.0.1" - sources."npm-normalize-package-bin-2.0.0" + sources."which-2.0.2" + ]; + }) + sources."nopt-6.0.0" + (sources."normalize-package-data-5.0.0" // { + dependencies = [ + sources."hosted-git-info-6.1.1" + ]; + }) + sources."normalize-path-3.0.0" + sources."npm-bundled-3.0.0" + sources."npm-install-checks-6.0.0" + sources."npm-normalize-package-bin-3.0.0" + sources."npm-package-arg-9.1.2" + sources."npm-packlist-7.0.2" + (sources."npm-pick-manifest-8.0.1" // { + dependencies = [ + sources."hosted-git-info-6.1.1" + sources."npm-package-arg-10.1.0" + sources."proc-log-3.0.0" + sources."validate-npm-package-name-5.0.0" + ]; + }) + (sources."npm-registry-fetch-14.0.2" // { + dependencies = [ + sources."hosted-git-info-6.1.1" + sources."make-fetch-happen-11.0.1" + sources."minipass-fetch-3.0.0" + sources."npm-package-arg-10.1.0" + sources."proc-log-3.0.0" + sources."validate-npm-package-name-5.0.0" ]; }) - sources."npm-pick-manifest-7.0.1" - sources."npm-registry-fetch-13.3.1" sources."npmlog-6.0.2" sources."once-1.4.0" sources."onetime-5.1.2" @@ -82518,7 +82396,14 @@ in sources."ora-5.4.1" sources."os-tmpdir-1.0.2" sources."p-map-4.0.0" - sources."pacote-13.6.2" + (sources."pacote-15.0.6" // { + dependencies = [ + sources."hosted-git-info-6.1.1" + sources."npm-package-arg-10.1.0" + sources."proc-log-3.0.0" + sources."validate-npm-package-name-5.0.0" + ]; + }) sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" sources."picomatch-2.3.1" @@ -82526,15 +82411,14 @@ in sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" sources."punycode-2.1.1" - (sources."read-package-json-5.0.2" // { + (sources."read-package-json-6.0.0" // { dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" - sources."npm-normalize-package-bin-2.0.0" + sources."minimatch-5.1.1" ]; }) - sources."read-package-json-fast-2.0.3" + sources."read-package-json-fast-3.0.1" sources."readable-stream-3.6.0" sources."readdirp-3.6.0" sources."require-directory-2.1.1" @@ -82547,7 +82431,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.3.7" // { + (sources."semver-7.3.8" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -82563,7 +82447,7 @@ in sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" - sources."ssri-9.0.1" + sources."ssri-10.0.0" sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -82580,17 +82464,16 @@ in sources."unique-slug-3.0.0" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" - sources."uuid-8.3.2" sources."validate-npm-package-license-3.0.4" sources."validate-npm-package-name-4.0.0" sources."wcwidth-1.0.1" - sources."which-2.0.2" + sources."which-3.0.0" sources."wide-align-1.1.5" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."y18n-5.0.8" sources."yallist-4.0.0" - sources."yargs-17.5.1" + sources."yargs-17.6.2" sources."yargs-parser-21.1.1" ]; buildInputs = globalBuildInputs; @@ -82603,53 +82486,13 @@ in bypassCache = true; reconstructLock = true; }; - "@ansible/ansible-language-server" = nodeEnv.buildNodePackage { - name = "_at_ansible_slash_ansible-language-server"; - packageName = "@ansible/ansible-language-server"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@ansible/ansible-language-server/-/ansible-language-server-1.0.2.tgz"; - sha512 = "z23uIaj9IAdqiB6xHYNOUSrBXJQwQjywMLhKOoejuC7AECXmqLPjYm4cMgiPG3SjO6nmSIe08nq/Qfhu2Bm5ww=="; - }; - dependencies = [ - sources."@flatten-js/interval-tree-1.0.19" - sources."balanced-match-1.0.2" - sources."brace-expansion-2.0.1" - sources."fs.realpath-1.0.0" - sources."glob-8.0.3" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-3.0.1" - sources."lodash-4.17.21" - sources."minimatch-5.1.0" - sources."once-1.4.0" - sources."uuid-8.3.2" - 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.7" - sources."vscode-languageserver-types-3.16.0" - sources."vscode-uri-3.0.6" - sources."wrappy-1.0.2" - sources."yaml-1.10.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Ansible language server"; - homepage = "https://github.com/ansible/ansible-language-server#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; "@antfu/ni" = nodeEnv.buildNodePackage { name = "_at_antfu_slash_ni"; packageName = "@antfu/ni"; - version = "0.18.3"; + version = "0.18.8"; src = fetchurl { - url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.18.3.tgz"; - sha512 = "Tjn/lApBYvQhFCw0GgJIdENOk1m6LxucvPqBnCfWQRc2tI+uxtAvJljxiSR9s5B/gtMahGBsB6Hs7H8HZIOY6Q=="; + url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.18.8.tgz"; + sha512 = "0m++AudwQq+wWAz/Ax7g+sh/wFW51HHQ6BtPLsuTAsFIzWB/bv/0COwZE7BRS+u0nqMb6Ks6nlk6cY1TpPDwHg=="; }; buildInputs = globalBuildInputs; meta = { @@ -82706,7 +82549,7 @@ in sources."js-yaml-4.1.0" sources."json5-2.2.1" sources."lodash.clonedeep-4.5.0" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.7" sources."on-exit-leak-free-2.1.0" sources."once-1.4.0" @@ -82839,12 +82682,12 @@ in dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."hpagent-1.1.0" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-absolute-1.0.0" @@ -82988,22 +82831,26 @@ in "@astrojs/language-server" = nodeEnv.buildNodePackage { name = "_at_astrojs_slash_language-server"; packageName = "@astrojs/language-server"; - version = "0.28.1"; + version = "0.29.1"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.28.1.tgz"; - sha512 = "PhWuvsmmWziD5KFB1J84IeRoWDUgl1Gb8l7Vz6feJdQ3vjTsykT0hMpiht8wp0CtXbY+c8ee3DuV5ZFUvtI/5g=="; + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.29.1.tgz"; + sha512 = "nfPbJPqnk5L0FC5kfOt2NbwZ/6osFeaDHkEk31JtsvQd8WqRWvpggqPuQV1gtGylsWfRd56mgq3Mb4fEK0T12w=="; }; dependencies = [ - sources."@astrojs/compiler-0.27.2" + sources."@astrojs/compiler-0.29.18" sources."@emmetio/abbreviation-2.2.3" sources."@emmetio/css-abbreviation-2.1.4" sources."@emmetio/scanner-1.0.0" + sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/sourcemap-codec-1.4.14" + sources."@jridgewell/trace-mapping-0.3.17" sources."@pkgr/utils-2.3.1" (sources."@vscode/emmet-helper-2.8.4" // { dependencies = [ sources."vscode-uri-2.1.2" ]; }) + sources."@vscode/l10n-0.0.10" sources."cross-spawn-7.0.3" sources."define-lazy-prop-2.0.0" sources."emmet-2.3.6" @@ -83019,19 +82866,22 @@ in sources."open-8.4.0" sources."path-key-3.1.1" sources."picocolors-1.0.0" - sources."prettier-2.7.1" - sources."prettier-plugin-astro-0.6.0" + sources."prettier-2.8.0" + (sources."prettier-plugin-astro-0.7.0" // { + dependencies = [ + sources."synckit-0.8.4" + ]; + }) sources."s.color-0.0.15" sources."sass-formatter-0.7.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."source-map-0.7.4" sources."suf-log-2.5.3" - sources."synckit-0.8.4" + sources."synckit-0.7.3" sources."tiny-glob-0.2.9" sources."tslib-2.4.1" - sources."vscode-css-languageservice-6.1.1" - sources."vscode-html-languageservice-5.0.2" + sources."vscode-css-languageservice-6.2.1" + sources."vscode-html-languageservice-5.0.3" sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" @@ -83053,19 +82903,62 @@ in "@bitwarden/cli" = nodeEnv.buildNodePackage { name = "_at_bitwarden_slash_cli"; packageName = "@bitwarden/cli"; - version = "2022.10.0"; + version = "2022.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-2022.10.0.tgz"; - sha512 = "2Qp/A5oQqbqjH9n1xy+OoCjOx5fF4Wq48Vq0ppiGAkb1rlCHWIIw0MPxYlR9AGUkj9OyHYhkLr/UzXW0GoB/CA=="; + url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-2022.11.0.tgz"; + sha512 = "y+4LvvFKoIfsAx+2CZMxtPDNv5vJlQgkQ+VMgdHO0UVbz8uY5oIPk1V8hafbL13hhR/6mneDEErNpuUmY42qzQ=="; }; dependencies = [ - (sources."@koa/multer-3.0.0" // { + sources."@ampproject/remapping-2.2.0" + sources."@babel/code-frame-7.18.6" + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { + dependencies = [ + sources."@jridgewell/gen-mapping-0.3.2" + ]; + }) + sources."@babel/helper-compilation-targets-7.20.0" + sources."@babel/helper-environment-visitor-7.18.9" + sources."@babel/helper-function-name-7.19.0" + sources."@babel/helper-hoist-variables-7.18.6" + sources."@babel/helper-module-imports-7.18.6" + sources."@babel/helper-module-transforms-7.20.2" + sources."@babel/helper-plugin-utils-7.20.2" + sources."@babel/helper-simple-access-7.20.2" + sources."@babel/helper-split-export-declaration-7.18.6" + sources."@babel/helper-string-parser-7.19.4" + sources."@babel/helper-validator-identifier-7.19.1" + sources."@babel/helper-validator-option-7.18.6" + sources."@babel/helpers-7.20.6" + (sources."@babel/highlight-7.18.6" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) + sources."@babel/parser-7.20.5" + sources."@babel/plugin-proposal-export-namespace-from-7.18.9" + sources."@babel/plugin-syntax-export-namespace-from-7.8.3" + sources."@babel/plugin-transform-modules-commonjs-7.19.6" + sources."@babel/template-7.18.10" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" + sources."@jridgewell/gen-mapping-0.1.1" + sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/set-array-1.1.2" + sources."@jridgewell/sourcemap-codec-1.4.14" + sources."@jridgewell/trace-mapping-0.3.17" + (sources."@koa/multer-3.0.2" // { dependencies = [ sources."multer-1.4.4" ]; }) sources."@koa/router-10.1.1" - sources."@mapbox/node-pre-gyp-1.0.10" + (sources."@mapbox/node-pre-gyp-1.0.10" // { + dependencies = [ + sources."semver-7.3.8" + ]; + }) sources."@tootallnate/once-1.1.2" sources."abab-2.0.6" sources."abbrev-1.1.1" @@ -83080,7 +82973,7 @@ in 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."ansi-styles-3.2.1" sources."append-field-1.0.0" sources."aproba-2.0.0" (sources."are-we-there-yet-2.0.0" // { @@ -83096,22 +82989,32 @@ in sources."brace-expansion-1.1.11" sources."browser-hrtime-1.1.8" sources."browser-process-hrtime-1.0.0" + sources."browserslist-4.21.4" sources."buffer-from-1.1.2" sources."bufferutil-4.0.7" sources."busboy-0.2.14" sources."bytes-3.1.2" sources."cache-content-type-1.0.1" sources."call-bind-1.0.2" + sources."caniuse-lite-1.0.30001436" sources."canvas-2.10.2" - sources."chalk-4.1.2" + (sources."chalk-4.1.2" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."has-flag-4.0.0" + sources."supports-color-7.2.0" + ]; + }) sources."chardet-0.7.0" sources."chownr-2.0.0" sources."cli-cursor-3.1.0" sources."cli-width-3.0.0" sources."co-4.6.0" sources."co-body-6.1.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."color-support-1.1.3" sources."combined-stream-1.0.8" sources."commander-7.2.0" @@ -83130,6 +83033,7 @@ in ]; }) sources."content-type-1.0.4" + sources."convert-source-map-1.9.0" (sources."cookies-0.8.0" // { dependencies = [ sources."depd-2.0.0" @@ -83145,7 +83049,7 @@ in }) sources."data-urls-2.0.0" sources."debug-4.3.4" - sources."decimal.js-10.4.2" + sources."decimal.js-10.4.3" sources."decompress-response-4.2.1" sources."deep-equal-1.0.1" sources."deep-is-0.1.4" @@ -83162,6 +83066,7 @@ in ]; }) sources."ee-first-1.1.1" + sources."electron-to-chromium-1.4.284" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -83169,6 +83074,7 @@ in sources."iconv-lite-0.6.3" ]; }) + sources."escalade-3.1.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" sources."escodegen-2.0.0" @@ -83178,17 +83084,20 @@ in sources."external-editor-3.1.0" sources."fast-levenshtein-2.0.6" sources."figures-3.2.0" + sources."fix-esm-1.0.1" sources."form-data-4.0.0" sources."fresh-0.5.2" sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-3.0.2" + sources."gensync-1.0.0-beta.2" sources."get-intrinsic-1.1.3" sources."glob-7.2.3" + sources."globals-11.12.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" - sources."has-flag-4.0.0" + sources."has-flag-3.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -83214,12 +83123,15 @@ in sources."is-promise-2.2.2" sources."is-wsl-2.2.0" sources."isarray-0.0.1" + sources."js-tokens-4.0.0" (sources."jsdom-16.7.0" // { dependencies = [ sources."form-data-3.0.1" ]; }) + sources."jsesc-2.5.2" sources."json-stringify-safe-5.0.1" + sources."json5-2.2.1" (sources."jszip-3.10.1" // { dependencies = [ sources."isarray-1.0.0" @@ -83244,11 +83156,7 @@ in sources."lowdb-1.0.0" sources."lru-cache-6.0.0" sources."lunr-2.3.9" - (sources."make-dir-3.1.0" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) + sources."make-dir-3.1.0" sources."media-typer-0.3.0" sources."methods-1.1.2" sources."mime-db-1.52.0" @@ -83257,7 +83165,7 @@ in sources."mimic-response-2.1.0" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-0.5.6" sources."ms-2.1.2" @@ -83279,6 +83187,7 @@ in }) sources."node-forge-1.3.1" sources."node-gyp-build-4.5.0" + sources."node-releases-2.0.6" sources."nopt-5.0.0" sources."npmlog-5.0.1" sources."nwsapi-2.2.2" @@ -83297,6 +83206,7 @@ in sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" sources."path-to-regexp-6.2.1" + sources."picocolors-1.0.0" sources."pify-3.0.0" sources."prelude-ls-1.1.2" sources."process-nextick-args-2.0.1" @@ -83318,7 +83228,7 @@ in sources."retry-0.12.0" sources."rimraf-3.0.2" sources."run-async-2.4.1" - (sources."rxjs-7.5.7" // { + (sources."rxjs-7.6.0" // { dependencies = [ sources."tslib-2.4.1" ]; @@ -83326,7 +83236,7 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."saxes-5.0.1" - sources."semver-7.3.8" + sources."semver-6.3.0" sources."set-blocking-2.0.0" sources."setimmediate-1.0.5" sources."setprototypeof-1.2.0" @@ -83348,7 +83258,7 @@ in sources."string-width-4.2.3" sources."string_decoder-0.10.31" sources."strip-ansi-6.0.1" - sources."supports-color-7.2.0" + sources."supports-color-5.5.0" sources."symbol-tree-3.2.4" (sources."tar-6.1.12" // { dependencies = [ @@ -83356,12 +83266,10 @@ in ]; }) sources."through-2.3.8" - (sources."tldjs-2.3.1" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) + sources."tldts-5.7.102" + sources."tldts-core-5.7.102" sources."tmp-0.0.33" + sources."to-fast-properties-2.0.0" sources."toidentifier-1.0.1" sources."tough-cookie-4.1.2" sources."tr46-2.1.0" @@ -83373,6 +83281,7 @@ in sources."typedarray-0.0.6" sources."universalify-0.2.0" sources."unpipe-1.0.0" + sources."update-browserslist-db-1.0.10" sources."url-parse-1.5.10" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" @@ -83407,10 +83316,10 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.2.0.tgz"; - sha512 = "kd1zykcrjIKyDRftWW1E1TJqkgzeosEkv1BiYPCdzkb/g/3BrfgwZUHR1vg+HO3qKUb/0dN+jNXArhGGAHpmaQ=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.3.0.tgz"; + sha512 = "/H0md7TsKflKzVPz226VfXzVafJFO1f9+r2KcFvmBu08V0T56lZU1s8WL7/xlxqLMqBTVaBf7Ixtc4bskdEEZg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -83426,17 +83335,17 @@ in ]; }) sources."@commitlint/config-validator-17.1.0" - sources."@commitlint/ensure-17.0.0" + sources."@commitlint/ensure-17.3.0" sources."@commitlint/execute-rule-17.0.0" sources."@commitlint/format-17.0.0" sources."@commitlint/is-ignored-17.2.0" - sources."@commitlint/lint-17.2.0" - sources."@commitlint/load-17.2.0" + sources."@commitlint/lint-17.3.0" + sources."@commitlint/load-17.3.0" sources."@commitlint/message-17.2.0" sources."@commitlint/parse-17.2.0" sources."@commitlint/read-17.2.0" - sources."@commitlint/resolve-extends-17.1.0" - sources."@commitlint/rules-17.2.0" + sources."@commitlint/resolve-extends-17.3.0" + sources."@commitlint/rules-17.3.0" sources."@commitlint/to-lines-17.0.0" (sources."@commitlint/top-level-17.0.0" // { dependencies = [ @@ -83451,30 +83360,30 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" sources."@types/minimist-1.2.2" - sources."@types/node-14.18.33" + sources."@types/node-14.18.34" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."JSONStream-1.3.5" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."arg-4.1.3" @@ -83490,7 +83399,7 @@ in sources."compare-func-2.0.0" sources."conventional-changelog-angular-5.0.13" sources."conventional-commits-parser-3.2.4" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."cosmiconfig-typescript-loader-4.2.0" sources."create-require-1.1.1" sources."cross-spawn-7.0.3" @@ -83547,6 +83456,16 @@ in sources."lines-and-columns-1.2.4" sources."locate-path-5.0.0" sources."lodash-4.17.21" + sources."lodash.camelcase-4.3.0" + sources."lodash.isfunction-3.0.9" + sources."lodash.isplainobject-4.0.6" + sources."lodash.kebabcase-4.1.1" + sources."lodash.merge-4.6.2" + sources."lodash.mergewith-4.6.2" + sources."lodash.snakecase-4.1.1" + sources."lodash.startcase-4.4.0" + sources."lodash.uniq-4.5.0" + sources."lodash.upperfirst-4.3.1" sources."lru-cache-6.0.0" sources."make-error-1.3.6" sources."map-obj-4.3.0" @@ -83614,7 +83533,7 @@ in sources."trim-newlines-3.0.1" sources."ts-node-10.9.1" sources."type-fest-0.18.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."universalify-2.0.0" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" @@ -83647,10 +83566,10 @@ in "@commitlint/config-conventional" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_config-conventional"; packageName = "@commitlint/config-conventional"; - version = "17.2.0"; + version = "17.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.2.0.tgz"; - sha512 = "g5hQqRa80f++SYS233dbDSg16YdyounMTAhVcmqtInNeY/GF3aA4st9SVtJxpeGrGmueMrU4L+BBb+6Vs5wrcg=="; + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.3.0.tgz"; + sha512 = "hgI+fN5xF8nhS9uG/V06xyT0nlcyvHHMkq0kwRSr96vl5BFlRGaL2C0/YY4kQagfU087tmj01bJkG9Ek98Wllw=="; }; dependencies = [ sources."array-ify-1.0.0" @@ -83710,10 +83629,10 @@ in "@forge/cli" = nodeEnv.buildNodePackage { name = "_at_forge_slash_cli"; packageName = "@forge/cli"; - version = "6.0.0"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli/-/cli-6.0.0.tgz"; - sha512 = "GWffWsgbgFx/M22je/HMQYr9Pkh+Z0kr/ghxeTLddFkfJyykR55oeoCVzm93D3pxnce+7FXQc+LSKIVSBtY4BQ=="; + url = "https://registry.npmjs.org/@forge/cli/-/cli-6.2.0.tgz"; + sha512 = "QYcJiKt8fnYyZZ6n4AevDVNLC6whEwIleTJtsj91kmpeW0SeAZURHMZMvdeAL7o/7KiN2AQSeK9RZ2IokNm6/g=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -83724,16 +83643,16 @@ in ]; }) sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; }) sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-compilation-targets-7.20.0" - sources."@babel/helper-create-class-features-plugin-7.20.2" + sources."@babel/helper-create-class-features-plugin-7.20.5" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" @@ -83749,9 +83668,9 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-proposal-class-properties-7.18.6" sources."@babel/plugin-proposal-numeric-separator-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" @@ -83763,19 +83682,19 @@ in sources."@babel/plugin-transform-typescript-7.20.2" sources."@babel/preset-typescript-7.18.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@colors/colors-1.5.0" sources."@discoveryjs/json-ext-0.5.7" - sources."@forge/api-2.8.0" + sources."@forge/api-2.8.1" (sources."@forge/auth-0.0.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) sources."@forge/babel-plugin-transform-ui-1.1.0" - sources."@forge/bundler-4.0.0" - (sources."@forge/cli-shared-3.2.2" // { + sources."@forge/bundler-4.0.2" + (sources."@forge/cli-shared-3.3.0" // { dependencies = [ sources."glob-7.2.3" ]; @@ -83783,12 +83702,12 @@ in (sources."@forge/egress-1.1.1" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) - sources."@forge/lint-3.2.8" - sources."@forge/manifest-4.4.1" - sources."@forge/storage-1.3.0" + sources."@forge/lint-3.2.10" + sources."@forge/manifest-4.5.1" + sources."@forge/storage-1.3.1" sources."@forge/util-1.2.0" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -83812,15 +83731,15 @@ in sources."@types/estree-0.0.51" sources."@types/html-minifier-terser-6.1.0" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/node-fetch-2.6.2" - sources."@typescript-eslint/types-5.42.0" - (sources."@typescript-eslint/typescript-estree-5.42.0" // { + sources."@typescript-eslint/types-5.45.0" + (sources."@typescript-eslint/typescript-estree-5.45.0" // { dependencies = [ sources."semver-7.3.8" ]; }) - sources."@typescript-eslint/visitor-keys-5.42.0" + sources."@typescript-eslint/visitor-keys-5.45.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -83926,7 +83845,7 @@ in sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."case-1.6.3" sources."chainsaw-0.1.0" sources."chalk-2.4.2" @@ -83983,14 +83902,7 @@ in }) sources."create-hash-1.2.0" sources."create-hmac-1.1.7" - (sources."cross-fetch-3.1.5" // { - dependencies = [ - sources."node-fetch-2.6.7" - sources."tr46-0.0.3" - sources."webidl-conversions-3.0.1" - sources."whatwg-url-5.0.0" - ]; - }) + sources."cross-fetch-3.1.5" sources."cross-spawn-7.0.3" sources."crypto-browserify-3.12.0" sources."css-select-4.3.0" @@ -84041,9 +83953,13 @@ in }) sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" - sources."encoding-0.1.13" + (sources."encoding-0.1.13" // { + dependencies = [ + sources."iconv-lite-0.6.3" + ]; + }) sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."entities-2.2.0" sources."env-paths-2.2.1" sources."envinfo-7.8.1" @@ -84077,7 +83993,6 @@ in }) (sources."external-editor-3.1.0" // { dependencies = [ - sources."iconv-lite-0.4.24" sources."tmp-0.0.33" ]; }) @@ -84086,7 +84001,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figures-3.2.0" sources."fill-range-7.0.1" sources."find-cache-dir-3.3.2" @@ -84156,9 +84071,9 @@ in sources."html-webpack-plugin-5.5.0" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.0" - sources."iconv-lite-0.6.3" + sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-3.0.4" sources."import-local-3.1.0" sources."imurmurhash-0.1.4" @@ -84177,7 +84092,7 @@ in }) sources."internal-slot-1.0.3" sources."interpret-2.2.0" - sources."io-ts-2.2.19" + sources."io-ts-2.2.20" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -84221,7 +84136,7 @@ in }) sources."json-schema-traverse-0.4.1" sources."json-schema-typed-7.0.3" - sources."json-stable-stringify-1.0.1" + sources."json-stable-stringify-1.0.2" sources."json-stringify-safe-5.0.1" sources."json5-2.2.1" sources."jsonfile-4.0.0" @@ -84248,7 +84163,7 @@ in }) sources."listenercount-1.0.1" sources."loader-runner-4.3.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."lodash.assignin-4.2.0" @@ -84274,7 +84189,7 @@ in sources."lru-queue-0.1.0" sources."make-dir-3.1.0" sources."md5.js-1.3.5" - sources."memfs-3.4.10" + sources."memfs-3.4.12" sources."memoizee-0.4.15" sources."merge-stream-2.0.0" sources."merge2-1.4.1" @@ -84310,13 +84225,19 @@ in sources."neo-async-2.6.2" sources."next-tick-1.1.0" sources."no-case-3.0.4" - (sources."node-abi-3.28.0" // { + (sources."node-abi-3.30.0" // { dependencies = [ sources."semver-7.3.8" ]; }) sources."node-addon-api-4.3.0" - sources."node-fetch-2.6.1" + (sources."node-fetch-2.6.7" // { + dependencies = [ + sources."tr46-0.0.3" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" + ]; + }) sources."node-gyp-build-4.5.0" (sources."node-localstorage-1.3.1" // { dependencies = [ @@ -84385,7 +84306,7 @@ in }) sources."prebuild-install-7.1.1" sources."prepend-http-2.0.0" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."pretty-error-4.0.0" sources."process-0.11.10" sources."process-nextick-args-2.0.1" @@ -84411,7 +84332,7 @@ in (sources."readdir-glob-1.1.2" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."rechoir-0.7.1" @@ -84463,8 +84384,8 @@ in sources."sprintf-js-1.0.3" sources."stdin-0.0.1" sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."strip-json-comments-2.0.1" @@ -84484,7 +84405,7 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.15.1" // { + (sources."terser-5.16.1" // { dependencies = [ sources."commander-2.20.3" ]; @@ -84518,7 +84439,7 @@ in }) sources."traverse-0.3.9" sources."truncate-utf8-bytes-1.0.2" - (sources."ts-loader-9.4.1" // { + (sources."ts-loader-9.4.2" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -84539,7 +84460,7 @@ in sources."type-1.2.0" sources."type-fest-0.21.3" sources."typedarray-to-buffer-3.1.5" - sources."typescript-4.8.4" + sources."typescript-4.9.3" (sources."typescript-json-schema-0.45.1" // { dependencies = [ sources."glob-7.2.3" @@ -84582,7 +84503,7 @@ in sources."watchpack-2.4.0" sources."wcwidth-1.0.1" sources."webidl-conversions-4.0.2" - (sources."webpack-5.74.0" // { + (sources."webpack-5.75.0" // { dependencies = [ sources."schema-utils-3.1.1" ]; @@ -84655,11 +84576,11 @@ in }) sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" + sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."abort-controller-3.0.0" @@ -84668,14 +84589,14 @@ in sources."ansi-escapes-4.3.2" sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."array-differ-3.0.0" sources."array-find-index-1.0.2" sources."array-union-2.1.0" sources."arrify-2.0.1" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" - sources."bignumber.js-9.1.0" + sources."bignumber.js-9.1.1" sources."binary-extensions-2.2.0" sources."bl-4.1.0" sources."brace-expansion-1.1.11" @@ -84800,7 +84721,7 @@ in sources."jsonfile-6.1.0" sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."lines-and-columns-1.2.4" sources."locate-path-7.1.1" sources."lodash-4.17.21" @@ -84895,7 +84816,7 @@ in sources."restore-cursor-3.1.0" sources."router-ips-1.0.0" sources."run-async-2.4.1" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-6.3.0" @@ -84928,7 +84849,7 @@ in }) sources."tslib-2.4.1" sources."type-fest-0.21.3" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."universalify-2.0.0" sources."url-parse-1.5.10" sources."url-template-2.0.8" @@ -84970,7 +84891,7 @@ in sha512 = "Pl9Q5rqt4hKGVcZ1/iPMj8VXY3US0UgY8JGkgm+XFUtAJ9JntN0Qj1bj1JBfPj5R7YyrZzuuDbEk4eOCd+wI/A=="; }; dependencies = [ - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@medable/mdctl-api-1.0.67" sources."@medable/mdctl-api-driver-1.0.67" sources."@medable/mdctl-axon-tools-1.0.67" @@ -85005,7 +84926,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -85142,7 +85063,7 @@ in sources."dashdash-1.14.1" sources."debug-4.3.4" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" @@ -85227,7 +85148,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fetch-cookie-0.11.0" (sources."figures-2.0.0" // { dependencies = [ @@ -85318,7 +85239,7 @@ in sources."http-signature-1.2.0" sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-3.0.4" sources."immediate-3.0.6" sources."inflection-1.13.4" @@ -85422,7 +85343,7 @@ in sources."map-visit-1.0.0" sources."markdown-it-12.3.2" sources."markdown-it-anchor-8.6.5" - sources."marked-4.2.2" + sources."marked-4.2.3" sources."md5.js-1.3.5" sources."mdurl-1.0.1" (sources."mem-4.3.0" // { @@ -85524,15 +85445,15 @@ in sources."pify-4.0.1" sources."pluralize-7.0.0" sources."posix-character-classes-0.1.1" - (sources."pouchdb-abstract-mapreduce-7.3.0" // { + (sources."pouchdb-abstract-mapreduce-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.3.0" - sources."pouchdb-collections-7.3.0" - sources."pouchdb-errors-7.3.0" - sources."pouchdb-md5-7.3.0" - sources."pouchdb-utils-7.3.0" + sources."pouchdb-binary-utils-7.3.1" + sources."pouchdb-collections-7.3.1" + sources."pouchdb-errors-7.3.1" + sources."pouchdb-md5-7.3.1" + sources."pouchdb-utils-7.3.1" sources."spark-md5-3.0.2" sources."uuid-8.3.2" ]; @@ -85541,31 +85462,31 @@ in sources."pouchdb-adapter-utils-7.0.0" sources."pouchdb-adapter-websql-core-7.0.0" sources."pouchdb-binary-utils-7.0.0" - (sources."pouchdb-changes-filter-7.3.0" // { + (sources."pouchdb-changes-filter-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.3.0" - sources."pouchdb-collections-7.3.0" - sources."pouchdb-errors-7.3.0" - sources."pouchdb-md5-7.3.0" - sources."pouchdb-utils-7.3.0" + sources."pouchdb-binary-utils-7.3.1" + sources."pouchdb-collections-7.3.1" + sources."pouchdb-errors-7.3.1" + sources."pouchdb-md5-7.3.1" + sources."pouchdb-utils-7.3.1" sources."spark-md5-3.0.2" sources."uuid-8.3.2" ]; }) - sources."pouchdb-collate-7.3.0" + sources."pouchdb-collate-7.3.1" sources."pouchdb-collections-7.0.0" - (sources."pouchdb-core-7.3.0" // { + (sources."pouchdb-core-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.3.0" - sources."pouchdb-collections-7.3.0" - sources."pouchdb-errors-7.3.0" - sources."pouchdb-md5-7.3.0" - sources."pouchdb-merge-7.3.0" - sources."pouchdb-utils-7.3.0" + sources."pouchdb-binary-utils-7.3.1" + sources."pouchdb-collections-7.3.1" + sources."pouchdb-errors-7.3.1" + sources."pouchdb-md5-7.3.1" + sources."pouchdb-merge-7.3.1" + sources."pouchdb-utils-7.3.1" sources."spark-md5-3.0.2" sources."uuid-8.3.2" ]; @@ -85576,30 +85497,30 @@ in ]; }) sources."pouchdb-extend-0.1.2" - sources."pouchdb-fetch-7.3.0" - (sources."pouchdb-find-7.3.0" // { + sources."pouchdb-fetch-7.3.1" + (sources."pouchdb-find-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.3.0" - sources."pouchdb-collections-7.3.0" - sources."pouchdb-errors-7.3.0" - sources."pouchdb-md5-7.3.0" - sources."pouchdb-utils-7.3.0" + sources."pouchdb-binary-utils-7.3.1" + sources."pouchdb-collections-7.3.1" + sources."pouchdb-errors-7.3.1" + sources."pouchdb-md5-7.3.1" + sources."pouchdb-utils-7.3.1" sources."spark-md5-3.0.2" sources."uuid-8.3.2" ]; }) sources."pouchdb-json-7.0.0" - (sources."pouchdb-mapreduce-utils-7.3.0" // { + (sources."pouchdb-mapreduce-utils-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.3.0" - sources."pouchdb-collections-7.3.0" - sources."pouchdb-errors-7.3.0" - sources."pouchdb-md5-7.3.0" - sources."pouchdb-utils-7.3.0" + sources."pouchdb-binary-utils-7.3.1" + sources."pouchdb-collections-7.3.1" + sources."pouchdb-errors-7.3.1" + sources."pouchdb-md5-7.3.1" + sources."pouchdb-utils-7.3.1" sources."spark-md5-3.0.2" sources."uuid-8.3.2" ]; @@ -85607,15 +85528,15 @@ in sources."pouchdb-md5-7.0.0" sources."pouchdb-merge-7.0.0" sources."pouchdb-promise-5.4.3" - (sources."pouchdb-selector-core-7.3.0" // { + (sources."pouchdb-selector-core-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.3.0" - sources."pouchdb-collections-7.3.0" - sources."pouchdb-errors-7.3.0" - sources."pouchdb-md5-7.3.0" - sources."pouchdb-utils-7.3.0" + sources."pouchdb-binary-utils-7.3.1" + sources."pouchdb-collections-7.3.1" + sources."pouchdb-errors-7.3.1" + sources."pouchdb-md5-7.3.1" + sources."pouchdb-utils-7.3.1" sources."spark-md5-3.0.2" sources."uuid-8.3.2" ]; @@ -85662,7 +85583,7 @@ in }) sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."requizzle-0.2.3" + sources."requizzle-0.2.4" sources."resolve-1.22.1" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" @@ -86021,7 +85942,7 @@ in dependencies = [ sources."chalk-4.1.2" sources."inquirer-8.2.4" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."tslib-2.4.1" ]; }) @@ -86062,7 +85983,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/parse-json-4.0.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" @@ -86095,7 +86016,7 @@ in sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."binary-extensions-2.2.0" @@ -86106,7 +86027,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.5.3" @@ -86120,7 +86041,7 @@ in sources."color-name-1.1.4" sources."commander-4.1.1" sources."concat-map-0.0.1" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."cross-spawn-7.0.3" sources."de-indent-1.0.2" sources."deepmerge-4.2.2" @@ -86128,7 +86049,7 @@ in sources."electron-to-chromium-1.4.284" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."error-ex-1.3.2" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -86210,7 +86131,7 @@ in sources."lru-cache-6.0.0" sources."macos-release-2.5.0" sources."magic-string-0.26.2" - sources."memfs-3.4.10" + sources."memfs-3.4.12" sources."merge-stream-2.0.0" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -86285,7 +86206,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."symbol-observable-4.0.0" sources."tapable-2.2.1" - (sources."terser-5.15.1" // { + (sources."terser-5.16.1" // { dependencies = [ sources."commander-2.20.3" ]; @@ -86308,7 +86229,7 @@ in sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" - sources."vue-template-compiler-2.7.13" + sources."vue-template-compiler-2.7.14" sources."watchpack-2.4.0" sources."wcwidth-1.0.1" sources."webpack-5.74.0" @@ -86404,27 +86325,27 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-5.0.2" sources."binary-extensions-2.2.0" sources."braces-3.0.2" @@ -86447,7 +86368,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -86470,12 +86391,12 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" sources."postcss-nested-6.0.0" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -86486,7 +86407,7 @@ in sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" sources."supports-preserve-symlinks-flag-1.0.0" - sources."tailwindcss-3.2.2" + sources."tailwindcss-3.2.4" sources."to-regex-range-5.0.1" (sources."ts-node-10.9.1" // { dependencies = [ @@ -86495,7 +86416,7 @@ in sources."arg-4.1.3" ]; }) - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" sources."xtend-4.0.2" @@ -86528,27 +86449,27 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-5.0.2" sources."binary-extensions-2.2.0" sources."braces-3.0.2" @@ -86571,7 +86492,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -86595,12 +86516,12 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" sources."postcss-nested-6.0.0" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -86611,7 +86532,7 @@ in sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" sources."supports-preserve-symlinks-flag-1.0.0" - sources."tailwindcss-3.2.2" + sources."tailwindcss-3.2.4" sources."to-regex-range-5.0.1" (sources."ts-node-10.9.1" // { dependencies = [ @@ -86620,7 +86541,7 @@ in sources."arg-4.1.3" ]; }) - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" sources."xtend-4.0.2" @@ -86671,27 +86592,27 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-5.0.2" sources."binary-extensions-2.2.0" sources."braces-3.0.2" @@ -86714,7 +86635,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -86737,12 +86658,12 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" sources."postcss-nested-6.0.0" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -86753,7 +86674,7 @@ in sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" sources."supports-preserve-symlinks-flag-1.0.0" - sources."tailwindcss-3.2.2" + sources."tailwindcss-3.2.4" sources."to-regex-range-5.0.1" (sources."ts-node-10.9.1" // { dependencies = [ @@ -86762,7 +86683,7 @@ in sources."arg-4.1.3" ]; }) - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" sources."xtend-4.0.2" @@ -86782,10 +86703,10 @@ in "@tailwindcss/typography" = nodeEnv.buildNodePackage { name = "_at_tailwindcss_slash_typography"; packageName = "@tailwindcss/typography"; - version = "0.5.7"; + version = "0.5.8"; src = fetchurl { - url = "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.7.tgz"; - sha512 = "JTTSTrgZfp6Ki4svhPA4mkd9nmQ/j9EfE7SbHJ1cLtthKkpW2OxsFXzSmxbhYbEkfNIyAyhle5p4SYyKRbz/jg=="; + url = "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.8.tgz"; + sha512 = "xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -86795,27 +86716,27 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-5.0.2" sources."binary-extensions-2.2.0" sources."braces-3.0.2" @@ -86838,7 +86759,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -86864,7 +86785,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" @@ -86880,7 +86801,7 @@ in sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" sources."supports-preserve-symlinks-flag-1.0.0" - sources."tailwindcss-3.2.2" + sources."tailwindcss-3.2.4" sources."to-regex-range-5.0.1" (sources."ts-node-10.9.1" // { dependencies = [ @@ -86889,7 +86810,7 @@ in sources."arg-4.1.3" ]; }) - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" sources."xtend-4.0.2" @@ -86909,10 +86830,10 @@ in "@uppy/companion" = nodeEnv.buildNodePackage { name = "_at_uppy_slash_companion"; packageName = "@uppy/companion"; - version = "4.0.5"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.0.5.tgz"; - sha512 = "Z3cItS4gS46fhWKQHV5PNZDgJv7Mmq/3apQpQZdDM0wfQkyfHZHlE5C2K51+AGvb+WgWqPHm7Hv7XgIrzxyjlw=="; + url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.1.1.tgz"; + sha512 = "uNKVXXJ/LTeUgdaoLg0bQr27ccVRZx6weD9H2UR0/pHkwb+vXptJB81LwPmvRldlaK7G35N2i/w2Mjqbz/Lakg=="; }; dependencies = [ sources."@redis/bloom-1.0.2" @@ -86923,10 +86844,10 @@ in sources."@redis/time-series-1.0.3" sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."accepts-1.3.8" sources."ansi-styles-4.3.0" @@ -86934,7 +86855,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1248.0" + sources."aws-sdk-2.1267.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -87043,7 +86964,7 @@ in sources."is-typed-array-1.1.10" sources."isarray-1.0.0" sources."jmespath-0.16.0" - sources."js-base64-3.7.2" + sources."js-base64-3.7.3" sources."json-buffer-3.0.1" (sources."jsonwebtoken-8.5.1" // { dependencies = [ @@ -87052,7 +86973,7 @@ in }) sources."jwa-1.4.1" sources."jws-3.2.2" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."lodash._baseiteratee-4.7.0" sources."lodash._basetostring-4.12.0" sources."lodash._baseuniq-4.6.0" @@ -87081,7 +87002,7 @@ in sources."mime-types-2.1.35" sources."mimic-response-1.0.1" sources."moment-2.29.4" - sources."moment-timezone-0.5.38" + sources."moment-timezone-0.5.39" (sources."morgan-1.10.0" // { dependencies = [ sources."on-finished-2.3.0" @@ -87188,15 +87109,12 @@ in sources."@achrinza/node-ipc-9.2.6" sources."@akryum/winattr-3.0.0" sources."@ampproject/remapping-2.2.0" - (sources."@apollo/protobufjs-1.2.6" // { - dependencies = [ - sources."@types/node-10.17.60" - ]; - }) + sources."@apollo/protobufjs-1.2.7" + sources."@apollo/usage-reporting-protobuf-4.0.2" sources."@apollo/utils.dropunuseddefinitions-1.1.0" - (sources."@apollo/utils.keyvaluecache-1.0.1" // { + (sources."@apollo/utils.keyvaluecache-1.0.2" // { dependencies = [ - sources."lru-cache-7.14.1" + sources."lru-cache-7.13.1" ]; }) sources."@apollo/utils.logger-1.0.1" @@ -87204,17 +87122,17 @@ in sources."@apollo/utils.removealiases-1.0.0" sources."@apollo/utils.sortast-1.1.0" sources."@apollo/utils.stripsensitiveliterals-1.2.0" - sources."@apollo/utils.usagereporting-1.0.0" + sources."@apollo/utils.usagereporting-1.0.1" sources."@apollographql/apollo-tools-0.5.4" sources."@apollographql/graphql-playground-html-1.6.29" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -87226,8 +87144,8 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.2" - sources."@babel/helper-create-regexp-features-plugin-7.19.0" + sources."@babel/helper-create-class-features-plugin-7.20.5" + sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ sources."semver-6.3.0" @@ -87250,8 +87168,8 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.20.1" + sources."@babel/helper-wrap-function-7.20.5" + sources."@babel/helpers-7.20.6" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."ansi-styles-3.2.1" @@ -87262,7 +87180,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.20.1" @@ -87278,7 +87196,7 @@ in sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.18.6" + sources."@babel/plugin-proposal-private-property-in-object-7.20.5" sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" @@ -87300,7 +87218,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" + sources."@babel/plugin-transform-block-scoping-7.20.5" sources."@babel/plugin-transform-classes-7.20.2" sources."@babel/plugin-transform-computed-properties-7.18.9" sources."@babel/plugin-transform-destructuring-7.20.2" @@ -87316,12 +87234,12 @@ in sources."@babel/plugin-transform-modules-commonjs-7.19.6" sources."@babel/plugin-transform-modules-systemjs-7.19.6" sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" + sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-property-literals-7.18.6" - sources."@babel/plugin-transform-regenerator-7.18.6" + sources."@babel/plugin-transform-regenerator-7.20.5" sources."@babel/plugin-transform-reserved-words-7.18.6" sources."@babel/plugin-transform-shorthand-properties-7.18.6" sources."@babel/plugin-transform-spread-7.19.0" @@ -87346,16 +87264,16 @@ in sources."semver-5.7.1" ]; }) - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@graphql-tools/merge-8.3.1" - (sources."@graphql-tools/mock-8.7.10" // { + (sources."@graphql-tools/mock-8.7.12" // { dependencies = [ - sources."@graphql-tools/merge-8.3.10" - sources."@graphql-tools/schema-9.0.8" - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/merge-8.3.12" + sources."@graphql-tools/schema-9.0.10" + sources."@graphql-tools/utils-9.1.1" ]; }) sources."@graphql-tools/schema-8.5.1" @@ -87393,7 +87311,7 @@ in sources."@types/ejs-3.1.1" sources."@types/express-4.17.14" sources."@types/express-serve-static-core-4.17.31" - sources."@types/inquirer-8.2.4" + sources."@types/inquirer-8.2.5" (sources."@types/jscodeshift-0.7.2" // { dependencies = [ sources."ast-types-0.12.1" @@ -87402,7 +87320,7 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -87416,10 +87334,10 @@ in }) sources."@vue/cli-ui-addon-webpack-5.0.8" sources."@vue/cli-ui-addon-widgets-5.0.8" - sources."@vue/compiler-core-3.2.41" - sources."@vue/compiler-dom-3.2.41" - sources."@vue/compiler-sfc-2.7.13" - sources."@vue/shared-3.2.41" + sources."@vue/compiler-core-3.2.45" + sources."@vue/compiler-dom-3.2.45" + sources."@vue/compiler-sfc-2.7.14" + sources."@vue/shared-3.2.45" sources."accepts-1.3.8" sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" @@ -87431,7 +87349,12 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."apollo-datasource-3.3.2" - sources."apollo-reporting-protobuf-3.3.3" + (sources."apollo-reporting-protobuf-3.3.3" // { + dependencies = [ + sources."@apollo/protobufjs-1.2.6" + sources."@types/node-10.17.60" + ]; + }) sources."apollo-server-core-3.11.1" sources."apollo-server-env-4.2.1" sources."apollo-server-errors-3.3.1" @@ -87506,7 +87429,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -87555,7 +87478,7 @@ in sources."cookie-0.5.0" sources."cookie-signature-1.0.6" sources."copy-descriptor-0.1.1" - sources."core-js-compat-3.26.0" + sources."core-js-compat-3.26.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" (sources."cross-spawn-6.0.5" // { @@ -87570,7 +87493,7 @@ in sources."ms-2.1.2" ]; }) - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" (sources."decompress-4.2.1" // { dependencies = [ sources."pify-2.3.0" @@ -87679,14 +87602,14 @@ in }) sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fd-slicer-1.1.0" sources."figures-3.2.0" sources."file-type-8.1.0" (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."filename-reserved-regex-2.0.0" @@ -87724,7 +87647,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.192.0" + sources."flow-parser-0.194.0" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -87791,7 +87714,7 @@ in sources."human-signals-2.1.0" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-global-0.1.0" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" @@ -87875,7 +87798,7 @@ in sources."lodash.merge-4.6.2" sources."lodash.sortby-4.7.0" sources."log-symbols-4.1.0" - sources."loglevel-1.8.0" + sources."loglevel-1.8.1" sources."long-4.0.0" sources."lowdb-1.0.0" sources."lowercase-keys-1.0.1" @@ -88005,7 +87928,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - (sources."postcss-8.4.18" // { + (sources."postcss-8.4.19" // { dependencies = [ sources."nanoid-3.3.4" ]; @@ -88037,10 +87960,10 @@ in sources."recast-0.20.5" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - sources."regenerator-transform-0.15.0" + sources."regenerator-runtime-0.13.11" + sources."regenerator-transform-0.15.1" sources."regex-not-1.0.2" - sources."regexpu-core-5.2.1" + sources."regexpu-core-5.2.2" sources."regjsgen-0.7.1" (sources."regjsparser-0.9.1" // { dependencies = [ @@ -88061,7 +87984,7 @@ in sources."rss-parser-3.12.0" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" @@ -88224,7 +88147,7 @@ in sources."unbzip2-stream-1.4.3" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" + sources."unicode-match-property-value-ecmascript-2.1.0" sources."unicode-property-aliases-ecmascript-2.1.0" sources."union-value-1.0.1" sources."universalify-2.0.0" @@ -88252,7 +88175,7 @@ in sources."validate-npm-package-name-3.0.0" sources."value-or-promise-1.0.11" sources."vary-1.1.2" - sources."vue-2.7.13" + sources."vue-2.7.14" (sources."vue-codemod-0.0.5" // { dependencies = [ sources."inquirer-7.3.3" @@ -88427,13 +88350,13 @@ in }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/generator-7.20.2" + sources."@babel/generator-7.20.5" sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/types-7.20.2" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -88514,10 +88437,10 @@ in sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@npmcli/config-4.2.2" - sources."@npmcli/map-workspaces-2.0.4" + sources."@npmcli/config-6.1.0" + sources."@npmcli/map-workspaces-3.0.0" sources."@npmcli/name-from-folder-1.0.1" - sources."@pnpm/network.ca-file-1.0.1" + sources."@pnpm/network.ca-file-1.0.2" sources."@pnpm/npm-conf-1.0.5" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" @@ -88533,12 +88456,12 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.0" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/parse5-6.0.3" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" - sources."abbrev-1.1.1" + sources."abbrev-2.0.0" sources."acorn-8.8.1" sources."acorn-jsx-5.3.2" (sources."ansi-align-3.0.1" // { @@ -88548,7 +88471,7 @@ in }) sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" - sources."array-iterate-1.1.4" + sources."array-iterate-2.0.1" sources."arrify-1.0.1" sources."bail-2.0.2" sources."balanced-match-1.0.2" @@ -88562,7 +88485,7 @@ in sources."bubble-stream-error-1.0.0" sources."buffer-from-1.1.2" sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.2" + sources."cacheable-request-10.2.3" sources."camelcase-7.0.0" (sources."camelcase-keys-8.0.2" // { dependencies = [ @@ -88575,12 +88498,11 @@ in sources."character-entities-html4-2.1.0" sources."character-entities-legacy-3.0.0" sources."character-reference-invalid-2.0.1" - sources."chownr-2.0.0" - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" sources."cli-boxes-3.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."comma-separated-tokens-2.0.2" + sources."comma-separated-tokens-2.0.3" (sources."concat-stream-2.0.0" // { dependencies = [ sources."readable-stream-3.6.0" @@ -88599,7 +88521,7 @@ in sources."type-fest-1.4.0" ]; }) - sources."cuss-2.0.0" + sources."cuss-2.1.0" sources."debug-4.3.4" sources."decamelize-6.0.0" (sources."decamelize-keys-1.1.1" // { @@ -88632,7 +88554,7 @@ in sources."extend-3.0.2" sources."fault-2.0.1" sources."find-up-6.3.0" - sources."form-data-encoder-2.1.3" + sources."form-data-encoder-2.1.4" sources."format-0.2.2" sources."from-0.1.7" sources."fs.realpath-1.0.0" @@ -88641,12 +88563,12 @@ in sources."git-diff-tree-1.1.0" sources."git-spawned-stream-1.0.1" sources."glob-8.0.3" - (sources."global-dirs-3.0.0" // { + (sources."global-dirs-3.0.1" // { dependencies = [ sources."ini-2.0.0" ]; }) - sources."got-12.5.2" + sources."got-12.5.3" sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" @@ -88665,17 +88587,16 @@ in sources."hastscript-7.1.0" sources."hosted-git-info-5.2.1" sources."http-cache-semantics-4.1.0" - (sources."http2-wrapper-2.1.11" // { + (sources."http2-wrapper-2.2.0" // { dependencies = [ sources."quick-lru-5.1.1" ]; }) - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-lazy-4.0.0" - sources."import-meta-resolve-2.1.0" + sources."import-meta-resolve-2.2.0" sources."imurmurhash-0.1.4" sources."indent-string-5.0.0" - sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-3.0.1" @@ -88695,25 +88616,25 @@ in sources."is-path-inside-3.0.3" sources."is-plain-obj-1.1.0" sources."is-typedarray-1.0.0" - sources."is-yarn-global-0.4.0" + sources."is-yarn-global-0.4.1" sources."isarray-0.0.1" sources."js-tokens-4.0.0" sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."kind-of-6.0.3" sources."kleur-4.1.5" sources."latest-version-7.0.0" sources."limit-spawn-0.0.3" sources."lines-and-columns-1.2.4" - sources."load-plugin-5.0.0" + sources."load-plugin-5.1.0" sources."locate-path-7.1.1" - sources."longest-streak-3.0.1" + sources."longest-streak-3.1.0" sources."lowercase-keys-3.0.0" sources."lru-cache-7.14.1" sources."map-obj-4.3.0" sources."map-stream-0.1.0" - sources."markdown-table-3.0.2" + sources."markdown-table-3.0.3" sources."mdast-comment-marker-2.1.0" (sources."mdast-util-find-and-replace-2.2.1" // { dependencies = [ @@ -88774,21 +88695,19 @@ in sources."micromark-util-types-1.0.2" sources."mimic-response-4.0.0" sources."min-indent-1.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.7" sources."minimist-options-4.1.0" - sources."mkdirp-1.0.4" - sources."mkdirp-infer-owner-2.0.0" sources."mri-1.2.0" sources."ms-2.1.2" sources."nlcst-is-literal-2.1.0" sources."nlcst-normalize-3.1.0" sources."nlcst-search-3.1.0" sources."nlcst-to-string-3.1.0" - sources."nopt-6.0.0" + sources."nopt-7.0.0" sources."normalize-package-data-4.0.1" - sources."normalize-url-7.2.0" - sources."npm-normalize-package-bin-1.0.1" + sources."normalize-url-8.0.0" + sources."npm-normalize-package-bin-3.0.0" sources."object-keys-0.4.0" sources."once-1.4.0" sources."p-cancelable-3.0.0" @@ -88802,18 +88721,19 @@ in }) sources."parse-entities-4.0.0" sources."parse-json-5.2.0" - (sources."parse-latin-5.0.0" // { + (sources."parse-latin-5.0.1" // { dependencies = [ - sources."nlcst-to-string-2.0.4" + sources."unist-util-modify-children-3.1.0" + sources."unist-util-visit-children-2.0.1" ]; }) sources."parse5-6.0.1" sources."path-exists-5.0.0" sources."pause-stream-0.0.11" sources."pluralize-8.0.0" - sources."proc-log-2.0.1" + sources."proc-log-3.0.0" sources."process-nextick-args-1.0.7" - sources."property-information-6.1.1" + sources."property-information-6.2.0" sources."proto-list-1.2.4" sources."pump-1.0.3" sources."pump-chain-1.0.0" @@ -88825,7 +88745,11 @@ in sources."ini-1.3.8" ]; }) - sources."read-package-json-fast-2.0.3" + (sources."read-package-json-fast-3.0.1" // { + dependencies = [ + sources."json-parse-even-better-errors-3.0.0" + ]; + }) (sources."read-pkg-7.1.0" // { dependencies = [ sources."hosted-git-info-4.1.0" @@ -88855,7 +88779,7 @@ in sources."responselike-3.0.0" sources."retext-english-4.1.0" sources."retext-equality-6.6.0" - sources."retext-profanities-7.2.1" + sources."retext-profanities-7.2.2" sources."sade-1.8.1" sources."safe-buffer-5.2.1" (sources."semver-7.3.8" // { @@ -88866,7 +88790,7 @@ in sources."semver-diff-4.0.0" sources."signal-exit-3.0.7" sources."sliced-1.0.1" - sources."space-separated-tokens-2.0.1" + sources."space-separated-tokens-2.0.2" (sources."spawn-to-readstream-0.1.3" // { dependencies = [ sources."through2-0.4.2" @@ -88908,17 +88832,17 @@ in sources."to-vfile-7.2.3" sources."trim-newlines-4.0.2" sources."trough-2.1.0" - sources."type-fest-3.2.0" + sources."type-fest-3.3.0" sources."typedarray-0.0.6" sources."typedarray-to-buffer-3.1.5" - sources."unherit-3.0.0" + sources."unherit-3.0.1" (sources."unified-10.1.2" // { dependencies = [ sources."is-plain-obj-4.1.0" ]; }) sources."unified-diff-4.0.1" - (sources."unified-engine-10.0.1" // { + (sources."unified-engine-10.1.0" // { dependencies = [ sources."is-plain-obj-4.1.0" sources."lines-and-columns-2.0.3" @@ -88934,7 +88858,11 @@ in sources."unique-string-3.0.0" sources."unist-util-inspect-7.0.1" sources."unist-util-is-5.1.1" - sources."unist-util-modify-children-2.0.0" + (sources."unist-util-modify-children-2.0.0" // { + dependencies = [ + sources."array-iterate-1.1.4" + ]; + }) sources."unist-util-position-4.0.3" sources."unist-util-position-from-estree-1.1.1" sources."unist-util-remove-position-4.0.1" @@ -88950,10 +88878,10 @@ in sources."util-deprecate-1.0.2" sources."uvu-0.5.6" sources."validate-npm-package-license-3.0.4" - sources."vfile-5.3.5" + sources."vfile-5.3.6" sources."vfile-find-up-6.0.0" sources."vfile-location-4.0.1" - sources."vfile-message-3.1.2" + sources."vfile-message-3.1.3" (sources."vfile-reporter-7.0.4" // { dependencies = [ sources."supports-color-9.2.3" @@ -88979,7 +88907,7 @@ in sources."yaml-2.1.3" sources."yargs-parser-21.1.1" sources."yocto-queue-1.0.0" - sources."zwitch-2.0.2" + sources."zwitch-2.0.4" ]; buildInputs = globalBuildInputs; meta = { @@ -89002,9 +88930,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -89020,12 +88948,12 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -89039,7 +88967,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.4" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -89055,7 +88983,7 @@ in sources."escape-string-regexp-1.0.5" (sources."filelist-1.0.4" // { dependencies = [ - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."fs-extra-5.0.0" @@ -89350,7 +89278,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -89435,7 +89363,7 @@ in }; dependencies = [ sources."browserslist-4.21.4" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."electron-to-chromium-1.4.284" sources."escalade-3.1.1" sources."fraction.js-4.2.0" @@ -89443,7 +89371,7 @@ in sources."node-releases-2.0.6" sources."normalize-range-0.1.2" sources."picocolors-1.0.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-value-parser-4.2.0" sources."source-map-js-1.0.2" sources."update-browserslist-db-1.0.10" @@ -89499,22 +89427,24 @@ in aws-azure-login = nodeEnv.buildNodePackage { name = "aws-azure-login"; packageName = "aws-azure-login"; - version = "3.4.0"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/aws-azure-login/-/aws-azure-login-3.4.0.tgz"; - sha512 = "7PXkWdq+3NL7hUmLOV1yoO6OnVNcT54UVtC6WT1gE9C9dYGG0bEL9nsZz8qiV75hvX1E6fABjw1/Q7KaXgvHfg=="; + url = "https://registry.npmjs.org/aws-azure-login/-/aws-azure-login-3.5.1.tgz"; + sha512 = "huWMsC7K+64FV7+EaPxxLwULTd9nT1kf7niVTXoVzmq87o2Mo8FXpiDEJaqeZHUFdQrn2OC73UoPnMirKfikGA=="; }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/yauzl-2.10.0" + sources."acorn-8.8.1" + sources."acorn-walk-8.2.0" 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."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1248.0" // { + (sources."aws-sdk-2.1267.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -89536,8 +89466,8 @@ in sources."call-bind-1.0.2" sources."chalk-4.1.2" sources."chardet-0.7.0" - sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.6.0" + sources."cheerio-1.0.0-rc.12" + sources."cheerio-select-2.1.0" sources."chownr-1.1.4" sources."cli-cursor-3.1.0" sources."cli-spinners-2.7.0" @@ -89545,25 +89475,31 @@ in sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-8.3.0" + sources."commander-9.4.1" sources."concat-map-0.0.1" sources."core-util-is-1.0.3" - sources."css-select-4.3.0" + sources."cross-fetch-3.1.5" + sources."css-select-5.1.0" sources."css-what-6.1.0" sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" sources."deep-is-0.1.4" sources."defaults-1.0.4" - sources."degenerator-2.2.0" + sources."degenerator-3.0.2" sources."depd-2.0.0" - sources."devtools-protocol-0.0.901419" - sources."dom-serializer-1.4.1" + sources."devtools-protocol-0.0.981744" + sources."dom-serializer-2.0.0" sources."domelementtype-2.3.0" - sources."domhandler-4.3.1" - sources."domutils-2.8.0" + sources."domhandler-5.0.3" + sources."domutils-3.0.1" sources."emoji-regex-8.0.0" + (sources."encoding-0.1.13" // { + dependencies = [ + sources."iconv-lite-0.6.3" + ]; + }) sources."end-of-stream-1.4.4" - sources."entities-2.2.0" + sources."entities-4.4.0" sources."escape-string-regexp-1.0.5" sources."escodegen-1.14.3" sources."esprima-4.0.1" @@ -89599,7 +89535,7 @@ in sources."has-flag-4.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" - sources."htmlparser2-6.1.0" + sources."htmlparser2-8.0.1" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" sources."https-proxy-agent-5.0.1" @@ -89607,7 +89543,7 @@ in sources."ieee754-1.1.13" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-2.0.0" + sources."ini-3.0.1" sources."inquirer-8.2.5" sources."ip-1.1.8" sources."is-arguments-1.1.1" @@ -89627,12 +89563,12 @@ in sources."lru-cache-5.1.1" sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" - sources."minimist-1.2.7" sources."mkdirp-1.0.4" + sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."mute-stream-0.0.8" sources."netmask-2.0.2" - sources."node-fetch-2.6.1" + sources."node-fetch-2.6.7" sources."node-gyp-build-4.5.0" sources."nth-check-2.1.1" sources."once-1.4.0" @@ -89643,33 +89579,28 @@ in sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" - sources."pac-proxy-agent-4.1.0" - sources."pac-resolver-4.2.0" - sources."parse5-6.0.1" - sources."parse5-htmlparser2-tree-adapter-6.0.1" + sources."pac-proxy-agent-5.0.0" + sources."pac-resolver-5.0.1" + sources."parse5-7.1.2" + sources."parse5-htmlparser2-tree-adapter-7.0.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."pend-1.2.0" sources."pkg-dir-4.2.0" sources."prelude-ls-1.1.2" - sources."progress-2.0.1" - sources."proxy-agent-4.0.1" + sources."progress-2.0.3" + sources."proxy-agent-5.0.0" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" sources."punycode-1.3.2" - (sources."puppeteer-10.4.0" // { - dependencies = [ - sources."debug-4.3.1" - sources."https-proxy-agent-5.0.0" - ]; - }) + sources."puppeteer-13.7.0" sources."querystring-0.2.0" sources."raw-body-2.5.1" sources."readable-stream-3.6.0" sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" sources."run-async-2.4.1" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."sax-1.2.1" @@ -89688,19 +89619,16 @@ in sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."supports-color-7.2.0" - (sources."tar-fs-2.0.0" // { - dependencies = [ - sources."mkdirp-0.5.6" - ]; - }) + sources."tar-fs-2.1.1" sources."tar-stream-2.2.0" sources."through-2.3.8" sources."tmp-0.0.33" sources."toidentifier-1.0.1" + sources."tr46-0.0.3" sources."tslib-2.4.1" sources."type-check-0.3.2" sources."type-fest-0.21.3" - (sources."unbzip2-stream-1.3.3" // { + (sources."unbzip2-stream-1.4.3" // { dependencies = [ sources."buffer-5.7.1" ]; @@ -89712,12 +89640,15 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."uuid-8.3.2" + sources."vm2-3.9.12" sources."wcwidth-1.0.1" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" sources."which-typed-array-1.1.9" sources."word-wrap-1.2.3" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" - sources."ws-7.4.6" + sources."ws-8.5.0" sources."xml2js-0.4.19" sources."xmlbuilder-9.0.7" sources."xregexp-2.0.0" @@ -89727,7 +89658,7 @@ in buildInputs = globalBuildInputs; meta = { description = "Use Azure AD SSO to log into the AWS CLI."; - homepage = "https://github.com/sportradar/aws-azure-login#readme"; + homepage = "https://github.com/aws-azure-login/aws-azure-login#readme"; license = "MIT"; }; production = true; @@ -89737,10 +89668,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.50.0"; + version = "2.53.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.50.0.tgz"; - sha512 = "55vmKTf2DZRqioumVfXn+S0H9oAbpRK3HFHY8EjZ5ykR5tq2+XiMWEZkYduX2HJhVAeHJJIS6h+Okk3smZjeqw=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.53.0.tgz"; + sha512 = "Tt/H7quNxA/Z0COwHnznnW7+6iJ1oUuJ/dZ5kjPTBtbgMvxRXKzZLDTanlTaET4Q7l6PprQPbUkWkYpka6v0qw=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -89859,7 +89790,7 @@ in sources."execa-1.0.0" sources."extend-3.0.2" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."fs.realpath-1.0.0" @@ -89880,7 +89811,7 @@ in sources."hosted-git-info-4.1.0" sources."http-cache-semantics-4.1.0" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."indent-string-4.0.0" sources."indexed-filter-1.0.3" sources."inflight-1.0.6" @@ -90176,10 +90107,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "13.4.0"; + version = "13.10.4"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.4.0.tgz"; - sha512 = "0SDz6JleVLPBzz68uRVIgUfNGKynEpNvWK0zV9PDP8k4PQgBar9ZCUvZVgmLw+gaatHCww7H2Ry7A0+RXWVWTg=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.10.4.tgz"; + sha512 = "TnS1rtWUvJjkbFNuB0gRwNtLako6dfKdevJcfudqWor7hgjh0rYWdfGqUuKjiLt4EjXbDLVlvOUmteNZTLQuvg=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.4" // { @@ -90205,7 +90136,7 @@ in }) sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" - sources."@grammyjs/types-2.10.0" + sources."@grammyjs/types-2.10.2" sources."@grpc/grpc-js-1.7.0" sources."@grpc/proto-loader-0.7.2" sources."@handsontable/formulajs-2.0.2" @@ -90228,7 +90159,7 @@ in sources."@types/express-serve-static-core-4.17.31" sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/request-2.48.8" @@ -90243,7 +90174,7 @@ in sources."ms-2.1.2" ]; }) - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-0.3.1" sources."ansi-escapes-1.4.0" sources."ansi-regex-5.0.1" @@ -90326,7 +90257,7 @@ in sources."cors-2.8.5" sources."create-hash-1.2.0" sources."crypto-js-4.1.1" - sources."csv-parse-5.3.1" + sources."csv-parse-5.3.3" sources."debug-2.6.9" sources."defaults-1.0.4" sources."define-property-1.0.0" @@ -90430,7 +90361,7 @@ in sources."string-width-5.1.2" sources."strip-ansi-7.0.1" sources."tmp-0.0.33" - sources."type-fest-3.2.0" + sources."type-fest-3.3.0" sources."wrap-ansi-8.0.1" ]; }) @@ -90455,7 +90386,7 @@ in sources."json-schema-traverse-1.0.0" sources."json2csv-5.0.7" sources."jsonparse-1.3.1" - sources."jstat-1.9.5" + sources."jstat-1.9.6" sources."kind-of-6.0.3" sources."kuler-2.0.0" (sources."lightning-5.21.0" // { @@ -90465,23 +90396,24 @@ in sources."ecpair-2.0.1" ]; }) - (sources."ln-accounting-6.1.0" // { + (sources."ln-accounting-6.1.1" // { dependencies = [ - sources."@grpc/grpc-js-1.7.2" + sources."@grpc/grpc-js-1.7.3" sources."@grpc/proto-loader-0.7.3" sources."@types/express-4.17.14" - sources."@types/node-18.11.2" + sources."@types/node-18.11.9" sources."body-parser-1.20.1" + sources."bolt09-0.2.4" sources."express-4.18.2" - sources."lightning-6.2.4" - sources."ln-service-54.2.3" + sources."lightning-6.2.7" + sources."ln-service-54.2.6" sources."qs-6.11.0" sources."safe-buffer-5.2.1" sources."type-fest-3.1.0" - sources."ws-8.9.0" + sources."ws-8.10.0" ]; }) - (sources."ln-service-54.2.6" // { + (sources."ln-service-54.3.3" // { dependencies = [ sources."@grpc/grpc-js-1.7.3" sources."@grpc/proto-loader-0.7.3" @@ -90489,44 +90421,47 @@ in sources."body-parser-1.20.1" sources."bolt09-0.2.4" sources."express-4.18.2" + sources."invoices-2.2.2" + sources."lightning-6.3.2" + sources."qs-6.11.0" + sources."safe-buffer-5.2.1" + sources."type-fest-3.3.0" + sources."ws-8.11.0" + ]; + }) + (sources."ln-sync-4.0.5" // { + dependencies = [ + sources."@grpc/grpc-js-1.7.3" + sources."@grpc/proto-loader-0.7.3" + sources."@types/express-4.17.14" + sources."@types/node-18.11.9" + sources."body-parser-1.20.1" + sources."bolt09-0.2.4" + sources."express-4.18.2" sources."lightning-6.2.7" + sources."ln-service-54.2.6" sources."qs-6.11.0" sources."safe-buffer-5.2.1" sources."type-fest-3.1.0" sources."ws-8.10.0" ]; }) - sources."ln-sync-4.0.5" - (sources."ln-telegram-4.2.0" // { + (sources."ln-telegram-4.3.1" // { dependencies = [ - sources."@grpc/grpc-js-1.7.2" + sources."@grpc/grpc-js-1.7.3" sources."@grpc/proto-loader-0.7.3" sources."@types/express-4.17.14" - sources."@types/node-18.11.2" - (sources."body-parser-1.20.1" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."debug-4.3.4" - (sources."express-4.18.2" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."grammy-1.11.2" - sources."lightning-6.2.4" - sources."ln-service-54.2.3" - sources."ln-sync-4.0.4" - sources."ms-2.1.2" - sources."paid-services-4.0.1" + sources."@types/node-18.11.9" + sources."body-parser-1.20.1" + sources."bolt09-0.2.4" + sources."express-4.18.2" + sources."invoices-2.2.2" + sources."lightning-6.3.1" + sources."ln-service-54.3.2" sources."qs-6.11.0" sources."safe-buffer-5.2.1" - sources."table-6.8.0" - sources."type-fest-3.1.0" - sources."ws-8.9.0" + sources."type-fest-3.2.0" + sources."ws-8.11.0" ]; }) sources."lodash-4.17.21" @@ -90549,7 +90484,7 @@ in ]; }) sources."long-4.0.0" - sources."luxon-3.0.4" + sources."luxon-3.1.0" sources."macaroon-3.0.4" sources."md5.js-1.3.5" sources."media-typer-0.3.0" @@ -90595,7 +90530,28 @@ in sources."os-shim-0.1.3" sources."os-tmpdir-1.0.2" sources."p2tr-1.3.2" - sources."paid-services-4.0.5" + (sources."paid-services-4.1.0" // { + dependencies = [ + sources."@grpc/grpc-js-1.7.3" + sources."@grpc/proto-loader-0.7.3" + sources."@types/express-4.17.14" + sources."@types/node-18.11.9" + sources."body-parser-1.20.1" + sources."bolt09-0.2.4" + sources."express-4.18.2" + sources."invoices-2.2.2" + (sources."lightning-6.3.0" // { + dependencies = [ + sources."invoices-2.2.1" + ]; + }) + sources."ln-service-54.3.1" + sources."qs-6.11.0" + sources."safe-buffer-5.2.1" + sources."type-fest-3.2.0" + sources."ws-8.11.0" + ]; + }) sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."pinkie-2.0.4" @@ -90639,7 +90595,7 @@ in sources."ripemd160-2.0.2" sources."run-async-2.4.1" sources."rx-4.1.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.1.2" sources."safe-stable-stringify-2.4.1" sources."safer-buffer-2.1.2" @@ -90753,82 +90709,55 @@ in bash-language-server = nodeEnv.buildNodePackage { name = "bash-language-server"; packageName = "bash-language-server"; - version = "3.1.0"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-3.1.0.tgz"; - sha512 = "DaTlZD60S3ZldAkhch5oH1vxUn8joeFw73IOnwMwmZSlbQctaDrnP7DdDPRVrrQ3uhUQlaaOGPeJCsY/a+V6pg=="; + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-3.3.1.tgz"; + sha512 = "93Ts6rQTEP8rvGZ3XPSy105GM4Qs6yvIuCUvRiDIx0gMLFemscCkvyrrihDEMkmjb0T3TaRZyFXgoZk5Ea8blw=="; }; dependencies = [ - sources."ajv-6.12.6" - sources."asn1-0.2.6" - sources."assert-plus-1.0.0" + sources."@nodelib/fs.scandir-2.1.5" + sources."@nodelib/fs.stat-2.0.5" + sources."@nodelib/fs.walk-1.2.8" + sources."@types/node-18.11.10" + sources."@types/node-fetch-2.6.2" sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" - sources."balanced-match-1.0.2" - sources."bcrypt-pbkdf-1.0.2" - sources."brace-expansion-2.0.1" - sources."caseless-0.12.0" + sources."braces-3.0.2" sources."combined-stream-1.0.8" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" sources."delayed-stream-1.0.0" sources."domino-2.1.6" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-3.1.3" - sources."fast-json-stable-stringify-2.1.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs.realpath-1.0.0" + sources."encoding-0.1.13" + sources."fast-glob-3.2.12" + sources."fastq-1.14.0" + sources."fill-range-7.0.1" + sources."form-data-3.0.1" sources."fuzzy-search-3.2.1" - sources."getpass-0.1.7" - sources."glob-8.0.3" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" - sources."http-signature-1.2.0" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.2" - sources."lodash-4.17.21" + sources."glob-parent-5.1.2" + sources."iconv-lite-0.6.3" + sources."is-extglob-2.1.1" + sources."is-glob-4.0.3" + sources."is-number-7.0.0" + sources."merge2-1.4.1" + sources."micromatch-4.0.5" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-5.1.0" - sources."oauth-sign-0.9.0" - sources."once-1.4.0" - sources."performance-now-2.1.0" - sources."psl-1.9.0" - sources."punycode-2.1.1" - sources."qs-6.5.3" - sources."request-2.88.2" - sources."request-promise-core-1.1.4" - sources."request-promise-native-1.0.9" - sources."safe-buffer-5.2.1" + sources."node-fetch-2.6.7" + sources."picomatch-2.3.1" + sources."queue-microtask-1.2.3" + sources."reusify-1.0.4" + sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" - sources."sshpk-1.17.0" - sources."stealthy-require-1.1.1" - sources."tough-cookie-2.5.0" - sources."tunnel-agent-0.6.0" + sources."to-regex-range-5.0.1" + sources."tr46-0.0.3" sources."turndown-7.1.1" - sources."tweetnacl-0.14.5" - sources."uri-js-4.4.1" sources."urijs-1.19.11" - sources."uuid-3.4.0" - sources."verror-1.10.0" sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-6.1.1" sources."vscode-languageserver-protocol-3.17.2" sources."vscode-languageserver-textdocument-1.0.7" sources."vscode-languageserver-types-3.17.2" sources."web-tree-sitter-0.20.7" - sources."wrappy-1.0.2" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -91218,11 +91147,11 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."accepts-1.3.8" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."async-2.6.4" sources."async-each-series-0.1.1" sources."axios-0.21.4" @@ -91269,7 +91198,7 @@ in sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" - sources."engine.io-6.2.0" + sources."engine.io-6.2.1" sources."engine.io-client-6.2.3" sources."engine.io-parser-5.0.4" sources."escalade-3.1.1" @@ -91375,9 +91304,9 @@ in sources."serve-static-1.13.2" sources."server-destroy-1.0.1" sources."setprototypeof-1.2.0" - sources."socket.io-4.5.3" + sources."socket.io-4.5.4" sources."socket.io-adapter-2.4.0" - sources."socket.io-client-4.5.3" + sources."socket.io-client-4.5.4" sources."socket.io-parser-4.2.1" sources."statuses-1.3.1" sources."stream-throttle-0.1.3" @@ -91393,7 +91322,7 @@ in sources."tfunk-4.0.0" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."ua-parser-js-1.0.2" sources."universalify-0.1.2" sources."unpipe-1.0.0" @@ -91443,8 +91372,8 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" - sources."@babel/types-7.20.2" + sources."@babel/parser-7.20.5" + sources."@babel/types-7.20.5" sources."@kwsites/file-exists-1.1.1" sources."@kwsites/promise-deferred-1.1.1" sources."@popperjs/core-2.11.6" @@ -91475,7 +91404,7 @@ in sources."basic-auth-2.0.1" sources."bcrypt-pbkdf-1.0.2" sources."bech32-2.0.0" - sources."bignumber.js-9.1.0" + sources."bignumber.js-9.1.1" sources."bindings-1.5.0" sources."bip174-2.1.0" sources."bip32-2.0.6" @@ -91493,7 +91422,7 @@ in sources."debug-2.6.9" ]; }) - sources."bootstrap-5.2.2" + sources."bootstrap-5.2.3" sources."brace-expansion-1.1.11" sources."brorand-1.1.0" sources."bs58-4.0.1" @@ -91565,7 +91494,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."decimal.js-10.4.2" + sources."decimal.js-10.4.3" sources."delayed-stream-1.0.0" sources."denque-1.5.1" sources."depd-2.0.0" @@ -91910,7 +91839,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -92439,7 +92368,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-extend-0.6.0" sources."define-property-2.0.2" (sources."del-3.0.0" // { @@ -93006,20 +92935,20 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.1.39"; + version = "2.1.66"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.39.tgz"; - sha512 = "wvXer3jG5wMbkyS4SL9rcVObWR4bETFjfHbjGNQcJCY9BQaCxaU9GxiZPrsFQimKV2DXwOQJ/h1KvB+Btpd8Vw=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.66.tgz"; + sha512 = "ATPoJpo9Gxdq7yxzX9yIO3NU0z3jDCZWc+UxW4JeA/ybLFogVy6YAshq06jk/xIWTgFDTsr/zo510oiPg7WC3Q=="; }; dependencies = [ - sources."@jsii/check-node-1.70.0" - sources."@jsii/spec-1.70.0" + sources."@jsii/check-node-1.71.0" + sources."@jsii/spec-1.71.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-14.18.33" + sources."@types/node-14.18.34" sources."@xmldom/xmldom-0.8.6" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."astral-regex-2.0.0" @@ -93027,12 +92956,12 @@ in sources."braces-3.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.5.37" - sources."cdk8s-plus-25-2.0.19" + sources."cdk8s-2.5.64" + sources."cdk8s-plus-25-2.0.49" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" - (sources."codemaker-1.70.0" // { + (sources."codemaker-1.71.0" // { dependencies = [ sources."fs-extra-10.1.0" ]; @@ -93041,7 +92970,7 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.30.0" - sources."constructs-10.1.152" + sources."constructs-10.1.179" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -93054,7 +92983,7 @@ in sources."escape-string-regexp-4.0.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flatted-3.2.7" @@ -93072,41 +93001,41 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" sources."is-number-7.0.0" - (sources."jsii-1.70.0" // { + (sources."jsii-1.71.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.70.0" // { + (sources."jsii-pacmak-1.71.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.70.0" // { + (sources."jsii-reflect-1.71.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.70.0" // { + (sources."jsii-rosetta-1.71.0" // { dependencies = [ sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.726" // { + (sources."jsii-srcmak-0.1.752" // { dependencies = [ sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.3.175" + sources."json2jsii-0.3.202" sources."jsonfile-6.1.0" sources."locate-path-5.0.0" sources."lodash.truncate-4.4.2" - sources."log4js-6.7.0" + sources."log4js-6.7.1" sources."lower-case-2.0.2" sources."lru-cache-6.0.0" sources."mdurl-1.0.1" @@ -93116,7 +93045,7 @@ in sources."ms-2.1.2" sources."ncp-2.0.0" sources."no-case-3.0.4" - sources."oo-ascii-tree-1.70.0" + sources."oo-ascii-tree-1.71.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -93154,7 +93083,7 @@ in sources."universalify-2.0.0" sources."uri-js-4.4.1" sources."which-module-2.0.0" - sources."workerpool-6.3.0" + sources."workerpool-6.3.1" sources."wrap-ansi-7.0.0" sources."xmlbuilder-15.1.1" sources."y18n-5.0.8" @@ -93184,29 +93113,29 @@ in cdktf-cli = nodeEnv.buildNodePackage { name = "cdktf-cli"; packageName = "cdktf-cli"; - version = "0.13.3"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.13.3.tgz"; - sha512 = "2gq6oltc1m+0R4Hv0VUqNWQ5Paimg5JytQ6VK1jptHEkEuLxrN2ZIJpTAs79fqDvHt1gCxxFvXfCn361BBNBTw=="; + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.14.1.tgz"; + sha512 = "qecXoSJ4KrOTAWmCzKiwYDs8gxbw/eqtORIWslIEBvtxKeBDFN2q9AjHaaRhH1DCBCOIfa6hpMAm4y5RP5S9Ig=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/generator-7.20.2" + sources."@babel/generator-7.20.5" sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/types-7.20.2" - sources."@cdktf/hcl2cdk-0.13.3" - sources."@cdktf/hcl2json-0.13.3" - sources."@cdktf/provider-generator-0.13.3" + sources."@babel/types-7.20.5" + sources."@cdktf/hcl2cdk-0.14.1" + sources."@cdktf/hcl2json-0.14.1" + sources."@cdktf/provider-generator-0.14.1" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - (sources."@jsii/check-node-1.70.0" // { + (sources."@jsii/check-node-1.71.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -93216,7 +93145,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."@jsii/spec-1.70.0" + sources."@jsii/spec-1.71.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -93226,17 +93155,17 @@ in sources."@sentry/node-6.19.7" sources."@sentry/types-6.19.7" sources."@sentry/utils-6.19.7" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/node-fetch-2.6.2" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.25" + sources."@types/react-18.0.26" sources."@types/scheduler-0.16.2" - sources."@types/yargs-17.0.13" + sources."@types/yargs-17.0.15" sources."@types/yargs-parser-21.0.0" sources."@types/yoga-layout-1.9.2" sources."@xmldom/xmldom-0.8.6" sources."agent-base-6.0.2" - sources."ajv-8.11.0" + sources."ajv-8.11.2" (sources."ansi-escapes-4.3.2" // { dependencies = [ sources."type-fest-0.21.3" @@ -93255,7 +93184,7 @@ in sources."bufferutil-4.0.7" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdktf-0.13.3" + sources."cdktf-0.14.1" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -93264,7 +93193,7 @@ in sources."cliui-6.0.0" sources."clone-2.1.2" sources."code-excerpt-3.0.0" - (sources."codemaker-1.70.0" // { + (sources."codemaker-1.71.0" // { dependencies = [ sources."decamelize-5.0.1" sources."fs-extra-10.1.0" @@ -93277,7 +93206,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.1.152" + sources."constructs-10.1.179" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" sources."cross-spawn-7.0.3" @@ -93297,7 +93226,7 @@ in sources."events-3.3.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figures-3.2.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" @@ -93345,7 +93274,7 @@ in sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - (sources."jsii-1.70.0" // { + (sources."jsii-1.71.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -93363,7 +93292,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-pacmak-1.70.0" // { + (sources."jsii-pacmak-1.71.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -93379,7 +93308,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-reflect-1.70.0" // { + (sources."jsii-reflect-1.71.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -93397,7 +93326,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-rosetta-1.70.0" // { + (sources."jsii-rosetta-1.71.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -93409,7 +93338,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.726" // { + (sources."jsii-srcmak-0.1.752" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -93422,7 +93351,7 @@ in sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."lodash.isequal-4.5.0" - sources."log4js-6.7.0" + sources."log4js-6.7.1" sources."loose-envify-1.4.0" sources."lru-cache-6.0.0" sources."lru_map-0.3.3" @@ -93432,7 +93361,7 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" - (sources."minimatch-5.1.0" // { + (sources."minimatch-5.1.1" // { dependencies = [ sources."brace-expansion-2.0.1" ]; @@ -93447,7 +93376,7 @@ in sources."obliterator-2.0.4" sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.70.0" + sources."oo-ascii-tree-1.71.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -93456,11 +93385,11 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."picomatch-2.3.1" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."punycode-2.1.1" sources."queue-microtask-1.2.3" sources."react-17.0.2" - sources."react-devtools-core-4.26.1" + sources."react-devtools-core-4.27.0" sources."react-reconciler-0.26.2" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" @@ -93494,7 +93423,7 @@ in }) sources."sort-json-2.0.1" sources."spdx-license-list-6.6.0" - (sources."stack-utils-2.0.5" // { + (sources."stack-utils-2.0.6" // { dependencies = [ sources."escape-string-regexp-2.0.0" ]; @@ -93519,7 +93448,7 @@ in sources."which-2.0.2" sources."which-module-2.0.0" sources."widest-line-3.1.0" - sources."workerpool-6.3.0" + sources."workerpool-6.3.1" (sources."wrap-ansi-6.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -93571,7 +93500,7 @@ in sha512 = "/StJu1YODZY6cOwkBx5FMhSoc9YmvEJXtwNN+udGg1GIKrr4PkdsCdUqC26GfdPdt5IuZnu+5y9/3mrdIJa40Q=="; }; dependencies = [ - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."balanced-match-1.0.2" sources."binary-extensions-2.2.0" sources."brace-expansion-1.1.11" @@ -93736,7 +93665,7 @@ in sources."commander-2.20.3" sources."cycle-1.0.3" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."encoding-0.1.13" sources."escape-string-regexp-1.0.5" sources."eyes-0.1.8" @@ -93747,6 +93676,7 @@ in sources."iconv-lite-0.6.3" sources."is-stream-1.1.0" sources."isstream-0.1.2" + sources."lodash-4.17.21" sources."lodash.sortby-4.7.0" sources."ms-2.1.2" sources."mute-stream-0.0.8" @@ -93766,7 +93696,11 @@ in sources."webidl-conversions-4.0.2" sources."whatwg-fetch-3.6.2" sources."whatwg-url-7.1.0" - sources."winston-2.4.6" + (sources."winston-2.4.7" // { + dependencies = [ + sources."async-2.6.4" + ]; + }) ]; buildInputs = globalBuildInputs; meta = { @@ -93781,10 +93715,10 @@ in coc-clangd = nodeEnv.buildNodePackage { name = "coc-clangd"; packageName = "coc-clangd"; - version = "0.26.2"; + version = "0.27.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.26.2.tgz"; - sha512 = "d2v66ZdMrEiWd4qBlXOWZ7faHeuWChdr+9J2PksSuJPBC7tSrfSF9KbZHsHQrUrOjCrGUHkYDVkS9D0IkK89uw=="; + url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.27.0.tgz"; + sha512 = "XNV8x2adzhenq9uh5rBRsCYvfUiLQJ3mEtj5kKgwxIDa9+kDEEfl/CVDXnx0lM2aa2f845cWCxfL9XNCejOwDQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -93834,10 +93768,10 @@ in coc-diagnostic = nodeEnv.buildNodePackage { name = "coc-diagnostic"; packageName = "coc-diagnostic"; - version = "0.23.4"; + version = "0.23.6"; src = fetchurl { - url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.4.tgz"; - sha512 = "XaA+RgnSMLmGpJnXLGWZCH5sONP80uYLpzNlwObMvs0AOuN3vXsu7qTE90qc5Jt/S6RIkF+u/XGDVb/z51E12g=="; + url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.6.tgz"; + sha512 = "NlTA2rgJwE0/KZ/tQGDIFrpIfBpSUC7G7gC1aClNyaiG8AsrbPxsK45XoYJ8Qkh8j9AyQxQ/DFh2Pwh+qE86bA=="; }; buildInputs = globalBuildInputs; meta = { @@ -94026,10 +93960,10 @@ in coc-git = nodeEnv.buildNodePackage { name = "coc-git"; packageName = "coc-git"; - version = "2.5.3"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.5.3.tgz"; - sha512 = "wfMi4xA507oSXqXp2Ey2I3MnNZVFooSNLuIU4/JUCepW+B2o0qBGfWfogQitw8FNyMIfSLKO/IurXQaYUnA79Q=="; + url = "https://registry.npmjs.org/coc-git/-/coc-git-2.6.0.tgz"; + sha512 = "1Xo6++/ml/ozfBi2ubDXPVz49I1ewI5v8tZysn/Rz3/PojQuOcroXs48aqYx8rPADt7zSXAVGs+uN9lAkLgrLA=="; }; buildInputs = globalBuildInputs; meta = { @@ -94068,10 +94002,10 @@ in coc-haxe = nodeEnv.buildNodePackage { name = "coc-haxe"; packageName = "coc-haxe"; - version = "0.11.0"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.11.0.tgz"; - sha512 = "HF+Sa6NFsVH0tsEV8F6SCnKGU89sIXPeHvYwezzkb19GkTrJByLGmxfSZANN35y32FxqJDGqweTUFEqmr48FQg=="; + url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.14.1.tgz"; + sha512 = "QWd5DkQh0P192SfuZQ2G06s4HCp8IuxItT7anVtHx+mLIOFZ8AIUcdGSmO8in2vEX85WoGk7/yWri2rTYcZZfw=="; }; buildInputs = globalBuildInputs; meta = { @@ -94109,7 +94043,7 @@ in sha512 = "NXmTfHF/TxysUeSstDyLUcfv6LlK08PnltVZCe1J7XpG/QHRRq0sjhkNqkHJVfFT/Vo2NC4lv5Bc9UIWdjGGuw=="; }; dependencies = [ - sources."typescript-4.8.4" + sources."typescript-4.9.3" ]; buildInputs = globalBuildInputs; meta = { @@ -94141,10 +94075,10 @@ in coc-java = nodeEnv.buildNodePackage { name = "coc-java"; packageName = "coc-java"; - version = "1.5.5"; + version = "1.5.6"; src = fetchurl { - url = "https://registry.npmjs.org/coc-java/-/coc-java-1.5.5.tgz"; - sha512 = "vJ0W7q6w+ZulC+/oxq7Shbu2MswPLg9jZSCYqi+rxq9LLSPPJ6GHsPQgQxfFX4C5yvY3GQjl8mWUT60JHbgd+g=="; + url = "https://registry.npmjs.org/coc-java/-/coc-java-1.5.6.tgz"; + sha512 = "AwIVgKdfmeVnf56cI3bOGSGM+SHZ5cIXtWI0xU5ToFGAFk/wJ3YJlpUsHensuBrBrMTIAYHk+O3Mu+FuG9jKZg=="; }; buildInputs = globalBuildInputs; meta = { @@ -94177,10 +94111,10 @@ in coc-json = nodeEnv.buildNodePackage { name = "coc-json"; packageName = "coc-json"; - version = "1.7.0"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-json/-/coc-json-1.7.0.tgz"; - sha512 = "3JoOzhzNsECYuxLbFnXtpDMEX6FtEEvZCnFowPrE7z3v1dNj6uumwMveqdLvg4qagAPOVVV/gaddDLDQmkwb3w=="; + url = "https://registry.npmjs.org/coc-json/-/coc-json-1.8.0.tgz"; + sha512 = "xROp3Sgoa/X4CZWBFteuc+Ug5AV9/xzpCfkgjms0ZVTn7kPgXtrWtl9SXZPI/LJR+SkKSDikcnDJcx2+w5UxkA=="; }; buildInputs = globalBuildInputs; meta = { @@ -94194,10 +94128,10 @@ in coc-lists = nodeEnv.buildNodePackage { name = "coc-lists"; packageName = "coc-lists"; - version = "1.4.5"; + version = "1.4.7"; src = fetchurl { - url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.4.5.tgz"; - sha512 = "yudvfnZtCqReZyLqcJ03gw9zSYHDqQxuH50Otv1Vd8hcSVoSCkZ3BPyRUuQ2qhit768MBUIfO1H9L4JXofGfpA=="; + url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.4.7.tgz"; + sha512 = "FXbaCfhapHGu/ci3mfXZHA+JJMIaobjekg6iGy6fplZCkLV5eyYQiG6du8WPhHTIJ5ZQAckA/D0dUU+pqz2ewg=="; }; buildInputs = globalBuildInputs; meta = { @@ -94254,7 +94188,8 @@ in sha512 = "zFExh1wGAZl4LXSp76NAjWORO9Tyhfw8WtALnhDv741p4tjWjVSEl6GmXTQN0U0tXz8UZ8ln2rL2OaxOdgMCTA=="; }; dependencies = [ - sources."@chemzqm/neovim-5.8.0" + sources."@chemzqm/msgpack-lite-0.1.29" + sources."@chemzqm/neovim-5.8.10" sources."@tootallnate/once-1.1.2" sources."agent-base-6.0.2" sources."arch-2.2.0" @@ -94293,7 +94228,6 @@ in sources."end-of-stream-1.4.4" sources."es-abstract-1.20.4" sources."es-to-primitive-1.2.1" - sources."event-lite-0.1.2" sources."execa-1.0.0" sources."fast-diff-1.2.0" sources."fb-watchman-2.0.2" @@ -94357,16 +94291,15 @@ in ]; }) sources."lodash-4.17.21" - sources."log4js-6.7.0" + sources."log4js-6.7.1" sources."lru-cache-6.0.0" sources."metals-languageclient-0.4.2" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.2" - sources."msgpack-lite-0.1.26" (sources."mv-2.1.1" // { dependencies = [ sources."glob-6.0.4" @@ -94387,7 +94320,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" sources."process-nextick-args-2.0.1" - sources."promise.prototype.finally-3.1.3" + sources."promise.prototype.finally-3.1.4" sources."promisify-child-process-4.1.1" sources."pump-3.0.0" sources."rc-1.2.8" @@ -94411,8 +94344,8 @@ in sources."side-channel-1.0.4" sources."signal-exit-3.0.7" sources."streamroller-3.1.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -94457,10 +94390,10 @@ in coc-pairs = nodeEnv.buildNodePackage { name = "coc-pairs"; packageName = "coc-pairs"; - version = "1.4.0"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.4.0.tgz"; - sha512 = "vIFgI26Z/3AdwyiN5m30q7Z4jIkHIelr9p+ywmPpITOpUW+ZIdYxpIIHAUdOCbM3X2jwxA4+kN0Dn3CBOlcQ5Q=="; + url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.4.1.tgz"; + sha512 = "iWLgnUnd8MXi5k1RQQ5GiCboRg+lpOkcziPCpn8eWpFmXc947XZuZF3CB6zFdNZD8ifNbs9mZtcf31DnLPQuew=="; }; buildInputs = globalBuildInputs; meta = { @@ -94481,7 +94414,7 @@ in sha512 = "t/j62Sjq/eBcaN90b4KPNDuZBP3K+TomXj9RLdiJX0zE7RG2byqsxVTnVKAk9c+qE05jv16C5Zv1qv97ZKcA4g=="; }; dependencies = [ - sources."prettier-2.7.1" + sources."prettier-2.8.0" ]; buildInputs = globalBuildInputs; meta = { @@ -94496,13 +94429,13 @@ in coc-pyright = nodeEnv.buildNodePackage { name = "coc-pyright"; packageName = "coc-pyright"; - version = "1.1.275"; + version = "1.1.282"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.275.tgz"; - sha512 = "yk7c8ELQixTwjXnG24htMTVoWb4C1UXazhs6MiQsUjjJKsuyFntodPtpvkEDyQ3rZKlx8LNCH5g/5N9W7hP8IA=="; + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.282.tgz"; + sha512 = "htiRoHTKVSij3EzN1gDzrC6JrmSgVDltAxgbqUaR6R7guzDYbo7DFmSNi/XCSZ9vzx5+zjLY+NTqIqXtYLUAgA=="; }; dependencies = [ - sources."pyright-1.1.278" + sources."pyright-1.1.282" ]; buildInputs = globalBuildInputs; meta = { @@ -94576,10 +94509,10 @@ in coc-rust-analyzer = nodeEnv.buildNodePackage { name = "coc-rust-analyzer"; packageName = "coc-rust-analyzer"; - version = "0.69.4"; + version = "0.69.7"; src = fetchurl { - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.69.4.tgz"; - sha512 = "fdFjzQkQ1jklsBqxx0PhMGh/sSqQuFhQMSMd/bjtJiHfo0J6DmEPR92s8T9TLwZDnS9XDwb24W8Caky/CJnwEA=="; + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.69.7.tgz"; + sha512 = "j7FvvlNrIvrLmAcm8JOFHGVAX9wADr6o8/5/1MxkV4w8p0Vyz0zd7UND2IwfFsuzDMz6pamzdyKr6ATR1yrLmg=="; }; buildInputs = globalBuildInputs; meta = { @@ -94642,7 +94575,7 @@ in sources."lodash-4.17.21" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."oauth-sign-0.9.0" sources."once-1.4.0" sources."performance-now-2.1.0" @@ -94703,10 +94636,10 @@ in coc-snippets = nodeEnv.buildNodePackage { name = "coc-snippets"; packageName = "coc-snippets"; - version = "3.1.4"; + version = "3.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.1.4.tgz"; - sha512 = "IWN2gEpXz/DxyQPWYYOW8Z2Z/cOn8TeV0+s54BEArZSktRNEAKmnU8qZyqeXRMD46faog7f0zq81BHhkr8X5PQ=="; + url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.1.5.tgz"; + sha512 = "Wj3ED/jHR/tYst8ame+60TuOb1N5/vVMysPAgY4JAJeoHFSA0NRPZkuyRibY7k0SwH6sll6TxqxK3yIYlOa3/g=="; }; buildInputs = globalBuildInputs; meta = { @@ -94737,10 +94670,10 @@ in coc-spell-checker = nodeEnv.buildNodePackage { name = "coc-spell-checker"; packageName = "coc-spell-checker"; - version = "1.2.0"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/coc-spell-checker/-/coc-spell-checker-1.2.0.tgz"; - sha512 = "TuwqtkoDN8MvxLNC7R0932vgAVY+eRIrL4dZoWtIhgQF3WTlIAQBrgC0AHuF0v8q/QeZU8hxEqDIyfTwIKXXJw=="; + url = "https://registry.npmjs.org/coc-spell-checker/-/coc-spell-checker-1.2.2.tgz"; + sha512 = "8D3fYUN4rGKXQEKw+NHSzbyFhXGtAfRxPWmnG1dQ0RcAwAlc9hhCwsK+wRRQ0F0vqilBd2RsHBC4BeVADbbRZw=="; }; dependencies = [ sources."@cspell/dict-aws-1.0.14" @@ -94880,9 +94813,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -94898,16 +94831,16 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -94923,7 +94856,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/unist-2.0.6" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."array-union-2.1.0" @@ -94946,7 +94879,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -94964,7 +94897,7 @@ in sources."color-name-1.1.3" sources."concat-map-0.0.1" sources."convert-source-map-1.9.0" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."cssesc-3.0.0" sources."debug-4.3.4" sources."decamelize-1.2.0" @@ -94995,7 +94928,7 @@ in sources."fast-diff-1.2.0" sources."fast-glob-3.2.12" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" sources."find-up-4.1.0" @@ -95019,7 +94952,7 @@ in sources."hosted-git-info-4.1.0" sources."html-tags-3.2.0" sources."htmlparser2-3.10.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" (sources."import-fresh-3.3.0" // { dependencies = [ sources."resolve-from-4.0.0" @@ -95114,7 +95047,7 @@ in sources."postcss-safe-parser-4.0.2" sources."postcss-sass-0.4.4" sources."postcss-scss-2.1.1" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-syntax-0.36.2" sources."postcss-value-parser-4.2.0" sources."punycode-2.1.1" @@ -95237,10 +95170,10 @@ in coc-sqlfluff = nodeEnv.buildNodePackage { name = "coc-sqlfluff"; packageName = "coc-sqlfluff"; - version = "0.10.6"; + version = "0.10.7"; src = fetchurl { - url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.10.6.tgz"; - sha512 = "bPg2hpTZvsQmu2xObhOmmwxzJIcUig/53hoTHxvXl1g3DyitZEmjhH/4glJOEJdRW/ykFoek2tiK0eMTb2zauw=="; + url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.10.7.tgz"; + sha512 = "kNw/jYf1tcEckp55BQZyXOTlFbZHT7kd72l+mFxCXU53ln4Cl0+mppQe8ephfJbXwlONxhe0XrLQUOzo1xN6wA=="; }; buildInputs = globalBuildInputs; meta = { @@ -95413,15 +95346,13 @@ in coc-tsserver = nodeEnv.buildNodePackage { name = "coc-tsserver"; packageName = "coc-tsserver"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-2.0.0.tgz"; - sha512 = "Xvo8s6Gt6MonuGWR92Q7l6UJj8XA5hS/DPcKmVmnoWYNqLdC/qzms9hVaZuiKr4v7Na1bNXd2ShvFEKjcPS+NA=="; + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-2.1.0.tgz"; + sha512 = "gjc0WOlYu42m46+0kN+uBjSUPKq8kf+1aLuhnCTA6bp6cNRoen4Oe2QtTDGE71CHWSVbNYmAw1TYfRZBmHV8sQ=="; }; dependencies = [ - sources."ansi-regex-6.0.1" - sources."strip-ansi-7.0.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" ]; buildInputs = globalBuildInputs; meta = { @@ -95549,7 +95480,7 @@ in sources."get-intrinsic-1.1.3" sources."glob-7.2.3" sources."glob-parent-5.1.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-symbols-1.0.3" @@ -95588,7 +95519,7 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."progress-2.0.3" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" @@ -95616,7 +95547,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."table-6.8.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."json-schema-traverse-1.0.0" ]; }) @@ -95632,7 +95563,7 @@ in sources."tsutils-2.29.0" sources."type-check-0.4.0" sources."type-fest-0.20.2" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."uri-js-4.4.1" sources."v8-compile-cache-2.3.0" sources."vls-0.7.6" @@ -95660,10 +95591,10 @@ in coc-vimlsp = nodeEnv.buildNodePackage { name = "coc-vimlsp"; packageName = "coc-vimlsp"; - version = "0.12.8"; + version = "0.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.8.tgz"; - sha512 = "t03LSLQgHXvlNcifKTohzNbWq3//sp8B442mwKIUFJshd+1rdMUZfgZCgisMcQjuWaQCG491VYnm/wAP4o0ifA=="; + url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.13.0.tgz"; + sha512 = "xpNefsAkE449QlJUWhUgVyUYN0WsiEjr02PCSIehOjbIpWSVSQHe2+Dj7onu4tYoHQQprbexNSbseMXO0zZ66w=="; }; buildInputs = globalBuildInputs; meta = { @@ -95987,10 +95918,10 @@ in concurrently = nodeEnv.buildNodePackage { name = "concurrently"; packageName = "concurrently"; - version = "7.5.0"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/concurrently/-/concurrently-7.5.0.tgz"; - sha512 = "5E3mwiS+i2JYBzr5BpXkFxOnleZTMsG+WnE/dCG4/P+oiVXrbmrBwJ2ozn4SxwB2EZDrKR568X+puVohxz3/Mg=="; + url = "https://registry.npmjs.org/concurrently/-/concurrently-7.6.0.tgz"; + sha512 = "BKtRgvcJGeZ4XttiDiNcFiRlxoAeZOseqUvyYRUp/Vtd+9p1ULmeoSqGsDA+2ivdeDFpqrJvGvmI+StKfKl5hw=="; }; dependencies = [ sources."ansi-regex-5.0.1" @@ -96011,7 +95942,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."lodash-4.17.21" sources."require-directory-2.1.1" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."shell-quote-1.7.4" sources."spawn-command-0.0.2" sources."string-width-4.2.3" @@ -96341,7 +96272,7 @@ in sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."json-schema-traverse-1.0.0" ]; }) @@ -96432,7 +96363,7 @@ in sources."concat-map-0.0.1" (sources."conf-10.2.0" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."dot-prop-6.0.1" sources."json-schema-traverse-1.0.0" ]; @@ -96448,7 +96379,7 @@ in sources."cookie-0.5.0" sources."cookie-signature-1.0.6" sources."cordova-app-hello-world-6.0.0" - (sources."cordova-common-4.0.2" // { + (sources."cordova-common-4.1.0" // { dependencies = [ sources."fs-extra-9.1.0" ]; @@ -96532,7 +96463,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-parse-1.0.3" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figures-2.0.0" sources."fill-range-7.0.1" (sources."finalhandler-1.2.0" // { @@ -96556,7 +96487,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.3" sources."glob-parent-5.1.2" - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."globby-11.1.0" (sources."got-9.6.0" // { dependencies = [ @@ -96584,7 +96515,7 @@ in sources."human-signals-2.1.0" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-3.0.4" sources."import-fresh-3.3.0" sources."import-lazy-2.1.0" @@ -96691,7 +96622,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-1.4.1" sources."minipass-flush-1.0.5" @@ -96852,7 +96783,7 @@ in sources."strip-json-comments-2.0.1" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."systeminformation-5.12.13" + sources."systeminformation-5.16.1" sources."tar-6.1.12" sources."through-2.3.8" sources."tmp-0.2.1" @@ -96977,7 +96908,7 @@ in sources."error-ex-1.3.2" sources."escape-string-regexp-5.0.0" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."find-up-5.0.0" sources."function-bind-1.1.1" @@ -96988,7 +96919,7 @@ in sources."has-1.0.3" sources."has-flag-3.0.0" sources."hosted-git-info-4.1.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."indent-string-5.0.0" sources."is-arrayish-0.2.1" sources."is-core-module-2.11.0" @@ -97083,7 +97014,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -97348,10 +97279,10 @@ in cspell = nodeEnv.buildNodePackage { name = "cspell"; packageName = "cspell"; - version = "6.14.0"; + version = "6.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-6.14.0.tgz"; - sha512 = "5VZWAMcblumPfdqftTUmTioLc1oqd2l+hUOeeIIYSvj6S1gsjcrz7cezRQE4iL5vdD4op0ee/3O4nN5n/OEJVQ=="; + url = "https://registry.npmjs.org/cspell/-/cspell-6.16.0.tgz"; + sha512 = "vp65C2POzIyBvEFsZ/Zr9PAR65YnrY+xrnTeAbrqGPD0HnRCHUwKAazB3O05WyP8ovoJidSHWgaC+2G0P2GA5w=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -97366,32 +97297,32 @@ in sources."supports-color-5.5.0" ]; }) - sources."@cspell/cspell-bundled-dicts-6.14.0" - sources."@cspell/cspell-pipe-6.14.0" - sources."@cspell/cspell-service-bus-6.14.0" - sources."@cspell/cspell-types-6.14.0" - sources."@cspell/dict-ada-3.0.0" + sources."@cspell/cspell-bundled-dicts-6.16.0" + sources."@cspell/cspell-pipe-6.16.0" + sources."@cspell/cspell-service-bus-6.16.0" + sources."@cspell/cspell-types-6.16.0" + sources."@cspell/dict-ada-4.0.0" sources."@cspell/dict-aws-3.0.0" - sources."@cspell/dict-bash-3.0.0" + sources."@cspell/dict-bash-4.1.0" sources."@cspell/dict-companies-3.0.3" sources."@cspell/dict-cpp-4.0.0" sources."@cspell/dict-cryptocurrencies-3.0.1" - sources."@cspell/dict-csharp-4.0.1" - sources."@cspell/dict-css-3.0.0" + sources."@cspell/dict-csharp-4.0.2" + sources."@cspell/dict-css-4.0.0" sources."@cspell/dict-dart-2.0.0" - sources."@cspell/dict-django-3.0.0" + sources."@cspell/dict-django-4.0.0" sources."@cspell/dict-docker-1.1.3" - sources."@cspell/dict-dotnet-3.0.1" - sources."@cspell/dict-elixir-3.0.0" + sources."@cspell/dict-dotnet-4.0.0" + sources."@cspell/dict-elixir-4.0.0" sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.0.0" + sources."@cspell/dict-en_us-4.1.0" sources."@cspell/dict-filetypes-3.0.0" sources."@cspell/dict-fonts-3.0.0" sources."@cspell/dict-fullstack-3.0.0" sources."@cspell/dict-git-2.0.0" - sources."@cspell/dict-golang-4.0.0" - sources."@cspell/dict-haskell-3.0.0" - sources."@cspell/dict-html-4.0.0" + sources."@cspell/dict-golang-5.0.0" + sources."@cspell/dict-haskell-4.0.0" + sources."@cspell/dict-html-4.0.1" sources."@cspell/dict-html-symbol-entities-4.0.0" sources."@cspell/dict-java-5.0.2" sources."@cspell/dict-latex-3.0.0" @@ -97409,12 +97340,14 @@ in sources."@cspell/dict-scala-3.0.0" sources."@cspell/dict-software-terms-3.0.5" sources."@cspell/dict-sql-2.0.0" + sources."@cspell/dict-svelte-1.0.0" sources."@cspell/dict-swift-2.0.0" sources."@cspell/dict-typescript-3.0.1" sources."@cspell/dict-vue-3.0.0" - sources."@types/parse-json-4.0.0" + sources."@cspell/strong-weak-map-6.16.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" + sources."argparse-2.0.1" sources."array-timsort-1.0.3" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" @@ -97429,15 +97362,15 @@ in sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."core-util-is-1.0.3" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-8.0.0" sources."crypto-random-string-2.0.0" - sources."cspell-dictionary-6.14.0" - sources."cspell-gitignore-6.14.0" - sources."cspell-glob-6.14.0" - sources."cspell-grammar-6.14.0" - sources."cspell-io-6.14.0" - sources."cspell-lib-6.14.0" - sources."cspell-trie-lib-6.14.0" + sources."cspell-dictionary-6.16.0" + sources."cspell-gitignore-6.16.0" + sources."cspell-glob-6.16.0" + sources."cspell-grammar-6.16.0" + sources."cspell-io-6.16.0" + sources."cspell-lib-6.16.0" + sources."cspell-trie-lib-6.16.0" sources."dot-prop-5.3.0" sources."encoding-0.1.13" sources."error-ex-1.3.2" @@ -97457,7 +97390,7 @@ in (sources."glob-8.0.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."global-dirs-0.1.1" @@ -97480,6 +97413,7 @@ in sources."is-obj-2.0.0" sources."is-typedarray-1.0.0" sources."js-tokens-4.0.0" + sources."js-yaml-4.1.0" sources."json-parse-even-better-errors-2.3.1" sources."jsonfile-6.1.0" sources."lines-and-columns-1.2.4" @@ -97528,7 +97462,6 @@ in sources."write-file-atomic-3.0.3" sources."xdg-basedir-4.0.0" sources."yallist-4.0.0" - sources."yaml-1.10.2" sources."yocto-queue-0.1.0" ]; buildInputs = globalBuildInputs; @@ -97722,7 +97655,7 @@ in sources."ms-2.1.2" ]; }) - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-response-4.2.1" sources."deep-extend-0.6.0" sources."define-property-2.0.2" @@ -97881,6 +97814,7 @@ in sources."kind-of-6.0.3" sources."last-one-wins-1.0.4" sources."latest-version-3.1.0" + sources."lodash-4.17.21" sources."lodash.throttle-4.1.1" sources."lowercase-keys-1.0.1" sources."lru-cache-4.1.5" @@ -98164,7 +98098,11 @@ in }) sources."which-1.3.1" sources."widest-line-2.0.1" - sources."winston-2.4.6" + (sources."winston-2.4.7" // { + dependencies = [ + sources."async-2.6.4" + ]; + }) sources."wrappy-1.0.2" sources."write-file-atomic-2.4.3" sources."xdg-basedir-3.0.0" @@ -98202,694 +98140,6 @@ in bypassCache = true; reconstructLock = true; }; - "deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage { - name = "deltachat-desktop"; - packageName = "deltachat-desktop"; - version = "1.30.1"; - src = ../../applications/networking/instant-messengers/deltachat-desktop; - dependencies = [ - sources."@ampproject/remapping-2.2.0" - sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { - dependencies = [ - sources."@jridgewell/gen-mapping-0.3.2" - ]; - }) - sources."@babel/helper-annotate-as-pure-7.18.6" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" - sources."@babel/helper-compilation-targets-7.20.0" - sources."@babel/helper-create-class-features-plugin-7.20.2" - sources."@babel/helper-create-regexp-features-plugin-7.19.0" - sources."@babel/helper-define-polyfill-provider-0.3.3" - sources."@babel/helper-environment-visitor-7.18.9" - sources."@babel/helper-explode-assignable-expression-7.18.6" - sources."@babel/helper-function-name-7.19.0" - sources."@babel/helper-hoist-variables-7.18.6" - sources."@babel/helper-member-expression-to-functions-7.18.9" - sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.2" - sources."@babel/helper-optimise-call-expression-7.18.6" - sources."@babel/helper-plugin-utils-7.20.2" - sources."@babel/helper-remap-async-to-generator-7.18.9" - sources."@babel/helper-replace-supers-7.19.1" - sources."@babel/helper-simple-access-7.20.2" - sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0" - sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.19.4" - sources."@babel/helper-validator-identifier-7.19.1" - sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.20.1" - sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" - sources."@babel/plugin-proposal-async-generator-functions-7.20.1" - sources."@babel/plugin-proposal-class-properties-7.18.6" - sources."@babel/plugin-proposal-class-static-block-7.18.6" - sources."@babel/plugin-proposal-dynamic-import-7.18.6" - sources."@babel/plugin-proposal-export-namespace-from-7.18.9" - sources."@babel/plugin-proposal-json-strings-7.18.6" - sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" - sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.20.2" - sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" - sources."@babel/plugin-proposal-optional-chaining-7.18.9" - sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.18.6" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" - sources."@babel/plugin-syntax-async-generators-7.8.4" - sources."@babel/plugin-syntax-class-properties-7.12.13" - sources."@babel/plugin-syntax-class-static-block-7.14.5" - sources."@babel/plugin-syntax-dynamic-import-7.8.3" - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" - sources."@babel/plugin-syntax-import-assertions-7.20.0" - sources."@babel/plugin-syntax-json-strings-7.8.3" - sources."@babel/plugin-syntax-jsx-7.18.6" - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" - sources."@babel/plugin-syntax-numeric-separator-7.10.4" - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" - sources."@babel/plugin-syntax-optional-chaining-7.8.3" - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" - sources."@babel/plugin-syntax-top-level-await-7.14.5" - sources."@babel/plugin-transform-arrow-functions-7.18.6" - sources."@babel/plugin-transform-async-to-generator-7.18.6" - sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" - sources."@babel/plugin-transform-classes-7.20.2" - sources."@babel/plugin-transform-computed-properties-7.18.9" - sources."@babel/plugin-transform-destructuring-7.20.2" - sources."@babel/plugin-transform-dotall-regex-7.18.6" - sources."@babel/plugin-transform-duplicate-keys-7.18.9" - sources."@babel/plugin-transform-exponentiation-operator-7.18.6" - sources."@babel/plugin-transform-for-of-7.18.8" - sources."@babel/plugin-transform-function-name-7.18.9" - sources."@babel/plugin-transform-literals-7.18.9" - sources."@babel/plugin-transform-member-expression-literals-7.18.6" - sources."@babel/plugin-transform-modules-amd-7.19.6" - sources."@babel/plugin-transform-modules-commonjs-7.19.6" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" - sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" - sources."@babel/plugin-transform-new-target-7.18.6" - sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" - sources."@babel/plugin-transform-property-literals-7.18.6" - sources."@babel/plugin-transform-react-display-name-7.18.6" - sources."@babel/plugin-transform-react-jsx-7.19.0" - sources."@babel/plugin-transform-react-jsx-development-7.18.6" - sources."@babel/plugin-transform-react-pure-annotations-7.18.6" - sources."@babel/plugin-transform-regenerator-7.18.6" - sources."@babel/plugin-transform-reserved-words-7.18.6" - sources."@babel/plugin-transform-shorthand-properties-7.18.6" - sources."@babel/plugin-transform-spread-7.19.0" - sources."@babel/plugin-transform-sticky-regex-7.18.6" - sources."@babel/plugin-transform-template-literals-7.18.9" - sources."@babel/plugin-transform-typeof-symbol-7.18.9" - sources."@babel/plugin-transform-unicode-escapes-7.18.10" - sources."@babel/plugin-transform-unicode-regex-7.18.6" - sources."@babel/preset-env-7.20.2" - sources."@babel/preset-modules-0.1.5" - sources."@babel/preset-react-7.18.6" - sources."@babel/runtime-7.20.1" - sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" - sources."@blueprintjs/colors-4.1.8" - sources."@blueprintjs/core-4.11.6" - sources."@blueprintjs/icons-4.10.0" - sources."@deltachat/message_parser_wasm-0.4.0" - sources."@deltachat/react-qr-reader-4.0.0" - sources."@electron/get-1.14.1" - sources."@hypnosphi/create-react-context-0.3.1" - sources."@jridgewell/gen-mapping-0.1.1" - sources."@jridgewell/resolve-uri-3.1.0" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.17" - sources."@juggle/resize-observer-3.4.0" - sources."@mapbox/extent-0.4.0" - sources."@mapbox/geojson-coords-0.0.2" - sources."@mapbox/geojson-extent-1.0.1" - sources."@mapbox/geojson-normalize-0.0.1" - sources."@mapbox/geojson-rewind-0.5.2" - sources."@mapbox/geojson-types-1.0.2" - sources."@mapbox/jsonlint-lines-primitives-2.0.2" - sources."@mapbox/mapbox-gl-supported-1.5.0" - sources."@mapbox/point-geometry-0.1.0" - sources."@mapbox/tiny-sdf-1.2.5" - sources."@mapbox/unitbezier-0.0.0" - sources."@mapbox/vector-tile-1.3.1" - sources."@mapbox/whoots-js-3.1.0" - sources."@sindresorhus/is-0.14.0" - sources."@szmarczak/http-timer-1.1.2" - sources."@types/debounce-1.2.1" - sources."@types/dom4-2.0.2" - sources."@types/emoji-mart-3.0.9" - sources."@types/geojson-7946.0.10" - sources."@types/mapbox-gl-0.54.5" - sources."@types/mime-types-2.1.1" - sources."@types/minimist-1.2.2" - sources."@types/node-14.18.33" - sources."@types/prop-types-15.7.5" - sources."@types/rc-1.2.1" - sources."@types/react-17.0.52" - sources."@types/react-dom-17.0.18" - sources."@types/react-window-1.8.5" - sources."@types/react-window-infinite-loader-1.0.6" - sources."@types/scheduler-0.16.2" - sources."@types/url-parse-1.4.8" - sources."ansi-styles-3.2.1" - (sources."anymatch-2.0.0" // { - dependencies = [ - sources."normalize-path-2.1.1" - ]; - }) - sources."application-config-1.0.1" - sources."application-config-path-0.1.0" - sources."arr-diff-4.0.0" - sources."arr-flatten-1.1.0" - sources."arr-union-3.1.0" - sources."array-each-1.0.1" - sources."array-slice-1.1.0" - sources."array-unique-0.3.2" - sources."assign-symbols-1.0.0" - sources."async-done-1.3.2" - sources."async-each-1.0.3" - sources."atob-2.1.2" - sources."babel-plugin-polyfill-corejs2-0.3.3" - sources."babel-plugin-polyfill-corejs3-0.6.0" - sources."babel-plugin-polyfill-regenerator-0.4.1" - (sources."base-0.11.2" // { - dependencies = [ - sources."define-property-1.0.0" - ]; - }) - sources."binary-extensions-1.13.1" - sources."bindings-1.5.0" - sources."boolean-3.2.0" - (sources."braces-2.3.2" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."browserslist-4.21.4" - sources."buffer-crc32-0.2.13" - sources."buffer-from-1.1.2" - sources."cache-base-1.0.1" - (sources."cacheable-request-6.1.0" // { - dependencies = [ - sources."get-stream-5.2.0" - sources."lowercase-keys-2.0.0" - ]; - }) - sources."call-bind-1.0.2" - sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001431" - sources."capital-case-1.0.4" - sources."chalk-2.4.2" - sources."change-case-4.1.2" - sources."chokidar-2.1.8" - (sources."class-utils-0.3.6" // { - dependencies = [ - sources."define-property-0.2.5" - (sources."is-accessor-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - (sources."is-data-descriptor-0.1.4" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-descriptor-0.1.6" - sources."kind-of-5.1.0" - ]; - }) - sources."classnames-2.3.2" - sources."clone-response-1.0.3" - sources."collection-visit-1.0.0" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."component-emitter-1.3.0" - sources."concat-stream-1.6.2" - sources."config-chain-1.1.13" - sources."constant-case-3.0.4" - sources."convert-source-map-1.9.0" - sources."copy-descriptor-0.1.1" - sources."core-js-compat-3.26.0" - sources."core-util-is-1.0.3" - sources."csscolorparser-1.0.3" - sources."csstype-3.1.1" - sources."debounce-1.2.1" - sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" - sources."decompress-response-3.3.0" - sources."deep-equal-1.1.1" - sources."deep-extend-0.6.0" - sources."defer-to-connect-1.1.3" - sources."define-properties-1.1.4" - sources."define-property-2.0.2" - sources."deltachat-node-1.86.0" - sources."detect-node-2.1.0" - sources."dom-helpers-5.2.1" - sources."dom4-2.1.6" - sources."dot-case-3.0.4" - sources."duplexer3-0.1.5" - sources."earcut-2.2.4" - (sources."electron-18.3.15" // { - dependencies = [ - sources."@types/node-16.18.3" - ]; - }) - sources."electron-to-chromium-1.4.284" - sources."emoji-js-clean-4.0.0" - sources."emoji-mart-3.0.1" - sources."emoji-regex-9.2.2" - sources."encodeurl-1.0.2" - sources."end-of-stream-1.4.4" - sources."env-paths-2.2.1" - sources."error-stack-parser-2.1.4" - sources."es6-error-4.1.1" - sources."esbuild-0.12.29" - sources."escalade-3.1.1" - sources."escape-string-regexp-1.0.5" - sources."esutils-2.0.3" - (sources."expand-brackets-2.1.4" // { - dependencies = [ - sources."debug-2.6.9" - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (sources."is-accessor-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - (sources."is-data-descriptor-0.1.4" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-descriptor-0.1.6" - sources."kind-of-5.1.0" - sources."ms-2.0.0" - ]; - }) - (sources."extend-shallow-3.0.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - (sources."extglob-2.0.4" // { - dependencies = [ - sources."define-property-1.0.0" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."extract-zip-1.7.0" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."fd-slicer-1.1.0" - sources."file-uri-to-path-1.0.0" - sources."filesize-8.0.7" - (sources."fill-range-4.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."for-in-1.0.2" - sources."for-own-1.0.0" - sources."fragment-cache-0.2.1" - sources."fs-extra-8.1.0" - sources."fsevents-1.2.13" - sources."function-bind-1.1.1" - sources."functions-have-names-1.2.3" - sources."gensync-1.0.0-beta.2" - sources."geojson-flatten-1.1.1" - sources."geojson-vt-3.2.1" - sources."get-intrinsic-1.1.3" - sources."get-stream-6.0.1" - sources."get-value-2.0.6" - sources."gl-matrix-3.4.3" - (sources."glob-parent-3.1.0" // { - dependencies = [ - sources."is-glob-3.1.0" - ]; - }) - sources."glob-watcher-5.0.5" - (sources."global-agent-3.0.0" // { - dependencies = [ - sources."semver-7.3.8" - ]; - }) - sources."global-tunnel-ng-2.7.1" - sources."globals-11.12.0" - sources."globalthis-1.0.3" - (sources."got-9.6.0" // { - dependencies = [ - sources."get-stream-4.1.0" - ]; - }) - sources."graceful-fs-4.2.10" - sources."grid-index-1.1.0" - sources."gud-1.0.0" - sources."has-1.0.3" - sources."has-flag-3.0.0" - sources."has-property-descriptors-1.0.0" - sources."has-symbols-1.0.3" - sources."has-tostringtag-1.0.0" - sources."has-value-1.0.0" - (sources."has-values-1.0.0" // { - dependencies = [ - sources."kind-of-4.0.0" - ]; - }) - sources."header-case-2.0.4" - sources."http-cache-semantics-4.1.0" - sources."ieee754-1.2.1" - sources."immutable-4.1.0" - sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."is-accessor-descriptor-1.0.0" - sources."is-arguments-1.1.1" - sources."is-binary-path-1.0.1" - sources."is-buffer-1.1.6" - sources."is-core-module-2.11.0" - sources."is-data-descriptor-1.0.0" - sources."is-date-object-1.0.5" - sources."is-descriptor-1.0.2" - sources."is-extendable-0.1.1" - sources."is-extglob-2.1.1" - sources."is-glob-4.0.3" - sources."is-negated-glob-1.0.0" - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-plain-object-2.0.4" - sources."is-regex-1.1.4" - sources."is-windows-1.0.2" - sources."isarray-1.0.0" - sources."isobject-3.0.1" - sources."js-tokens-4.0.0" - sources."jsesc-2.5.2" - sources."json-buffer-3.0.0" - sources."json-stringify-safe-5.0.1" - sources."json5-2.2.1" - sources."jsonfile-4.0.0" - sources."jsqr-1.4.0" - sources."just-debounce-1.1.0" - sources."kdbush-3.0.0" - sources."keyv-3.1.0" - sources."kind-of-6.0.3" - sources."lodash-4.17.21" - sources."lodash.debounce-4.0.8" - sources."loose-envify-1.4.0" - sources."lower-case-2.0.2" - sources."lowercase-keys-1.0.1" - sources."lru-cache-6.0.0" - sources."map-cache-0.2.2" - sources."map-visit-1.0.0" - (sources."mapbox-gl-1.13.2" // { - dependencies = [ - sources."rw-1.3.3" - ]; - }) - (sources."matcher-3.0.0" // { - dependencies = [ - sources."escape-string-regexp-4.0.0" - ]; - }) - sources."memoize-one-5.2.1" - sources."micromatch-3.1.10" - sources."mime-db-1.52.0" - sources."mime-types-2.1.35" - sources."mimic-response-1.0.1" - sources."minimist-1.2.7" - (sources."mixin-deep-1.3.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."mkdirp-0.5.6" - sources."moment-2.29.4" - sources."ms-2.1.2" - sources."murmurhash-js-1.0.0" - sources."nan-2.17.0" - sources."nanomatch-1.2.13" - sources."napi-macros-2.1.0" - sources."no-case-3.0.4" - sources."node-gyp-build-4.5.0" - sources."node-releases-2.0.6" - sources."normalize-path-3.0.0" - sources."normalize-url-4.5.1" - sources."normalize.css-8.0.1" - sources."npm-conf-1.1.3" - sources."object-assign-4.1.1" - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."define-property-0.2.5" - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."is-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - sources."kind-of-3.2.2" - ]; - }) - sources."object-is-1.1.5" - sources."object-keys-1.1.1" - sources."object-visit-1.0.1" - sources."object.defaults-1.1.0" - sources."object.pick-1.3.0" - sources."once-1.4.0" - sources."p-cancelable-1.1.0" - sources."param-case-3.0.4" - sources."pascal-case-3.1.2" - sources."pascalcase-0.1.1" - sources."path-browserify-1.0.1" - sources."path-case-3.0.4" - sources."path-dirname-1.0.2" - sources."path-is-absolute-1.0.1" - sources."path-parse-1.0.7" - sources."pbf-3.2.1" - sources."pend-1.2.0" - sources."picocolors-1.0.0" - sources."picomatch-2.3.1" - sources."pify-3.0.0" - sources."popper.js-1.16.1" - sources."posix-character-classes-0.1.1" - sources."potpack-1.0.2" - sources."prepend-http-2.0.0" - sources."process-nextick-args-2.0.1" - sources."progress-2.0.3" - sources."prop-types-15.8.1" - sources."proto-list-1.2.4" - sources."protocol-buffers-schema-3.6.0" - sources."pump-3.0.0" - sources."querystringify-2.2.0" - sources."quickselect-2.0.0" - sources."rc-1.2.8" - sources."react-17.0.2" - sources."react-dom-17.0.2" - sources."react-is-16.13.1" - sources."react-popper-1.3.11" - sources."react-string-replace-1.1.0" - sources."react-transition-group-4.4.5" - sources."react-virtualized-auto-sizer-1.0.7" - sources."react-window-1.8.8" - sources."react-window-infinite-loader-1.0.8" - sources."react-zoom-pan-pinch-2.1.3" - sources."readable-stream-2.3.7" - sources."readdirp-2.2.1" - sources."regenerate-1.4.2" - sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - sources."regenerator-transform-0.15.0" - sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.3" - sources."regexpu-core-5.2.1" - sources."regjsgen-0.7.1" - (sources."regjsparser-0.9.1" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - sources."remove-trailing-separator-1.1.0" - sources."repeat-element-1.1.4" - sources."repeat-string-1.6.1" - sources."requires-port-1.0.0" - sources."resolve-1.22.1" - sources."resolve-protobuf-schema-2.1.0" - sources."resolve-url-0.2.1" - sources."responselike-1.0.2" - sources."ret-0.1.15" - sources."roarr-2.15.4" - sources."rtcpeerconnection-shim-1.2.15" - sources."rw-0.1.4" - sources."safe-buffer-5.1.2" - sources."safe-regex-1.1.0" - (sources."sass-1.56.0" // { - dependencies = [ - sources."anymatch-3.1.2" - sources."binary-extensions-2.2.0" - sources."braces-3.0.2" - sources."chokidar-3.5.3" - sources."fill-range-7.0.1" - sources."fsevents-2.3.2" - sources."glob-parent-5.1.2" - sources."is-binary-path-2.1.0" - sources."is-number-7.0.0" - sources."readdirp-3.6.0" - sources."to-regex-range-5.0.1" - ]; - }) - sources."sax-1.2.4" - sources."scheduler-0.20.2" - sources."sdp-2.12.0" - sources."semver-6.3.0" - sources."semver-compare-1.0.0" - sources."sentence-case-3.0.4" - sources."serialize-error-7.0.1" - (sources."set-value-2.0.1" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."snake-case-3.0.4" - (sources."snapdragon-0.8.2" // { - dependencies = [ - sources."debug-2.6.9" - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (sources."is-accessor-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - (sources."is-data-descriptor-0.1.4" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-descriptor-0.1.6" - sources."kind-of-5.1.0" - sources."ms-2.0.0" - sources."source-map-0.5.7" - ]; - }) - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - sources."define-property-1.0.0" - ]; - }) - (sources."snapdragon-util-3.0.1" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."source-map-0.6.1" - sources."source-map-js-1.0.2" - sources."source-map-resolve-0.5.3" - sources."source-map-support-0.5.21" - sources."source-map-url-0.4.1" - sources."split-string-3.1.0" - sources."sprintf-js-1.1.2" - sources."stackframe-1.3.4" - (sources."static-extend-0.1.2" // { - dependencies = [ - sources."define-property-0.2.5" - (sources."is-accessor-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - (sources."is-data-descriptor-0.1.4" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-descriptor-0.1.6" - sources."kind-of-5.1.0" - ]; - }) - sources."stream-exhaust-1.0.2" - sources."string_decoder-1.1.1" - sources."strip-json-comments-2.0.1" - sources."sumchecker-3.0.1" - sources."supercluster-7.1.5" - sources."supports-color-5.5.0" - sources."supports-preserve-symlinks-flag-1.0.0" - sources."tinyqueue-2.0.3" - sources."to-fast-properties-2.0.0" - (sources."to-object-path-0.3.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."to-readable-stream-1.0.0" - sources."to-regex-3.0.2" - sources."to-regex-range-2.1.1" - sources."traverse-0.6.7" - sources."tslib-2.3.1" - sources."tunnel-0.0.6" - sources."type-fest-0.13.1" - sources."typed-styles-0.0.7" - sources."typedarray-0.0.6" - sources."typescript-4.8.4" - sources."unicode-canonical-property-names-ecmascript-2.0.0" - sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" - sources."unicode-property-aliases-ecmascript-2.1.0" - sources."union-value-1.0.1" - sources."universalify-0.1.2" - (sources."unset-value-1.0.0" // { - dependencies = [ - (sources."has-value-0.3.1" // { - dependencies = [ - sources."isobject-2.1.0" - ]; - }) - sources."has-values-0.1.4" - ]; - }) - sources."upath-1.2.0" - sources."update-browserslist-db-1.0.10" - sources."upper-case-2.0.2" - sources."upper-case-first-2.0.2" - sources."urix-0.1.0" - sources."url-parse-1.5.10" - sources."url-parse-lax-3.0.0" - sources."use-3.1.1" - sources."use-debounce-3.4.3" - sources."util-deprecate-1.0.2" - sources."vt-pbf-3.1.3" - sources."warning-4.0.3" - sources."webrtc-adapter-6.4.8" - sources."wrappy-1.0.2" - sources."xml-js-1.6.11" - sources."yallist-4.0.0" - sources."yauzl-2.10.0" - ]; - buildInputs = globalBuildInputs; - meta = { - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; dhcp = nodeEnv.buildNodePackage { name = "dhcp"; packageName = "dhcp"; @@ -98935,7 +98185,7 @@ in sources."del-6.1.1" sources."dir-glob-3.0.1" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."fs.realpath-1.0.0" @@ -98943,7 +98193,7 @@ in sources."glob-parent-5.1.2" sources."globby-11.1.0" sources."graceful-fs-4.2.10" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."indent-string-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -99032,15 +98282,15 @@ in elasticdump = nodeEnv.buildNodePackage { name = "elasticdump"; packageName = "elasticdump"; - version = "6.94.0"; + version = "6.94.1"; src = fetchurl { - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.94.0.tgz"; - sha512 = "zrtDTag8MMH0dieW4dsLB0DDIVki9viANxNtMQGKFhr4SudvC0vWe6IdxXbSK0Ynvlz+arz5JNQmLzGKO5BCGQ=="; + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.94.1.tgz"; + sha512 = "VThINQBW1MG7k7oVGndPBXCL6cFSfByu2EZo0gch9l7voyv1FfxyrIp9cZ5Ft9Vwygjh7sXSomnWaQ+qzmkfKA=="; }; dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.33" + sources."@types/node-14.18.34" sources."JSONStream-1.3.5" sources."ajv-6.12.6" sources."asn1-0.2.6" @@ -99177,22 +98427,21 @@ in "@electron-forge/cli" = nodeEnv.buildNodePackage { name = "_at_electron-forge_slash_cli"; packageName = "@electron-forge/cli"; - version = "6.0.0"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0.tgz"; - sha512 = "fdv4V1anQ+CQ9efTLOHoBjrlbT4imaS6czRh7P9LV4U3eDa3B6ofp9NpvLvRE/2Mckl4oDBA5GGRsUSsUwqMkg=="; + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.4.tgz"; + sha512 = "iyQyh0g/cSWVQs30wsAqmTmqgV8E/i9Cy/CsHwHxQlsHHcq8N61k1JlB2dpEV1Hy9Lxafql5TE3/6uI7939IEg=="; }; dependencies = [ - sources."@electron-forge/async-ora-6.0.0" - sources."@electron-forge/core-6.0.0" - sources."@electron-forge/core-utils-6.0.0" - sources."@electron-forge/maker-base-6.0.0" - sources."@electron-forge/plugin-base-6.0.0" - sources."@electron-forge/publisher-base-6.0.0" - sources."@electron-forge/shared-types-6.0.0" - sources."@electron-forge/template-base-6.0.0" - sources."@electron-forge/template-webpack-6.0.0" - sources."@electron-forge/template-webpack-typescript-6.0.0" + sources."@electron-forge/core-6.0.4" + sources."@electron-forge/core-utils-6.0.4" + sources."@electron-forge/maker-base-6.0.4" + sources."@electron-forge/plugin-base-6.0.4" + sources."@electron-forge/publisher-base-6.0.4" + sources."@electron-forge/shared-types-6.0.4" + sources."@electron-forge/template-base-6.0.4" + sources."@electron-forge/template-webpack-6.0.4" + sources."@electron-forge/template-webpack-typescript-6.0.4" (sources."@electron/asar-3.2.2" // { dependencies = [ sources."commander-5.1.0" @@ -99211,9 +98460,9 @@ in sources."fs-extra-9.1.0" ]; }) - sources."@electron/osx-sign-1.0.1" + sources."@electron/osx-sign-1.0.2" sources."@electron/rebuild-3.2.10" - (sources."@electron/universal-1.3.3" // { + (sources."@electron/universal-1.3.4" // { dependencies = [ sources."@malept/cross-spawn-promise-1.1.1" sources."fs-extra-9.1.0" @@ -99229,12 +98478,12 @@ in sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" sources."@tootallnate/once-2.0.0" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/glob-7.2.0" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" + sources."@types/keyv-3.1.4" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."abbrev-1.1.1" @@ -99263,26 +98512,24 @@ in sources."braces-3.0.2" sources."buffer-5.7.1" sources."buffer-crc32-0.2.13" - sources."buffer-equal-1.0.0" + sources."buffer-equal-1.0.1" sources."buffer-from-1.1.2" (sources."cacache-16.1.3" // { dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."cacheable-lookup-5.0.4" sources."cacheable-request-7.0.2" sources."chalk-4.1.2" - sources."chardet-0.7.0" sources."chownr-2.0.0" sources."chromium-pickle-js-0.2.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" sources."cli-spinners-2.7.0" sources."cli-truncate-2.1.0" - sources."cli-width-3.0.0" sources."cliui-8.0.1" sources."clone-1.0.4" sources."clone-response-1.0.3" @@ -99290,7 +98537,6 @@ in sources."color-name-1.1.4" sources."color-support-1.1.3" sources."colorette-2.0.19" - sources."colors-1.0.3" sources."commander-4.1.1" sources."compare-version-0.1.2" sources."concat-map-0.0.1" @@ -99318,12 +98564,7 @@ in sources."depd-1.1.2" sources."detect-libc-2.0.1" sources."detect-node-2.1.0" - (sources."dir-compare-2.4.0" // { - dependencies = [ - sources."commander-2.9.0" - sources."minimatch-3.0.4" - ]; - }) + sources."dir-compare-3.3.0" sources."electron-packager-17.1.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -99347,16 +98588,10 @@ in ]; }) sources."expand-tilde-2.0.2" - (sources."external-editor-3.1.0" // { - dependencies = [ - sources."iconv-lite-0.4.24" - ]; - }) sources."extract-zip-2.0.1" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fd-slicer-1.1.0" - sources."figures-3.2.0" sources."filename-reserved-regex-2.0.0" sources."filenamify-4.3.0" sources."fill-range-7.0.1" @@ -99410,7 +98645,6 @@ in sources."globalthis-1.0.3" sources."got-11.8.5" sources."graceful-fs-4.2.10" - sources."graceful-readlink-1.0.1" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" @@ -99431,7 +98665,6 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."inquirer-8.2.5" sources."interpret-3.1.1" sources."ip-2.0.0" sources."is-arrayish-0.2.1" @@ -99453,8 +98686,8 @@ in sources."json-stringify-safe-5.0.1" sources."jsonfile-6.1.0" sources."junk-3.1.0" - sources."keyv-4.5.1" - sources."listr2-5.0.5" + sources."keyv-4.5.2" + sources."listr2-5.0.6" sources."load-json-file-2.0.0" sources."locate-path-2.0.0" sources."lodash-4.17.21" @@ -99483,7 +98716,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" @@ -99492,10 +98725,9 @@ in sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.3" - sources."mute-stream-0.0.8" sources."negotiator-0.6.3" sources."nice-try-1.0.5" - sources."node-abi-3.28.0" + sources."node-abi-3.30.0" sources."node-addon-api-3.2.1" sources."node-api-version-0.1.4" sources."node-fetch-2.6.7" @@ -99518,7 +98750,6 @@ in sources."once-1.4.0" sources."onetime-5.1.2" sources."ora-5.4.1" - sources."os-tmpdir-1.0.2" sources."p-cancelable-2.1.1" sources."p-defer-1.0.0" sources."p-finally-1.0.0" @@ -99529,7 +98760,6 @@ in sources."p-try-1.0.0" sources."parse-author-2.0.0" sources."parse-json-2.2.0" - sources."parse-ms-2.1.0" sources."parse-passwd-1.0.0" sources."path-exists-3.0.0" sources."path-is-absolute-1.0.1" @@ -99550,7 +98780,6 @@ in ]; }) sources."plist-3.0.6" - sources."pretty-ms-7.0.1" sources."progress-2.0.3" sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" @@ -99578,9 +98807,8 @@ in sources."rfdc-1.3.0" sources."rimraf-3.0.2" sources."roarr-2.15.4" - sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" (sources."semver-7.3.8" // { @@ -99618,7 +98846,6 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."tar-6.1.12" sources."through-2.3.8" - sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."trim-repeated-1.0.0" @@ -99668,10 +98895,10 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "2.6.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-2.6.0.tgz"; - sha512 = "fblslsf7Hz6oSKAXxnXVX9Jckqxee0hlBxo1SoI4eFgDQCK8crxoNGyEg0w1q1f830Sh+CoM0uteiJIiLGiXcQ=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-2.8.0.tgz"; + sha512 = "IdrIAsLxwmt8Nv2LPh9KfKI63GB4vCs+Z6uWK74zOABm8+swfsxNDn3vsQYEZnm1gWN3Vgj8paMFoMbbjRvOVA=="; }; dependencies = [ sources."@babel/code-frame-7.10.4" @@ -99695,8 +98922,8 @@ in }) sources."@expo/config-plugins-5.0.1" sources."@expo/config-types-46.0.2" - sources."@expo/eas-build-job-0.2.96" - (sources."@expo/eas-json-2.6.0" // { + sources."@expo/eas-build-job-0.2.97" + (sources."@expo/eas-json-2.8.0" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; @@ -99780,7 +99007,7 @@ in sources."@urql/exchange-retry-1.0.0" sources."@xmldom/xmldom-0.7.9" sources."agent-base-6.0.2" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-formats-2.1.1" (sources."ansi-escapes-4.3.2" // { dependencies = [ @@ -99870,7 +99097,7 @@ in }) sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fetch-retry-4.1.1" sources."figures-3.2.0" sources."filelist-1.0.4" @@ -99962,7 +99189,7 @@ in ]; }) sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-0.5.6" sources."ms-2.1.2" @@ -100002,7 +99229,11 @@ in sources."p-locate-5.0.0" sources."p-try-2.2.0" sources."parse-json-4.0.0" - sources."parse-png-2.1.0" + (sources."parse-png-2.1.0" // { + dependencies = [ + sources."pngjs-3.4.0" + ]; + }) (sources."password-prompt-1.1.2" // { dependencies = [ sources."ansi-escapes-3.2.0" @@ -100023,7 +99254,7 @@ in ]; }) sources."plist-3.0.6" - sources."pngjs-3.4.0" + sources."pngjs-6.0.0" sources."promise-limit-2.7.0" sources."promise-retry-2.0.1" sources."prompts-2.4.2" @@ -100058,7 +99289,7 @@ in sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."structured-headers-0.4.1" - sources."sucrase-3.28.0" + sources."sucrase-3.29.0" sources."sudo-prompt-9.1.1" sources."supports-color-5.5.0" (sources."supports-hyperlinks-2.3.0" // { @@ -100096,7 +99327,7 @@ in sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."widest-line-3.1.0" - sources."wonka-6.1.1" + sources."wonka-6.1.2" (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -100158,7 +99389,7 @@ in }; dependencies = [ sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."balanced-match-1.0.2" sources."binary-extensions-2.2.0" sources."brace-expansion-2.0.1" @@ -100184,7 +99415,7 @@ in sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isexe-2.0.0" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."normalize-path-3.0.0" sources."once-1.4.0" sources."path-key-3.1.1" @@ -100221,13 +99452,13 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -100249,18 +99480,18 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-proposal-object-rest-spread-7.20.2" sources."@babel/plugin-syntax-jsx-7.18.6" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" sources."@babel/plugin-transform-destructuring-7.20.2" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -100269,7 +99500,7 @@ in sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.25" + sources."@types/react-18.0.26" sources."@types/scheduler-0.16.2" sources."@types/yoga-layout-1.9.2" sources."ajv-6.12.6" @@ -100294,7 +99525,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -100450,7 +99681,7 @@ in sources."punycode-2.1.1" sources."quick-lru-4.0.1" sources."react-16.14.0" - sources."react-devtools-core-4.26.1" + sources."react-devtools-core-4.27.0" sources."react-is-16.13.1" (sources."react-reconciler-0.26.2" // { dependencies = [ @@ -100494,7 +99725,7 @@ in sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" - (sources."stack-utils-2.0.5" // { + (sources."stack-utils-2.0.6" // { dependencies = [ sources."escape-string-regexp-2.0.0" ]; @@ -100585,10 +99816,15 @@ in }) sources."@azure/keyvault-keys-4.6.0" sources."@azure/logger-1.0.3" - sources."@azure/msal-browser-2.30.0" - sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.14.2" // { + (sources."@azure/msal-browser-2.32.0" // { dependencies = [ + sources."@azure/msal-common-9.0.0" + ]; + }) + sources."@azure/msal-common-7.6.0" + (sources."@azure/msal-node-1.14.4" // { + dependencies = [ + sources."@azure/msal-common-9.0.0" sources."uuid-8.3.2" ]; }) @@ -100624,21 +99860,21 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@fluentui/date-time-utilities-8.5.2" - sources."@fluentui/dom-utilities-2.2.2" - sources."@fluentui/font-icons-mdl2-8.5.2" - sources."@fluentui/foundation-legacy-8.2.22" - sources."@fluentui/keyboard-key-0.4.2" - sources."@fluentui/merge-styles-8.5.3" - sources."@fluentui/react-8.100.0" - sources."@fluentui/react-focus-8.8.8" - sources."@fluentui/react-hooks-8.6.12" - sources."@fluentui/react-portal-compat-context-9.0.3" - sources."@fluentui/react-window-provider-2.2.3" - sources."@fluentui/set-version-8.2.2" - sources."@fluentui/style-utilities-8.8.1" - sources."@fluentui/theme-2.6.17" - sources."@fluentui/utilities-8.13.2" + sources."@fluentui/date-time-utilities-8.5.3" + sources."@fluentui/dom-utilities-2.2.3" + sources."@fluentui/font-icons-mdl2-8.5.4" + sources."@fluentui/foundation-legacy-8.2.24" + sources."@fluentui/keyboard-key-0.4.3" + sources."@fluentui/merge-styles-8.5.4" + sources."@fluentui/react-8.103.4" + sources."@fluentui/react-focus-8.8.10" + sources."@fluentui/react-hooks-8.6.14" + sources."@fluentui/react-portal-compat-context-9.0.4" + sources."@fluentui/react-window-provider-2.2.4" + sources."@fluentui/set-version-8.2.3" + sources."@fluentui/style-utilities-8.8.3" + sources."@fluentui/theme-2.6.19" + sources."@fluentui/utilities-8.13.4" sources."@gar/promisify-1.1.3" (sources."@gulp-sourcemaps/identity-map-2.0.1" // { dependencies = [ @@ -100691,7 +99927,7 @@ in sources."@npmcli/fs-1.1.1" sources."@npmcli/move-file-1.1.2" sources."@redis/bloom-1.1.0" - (sources."@redis/client-1.3.1" // { + (sources."@redis/client-1.4.2" // { dependencies = [ sources."cluster-key-slot-1.1.1" ]; @@ -100699,26 +99935,26 @@ in sources."@redis/graph-1.1.0" sources."@redis/json-1.0.4" sources."@redis/search-1.1.0" - sources."@redis/time-series-1.0.3" - (sources."@sap/hana-client-2.14.22" // { + sources."@redis/time-series-1.0.4" + (sources."@sap/hana-client-2.14.23" // { dependencies = [ sources."debug-3.1.0" ]; }) sources."@sindresorhus/is-0.14.0" sources."@sqltools/formatter-1.2.5" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@szmarczak/http-timer-1.1.2" sources."@tediousjs/connection-string-0.4.1" sources."@tokenizer/token-0.3.0" @@ -100732,7 +99968,6 @@ in sources."@types/connect-3.4.35" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/es-aggregate-error-1.0.2" sources."@types/eslint-8.4.10" sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" @@ -100751,8 +99986,8 @@ in sources."@types/prop-types-15.7.5" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" - sources."@types/react-18.0.25" - sources."@types/react-dom-18.0.8" + sources."@types/react-18.0.26" + sources."@types/react-dom-18.0.9" sources."@types/scheduler-0.16.2" sources."@types/serve-static-1.15.0" sources."@types/socket.io-3.0.1" @@ -100823,7 +100058,7 @@ in ]; }) sources."aggregate-error-3.1.0" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-formats-2.1.1" (sources."ajv-keywords-3.5.2" // { dependencies = [ @@ -100922,7 +100157,7 @@ in sources."base64-js-1.5.1" sources."base64id-2.0.0" sources."basic-auth-2.0.1" - sources."better-sqlite3-7.6.2" + sources."better-sqlite3-8.0.1" sources."bignumber.js-9.0.0" sources."binary-extensions-1.13.1" sources."bindings-1.5.0" @@ -100966,7 +100201,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-3.0.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-4.1.2" sources."chardet-0.7.0" (sources."chokidar-2.1.8" // { @@ -101080,7 +100315,7 @@ in ]; }) sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" @@ -101144,7 +100379,7 @@ in ]; }) sources."engine.io-parser-5.0.4" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."enquirer-2.3.6" sources."env-paths-2.2.1" sources."err-code-2.0.3" @@ -101253,7 +100488,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figlet-1.5.2" sources."figures-3.2.0" sources."file-entry-cache-6.0.1" @@ -101337,7 +100572,7 @@ in sources."which-1.3.1" ]; }) - sources."globals-13.17.0" + sources."globals-13.18.0" sources."globalthis-1.0.3" sources."globby-11.1.0" sources."glogg-1.0.2" @@ -101486,7 +100721,7 @@ in sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" @@ -101506,7 +100741,7 @@ in ]; }) sources."ip-2.0.0" - sources."ip-num-1.4.1" + sources."ip-num-1.5.0" sources."ipaddr.js-1.9.1" sources."is-absolute-1.0.0" sources."is-accessor-descriptor-1.0.0" @@ -101665,9 +100900,9 @@ in sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.5" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-1.4.1" sources."minipass-flush-1.0.5" @@ -101730,7 +100965,7 @@ in ]; }) sources."openapi-types-7.2.3" - sources."swagger-ui-dist-4.15.2" + sources."swagger-ui-dist-4.15.5" ]; }) (sources."mixin-deep-1.3.2" // { @@ -101799,7 +101034,7 @@ in sources."neo-async-2.6.2" sources."next-tick-1.1.0" sources."nice-try-1.0.5" - sources."node-abi-3.28.0" + sources."node-abi-3.30.0" sources."node-abort-controller-3.0.1" sources."node-addon-api-4.3.0" sources."node-fetch-2.6.7" @@ -102023,7 +101258,7 @@ in ]; }) sources."rechoir-0.6.2" - sources."redis-4.4.0" + sources."redis-4.5.1" sources."redis-errors-1.2.0" sources."redis-parser-3.0.0" sources."reflect-metadata-0.1.13" @@ -102212,8 +101447,8 @@ in }) sources."streamsearch-0.1.2" sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" (sources."string_decoder-1.3.0" // { dependencies = [ sources."safe-buffer-5.2.1" @@ -102240,7 +101475,7 @@ in }) sources."tar-stream-2.2.0" sources."tarn-3.0.2" - (sources."tedious-15.1.1" // { + (sources."tedious-15.1.2" // { dependencies = [ sources."bl-5.1.0" sources."buffer-6.0.3" @@ -102249,7 +101484,7 @@ in sources."sprintf-js-1.1.2" ]; }) - (sources."terser-5.15.1" // { + (sources."terser-5.16.1" // { dependencies = [ sources."acorn-8.8.1" sources."commander-2.20.3" @@ -102376,7 +101611,7 @@ in }) sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - (sources."webpack-5.74.0" // { + (sources."webpack-5.75.0" // { dependencies = [ sources."acorn-8.8.1" ]; @@ -102442,12 +101677,12 @@ in sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" (sources."@eslint/eslintrc-0.4.3" // { dependencies = [ sources."eslint-visitor-keys-1.3.0" sources."espree-7.3.1" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."ignore-4.0.6" sources."type-fest-0.20.2" ]; @@ -102501,7 +101736,7 @@ in sources."@types/mime-3.0.1" sources."@types/minimatch-5.1.2" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" @@ -102640,18 +101875,18 @@ in sources."yallist-3.1.1" ]; }) - (sources."@vue/compiler-core-3.2.41" // { + (sources."@vue/compiler-core-3.2.45" // { dependencies = [ sources."source-map-0.6.1" ]; }) - sources."@vue/compiler-dom-3.2.41" - (sources."@vue/compiler-sfc-3.2.41" // { + sources."@vue/compiler-dom-3.2.45" + (sources."@vue/compiler-sfc-3.2.45" // { dependencies = [ sources."source-map-0.6.1" ]; }) - sources."@vue/compiler-ssr-3.2.41" + sources."@vue/compiler-ssr-3.2.45" (sources."@vue/component-compiler-utils-3.3.0" // { dependencies = [ sources."hash-sum-1.0.2" @@ -102665,8 +101900,8 @@ in sources."@vue/eslint-config-prettier-6.0.0" sources."@vue/eslint-config-typescript-7.0.0" sources."@vue/preload-webpack-plugin-1.1.2" - sources."@vue/reactivity-transform-3.2.41" - sources."@vue/shared-3.2.41" + sources."@vue/reactivity-transform-3.2.45" + sources."@vue/shared-3.2.45" sources."@vue/web-component-wrapper-1.3.0" sources."@webassemblyjs/ast-1.9.0" sources."@webassemblyjs/floating-point-hex-parser-1.9.0" @@ -102709,7 +101944,7 @@ in sources."ansi-regex-4.1.1" sources."ansi-styles-3.2.1" sources."any-promise-1.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-1.2.0" sources."arch-2.2.0" sources."are-we-there-yet-1.1.7" @@ -102852,7 +102087,7 @@ in sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -103055,7 +102290,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-equal-1.1.1" sources."deep-is-0.1.4" sources."deepmerge-4.2.2" @@ -103187,7 +102422,7 @@ in sources."file-entry-cache-6.0.1" sources."flat-cache-3.0.4" sources."flatted-3.2.7" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."has-flag-4.0.0" sources."ignore-4.0.6" sources."is-fullwidth-code-point-3.0.0" @@ -103204,7 +102439,7 @@ in sources."supports-color-7.2.0" (sources."table-6.8.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" ]; }) sources."type-check-0.4.0" @@ -103308,7 +102543,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."faye-websocket-0.11.4" sources."fibers-5.0.3" sources."figgy-pudding-3.5.2" @@ -103496,7 +102731,7 @@ in }) sources."ieee754-1.2.1" sources."iferr-0.1.5" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-cwd-2.1.0" sources."import-fresh-3.3.0" (sources."import-from-2.1.0" // { @@ -103614,7 +102849,7 @@ in sources."lines-and-columns-1.2.4" sources."loader-fs-cache-1.0.3" sources."loader-runner-2.4.0" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" (sources."locate-path-3.0.0" // { dependencies = [ sources."path-exists-3.0.0" @@ -103629,7 +102864,7 @@ in sources."lodash.truncate-4.4.2" sources."lodash.uniq-4.5.0" sources."log-symbols-2.2.0" - sources."loglevel-1.8.0" + sources."loglevel-1.8.1" sources."lower-case-1.1.4" sources."lru-cache-6.0.0" sources."magic-string-0.25.9" @@ -103645,7 +102880,7 @@ in sources."md5.js-1.3.5" sources."mdn-data-2.0.4" sources."media-typer-0.3.0" - sources."memfs-3.4.10" + sources."memfs-3.4.12" sources."memory-fs-0.4.1" (sources."meow-9.0.0" // { dependencies = [ @@ -103689,7 +102924,7 @@ in sources."is-plain-obj-1.1.0" ]; }) - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mississippi-3.0.0" (sources."mixin-deep-1.3.2" // { @@ -103757,7 +102992,7 @@ in (sources."null-loader-4.0.1" // { dependencies = [ sources."json5-2.2.1" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; }) @@ -103849,7 +103084,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - sources."postcss-8.4.18" + sources."postcss-8.4.19" (sources."postcss-calc-7.0.5" // { dependencies = [ sources."picocolors-0.2.1" @@ -104086,7 +103321,7 @@ in sources."source-map-0.6.1" ]; }) - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."picocolors-0.2.1" @@ -104227,7 +103462,7 @@ in (sources."sass-loader-10.2.0" // { dependencies = [ sources."json5-2.2.1" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; }) @@ -104392,8 +103627,8 @@ in sources."strip-ansi-5.2.0" ]; }) - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -104556,7 +103791,7 @@ in ]; }) sources."vue-hot-reload-api-2.3.4" - (sources."vue-loader-15.10.0" // { + (sources."vue-loader-15.10.1" // { dependencies = [ sources."hash-sum-1.0.2" ]; @@ -104569,7 +103804,7 @@ in sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."json5-2.2.1" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."supports-color-7.2.0" ]; }) @@ -104588,7 +103823,7 @@ in dependencies = [ sources."file-loader-6.2.0" sources."json5-2.2.1" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; }) @@ -104770,10 +104005,10 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "8.27.0"; + version = "8.29.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.27.0.tgz"; - sha512 = "0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz"; + sha512 = "isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg=="; }; dependencies = [ sources."@eslint/eslintrc-1.3.3" @@ -104801,7 +104036,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.27.0" + sources."eslint-8.29.0" sources."eslint-scope-7.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -104817,7 +104052,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" @@ -104825,10 +104060,10 @@ in sources."fs.realpath-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."grapheme-splitter-1.0.4" sources."has-flag-4.0.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -104837,7 +104072,7 @@ in sources."is-glob-4.0.3" sources."is-path-inside-3.0.3" sources."isexe-2.0.0" - sources."js-sdsl-4.1.5" + sources."js-sdsl-4.2.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" @@ -104926,7 +104161,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.27.0" + sources."eslint-8.29.0" sources."eslint-scope-7.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -104942,7 +104177,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" @@ -104950,10 +104185,10 @@ in sources."fs.realpath-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."grapheme-splitter-1.0.4" sources."has-flag-4.0.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -104962,7 +104197,7 @@ in sources."is-glob-4.0.3" sources."is-path-inside-3.0.3" sources."isexe-2.0.0" - sources."js-sdsl-4.1.5" + sources."js-sdsl-4.2.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" @@ -105045,14 +104280,14 @@ in ]; }) sources."@babel/code-frame-7.10.4" - sources."@babel/compat-data-7.20.1" + sources."@babel/compat-data-7.20.5" (sources."@babel/core-7.9.0" // { dependencies = [ sources."json5-2.2.1" sources."semver-5.7.1" ]; }) - sources."@babel/generator-7.20.2" + sources."@babel/generator-7.20.5" sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" (sources."@babel/helper-compilation-targets-7.20.0" // { @@ -105060,8 +104295,8 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.2" - sources."@babel/helper-create-regexp-features-plugin-7.19.0" + sources."@babel/helper-create-class-features-plugin-7.20.5" + sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ sources."semver-6.3.0" @@ -105084,19 +104319,19 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.20.1" + sources."@babel/helper-wrap-function-7.20.5" + sources."@babel/helpers-7.20.6" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" (sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" // { dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/core-7.20.2" + sources."@babel/core-7.20.5" sources."json5-2.2.1" sources."semver-6.3.0" ]; @@ -105106,12 +104341,12 @@ in (sources."@babel/plugin-proposal-class-static-block-7.18.6" // { dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/core-7.20.2" + sources."@babel/core-7.20.5" sources."json5-2.2.1" sources."semver-6.3.0" ]; }) - sources."@babel/plugin-proposal-decorators-7.20.2" + sources."@babel/plugin-proposal-decorators-7.20.5" sources."@babel/plugin-proposal-dynamic-import-7.18.6" sources."@babel/plugin-proposal-export-default-from-7.18.10" sources."@babel/plugin-proposal-export-namespace-from-7.18.9" @@ -105123,7 +104358,7 @@ in sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.18.6" + sources."@babel/plugin-proposal-private-property-in-object-7.20.5" sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" @@ -105148,7 +104383,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" + sources."@babel/plugin-transform-block-scoping-7.20.5" sources."@babel/plugin-transform-classes-7.20.2" sources."@babel/plugin-transform-computed-properties-7.18.9" sources."@babel/plugin-transform-destructuring-7.20.2" @@ -105164,16 +104399,16 @@ in sources."@babel/plugin-transform-modules-commonjs-7.19.6" sources."@babel/plugin-transform-modules-systemjs-7.19.6" sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" + sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-property-literals-7.18.6" sources."@babel/plugin-transform-react-display-name-7.18.6" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/plugin-transform-react-jsx-self-7.18.6" sources."@babel/plugin-transform-react-jsx-source-7.19.6" - sources."@babel/plugin-transform-regenerator-7.18.6" + sources."@babel/plugin-transform-regenerator-7.20.5" sources."@babel/plugin-transform-reserved-words-7.18.6" (sources."@babel/plugin-transform-runtime-7.19.6" // { dependencies = [ @@ -105200,18 +104435,18 @@ in sources."@babel/code-frame-7.18.6" ]; }) - (sources."@babel/traverse-7.20.1" // { + (sources."@babel/traverse-7.20.5" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; }) - sources."@babel/types-7.20.2" + sources."@babel/types-7.20.5" sources."@colors/colors-1.5.0" sources."@expo/apple-utils-0.0.0-alpha.31" sources."@expo/bunyan-4.0.0" - (sources."@expo/cli-0.4.6" // { + (sources."@expo/cli-0.4.10" // { dependencies = [ - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" (sources."@expo/config-7.0.3" // { dependencies = [ sources."semver-7.3.2" @@ -105223,7 +104458,7 @@ in ]; }) sources."@expo/config-types-47.0.0" - (sources."@expo/dev-server-0.1.122" // { + (sources."@expo/dev-server-0.1.123" // { dependencies = [ sources."fs-extra-9.0.0" sources."semver-7.3.2" @@ -105238,7 +104473,7 @@ in }) sources."@expo/metro-config-0.5.1" sources."@expo/plist-0.0.18" - (sources."@expo/prebuild-config-5.0.6" // { + (sources."@expo/prebuild-config-5.0.7" // { dependencies = [ sources."fs-extra-9.1.0" sources."semver-7.3.2" @@ -105266,7 +104501,7 @@ in sources."uuid-3.4.0" ]; }) - (sources."@expo/code-signing-certificates-0.0.2" // { + (sources."@expo/code-signing-certificates-0.0.5" // { dependencies = [ sources."node-forge-1.3.1" ]; @@ -105280,7 +104515,7 @@ in }) sources."@expo/config-types-45.0.0" sources."@expo/dev-server-0.1.115" - (sources."@expo/devcert-1.0.0" // { + (sources."@expo/devcert-1.1.0" // { dependencies = [ sources."debug-3.2.7" sources."rimraf-2.7.1" @@ -105352,7 +104587,7 @@ in sources."@sideway/pinpoint-2.0.0" sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/glob-7.2.0" sources."@types/html-minifier-terser-5.1.2" sources."@types/http-cache-semantics-4.0.1" @@ -105360,9 +104595,9 @@ in sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-3.0.1" sources."@types/json-schema-7.0.11" - sources."@types/keyv-4.2.0" + sources."@types/keyv-3.1.4" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/q-1.5.5" sources."@types/responselike-1.0.0" sources."@types/retry-0.12.2" @@ -105413,7 +104648,7 @@ in sources."address-1.1.2" sources."agent-base-6.0.2" sources."aggregate-error-3.1.0" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-errors-1.0.1" sources."ajv-formats-2.1.1" (sources."ajv-keywords-3.5.2" // { @@ -105434,8 +104669,8 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."any-promise-1.3.0" - sources."anymatch-3.1.2" - sources."application-config-path-0.1.0" + sources."anymatch-3.1.3" + sources."application-config-path-0.1.1" sources."aproba-1.2.0" sources."arg-4.1.0" sources."argparse-2.0.1" @@ -105472,7 +104707,7 @@ in dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-2.7.1" ]; }) @@ -105559,14 +104794,10 @@ in sources."caller-path-2.0.0" sources."callsite-1.0.0" sources."callsites-2.0.0" - (sources."camel-case-4.1.2" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -105580,7 +104811,7 @@ in sources."chokidar-3.5.3" sources."chownr-2.0.0" sources."chrome-trace-event-1.0.3" - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" sources."cipher-base-1.0.4" (sources."class-utils-0.3.6" // { dependencies = [ @@ -105697,7 +104928,7 @@ in sources."semver-6.3.0" ]; }) - sources."core-js-compat-3.26.0" + sources."core-js-compat-3.26.1" sources."core-util-is-1.0.3" sources."cosmiconfig-5.2.1" (sources."create-ecdh-4.0.4" // { @@ -105723,7 +104954,7 @@ in sources."ajv-6.12.6" sources."camelcase-5.3.1" sources."json-schema-traverse-0.4.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-2.7.1" sources."semver-6.3.0" ]; @@ -105760,7 +104991,7 @@ in sources."debug-4.3.4" sources."decache-4.4.0" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" (sources."decompress-response-6.0.0" // { dependencies = [ sources."mimic-response-3.1.0" @@ -105815,11 +105046,7 @@ in sources."domhandler-4.3.1" ]; }) - (sources."dot-case-3.0.4" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."dot-case-3.0.4" sources."dot-prop-5.3.0" sources."duplexer-0.1.2" sources."duplexer3-0.1.5" @@ -105897,9 +105124,9 @@ in sources."ms-2.0.0" ]; }) - (sources."expo-47.0.1" // { + (sources."expo-47.0.8" // { dependencies = [ - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" (sources."@expo/config-7.0.3" // { dependencies = [ sources."semver-7.3.2" @@ -105941,7 +105168,7 @@ in sources."fs-extra-9.1.0" ]; }) - sources."expo-modules-core-1.0.0" + sources."expo-modules-core-1.0.3" (sources."expo-pwa-0.0.124" // { dependencies = [ sources."@expo/image-utils-0.3.23" @@ -105985,7 +105212,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."faye-websocket-0.10.0" sources."fbemitter-3.0.0" sources."fbjs-3.0.4" @@ -106079,11 +105306,7 @@ in sources."got-11.8.5" sources."graceful-fs-4.2.10" sources."graphql-15.8.0" - (sources."graphql-tag-2.12.6" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."graphql-tag-2.12.6" sources."gzip-size-5.1.1" sources."handle-thing-2.0.1" sources."has-1.0.3" @@ -106133,7 +105356,7 @@ in }) (sources."html-webpack-plugin-4.3.0" // { dependencies = [ - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" ]; }) sources."htmlparser2-4.1.0" @@ -106163,7 +105386,7 @@ in sources."icss-utils-4.1.1" sources."ieee754-1.2.1" sources."iferr-0.1.5" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."image-size-1.0.2" sources."immer-8.0.1" (sources."import-fresh-2.0.0" // { @@ -106290,7 +105513,7 @@ in sources."json5-1.0.1" sources."jsonfile-6.1.0" sources."keychain-1.3.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."killable-1.0.1" sources."kind-of-6.0.3" sources."kleur-3.0.3" @@ -106299,7 +105522,7 @@ in sources."leven-3.1.0" sources."lines-and-columns-1.2.4" sources."loader-runner-2.4.0" - (sources."loader-utils-2.0.3" // { + (sources."loader-utils-2.0.4" // { dependencies = [ sources."json5-2.2.1" ]; @@ -106315,13 +105538,9 @@ in sources."chalk-2.4.2" ]; }) - sources."loglevel-1.8.0" + sources."loglevel-1.8.1" sources."loose-envify-1.4.0" - (sources."lower-case-2.0.2" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."lower-case-2.0.2" sources."lowercase-keys-2.0.0" sources."lru-cache-6.0.0" (sources."make-dir-2.1.0" // { @@ -106346,7 +105565,7 @@ in (sources."metro-react-native-babel-preset-0.72.3" // { dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/core-7.20.2" + sources."@babel/core-7.20.5" sources."json5-2.2.1" sources."semver-6.3.0" ]; @@ -106367,7 +105586,7 @@ in dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; }) @@ -106409,11 +105628,7 @@ in sources."neo-async-2.6.2" sources."nested-error-stacks-2.0.1" sources."nice-try-1.0.5" - (sources."no-case-3.0.4" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."no-case-3.0.4" sources."node-fetch-2.6.7" sources."node-forge-0.10.0" sources."node-html-parser-1.4.9" @@ -106522,21 +105737,13 @@ in }) sources."pako-1.0.11" sources."parallel-transform-1.2.0" - (sources."param-case-3.0.4" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."param-case-3.0.4" sources."parse-asn1-5.1.6" sources."parse-json-4.0.0" sources."parse-png-2.1.0" sources."parse-srcset-1.0.2" sources."parseurl-1.3.3" - (sources."pascal-case-3.1.2" // { - dependencies = [ - sources."tslib-2.4.1" - ]; - }) + sources."pascal-case-3.1.2" sources."pascalcase-0.1.1" (sources."password-prompt-1.1.2" // { dependencies = [ @@ -106699,7 +105906,7 @@ in ]; }) sources."postcss-safe-parser-4.0.2" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."postcss-value-parser-3.3.1" @@ -106797,11 +106004,11 @@ in }) sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - sources."regenerator-transform-0.15.0" + sources."regenerator-runtime-0.13.11" + sources."regenerator-transform-0.15.1" sources."regex-not-1.0.2" sources."regexp.prototype.flags-1.4.3" - sources."regexpu-core-5.2.1" + sources."regexpu-core-5.2.2" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" sources."regjsgen-0.7.1" @@ -107028,8 +106235,8 @@ in }) sources."stream-shift-1.0.1" sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -107051,7 +106258,7 @@ in sources."postcss-selector-parser-3.1.2" ]; }) - (sources."sucrase-3.28.0" // { + (sources."sucrase-3.29.0" // { dependencies = [ sources."commander-4.1.1" ]; @@ -107146,7 +106353,7 @@ in sources."tree-kill-1.2.2" sources."ts-interface-checker-0.1.13" sources."ts-pnp-1.2.0" - sources."tslib-1.14.1" + sources."tslib-2.4.1" sources."tty-browserify-0.0.0" sources."turndown-7.0.0" sources."type-fest-0.12.0" @@ -107156,7 +106363,7 @@ in sources."unbox-primitive-1.0.2" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" + sources."unicode-match-property-value-ecmascript-2.1.0" sources."unicode-property-aliases-ecmascript-2.1.0" sources."union-value-1.0.1" sources."uniq-1.0.1" @@ -107252,7 +106459,7 @@ in sources."is-wsl-1.1.0" sources."json-schema-traverse-0.4.1" sources."kind-of-3.2.2" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."lru-cache-5.1.1" sources."micromatch-3.1.10" sources."rimraf-2.7.1" @@ -107429,9 +106636,9 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -107449,28 +106656,28 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-proposal-object-rest-spread-7.20.2" sources."@babel/plugin-syntax-jsx-7.18.6" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" sources."@babel/plugin-transform-destructuring-7.20.2" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.25" + sources."@types/react-18.0.26" sources."@types/scheduler-0.16.2" sources."@types/yauzl-2.10.0" sources."@types/yoga-layout-1.9.2" @@ -107498,7 +106705,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -107624,7 +106831,7 @@ in }) sources."quick-lru-4.0.1" sources."react-17.0.2" - sources."react-devtools-core-4.26.1" + sources."react-devtools-core-4.27.0" sources."react-reconciler-0.26.2" (sources."read-pkg-5.2.0" // { dependencies = [ @@ -107662,7 +106869,7 @@ in sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" - (sources."stack-utils-2.0.5" // { + (sources."stack-utils-2.0.6" // { dependencies = [ sources."escape-string-regexp-2.0.0" ]; @@ -107722,7 +106929,7 @@ in sha512 = "/1EUu9Z5ICqSOwegsl0aWI1e3yvfr0/HEw8ns9RLYmROKqihO0IaeWkcf0vqayjp7vp6gl9SoJF8yiX1soYpvA=="; }; dependencies = [ - (sources."@heroku-cli/color-1.1.14" // { + (sources."@heroku-cli/color-1.1.15" // { dependencies = [ sources."ansi-regex-4.1.1" sources."ansi-styles-3.2.1" @@ -107740,9 +106947,8 @@ in sources."@oclif/command-1.8.20" sources."@oclif/config-1.18.6" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.3" // { + (sources."@oclif/help-1.0.4" // { dependencies = [ - sources."@oclif/config-1.18.5" sources."wrap-ansi-6.2.0" ]; }) @@ -107853,11 +107059,11 @@ in sources."semver-5.7.1" ]; }) - sources."csv-parse-5.3.1" + sources."csv-parse-5.3.3" sources."csv-stream-0.2.0" sources."dashdash-1.14.1" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-response-3.3.0" sources."deep-is-0.1.4" sources."defaults-1.0.4" @@ -107887,7 +107093,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."faunadb-4.7.1" (sources."figures-3.2.0" // { dependencies = [ @@ -107929,7 +107135,7 @@ in sources."hyperlinker-1.0.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."indent-string-4.0.0" sources."inherits-2.0.4" sources."ini-1.3.8" @@ -108012,7 +107218,7 @@ in sources."pify-3.0.0" sources."prelude-ls-1.1.2" sources."prepend-http-2.0.0" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."process-nextick-args-2.0.1" sources."psl-1.9.0" sources."punycode-2.1.1" @@ -108034,7 +107240,7 @@ in sources."reusify-1.0.4" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.8" @@ -108047,7 +107253,7 @@ in sources."sshpk-1.17.0" sources."stealthy-require-1.1.1" sources."stream-chain-2.2.5" - sources."stream-json-1.7.4" + sources."stream-json-1.7.5" sources."strict-uri-encode-1.1.0" sources."string-width-4.2.3" (sources."string_decoder-1.1.1" // { @@ -108108,22 +107314,22 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "11.16.0"; + version = "11.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.16.0.tgz"; - sha512 = "fT8yeco/ksIjA3fdpqWoI+v58tUCzH7YXY+WZdBq6DsbJ27EOSgVcO9uUzn7GYfWEP3A0OdsBwoi/i78RMGlkQ=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.16.1.tgz"; + sha512 = "vi8NRUeeBXy7Be+Hk7DK0+ClF+snhjYa5s3fwPRYCGXbCX47E+jreahS6jXJIxeqMbHPmhPZrJXsy7Tdp1Ryug=="; }; dependencies = [ - (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { + (sources."@apidevtools/json-schema-ref-parser-9.1.0" // { dependencies = [ sources."js-yaml-4.1.0" ]; }) - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" - sources."@esbuild/android-arm-0.15.13" - sources."@esbuild/linux-loong64-0.15.13" + sources."@esbuild/android-arm-0.15.17" + sources."@esbuild/linux-loong64-0.15.17" sources."@gar/promisify-1.1.3" sources."@google-cloud/paginator-4.0.1" sources."@google-cloud/precise-date-3.0.1" @@ -108131,7 +107337,7 @@ in sources."@google-cloud/promisify-2.0.4" (sources."@google-cloud/pubsub-3.2.1" // { dependencies = [ - sources."google-auth-library-8.6.0" + sources."google-auth-library-8.7.0" ]; }) sources."@grpc/grpc-js-1.7.3" @@ -108143,7 +107349,7 @@ in ]; }) sources."@npmcli/move-file-2.0.1" - sources."@opentelemetry/api-1.2.0" + sources."@opentelemetry/api-1.3.0" sources."@opentelemetry/semantic-conventions-1.3.1" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" @@ -108164,7 +107370,7 @@ in sources."@types/long-4.0.2" sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -108181,7 +107387,7 @@ in sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."json-schema-traverse-1.0.0" ]; }) @@ -108190,7 +107396,7 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."ansicolors-0.3.2" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-2.0.0" sources."archiver-5.3.1" (sources."archiver-utils-2.1.0" // { @@ -108223,7 +107429,7 @@ in sources."basic-auth-connect-1.0.0" sources."bcrypt-pbkdf-1.0.2" sources."big-integer-1.6.51" - sources."bignumber.js-9.1.0" + sources."bignumber.js-9.1.1" sources."binary-0.3.0" sources."binary-extensions-2.2.0" sources."bl-4.1.0" @@ -108253,7 +107459,7 @@ in dependencies = [ sources."glob-8.0.3" sources."lru-cache-7.14.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) (sources."cacheable-request-6.1.0" // { @@ -108345,7 +107551,7 @@ in ]; }) sources."crypto-random-string-2.0.0" - sources."csv-parse-5.3.1" + sources."csv-parse-5.3.3" sources."dashdash-1.14.1" sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" @@ -108385,27 +107591,27 @@ in sources."entities-2.1.0" sources."env-paths-2.2.1" sources."err-code-2.0.3" - sources."esbuild-0.15.13" - sources."esbuild-android-64-0.15.13" - sources."esbuild-android-arm64-0.15.13" - sources."esbuild-darwin-64-0.15.13" - sources."esbuild-darwin-arm64-0.15.13" - sources."esbuild-freebsd-64-0.15.13" - sources."esbuild-freebsd-arm64-0.15.13" - sources."esbuild-linux-32-0.15.13" - sources."esbuild-linux-64-0.15.13" - sources."esbuild-linux-arm-0.15.13" - sources."esbuild-linux-arm64-0.15.13" - sources."esbuild-linux-mips64le-0.15.13" - sources."esbuild-linux-ppc64le-0.15.13" - sources."esbuild-linux-riscv64-0.15.13" - sources."esbuild-linux-s390x-0.15.13" - sources."esbuild-netbsd-64-0.15.13" - sources."esbuild-openbsd-64-0.15.13" - sources."esbuild-sunos-64-0.15.13" - sources."esbuild-windows-32-0.15.13" - sources."esbuild-windows-64-0.15.13" - sources."esbuild-windows-arm64-0.15.13" + sources."esbuild-0.15.17" + sources."esbuild-android-64-0.15.17" + sources."esbuild-android-arm64-0.15.17" + sources."esbuild-darwin-64-0.15.17" + sources."esbuild-darwin-arm64-0.15.17" + sources."esbuild-freebsd-64-0.15.17" + sources."esbuild-freebsd-arm64-0.15.17" + sources."esbuild-linux-32-0.15.17" + sources."esbuild-linux-64-0.15.17" + sources."esbuild-linux-arm-0.15.17" + sources."esbuild-linux-arm64-0.15.17" + sources."esbuild-linux-mips64le-0.15.17" + sources."esbuild-linux-ppc64le-0.15.17" + sources."esbuild-linux-riscv64-0.15.17" + sources."esbuild-linux-s390x-0.15.17" + sources."esbuild-netbsd-64-0.15.17" + sources."esbuild-openbsd-64-0.15.17" + sources."esbuild-sunos-64-0.15.17" + sources."esbuild-windows-32-0.15.17" + sources."esbuild-windows-64-0.15.17" + sources."esbuild-windows-arm64-0.15.17" sources."escalade-3.1.1" sources."escape-goat-2.1.1" sources."escape-html-1.0.3" @@ -108425,7 +107631,7 @@ in sources."events-listener-1.1.0" (sources."exegesis-4.1.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."json-schema-traverse-1.0.0" sources."semver-7.3.8" ]; @@ -108521,7 +107727,7 @@ in }) (sources."google-gax-3.5.2" // { dependencies = [ - sources."google-auth-library-8.6.0" + sources."google-auth-library-8.7.0" ]; }) sources."google-p12-pem-4.0.1" @@ -108665,7 +107871,7 @@ in }) sources."markdown-it-12.3.2" sources."markdown-it-anchor-8.6.5" - sources."marked-4.2.2" + sources."marked-4.2.3" (sources."marked-terminal-5.1.1" // { dependencies = [ sources."ansi-escapes-5.0.0" @@ -108688,7 +107894,7 @@ in ]; }) sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" @@ -108733,7 +107939,7 @@ in sources."one-time-1.0.0" sources."onetime-5.1.2" sources."open-6.4.0" - sources."openapi3-ts-3.1.1" + sources."openapi3-ts-3.1.2" sources."optionator-0.8.3" sources."ora-5.4.1" sources."os-tmpdir-1.0.2" @@ -108780,7 +107986,7 @@ in (sources."protobufjs-cli-1.0.2" // { dependencies = [ sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."semver-7.3.8" ]; }) @@ -108804,11 +108010,11 @@ in sources."strip-json-comments-2.0.1" ]; }) - sources."re2-1.17.7" + sources."re2-1.17.8" sources."readable-stream-3.6.0" (sources."readdir-glob-1.1.2" // { dependencies = [ - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."readdirp-3.6.0" @@ -108824,7 +108030,7 @@ in }) sources."require-directory-2.1.1" sources."require-from-string-2.0.2" - sources."requizzle-0.2.3" + sources."requizzle-0.2.4" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" sources."retry-0.13.1" @@ -108838,7 +108044,7 @@ in ]; }) sources."run-async-2.4.1" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.1" sources."safer-buffer-2.1.2" @@ -108882,7 +108088,7 @@ in sources."stack-trace-0.0.10" sources."statuses-2.0.1" sources."stream-chain-2.2.5" - sources."stream-json-1.7.4" + sources."stream-json-1.7.5" sources."stream-shift-1.0.1" (sources."string-length-1.0.1" // { dependencies = [ @@ -108964,7 +108170,7 @@ in dependencies = [ sources."boxen-5.1.2" sources."camelcase-6.3.0" - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."ini-2.0.0" sources."is-installed-globally-0.4.0" sources."is-npm-5.0.0" @@ -108986,7 +108192,7 @@ in sources."core-util-is-1.0.2" ]; }) - sources."vm2-3.9.11" + sources."vm2-3.9.12" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -109236,7 +108442,7 @@ in sources."redent-4.0.0" sources."restore-cursor-3.1.0" sources."run-async-2.4.1" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.8" @@ -109303,7 +108509,7 @@ in sources."@types/atob-2.1.2" sources."@types/bn.js-5.1.1" sources."@types/inquirer-6.5.0" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -109496,7 +108702,7 @@ in sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."verror-1.10.0" - sources."web3-utils-1.8.0" + sources."web3-utils-1.8.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-module-2.0.0" @@ -109629,7 +108835,7 @@ in sources."crypto-random-string-1.0.0" sources."cycle-1.0.3" sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-equal-2.1.0" sources."define-properties-1.1.4" sources."define-property-2.0.2" @@ -110038,21 +109244,21 @@ in gatsby-cli = nodeEnv.buildNodePackage { name = "gatsby-cli"; packageName = "gatsby-cli"; - version = "4.24.0"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.24.0.tgz"; - sha512 = "l5xaLLd8DGWtUHcK3Q1RfzyEJkcGZNSa3WGkkYjEwqYRY83fMHlH/hhunStuJ+1S7ZH9Vq7kL1OgOz6S8vK6AQ=="; + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.2.0.tgz"; + sha512 = "8pPCwS4bT9koCO1vG/SAo+SxiU179RcxaKm0rmj4rXdmKdLluKoDIoLJnBnHpw5S1AMCdWbijQCWQhKiA+brPw=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -110063,7 +109269,7 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.2" + sources."@babel/helper-create-class-features-plugin-7.20.5" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" @@ -110078,20 +109284,20 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" (sources."@babel/highlight-7.18.6" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-syntax-typescript-7.20.0" sources."@babel/plugin-transform-typescript-7.20.2" sources."@babel/preset-typescript-7.18.6" - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@jridgewell/gen-mapping-0.1.1" @@ -110105,12 +109311,12 @@ in sources."@lmdb/lmdb-linux-arm64-2.5.3" sources."@lmdb/lmdb-linux-x64-2.5.3" sources."@lmdb/lmdb-win32-x64-2.5.3" - sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-darwin-x64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-linux-arm-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-linux-arm64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-linux-x64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-win32-x64-2.1.2" + sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-darwin-x64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-linux-arm-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-linux-arm64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-linux-x64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-win32-x64-2.2.0" sources."@sideway/address-4.1.4" sources."@sideway/formula-3.0.0" sources."@sideway/pinpoint-2.0.0" @@ -110119,11 +109325,11 @@ in sources."@tokenizer/token-0.3.0" sources."@turist/fetch-7.2.0" sources."@turist/time-0.0.2" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/common-tags-1.8.1" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/node-fetch-2.6.2" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -110150,7 +109356,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -110187,7 +109393,7 @@ in sources."configstore-5.0.1" sources."convert-hrtime-3.0.0" sources."convert-source-map-1.9.0" - sources."create-gatsby-2.24.0" + sources."create-gatsby-3.2.0" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -110203,7 +109409,6 @@ in sources."mimic-response-3.1.0" ]; }) - sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" sources."delayed-stream-1.0.0" sources."dom-converter-0.2.0" @@ -110212,7 +109417,6 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."duplexer3-0.1.5" sources."electron-to-chromium-1.4.284" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -110220,7 +109424,6 @@ in sources."entities-2.2.0" sources."envinfo-7.8.1" sources."escalade-3.1.1" - sources."escape-goat-2.1.1" sources."escape-string-regexp-1.0.5" (sources."execa-5.1.1" // { dependencies = [ @@ -110240,7 +109443,7 @@ in sources."tmp-0.0.33" ]; }) - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figures-3.2.0" sources."file-type-16.5.4" sources."find-up-4.1.0" @@ -110248,8 +109451,8 @@ in sources."fs-exists-cached-1.0.0" sources."fs-extra-10.1.0" sources."fs.realpath-1.0.0" - sources."gatsby-core-utils-3.24.0" - (sources."gatsby-telemetry-3.24.0" // { + sources."gatsby-core-utils-4.2.0" + (sources."gatsby-telemetry-4.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."boxen-4.2.0" @@ -110267,12 +109470,10 @@ in sources."get-stream-4.1.0" sources."git-up-7.0.0" sources."glob-7.2.3" - sources."global-dirs-3.0.0" sources."globals-11.12.0" sources."got-11.8.5" sources."graceful-fs-4.2.10" sources."has-flag-3.0.0" - sources."has-yarn-2.1.0" sources."hosted-git-info-3.0.8" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.0" @@ -110281,28 +109482,22 @@ in sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."import-from-4.0.0" - sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-2.0.0" sources."inquirer-7.3.3" sources."is-ci-2.0.0" sources."is-docker-2.2.1" sources."is-extglob-1.0.0" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-2.0.1" - sources."is-installed-globally-0.4.0" sources."is-invalid-path-0.1.0" - sources."is-npm-5.0.0" sources."is-obj-2.0.0" - sources."is-path-inside-3.0.3" sources."is-ssh-1.4.0" sources."is-stream-1.1.0" sources."is-typedarray-1.0.0" sources."is-valid-path-0.1.1" sources."is-wsl-2.2.0" - sources."is-yarn-global-0.3.0" sources."isexe-2.0.0" sources."joi-17.7.0" sources."js-tokens-4.0.0" @@ -110310,9 +109505,8 @@ in sources."json-buffer-3.0.1" sources."json5-2.2.1" sources."jsonfile-6.1.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."kleur-3.0.3" - sources."latest-version-5.1.0" sources."lmdb-2.5.3" sources."locate-path-5.0.0" sources."lock-1.1.0" @@ -110330,10 +109524,9 @@ in sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.1.2" - sources."minimist-1.2.7" sources."ms-2.1.2" - sources."msgpackr-1.7.2" - sources."msgpackr-extract-2.1.2" + sources."msgpackr-1.8.1" + sources."msgpackr-extract-2.2.0" sources."mute-stream-0.0.8" sources."nice-try-1.0.5" sources."node-addon-api-4.3.0" @@ -110355,28 +109548,6 @@ in sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" - (sources."package-json-6.5.0" // { - dependencies = [ - sources."@sindresorhus/is-0.14.0" - sources."@szmarczak/http-timer-1.1.2" - (sources."cacheable-request-6.1.0" // { - dependencies = [ - sources."lowercase-keys-2.0.0" - ]; - }) - sources."decompress-response-3.3.0" - sources."defer-to-connect-1.1.3" - sources."get-stream-5.2.0" - sources."got-9.6.0" - sources."json-buffer-3.0.0" - sources."keyv-3.1.0" - sources."lowercase-keys-1.0.1" - sources."normalize-url-4.5.1" - sources."p-cancelable-1.1.0" - sources."responselike-1.0.2" - sources."semver-6.3.0" - ]; - }) sources."parse-path-7.0.0" sources."parse-url-8.1.0" sources."path-exists-4.0.0" @@ -110384,27 +109555,18 @@ in sources."path-key-2.0.1" sources."peek-readable-4.1.0" sources."picocolors-1.0.0" - sources."prepend-http-2.0.0" sources."pretty-error-2.1.2" sources."progress-2.0.3" sources."prompts-2.4.2" sources."proper-lockfile-4.1.2" sources."protocols-2.0.1" sources."pump-3.0.0" - sources."pupa-2.1.1" sources."quick-lru-5.1.1" - (sources."rc-1.2.8" // { - dependencies = [ - sources."ini-1.3.8" - ]; - }) sources."read-1.0.7" sources."readable-stream-3.6.0" sources."readable-web-to-node-stream-3.0.2" sources."redux-4.1.2" - sources."regenerator-runtime-0.13.10" - sources."registry-auth-token-4.2.2" - sources."registry-url-5.1.0" + sources."regenerator-runtime-0.13.11" (sources."renderkid-2.0.7" // { dependencies = [ sources."strip-ansi-3.0.1" @@ -110425,11 +109587,6 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.8" - (sources."semver-diff-3.1.1" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) sources."set-blocking-2.0.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" @@ -110445,14 +109602,12 @@ in }) sources."strip-eof-1.0.0" sources."strip-final-newline-2.0.0" - sources."strip-json-comments-2.0.1" sources."strtok3-6.3.0" sources."supports-color-5.5.0" sources."term-size-2.2.1" sources."through-2.3.8" sources."tmp-0.2.1" sources."to-fast-properties-2.0.0" - sources."to-readable-stream-1.0.0" sources."token-types-4.2.1" sources."tr46-0.0.3" sources."tslib-1.14.1" @@ -110461,8 +109616,6 @@ in sources."unique-string-2.0.0" sources."universalify-2.0.0" sources."update-browserslist-db-1.0.10" - sources."update-notifier-5.1.0" - sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" sources."utila-0.4.0" sources."weak-lru-cache-1.2.2" @@ -110511,10 +109664,10 @@ in generator-code = nodeEnv.buildNodePackage { name = "generator-code"; packageName = "generator-code"; - version = "1.7.1"; + version = "1.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/generator-code/-/generator-code-1.7.1.tgz"; - sha512 = "I+xTH4f1EqKeK+El9RD5tRVPatbfH2AuMVYBKTW+Z0S/CzF0l2R+Glbp1ymNHRbyJe9qYUB0D/G7W/tE0FKcvQ=="; + url = "https://registry.npmjs.org/generator-code/-/generator-code-1.7.2.tgz"; + sha512 = "MWUDKWKtsYNT/eNZcFYoxHPatM4aAUFjSiI19RTOozd1tDiHBkIzWY28bRcE81eanJU3HQ8Djle5hDQG04K0hg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -110536,13 +109689,17 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@npmcli/arborist-4.3.1" sources."@npmcli/fs-1.1.1" - sources."@npmcli/git-2.1.0" + (sources."@npmcli/git-2.1.0" // { + dependencies = [ + sources."which-2.0.2" + ]; + }) sources."@npmcli/installed-package-contents-1.0.7" (sources."@npmcli/map-workspaces-2.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."@npmcli/metavuln-calculator-2.0.0" @@ -110569,7 +109726,7 @@ in sources."@types/minimatch-3.0.5" sources."@types/node-15.14.9" sources."@types/normalize-package-data-2.4.1" - sources."@types/vinyl-2.0.6" + sources."@types/vinyl-2.0.7" sources."abbrev-1.1.1" sources."agent-base-6.0.2" sources."agentkeepalive-4.2.1" @@ -110635,7 +109792,11 @@ in sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."core-util-is-1.0.3" - sources."cross-spawn-7.0.3" + (sources."cross-spawn-7.0.3" // { + dependencies = [ + sources."which-2.0.2" + ]; + }) sources."dargs-7.0.0" sources."dateformat-4.6.3" sources."debug-4.3.4" @@ -110665,13 +109826,13 @@ in ]; }) sources."fast-glob-3.2.12" - sources."fast-plist-0.1.2" - sources."fastq-1.13.0" + sources."fast-plist-0.1.3" + sources."fastq-1.14.0" sources."figures-3.2.0" (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."fill-range-7.0.1" @@ -110712,7 +109873,7 @@ in sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-4.0.1" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" @@ -110767,7 +109928,7 @@ in sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-1.4.1" sources."minipass-flush-1.0.5" @@ -110786,6 +109947,7 @@ in dependencies = [ sources."are-we-there-yet-3.0.1" sources."npmlog-6.0.2" + sources."which-2.0.2" ]; }) sources."nopt-5.0.0" @@ -110820,7 +109982,7 @@ in sources."minipass-fetch-2.1.2" ]; }) - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."socks-proxy-agent-7.0.0" sources."ssri-9.0.1" sources."unique-filename-2.0.1" @@ -110888,7 +110050,7 @@ in sources."rechoir-0.6.2" sources."remove-trailing-separator-1.1.0" sources."replace-ext-1.0.1" - sources."request-light-0.5.8" + sources."request-light-0.6.0" sources."resolve-1.22.1" sources."restore-cursor-3.1.0" sources."retry-0.12.0" @@ -110896,7 +110058,7 @@ in sources."rimraf-3.0.2" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."sanitize-filename-1.6.3" @@ -110957,14 +110119,14 @@ in sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."which-2.0.2" + sources."which-3.0.0" sources."which-pm-2.0.0" sources."wide-align-1.1.5" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."write-file-atomic-4.0.2" sources."yallist-4.0.0" - (sources."yeoman-environment-3.12.1" // { + (sources."yeoman-environment-3.13.0" // { dependencies = [ sources."escape-string-regexp-4.0.0" sources."find-up-5.0.0" @@ -111182,7 +110344,7 @@ in sources."pull-pushable-2.2.0" sources."pull-reader-1.3.1" sources."pull-skip-footer-0.1.0" - sources."pull-stream-3.6.14" + sources."pull-stream-3.7.0" (sources."pull-through-1.0.18" // { dependencies = [ sources."looper-3.0.0" @@ -111298,21 +110460,21 @@ in "@gitbeaker/cli" = nodeEnv.buildNodePackage { name = "_at_gitbeaker_slash_cli"; packageName = "@gitbeaker/cli"; - version = "35.7.0"; + version = "35.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-35.7.0.tgz"; - sha512 = "j6j/Mnc17h1XWH1PrjUhX5GxrZGwtqZkzn5Nxm164Al23HO5JfieWJ7Pbg2/fPIT1IRovEzeWA893dkuDxjQmg=="; + url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-35.8.0.tgz"; + sha512 = "jXC7NjiBUdEzctTTmSMd9nFhuKAIch1jqN/gHXDu0QPLmqUDnEfNGtgRf6HbJXDzi469xEk7BUy0+KHpbGvz0g=="; }; dependencies = [ - sources."@gitbeaker/core-35.7.0" - sources."@gitbeaker/node-35.7.0" - sources."@gitbeaker/requester-utils-35.7.0" + sources."@gitbeaker/core-35.8.0" + sources."@gitbeaker/node-35.8.0" + sources."@gitbeaker/requester-utils-35.8.0" sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" @@ -111331,7 +110493,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."combined-stream-1.0.8" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" (sources."decompress-response-6.0.0" // { dependencies = [ sources."mimic-response-3.1.0" @@ -111358,7 +110520,7 @@ in sources."is-interactive-2.0.0" sources."is-unicode-supported-1.3.0" sources."json-buffer-3.0.1" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."li-1.3.0" (sources."log-symbols-5.1.0" // { dependencies = [ @@ -111383,7 +110545,7 @@ in sources."p-cancelable-2.1.1" sources."pump-3.0.0" sources."qs-6.11.0" - sources."query-string-7.1.1" + sources."query-string-7.1.3" sources."quick-lru-5.1.1" sources."readable-stream-3.6.0" sources."resolve-alpn-1.2.1" @@ -111431,7 +110593,7 @@ in sources."escape-string-regexp-1.0.5" ]; }) - sources."@pnpm/network.ca-file-1.0.1" + sources."@pnpm/network.ca-file-1.0.2" sources."@pnpm/npm-conf-1.0.5" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" @@ -111442,7 +110604,7 @@ in sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-formats-2.1.1" (sources."ansi-align-3.0.1" // { dependencies = [ @@ -111469,7 +110631,7 @@ in sources."buffer-6.0.3" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.2" + sources."cacheable-request-10.2.3" sources."camelcase-6.3.0" (sources."camelcase-keys-7.0.2" // { dependencies = [ @@ -111478,7 +110640,7 @@ in }) sources."chalk-5.1.2" sources."chardet-0.7.0" - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" sources."cli-boxes-3.0.0" sources."cli-cursor-4.0.0" sources."cli-spinners-2.7.0" @@ -111545,7 +110707,7 @@ in sources."figures-5.0.0" sources."file-uri-to-path-2.0.0" sources."find-up-3.0.0" - sources."form-data-encoder-2.1.3" + sources."form-data-encoder-2.1.4" sources."formdata-polyfill-4.0.10" sources."fs-extra-8.1.0" (sources."ftp-0.3.10" // { @@ -111562,8 +110724,8 @@ in sources."data-uri-to-buffer-3.0.1" ]; }) - sources."global-dirs-3.0.0" - sources."got-12.5.2" + sources."global-dirs-3.0.1" + sources."got-12.5.3" sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" @@ -111573,7 +110735,7 @@ in sources."http-cache-semantics-4.1.0" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" - sources."http2-wrapper-2.1.11" + sources."http2-wrapper-2.2.0" sources."https-proxy-agent-5.0.1" sources."human-signals-3.0.1" sources."iconv-lite-0.4.24" @@ -111599,7 +110761,7 @@ in sources."is-stream-3.0.0" sources."is-typedarray-1.0.0" sources."is-unicode-supported-1.3.0" - sources."is-yarn-global-0.4.0" + sources."is-yarn-global-0.4.1" sources."isarray-0.0.1" sources."isexe-2.0.0" sources."js-tokens-4.0.0" @@ -111608,7 +110770,7 @@ in sources."json-schema-traverse-1.0.0" sources."json-schema-typed-7.0.3" sources."jsonfile-4.0.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."kind-of-6.0.3" sources."latest-version-7.0.0" sources."levn-0.3.0" @@ -111638,9 +110800,9 @@ in sources."mute-stream-0.0.8" sources."netmask-2.0.2" sources."node-domexception-1.0.0" - sources."node-fetch-3.2.10" + sources."node-fetch-3.3.0" sources."normalize-package-data-3.0.3" - sources."normalize-url-7.2.0" + sources."normalize-url-8.0.0" (sources."npm-run-path-5.1.0" // { dependencies = [ sources."path-key-4.0.0" @@ -111708,7 +110870,7 @@ in sources."responselike-3.0.0" sources."restore-cursor-4.0.0" sources."run-async-2.4.1" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.8" @@ -111743,7 +110905,7 @@ in sources."trim-newlines-4.0.2" sources."tslib-2.4.1" sources."type-check-0.3.2" - sources."type-fest-3.2.0" + sources."type-fest-3.3.0" sources."typedarray-to-buffer-3.1.5" sources."unique-string-3.0.0" sources."universalify-0.1.2" @@ -111753,7 +110915,7 @@ in sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" sources."validator-13.7.0" - sources."vm2-3.9.11" + sources."vm2-3.9.12" sources."wcwidth-1.0.1" sources."web-streams-polyfill-3.2.1" sources."which-2.0.2" @@ -111791,7 +110953,7 @@ in sources."fs.realpath-1.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."once-1.4.0" sources."wrappy-1.0.2" ]; @@ -111834,7 +110996,7 @@ in sources."concat-map-0.0.1" sources."core-util-is-1.0.3" sources."debug-3.2.7" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-4.2.1" sources."decompress-tar-4.1.1" (sources."decompress-tarbz2-4.1.1" // { @@ -111910,7 +111072,7 @@ in sources."kleur-3.0.3" ]; }) - sources."query-string-7.1.1" + sources."query-string-7.1.3" (sources."readable-stream-2.3.7" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -112087,9 +111249,9 @@ in sources."tslib-2.1.0" ]; }) - (sources."@graphql-tools/import-6.7.10" // { + (sources."@graphql-tools/import-6.7.12" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" sources."tslib-2.4.1" ]; }) @@ -112148,7 +111310,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-18.11.9" + sources."@types/node-18.11.10" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -112263,7 +111425,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-safe-stringify-2.1.1" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figlet-1.5.0" sources."figures-3.2.0" sources."fill-range-7.0.1" @@ -112315,7 +111477,7 @@ in sources."http2-client-1.3.5" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" (sources."import-fresh-3.3.0" // { dependencies = [ sources."resolve-from-4.0.0" @@ -112419,7 +111581,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.2" @@ -112616,10 +111778,10 @@ in graphql-language-service-cli = nodeEnv.buildNodePackage { name = "graphql-language-service-cli"; packageName = "graphql-language-service-cli"; - version = "3.3.11"; + version = "3.3.14"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.3.11.tgz"; - sha512 = "slmNNw6eENqjm9Jd3e2EJg7xQYxriO1hz37N1a++k+exyKv81aKLkwIVV8YxjCDbFzh6pbuqUs/6j2R4cyC+zA=="; + url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.3.14.tgz"; + sha512 = "1jPvSEWMTNiro1Ao0wJV9ApMP4R0axnXKS0jTJqh+IsySgHBmO2suflPxewYdWMMv6StMqF9ITX5IXrW9E7bbw=="; }; dependencies = [ sources."@ardatan/sync-fetch-0.0.1" @@ -112627,41 +111789,44 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/polyfill-7.12.1" - sources."@babel/types-7.20.2" + sources."@babel/types-7.20.5" sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" - sources."@graphql-tools/batch-execute-8.5.10" - sources."@graphql-tools/delegate-9.0.14" - sources."@graphql-tools/executor-0.0.6" - sources."@graphql-tools/graphql-file-loader-7.5.9" - sources."@graphql-tools/import-6.7.10" - sources."@graphql-tools/json-file-loader-7.4.10" - sources."@graphql-tools/load-7.8.4" - sources."@graphql-tools/merge-8.3.10" - sources."@graphql-tools/schema-9.0.8" - sources."@graphql-tools/url-loader-7.16.11" - sources."@graphql-tools/utils-9.0.1" - sources."@graphql-tools/wrap-9.2.10" + sources."@graphql-tools/batch-execute-8.5.12" + sources."@graphql-tools/delegate-9.0.17" + sources."@graphql-tools/executor-0.0.9" + sources."@graphql-tools/executor-graphql-ws-0.0.3" + sources."@graphql-tools/executor-http-0.0.4" + sources."@graphql-tools/executor-legacy-ws-0.0.3" + sources."@graphql-tools/graphql-file-loader-7.5.11" + sources."@graphql-tools/import-6.7.12" + sources."@graphql-tools/json-file-loader-7.4.12" + sources."@graphql-tools/load-7.8.6" + sources."@graphql-tools/merge-8.3.12" + sources."@graphql-tools/schema-9.0.10" + sources."@graphql-tools/url-loader-7.16.22" + sources."@graphql-tools/utils-9.1.1" + sources."@graphql-tools/wrap-9.2.18" sources."@graphql-typed-document-node/core-3.1.1" sources."@iarna/toml-2.2.5" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@peculiar/asn1-schema-2.3.0" + sources."@peculiar/asn1-schema-2.3.3" sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@repeaterjs/repeater-3.0.4" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/parse-json-4.0.0" sources."@types/ws-8.5.3" - sources."@vue/compiler-core-3.2.41" - sources."@vue/compiler-dom-3.2.41" - sources."@vue/compiler-sfc-3.2.41" - sources."@vue/compiler-ssr-3.2.41" - sources."@vue/reactivity-transform-3.2.41" - sources."@vue/shared-3.2.41" - sources."@whatwg-node/fetch-0.5.1" + sources."@vue/compiler-core-3.2.45" + sources."@vue/compiler-dom-3.2.45" + sources."@vue/compiler-sfc-3.2.45" + sources."@vue/compiler-ssr-3.2.45" + sources."@vue/reactivity-transform-3.2.45" + sources."@vue/shared-3.2.45" + sources."@whatwg-node/fetch-0.5.3" sources."abort-controller-3.0.0" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" @@ -112698,7 +111863,7 @@ in sources."event-target-shim-5.0.1" sources."extract-files-11.0.0" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."form-data-encoder-1.7.2" (sources."formdata-node-4.4.1" // { @@ -112719,11 +111884,11 @@ in ]; }) sources."graphql-language-service-5.1.0" - sources."graphql-language-service-server-2.9.2" + sources."graphql-language-service-server-2.9.4" sources."graphql-ws-5.11.2" sources."has-flag-3.0.0" sources."iconv-lite-0.6.3" - sources."ignore-5.2.0" + sources."ignore-5.2.1" (sources."import-fresh-3.3.0" // { dependencies = [ sources."resolve-from-4.0.0" @@ -112763,11 +111928,11 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."pvtsutils-1.3.2" sources."pvutils-1.1.3" sources."queue-microtask-1.2.3" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."remove-trailing-separator-1.1.0" sources."require-directory-2.1.1" sources."resolve-from-5.0.0" @@ -112789,8 +111954,8 @@ in sources."tr46-0.0.3" sources."ts-node-9.1.1" sources."tslib-2.4.1" - sources."typescript-4.8.4" - sources."undici-5.12.0" + sources."typescript-4.9.3" + sources."undici-5.13.0" sources."unixify-1.0.0" sources."utf-8-validate-5.0.10" sources."value-or-promise-1.0.11" @@ -112854,62 +112019,81 @@ in }) sources."@cronvel/get-pixels-3.4.1" sources."@cspotcode/source-map-support-0.8.1" - (sources."@graphql-tools/batch-execute-8.5.10" // { + (sources."@graphql-tools/batch-execute-8.5.12" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/delegate-9.0.14" // { + (sources."@graphql-tools/delegate-9.0.17" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/executor-0.0.6" // { + (sources."@graphql-tools/executor-0.0.9" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/graphql-file-loader-7.5.9" // { + (sources."@graphql-tools/executor-graphql-ws-0.0.3" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" + sources."isomorphic-ws-5.0.0" + sources."ws-8.11.0" ]; }) - (sources."@graphql-tools/import-6.7.10" // { + (sources."@graphql-tools/executor-http-0.0.4" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/json-file-loader-7.4.10" // { + (sources."@graphql-tools/executor-legacy-ws-0.0.3" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" + sources."isomorphic-ws-5.0.0" + sources."ws-8.11.0" ]; }) - (sources."@graphql-tools/load-7.8.4" // { + (sources."@graphql-tools/graphql-file-loader-7.5.11" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/merge-8.3.10" // { + (sources."@graphql-tools/import-6.7.12" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/schema-9.0.8" // { + (sources."@graphql-tools/json-file-loader-7.4.12" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) - (sources."@graphql-tools/url-loader-7.16.11" // { + (sources."@graphql-tools/load-7.8.6" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" + ]; + }) + (sources."@graphql-tools/merge-8.3.12" // { + dependencies = [ + sources."@graphql-tools/utils-9.1.1" + ]; + }) + (sources."@graphql-tools/schema-9.0.10" // { + dependencies = [ + sources."@graphql-tools/utils-9.1.1" + ]; + }) + (sources."@graphql-tools/url-loader-7.16.22" // { + dependencies = [ + sources."@graphql-tools/utils-9.1.1" sources."isomorphic-ws-5.0.0" sources."ws-8.11.0" ]; }) sources."@graphql-tools/utils-8.13.1" - (sources."@graphql-tools/wrap-9.2.10" // { + (sources."@graphql-tools/wrap-9.2.18" // { dependencies = [ - sources."@graphql-tools/utils-9.0.1" + sources."@graphql-tools/utils-9.1.1" ]; }) sources."@graphql-typed-document-node/core-3.1.1" @@ -112949,31 +112133,31 @@ in ]; }) sources."@oclif/screen-1.0.4" - sources."@peculiar/asn1-schema-2.3.0" + sources."@peculiar/asn1-schema-2.3.3" sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@repeaterjs/repeater-3.0.4" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" sources."@types/json-schema-7.0.9" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/parse-json-4.0.0" sources."@types/ws-8.5.3" - sources."@whatwg-node/fetch-0.5.1" + sources."@whatwg-node/fetch-0.5.3" sources."abort-controller-3.0.0" sources."accepts-1.3.8" sources."acorn-8.8.1" @@ -113072,7 +112256,7 @@ in sources."extract-files-11.0.0" sources."extract-stack-1.0.0" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" (sources."finalhandler-1.1.1" // { dependencies = [ @@ -113116,7 +112300,7 @@ in sources."http-errors-1.6.3" sources."hyperlinker-1.0.0" sources."iconv-lite-0.4.19" - sources."ignore-5.2.0" + sources."ignore-5.2.1" (sources."import-fresh-3.3.0" // { dependencies = [ sources."resolve-from-4.0.0" @@ -113250,8 +112434,8 @@ in sources."ts-node-10.9.1" sources."tslib-2.4.1" sources."type-is-1.6.18" - sources."typescript-4.8.4" - sources."undici-5.12.0" + sources."typescript-4.9.3" + sources."undici-5.13.0" sources."uniq-1.0.1" sources."universalify-0.1.2" sources."unixify-1.0.0" @@ -113555,7 +112739,7 @@ in sources."isarray-0.0.1" sources."lodash-4.17.21" sources."map-canvas-0.1.5" - sources."marked-4.2.2" + sources."marked-4.2.3" (sources."marked-terminal-5.1.1" // { dependencies = [ sources."chalk-5.1.2" @@ -113586,7 +112770,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."systeminformation-5.12.13" + sources."systeminformation-5.16.1" sources."term-canvas-0.0.5" sources."type-fest-1.4.0" sources."wordwrap-0.0.3" @@ -113713,7 +112897,7 @@ in sources."d-1.0.1" sources."debug-2.6.9" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" (sources."default-compare-1.0.0" // { dependencies = [ sources."kind-of-5.1.0" @@ -114137,7 +113321,7 @@ in sources."d-1.0.1" sources."debug-2.6.9" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."default-compare-1.0.0" sources."define-properties-1.1.4" sources."define-property-2.0.2" @@ -114785,7 +113969,7 @@ in sources."@colors/colors-1.5.0" sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.33" + sources."@types/node-14.18.34" sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -114795,7 +113979,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1248.0" + sources."aws-sdk-2.1267.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" sources."base64-js-1.5.1" @@ -114909,13 +114093,13 @@ in sources."lodash.reject-4.6.0" sources."lodash.some-4.6.0" sources."lodash.uniq-4.5.0" - sources."marked-4.2.2" + sources."marked-4.2.3" sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."minimist-1.2.7" sources."mkdirp-0.5.6" sources."moment-2.29.4" - sources."moment-timezone-0.5.38" + sources."moment-timezone-0.5.39" sources."ms-2.1.2" sources."mute-stream-0.0.8" sources."named-regexp-0.1.1" @@ -114978,9 +114162,8 @@ in sources."uuid-8.0.0" sources."verror-1.10.1" sources."which-typed-array-1.1.9" - (sources."winston-2.4.6" // { + (sources."winston-2.4.7" // { dependencies = [ - sources."async-3.2.4" sources."colors-1.0.3" ]; }) @@ -115016,11 +114199,11 @@ in dependencies = [ sources."jmp-2.0.0" sources."jp-kernel-2.0.0" - sources."nan-2.14.2" + sources."nan-2.17.0" sources."nel-1.3.0" sources."node-gyp-build-4.5.0" sources."uuid-3.4.0" - sources."zeromq-5.2.8" + sources."zeromq-5.3.1" ]; buildInputs = globalBuildInputs; meta = { @@ -115318,10 +114501,10 @@ in immich = nodeEnv.buildNodePackage { name = "immich"; packageName = "immich"; - version = "0.24.0"; + version = "0.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/immich/-/immich-0.24.0.tgz"; - sha512 = "ajDbwecJ46/7PzYPjWu49a7qmcskbIBMTB9Oufpb6r0LTbm7wImahFAENZlB+c1gjNdjguW2L9a85IKuamREvQ=="; + url = "https://registry.npmjs.org/immich/-/immich-0.25.0.tgz"; + sha512 = "TeAvfnWRPhfrQArCXd3WY3/cwVykZNcqm7lLcg+xZzWW8hGzczvpM/e0/8BrY8IrG8k8YuBbcVVq4nQW6OXzAw=="; }; dependencies = [ sources."@ffprobe-installer/darwin-arm64-5.0.1" @@ -115385,7 +114568,7 @@ in sources."strip-ansi-6.0.1" sources."strip-final-newline-2.0.0" sources."supports-color-5.5.0" - sources."systeminformation-5.12.13" + sources."systeminformation-5.16.1" sources."util-deprecate-1.0.2" sources."which-2.0.2" sources."wrappy-1.0.2" @@ -115603,7 +114786,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."forever-agent-0.6.1" sources."form-data-2.3.3" @@ -115681,7 +114864,7 @@ in sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."universalify-2.0.0" sources."uri-js-4.4.1" sources."uuid-3.4.0" @@ -116053,42 +115236,42 @@ in dependencies = [ sources."@iarna/toml-2.2.5" sources."@msgpack/msgpack-2.8.0" - sources."@ot-builder/bin-composite-types-1.5.4" - sources."@ot-builder/bin-util-1.5.4" - sources."@ot-builder/cli-help-shower-1.5.4" - sources."@ot-builder/cli-proc-1.5.4" - sources."@ot-builder/cli-shared-1.5.4" - sources."@ot-builder/common-impl-1.5.4" - sources."@ot-builder/errors-1.5.4" - sources."@ot-builder/io-bin-cff-1.5.4" - sources."@ot-builder/io-bin-encoding-1.5.4" - sources."@ot-builder/io-bin-ext-private-1.5.4" - sources."@ot-builder/io-bin-font-1.5.4" - sources."@ot-builder/io-bin-glyph-store-1.5.4" - sources."@ot-builder/io-bin-layout-1.5.4" - sources."@ot-builder/io-bin-metadata-1.5.4" - sources."@ot-builder/io-bin-metric-1.5.4" - sources."@ot-builder/io-bin-name-1.5.4" - sources."@ot-builder/io-bin-sfnt-1.5.4" - sources."@ot-builder/io-bin-ttf-1.5.4" - sources."@ot-builder/io-bin-vtt-private-1.5.4" - sources."@ot-builder/ot-1.5.4" - sources."@ot-builder/ot-encoding-1.5.4" - sources."@ot-builder/ot-ext-private-1.5.4" - sources."@ot-builder/ot-glyphs-1.5.4" - sources."@ot-builder/ot-layout-1.5.4" - sources."@ot-builder/ot-metadata-1.5.4" - sources."@ot-builder/ot-name-1.5.4" - sources."@ot-builder/ot-sfnt-1.5.4" - sources."@ot-builder/ot-standard-glyph-namer-1.5.4" - sources."@ot-builder/ot-vtt-private-1.5.4" - sources."@ot-builder/prelude-1.5.4" - sources."@ot-builder/primitive-1.5.4" - sources."@ot-builder/rectify-1.5.4" - sources."@ot-builder/stat-glyphs-1.5.4" - sources."@ot-builder/trace-1.5.4" - sources."@ot-builder/var-store-1.5.4" - sources."@ot-builder/variance-1.5.4" + sources."@ot-builder/bin-composite-types-1.5.5" + sources."@ot-builder/bin-util-1.5.5" + sources."@ot-builder/cli-help-shower-1.5.5" + sources."@ot-builder/cli-proc-1.5.5" + sources."@ot-builder/cli-shared-1.5.5" + sources."@ot-builder/common-impl-1.5.5" + sources."@ot-builder/errors-1.5.5" + sources."@ot-builder/io-bin-cff-1.5.5" + sources."@ot-builder/io-bin-encoding-1.5.5" + sources."@ot-builder/io-bin-ext-private-1.5.5" + sources."@ot-builder/io-bin-font-1.5.5" + sources."@ot-builder/io-bin-glyph-store-1.5.5" + sources."@ot-builder/io-bin-layout-1.5.5" + sources."@ot-builder/io-bin-metadata-1.5.5" + sources."@ot-builder/io-bin-metric-1.5.5" + sources."@ot-builder/io-bin-name-1.5.5" + sources."@ot-builder/io-bin-sfnt-1.5.5" + sources."@ot-builder/io-bin-ttf-1.5.5" + sources."@ot-builder/io-bin-vtt-private-1.5.5" + sources."@ot-builder/ot-1.5.5" + sources."@ot-builder/ot-encoding-1.5.5" + sources."@ot-builder/ot-ext-private-1.5.5" + sources."@ot-builder/ot-glyphs-1.5.5" + sources."@ot-builder/ot-layout-1.5.5" + sources."@ot-builder/ot-metadata-1.5.5" + sources."@ot-builder/ot-name-1.5.5" + sources."@ot-builder/ot-sfnt-1.5.5" + sources."@ot-builder/ot-standard-glyph-namer-1.5.5" + sources."@ot-builder/ot-vtt-private-1.5.5" + sources."@ot-builder/prelude-1.5.5" + sources."@ot-builder/primitive-1.5.5" + sources."@ot-builder/rectify-1.5.5" + sources."@ot-builder/stat-glyphs-1.5.5" + sources."@ot-builder/trace-1.5.5" + sources."@ot-builder/var-store-1.5.5" + sources."@ot-builder/variance-1.5.5" sources."aglfn-1.0.2" sources."ansi-styles-4.3.0" sources."argparse-2.0.1" @@ -116099,8 +115282,8 @@ in sources."has-flag-4.0.0" sources."iconv-lite-0.6.3" sources."lru-cache-6.0.0" - sources."ot-builder-1.5.4" - sources."otb-ttc-bundle-1.5.4" + sources."ot-builder-1.5.5" + sources."otb-ttc-bundle-1.5.5" sources."safer-buffer-2.1.2" sources."semver-7.3.8" sources."spiro-3.0.0" @@ -116138,7 +115321,7 @@ in sources."concat-map-0.0.1" (sources."filelist-1.0.4" // { dependencies = [ - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."has-flag-4.0.0" @@ -116175,7 +115358,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."bufrw-1.3.0" - sources."chai-4.3.6" + sources."chai-4.3.7" sources."chai-as-promised-7.1.1" sources."chalk-2.4.2" sources."check-error-1.0.2" @@ -116183,7 +115366,7 @@ in sources."color-name-1.1.3" sources."commander-2.20.3" sources."concat-map-0.0.1" - sources."deep-eql-3.0.1" + sources."deep-eql-4.1.2" sources."error-7.0.2" sources."escape-string-regexp-1.0.5" sources."fast-deep-equal-2.0.1" @@ -116199,7 +115382,7 @@ in sources."jaeger-client-3.19.0" sources."lodash-4.17.21" sources."long-2.4.0" - sources."loupe-2.3.5" + sources."loupe-2.3.6" sources."minimatch-3.1.2" sources."minimist-1.2.7" sources."mz-2.7.0" @@ -116295,102 +115478,102 @@ in sources."tslib-1.14.1" ]; }) - sources."@aws-sdk/abort-controller-3.201.0" + sources."@aws-sdk/abort-controller-3.222.0" sources."@aws-sdk/chunked-blob-reader-3.188.0" - sources."@aws-sdk/chunked-blob-reader-native-3.204.0" - (sources."@aws-sdk/client-s3-3.204.0" // { + sources."@aws-sdk/chunked-blob-reader-native-3.208.0" + (sources."@aws-sdk/client-s3-3.223.0" // { dependencies = [ sources."fast-xml-parser-4.0.11" ]; }) - sources."@aws-sdk/client-sso-3.204.0" - (sources."@aws-sdk/client-sts-3.204.0" // { + sources."@aws-sdk/client-sso-3.223.0" + sources."@aws-sdk/client-sso-oidc-3.223.0" + (sources."@aws-sdk/client-sts-3.223.0" // { dependencies = [ sources."fast-xml-parser-4.0.11" ]; }) - sources."@aws-sdk/config-resolver-3.201.0" - sources."@aws-sdk/credential-provider-env-3.201.0" - sources."@aws-sdk/credential-provider-imds-3.201.0" - sources."@aws-sdk/credential-provider-ini-3.204.0" - sources."@aws-sdk/credential-provider-node-3.204.0" - sources."@aws-sdk/credential-provider-process-3.201.0" - sources."@aws-sdk/credential-provider-sso-3.204.0" - sources."@aws-sdk/credential-provider-web-identity-3.201.0" - sources."@aws-sdk/eventstream-codec-3.201.0" - sources."@aws-sdk/eventstream-serde-browser-3.201.0" - sources."@aws-sdk/eventstream-serde-config-resolver-3.201.0" - sources."@aws-sdk/eventstream-serde-node-3.201.0" - sources."@aws-sdk/eventstream-serde-universal-3.201.0" - sources."@aws-sdk/fetch-http-handler-3.204.0" - sources."@aws-sdk/hash-blob-browser-3.204.0" - sources."@aws-sdk/hash-node-3.201.0" - sources."@aws-sdk/hash-stream-node-3.201.0" - sources."@aws-sdk/invalid-dependency-3.201.0" + sources."@aws-sdk/config-resolver-3.222.0" + sources."@aws-sdk/credential-provider-env-3.222.0" + sources."@aws-sdk/credential-provider-imds-3.222.0" + sources."@aws-sdk/credential-provider-ini-3.223.0" + sources."@aws-sdk/credential-provider-node-3.223.0" + sources."@aws-sdk/credential-provider-process-3.222.0" + sources."@aws-sdk/credential-provider-sso-3.223.0" + sources."@aws-sdk/credential-provider-web-identity-3.222.0" + sources."@aws-sdk/eventstream-codec-3.222.0" + sources."@aws-sdk/eventstream-serde-browser-3.222.0" + sources."@aws-sdk/eventstream-serde-config-resolver-3.222.0" + sources."@aws-sdk/eventstream-serde-node-3.222.0" + sources."@aws-sdk/eventstream-serde-universal-3.222.0" + sources."@aws-sdk/fetch-http-handler-3.222.0" + sources."@aws-sdk/hash-blob-browser-3.222.0" + sources."@aws-sdk/hash-node-3.222.0" + sources."@aws-sdk/hash-stream-node-3.222.0" + sources."@aws-sdk/invalid-dependency-3.222.0" sources."@aws-sdk/is-array-buffer-3.201.0" - sources."@aws-sdk/md5-js-3.204.0" - sources."@aws-sdk/middleware-bucket-endpoint-3.201.0" - sources."@aws-sdk/middleware-content-length-3.201.0" - sources."@aws-sdk/middleware-endpoint-3.201.0" - sources."@aws-sdk/middleware-expect-continue-3.201.0" - sources."@aws-sdk/middleware-flexible-checksums-3.201.0" - sources."@aws-sdk/middleware-host-header-3.201.0" - sources."@aws-sdk/middleware-location-constraint-3.201.0" - sources."@aws-sdk/middleware-logger-3.201.0" - sources."@aws-sdk/middleware-recursion-detection-3.201.0" - (sources."@aws-sdk/middleware-retry-3.201.0" // { + sources."@aws-sdk/md5-js-3.222.0" + sources."@aws-sdk/middleware-bucket-endpoint-3.222.0" + sources."@aws-sdk/middleware-content-length-3.222.0" + sources."@aws-sdk/middleware-endpoint-3.222.0" + sources."@aws-sdk/middleware-expect-continue-3.222.0" + sources."@aws-sdk/middleware-flexible-checksums-3.222.0" + sources."@aws-sdk/middleware-host-header-3.222.0" + sources."@aws-sdk/middleware-location-constraint-3.222.0" + sources."@aws-sdk/middleware-logger-3.222.0" + sources."@aws-sdk/middleware-recursion-detection-3.222.0" + (sources."@aws-sdk/middleware-retry-3.222.0" // { dependencies = [ sources."uuid-8.3.2" ]; }) - sources."@aws-sdk/middleware-sdk-s3-3.201.0" - sources."@aws-sdk/middleware-sdk-sts-3.201.0" - sources."@aws-sdk/middleware-serde-3.201.0" - sources."@aws-sdk/middleware-signing-3.201.0" - sources."@aws-sdk/middleware-ssec-3.201.0" - sources."@aws-sdk/middleware-stack-3.201.0" - sources."@aws-sdk/middleware-user-agent-3.201.0" - sources."@aws-sdk/node-config-provider-3.201.0" - sources."@aws-sdk/node-http-handler-3.201.0" - sources."@aws-sdk/property-provider-3.201.0" - sources."@aws-sdk/protocol-http-3.201.0" - sources."@aws-sdk/querystring-builder-3.201.0" - sources."@aws-sdk/querystring-parser-3.201.0" - sources."@aws-sdk/s3-request-presigner-3.204.0" - sources."@aws-sdk/service-error-classification-3.201.0" - sources."@aws-sdk/shared-ini-file-loader-3.201.0" - sources."@aws-sdk/signature-v4-3.201.0" - sources."@aws-sdk/signature-v4-crt-3.201.0" - sources."@aws-sdk/signature-v4-multi-region-3.201.0" - sources."@aws-sdk/smithy-client-3.201.0" - sources."@aws-sdk/types-3.201.0" - sources."@aws-sdk/url-parser-3.201.0" - sources."@aws-sdk/util-arn-parser-3.201.0" - sources."@aws-sdk/util-base64-3.202.0" - sources."@aws-sdk/util-base64-browser-3.188.0" - sources."@aws-sdk/util-base64-node-3.201.0" + sources."@aws-sdk/middleware-sdk-s3-3.222.0" + sources."@aws-sdk/middleware-sdk-sts-3.222.0" + sources."@aws-sdk/middleware-serde-3.222.0" + sources."@aws-sdk/middleware-signing-3.222.0" + sources."@aws-sdk/middleware-ssec-3.222.0" + sources."@aws-sdk/middleware-stack-3.222.0" + sources."@aws-sdk/middleware-user-agent-3.222.0" + sources."@aws-sdk/node-config-provider-3.222.0" + sources."@aws-sdk/node-http-handler-3.222.0" + sources."@aws-sdk/property-provider-3.222.0" + sources."@aws-sdk/protocol-http-3.222.0" + sources."@aws-sdk/querystring-builder-3.222.0" + sources."@aws-sdk/querystring-parser-3.222.0" + sources."@aws-sdk/s3-request-presigner-3.223.0" + sources."@aws-sdk/service-error-classification-3.222.0" + sources."@aws-sdk/shared-ini-file-loader-3.222.0" + sources."@aws-sdk/signature-v4-3.222.0" + sources."@aws-sdk/signature-v4-crt-3.222.0" + sources."@aws-sdk/signature-v4-multi-region-3.222.0" + sources."@aws-sdk/smithy-client-3.222.0" + sources."@aws-sdk/token-providers-3.223.0" + sources."@aws-sdk/types-3.222.0" + sources."@aws-sdk/url-parser-3.222.0" + sources."@aws-sdk/util-arn-parser-3.208.0" + sources."@aws-sdk/util-base64-3.208.0" sources."@aws-sdk/util-body-length-browser-3.188.0" - sources."@aws-sdk/util-body-length-node-3.201.0" - sources."@aws-sdk/util-buffer-from-3.201.0" - sources."@aws-sdk/util-config-provider-3.201.0" - sources."@aws-sdk/util-create-request-3.201.0" - sources."@aws-sdk/util-defaults-mode-browser-3.201.0" - sources."@aws-sdk/util-defaults-mode-node-3.201.0" - sources."@aws-sdk/util-endpoints-3.202.0" - sources."@aws-sdk/util-format-url-3.201.0" + sources."@aws-sdk/util-body-length-node-3.208.0" + sources."@aws-sdk/util-buffer-from-3.208.0" + sources."@aws-sdk/util-config-provider-3.208.0" + sources."@aws-sdk/util-create-request-3.222.0" + sources."@aws-sdk/util-defaults-mode-browser-3.222.0" + sources."@aws-sdk/util-defaults-mode-node-3.222.0" + sources."@aws-sdk/util-endpoints-3.222.0" + sources."@aws-sdk/util-format-url-3.222.0" sources."@aws-sdk/util-hex-encoding-3.201.0" - sources."@aws-sdk/util-locate-window-3.201.0" - sources."@aws-sdk/util-middleware-3.201.0" - sources."@aws-sdk/util-stream-browser-3.204.0" - sources."@aws-sdk/util-stream-node-3.201.0" + sources."@aws-sdk/util-locate-window-3.208.0" + sources."@aws-sdk/util-middleware-3.222.0" + sources."@aws-sdk/util-stream-browser-3.222.0" + sources."@aws-sdk/util-stream-node-3.222.0" sources."@aws-sdk/util-uri-escape-3.201.0" - sources."@aws-sdk/util-user-agent-browser-3.201.0" - sources."@aws-sdk/util-user-agent-node-3.201.0" + sources."@aws-sdk/util-user-agent-browser-3.222.0" + sources."@aws-sdk/util-user-agent-node-3.222.0" sources."@aws-sdk/util-utf8-browser-3.188.0" - sources."@aws-sdk/util-utf8-node-3.201.0" - sources."@aws-sdk/util-waiter-3.201.0" + sources."@aws-sdk/util-utf8-node-3.208.0" + sources."@aws-sdk/util-waiter-3.222.0" sources."@aws-sdk/xml-builder-3.201.0" - sources."@braintree/sanitize-url-6.0.1" + sources."@braintree/sanitize-url-6.0.2" sources."@cronvel/get-pixels-3.4.1" sources."@gar/promisify-1.1.3" sources."@httptoolkit/websocket-stream-6.0.1" @@ -116455,7 +115638,7 @@ in }) sources."@tootallnate/once-1.1.2" sources."@types/nanoid-3.0.0" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/ws-8.5.3" sources."abab-2.0.6" sources."abbrev-1.1.1" @@ -116483,7 +115666,7 @@ in sources."color-name-1.1.4" ]; }) - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-2.0.0" sources."are-we-there-yet-1.0.6" sources."argparse-2.0.1" @@ -116497,13 +115680,13 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - (sources."aws-crt-1.14.5" // { + (sources."aws-crt-1.14.8" // { dependencies = [ sources."mkdirp-1.0.4" sources."tar-6.1.12" ]; }) - (sources."aws-sdk-2.1248.0" // { + (sources."aws-sdk-2.1267.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -116606,8 +115789,8 @@ in ]; }) sources."cwise-compiler-1.1.3" - sources."d3-7.6.1" - sources."d3-array-3.2.0" + sources."d3-7.7.0" + sources."d3-array-3.2.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" @@ -116638,7 +115821,7 @@ in sources."d3-scale-chromatic-3.0.0" sources."d3-selection-3.0.0" sources."d3-shape-3.1.0" - sources."d3-time-3.0.0" + sources."d3-time-3.1.0" sources."d3-time-format-4.1.0" sources."d3-timer-3.0.1" sources."d3-transition-3.0.1" @@ -116684,7 +115867,7 @@ in sources."datauri-4.1.0" sources."debug-4.3.4" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-response-4.2.1" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" @@ -116970,7 +116153,7 @@ in sources."string_decoder-0.10.31" ]; }) - (sources."mermaid-9.2.0" // { + (sources."mermaid-9.2.2" // { dependencies = [ sources."uuid-9.0.0" ]; @@ -116981,7 +116164,7 @@ in sources."mimic-response-2.1.0" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-1.4.1" sources."minipass-flush-1.0.5" @@ -117011,7 +116194,7 @@ in sources."negotiator-0.6.3" sources."nextgen-events-1.5.3" sources."no-case-2.3.2" - (sources."node-abi-3.28.0" // { + (sources."node-abi-3.30.0" // { dependencies = [ sources."semver-7.3.8" ]; @@ -117401,7 +116584,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."lru-cache-4.1.5" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."nopt-6.0.0" sources."once-1.4.0" sources."proto-list-1.2.4" @@ -117451,7 +116634,7 @@ in sha512 = "tzTgkklbWKrlaQL2+e3NNgLcZu3NaK2vsHRx7tyHQ+H5jcB9Gx0txSd2eJWlMC/xU1+7LQu4s58Ry0RkuaEQVg=="; }; dependencies = [ - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@jsdoc/salty-0.2.1" sources."@types/linkify-it-3.0.2" sources."@types/markdown-it-12.2.3" @@ -117468,10 +116651,10 @@ in sources."lodash-4.17.21" sources."markdown-it-12.3.2" sources."markdown-it-anchor-8.6.5" - sources."marked-4.2.2" + sources."marked-4.2.3" sources."mdurl-1.0.1" sources."mkdirp-1.0.4" - sources."requizzle-0.2.3" + sources."requizzle-0.2.4" sources."strip-json-comments-3.1.1" sources."uc.micro-1.0.6" sources."underscore-1.13.6" @@ -117490,10 +116673,10 @@ in jshint = nodeEnv.buildNodePackage { name = "jshint"; packageName = "jshint"; - version = "2.13.5"; + version = "2.13.6"; src = fetchurl { - url = "https://registry.npmjs.org/jshint/-/jshint-2.13.5.tgz"; - sha512 = "dB2n1w3OaQ35PLcBGIWXlszjbPZwsgZoxsg6G8PtNf2cFMC1l0fObkYLUuXqTTdi6tKw4sAjfUseTdmDMHQRcg=="; + url = "https://registry.npmjs.org/jshint/-/jshint-2.13.6.tgz"; + sha512 = "IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ=="; }; dependencies = [ sources."balanced-match-1.0.2" @@ -117563,15 +116746,15 @@ in json-diff = nodeEnv.buildNodePackage { name = "json-diff"; packageName = "json-diff"; - version = "0.9.1"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/json-diff/-/json-diff-0.9.1.tgz"; - sha512 = "Z3eMg6kbVTBr3g/IpmF6z28yL2sqi4kkIlJWDQSt0auQW2y0QFu3RmSKizvj880E/EUyNanvWY3oi/T5Z7ZA1g=="; + url = "https://registry.npmjs.org/json-diff/-/json-diff-1.0.0.tgz"; + sha512 = "9M6M60W4GUxmha6eoFhRVKF+tDw70jdqrxo3u6aqQ6/cwW6RhkSTPI0gvfCRcBwbWiUWvJo9jR6e9TZxcQdhnA=="; }; dependencies = [ + sources."@ewoudenberg/difflib-0.1.0" sources."cli-color-2.0.3" sources."d-1.0.1" - sources."difflib-0.2.4" sources."dreamopt-0.8.0" sources."es5-ext-0.10.62" sources."es6-iterator-2.0.3" @@ -117621,15 +116804,11 @@ in sources."cookiejar-2.1.3" sources."debug-4.3.4" sources."delayed-stream-1.0.0" - sources."dezalgo-1.0.3" + sources."dezalgo-1.0.4" sources."esprima-4.0.1" sources."fast-safe-stringify-2.1.1" sources."form-data-4.0.0" - (sources."formidable-2.0.1" // { - dependencies = [ - sources."qs-6.9.3" - ]; - }) + sources."formidable-2.1.2" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.3" sources."graphlib-2.1.8" @@ -117954,7 +117133,7 @@ in sources."dashdash-1.14.1" sources."debug-2.6.9" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-extend-0.6.0" (sources."define-property-2.0.2" // { dependencies = [ @@ -118444,9 +117623,8 @@ in sources."@oclif/command-1.8.20" sources."@oclif/config-1.18.6" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.3" // { + (sources."@oclif/help-1.0.4" // { dependencies = [ - sources."@oclif/config-1.18.5" sources."wrap-ansi-6.2.0" ]; }) @@ -118536,7 +117714,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" (sources."figures-3.2.0" // { dependencies = [ sources."escape-string-regexp-1.0.5" @@ -118557,7 +117735,7 @@ in sources."has-symbols-1.0.3" sources."hyperlinker-1.0.0" sources."iconv-lite-0.4.24" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" sources."inquirer-7.3.3" @@ -118698,11 +117876,11 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."balanced-match-1.0.2" sources."base64id-2.0.0" sources."binary-extensions-2.2.0" @@ -118731,7 +117909,7 @@ in sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" - (sources."engine.io-6.2.0" // { + (sources."engine.io-6.2.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -118776,7 +117954,7 @@ in sources."isbinaryfile-4.0.10" sources."jsonfile-4.0.0" sources."lodash-4.17.21" - (sources."log4js-6.7.0" // { + (sources."log4js-6.7.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -118812,7 +117990,7 @@ in sources."safer-buffer-2.1.2" sources."setprototypeof-1.2.0" sources."side-channel-1.0.4" - (sources."socket.io-4.5.3" // { + (sources."socket.io-4.5.4" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -118875,13 +118053,13 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.19.3" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -118903,16 +118081,16 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/node-7.20.2" - sources."@babel/parser-7.20.2" + sources."@babel/node-7.20.5" + sources."@babel/parser-7.20.5" sources."@babel/plugin-syntax-jsx-7.18.6" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/register-7.18.9" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -118933,7 +118111,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@openpgp/hkp-client-0.0.2" sources."@openpgp/wkd-client-0.0.3" - sources."@peculiar/asn1-schema-2.3.0" + sources."@peculiar/asn1-schema-2.3.3" sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@tootallnate/once-1.1.2" @@ -119013,7 +118191,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."canvas-2.10.2" sources."chalk-2.4.2" sources."chardet-1.5.0" @@ -119035,7 +118213,7 @@ in sources."convert-source-map-1.9.0" sources."cookie-0.5.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."create-hash-1.2.0" @@ -119054,8 +118232,8 @@ in ]; }) sources."debug-4.3.4" - sources."decimal.js-10.4.2" - sources."decode-uri-component-0.2.0" + sources."decimal.js-10.4.3" + sources."decode-uri-component-0.2.2" sources."decompress-response-4.2.1" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" @@ -119102,7 +118280,7 @@ in sources."express-validator-6.14.2" sources."fast-glob-3.2.12" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."filter-obj-1.1.0" (sources."finalhandler-1.2.0" // { @@ -119167,7 +118345,7 @@ in sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" @@ -119238,7 +118416,7 @@ in sources."minimalistic-assert-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."mkdirp-classic-0.5.3" @@ -119349,7 +118527,7 @@ in }) sources."rc-1.2.8" sources."readable-stream-3.6.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."regexp.prototype.flags-1.4.3" sources."require-directory-2.1.1" sources."requires-port-1.0.0" @@ -119401,8 +118579,8 @@ in }) sources."strict-uri-encode-2.0.0" sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-1.3.0" (sources."strip-ansi-6.0.1" // { dependencies = [ @@ -119486,102 +118664,52 @@ in lcov-result-merger = nodeEnv.buildNodePackage { name = "lcov-result-merger"; packageName = "lcov-result-merger"; - version = "3.3.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-3.3.0.tgz"; - sha512 = "Krg9p24jGaIT93RBMA8b5qLHDEiAXTavaTiEdMAZaJS93PsBKIcg/89cw/8rgeSfRuQX+I9x7h73SHFjCZ6cHg=="; + url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-4.0.0.tgz"; + sha512 = "xgyipRVKEASBjJ7urBdx4VW+ofcIoatmMBueHy2i/rt3P9MrOvv1CZ7+cVqOfWIB74RvGMGZE4MiXnWLbFwQEA=="; }; dependencies = [ + sources."@nodelib/fs.scandir-2.1.5" + sources."@nodelib/fs.stat-2.0.5" + sources."@nodelib/fs.walk-1.2.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."append-buffer-1.0.2" - sources."balanced-match-1.0.2" - sources."brace-expansion-1.1.11" - sources."buffer-equal-1.0.1" - sources."call-bind-1.0.2" + sources."braces-3.0.2" sources."cliui-7.0.4" - sources."clone-2.1.2" - sources."clone-buffer-1.0.0" - sources."clone-stats-1.0.0" - sources."cloneable-readable-1.1.3" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."concat-map-0.0.1" - sources."convert-source-map-1.9.0" sources."core-util-is-1.0.3" - sources."define-properties-1.1.4" - sources."duplexify-3.7.1" sources."emoji-regex-8.0.0" - sources."end-of-stream-1.4.4" sources."escalade-3.1.1" - sources."extend-3.0.2" - sources."flush-write-stream-1.1.1" - sources."fs-mkdirp-stream-1.0.0" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.1" + sources."fast-glob-3.2.12" + sources."fastq-1.14.0" + sources."fill-range-7.0.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.1.3" - sources."glob-7.2.3" - sources."glob-parent-3.1.0" - sources."glob-stream-6.1.0" - sources."graceful-fs-4.2.10" - sources."has-1.0.3" - sources."has-property-descriptors-1.0.0" - sources."has-symbols-1.0.3" - sources."inflight-1.0.6" + sources."glob-parent-5.1.2" sources."inherits-2.0.4" - sources."is-absolute-1.0.0" - sources."is-buffer-1.1.6" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-3.1.0" - sources."is-negated-glob-1.0.0" - sources."is-relative-1.0.0" - sources."is-unc-path-1.0.0" - sources."is-utf8-0.2.1" - sources."is-valid-glob-1.0.0" - sources."is-windows-1.0.2" + sources."is-glob-4.0.3" + sources."is-number-7.0.0" sources."isarray-1.0.0" - sources."json-stable-stringify-without-jsonify-1.0.1" - sources."lazystream-1.0.1" - sources."lead-1.0.0" - sources."minimatch-3.1.2" - sources."normalize-path-2.1.1" - sources."now-and-later-2.0.1" - sources."object-keys-1.1.1" - sources."object.assign-4.1.4" - sources."once-1.4.0" - sources."ordered-read-streams-1.0.1" - sources."path-dirname-1.0.2" - sources."path-is-absolute-1.0.1" + sources."merge2-1.4.1" + sources."micromatch-4.0.5" + sources."picomatch-2.3.1" sources."process-nextick-args-2.0.1" - sources."pump-2.0.1" - sources."pumpify-1.5.1" + sources."queue-microtask-1.2.3" sources."readable-stream-2.3.7" - sources."remove-bom-buffer-3.0.0" - sources."remove-bom-stream-1.2.0" - sources."remove-trailing-separator-1.1.0" - sources."replace-ext-1.0.1" sources."require-directory-2.1.1" - sources."resolve-options-1.1.0" + sources."reusify-1.0.4" + sources."run-parallel-1.2.0" sources."safe-buffer-5.1.2" - sources."stream-shift-1.0.1" sources."string-width-4.2.3" sources."string_decoder-1.1.1" sources."strip-ansi-6.0.1" sources."through2-2.0.5" - sources."through2-filter-3.0.0" - sources."to-absolute-glob-2.0.2" - sources."to-through-2.0.0" - sources."unc-path-regex-0.1.2" - sources."unique-stream-2.3.1" + sources."to-regex-range-5.0.1" sources."util-deprecate-1.0.2" - sources."value-or-function-3.0.0" - sources."vinyl-2.2.1" - sources."vinyl-fs-3.0.3" - sources."vinyl-sourcemap-1.1.0" sources."wrap-ansi-7.0.0" - sources."wrappy-1.0.2" sources."xtend-4.0.2" sources."y18n-5.0.8" sources."yargs-16.2.0" @@ -120096,10 +119224,10 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-6.0.1.tgz"; - sha512 = "aNodtj1jyuEqzYmkYh+vTfRuzLkG3RZkvYxFCuLeXXzIYD5pjMHtf+1q4m03SPsZt+cElhhwkgjdg6GjihraBw=="; + url = "https://registry.npmjs.org/lerna/-/lerna-6.1.0.tgz"; + sha512 = "3qAjIj8dgBwHtCAiLbq4VU/C1V9D1tvTLm2owZubdGAN72aB5TxuCu2mcw+yeEorOcXuR9YWx7EXIkAf+G0N2w=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -120117,39 +119245,39 @@ in sources."@gar/promisify-1.1.3" sources."@hutson/parse-repository-url-3.0.2" sources."@isaacs/string-locale-compare-1.1.0" - sources."@lerna/add-6.0.1" - sources."@lerna/bootstrap-6.0.1" - sources."@lerna/changed-6.0.1" - sources."@lerna/check-working-tree-6.0.1" - sources."@lerna/child-process-6.0.1" - sources."@lerna/clean-6.0.1" - sources."@lerna/cli-6.0.1" - sources."@lerna/collect-uncommitted-6.0.1" - sources."@lerna/collect-updates-6.0.1" - sources."@lerna/command-6.0.1" - sources."@lerna/conventional-commits-6.0.1" - (sources."@lerna/create-6.0.1" // { + sources."@lerna/add-6.1.0" + sources."@lerna/bootstrap-6.1.0" + sources."@lerna/changed-6.1.0" + sources."@lerna/check-working-tree-6.1.0" + sources."@lerna/child-process-6.1.0" + sources."@lerna/clean-6.1.0" + sources."@lerna/cli-6.1.0" + sources."@lerna/collect-uncommitted-6.1.0" + sources."@lerna/collect-updates-6.1.0" + sources."@lerna/command-6.1.0" + sources."@lerna/conventional-commits-6.1.0" + (sources."@lerna/create-6.1.0" // { dependencies = [ sources."builtins-5.0.1" sources."validate-npm-package-name-4.0.0" sources."yargs-parser-20.2.4" ]; }) - sources."@lerna/create-symlink-6.0.1" - sources."@lerna/describe-ref-6.0.1" - sources."@lerna/diff-6.0.1" - sources."@lerna/exec-6.0.1" - sources."@lerna/filter-options-6.0.1" - sources."@lerna/filter-packages-6.0.1" - sources."@lerna/get-npm-exec-opts-6.0.1" - sources."@lerna/get-packed-6.0.1" - sources."@lerna/github-client-6.0.1" - sources."@lerna/gitlab-client-6.0.1" - sources."@lerna/global-options-6.0.1" - sources."@lerna/has-npm-version-6.0.1" - sources."@lerna/import-6.0.1" - sources."@lerna/info-6.0.1" - (sources."@lerna/init-6.0.1" // { + sources."@lerna/create-symlink-6.1.0" + sources."@lerna/describe-ref-6.1.0" + sources."@lerna/diff-6.1.0" + sources."@lerna/exec-6.1.0" + sources."@lerna/filter-options-6.1.0" + sources."@lerna/filter-packages-6.1.0" + sources."@lerna/get-npm-exec-opts-6.1.0" + sources."@lerna/get-packed-6.1.0" + sources."@lerna/github-client-6.1.0" + sources."@lerna/gitlab-client-6.1.0" + sources."@lerna/global-options-6.1.0" + sources."@lerna/has-npm-version-6.1.0" + sources."@lerna/import-6.1.0" + sources."@lerna/info-6.1.0" + (sources."@lerna/init-6.1.0" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -120160,23 +119288,23 @@ in sources."write-json-file-4.3.0" ]; }) - sources."@lerna/link-6.0.1" - sources."@lerna/list-6.0.1" - sources."@lerna/listable-6.0.1" - sources."@lerna/log-packed-6.0.1" - sources."@lerna/npm-conf-6.0.1" - sources."@lerna/npm-dist-tag-6.0.1" - sources."@lerna/npm-install-6.0.1" - sources."@lerna/npm-publish-6.0.1" - sources."@lerna/npm-run-script-6.0.1" - sources."@lerna/otplease-6.0.1" - sources."@lerna/output-6.0.1" - sources."@lerna/pack-directory-6.0.1" - sources."@lerna/package-6.0.1" - sources."@lerna/package-graph-6.0.1" - sources."@lerna/prerelease-id-from-version-6.0.1" - sources."@lerna/profiler-6.0.1" - (sources."@lerna/project-6.0.1" // { + sources."@lerna/link-6.1.0" + sources."@lerna/list-6.1.0" + sources."@lerna/listable-6.1.0" + sources."@lerna/log-packed-6.1.0" + sources."@lerna/npm-conf-6.1.0" + sources."@lerna/npm-dist-tag-6.1.0" + sources."@lerna/npm-install-6.1.0" + sources."@lerna/npm-publish-6.1.0" + sources."@lerna/npm-run-script-6.1.0" + sources."@lerna/otplease-6.1.0" + sources."@lerna/output-6.1.0" + sources."@lerna/pack-directory-6.1.0" + sources."@lerna/package-6.1.0" + sources."@lerna/package-graph-6.1.0" + sources."@lerna/prerelease-id-from-version-6.1.0" + sources."@lerna/profiler-6.1.0" + (sources."@lerna/project-6.1.0" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -120187,26 +119315,26 @@ in sources."write-json-file-4.3.0" ]; }) - sources."@lerna/prompt-6.0.1" - sources."@lerna/publish-6.0.1" - sources."@lerna/pulse-till-done-6.0.1" - sources."@lerna/query-graph-6.0.1" - sources."@lerna/resolve-symlink-6.0.1" - sources."@lerna/rimraf-dir-6.0.1" - sources."@lerna/run-6.0.1" - sources."@lerna/run-lifecycle-6.0.1" - sources."@lerna/run-topologically-6.0.1" - sources."@lerna/symlink-binary-6.0.1" - sources."@lerna/symlink-dependencies-6.0.1" - (sources."@lerna/temp-write-6.0.1" // { + sources."@lerna/prompt-6.1.0" + sources."@lerna/publish-6.1.0" + sources."@lerna/pulse-till-done-6.1.0" + sources."@lerna/query-graph-6.1.0" + sources."@lerna/resolve-symlink-6.1.0" + sources."@lerna/rimraf-dir-6.1.0" + sources."@lerna/run-6.1.0" + sources."@lerna/run-lifecycle-6.1.0" + sources."@lerna/run-topologically-6.1.0" + sources."@lerna/symlink-binary-6.1.0" + sources."@lerna/symlink-dependencies-6.1.0" + (sources."@lerna/temp-write-6.1.0" // { dependencies = [ sources."make-dir-3.1.0" sources."semver-6.3.0" ]; }) - sources."@lerna/timer-6.0.1" - sources."@lerna/validation-error-6.0.1" - (sources."@lerna/version-6.0.1" // { + sources."@lerna/timer-6.1.0" + sources."@lerna/validation-error-6.1.0" + (sources."@lerna/version-6.1.0" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -120220,7 +119348,7 @@ in sources."write-json-file-4.3.0" ]; }) - (sources."@lerna/write-log-file-6.0.1" // { + (sources."@lerna/write-log-file-6.1.0" // { dependencies = [ sources."write-file-atomic-4.0.2" ]; @@ -120249,7 +119377,7 @@ in dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."@npmcli/metavuln-calculator-3.1.1" @@ -120259,13 +119387,13 @@ in sources."@npmcli/package-json-2.0.0" sources."@npmcli/promise-spawn-3.0.0" sources."@npmcli/run-script-4.2.1" - sources."@nrwl/cli-15.0.10" - (sources."@nrwl/devkit-15.0.10" // { + sources."@nrwl/cli-15.2.4" + (sources."@nrwl/devkit-15.2.4" // { dependencies = [ sources."semver-7.3.4" ]; }) - sources."@nrwl/tao-15.0.10" + sources."@nrwl/tao-15.2.4" sources."@octokit/auth-token-3.0.2" sources."@octokit/core-4.1.0" (sources."@octokit/endpoint-7.0.3" // { @@ -120292,17 +119420,17 @@ in sources."@swc-node/core-1.9.1" sources."@swc-node/register-1.5.4" sources."@swc-node/sourcemap-support-0.2.2" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" sources."@tootallnate/once-2.0.0" sources."@types/json5-0.0.29" sources."@types/minimatch-3.0.5" @@ -120310,7 +119438,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@yarnpkg/lockfile-1.1.0" - (sources."@yarnpkg/parsers-3.0.0-rc.27" // { + (sources."@yarnpkg/parsers-3.0.0-rc.32" // { dependencies = [ sources."argparse-1.0.10" sources."js-yaml-3.14.1" @@ -120331,7 +119459,7 @@ in }) sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-2.0.0" sources."are-we-there-yet-3.0.1" sources."argparse-2.0.1" @@ -120343,7 +119471,7 @@ in sources."async-3.2.4" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."axios-1.1.3" + sources."axios-1.2.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."before-after-hook-2.2.3" @@ -120366,7 +119494,7 @@ in sources."brace-expansion-2.0.1" sources."glob-8.0.3" sources."lru-cache-7.14.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."callsites-3.1.0" @@ -120418,7 +119546,7 @@ in sources."conventional-commits-parser-3.2.4" sources."conventional-recommended-bump-6.1.0" sources."core-util-is-1.0.3" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."cross-spawn-7.0.3" sources."dargs-7.0.0" sources."dateformat-3.0.3" @@ -120465,12 +119593,12 @@ in ]; }) sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figures-3.2.0" (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."fill-range-7.0.1" @@ -120528,11 +119656,11 @@ in sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" (sources."ignore-walk-5.0.1" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) (sources."import-fresh-3.3.0" // { @@ -120670,7 +119798,7 @@ in sources."arrify-1.0.1" ]; }) - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" @@ -120706,7 +119834,7 @@ in dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."npm-bundled-2.0.1" sources."npm-normalize-package-bin-2.0.0" ]; @@ -120732,7 +119860,7 @@ in }) sources."npm-run-path-4.0.1" sources."npmlog-6.0.2" - (sources."nx-15.0.10" // { + (sources."nx-15.2.4" // { dependencies = [ sources."chalk-4.1.0" sources."cli-spinners-2.6.1" @@ -120808,7 +119936,7 @@ in dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."npm-normalize-package-bin-2.0.0" ]; }) @@ -120849,7 +119977,7 @@ in sources."rimraf-3.0.2" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.8" @@ -120902,7 +120030,7 @@ in sources."type-fest-0.4.1" sources."typedarray-0.0.6" sources."typedarray-to-buffer-3.1.5" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."uglify-js-3.17.4" sources."unique-filename-2.0.1" sources."unique-slug-3.0.0" @@ -120966,7 +120094,7 @@ in sources."make-dir-2.1.0" sources."mime-1.6.0" sources."ms-2.1.3" - sources."needle-3.1.0" + sources."needle-3.2.0" sources."parse-node-version-1.0.1" sources."pify-4.0.1" sources."prr-1.0.1" @@ -121077,7 +120205,7 @@ in sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."define-property-2.0.2" sources."depd-2.0.0" sources."destroy-1.2.0" @@ -121430,7 +120558,7 @@ in sources."core-util-is-1.0.3" sources."dashdash-1.14.1" sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" (sources."define-property-2.0.2" // { dependencies = [ sources."isobject-3.0.1" @@ -121442,7 +120570,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."encodeurl-1.0.2" - (sources."engine.io-3.6.0" // { + (sources."engine.io-3.6.1" // { dependencies = [ sources."cookie-0.4.2" sources."debug-4.1.1" @@ -121770,10 +120898,10 @@ in dependencies = [ sources."debug-3.1.0" sources."isarray-2.0.1" - sources."socket.io-parser-3.3.2" + sources."socket.io-parser-3.3.3" ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."component-emitter-1.2.1" sources."debug-4.1.1" @@ -121931,7 +121059,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.5" sources."@types/get-stdin-5.0.1" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -122209,7 +121337,7 @@ in sources."fs.realpath-1.0.0" sources."get-stdin-9.0.0" sources."glob-8.0.3" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-3.0.1" @@ -122220,7 +121348,7 @@ in sources."markdownlint-0.26.2" sources."markdownlint-rule-helpers-0.17.2" sources."mdurl-1.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.7" sources."once-1.4.0" sources."run-con-1.2.11" @@ -122255,11 +121383,11 @@ in sources."dir-glob-3.0.1" sources."entities-3.0.1" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."glob-parent-5.1.2" sources."globby-13.1.2" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -122328,11 +121456,11 @@ in sources."link-check-5.2.0" sources."lodash-4.17.21" sources."markdown-link-extractor-3.1.0" - sources."marked-4.2.2" + sources."marked-4.2.3" sources."ms-2.1.3" - sources."needle-3.1.0" + sources."needle-3.2.0" sources."nth-check-2.1.1" - sources."parse5-7.1.1" + sources."parse5-7.1.2" sources."parse5-htmlparser2-tree-adapter-7.0.0" sources."progress-2.0.3" sources."punycode-2.1.1" @@ -122357,13 +121485,13 @@ in src = ../../applications/editors/vim/plugins/markdown-preview-nvim; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" + sources."@babel/compat-data-7.20.5" (sources."@babel/core-7.0.0" // { dependencies = [ sources."debug-3.2.7" ]; }) - sources."@babel/generator-7.20.2" + sources."@babel/generator-7.20.5" sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" (sources."@babel/helper-compilation-targets-7.20.0" // { @@ -122371,7 +121499,7 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-regexp-features-plugin-7.19.0" + sources."@babel/helper-create-regexp-features-plugin-7.20.5" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-explode-assignable-expression-7.18.6" (sources."@babel/helper-function-name-7.19.0" // { @@ -122397,18 +121525,18 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - (sources."@babel/helper-wrap-function-7.19.0" // { + (sources."@babel/helper-wrap-function-7.20.5" // { dependencies = [ sources."@babel/template-7.18.10" ]; }) - (sources."@babel/helpers-7.20.1" // { + (sources."@babel/helpers-7.20.6" // { dependencies = [ sources."@babel/template-7.18.10" ]; }) sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-proposal-async-generator-functions-7.20.1" sources."@babel/plugin-proposal-class-properties-7.0.0" sources."@babel/plugin-proposal-json-strings-7.18.6" @@ -122425,7 +121553,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" + sources."@babel/plugin-transform-block-scoping-7.20.5" sources."@babel/plugin-transform-classes-7.20.2" sources."@babel/plugin-transform-computed-properties-7.18.9" sources."@babel/plugin-transform-destructuring-7.20.2" @@ -122441,12 +121569,12 @@ in sources."@babel/plugin-transform-modules-umd-7.18.6" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-react-display-name-7.18.6" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/plugin-transform-react-jsx-self-7.18.6" sources."@babel/plugin-transform-react-jsx-source-7.19.6" - sources."@babel/plugin-transform-regenerator-7.18.6" + sources."@babel/plugin-transform-regenerator-7.20.5" (sources."@babel/plugin-transform-runtime-7.0.0" // { dependencies = [ sources."resolve-1.22.1" @@ -122471,9 +121599,10 @@ in ]; }) sources."@babel/template-7.0.0" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" - sources."@chemzqm/neovim-5.8.0" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" + sources."@chemzqm/msgpack-lite-0.1.29" + sources."@chemzqm/neovim-5.8.10" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -122512,7 +121641,7 @@ in sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" sources."any-promise-1.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-1.2.0" sources."argparse-2.0.1" sources."arr-diff-4.0.0" @@ -122613,7 +121742,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -122685,7 +121814,7 @@ in sources."cyclist-1.0.1" sources."date-format-4.0.14" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."del-3.0.0" @@ -122710,7 +121839,7 @@ in sources."emojis-list-2.1.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" - (sources."engine.io-3.6.0" // { + (sources."engine.io-3.6.1" // { dependencies = [ sources."debug-4.1.1" ]; @@ -122945,7 +122074,7 @@ in sources."locate-path-3.0.0" sources."lodash-4.17.21" sources."log-update-2.3.0" - sources."log4js-6.7.0" + sources."log4js-6.7.1" sources."loose-envify-1.4.0" sources."lru-cache-5.1.1" sources."make-dir-1.3.0" @@ -123115,15 +122244,15 @@ in sources."reflect.ownkeys-0.2.0" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - (sources."regenerator-transform-0.15.0" // { + sources."regenerator-runtime-0.13.11" + (sources."regenerator-transform-0.15.1" // { dependencies = [ - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" ]; }) sources."regex-not-1.0.2" sources."regexp.prototype.flags-1.4.3" - sources."regexpu-core-5.2.1" + sources."regexpu-core-5.2.2" sources."regjsgen-0.7.1" (sources."regjsparser-0.9.1" // { dependencies = [ @@ -123216,10 +122345,10 @@ in sources."debug-3.1.0" sources."isarray-2.0.1" sources."ms-2.0.0" - sources."socket.io-parser-3.3.2" + sources."socket.io-parser-3.3.3" ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."component-emitter-1.2.1" sources."debug-4.1.1" @@ -123274,8 +122403,8 @@ in sources."strip-ansi-4.0.0" ]; }) - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" sources."strip-bom-3.0.0" @@ -123336,7 +122465,7 @@ in sources."unfetch-3.0.0" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" + sources."unicode-match-property-value-ecmascript-2.1.0" sources."unicode-property-aliases-ecmascript-2.1.0" sources."union-value-1.0.1" sources."unique-filename-1.1.1" @@ -123603,7 +122732,7 @@ in sources."jsbn-0.1.1" sources."json-schema-0.4.0" sources."json-schema-traverse-0.4.1" - sources."json-stable-stringify-1.0.1" + sources."json-stable-stringify-1.0.2" sources."json-stringify-safe-5.0.1" sources."jsonify-0.0.1" sources."jsonpointer-5.0.1" @@ -123798,15 +122927,24 @@ in "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { name = "_at_mermaid-js_slash_mermaid-cli"; packageName = "@mermaid-js/mermaid-cli"; - version = "9.1.7"; + version = "9.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.1.7.tgz"; - sha512 = "m7sAmOHhG6bmY1IEy+rSvyrQrKA/XIM6PFWP7w+3uW/C+uanPrIt0ieLL2NJfvfzLMkvEin1ClYE+pA6Y7Jwnw=="; + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.2.2.tgz"; + sha512 = "Bb0eKH9zA7AKcnjfTeCAVBsZv53ZwgBeIMM/kEqht8+9Fw29nxflGgq1vQOZoLQYsHZzIhB6cWTthx7ahNOi+g=="; }; dependencies = [ - sources."@types/node-18.11.9" + sources."@babel/code-frame-7.18.6" + sources."@babel/helper-validator-identifier-7.19.1" + (sources."@babel/highlight-7.18.6" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) + sources."@types/node-18.11.10" + sources."@types/parse-json-4.0.0" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" + sources."ansi-styles-3.2.1" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bl-4.1.0" @@ -123814,44 +122952,61 @@ in sources."buffer-5.7.1" sources."buffer-crc32-0.2.13" sources."bufferutil-4.0.7" + sources."callsites-3.1.0" sources."chalk-5.1.2" sources."chownr-1.1.4" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."commander-9.4.1" sources."concat-map-0.0.1" + sources."cosmiconfig-7.0.1" sources."cross-fetch-3.1.5" sources."debug-4.3.4" - sources."devtools-protocol-0.0.1045489" + sources."devtools-protocol-0.0.1056733" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" + sources."error-ex-1.3.2" + sources."escape-string-regexp-1.0.5" sources."extract-zip-2.0.1" sources."fd-slicer-1.1.0" sources."fs-constants-1.0.0" sources."fs.realpath-1.0.0" sources."get-stream-5.2.0" sources."glob-7.2.3" + sources."has-flag-3.0.0" sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" + sources."import-fresh-3.3.0" sources."inflight-1.0.6" sources."inherits-2.0.4" + sources."is-arrayish-0.2.1" + sources."js-tokens-4.0.0" + sources."json-parse-even-better-errors-2.3.1" + sources."lines-and-columns-1.2.4" sources."minimatch-3.1.2" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."node-fetch-2.6.7" sources."node-gyp-build-4.5.0" sources."once-1.4.0" + sources."parent-module-1.0.1" + sources."parse-json-5.2.0" sources."path-is-absolute-1.0.1" + sources."path-type-4.0.0" sources."pend-1.2.0" sources."progress-2.0.3" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."puppeteer-18.2.1" - sources."puppeteer-core-18.2.1" + sources."puppeteer-19.3.0" + sources."puppeteer-core-19.3.0" sources."readable-stream-3.6.0" + sources."resolve-from-4.0.0" sources."rimraf-3.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."string_decoder-1.3.0" + sources."supports-color-5.5.0" sources."tar-fs-2.1.1" sources."tar-stream-2.2.0" sources."through-2.3.8" @@ -123862,7 +123017,8 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."wrappy-1.0.2" - sources."ws-8.9.0" + sources."ws-8.10.0" + sources."yaml-1.10.2" sources."yauzl-2.10.0" ]; buildInputs = globalBuildInputs; @@ -123887,7 +123043,7 @@ in sources."ansi-colors-4.1.1" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."argparse-2.0.1" sources."balanced-match-1.0.2" sources."binary-extensions-2.2.0" @@ -124003,15 +123159,11 @@ in sources."cookiejar-2.1.3" sources."debug-4.3.4" sources."delayed-stream-1.0.0" - sources."dezalgo-1.0.3" + sources."dezalgo-1.0.4" sources."esprima-4.0.1" sources."fast-safe-stringify-2.1.1" sources."form-data-4.0.0" - (sources."formidable-2.0.1" // { - dependencies = [ - sources."qs-6.9.3" - ]; - }) + sources."formidable-2.1.2" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.3" sources."graphlib-2.1.8" @@ -124168,11 +123320,22 @@ in sources."@jest/environment-27.5.1" sources."@jest/fake-timers-27.5.1" sources."@jest/types-27.5.1" - sources."@ledgerhq/devices-7.0.3" - sources."@ledgerhq/errors-6.11.1" - sources."@ledgerhq/hw-transport-6.27.6" - sources."@ledgerhq/hw-transport-node-hid-6.27.6" - sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.6" + sources."@ledgerhq/devices-7.0.5" + sources."@ledgerhq/errors-6.12.1" + sources."@ledgerhq/hw-transport-6.27.8" + sources."@ledgerhq/hw-transport-node-hid-6.27.8" + (sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.8" // { + dependencies = [ + sources."decompress-response-4.2.1" + sources."detect-libc-1.0.3" + sources."mimic-response-2.1.0" + sources."node-abi-2.30.1" + sources."node-hid-2.1.1" + sources."prebuild-install-6.1.4" + sources."semver-5.7.1" + sources."simple-get-3.1.1" + ]; + }) (sources."@ledgerhq/hw-transport-u2f-5.36.0-deprecated" // { dependencies = [ sources."@ledgerhq/devices-5.51.1" @@ -124200,13 +123363,13 @@ in sources."@ledgerhq/logs-6.10.1" sources."@segment/loosely-validate-event-2.0.0" sources."@sindresorhus/is-0.14.0" - sources."@sinonjs/commons-1.8.4" + sources."@sinonjs/commons-1.8.6" sources."@sinonjs/fake-timers-8.1.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/istanbul-lib-coverage-2.0.4" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-3.0.1" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/stack-utils-2.0.1" sources."@types/yargs-16.0.4" sources."@types/yargs-parser-21.0.0" @@ -124286,7 +123449,7 @@ in sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-2.0.0" - sources."detect-libc-1.0.3" + sources."detect-libc-2.0.1" sources."dot-prop-5.3.0" sources."duplexer3-0.1.5" sources."emoji-regex-8.0.0" @@ -124317,7 +123480,7 @@ in sources."get-stream-4.1.0" sources."github-from-package-0.0.0" sources."glob-7.2.3" - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."got-9.6.0" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" @@ -124360,7 +123523,7 @@ in sources."jest-mock-27.5.1" (sources."jest-util-27.5.1" // { dependencies = [ - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" ]; }) sources."join-component-1.1.0" @@ -124399,15 +123562,11 @@ in sources."near-hd-key-1.2.1" sources."near-ledger-js-0.2.1" sources."near-seed-phrase-0.2.0" - (sources."node-abi-2.30.1" // { - dependencies = [ - sources."semver-5.7.1" - ]; - }) + sources."node-abi-3.30.0" sources."node-addon-api-3.2.1" sources."node-fetch-2.6.7" sources."node-gyp-build-4.5.0" - sources."node-hid-2.1.1" + sources."node-hid-2.1.2" sources."normalize-url-4.5.1" sources."npmlog-4.1.2" sources."number-is-nan-1.0.1" @@ -124426,7 +123585,7 @@ in sources."pbkdf2-3.1.2" sources."picomatch-2.3.1" sources."platform-1.3.6" - sources."prebuild-install-6.1.4" + sources."prebuild-install-7.1.1" sources."prepend-http-2.0.0" (sources."pretty-format-27.5.1" // { dependencies = [ @@ -124465,14 +123624,14 @@ in sources."sha.js-2.4.11" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" - (sources."simple-get-3.1.1" // { + (sources."simple-get-4.0.1" // { dependencies = [ - sources."decompress-response-4.2.1" - sources."mimic-response-2.1.0" + sources."decompress-response-6.0.0" + sources."mimic-response-3.1.0" ]; }) sources."slash-3.0.0" - (sources."stack-utils-2.0.5" // { + (sources."stack-utils-2.0.6" // { dependencies = [ sources."escape-string-regexp-2.0.0" ]; @@ -124635,7 +123794,7 @@ in dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."chownr-2.0.0" @@ -124673,7 +123832,7 @@ in sources."lru-cache-7.14.1" sources."make-fetch-happen-10.2.1" sources."minimatch-3.1.2" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" @@ -124871,7 +124030,7 @@ in sources."isstream-0.1.2" sources."jsbn-0.1.1" sources."json-schema-0.4.0" - sources."json-stable-stringify-1.0.1" + sources."json-stable-stringify-1.0.2" sources."json-stringify-safe-5.0.1" sources."jsonify-0.0.1" (sources."jsprim-1.4.2" // { @@ -125157,7 +124316,7 @@ in sha512 = "B6q576kLw96eKOiqNpNJsUiwl5vRipc46T0w/LUI7O3fPAVxwu5zklIBhE6Iefj8FV1IdbLwXULESqMWlwjlGQ=="; }; dependencies = [ - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" sources."@mapbox/node-pre-gyp-1.0.10" sources."@node-red/editor-api-3.0.2" sources."@node-red/editor-client-3.0.2" @@ -125173,10 +124332,10 @@ in sources."@node-red/util-3.0.2" sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -125356,7 +124515,7 @@ in sources."universalify-2.0.0" ]; }) - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."leven-2.1.0" sources."lodash.clonedeep-4.5.0" sources."lowercase-keys-2.0.0" @@ -125381,7 +124540,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - (sources."minipass-3.3.5" // { + (sources."minipass-3.3.6" // { dependencies = [ sources."yallist-4.0.0" ]; @@ -125464,7 +124623,7 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."reinterval-1.1.0" sources."require-from-string-2.0.2" sources."resolve-alpn-1.2.1" @@ -125629,7 +124788,7 @@ in sources."mime-types-2.1.35" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-0.3.5" sources."ncp-0.4.2" @@ -125755,7 +124914,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."balanced-match-1.0.2" sources."binary-extensions-2.2.0" sources."brace-expansion-1.1.11" @@ -125780,7 +124939,7 @@ in sources."pstree.remy-1.1.8" sources."readdirp-3.6.0" sources."semver-5.7.1" - (sources."simple-update-notifier-1.0.7" // { + (sources."simple-update-notifier-1.1.0" // { dependencies = [ sources."semver-7.0.0" ]; @@ -125832,14 +124991,14 @@ in }) sources."@sindresorhus/is-2.1.1" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" + sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" - sources."@types/responselike-3.0.0" + sources."@types/responselike-1.0.0" sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" @@ -125860,11 +125019,7 @@ in sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."builtins-1.0.3" - (sources."cacheable-lookup-2.0.1" // { - dependencies = [ - sources."@types/keyv-3.1.4" - ]; - }) + sources."cacheable-lookup-2.0.1" (sources."cacheable-request-7.0.2" // { dependencies = [ sources."get-stream-5.2.0" @@ -125902,7 +125057,7 @@ in sources."dot-prop-5.3.0" ]; }) - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."cross-spawn-7.0.3" sources."crypto-random-string-2.0.0" sources."date-fns-1.30.1" @@ -125928,7 +125083,7 @@ in sources."execa-5.1.1" sources."external-editor-3.1.0" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" (sources."figures-3.2.0" // { dependencies = [ sources."escape-string-regexp-1.0.5" @@ -125964,7 +125119,7 @@ in sources."http-cache-semantics-4.1.0" sources."human-signals-2.1.0" sources."iconv-lite-0.4.24" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-3.0.4" sources."import-fresh-3.3.0" sources."import-lazy-2.1.0" @@ -126043,7 +125198,7 @@ in sources."js-tokens-4.0.0" sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."kind-of-6.0.3" sources."latest-version-5.1.0" sources."lines-and-columns-1.2.4" @@ -126294,7 +125449,7 @@ in sources."unique-string-2.0.0" (sources."update-notifier-5.1.0" // { dependencies = [ - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."ini-2.0.0" sources."is-installed-globally-0.4.0" ]; @@ -126334,10 +125489,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "8.19.3"; + version = "9.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-8.19.3.tgz"; - sha512 = "0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA=="; + url = "https://registry.npmjs.org/npm/-/npm-9.1.3.tgz"; + sha512 = "MOlpFXmfdPmQhvbBuV0RkaDR8VcO45eT2+ecLYC0GEP266PYAAZ6L33QPz9SR7fC3o4L+1V/KV9DtoHTetaDuw=="; }; buildInputs = globalBuildInputs; meta = { @@ -126352,10 +125507,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "16.3.16"; + version = "16.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.3.16.tgz"; - sha512 = "OJRfwc2+p0ZnDvZQ4FOou9ev4kI6c0Lmu+uEJjijCNUSXnf5AEpyB6+kX31HsmkDzQ10ApA4CvM1TE+rXP+R8g=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.4.3.tgz"; + sha512 = "kuTErUSd9DkJKU5Kf5nitkN4Yf8k41OJL/hudtRR+Rf9YaKJasLHHnQboQdEtbf6DFrqMzwxrPSX8p1engLLbQ=="; }; dependencies = [ sources."@gar/promisify-1.1.3" @@ -126363,17 +125518,13 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@npmcli/fs-2.1.2" - sources."@npmcli/git-3.0.2" - sources."@npmcli/installed-package-contents-1.0.7" + sources."@npmcli/git-4.0.3" + sources."@npmcli/installed-package-contents-2.0.1" sources."@npmcli/move-file-2.0.1" - sources."@npmcli/node-gyp-2.0.0" - sources."@npmcli/promise-spawn-3.0.0" - (sources."@npmcli/run-script-4.2.1" // { - dependencies = [ - sources."read-package-json-fast-2.0.3" - ]; - }) - sources."@pnpm/network.ca-file-1.0.1" + sources."@npmcli/node-gyp-3.0.0" + sources."@npmcli/promise-spawn-6.0.1" + sources."@npmcli/run-script-6.0.0" + sources."@pnpm/network.ca-file-1.0.2" sources."@pnpm/npm-conf-1.0.5" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" @@ -126407,17 +125558,16 @@ in dependencies = [ sources."@npmcli/fs-3.1.0" sources."glob-8.0.3" - sources."ssri-10.0.0" sources."unique-filename-3.0.0" sources."unique-slug-4.0.0" ]; }) sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.2" + sources."cacheable-request-10.2.3" sources."camelcase-7.0.0" sources."chalk-5.1.2" sources."chownr-2.0.0" - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" sources."clean-stack-2.2.0" sources."cli-boxes-3.0.0" sources."cli-table-0.3.11" @@ -126432,7 +125582,11 @@ in }) sources."configstore-6.0.0" sources."console-control-strings-1.1.0" - sources."cross-spawn-7.0.3" + (sources."cross-spawn-7.0.3" // { + dependencies = [ + sources."which-2.0.2" + ]; + }) (sources."crypto-random-string-4.0.0" // { dependencies = [ sources."type-fest-1.4.0" @@ -126458,10 +125612,10 @@ in sources."escape-goat-4.0.0" sources."fast-glob-3.2.12" sources."fast-memoize-2.5.2" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."find-up-5.0.0" - sources."form-data-encoder-2.1.3" + sources."form-data-encoder-2.1.4" sources."fp-and-or-0.1.3" sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" @@ -126476,13 +125630,13 @@ in ]; }) sources."glob-parent-5.1.2" - (sources."global-dirs-3.0.0" // { + (sources."global-dirs-3.0.1" // { dependencies = [ sources."ini-2.0.0" ]; }) sources."globby-11.1.0" - sources."got-12.5.2" + sources."got-12.5.3" sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-unicode-2.0.1" @@ -126490,11 +125644,11 @@ in sources."hosted-git-info-5.2.1" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-5.0.0" - sources."http2-wrapper-2.1.11" + sources."http2-wrapper-2.2.0" sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-6.0.0" sources."import-lazy-4.0.0" sources."imurmurhash-0.1.4" @@ -126516,17 +125670,17 @@ in sources."is-obj-2.0.0" sources."is-path-inside-3.0.3" sources."is-typedarray-1.0.0" - sources."is-yarn-global-0.4.0" + sources."is-yarn-global-0.4.1" sources."isexe-2.0.0" sources."jju-1.4.0" sources."js-yaml-4.1.0" sources."json-buffer-3.0.1" - sources."json-parse-even-better-errors-2.3.1" + sources."json-parse-even-better-errors-3.0.0" sources."json-parse-helpfulerror-1.0.3" sources."json5-2.2.1" sources."jsonlines-0.1.1" sources."jsonparse-1.3.1" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."kleur-4.1.5" sources."latest-version-7.0.0" sources."locate-path-6.0.0" @@ -126537,14 +125691,15 @@ in dependencies = [ sources."cacache-16.1.3" sources."glob-8.0.3" + sources."ssri-9.0.1" ]; }) sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-response-4.0.0" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" @@ -126555,21 +125710,34 @@ in sources."mkdirp-1.0.4" sources."ms-2.1.2" sources."negotiator-0.6.3" - sources."node-gyp-9.3.0" - sources."nopt-6.0.0" - sources."normalize-package-data-4.0.1" - sources."normalize-url-7.2.0" - sources."npm-bundled-1.1.2" - sources."npm-install-checks-5.0.0" - sources."npm-normalize-package-bin-1.0.1" - sources."npm-package-arg-9.1.2" - sources."npm-packlist-7.0.2" - (sources."npm-pick-manifest-7.0.2" // { + (sources."node-gyp-9.3.0" // { dependencies = [ - sources."npm-normalize-package-bin-2.0.0" + sources."which-2.0.2" + ]; + }) + sources."nopt-6.0.0" + (sources."normalize-package-data-5.0.0" // { + dependencies = [ + sources."hosted-git-info-6.1.1" + ]; + }) + sources."normalize-url-8.0.0" + sources."npm-bundled-3.0.0" + sources."npm-install-checks-6.0.0" + sources."npm-normalize-package-bin-3.0.0" + (sources."npm-package-arg-10.1.0" // { + dependencies = [ + sources."hosted-git-info-6.1.1" + ]; + }) + sources."npm-packlist-7.0.2" + sources."npm-pick-manifest-8.0.1" + (sources."npm-registry-fetch-14.0.2" // { + dependencies = [ + sources."make-fetch-happen-11.0.1" + sources."minipass-fetch-3.0.0" ]; }) - sources."npm-registry-fetch-13.3.1" sources."npmlog-6.0.2" sources."once-1.4.0" sources."p-cancelable-3.0.0" @@ -126577,14 +125745,14 @@ in sources."p-locate-5.0.0" sources."p-map-4.0.0" sources."package-json-8.1.0" - sources."pacote-15.0.0" + sources."pacote-15.0.6" sources."parse-github-url-1.0.2" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-type-4.0.0" sources."picomatch-2.3.1" - sources."proc-log-2.0.1" + sources."proc-log-3.0.0" sources."progress-2.0.3" sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" @@ -126599,18 +125767,12 @@ in ]; }) sources."rc-config-loader-4.1.1" - (sources."read-package-json-5.0.2" // { + (sources."read-package-json-6.0.0" // { dependencies = [ sources."glob-8.0.3" - sources."npm-normalize-package-bin-2.0.0" - ]; - }) - (sources."read-package-json-fast-3.0.1" // { - dependencies = [ - sources."json-parse-even-better-errors-3.0.0" - sources."npm-normalize-package-bin-3.0.0" ]; }) + sources."read-package-json-fast-3.0.1" sources."readable-stream-3.6.0" sources."registry-auth-token-5.0.1" sources."registry-url-6.0.1" @@ -126647,7 +125809,7 @@ in sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" - sources."ssri-9.0.1" + sources."ssri-10.0.0" sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -126663,8 +125825,8 @@ in sources."update-notifier-6.0.2" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" - sources."validate-npm-package-name-4.0.0" - sources."which-2.0.2" + sources."validate-npm-package-name-5.0.0" + sources."which-3.0.0" sources."wide-align-1.1.5" (sources."widest-line-4.0.1" // { dependencies = [ @@ -126839,10 +126001,10 @@ in orval = nodeEnv.buildNodePackage { name = "orval"; packageName = "orval"; - version = "6.10.2"; + version = "6.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/orval/-/orval-6.10.2.tgz"; - sha512 = "0PcbjpFbaHzBCTUaFz9a9N2rFcNa9wO94XFPTJZQxsczclMfg3uImE1BbaNFf0ItAUWZNEzveadQJTk/863G/g=="; + url = "https://registry.npmjs.org/orval/-/orval-6.10.3.tgz"; + sha512 = "gct7wGGacGIj3cRKqfioRK2/TRDAK11LbpghRgTMeNWWF+JBCyZGA8H9ehhfdCOuhXIb4me61aNphiusrlz7jQ=="; }; dependencies = [ sources."@apidevtools/json-schema-ref-parser-9.0.6" @@ -126850,8 +126012,8 @@ in sources."@apidevtools/swagger-methods-3.0.2" sources."@apidevtools/swagger-parser-10.1.0" sources."@asyncapi/specs-3.2.1" - sources."@esbuild/android-arm-0.15.13" - sources."@esbuild/linux-loong64-0.15.13" + sources."@esbuild/android-arm-0.15.17" + sources."@esbuild/linux-loong64-0.15.17" sources."@exodus/schemasafe-1.0.0-rc.9" sources."@ibm-cloud/openapi-ruleset-0.37.3" sources."@jsdevtools/ono-7.1.3" @@ -126881,7 +126043,7 @@ in sources."fast-glob-3.2.7" ]; }) - (sources."@stoplight/spectral-core-1.15.1" // { + (sources."@stoplight/spectral-core-1.16.0" // { dependencies = [ sources."@stoplight/types-13.6.0" ]; @@ -126890,8 +126052,8 @@ in sources."@stoplight/spectral-functions-1.7.1" sources."@stoplight/spectral-parsers-1.0.2" sources."@stoplight/spectral-ref-resolver-1.0.2" - sources."@stoplight/spectral-ruleset-bundler-1.4.0" - sources."@stoplight/spectral-ruleset-migrator-1.9.0" + sources."@stoplight/spectral-ruleset-bundler-1.5.0" + sources."@stoplight/spectral-ruleset-migrator-1.9.1" sources."@stoplight/spectral-rulesets-1.14.1" (sources."@stoplight/spectral-runtime-1.1.2" // { dependencies = [ @@ -126905,20 +126067,20 @@ in sources."@types/es-aggregate-error-1.0.2" sources."@types/estree-0.0.39" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-draft-04-1.0.0" sources."ajv-errors-3.0.0" sources."ajv-formats-2.1.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."argparse-1.0.10" sources."array-union-2.1.0" sources."as-table-1.0.55" @@ -126980,27 +126142,27 @@ in sources."es-aggregate-error-1.0.9" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" - sources."esbuild-0.15.13" - sources."esbuild-android-64-0.15.13" - sources."esbuild-android-arm64-0.15.13" - sources."esbuild-darwin-64-0.15.13" - sources."esbuild-darwin-arm64-0.15.13" - sources."esbuild-freebsd-64-0.15.13" - sources."esbuild-freebsd-arm64-0.15.13" - sources."esbuild-linux-32-0.15.13" - sources."esbuild-linux-64-0.15.13" - sources."esbuild-linux-arm-0.15.13" - sources."esbuild-linux-arm64-0.15.13" - sources."esbuild-linux-mips64le-0.15.13" - sources."esbuild-linux-ppc64le-0.15.13" - sources."esbuild-linux-riscv64-0.15.13" - sources."esbuild-linux-s390x-0.15.13" - sources."esbuild-netbsd-64-0.15.13" - sources."esbuild-openbsd-64-0.15.13" - sources."esbuild-sunos-64-0.15.13" - sources."esbuild-windows-32-0.15.13" - sources."esbuild-windows-64-0.15.13" - sources."esbuild-windows-arm64-0.15.13" + sources."esbuild-0.15.17" + sources."esbuild-android-64-0.15.17" + sources."esbuild-android-arm64-0.15.17" + sources."esbuild-darwin-64-0.15.17" + sources."esbuild-darwin-arm64-0.15.17" + sources."esbuild-freebsd-64-0.15.17" + sources."esbuild-freebsd-arm64-0.15.17" + sources."esbuild-linux-32-0.15.17" + sources."esbuild-linux-64-0.15.17" + sources."esbuild-linux-arm-0.15.17" + sources."esbuild-linux-arm64-0.15.17" + sources."esbuild-linux-mips64le-0.15.17" + sources."esbuild-linux-ppc64le-0.15.17" + sources."esbuild-linux-riscv64-0.15.17" + sources."esbuild-linux-s390x-0.15.17" + sources."esbuild-netbsd-64-0.15.17" + sources."esbuild-openbsd-64-0.15.17" + sources."esbuild-sunos-64-0.15.17" + sources."esbuild-windows-32-0.15.17" + sources."esbuild-windows-64-0.15.17" + sources."esbuild-windows-arm64-0.15.17" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."escodegen-1.14.3" @@ -127020,7 +126182,7 @@ in sources."fast-levenshtein-2.0.6" sources."fast-memoize-2.5.2" sources."fast-safe-stringify-2.1.1" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."figures-3.2.0" sources."file-uri-to-path-2.0.0" sources."fill-range-7.0.1" @@ -127076,7 +126238,7 @@ in }) sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."immer-9.0.16" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -127177,7 +126339,7 @@ in sources."onetime-5.1.2" sources."ono-4.0.11" sources."openapi-types-12.0.2" - sources."openapi3-ts-3.1.1" + sources."openapi3-ts-3.1.2" sources."optionator-0.8.3" sources."ora-5.4.1" sources."os-tmpdir-1.0.2" @@ -127220,7 +126382,7 @@ in sources."rollup-2.79.1" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.0" sources."safe-stable-stringify-1.1.1" @@ -127253,8 +126415,8 @@ in sources."statuses-2.0.1" sources."string-argv-0.3.1" sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-0.10.31" sources."strip-ansi-6.0.1" sources."strip-final-newline-2.0.0" @@ -127275,7 +126437,7 @@ in sources."tslib-2.4.1" sources."type-check-0.3.2" sources."type-fest-0.21.3" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."unbox-primitive-1.0.2" sources."universalify-2.0.0" sources."unpipe-1.0.0" @@ -127291,7 +126453,7 @@ in sources."utility-types-3.10.0" sources."validate-npm-package-name-3.0.0" sources."validator-13.7.0" - sources."vm2-3.9.11" + sources."vm2-3.9.12" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -127330,14 +126492,14 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."json5-2.2.1" sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -127349,8 +126511,8 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.2" - sources."@babel/helper-create-regexp-features-plugin-7.19.0" + sources."@babel/helper-create-class-features-plugin-7.20.5" + sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ sources."semver-6.3.0" @@ -127373,10 +126535,10 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.20.1" + sources."@babel/helper-wrap-function-7.20.5" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.20.1" @@ -127392,7 +126554,7 @@ in sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.18.6" + sources."@babel/plugin-proposal-private-property-in-object-7.20.5" sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" @@ -127414,7 +126576,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" + sources."@babel/plugin-transform-block-scoping-7.20.5" sources."@babel/plugin-transform-classes-7.20.2" sources."@babel/plugin-transform-computed-properties-7.18.9" sources."@babel/plugin-transform-destructuring-7.20.2" @@ -127430,13 +126592,13 @@ in sources."@babel/plugin-transform-modules-commonjs-7.19.6" sources."@babel/plugin-transform-modules-systemjs-7.19.6" sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" + sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-property-literals-7.18.6" sources."@babel/plugin-transform-react-jsx-7.19.0" - sources."@babel/plugin-transform-regenerator-7.18.6" + sources."@babel/plugin-transform-regenerator-7.20.5" sources."@babel/plugin-transform-reserved-words-7.18.6" sources."@babel/plugin-transform-shorthand-properties-7.18.6" sources."@babel/plugin-transform-spread-7.19.0" @@ -127451,10 +126613,10 @@ in ]; }) sources."@babel/preset-modules-0.1.5" - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@iarna/toml-2.2.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -127586,7 +126748,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -127612,7 +126774,7 @@ in sources."convert-source-map-1.9.0" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - sources."core-js-compat-3.26.0" + sources."core-js-compat-3.26.1" sources."core-util-is-1.0.3" sources."cosmiconfig-5.2.1" (sources."create-ecdh-4.0.4" // { @@ -127666,7 +126828,7 @@ in sources."data-urls-1.1.0" sources."deasync-0.1.28" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-is-0.1.4" (sources."defaults-1.0.4" // { dependencies = [ @@ -127832,7 +126994,7 @@ in sources."acorn-8.8.1" sources."posthtml-0.15.2" sources."posthtml-parser-0.7.2" - sources."terser-5.15.1" + sources."terser-5.16.1" ]; }) (sources."htmlparser2-6.1.0" // { @@ -128090,7 +127252,7 @@ in sources."postcss-ordered-values-4.1.2" sources."postcss-reduce-initial-4.0.3" sources."postcss-reduce-transforms-4.0.2" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-svgo-4.0.3" sources."postcss-unique-selectors-4.0.1" sources."postcss-value-parser-3.3.1" @@ -128137,8 +127299,8 @@ in sources."readdirp-2.2.1" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - sources."regenerator-transform-0.15.0" + sources."regenerator-runtime-0.13.11" + sources."regenerator-transform-0.15.1" (sources."regex-not-1.0.2" // { dependencies = [ sources."extend-shallow-3.0.2" @@ -128146,7 +127308,7 @@ in ]; }) sources."regexp.prototype.flags-1.4.3" - sources."regexpu-core-5.2.1" + sources."regexpu-core-5.2.2" sources."regjsgen-0.7.1" (sources."regjsparser-0.9.1" // { dependencies = [ @@ -128245,8 +127407,8 @@ in sources."stealthy-require-1.1.1" sources."stream-browserify-2.0.2" sources."stream-http-2.8.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-1.1.1" sources."strip-ansi-4.0.0" (sources."stylehacks-4.0.3" // { @@ -128291,7 +127453,7 @@ in }) sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" + sources."unicode-match-property-value-ecmascript-2.1.0" sources."unicode-property-aliases-ecmascript-2.1.0" sources."unicode-trie-0.3.1" sources."union-value-1.0.1" @@ -128365,10 +127527,10 @@ in parcel = nodeEnv.buildNodePackage { name = "parcel"; packageName = "parcel"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/parcel/-/parcel-2.7.0.tgz"; - sha512 = "pRYwnivwtNP0tip8xYSo4zCB0XhLt7/gJzP1p8OovCqkmFjG9VG+GW9TcAKqMIo0ovEa9tT+/s6gY1Qy+BONGQ=="; + url = "https://registry.npmjs.org/parcel/-/parcel-2.8.0.tgz"; + sha512 = "p7Fo75CeMw5HC1luovYpBjzPbAJv/Gn7lxcs4f0LxcwBCWbkQ73zHgJXJQqnM38qQABEYEiQq6000+j+k5U/Mw=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -128393,81 +127555,80 @@ in sources."@lmdb/lmdb-linux-x64-2.5.2" sources."@lmdb/lmdb-win32-x64-2.5.2" sources."@mischnic/json-sourcemap-0.1.0" - sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-darwin-x64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-linux-arm-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-linux-arm64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-linux-x64-2.1.2" - sources."@msgpackr-extract/msgpackr-extract-win32-x64-2.1.2" - sources."@parcel/bundler-default-2.7.0" - sources."@parcel/cache-2.7.0" - sources."@parcel/codeframe-2.7.0" - sources."@parcel/compressor-raw-2.7.0" - sources."@parcel/config-default-2.7.0" - sources."@parcel/core-2.7.0" - sources."@parcel/css-1.14.0" - sources."@parcel/diagnostic-2.7.0" - sources."@parcel/events-2.7.0" - sources."@parcel/fs-2.7.0" - sources."@parcel/fs-search-2.7.0" - sources."@parcel/graph-2.7.0" - sources."@parcel/hash-2.7.0" - sources."@parcel/logger-2.7.0" - sources."@parcel/markdown-ansi-2.7.0" - sources."@parcel/namer-default-2.7.0" - sources."@parcel/node-resolver-core-2.7.0" - sources."@parcel/optimizer-css-2.7.0" - sources."@parcel/optimizer-htmlnano-2.7.0" - sources."@parcel/optimizer-image-2.7.0" - sources."@parcel/optimizer-svgo-2.7.0" - sources."@parcel/optimizer-terser-2.7.0" - sources."@parcel/package-manager-2.7.0" - sources."@parcel/packager-css-2.7.0" - sources."@parcel/packager-html-2.7.0" - sources."@parcel/packager-js-2.7.0" - sources."@parcel/packager-raw-2.7.0" - sources."@parcel/packager-svg-2.7.0" - sources."@parcel/plugin-2.7.0" - sources."@parcel/reporter-cli-2.7.0" - sources."@parcel/reporter-dev-server-2.7.0" - sources."@parcel/resolver-default-2.7.0" - sources."@parcel/runtime-browser-hmr-2.7.0" - sources."@parcel/runtime-js-2.7.0" - sources."@parcel/runtime-react-refresh-2.7.0" - sources."@parcel/runtime-service-worker-2.7.0" + sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-darwin-x64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-linux-arm-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-linux-arm64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-linux-x64-2.2.0" + sources."@msgpackr-extract/msgpackr-extract-win32-x64-2.2.0" + sources."@parcel/bundler-default-2.8.0" + sources."@parcel/cache-2.8.0" + sources."@parcel/codeframe-2.8.0" + sources."@parcel/compressor-raw-2.8.0" + sources."@parcel/config-default-2.8.0" + sources."@parcel/core-2.8.0" + sources."@parcel/diagnostic-2.8.0" + sources."@parcel/events-2.8.0" + sources."@parcel/fs-2.8.0" + sources."@parcel/fs-search-2.8.0" + sources."@parcel/graph-2.8.0" + sources."@parcel/hash-2.8.0" + sources."@parcel/logger-2.8.0" + sources."@parcel/markdown-ansi-2.8.0" + sources."@parcel/namer-default-2.8.0" + sources."@parcel/node-resolver-core-2.8.0" + sources."@parcel/optimizer-css-2.8.0" + sources."@parcel/optimizer-htmlnano-2.8.0" + sources."@parcel/optimizer-image-2.8.0" + sources."@parcel/optimizer-svgo-2.8.0" + sources."@parcel/optimizer-terser-2.8.0" + sources."@parcel/package-manager-2.8.0" + sources."@parcel/packager-css-2.8.0" + sources."@parcel/packager-html-2.8.0" + sources."@parcel/packager-js-2.8.0" + sources."@parcel/packager-raw-2.8.0" + sources."@parcel/packager-svg-2.8.0" + sources."@parcel/plugin-2.8.0" + sources."@parcel/reporter-cli-2.8.0" + sources."@parcel/reporter-dev-server-2.8.0" + sources."@parcel/resolver-default-2.8.0" + sources."@parcel/runtime-browser-hmr-2.8.0" + sources."@parcel/runtime-js-2.8.0" + sources."@parcel/runtime-react-refresh-2.8.0" + sources."@parcel/runtime-service-worker-2.8.0" sources."@parcel/source-map-2.1.1" - sources."@parcel/transformer-babel-2.7.0" - sources."@parcel/transformer-css-2.7.0" - (sources."@parcel/transformer-html-2.7.0" // { + sources."@parcel/transformer-babel-2.8.0" + sources."@parcel/transformer-css-2.8.0" + (sources."@parcel/transformer-html-2.8.0" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/transformer-image-2.7.0" - sources."@parcel/transformer-js-2.7.0" - sources."@parcel/transformer-json-2.7.0" - sources."@parcel/transformer-postcss-2.7.0" - (sources."@parcel/transformer-posthtml-2.7.0" // { + sources."@parcel/transformer-image-2.8.0" + sources."@parcel/transformer-js-2.8.0" + sources."@parcel/transformer-json-2.8.0" + sources."@parcel/transformer-postcss-2.8.0" + (sources."@parcel/transformer-posthtml-2.8.0" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/transformer-raw-2.7.0" - sources."@parcel/transformer-react-refresh-wrap-2.7.0" - (sources."@parcel/transformer-svg-2.7.0" // { + sources."@parcel/transformer-raw-2.8.0" + sources."@parcel/transformer-react-refresh-wrap-2.8.0" + (sources."@parcel/transformer-svg-2.8.0" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/types-2.7.0" - sources."@parcel/utils-2.7.0" + sources."@parcel/types-2.8.0" + sources."@parcel/utils-2.8.0" (sources."@parcel/watcher-2.0.7" // { dependencies = [ sources."node-addon-api-3.2.1" ]; }) - sources."@parcel/workers-2.7.0" - sources."@swc/helpers-0.4.12" + sources."@parcel/workers-2.8.0" + sources."@swc/helpers-0.4.14" sources."@trysound/sax-0.2.0" sources."@types/parse-json-4.0.0" sources."abab-2.0.6" @@ -128492,13 +127653,13 @@ in sources."base-x-3.0.9" sources."bcrypt-pbkdf-1.0.2" sources."boolbase-1.0.0" - sources."brace-expansion-1.1.11" + sources."brace-expansion-2.0.1" sources."browser-process-hrtime-1.0.0" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -128518,7 +127679,7 @@ in sources."commander-7.2.0" sources."concat-map-0.0.1" sources."core-util-is-1.0.2" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."css-declaration-sorter-6.3.1" sources."css-select-4.3.0" sources."css-tree-1.1.3" @@ -128566,14 +127727,14 @@ in sources."fs.realpath-1.0.0" sources."get-port-4.2.0" sources."getpass-0.1.7" - sources."glob-7.2.3" - sources."globals-13.17.0" + sources."glob-8.0.3" + sources."globals-13.18.0" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-flag-3.0.0" sources."html-encoding-sniffer-1.0.2" sources."html-tags-1.2.0" - sources."htmlnano-2.0.2" + sources."htmlnano-2.0.3" sources."htmlparser2-7.2.0" sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" @@ -128601,15 +127762,15 @@ in sources."json5-2.2.1" sources."jsprim-1.4.2" sources."levn-0.3.0" - sources."lightningcss-1.16.1" - sources."lightningcss-darwin-arm64-1.16.1" - sources."lightningcss-darwin-x64-1.16.1" - sources."lightningcss-linux-arm-gnueabihf-1.16.1" - sources."lightningcss-linux-arm64-gnu-1.16.1" - sources."lightningcss-linux-arm64-musl-1.16.1" - sources."lightningcss-linux-x64-gnu-1.16.1" - sources."lightningcss-linux-x64-musl-1.16.1" - sources."lightningcss-win32-x64-msvc-1.16.1" + sources."lightningcss-1.17.1" + sources."lightningcss-darwin-arm64-1.17.1" + sources."lightningcss-darwin-x64-1.17.1" + sources."lightningcss-linux-arm-gnueabihf-1.17.1" + sources."lightningcss-linux-arm64-gnu-1.17.1" + sources."lightningcss-linux-arm64-musl-1.17.1" + sources."lightningcss-linux-x64-gnu-1.17.1" + sources."lightningcss-linux-x64-musl-1.17.1" + sources."lightningcss-win32-x64-msvc-1.17.1" sources."lilconfig-2.0.6" sources."lines-and-columns-1.2.4" sources."lmdb-2.5.2" @@ -128620,9 +127781,9 @@ in sources."mdn-data-2.0.14" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-3.1.2" - sources."msgpackr-1.7.2" - sources."msgpackr-extract-2.1.2" + sources."minimatch-5.1.1" + sources."msgpackr-1.8.1" + sources."msgpackr-extract-2.2.0" sources."nanoid-3.3.4" sources."node-addon-api-4.3.0" sources."node-gyp-build-4.5.0" @@ -128644,7 +127805,7 @@ in sources."performance-now-2.1.0" sources."picocolors-1.0.0" sources."pn-1.1.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-calc-8.2.4" sources."postcss-colormin-5.3.0" sources."postcss-convert-values-5.1.3" @@ -128670,7 +127831,7 @@ in sources."postcss-ordered-values-5.1.3" sources."postcss-reduce-initial-5.1.1" sources."postcss-reduce-transforms-5.1.0" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-svgo-5.1.0" sources."postcss-unique-selectors-5.1.1" sources."postcss-value-parser-4.2.0" @@ -128680,15 +127841,15 @@ in sources."prelude-ls-1.1.2" sources."psl-1.9.0" sources."punycode-2.1.1" - (sources."purgecss-4.1.3" // { + (sources."purgecss-5.0.0" // { dependencies = [ - sources."commander-8.3.0" + sources."commander-9.4.1" ]; }) sources."qs-6.5.3" sources."react-error-overlay-6.0.9" sources."react-refresh-0.9.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."relateurl-0.2.7" sources."request-2.88.2" sources."request-promise-core-1.1.4" @@ -128701,7 +127862,7 @@ in sources."source-map-0.6.1" sources."source-map-js-1.0.2" sources."source-map-support-0.5.21" - sources."srcset-5.0.0" + sources."srcset-4.0.0" sources."sshpk-1.17.0" sources."stable-0.1.8" sources."stealthy-require-1.1.1" @@ -128710,7 +127871,7 @@ in sources."svgo-2.8.0" sources."symbol-tree-3.2.4" sources."term-size-2.2.1" - (sources."terser-5.15.1" // { + (sources."terser-5.16.1" // { dependencies = [ sources."commander-2.20.3" ]; @@ -128725,7 +127886,10 @@ in sources."type-fest-0.20.2" (sources."uncss-0.17.3" // { dependencies = [ + sources."brace-expansion-1.1.11" sources."commander-2.20.3" + sources."glob-7.2.3" + sources."minimatch-3.1.2" sources."picocolors-0.2.1" sources."postcss-7.0.39" sources."postcss-selector-parser-6.0.2" @@ -129553,7 +128717,7 @@ in sources."ee-first-1.1.1" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" - (sources."engine.io-3.6.0" // { + (sources."engine.io-3.6.1" // { dependencies = [ sources."cookie-0.4.2" sources."debug-4.1.1" @@ -129768,10 +128932,10 @@ in dependencies = [ sources."debug-3.1.0" sources."isarray-2.0.1" - sources."socket.io-parser-3.3.2" + sources."socket.io-parser-3.3.3" ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."component-emitter-1.2.1" sources."debug-4.1.1" @@ -129849,8 +129013,8 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.19.3" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."semver-6.3.0" ]; @@ -129860,7 +129024,7 @@ in sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -129872,8 +129036,8 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.2" - sources."@babel/helper-create-regexp-features-plugin-7.19.0" + sources."@babel/helper-create-class-features-plugin-7.20.5" + sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ sources."semver-6.3.0" @@ -129896,10 +129060,10 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.20.1" + sources."@babel/helper-wrap-function-7.20.5" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.20.1" @@ -129915,7 +129079,7 @@ in sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.18.6" + sources."@babel/plugin-proposal-private-property-in-object-7.20.5" sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" @@ -129935,7 +129099,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" + sources."@babel/plugin-transform-block-scoping-7.20.5" sources."@babel/plugin-transform-classes-7.20.2" sources."@babel/plugin-transform-computed-properties-7.18.9" sources."@babel/plugin-transform-destructuring-7.20.2" @@ -129950,12 +129114,12 @@ in sources."@babel/plugin-transform-modules-commonjs-7.19.6" sources."@babel/plugin-transform-modules-systemjs-7.19.6" sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" + sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-property-literals-7.18.6" - sources."@babel/plugin-transform-regenerator-7.18.6" + sources."@babel/plugin-transform-regenerator-7.20.5" sources."@babel/plugin-transform-reserved-words-7.18.6" (sources."@babel/plugin-transform-runtime-7.19.6" // { dependencies = [ @@ -129976,10 +129140,10 @@ in }) sources."@babel/preset-modules-0.1.5" sources."@babel/register-7.18.9" - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@colors/colors-1.5.0" sources."@csstools/postcss-cascade-layers-1.1.1" sources."@csstools/postcss-color-function-1.1.1" @@ -130000,7 +129164,7 @@ in (sources."@eslint/eslintrc-1.3.3" // { dependencies = [ sources."argparse-2.0.1" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."js-yaml-4.1.0" ]; }) @@ -130044,19 +129208,19 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - (sources."@npmcli/fs-1.1.1" // { + (sources."@npmcli/fs-2.1.2" // { dependencies = [ sources."semver-7.3.8" ]; }) - (sources."@npmcli/move-file-1.1.2" // { + (sources."@npmcli/move-file-2.0.1" // { dependencies = [ sources."mkdirp-1.0.4" ]; }) sources."@polka/url-1.0.0-next.21" sources."@socket.io/component-emitter-3.1.0" - sources."@tootallnate/once-1.1.2" + sources."@tootallnate/once-2.0.0" sources."@trysound/sax-0.2.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" @@ -130069,14 +129233,14 @@ in sources."@types/mapbox__point-geometry-0.1.2" sources."@types/mapbox__vector-tile-1.3.0" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/pbf-3.0.2" - sources."@vue/compiler-core-3.2.41" - sources."@vue/compiler-dom-3.2.41" - sources."@vue/compiler-sfc-3.2.41" - sources."@vue/compiler-ssr-3.2.41" + sources."@vue/compiler-core-3.2.45" + sources."@vue/compiler-dom-3.2.45" + sources."@vue/compiler-sfc-3.2.45" + sources."@vue/compiler-ssr-3.2.45" (sources."@vue/component-compiler-utils-3.3.0" // { dependencies = [ sources."lru-cache-4.1.5" @@ -130085,9 +129249,9 @@ in sources."yallist-2.1.2" ]; }) - sources."@vue/reactivity-transform-3.2.41" - sources."@vue/shared-3.2.41" - sources."@vvo/tzdb-6.75.0" + sources."@vue/reactivity-transform-3.2.45" + sources."@vue/shared-3.2.45" + sources."@vvo/tzdb-6.77.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -130127,7 +129291,7 @@ in dependencies = [ sources."big.js-5.2.2" sources."emojis-list-3.0.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" ]; }) sources."after-0.8.2" @@ -130141,7 +129305,7 @@ in sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."json-schema-traverse-1.0.0" ]; }) @@ -130156,28 +129320,24 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."any-promise-1.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."app-module-path-2.2.0" sources."aproba-2.0.0" sources."are-we-there-yet-3.0.1" sources."argparse-1.0.10" sources."array-flatten-1.1.1" - sources."array-includes-3.1.5" + sources."array-includes-3.1.6" sources."array.prototype.flat-1.3.1" sources."arraybuffer.slice-0.0.7" sources."arrify-1.0.1" sources."asap-2.0.6" - sources."asn1-0.2.6" sources."assert-never-1.2.1" - sources."assert-plus-1.0.0" sources."assertion-error-1.1.0" sources."async-3.2.4" sources."async-foreach-0.1.3" sources."asynckit-0.4.0" sources."autoprefixer-10.4.13" sources."available-typed-arrays-1.0.5" - sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" sources."axios-0.27.2" sources."axios-mock-adapter-1.21.2" (sources."babel-loader-8.3.0" // { @@ -130186,7 +129346,7 @@ in sources."emojis-list-3.0.0" sources."find-cache-dir-3.3.2" sources."find-up-4.1.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."locate-path-5.0.0" sources."make-dir-3.1.0" sources."p-locate-4.1.0" @@ -130209,7 +129369,6 @@ in sources."base64-arraybuffer-0.1.4" sources."base64id-2.0.0" sources."batch-0.6.1" - sources."bcrypt-pbkdf-1.0.2" sources."big.js-3.2.0" sources."binary-extensions-2.2.0" sources."blob-0.0.5" @@ -130236,8 +129395,12 @@ in }) sources."buntis-0.2.1" sources."bytes-3.1.2" - (sources."cacache-15.3.0" // { + (sources."cacache-16.1.3" // { dependencies = [ + sources."brace-expansion-2.0.1" + sources."glob-8.0.3" + sources."lru-cache-7.14.1" + sources."minimatch-5.1.1" sources."mkdirp-1.0.4" ]; }) @@ -130247,9 +129410,8 @@ in sources."camelcase-keys-6.2.2" sources."camelize-1.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001431" - sources."caseless-0.12.0" - sources."chai-4.3.6" + sources."caniuse-lite-1.0.30001436" + sources."chai-4.3.7" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."charenc-0.0.2" @@ -130310,11 +129472,11 @@ in ]; }) sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" - sources."core-js-compat-3.26.0" - sources."core-util-is-1.0.2" + sources."core-js-3.26.1" + sources."core-js-compat-3.26.1" + sources."core-util-is-1.0.3" sources."cors-2.8.5" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."cross-env-7.0.3" sources."cross-spawn-7.0.3" sources."crypt-0.0.2" @@ -130322,7 +129484,7 @@ in sources."css-blank-pseudo-3.0.3" sources."css-declaration-sorter-6.3.1" sources."css-has-pseudo-3.0.4" - (sources."css-loader-6.7.1" // { + (sources."css-loader-6.7.2" // { dependencies = [ sources."semver-7.3.8" ]; @@ -130332,7 +129494,7 @@ in sources."css-tree-1.1.3" sources."css-what-6.1.0" sources."csscolorparser-1.0.3" - sources."cssdb-7.1.0" + sources."cssdb-7.2.0" sources."cssesc-3.0.0" sources."cssnano-5.1.14" sources."cssnano-preset-default-5.2.13" @@ -130351,7 +129513,6 @@ in }) sources."cuint-0.2.2" sources."custom-event-1.0.1" - sources."dashdash-1.14.1" sources."dasherize-2.0.0" sources."date-format-4.0.14" sources."de-indent-1.0.2" @@ -130363,7 +129524,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."deep-eql-3.0.1" + sources."deep-eql-4.1.2" sources."deep-extend-0.5.1" sources."deep-is-0.1.4" sources."define-properties-1.1.4" @@ -130391,7 +129552,6 @@ in sources."duplexer-0.1.2" sources."earcut-2.2.4" sources."easygettext-2.17.0" - sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-3.1.8" sources."electron-to-chromium-1.4.284" @@ -130403,7 +129563,7 @@ in sources."iconv-lite-0.6.3" ]; }) - sources."engine.io-6.2.0" + sources."engine.io-6.2.1" (sources."engine.io-client-3.5.3" // { dependencies = [ sources."debug-3.1.0" @@ -130413,7 +129573,7 @@ in ]; }) sources."engine.io-parser-5.0.4" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."ent-2.2.0" sources."entities-2.2.0" sources."env-paths-2.2.1" @@ -130427,7 +129587,7 @@ in sources."escalade-3.1.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" - (sources."eslint-8.27.0" // { + (sources."eslint-8.29.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."argparse-2.0.1" @@ -130439,7 +129599,7 @@ in sources."eslint-visitor-keys-3.3.0" sources."estraverse-5.3.0" sources."find-up-5.0.0" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."has-flag-4.0.0" sources."js-yaml-4.1.0" sources."locate-path-6.0.0" @@ -130493,7 +129653,7 @@ in sources."ms-2.0.0" ]; }) - (sources."eslint-plugin-n-15.5.0" // { + (sources."eslint-plugin-n-15.5.1" // { dependencies = [ sources."semver-7.3.8" ]; @@ -130517,7 +129677,7 @@ in ]; }) sources."eslint-plugin-promise-6.1.1" - (sources."eslint-plugin-vue-9.7.0" // { + (sources."eslint-plugin-vue-9.8.0" // { dependencies = [ sources."semver-7.3.8" ]; @@ -130528,7 +129688,7 @@ in sources."eslint-visitor-keys-2.1.0" (sources."eslint-webpack-plugin-3.2.0" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-keywords-5.1.0" sources."json-schema-traverse-1.0.0" sources."schema-utils-4.0.0" @@ -130575,13 +129735,12 @@ in ]; }) sources."extend-3.0.2" - sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" sources."fast-diff-1.2.0" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."feature-policy-0.3.0" sources."fibers-5.0.3" sources."file-entry-cache-6.0.1" @@ -130589,7 +129748,7 @@ in dependencies = [ sources."big.js-5.2.2" sources."emojis-list-3.0.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; }) @@ -130597,7 +129756,7 @@ in (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."fill-range-7.0.1" @@ -130614,8 +129773,8 @@ in sources."flat-5.0.2" sources."flat-cache-3.0.4" sources."flatted-3.2.7" - sources."flow-parser-0.192.0" - (sources."flow-remove-types-2.192.0" // { + sources."flow-parser-0.194.0" + (sources."flow-remove-types-2.194.0" // { dependencies = [ sources."pirates-3.0.2" ]; @@ -130623,7 +129782,6 @@ in sources."follow-redirects-1.15.2" sources."for-each-0.3.3" sources."foreachasync-3.0.0" - sources."forever-agent-0.6.1" sources."form-data-4.0.0" sources."formidable-1.2.6" sources."forwarded-0.2.0" @@ -130648,7 +129806,6 @@ in sources."get-stdin-4.0.1" sources."get-stream-6.0.1" sources."get-symbol-description-1.0.0" - sources."getpass-0.1.7" sources."gl-matrix-3.4.3" sources."glob-7.2.3" sources."glob-parent-6.0.2" @@ -130671,8 +129828,6 @@ in sources."grapheme-splitter-1.0.4" sources."gzip-size-6.0.0" sources."handlebars-4.7.7" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-bigints-1.0.2" @@ -130694,7 +129849,7 @@ in sources."helmet-crossdomain-0.4.0" sources."helmet-csp-2.10.0" sources."hide-powered-by-1.1.0" - sources."hls.js-1.2.5" + sources."hls.js-1.2.8" sources."hosted-git-info-4.1.0" sources."hpkp-2.0.0" sources."hsts-2.2.0" @@ -130704,15 +129859,14 @@ in sources."http-cache-semantics-4.1.0" sources."http-errors-2.0.0" sources."http-proxy-1.18.1" - sources."http-proxy-agent-4.0.1" - sources."http-signature-1.2.0" + sources."http-proxy-agent-5.0.0" sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."i-0.3.7" sources."iconv-lite-0.4.24" sources."icss-utils-5.1.0" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."immutable-4.1.0" (sources."import-fresh-3.3.0" // { dependencies = [ @@ -130767,14 +129921,12 @@ in sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.10" - sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" sources."is-weakref-1.0.2" sources."isarray-1.0.0" sources."isbinaryfile-4.0.10" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."isstream-0.1.2" sources."istanbul-lib-coverage-3.2.0" (sources."istanbul-lib-instrument-5.2.1" // { dependencies = [ @@ -130813,20 +129965,16 @@ in ]; }) sources."js-base64-2.6.4" - sources."js-sdsl-4.1.5" + sources."js-sdsl-4.2.0" sources."js-stringify-1.0.2" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" - sources."jsbn-0.1.1" sources."jsesc-2.5.2" sources."json-parse-even-better-errors-2.3.1" - sources."json-schema-0.4.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json-stringify-safe-5.0.1" sources."json5-2.2.1" sources."jsonfile-4.0.0" - sources."jsprim-1.4.2" sources."jstransformer-1.0.0" sources."karma-6.4.1" (sources."karma-chrome-launcher-3.1.1" // { @@ -130873,13 +130021,17 @@ in sources."supports-color-7.2.0" ]; }) - sources."log4js-6.7.0" - sources."loupe-2.3.5" + sources."log4js-6.7.1" + sources."loupe-2.3.6" sources."lru-cache-6.0.0" - sources."luxon-3.1.0" + sources."luxon-3.1.1" sources."magic-string-0.25.9" sources."make-dir-2.1.0" - sources."make-fetch-happen-9.1.0" + (sources."make-fetch-happen-10.2.1" // { + dependencies = [ + sources."lru-cache-7.14.1" + ]; + }) sources."map-obj-4.3.0" sources."maplibre-gl-2.4.0" (sources."md5-2.3.0" // { @@ -130911,9 +130063,9 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."min-indent-1.0.1" - (sources."mini-css-extract-plugin-2.6.1" // { + (sources."mini-css-extract-plugin-2.7.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-keywords-5.1.0" sources."json-schema-traverse-1.0.0" sources."schema-utils-4.0.0" @@ -130926,9 +130078,9 @@ in sources."is-plain-obj-1.1.0" ]; }) - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" - sources."minipass-fetch-1.4.1" + sources."minipass-fetch-2.1.2" sources."minipass-flush-1.0.5" sources."minipass-pipeline-1.2.4" sources."minipass-sized-1.0.3" @@ -130969,14 +130121,25 @@ in sources."nocache-2.1.0" (sources."node-gyp-8.4.1" // { dependencies = [ - sources."npmlog-6.0.2" + sources."@npmcli/fs-1.1.1" + sources."@npmcli/move-file-1.1.2" + sources."@tootallnate/once-1.1.2" + sources."cacache-15.3.0" + sources."http-proxy-agent-4.0.1" + sources."make-fetch-happen-9.1.0" + sources."minipass-fetch-1.4.1" + sources."mkdirp-1.0.4" sources."semver-7.3.8" + sources."socks-proxy-agent-6.2.1" + sources."ssri-8.0.1" + sources."unique-filename-1.1.1" + sources."unique-slug-2.0.2" ]; }) sources."node-gyp-build-4.5.0" sources."node-modules-regexp-1.0.0" sources."node-releases-2.0.6" - (sources."node-sass-7.0.3" // { + (sources."node-sass-8.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -130996,14 +130159,8 @@ in sources."normalize-path-3.0.0" sources."normalize-range-0.1.2" sources."normalize-url-6.1.0" - (sources."npmlog-5.0.1" // { - dependencies = [ - sources."are-we-there-yet-2.0.0" - sources."gauge-3.0.2" - ]; - }) + sources."npmlog-6.0.2" sources."nth-check-2.1.1" - sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."object-inspect-1.12.2" sources."object-keys-1.1.1" @@ -131033,7 +130190,6 @@ in sources."path-type-4.0.0" sources."pathval-1.1.1" sources."pbf-3.2.1" - sources."performance-now-2.1.0" sources."photoswipe-4.1.3" sources."picocolors-1.0.0" sources."picomatch-2.3.1" @@ -131042,7 +130198,7 @@ in sources."pkg-dir-3.0.0" sources."plur-4.0.0" sources."pofile-1.1.3" - (sources."postcss-8.4.18" // { + (sources."postcss-8.4.19" // { dependencies = [ sources."nanoid-3.3.4" ]; @@ -131056,7 +130212,7 @@ in sources."postcss-colormin-5.3.0" sources."postcss-convert-values-5.1.3" sources."postcss-custom-media-8.0.2" - sources."postcss-custom-properties-12.1.10" + sources."postcss-custom-properties-12.1.11" sources."postcss-custom-selectors-6.0.3" sources."postcss-dir-pseudo-class-6.0.5" sources."postcss-discard-comments-5.1.2" @@ -131070,10 +130226,10 @@ in sources."postcss-font-variant-5.0.0" sources."postcss-gap-properties-3.0.5" sources."postcss-image-set-function-4.0.7" - sources."postcss-import-15.0.0" + sources."postcss-import-15.0.1" sources."postcss-initial-4.0.1" sources."postcss-lab-function-4.2.1" - (sources."postcss-loader-7.0.1" // { + (sources."postcss-loader-7.0.2" // { dependencies = [ sources."semver-7.3.8" ]; @@ -131105,14 +130261,14 @@ in sources."postcss-overflow-shorthand-3.0.4" sources."postcss-page-break-3.0.4" sources."postcss-place-7.0.5" - sources."postcss-preset-env-7.8.2" + sources."postcss-preset-env-7.8.3" sources."postcss-pseudo-class-any-link-7.1.6" sources."postcss-reduce-initial-5.1.1" sources."postcss-reduce-transforms-5.1.0" sources."postcss-replace-overflow-wrap-4.0.0" sources."postcss-reporter-7.0.5" sources."postcss-selector-not-6.0.1" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-svgo-5.1.0" sources."postcss-unique-selectors-5.1.1" (sources."postcss-url-10.1.3" // { @@ -131126,7 +130282,7 @@ in sources."postcss-value-parser-4.2.0" sources."potpack-1.0.2" sources."prelude-ls-1.2.1" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."prettier-linter-helpers-1.0.0" sources."process-nextick-args-2.0.1" sources."promise-7.3.1" @@ -131135,7 +130291,6 @@ in sources."protocol-buffers-schema-3.6.0" sources."proxy-addr-2.0.7" sources."pseudomap-1.0.2" - sources."psl-1.9.0" sources."pubsub-js-1.9.4" sources."pug-3.0.2" sources."pug-attrs-3.0.0" @@ -131190,24 +130345,18 @@ in sources."referrer-policy-1.2.0" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - sources."regenerator-transform-0.15.0" + sources."regenerator-runtime-0.13.11" + sources."regenerator-transform-0.15.1" sources."regex-parser-2.2.11" sources."regexp.prototype.flags-1.4.3" sources."regexpp-3.2.0" - sources."regexpu-core-5.2.1" + sources."regexpu-core-5.2.2" sources."regjsgen-0.7.1" (sources."regjsparser-0.9.1" // { dependencies = [ sources."jsesc-0.5.0" ]; }) - (sources."request-2.88.2" // { - dependencies = [ - sources."form-data-2.3.3" - sources."qs-6.5.3" - ]; - }) sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."requires-port-1.0.0" @@ -131219,7 +130368,7 @@ in dependencies = [ sources."big.js-5.2.2" sources."emojis-list-3.0.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" ]; }) (sources."response-time-2.3.2" // { @@ -131233,25 +130382,25 @@ in sources."rimraf-3.0.2" sources."rndm-1.2.0" sources."run-parallel-1.2.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.0" sources."safer-buffer-2.1.2" - sources."sass-1.56.0" - (sources."sass-embedded-1.55.0" // { + sources."sass-1.56.1" + (sources."sass-embedded-1.56.1" // { dependencies = [ sources."has-flag-4.0.0" sources."supports-color-8.1.1" ]; }) - sources."sass-embedded-darwin-arm64-1.55.0" - sources."sass-embedded-darwin-x64-1.55.0" - sources."sass-embedded-linux-arm-1.55.0" - sources."sass-embedded-linux-arm64-1.55.0" - sources."sass-embedded-linux-ia32-1.55.0" - sources."sass-embedded-linux-x64-1.55.0" - sources."sass-embedded-win32-ia32-1.55.0" - sources."sass-embedded-win32-x64-1.55.0" + sources."sass-embedded-darwin-arm64-1.56.1" + sources."sass-embedded-darwin-x64-1.56.1" + sources."sass-embedded-linux-arm-1.56.1" + sources."sass-embedded-linux-arm64-1.56.1" + sources."sass-embedded-linux-ia32-1.56.1" + sources."sass-embedded-linux-x64-1.56.1" + sources."sass-embedded-win32-ia32-1.56.1" + sources."sass-embedded-win32-x64-1.56.1" (sources."sass-graph-4.0.1" // { dependencies = [ sources."cliui-8.0.1" @@ -131259,7 +130408,7 @@ in sources."yargs-parser-21.1.1" ]; }) - sources."sass-loader-13.1.0" + sources."sass-loader-13.2.0" sources."schema-utils-2.7.1" sources."screenfull-5.2.0" (sources."scss-tokenizer-0.4.3" // { @@ -131302,12 +130451,12 @@ in dependencies = [ sources."component-emitter-1.2.1" sources."debug-4.1.1" - sources."engine.io-3.6.0" + sources."engine.io-3.6.1" sources."engine.io-parser-2.2.1" sources."isarray-2.0.1" sources."socket.io-2.5.0" sources."socket.io-adapter-1.1.2" - sources."socket.io-parser-3.4.1" + sources."socket.io-parser-3.4.2" sources."ws-7.4.6" ]; }) @@ -131321,20 +130470,20 @@ in sources."sirv-1.0.19" sources."slash-2.0.0" sources."smart-buffer-4.2.0" - sources."socket.io-4.5.3" + sources."socket.io-4.5.4" sources."socket.io-adapter-2.4.0" (sources."socket.io-client-2.5.0" // { dependencies = [ sources."debug-3.1.0" sources."isarray-2.0.1" sources."ms-2.0.0" - sources."socket.io-parser-3.3.2" + sources."socket.io-parser-3.3.3" ]; }) sources."socket.io-parser-4.2.1" sources."sockette-2.0.6" sources."socks-2.7.1" - sources."socks-proxy-agent-6.2.1" + sources."socks-proxy-agent-7.0.0" sources."source-list-map-2.0.1" sources."source-map-0.6.1" sources."source-map-js-1.0.2" @@ -131345,8 +130494,7 @@ in sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" sources."sprintf-js-1.0.3" - sources."sshpk-1.17.0" - sources."ssri-8.0.1" + sources."ssri-9.0.1" sources."stable-0.1.8" sources."statuses-2.0.1" (sources."stdout-stream-1.4.1" // { @@ -131358,8 +130506,8 @@ in }) sources."streamroller-3.1.3" sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."strip-bom-3.0.0" @@ -131388,7 +130536,7 @@ in sources."mkdirp-1.0.4" ]; }) - (sources."terser-5.15.1" // { + (sources."terser-5.16.1" // { dependencies = [ sources."acorn-8.8.1" sources."commander-2.20.3" @@ -131415,9 +130563,8 @@ in sources."toidentifier-1.0.1" sources."token-stream-1.0.0" sources."totalist-1.1.0" - sources."tough-cookie-2.5.0" sources."trim-newlines-3.0.1" - sources."true-case-path-1.0.3" + sources."true-case-path-2.2.1" (sources."tsconfig-paths-3.14.1" // { dependencies = [ sources."json5-1.0.1" @@ -131425,8 +130572,6 @@ in }) sources."tslib-2.4.1" sources."tsscmp-1.0.6" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" sources."type-check-0.4.0" sources."type-detect-4.0.8" sources."type-fest-0.20.2" @@ -131437,10 +130582,10 @@ in sources."unbox-primitive-1.0.2" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" + sources."unicode-match-property-value-ecmascript-2.1.0" sources."unicode-property-aliases-ecmascript-2.1.0" - sources."unique-filename-1.1.1" - sources."unique-slug-2.0.2" + sources."unique-filename-2.0.1" + sources."unique-slug-3.0.0" sources."universalify-0.1.2" sources."unpipe-1.0.0" sources."update-browserslist-db-1.0.10" @@ -131449,7 +130594,7 @@ in dependencies = [ sources."big.js-5.2.2" sources."emojis-list-3.0.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; }) @@ -131457,16 +130602,14 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" - sources."uuid-3.4.0" sources."validate-npm-package-license-3.0.4" sources."vary-1.1.2" - sources."verror-1.10.0" sources."vlq-0.2.3" sources."void-elements-3.1.0" sources."vt-pbf-3.1.3" - (sources."vue-2.7.13" // { + (sources."vue-2.7.14" // { dependencies = [ - sources."@vue/compiler-sfc-2.7.13" + sources."@vue/compiler-sfc-2.7.14" ]; }) (sources."vue-eslint-parser-9.1.0" // { @@ -131481,12 +130624,12 @@ in sources."vue-gettext-2.1.12" sources."vue-hot-reload-api-2.3.4" sources."vue-infinite-scroll-2.0.2" - (sources."vue-loader-15.10.0" // { + (sources."vue-loader-15.10.1" // { dependencies = [ sources."big.js-5.2.2" sources."emojis-list-3.0.0" sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" ]; }) sources."vue-loader-plugin-1.3.0" @@ -131501,16 +130644,16 @@ in sources."big.js-5.2.2" sources."emojis-list-3.0.0" sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" ]; }) - sources."vue-template-compiler-2.7.13" + sources."vue-template-compiler-2.7.14" sources."vue-template-es2015-compiler-1.9.1" sources."vue2-filters-0.14.0" sources."vuetify-1.5.24" sources."walk-2.3.15" sources."watchpack-2.4.0" - (sources."webpack-5.74.0" // { + (sources."webpack-5.75.0" // { dependencies = [ sources."@types/estree-0.0.51" sources."acorn-8.8.1" @@ -131535,7 +130678,7 @@ in sources."commander-7.2.0" ]; }) - sources."webpack-hot-middleware-2.25.2" + sources."webpack-hot-middleware-2.25.3" (sources."webpack-manifest-plugin-5.0.0" // { dependencies = [ sources."webpack-sources-2.3.1" @@ -131645,7 +130788,7 @@ in sources."escalade-3.1.1" sources."expand-template-2.0.3" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."from2-2.3.0" sources."fs-constants-1.0.0" @@ -131671,7 +130814,7 @@ in sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."inherits-2.0.4" sources."ini-1.3.8" sources."into-stream-6.0.0" @@ -131825,7 +130968,7 @@ in sources."amp-message-0.1.2" sources."ansi-colors-4.1.3" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" (sources."argparse-1.0.10" // { dependencies = [ sources."sprintf-js-1.0.3" @@ -131988,7 +131131,7 @@ in sources."string_decoder-0.10.31" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."systeminformation-5.12.13" + sources."systeminformation-5.16.1" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."tslib-2.4.1" @@ -132004,7 +131147,7 @@ in sources."async-2.6.4" ]; }) - sources."vm2-3.9.11" + sources."vm2-3.9.12" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."ws-7.4.6" @@ -132071,10 +131214,10 @@ in postcss = nodeEnv.buildNodePackage { name = "postcss"; packageName = "postcss"; - version = "8.4.18"; + version = "8.4.19"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz"; - sha512 = "Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz"; + sha512 = "h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA=="; }; dependencies = [ sources."nanoid-3.3.4" @@ -132094,10 +131237,10 @@ in postcss-cli = nodeEnv.buildNodePackage { name = "postcss-cli"; packageName = "postcss-cli"; - version = "10.0.0"; + version = "10.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.0.0.tgz"; - sha512 = "Wjy/00wBBEgQqnSToznxLWDnATznokFGXsHtF/3G8glRZpz5KYlfHcBW/VMJmWAeF2x49zjgy4izjM3/Wx1dKA=="; + url = "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.1.0.tgz"; + sha512 = "Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -132107,28 +131250,28 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-4.1.3" sources."binary-extensions-2.2.0" sources."braces-3.0.2" @@ -132143,16 +131286,20 @@ in sources."emoji-regex-8.0.0" sources."escalade-3.1.1" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" - sources."fs-extra-10.1.0" + sources."fs-extra-11.1.0" sources."fsevents-2.3.2" sources."get-caller-file-2.0.5" sources."get-stdin-9.0.0" sources."glob-parent-5.1.2" - sources."globby-13.1.2" + (sources."globby-13.1.2" // { + dependencies = [ + sources."slash-4.0.0" + ]; + }) sources."graceful-fs-4.2.10" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -132169,7 +131316,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-load-config-4.0.1" sources."postcss-reporter-7.0.5" sources."pretty-hrtime-1.0.3" @@ -132179,14 +131326,14 @@ in sources."require-directory-2.1.1" sources."reusify-1.0.4" sources."run-parallel-1.2.0" - sources."slash-4.0.0" + sources."slash-5.0.0" sources."source-map-js-1.0.2" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."thenby-1.3.4" sources."to-regex-range-5.0.1" sources."ts-node-10.9.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."universalify-2.0.0" sources."v8-compile-cache-lib-3.0.1" sources."wrap-ansi-7.0.0" @@ -132234,7 +131381,7 @@ in sources."minimist-1.2.7" sources."mkdirp-classic-0.5.3" sources."napi-build-utils-1.0.2" - sources."node-abi-3.28.0" + sources."node-abi-3.30.0" sources."once-1.4.0" sources."pump-3.0.0" sources."rc-1.2.8" @@ -132265,10 +131412,10 @@ in prettier = nodeEnv.buildNodePackage { name = "prettier"; packageName = "prettier"; - version = "2.7.1"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz"; - sha512 = "ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g=="; + url = "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz"; + sha512 = "9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA=="; }; buildInputs = globalBuildInputs; meta = { @@ -132298,7 +131445,7 @@ in sources."minimist-1.2.7" sources."nanolru-1.0.0" sources."path-parse-1.0.7" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."resolve-1.22.1" sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" @@ -132340,13 +131487,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "4.5.0"; + version = "4.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-4.5.0.tgz"; - sha512 = "9Aeg4qiKlv9Wsjz4NO8k2CzRzlvS3A4FYVJ5+28sBBZ0eEwbiVOE/Jj7v6rZC1tFW2s4GSICQOAyuOjc6WsNew=="; + url = "https://registry.npmjs.org/prisma/-/prisma-4.7.1.tgz"; + sha512 = "CCQP+m+1qZOGIZlvnL6T3ZwaU0LAleIHYFPN9tFSzjs/KL6vH9rlYbGOkTuG9Q1s6Ki5D0LJlYlW18Z9EBUpGg=="; }; dependencies = [ - sources."@prisma/engines-4.5.0" + sources."@prisma/engines-4.7.1" ]; buildInputs = globalBuildInputs; meta = { @@ -132361,17 +131508,17 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "4.5.0"; + version = "4.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.5.0.tgz"; - sha512 = "q0I9KwoK+iYknxmZRtRXoOrryR3wnGwR4m7hQNmpMYUXa45Zbs867aJI0ZALIra+GW2QEC8midJSCUF7/yGlUA=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.7.1.tgz"; + sha512 = "0+4bmDWXr4Kda1wtECaphHv9bYv/HdVMiECXvvr8+JTOnJetd2ZulBpil31SyFttnspiclG5wu3fhik0z6S14w=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -132387,12 +131534,12 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@istanbuljs/load-nyc-config-1.1.0" sources."@istanbuljs/schema-0.1.3" sources."@jridgewell/gen-mapping-0.1.1" @@ -132400,7 +131547,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - sources."@prisma/prisma-fmt-wasm-4.5.0-43.0362da9eebca54d94c8ef5edd3b2e90af99ba452" + sources."@prisma/prisma-fmt-wasm-4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c" sources."@types/js-levenshtein-1.1.1" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" @@ -132413,7 +131560,7 @@ in sources."browserslist-4.21.4" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -132755,7 +131902,7 @@ in sources."concat-stream-1.6.2" ]; }) - (sources."mold-source-map-0.4.0" // { + (sources."mold-source-map-0.4.1" // { dependencies = [ sources."through-2.2.7" ]; @@ -132997,7 +132144,7 @@ in sources."ip-2.0.0" sources."is-docker-2.2.1" sources."is-wsl-2.2.0" - sources."js-base64-3.7.2" + sources."js-base64-3.7.3" sources."json-buffer-3.0.0" sources."jsonfile-6.1.0" sources."keyv-3.1.0" @@ -133057,10 +132204,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.278"; + version = "1.1.282"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.278.tgz"; - sha512 = "at3j7c1fFzB6Jl4+bpr9QPRC/+1gH2gAR/M6GIRS312CHE2JMt8FZRflTbuxEB8IfQAtR+l3YoRMoS1vqF28jw=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.282.tgz"; + sha512 = "qwlGhY/4wkZJJlxiwGzKL7Do6rVSOcXp72zplxJ76BbVIWuiKpGUeYIhLdONEAD22UwLTp8XvmARQzDnJ3EMSQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -133152,7 +132299,7 @@ in }) sources."iterall-1.1.3" sources."js-base64-2.6.4" - sources."json-stable-stringify-1.0.1" + sources."json-stable-stringify-1.0.2" sources."jsonify-0.0.1" sources."lcid-2.0.0" sources."levn-0.3.0" @@ -133411,13 +132558,13 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.19.3" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - (sources."@babel/core-7.20.2" // { + sources."@babel/compat-data-7.20.5" + (sources."@babel/core-7.20.5" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."@babel/generator-7.20.2" // { + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -133429,8 +132576,8 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.2" - sources."@babel/helper-create-regexp-features-plugin-7.19.0" + sources."@babel/helper-create-class-features-plugin-7.20.5" + sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ sources."semver-6.3.0" @@ -133453,10 +132600,10 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.19.0" - sources."@babel/helpers-7.20.1" + sources."@babel/helper-wrap-function-7.20.5" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" sources."@babel/plugin-proposal-async-generator-functions-7.20.1" @@ -133473,7 +132620,7 @@ in sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.18.9" sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.18.6" + sources."@babel/plugin-proposal-private-property-in-object-7.20.5" sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" @@ -133495,7 +132642,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.18.6" sources."@babel/plugin-transform-async-to-generator-7.18.6" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.2" + sources."@babel/plugin-transform-block-scoping-7.20.5" sources."@babel/plugin-transform-classes-7.20.2" sources."@babel/plugin-transform-computed-properties-7.18.9" sources."@babel/plugin-transform-destructuring-7.20.2" @@ -133510,16 +132657,16 @@ in sources."@babel/plugin-transform-modules-commonjs-7.19.6" sources."@babel/plugin-transform-modules-systemjs-7.19.6" sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" + sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.1" + sources."@babel/plugin-transform-parameters-7.20.5" sources."@babel/plugin-transform-property-literals-7.18.6" sources."@babel/plugin-transform-react-display-name-7.18.6" sources."@babel/plugin-transform-react-jsx-7.19.0" sources."@babel/plugin-transform-react-jsx-development-7.18.6" sources."@babel/plugin-transform-react-pure-annotations-7.18.6" - sources."@babel/plugin-transform-regenerator-7.18.6" + sources."@babel/plugin-transform-regenerator-7.20.5" sources."@babel/plugin-transform-reserved-words-7.18.6" (sources."@babel/plugin-transform-runtime-7.19.6" // { dependencies = [ @@ -133542,10 +132689,10 @@ in sources."@babel/preset-react-7.18.6" sources."@babel/preset-stage-0-7.8.3" sources."@babel/register-7.18.9" - sources."@babel/runtime-7.20.1" + sources."@babel/runtime-7.20.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -133556,7 +132703,7 @@ in sources."@types/glob-7.2.0" sources."@types/json-schema-7.0.11" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/parse-json-4.0.0" sources."@types/prop-types-15.7.5" sources."@types/q-1.5.5" @@ -133597,7 +132744,7 @@ in sources."ansi-html-community-0.0.8" sources."ansi-regex-3.0.1" sources."ansi-styles-3.2.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."aproba-1.2.0" sources."arch-2.2.0" (sources."archive-type-4.0.0" // { @@ -133751,7 +132898,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -133828,7 +132975,7 @@ in sources."copy-concurrently-1.0.5" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - sources."core-js-compat-3.26.0" + sources."core-js-compat-3.26.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."cosmiconfig-6.0.0" @@ -133847,7 +132994,7 @@ in (sources."css-loader-2.1.1" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."postcss-value-parser-3.3.1" sources."schema-utils-1.0.0" ]; @@ -133880,7 +133027,7 @@ in sources."cyclist-1.0.1" sources."debug-4.3.4" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" (sources."decompress-4.2.1" // { dependencies = [ (sources."make-dir-1.3.0" // { @@ -133977,7 +133124,7 @@ in sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" - (sources."engine.io-3.6.0" // { + (sources."engine.io-3.6.1" // { dependencies = [ sources."debug-4.1.1" ]; @@ -134085,7 +133232,7 @@ in (sources."file-loader-3.0.1" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; }) @@ -134320,13 +133467,13 @@ in sources."last-call-webpack-plugin-3.0.0" sources."lines-and-columns-1.2.4" sources."loader-runner-2.4.0" - sources."loader-utils-2.0.3" + sources."loader-utils-2.0.4" sources."locate-path-3.0.0" sources."lodash-4.17.21" sources."lodash.debounce-4.0.8" sources."lodash.memoize-4.1.2" sources."lodash.uniq-4.5.0" - sources."loglevel-1.8.0" + sources."loglevel-1.8.1" sources."loose-envify-1.4.0" sources."lower-case-1.1.4" sources."lowercase-keys-1.0.1" @@ -134536,7 +133683,7 @@ in (sources."postcss-loader-3.0.0" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; }) @@ -134631,7 +133778,7 @@ in sources."postcss-value-parser-3.3.1" ]; }) - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."postcss-value-parser-3.3.1" @@ -134676,7 +133823,7 @@ in (sources."raw-loader-3.1.0" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" ]; }) sources."rc-1.2.8" @@ -134684,10 +133831,8 @@ in sources."react-dom-16.14.0" sources."react-fast-compare-3.2.0" sources."react-helmet-6.1.0" - (sources."react-hot-loader-4.13.0" // { + (sources."react-hot-loader-4.13.1" // { dependencies = [ - sources."json5-1.0.1" - sources."loader-utils-1.4.0" sources."source-map-0.7.4" ]; }) @@ -134703,11 +133848,11 @@ in sources."readdirp-3.6.0" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.10" - sources."regenerator-transform-0.15.0" + sources."regenerator-runtime-0.13.11" + sources."regenerator-transform-0.15.1" sources."regex-not-1.0.2" sources."regexp.prototype.flags-1.4.3" - sources."regexpu-core-5.2.1" + sources."regexpu-core-5.2.2" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" sources."regjsgen-0.7.1" @@ -134874,10 +134019,10 @@ in sources."debug-3.1.0" sources."isarray-2.0.1" sources."ms-2.0.0" - sources."socket.io-parser-3.3.2" + sources."socket.io-parser-3.3.3" ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."debug-4.1.1" sources."isarray-2.0.1" @@ -134934,8 +134079,8 @@ in sources."strip-ansi-4.0.0" ]; }) - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -134953,7 +134098,7 @@ in (sources."style-loader-0.23.1" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; }) @@ -135024,7 +134169,7 @@ in sources."unbzip2-stream-1.4.3" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.0.0" + sources."unicode-match-property-value-ecmascript-2.1.0" sources."unicode-property-aliases-ecmascript-2.1.0" sources."union-value-1.0.1" sources."uniq-1.0.1" @@ -135058,7 +134203,7 @@ in (sources."url-loader-2.3.0" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" ]; }) sources."url-parse-1.5.10" @@ -135104,7 +134249,7 @@ in (sources."webpack-4.46.0" // { dependencies = [ sources."json5-1.0.1" - sources."loader-utils-1.4.0" + sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; }) @@ -135305,14 +134450,14 @@ in ]; }) sources."debug-4.3.4" - sources."decimal.js-10.4.2" + sources."decimal.js-10.4.3" sources."decompress-response-4.2.1" sources."deep-is-0.1.4" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."detect-libc-2.0.1" sources."domexception-4.0.0" - sources."dompurify-2.4.0" + sources."dompurify-2.4.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."escalade-3.1.1" @@ -135348,7 +134493,7 @@ in sources."mime-types-2.1.35" sources."mimic-response-2.1.0" sources."minimatch-3.1.2" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.2" @@ -135436,7 +134581,7 @@ in }; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/generator-7.20.2" + sources."@babel/generator-7.20.5" sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-function-name-7.19.0" @@ -135446,11 +134591,11 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" - sources."@babel/runtime-7.20.1" + sources."@babel/parser-7.20.5" + sources."@babel/runtime-7.20.6" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" sources."@emotion/is-prop-valid-1.2.0" sources."@emotion/memoize-0.8.0" sources."@emotion/stylis-0.8.5" @@ -135463,14 +134608,14 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" sources."@redocly/ajv-8.11.0" - sources."@redocly/openapi-core-1.0.0-beta.112" + sources."@redocly/openapi-core-1.0.0-beta.115" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/eslint-8.4.10" sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-14.18.33" + sources."@types/node-14.18.34" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -135499,7 +134644,7 @@ in sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."argparse-2.0.1" (sources."asn1.js-5.4.1" // { dependencies = [ @@ -135558,7 +134703,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" (sources."chalk-2.4.2" // { dependencies = [ sources."has-flag-3.0.0" @@ -135581,7 +134726,7 @@ in sources."configstore-5.0.1" sources."console-browserify-1.2.0" sources."constants-browserify-1.0.0" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.3" (sources."create-ecdh-4.0.4" // { dependencies = [ @@ -135606,7 +134751,7 @@ in ]; }) sources."domain-browser-1.2.0" - sources."dompurify-2.4.0" + sources."dompurify-2.4.1" sources."dot-prop-5.3.0" sources."duplexer3-0.1.5" sources."electron-to-chromium-1.4.284" @@ -135619,7 +134764,7 @@ in sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -135645,7 +134790,7 @@ in sources."get-stream-4.1.0" sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."globals-11.12.0" sources."got-9.6.0" sources."graceful-fs-4.2.10" @@ -135711,7 +134856,7 @@ in ]; }) sources."mark.js-8.11.1" - sources."marked-4.2.2" + sources."marked-4.2.3" sources."md5.js-1.3.5" sources."merge-stream-2.0.0" (sources."miller-rabin-4.0.1" // { @@ -135724,11 +134869,11 @@ in sources."mimic-response-1.0.1" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.7" sources."mkdirp-1.0.4" - sources."mobx-6.6.2" - sources."mobx-react-7.5.3" + sources."mobx-6.7.0" + sources."mobx-react-7.6.0" sources."mobx-react-lite-3.4.0" sources."ms-2.1.2" sources."neo-async-2.6.2" @@ -135805,7 +134950,7 @@ in ]; }) sources."reftools-1.1.9" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" sources."require-directory-2.1.1" @@ -135853,7 +134998,7 @@ in sources."supports-color-8.1.1" sources."swagger2openapi-7.0.8" sources."tapable-2.2.1" - sources."terser-5.15.1" + sources."terser-5.16.1" sources."terser-webpack-plugin-5.3.6" sources."timers-browserify-2.0.12" sources."to-arraybuffer-1.0.1" @@ -135897,7 +135042,7 @@ in sources."vm-browserify-1.1.2" sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - sources."webpack-5.74.0" + sources."webpack-5.75.0" sources."webpack-sources-3.2.3" sources."whatwg-url-5.0.0" sources."widest-line-3.1.0" @@ -135940,7 +135085,7 @@ in }; dependencies = [ sources."@types/prop-types-15.7.5" - sources."@types/react-18.0.25" + sources."@types/react-18.0.26" sources."@types/scheduler-0.16.2" sources."@types/yoga-layout-1.9.2" sources."ansi-escapes-4.3.2" @@ -136109,7 +135254,7 @@ in sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."argparse-1.0.10" sources."array-flatten-1.1.1" sources."async-limiter-1.0.1" @@ -136202,7 +135347,7 @@ in sources."get-stream-4.1.0" sources."glob-8.0.3" sources."glob-parent-5.1.2" - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."got-9.6.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" @@ -136261,7 +135406,7 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-response-1.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."minimist-1.2.7" sources."mkdirp-0.5.6" sources."ms-2.1.2" @@ -136435,10 +135580,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.2.5"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.2.5.tgz"; - sha512 = "/Ha7HhVVofduy+RKWOQJrxe4Qb3xyZo+chcpYiD8SoQa4AG7llhupUtyfKSSrdBM2mWJjhM8wZwmbY23NmlIYw=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.5.1.tgz"; + sha512 = "hdQWTvPeiAbM6SUkxV70HdGUVxsgsc+CLy5fuh4KdgUBJ0SowXiix8gANgXoG3wEuLwfoJhCT2V+WwxfWq9Ikw=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -136472,14 +135617,14 @@ in sources."@types/node-14.17.34" sources."@types/semver-7.3.13" sources."@types/vscode-1.66.0" - sources."@typescript-eslint/eslint-plugin-5.42.0" - sources."@typescript-eslint/parser-5.42.0" - sources."@typescript-eslint/scope-manager-5.42.0" - sources."@typescript-eslint/type-utils-5.42.0" - sources."@typescript-eslint/types-5.42.0" - sources."@typescript-eslint/typescript-estree-5.42.0" - sources."@typescript-eslint/utils-5.42.0" - sources."@typescript-eslint/visitor-keys-5.42.0" + sources."@typescript-eslint/eslint-plugin-5.45.0" + sources."@typescript-eslint/parser-5.45.0" + sources."@typescript-eslint/scope-manager-5.45.0" + sources."@typescript-eslint/type-utils-5.45.0" + sources."@typescript-eslint/types-5.45.0" + sources."@typescript-eslint/typescript-estree-5.45.0" + sources."@typescript-eslint/utils-5.45.0" + sources."@typescript-eslint/visitor-keys-5.45.0" sources."@vscode/test-electron-2.2.0" sources."acorn-8.8.1" sources."acorn-jsx-5.3.2" @@ -136525,8 +135670,8 @@ in sources."cross-spawn-7.0.3" sources."css-select-5.1.0" sources."css-what-6.1.0" - sources."d3-7.6.1" - sources."d3-array-3.2.0" + sources."d3-7.7.0" + sources."d3-array-3.2.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" @@ -136566,7 +135711,7 @@ in sources."d3-scale-chromatic-3.0.0" sources."d3-selection-3.0.0" sources."d3-shape-3.1.0" - sources."d3-time-3.0.0" + sources."d3-time-3.1.0" sources."d3-time-format-4.1.0" sources."d3-timer-3.0.1" sources."d3-transition-3.0.1" @@ -136597,7 +135742,7 @@ in sources."entities-4.4.0" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.27.0" // { + (sources."eslint-8.29.0" // { dependencies = [ sources."eslint-scope-7.1.1" sources."estraverse-5.3.0" @@ -136629,7 +135774,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fd-slicer-1.1.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" @@ -136649,7 +135794,7 @@ in sources."github-from-package-0.0.0" sources."glob-7.2.3" sources."glob-parent-5.1.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."globby-11.1.0" sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" @@ -136662,7 +135807,7 @@ in sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -136676,7 +135821,7 @@ in sources."is-path-inside-3.0.3" sources."isarray-1.0.0" sources."isexe-2.0.0" - sources."js-sdsl-4.1.5" + sources."js-sdsl-4.2.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" @@ -136707,7 +135852,7 @@ in sources."napi-build-utils-1.0.2" sources."natural-compare-1.4.0" sources."natural-compare-lite-1.4.0" - sources."node-abi-3.28.0" + sources."node-abi-3.30.0" sources."node-addon-api-4.3.0" sources."nth-check-2.1.1" sources."object-inspect-1.12.2" @@ -136721,7 +135866,7 @@ in sources."semver-5.7.1" ]; }) - sources."parse5-7.1.1" + sources."parse5-7.1.2" sources."parse5-htmlparser2-tree-adapter-7.0.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" @@ -136790,7 +135935,7 @@ in sources."type-check-0.4.0" sources."type-fest-0.20.2" sources."typed-rest-client-1.8.9" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."typescript-formatter-7.2.2" sources."uc.micro-1.0.6" sources."underscore-1.13.6" @@ -136798,7 +135943,7 @@ in sources."uri-js-4.4.1" sources."url-join-4.0.1" sources."util-deprecate-1.0.2" - (sources."vsce-2.13.0" // { + (sources."vsce-2.15.0" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -136848,7 +135993,7 @@ in sources."escalade-3.1.1" sources."nanoid-3.3.4" sources."picocolors-1.0.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."source-map-js-1.0.2" sources."strip-json-comments-3.1.1" ]; @@ -136961,13 +136106,13 @@ in sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; - version = "1.56.0"; + version = "1.56.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.56.0.tgz"; - sha512 = "WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw=="; + url = "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz"; + sha512 = "VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ=="; }; dependencies = [ - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."binary-extensions-2.2.0" sources."braces-3.0.2" sources."chokidar-3.5.3" @@ -137020,10 +136165,10 @@ in serve = nodeEnv.buildNodePackage { name = "serve"; packageName = "serve"; - version = "14.0.1"; + version = "14.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/serve/-/serve-14.0.1.tgz"; - sha512 = "tNGwxl27FwA8TbmMQqN0jTaSx8/trL532qZsJHX1VdiEIjjtMJHCs7AFS6OvtC7cTHOvmjXqt5yczejU6CV2Xg=="; + url = "https://registry.npmjs.org/serve/-/serve-14.1.2.tgz"; + sha512 = "luwVfJwbeE7dhCKeRU0vIBpt4bXdbAfzwsWJIQ5eqrIW2e+4nLWXbSlZ0WzelSFHQq+FlueOW6dr90jEewS9zw=="; }; dependencies = [ sources."@zeit/schemas-2.21.0" @@ -137085,7 +136230,7 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" - sources."minimatch-3.0.4" + sources."minimatch-3.1.2" sources."minimist-1.2.7" sources."ms-2.0.0" sources."negotiator-0.6.3" @@ -137102,7 +136247,7 @@ in sources."registry-url-3.1.0" sources."require-from-string-2.0.2" sources."safe-buffer-5.1.2" - (sources."serve-handler-6.1.3" // { + (sources."serve-handler-6.1.5" // { dependencies = [ sources."mime-db-1.33.0" sources."mime-types-2.1.18" @@ -137148,10 +136293,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "3.24.1"; + version = "3.25.1"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-3.24.1.tgz"; - sha512 = "v7WTprSqj0jFoKOY0BU4a7P7bOYHPsvhhxpZt8OJqYrnqyAQbnhM6GXbDimRMibsH3CNvMVWEKD+WWeimXzcHw=="; + url = "https://registry.npmjs.org/serverless/-/serverless-3.25.1.tgz"; + sha512 = "FFyC3+1iYPfbVKRHMcPqkGRNzXRgIg8/wsG+dI49oAGqT8Y7LXDRNCd7wuGyXRlRf2IXSMXzGTEmEFCFJPti3w=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -137182,20 +136327,20 @@ in sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/lodash-4.14.188" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/lodash-4.14.191" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.9" sources."agent-base-6.0.2" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-formats-2.1.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" (sources."archive-type-4.0.0" // { dependencies = [ sources."file-type-4.4.0" @@ -137214,7 +136359,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1248.0" // { + (sources."aws-sdk-2.1259.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -137260,7 +136405,7 @@ in sources."child-process-ext-2.1.1" sources."chokidar-3.5.3" sources."chownr-2.0.0" - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" sources."cli-color-2.0.3" sources."cli-cursor-3.1.0" sources."cli-progress-footer-2.3.2" @@ -137351,7 +136496,7 @@ in sources."deferred-0.7.11" sources."define-lazy-prop-2.0.0" sources."delayed-stream-1.0.0" - sources."dezalgo-1.0.3" + sources."dezalgo-1.0.4" sources."dir-glob-3.0.1" sources."dotenv-16.0.3" sources."dotenv-expand-9.0.0" @@ -137382,7 +136527,7 @@ in sources."fast-glob-3.2.12" sources."fast-safe-stringify-2.1.1" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fd-slicer-1.1.0" sources."figures-3.2.0" sources."file-type-16.5.4" @@ -137395,11 +136540,7 @@ in sources."follow-redirects-1.15.2" sources."for-each-0.3.3" sources."form-data-4.0.0" - (sources."formidable-2.0.1" // { - dependencies = [ - sources."qs-6.9.3" - ]; - }) + sources."formidable-2.1.2" sources."fs-constants-1.0.0" sources."fs-extra-10.1.0" sources."fs-minipass-2.1.0" @@ -137427,7 +136568,7 @@ in sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."immediate-3.0.6" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -137471,7 +136612,7 @@ in sources."jsonfile-6.1.0" sources."jszip-3.10.1" sources."jwt-decode-2.2.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."lazystream-1.0.1" sources."lie-3.3.0" sources."lodash-4.17.21" @@ -137501,7 +136642,7 @@ in sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.1.2" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.2" @@ -137558,7 +136699,7 @@ in (sources."readdir-glob-1.1.2" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."readdirp-3.6.0" @@ -137570,7 +136711,7 @@ in sources."run-async-2.4.1" sources."run-parallel-1.2.0" sources."run-parallel-limit-1.1.0" - sources."rxjs-7.5.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.2.1" @@ -137581,7 +136722,7 @@ in sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."simple-git-3.14.1" + sources."simple-git-3.15.1" sources."slash-3.0.0" sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" @@ -137967,7 +137108,7 @@ in sources."copy-descriptor-0.1.1" sources."core-util-is-1.0.3" sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."define-property-2.0.2" (sources."expand-brackets-2.1.4" // { dependencies = [ @@ -138311,10 +137452,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1054.0"; + version = "1.1066.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1054.0.tgz"; - sha512 = "gRatzs9zNU5c+Z+t+qf04XjRJn/pP1f8j0HMclE95VmDwhP/nwE8Fd7Cz5PLJ7D+ehFvV3cpKX4EpGaGgZak6w=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1066.0.tgz"; + sha512 = "ZlOSRcLQxbEtV+bEu3F/Ds3gXrzDBck6DYWCIn+9a27cvWPvxklY4LzxWXfDbzSbx93etC69qI1tbsuDinQ8uA=="; }; buildInputs = globalBuildInputs; meta = { @@ -138328,23 +137469,23 @@ in "socket.io" = nodeEnv.buildNodePackage { name = "socket.io"; packageName = "socket.io"; - version = "4.5.3"; + version = "4.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz"; - sha512 = "zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz"; + sha512 = "m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ=="; }; dependencies = [ sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.7" sources."cookie-0.4.2" sources."cors-2.8.5" sources."debug-4.3.4" - sources."engine.io-6.2.0" + sources."engine.io-6.2.1" sources."engine.io-parser-5.0.4" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -138533,10 +137674,10 @@ in sql-formatter = nodeEnv.buildNodePackage { name = "sql-formatter"; packageName = "sql-formatter"; - version = "11.0.2"; + version = "12.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-11.0.2.tgz"; - sha512 = "6QumAdGHEnI5dXEq1d0aBRP876AyA9Wp/UE7wopKNA2Mp9sKGRKVqGgoWHk4dr0J0nceesC85Y0p36qmGoNqhw=="; + url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-12.0.3.tgz"; + sha512 = "Q4ABErLPem1hW/IAy9XOkGIdXgeM+SfUv0ngRo6ef/Z7t4juz/buX8tkBRvEjthAuO9AXVbEKKnBetFxGE+/JQ=="; }; dependencies = [ sources."argparse-2.0.1" @@ -138590,7 +137731,7 @@ in sources."assign-symbols-1.0.0" (sources."async-append-only-log-3.1.4" // { dependencies = [ - sources."push-stream-11.0.1" + sources."push-stream-11.2.0" ]; }) sources."async-each-1.0.3" @@ -138695,7 +137836,7 @@ in sources."crc-3.6.0" sources."cross-spawn-6.0.5" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-equal-1.1.1" sources."deep-extend-0.6.0" (sources."deferred-leveldown-5.3.0" // { @@ -138909,7 +138050,7 @@ in dependencies = [ sources."mkdirp-1.0.4" sources."obz-1.0.3" - sources."push-stream-11.0.1" + sources."push-stream-11.2.0" ]; }) sources."jsesc-3.0.2" @@ -139111,7 +138252,7 @@ in sources."pull-reader-1.3.1" sources."pull-sink-through-0.0.0" sources."pull-sort-1.0.2" - sources."pull-stream-3.6.14" + sources."pull-stream-3.7.0" sources."pull-thenable-1.0.0" (sources."pull-through-1.0.18" // { dependencies = [ @@ -139132,7 +138273,7 @@ in sources."push-stream-10.1.2" (sources."push-stream-to-pull-stream-1.0.5" // { dependencies = [ - sources."push-stream-11.0.1" + sources."push-stream-11.2.0" ]; }) sources."queue-tick-1.0.1" @@ -139342,7 +138483,7 @@ in sources."level-6.0.1" sources."level-js-5.0.2" sources."mkdirp-1.0.4" - sources."push-stream-11.0.1" + sources."push-stream-11.2.0" sources."rimraf-3.0.2" (sources."ssb-keys-8.5.0" // { dependencies = [ @@ -139422,9 +138563,9 @@ in ]; }) sources."string-width-1.0.2" - sources."string.prototype.trim-1.2.6" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trim-1.2.7" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."string_decoder-1.1.1" sources."stringify-entities-1.3.2" sources."strip-ansi-3.0.1" @@ -139601,7 +138742,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1248.0" // { + (sources."aws-sdk-2.1267.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -139727,7 +138868,7 @@ in sources."depd-2.0.0" sources."deref-0.6.4" sources."destroy-1.2.0" - sources."dezalgo-1.0.3" + sources."dezalgo-1.0.4" sources."dicer-0.2.5" sources."doctypes-1.1.0" sources."drange-1.1.1" @@ -139742,7 +138883,7 @@ in sources."ejs-0.8.8" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" - (sources."engine.io-3.6.0" // { + (sources."engine.io-3.6.1" // { dependencies = [ sources."bufferutil-4.0.7" sources."cookie-0.4.2" @@ -140161,10 +139302,10 @@ in sources."debug-3.1.0" sources."isarray-2.0.1" sources."ms-2.0.0" - sources."socket.io-parser-3.3.2" + sources."socket.io-parser-3.3.3" ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."component-emitter-1.2.1" sources."debug-4.1.1" @@ -140212,11 +139353,7 @@ in dependencies = [ sources."debug-4.3.4" sources."form-data-4.0.0" - (sources."formidable-2.0.1" // { - dependencies = [ - sources."qs-6.9.3" - ]; - }) + sources."formidable-2.1.2" sources."lru-cache-6.0.0" sources."mime-2.6.0" sources."ms-2.1.2" @@ -140322,9 +139459,9 @@ in sources."which-module-2.0.0" sources."which-typed-array-1.1.9" sources."window-size-0.1.0" - (sources."winston-2.4.6" // { + (sources."winston-2.4.7" // { dependencies = [ - sources."async-3.2.4" + sources."async-2.6.4" ]; }) sources."with-5.1.1" @@ -140404,10 +139541,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "14.14.1"; + version = "14.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-14.14.1.tgz"; - sha512 = "Jnftu+lSD8cSpcV/+Z2nfgfgFpTIS1FcujezXPngtoIQ6wtwutL22MsNE0dJuMiM1h1790g2qIjAyUZCMrX4sw=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.16.0.tgz"; + sha512 = "X6uTi9DcxjzLV8ZUAjit1vsRtSwcls0nl07c9rqOPzvpA8IvTX/xWEkBRowS0ffevRrqkHa/ThDEu86u73FQDg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -140420,7 +139557,7 @@ in sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."array-union-2.1.0" @@ -140441,7 +139578,7 @@ in sources."color-name-1.1.3" sources."colord-2.9.3" sources."concat-map-0.0.1" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-7.1.0" sources."css-functions-list-3.1.0" sources."cssesc-3.0.0" sources."debug-4.3.4" @@ -140458,7 +139595,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" sources."find-up-4.1.0" @@ -140477,7 +139614,7 @@ in sources."has-flag-3.0.0" sources."hosted-git-info-4.1.0" sources."html-tags-3.2.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" (sources."import-fresh-3.3.0" // { dependencies = [ sources."resolve-from-4.0.0" @@ -140531,11 +139668,11 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-media-query-parser-0.2.3" sources."postcss-resolve-nested-selector-0.1.1" sources."postcss-safe-parser-6.0.0" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-value-parser-4.2.0" sources."punycode-2.1.1" sources."queue-microtask-1.2.3" @@ -140753,17 +139890,17 @@ in svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; - version = "2.9.2"; + version = "2.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.9.2.tgz"; - sha512 = "DRi8HhnCiqiGR2YF9ervPGvtoYrheE09cXieCTEqeTPOTJzfoa54Py8rovIBv4bH4n5HgZYIyTQ3DDLHQLl2uQ=="; + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.10.0.tgz"; + sha512 = "5iLCoja/WsithyRkNtIeDQ0euJlgWj3Zzo2IA6iuHMuuX9D9OrRYZj2WlA5ACnAFQnN5L9mxWcwUW9VxDNEoGg=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -140779,12 +139916,12 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ sources."@jridgewell/trace-mapping-0.3.9" @@ -140798,29 +139935,29 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/pug-2.0.6" sources."@types/sass-1.43.1" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."ansi-styles-3.2.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-4.1.3" sources."asap-2.0.6" sources."assert-never-1.2.1" @@ -140834,7 +139971,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -140848,7 +139985,7 @@ in sources."create-require-1.1.1" sources."css-3.0.0" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" @@ -140858,7 +139995,7 @@ in sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" @@ -140916,7 +140053,7 @@ in sources."mri-1.2.0" sources."ms-2.1.2" sources."nanoid-3.3.4" - (sources."needle-3.1.0" // { + (sources."needle-3.2.0" // { dependencies = [ sources."debug-3.2.7" ]; @@ -140932,7 +140069,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-load-config-4.0.1" sources."promise-7.3.1" sources."prr-1.0.1" @@ -140958,7 +140095,7 @@ in sources."sade-1.8.1" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.56.0" + sources."sass-1.56.1" sources."sax-1.2.4" sources."semver-6.3.0" sources."sorcery-0.10.0" @@ -140983,14 +140120,14 @@ in }) sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."svelte-3.52.0" + sources."svelte-3.53.1" sources."svelte-preprocess-4.10.7" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" sources."ts-node-10.9.1" sources."tslib-2.4.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."update-browserslist-db-1.0.10" sources."v8-compile-cache-lib-3.0.1" sources."void-elements-3.1.0" @@ -141012,17 +140149,17 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.14.37"; + version = "0.14.38"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.37.tgz"; - sha512 = "gTCIYsI8MasoH0DkvIj3ixGZRglTb89SxMWehoqKJMW5SF4WXcCJyLUGfX71TTUcZqZzMu9k9PlddpkdFK2AzA=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.38.tgz"; + sha512 = "47VuSwJyeYzgl+Yen4VVCThxBzaVHPv+cB4nYSYhY0l7i4Njn1eLLLWXDc1A99qs5as2P2yBIVGfbW6Qno922g=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.1" - sources."@babel/core-7.20.2" - (sources."@babel/generator-7.20.2" // { + sources."@babel/compat-data-7.20.5" + sources."@babel/core-7.20.5" + (sources."@babel/generator-7.20.5" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" ]; @@ -141038,12 +140175,12 @@ in sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helpers-7.20.1" + sources."@babel/helpers-7.20.6" sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.2" + sources."@babel/parser-7.20.5" sources."@babel/template-7.18.10" - sources."@babel/traverse-7.20.1" - sources."@babel/types-7.20.2" + sources."@babel/traverse-7.20.5" + sources."@babel/types-7.20.5" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ sources."@jridgewell/trace-mapping-0.3.9" @@ -141060,29 +140197,34 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/pug-2.0.6" sources."@types/sass-1.43.1" + (sources."@vscode/emmet-helper-2.8.4" // { + dependencies = [ + sources."vscode-uri-2.1.2" + ]; + }) sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."ansi-styles-3.2.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-4.1.3" sources."asap-2.0.6" sources."assert-never-1.2.1" @@ -141095,7 +140237,7 @@ in sources."browserslist-4.21.4" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -141109,7 +140251,7 @@ in sources."create-require-1.1.1" sources."css-3.0.0" sources."debug-4.3.4" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."dedent-js-1.0.1" sources."detect-indent-6.1.0" sources."diff-4.0.2" @@ -141122,7 +140264,7 @@ in sources."escape-string-regexp-1.0.5" sources."estree-walker-2.0.2" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" @@ -141181,7 +140323,7 @@ in sources."mkdirp-0.5.6" sources."ms-2.1.2" sources."nanoid-3.3.4" - (sources."needle-3.1.0" // { + (sources."needle-3.2.0" // { dependencies = [ sources."debug-3.2.7" ]; @@ -141198,10 +140340,10 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-load-config-4.0.1" - sources."prettier-2.7.1" - sources."prettier-plugin-svelte-2.8.0" + sources."prettier-2.8.0" + sources."prettier-plugin-svelte-2.8.1" sources."promise-7.3.1" sources."prr-1.0.1" sources."pug-3.0.2" @@ -141224,7 +140366,7 @@ in sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.56.0" + sources."sass-1.56.1" sources."sax-1.2.4" sources."semver-6.3.0" sources."sorcery-0.10.0" @@ -141249,24 +140391,19 @@ in }) sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."svelte-3.52.0" + sources."svelte-3.53.1" sources."svelte-preprocess-4.10.7" - sources."svelte2tsx-0.5.20" + sources."svelte2tsx-0.5.21" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" sources."ts-node-10.9.1" sources."tslib-2.4.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."update-browserslist-db-1.0.10" sources."v8-compile-cache-lib-3.0.1" sources."void-elements-3.1.0" sources."vscode-css-languageservice-5.1.13" - (sources."vscode-emmet-helper-2.6.4" // { - dependencies = [ - sources."vscode-uri-2.1.2" - ]; - }) sources."vscode-html-languageservice-4.1.1" sources."vscode-jsonrpc-6.1.0-next.2" (sources."vscode-languageserver-7.1.0-next.4" // { @@ -141302,25 +140439,30 @@ in svgo = nodeEnv.buildNodePackage { name = "svgo"; packageName = "svgo"; - version = "3.0.0"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/svgo/-/svgo-3.0.0.tgz"; - sha512 = "mSqPn6RDeNqJvCeqHERlfWJjd4crP/2PgFelil9WpTwC4D3okAUopPsH3lnEyl7ONXfDVyISOihDjO0uK8YVAA=="; + url = "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz"; + sha512 = "Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ=="; }; dependencies = [ sources."@trysound/sax-0.2.0" sources."boolbase-1.0.0" sources."commander-7.2.0" sources."css-select-5.1.0" - sources."css-tree-2.2.1" + sources."css-tree-2.3.0" sources."css-what-6.1.0" - sources."csso-5.0.5" + (sources."csso-5.0.5" // { + dependencies = [ + sources."css-tree-2.2.1" + sources."mdn-data-2.0.28" + ]; + }) sources."dom-serializer-2.0.0" sources."domelementtype-2.3.0" sources."domhandler-5.0.3" sources."domutils-3.0.1" sources."entities-4.4.0" - sources."mdn-data-2.0.28" + sources."mdn-data-2.0.30" sources."nth-check-2.1.1" sources."picocolors-1.0.0" sources."source-map-js-1.0.2" @@ -141463,13 +140605,13 @@ in sources."crypto-random-string-1.0.0" sources."dag-map-1.0.2" sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."deep-extend-0.6.0" sources."define-property-2.0.2" sources."delayed-stream-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."dezalgo-1.0.3" + sources."dezalgo-1.0.4" (sources."dicer-0.2.5" // { dependencies = [ sources."isarray-0.0.1" @@ -141528,9 +140670,9 @@ in sources."finalhandler-1.1.2" sources."for-in-1.0.2" sources."form-data-4.0.0" - (sources."formidable-2.0.1" // { + (sources."formidable-2.1.2" // { dependencies = [ - sources."qs-6.9.3" + sources."qs-6.11.0" ]; }) sources."fragment-cache-0.2.1" @@ -141997,10 +141139,10 @@ in tailwindcss = nodeEnv.buildNodePackage { name = "tailwindcss"; packageName = "tailwindcss"; - version = "3.2.2"; + version = "3.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.2.tgz"; - sha512 = "c2GtSdqg+harR4QeoTmex0Ngfg8IIHNeLQH5yr2B9uZbZR1Xt1rYbjWOWTcj3YLTZhrmZnPowoQDbSRFyZHQ5Q=="; + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz"; + sha512 = "AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -142010,27 +141152,27 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."arg-5.0.2" sources."binary-extensions-2.2.0" sources."braces-3.0.2" @@ -142053,7 +141195,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -142076,12 +141218,12 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" sources."postcss-nested-6.0.0" - sources."postcss-selector-parser-6.0.10" + sources."postcss-selector-parser-6.0.11" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -142100,7 +141242,7 @@ in sources."arg-4.1.3" ]; }) - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" sources."xtend-4.0.2" @@ -142445,10 +141587,10 @@ in terser = nodeEnv.buildNodePackage { name = "terser"; packageName = "terser"; - version = "5.15.1"; + version = "5.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz"; - sha512 = "K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw=="; + url = "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz"; + sha512 = "xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -142476,32 +141618,32 @@ in textlint = nodeEnv.buildNodePackage { name = "textlint"; packageName = "textlint"; - version = "12.2.2"; + version = "12.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-12.2.2.tgz"; - sha512 = "+xORGVnAceaP3+77vGuALOtnNNtexh8VK9ssAK2r3vAr0iMApSMyvGaXousbsfLiwK5L/X0X/78yJDvXwGQPjA=="; + url = "https://registry.npmjs.org/textlint/-/textlint-12.2.4.tgz"; + sha512 = "IlBJL4bR9RuqYV+YkQQvOznhmfClGGkuOyxiUaQ4qUj2IaJu2/rXei71x3JAIJF4SLEK7SbMoLVqXIerqIbhGA=="; }; dependencies = [ sources."@azu/format-text-1.0.1" sources."@azu/style-format-1.0.0" sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/ast-tester-12.2.2" - sources."@textlint/ast-traverse-12.2.2" - sources."@textlint/feature-flag-12.2.2" - sources."@textlint/fixer-formatter-12.2.2" - sources."@textlint/kernel-12.2.2" - sources."@textlint/linter-formatter-12.2.2" - sources."@textlint/markdown-to-ast-12.2.2" - sources."@textlint/module-interop-12.2.2" - sources."@textlint/source-code-fixer-12.2.2" - sources."@textlint/text-to-ast-12.2.2" - sources."@textlint/textlint-plugin-markdown-12.2.2" - sources."@textlint/textlint-plugin-text-12.2.2" - sources."@textlint/types-12.2.2" - sources."@textlint/utils-12.2.2" + sources."@textlint/ast-tester-12.2.3" + sources."@textlint/ast-traverse-12.2.3" + sources."@textlint/feature-flag-12.2.3" + sources."@textlint/fixer-formatter-12.2.3" + sources."@textlint/kernel-12.2.3" + sources."@textlint/linter-formatter-12.2.4" + sources."@textlint/markdown-to-ast-12.2.3" + sources."@textlint/module-interop-12.2.3" + sources."@textlint/source-code-fixer-12.2.3" + sources."@textlint/text-to-ast-12.2.3" + sources."@textlint/textlint-plugin-markdown-12.2.3" + sources."@textlint/textlint-plugin-text-12.2.3" + sources."@textlint/types-12.2.3" + sources."@textlint/utils-12.2.3" sources."@types/mdast-3.0.10" sources."@types/unist-2.0.6" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-1.0.10" @@ -142575,6 +141717,7 @@ in sources."levn-0.4.1" sources."load-json-file-1.1.0" sources."locate-path-2.0.0" + sources."lodash-4.17.21" sources."lodash.truncate-4.4.2" sources."longest-streak-2.0.4" sources."markdown-table-2.0.0" @@ -142680,7 +141823,6 @@ in sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."write-1.0.3" - sources."xml-escape-1.1.0" sources."zwitch-1.0.5" ]; buildInputs = globalBuildInputs; @@ -142761,7 +141903,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.2" + sources."@textlint/types-12.2.3" sources."@types/hast-2.3.4" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" @@ -142885,7 +142027,7 @@ in sources."hastscript-6.0.0" sources."hosted-git-info-2.8.9" sources."http-cache-semantics-4.1.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" @@ -143204,49 +142346,49 @@ in sources."@azu/format-text-1.0.1" sources."@azu/style-format-1.0.0" sources."@textlint/ast-node-types-4.4.3" - (sources."@textlint/ast-tester-12.2.2" // { + (sources."@textlint/ast-tester-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; }) - (sources."@textlint/ast-traverse-12.2.2" // { + (sources."@textlint/ast-traverse-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; }) - sources."@textlint/feature-flag-12.2.2" - sources."@textlint/fixer-formatter-12.2.2" - (sources."@textlint/kernel-12.2.2" // { + sources."@textlint/feature-flag-12.2.3" + sources."@textlint/fixer-formatter-12.2.3" + (sources."@textlint/kernel-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; }) - sources."@textlint/linter-formatter-12.2.2" - (sources."@textlint/markdown-to-ast-12.2.2" // { + sources."@textlint/linter-formatter-12.2.4" + (sources."@textlint/markdown-to-ast-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" sources."unified-9.2.2" ]; }) - sources."@textlint/module-interop-12.2.2" - sources."@textlint/source-code-fixer-12.2.2" - (sources."@textlint/text-to-ast-12.2.2" // { + sources."@textlint/module-interop-12.2.3" + sources."@textlint/source-code-fixer-12.2.3" + (sources."@textlint/text-to-ast-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; }) - sources."@textlint/textlint-plugin-markdown-12.2.2" - sources."@textlint/textlint-plugin-text-12.2.2" - (sources."@textlint/types-12.2.2" // { + sources."@textlint/textlint-plugin-markdown-12.2.3" + sources."@textlint/textlint-plugin-text-12.2.3" + (sources."@textlint/types-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; }) - sources."@textlint/utils-12.2.2" + sources."@textlint/utils-12.2.3" sources."@types/mdast-3.0.10" sources."@types/structured-source-3.0.0" sources."@types/unist-2.0.6" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-1.0.10" @@ -143326,6 +142468,7 @@ in sources."levn-0.4.1" sources."load-json-file-1.1.0" sources."locate-path-2.0.0" + sources."lodash-4.17.21" sources."lodash.truncate-4.4.2" sources."longest-streak-2.0.4" sources."markdown-table-2.0.0" @@ -143425,12 +142568,12 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."table-6.8.1" sources."text-table-0.2.0" - (sources."textlint-12.2.2" // { + (sources."textlint-12.2.4" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; }) - sources."textlint-tester-12.2.2" + sources."textlint-tester-12.2.4" sources."textlint-util-to-string-3.1.1" sources."traverse-0.6.7" sources."trough-1.0.5" @@ -143452,7 +142595,6 @@ in sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."write-1.0.3" - sources."xml-escape-1.1.0" sources."xtend-4.0.2" sources."zwitch-1.0.5" ]; @@ -143534,7 +142676,7 @@ in }; dependencies = [ sources."@textlint/ast-node-types-4.4.3" - (sources."@textlint/types-12.2.2" // { + (sources."@textlint/types-12.2.3" // { dependencies = [ sources."@textlint/ast-node-types-12.2.2" ]; @@ -143604,7 +142746,7 @@ in }; dependencies = [ sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.2" + sources."@textlint/types-12.2.3" sources."@types/unist-2.0.6" sources."boundary-1.0.1" sources."lodash-4.17.21" @@ -143635,7 +142777,7 @@ in }; dependencies = [ sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.2" + sources."@textlint/types-12.2.3" sources."@types/unist-2.0.6" sources."boundary-1.0.1" sources."lodash-4.17.21" @@ -143665,7 +142807,7 @@ in sha512 = "F1kV06CdonOM2awtXjCSRYUsRJfDfZIujQQo4zEMqNqD6UwpkapxpZOiwcwbeaQz00+17ljbJEoGqIe2XeiU+w=="; }; dependencies = [ - sources."array-includes-3.1.5" + sources."array-includes-3.1.6" sources."call-bind-1.0.2" sources."define-properties-1.1.4" sources."es-abstract-1.20.4" @@ -143699,8 +142841,8 @@ in sources."regexp.prototype.flags-1.4.3" sources."safe-regex-test-1.0.0" sources."side-channel-1.0.4" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."unbox-primitive-1.0.2" sources."which-boxed-primitive-1.0.2" ]; @@ -143723,8 +142865,8 @@ in sha512 = "yvOJavJD+PgyUzvsoLDDzDtgCVBva/HNhEvsFnYVugrWz0qy2hr+/4B4wkzjro4wfPbwz20GQe5h13N4DeUEeA=="; }; dependencies = [ - sources."@babel/runtime-7.20.1" - sources."@babel/runtime-corejs3-7.20.1" + sources."@babel/runtime-7.20.6" + sources."@babel/runtime-corejs3-7.20.6" (sources."@eslint/eslintrc-1.3.3" // { dependencies = [ sources."debug-4.3.4" @@ -143743,7 +142885,7 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.2" + sources."@textlint/types-12.2.3" sources."@types/json5-0.0.29" sources."@types/unist-2.0.6" sources."acorn-8.8.1" @@ -143754,11 +142896,12 @@ in sources."ansi-styles-4.3.0" sources."argparse-2.0.1" sources."aria-query-4.2.2" - sources."array-includes-3.1.5" + sources."array-includes-3.1.6" sources."array.prototype.flat-1.3.1" sources."array.prototype.flatmap-1.3.1" + sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" - sources."axe-core-4.5.1" + sources."axe-core-4.5.2" sources."axobject-query-2.2.0" sources."balanced-match-1.0.2" sources."boundary-1.0.1" @@ -143770,7 +142913,7 @@ in sources."color-name-1.1.4" sources."commander-2.20.3" sources."concat-map-0.0.1" - sources."core-js-pure-3.26.0" + sources."core-js-pure-3.26.1" sources."cross-spawn-7.0.3" sources."damerau-levenshtein-1.0.8" sources."debug-2.6.9" @@ -143783,7 +142926,7 @@ in sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.27.0" // { + (sources."eslint-8.29.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" @@ -143804,7 +142947,7 @@ in }) sources."eslint-plugin-import-2.26.0" sources."eslint-plugin-jsx-a11y-6.6.1" - (sources."eslint-plugin-react-7.31.10" // { + (sources."eslint-plugin-react-7.31.11" // { dependencies = [ sources."resolve-2.0.0-next.4" ]; @@ -143825,7 +142968,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" @@ -143838,7 +142981,7 @@ in sources."get-symbol-description-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."grapheme-splitter-1.0.4" sources."has-1.0.3" sources."has-bigints-1.0.2" @@ -143846,7 +142989,7 @@ in sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -143868,7 +143011,7 @@ in sources."is-symbol-1.0.4" sources."is-weakref-1.0.2" sources."isexe-2.0.0" - sources."js-sdsl-4.1.5" + sources."js-sdsl-4.2.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" @@ -143876,7 +143019,7 @@ in sources."json5-1.0.1" sources."jsx-ast-utils-3.3.3" sources."language-subtag-registry-0.3.22" - sources."language-tags-1.0.5" + sources."language-tags-1.0.6" sources."levn-0.4.1" sources."locate-path-6.0.0" sources."lodash.merge-4.6.2" @@ -143909,7 +143052,7 @@ in sources."punycode-2.1.1" sources."queue-microtask-1.2.3" sources."react-is-16.13.1" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."regexp.prototype.flags-1.4.3" sources."regexpp-3.2.0" sources."resolve-1.22.1" @@ -143922,9 +143065,9 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."string.prototype.matchall-4.0.7" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.matchall-4.0.8" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."strip-ansi-6.0.1" sources."strip-bom-3.0.0" sources."strip-json-comments-3.1.1" @@ -143974,13 +143117,13 @@ in sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -144040,7 +143183,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -144169,7 +143312,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."ldap-filter-0.3.3" sources."ldapjs-2.3.1" sources."linkify-it-3.0.3" @@ -144192,7 +143335,7 @@ in sources."minimalistic-assert-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.0.0" @@ -144253,7 +143396,7 @@ in sources."read-chunk-3.2.0" sources."readable-stream-3.6.0" sources."readable-web-to-node-stream-3.0.2" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" (sources."request-2.88.2" // { @@ -144368,13 +143511,13 @@ in sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -144434,7 +143577,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -144563,7 +143706,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."ldap-filter-0.3.3" sources."ldapjs-2.3.1" sources."linkify-it-3.0.3" @@ -144586,7 +143729,7 @@ in sources."minimalistic-assert-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.0.0" @@ -144647,7 +143790,7 @@ in sources."read-chunk-3.2.0" sources."readable-stream-3.6.0" sources."readable-web-to-node-stream-3.0.2" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" (sources."request-2.88.2" // { @@ -144844,7 +143987,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -145069,7 +144212,7 @@ in sources."read-1.0.7" sources."read-chunk-3.2.0" sources."readable-stream-3.6.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" (sources."request-2.88.2" // { @@ -145110,7 +144253,7 @@ in sources."base64-arraybuffer-0.1.5" sources."debug-4.1.1" sources."ms-2.1.3" - (sources."socket.io-parser-3.3.2" // { + (sources."socket.io-parser-3.3.3" // { dependencies = [ sources."component-emitter-1.3.0" sources."debug-3.1.0" @@ -145119,7 +144262,7 @@ in }) ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."debug-4.1.1" sources."ms-2.1.3" @@ -145435,10 +144578,10 @@ in sources."@sindresorhus/is-3.1.2" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -145519,7 +144662,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -145653,7 +144796,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."ldap-filter-0.3.3" sources."ldapjs-2.1.1" sources."linkify-it-3.0.2" @@ -145768,7 +144911,7 @@ in sources."read-chunk-3.2.0" sources."readable-stream-3.6.0" sources."readable-web-to-node-stream-2.0.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" (sources."request-2.88.2" // { @@ -145805,7 +144948,7 @@ in sources."base64-arraybuffer-0.1.5" sources."debug-4.1.1" sources."ms-2.1.3" - (sources."socket.io-parser-3.3.2" // { + (sources."socket.io-parser-3.3.3" // { dependencies = [ sources."component-emitter-1.3.0" sources."debug-3.1.0" @@ -145814,7 +144957,7 @@ in }) ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."debug-4.1.1" sources."ms-2.1.3" @@ -145903,10 +145046,10 @@ in sources."@sindresorhus/is-3.1.2" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -145987,7 +145130,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -146121,7 +145264,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."ldap-filter-0.3.3" sources."ldapjs-2.1.1" sources."linkify-it-3.0.2" @@ -146236,7 +145379,7 @@ in sources."read-chunk-3.2.0" sources."readable-stream-3.6.0" sources."readable-web-to-node-stream-2.0.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" (sources."request-2.88.2" // { @@ -146273,7 +145416,7 @@ in sources."base64-arraybuffer-0.1.5" sources."debug-4.1.1" sources."ms-2.1.3" - (sources."socket.io-parser-3.3.2" // { + (sources."socket.io-parser-3.3.3" // { dependencies = [ sources."component-emitter-1.3.0" sources."debug-3.1.0" @@ -146282,7 +145425,7 @@ in }) ]; }) - (sources."socket.io-parser-3.4.1" // { + (sources."socket.io-parser-3.4.2" // { dependencies = [ sources."debug-4.1.1" sources."ms-2.1.3" @@ -146524,10 +145667,10 @@ in thelounge-theme-new-morning = nodeEnv.buildNodePackage { name = "thelounge-theme-new-morning"; packageName = "thelounge-theme-new-morning"; - version = "1.0.13"; + version = "1.0.16"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-new-morning/-/thelounge-theme-new-morning-1.0.13.tgz"; - sha512 = "FTkPBm8eorl6ie5oftn1lZiAYeWK7RZ3vdrKrXOL2XJTUcB8crlOSpWfYfB7LUP3um5oUClgeO5Ojv8qiyBaPw=="; + url = "https://registry.npmjs.org/thelounge-theme-new-morning/-/thelounge-theme-new-morning-1.0.16.tgz"; + sha512 = "YKQG+Y04msf0GyairuA0z0EUXKhtX0KsIVShLQ3tkaaVx4+AF1m551tPgC/wZk8LyMacJXOow5EBNNWFgkKWxQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -146542,10 +145685,10 @@ in thelounge-theme-new-morning-compact = nodeEnv.buildNodePackage { name = "thelounge-theme-new-morning-compact"; packageName = "thelounge-theme-new-morning-compact"; - version = "1.0.6"; + version = "1.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-new-morning-compact/-/thelounge-theme-new-morning-compact-1.0.6.tgz"; - sha512 = "Eu9Uw1fopBbIts7JahXXwmlTvg8Ax7+Y/6Jz5NTeg3nLG/S/8/GfJ7QDRSWLvtWrRm0LaZkeeXSQqaUhWWacWQ=="; + url = "https://registry.npmjs.org/thelounge-theme-new-morning-compact/-/thelounge-theme-new-morning-compact-1.0.10.tgz"; + sha512 = "5/p3szC7eXwq7x7wPlDgtlLdJ3i7WRYwgxNj5YJVLQCu+3uPVmkd1nRgc8TfTAO2jKSDeODHVkQgnISlNsXVcQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -146758,10 +145901,10 @@ in three = nodeEnv.buildNodePackage { name = "three"; packageName = "three"; - version = "0.146.0"; + version = "0.147.0"; src = fetchurl { - url = "https://registry.npmjs.org/three/-/three-0.146.0.tgz"; - sha512 = "1lvNfLezN6OJ9NaFAhfX4sm5e9YCzHtaRgZ1+B4C+Hv6TibRMsuBAM5/wVKzxjpYIlMymvgsHEFrrigEfXnb2A=="; + url = "https://registry.npmjs.org/three/-/three-0.147.0.tgz"; + sha512 = "LPTOslYQXFkmvceQjFTNnVVli2LaVF6C99Pv34fJypp8NbQLbTlu3KinZ0zURghS5zEehK+VQyvWuPZ/Sm8fzw=="; }; buildInputs = globalBuildInputs; meta = { @@ -146802,10 +145945,10 @@ in dependencies = [ sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" - sources."@types/cacheable-request-6.0.2" + sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" - sources."@types/keyv-4.2.0" - sources."@types/node-18.11.9" + sources."@types/keyv-3.1.4" + sources."@types/node-18.11.10" sources."@types/responselike-1.0.0" sources."@xmldom/xmldom-0.8.6" sources."ajv-6.12.6" @@ -146877,7 +146020,7 @@ in sources."jsonfile-6.1.0" sources."jsprim-1.4.2" sources."keypress-0.2.1" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."lowercase-keys-2.0.0" sources."lru-cache-6.0.0" sources."mime-db-1.52.0" @@ -147183,7 +146326,7 @@ in sources."supports-color-2.0.0" sources."temp-0.8.4" sources."tslib-1.14.1" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."wordwrap-0.0.3" sources."wrappy-1.0.2" ]; @@ -147210,30 +146353,30 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.14" - sources."@swc/core-darwin-arm64-1.3.14" - sources."@swc/core-darwin-x64-1.3.14" - sources."@swc/core-linux-arm-gnueabihf-1.3.14" - sources."@swc/core-linux-arm64-gnu-1.3.14" - sources."@swc/core-linux-arm64-musl-1.3.14" - sources."@swc/core-linux-x64-gnu-1.3.14" - sources."@swc/core-linux-x64-musl-1.3.14" - sources."@swc/core-win32-arm64-msvc-1.3.14" - sources."@swc/core-win32-ia32-msvc-1.3.14" - sources."@swc/core-win32-x64-msvc-1.3.14" - sources."@swc/wasm-1.3.14" + sources."@swc/core-1.3.21" + sources."@swc/core-darwin-arm64-1.3.21" + sources."@swc/core-darwin-x64-1.3.21" + sources."@swc/core-linux-arm-gnueabihf-1.3.21" + sources."@swc/core-linux-arm64-gnu-1.3.21" + sources."@swc/core-linux-arm64-musl-1.3.21" + sources."@swc/core-linux-x64-gnu-1.3.21" + sources."@swc/core-linux-x64-musl-1.3.21" + sources."@swc/core-win32-arm64-msvc-1.3.21" + sources."@swc/core-win32-ia32-msvc-1.3.21" + sources."@swc/core-win32-x64-msvc-1.3.21" + sources."@swc/wasm-1.3.21" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."arg-4.1.3" sources."create-require-1.1.1" sources."diff-4.0.2" sources."make-error-1.3.6" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."v8-compile-cache-lib-3.0.1" sources."yn-3.1.1" ]; @@ -147271,10 +146414,10 @@ in typescript = nodeEnv.buildNodePackage { name = "typescript"; packageName = "typescript"; - version = "4.8.4"; + version = "4.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz"; - sha512 = "QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="; + url = "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz"; + sha512 = "CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA=="; }; buildInputs = globalBuildInputs; meta = { @@ -147387,7 +146530,7 @@ in dependencies = [ sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" - sources."@pnpm/network.ca-file-1.0.1" + sources."@pnpm/network.ca-file-1.0.2" sources."@pnpm/npm-conf-1.0.5" sources."@primer/octicons-17.8.0" sources."@sindresorhus/is-5.3.0" @@ -147396,7 +146539,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" sources."@types/http-cache-semantics-4.0.1" - sources."@types/node-16.18.3" + sources."@types/node-16.18.4" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -147454,7 +146597,7 @@ in sources."builtin-status-codes-3.0.0" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.2" + sources."cacheable-request-10.2.3" sources."cached-path-relative-1.1.0" sources."call-bind-1.0.2" sources."cipher-base-1.0.4" @@ -147527,7 +146670,7 @@ in sources."emoji-regex-8.0.0" sources."enabled-2.0.0" sources."encodeurl-1.0.2" - (sources."engine.io-6.2.0" // { + (sources."engine.io-6.2.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -147556,7 +146699,7 @@ in sources."finalhandler-1.2.0" sources."fn.name-1.1.0" sources."for-each-0.3.3" - sources."form-data-encoder-2.1.3" + sources."form-data-encoder-2.1.4" sources."forwarded-0.2.0" sources."fresh-0.5.2" sources."fs.realpath-1.0.0" @@ -147568,7 +146711,7 @@ in sources."getmac-5.20.0" sources."glob-7.2.3" sources."gopd-1.0.1" - sources."got-12.5.2" + sources."got-12.5.3" sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-symbols-1.0.3" @@ -147589,11 +146732,11 @@ in sources."htmlescape-1.1.1" sources."http-cache-semantics-4.1.0" sources."http-errors-2.0.0" - sources."http2-wrapper-2.1.11" + sources."http2-wrapper-2.2.0" sources."https-browserify-1.0.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" @@ -147618,7 +146761,7 @@ in sources."json-buffer-3.0.1" sources."jsonparse-1.3.1" sources."just-detect-adblock-1.1.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."knockout-3.5.1" sources."kuler-2.0.0" sources."labeled-stream-splicer-2.0.2" @@ -147665,7 +146808,7 @@ in sources."node-gyp-build-4.5.0" sources."node-watch-0.7.3" sources."nopt-1.0.10" - sources."normalize-url-7.2.0" + sources."normalize-url-8.0.0" sources."nprogress-0.2.0" sources."object-assign-4.1.1" sources."object-inspect-1.12.2" @@ -147757,7 +146900,7 @@ in ]; }) sources."snapsvg-0.5.1" - (sources."socket.io-4.5.3" // { + (sources."socket.io-4.5.4" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -147877,24 +147020,23 @@ in sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@npmcli/config-4.2.2" - sources."@npmcli/map-workspaces-2.0.4" + sources."@npmcli/config-6.1.0" + sources."@npmcli/map-workspaces-3.0.0" sources."@npmcli/name-from-folder-1.0.1" sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.7" sources."@types/is-empty-1.2.1" sources."@types/ms-0.7.31" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" - sources."abbrev-1.1.1" + sources."abbrev-2.0.0" sources."ansi-regex-6.0.1" sources."ansi-styles-3.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."buffer-from-1.1.2" sources."chalk-2.4.2" - sources."chownr-2.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."concat-stream-2.0.0" @@ -147909,9 +147051,8 @@ in sources."fs.realpath-1.0.0" sources."glob-8.0.3" sources."has-flag-3.0.0" - sources."ignore-5.2.0" - sources."import-meta-resolve-2.1.0" - sources."infer-owner-1.0.4" + sources."ignore-5.2.1" + sources."import-meta-resolve-2.2.0" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-3.0.1" @@ -147920,24 +147061,26 @@ in sources."is-empty-1.2.0" sources."is-plain-obj-4.1.0" sources."js-tokens-4.0.0" - sources."json-parse-even-better-errors-2.3.1" + sources."json-parse-even-better-errors-3.0.0" sources."lines-and-columns-2.0.3" - sources."load-plugin-5.0.0" + sources."load-plugin-5.1.0" sources."locate-path-7.1.1" sources."lru-cache-6.0.0" - sources."minimatch-5.1.0" - sources."mkdirp-1.0.4" - sources."mkdirp-infer-owner-2.0.0" + sources."minimatch-5.1.1" sources."ms-2.1.2" - sources."nopt-6.0.0" - sources."npm-normalize-package-bin-1.0.1" + sources."nopt-7.0.0" + sources."npm-normalize-package-bin-3.0.0" sources."once-1.4.0" sources."p-limit-4.0.0" sources."p-locate-6.0.0" - sources."parse-json-6.0.2" + (sources."parse-json-6.0.2" // { + dependencies = [ + sources."json-parse-even-better-errors-2.3.1" + ]; + }) sources."path-exists-5.0.0" - sources."proc-log-2.0.1" - sources."read-package-json-fast-2.0.3" + sources."proc-log-3.0.0" + sources."read-package-json-fast-3.0.1" sources."readable-stream-3.6.0" sources."safe-buffer-5.2.1" sources."semver-7.3.8" @@ -147948,12 +147091,12 @@ in sources."to-vfile-7.2.3" sources."trough-2.1.0" sources."typedarray-0.0.6" - sources."unified-engine-10.0.1" + sources."unified-engine-10.1.0" sources."unist-util-inspect-7.0.1" sources."unist-util-stringify-position-3.0.2" sources."util-deprecate-1.0.2" - sources."vfile-5.3.5" - sources."vfile-message-3.1.2" + sources."vfile-5.3.6" + sources."vfile-message-3.1.3" (sources."vfile-reporter-7.0.4" // { dependencies = [ sources."supports-color-9.2.3" @@ -148010,7 +147153,7 @@ in sources."commander-7.2.0" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" - sources."d3-array-3.2.0" + sources."d3-array-3.2.1" sources."d3-color-3.1.0" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" @@ -148025,7 +147168,7 @@ in sources."d3-quadtree-3.0.1" sources."d3-scale-4.0.2" sources."d3-shape-3.1.0" - sources."d3-time-3.0.0" + sources."d3-time-3.1.0" sources."d3-time-format-4.1.0" sources."d3-timer-3.0.1" sources."debug-4.3.4" @@ -148056,7 +147199,7 @@ in }) sources."mimic-response-2.1.0" sources."minimatch-3.1.2" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.2" @@ -148162,7 +147305,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."commander-7.2.0" - sources."d3-array-3.2.0" + sources."d3-array-3.2.1" sources."d3-color-3.1.0" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" @@ -148177,7 +147320,7 @@ in sources."d3-quadtree-3.0.1" sources."d3-scale-4.0.2" sources."d3-shape-3.1.0" - sources."d3-time-3.0.0" + sources."d3-time-3.1.0" sources."d3-time-format-4.1.0" sources."d3-timer-3.0.1" sources."delaunator-5.0.0" @@ -148259,10 +147402,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "28.4.14"; + version = "28.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-28.4.14.tgz"; - sha512 = "Jjtz6RAPhAHGKSnN+vUSlxOqfMESeex7XW9tKZwMlapSy/lI/fIzPJCWq/oNdDTU/0GEs0p/c7FASavR0XqsRQ=="; + url = "https://registry.npmjs.org/vercel/-/vercel-28.7.2.tgz"; + sha512 = "ak5T5N84se8uA59RoodTBxTnRZ8hml717fjEyKDdnQAaweejZyYcruv8nE/Qny+51gAshDnBtP1cdtN4U/eq3Q=="; }; dependencies = [ sources."@edge-runtime/format-1.1.0" @@ -148280,26 +147423,26 @@ in sources."@szmarczak/http-timer-1.1.2" sources."@ts-morph/common-0.11.1" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" - sources."@vercel/build-utils-5.5.7" - sources."@vercel/go-2.2.15" - sources."@vercel/hydrogen-0.0.28" - sources."@vercel/next-3.2.8" + sources."@types/node-14.18.33" + sources."@vercel/build-utils-5.7.0" + sources."@vercel/go-2.2.19" + sources."@vercel/hydrogen-0.0.33" + sources."@vercel/next-3.3.2" sources."@vercel/nft-0.22.1" - sources."@vercel/node-2.6.1" - sources."@vercel/node-bridge-3.1.1" - sources."@vercel/python-3.1.24" - sources."@vercel/redwood-1.0.33" - sources."@vercel/remix-1.0.34" - (sources."@vercel/routing-utils-2.1.1" // { + sources."@vercel/node-2.7.1" + sources."@vercel/node-bridge-3.1.2" + sources."@vercel/python-3.1.29" + sources."@vercel/redwood-1.0.39" + sources."@vercel/remix-1.1.1" + (sources."@vercel/routing-utils-2.1.3" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" ]; }) - sources."@vercel/ruby-1.3.41" - sources."@vercel/static-build-1.0.34" - sources."@vercel/static-config-2.0.5" + sources."@vercel/ruby-1.3.45" + sources."@vercel/static-build-1.0.42" + sources."@vercel/static-config-2.0.6" sources."abbrev-1.1.1" sources."acorn-8.8.1" sources."agent-base-6.0.2" @@ -148378,7 +147521,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-uri-to-path-1.0.0" sources."fill-range-7.0.1" sources."fs-minipass-2.1.0" @@ -148387,7 +147530,7 @@ in sources."get-stream-4.1.0" sources."glob-7.2.3" sources."glob-parent-5.1.2" - sources."global-dirs-3.0.0" + sources."global-dirs-3.0.1" sources."got-9.6.0" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" @@ -148427,7 +147570,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."mri-1.2.0" @@ -148538,10 +147681,10 @@ in vim-language-server = nodeEnv.buildNodePackage { name = "vim-language-server"; packageName = "vim-language-server"; - version = "2.2.10"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.10.tgz"; - sha512 = "Z98jMgnyPCUKVqLZZhsypCLehpE+FbQZjv20IT+TTeAYDqqX0wGRcvkUsDgcw2x2xc2xKdN1Rgp71WGzydGINg=="; + url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.3.0.tgz"; + sha512 = "8RdW7F4rQDR9FNZqgFRFFsoMdiI9YlszCCPeaU3pPkPJI4Hyx4pXCk6BGy7Fi0ACM7p4RID64dd064snCBZQrw=="; }; buildInputs = globalBuildInputs; meta = { @@ -148651,7 +147794,7 @@ in sources."get-intrinsic-1.1.3" sources."glob-7.2.3" sources."glob-parent-5.1.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-symbols-1.0.3" @@ -148690,7 +147833,7 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" - sources."prettier-2.7.1" + sources."prettier-2.8.0" sources."progress-2.0.3" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" @@ -148718,7 +147861,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."table-6.8.1" // { dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."json-schema-traverse-1.0.0" ]; }) @@ -148734,7 +147877,7 @@ in sources."tsutils-2.29.0" sources."type-check-0.4.0" sources."type-fest-0.20.2" - sources."typescript-4.8.4" + sources."typescript-4.9.3" sources."uri-js-4.4.1" sources."v8-compile-cache-2.3.0" (sources."vue-eslint-parser-7.11.0" // { @@ -148929,18 +148072,19 @@ in sha512 = "r8+ZWDHRAnUPQMyZQa2eZzZyYE8wGia3SCL9ZtVjl6S2MLA5l6NVg3z8Atz4nDQ9JPih858bj0vnthGsjhNLjg=="; }; dependencies = [ - sources."core-js-3.26.0" + sources."@vscode/l10n-0.0.10" + sources."core-js-3.26.1" sources."jsonc-parser-3.2.0" sources."picomatch-2.3.1" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."request-light-0.5.8" - sources."typescript-4.8.4" - sources."vscode-css-languageservice-6.1.1" - sources."vscode-html-languageservice-5.0.2" - sources."vscode-json-languageservice-5.1.1" - sources."vscode-jsonrpc-8.1.0-next.1" - sources."vscode-languageserver-8.1.0-next.1" - sources."vscode-languageserver-protocol-3.17.3-next.1" + sources."typescript-4.9.3" + sources."vscode-css-languageservice-6.2.1" + sources."vscode-html-languageservice-5.0.3" + sources."vscode-json-languageservice-5.1.3" + sources."vscode-jsonrpc-8.1.0-next.3" + sources."vscode-languageserver-8.1.0-next.2" + sources."vscode-languageserver-protocol-3.17.3-next.2" sources."vscode-languageserver-textdocument-1.0.7" sources."vscode-languageserver-types-3.17.2" sources."vscode-markdown-languageservice-0.2.0" @@ -149264,7 +148408,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-18.11.9" + sources."@types/node-18.11.10" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -149290,7 +148434,7 @@ in sources."ansi-escapes-3.2.0" sources."ansi-regex-3.0.1" sources."ansi-styles-3.2.1" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."argparse-1.0.10" sources."arr-diff-4.0.0" sources."arr-flatten-1.1.0" @@ -149438,7 +148582,7 @@ in sources."map-obj-1.0.1" ]; }) - sources."decode-uri-component-0.2.0" + sources."decode-uri-component-0.2.2" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" @@ -149663,7 +148807,7 @@ in dependencies = [ sources."brace-expansion-2.0.1" sources."glob-8.0.3" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."js-tokens-4.0.0" @@ -149688,7 +148832,7 @@ in sources."lodash.iteratee-4.7.0" sources."lodash.merge-4.6.2" sources."lodash.unescape-4.0.1" - sources."loglevel-1.8.0" + sources."loglevel-1.8.1" (sources."loglevel-colored-level-prefix-1.0.0" // { dependencies = [ sources."ansi-regex-2.1.1" @@ -150027,7 +149171,7 @@ in sources."debug-4.3.4" sources."glob-8.0.3" sources."js-yaml-4.1.0" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" sources."ms-2.1.2" sources."source-map-0.7.4" (sources."stylus-0.59.0" // { @@ -150136,7 +149280,7 @@ in sources."vfile-message-2.0.4" ]; }) - sources."vfile-message-3.1.2" + sources."vfile-message-3.1.3" (sources."vfile-reporter-6.0.2" // { dependencies = [ sources."ansi-regex-5.0.1" @@ -150220,7 +149364,7 @@ in sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg=="; }; dependencies = [ - sources."@babel/runtime-corejs3-7.20.1" + sources."@babel/runtime-corejs3-7.20.6" sources."@mapbox/node-pre-gyp-1.0.10" sources."@tootallnate/once-1.1.2" sources."@types/raf-3.4.0" @@ -150256,7 +149400,7 @@ in sources."combined-stream-1.0.8" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" - sources."core-js-pure-3.26.0" + sources."core-js-pure-3.26.1" sources."cssom-0.4.4" (sources."cssstyle-2.3.0" // { dependencies = [ @@ -150271,7 +149415,7 @@ in ]; }) sources."debug-4.3.4" - sources."decimal.js-10.4.2" + sources."decimal.js-10.4.3" sources."decompress-response-4.2.1" sources."deep-is-0.1.4" sources."delayed-stream-1.0.0" @@ -150329,7 +149473,7 @@ in sources."mime-types-2.1.35" sources."mimic-response-2.1.0" sources."minimatch-3.1.2" - sources."minipass-3.3.5" + sources."minipass-3.3.6" sources."minizlib-2.1.2" sources."mkdirp-1.0.4" sources."ms-2.1.2" @@ -150352,7 +149496,7 @@ in sources."querystringify-2.2.0" sources."raf-3.4.1" sources."readable-stream-3.6.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."require-directory-2.1.1" sources."requires-port-1.0.0" sources."rgbcolor-1.0.1" @@ -150423,10 +149567,10 @@ in web-ext = nodeEnv.buildNodePackage { name = "web-ext"; packageName = "web-ext"; - version = "7.3.1"; + version = "7.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/web-ext/-/web-ext-7.3.1.tgz"; - sha512 = "ZTfktd1zcQpWaFAM3U+IQW674G89d1IW/Oh0Ncw9LwFvKvAcW/nA5EB4pwqB8LiW/6OSYQhHBP4x2XUTBu1SKg=="; + url = "https://registry.npmjs.org/web-ext/-/web-ext-7.4.0.tgz"; + sha512 = "dT2HJaGNXxRNuOtzaVBtEULccL0kM2SN1ark1NnN/ZSlbucobBxCDj6119iki72YyuXpaXZCJGqfZtVf1Znocg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -150442,7 +149586,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/runtime-7.19.4" + sources."@babel/runtime-7.20.1" sources."@devicefarmer/adbkit-3.2.3" sources."@devicefarmer/adbkit-logcat-2.1.2" sources."@devicefarmer/adbkit-monkey-1.2.1" @@ -150453,34 +149597,34 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@humanwhocodes/config-array-0.10.7" + sources."@humanwhocodes/config-array-0.11.7" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" - sources."@mdn/browser-compat-data-5.2.6" + sources."@mdn/browser-compat-data-5.2.17" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@pnpm/network.ca-file-1.0.1" + sources."@pnpm/network.ca-file-1.0.2" sources."@pnpm/npm-conf-1.0.5" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-3.0.5" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/yauzl-2.10.0" sources."abort-controller-3.0.0" sources."accepts-1.3.8" sources."acorn-8.8.1" sources."acorn-jsx-5.3.2" - sources."addons-linter-5.18.0" - sources."addons-moz-compare-1.2.0" + sources."addons-linter-5.23.0" + sources."addons-moz-compare-1.3.0" (sources."addons-scanner-utils-8.1.0" // { dependencies = [ sources."node-fetch-2.6.7" ]; }) sources."adm-zip-0.5.9" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-merge-patch-5.0.1" (sources."ansi-align-3.0.1" // { dependencies = [ @@ -150493,7 +149637,7 @@ in sources."argparse-2.0.1" sources."array-differ-4.0.0" sources."array-flatten-1.1.1" - sources."array-union-2.1.0" + sources."array-union-3.0.1" sources."asn1-0.2.6" sources."assert-plus-1.0.0" sources."async-3.2.4" @@ -150520,7 +149664,6 @@ in ]; }) sources."brace-expansion-1.1.11" - sources."braces-3.0.2" sources."buffer-6.0.3" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -150532,7 +149675,7 @@ in sources."bunyan-1.8.15" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" - (sources."cacheable-request-10.2.2" // { + (sources."cacheable-request-10.2.3" // { dependencies = [ sources."get-stream-6.0.1" ]; @@ -150545,7 +149688,7 @@ in sources."cheerio-1.0.0-rc.12" sources."cheerio-select-2.1.0" sources."chrome-launcher-0.15.1" - sources."ci-info-3.5.0" + sources."ci-info-3.7.0" sources."cli-boxes-3.0.0" (sources."cliui-8.0.1" // { dependencies = [ @@ -150607,7 +149750,6 @@ in sources."delayed-stream-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."dir-glob-3.0.1" sources."doctrine-3.0.0" sources."dom-serializer-2.0.0" sources."domelementtype-2.3.0" @@ -150635,7 +149777,7 @@ in sources."escape-goat-4.0.0" sources."escape-html-1.0.3" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.25.0" // { + (sources."eslint-8.28.0" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -150650,7 +149792,7 @@ in ]; }) sources."eslint-visitor-keys-3.3.0" - sources."espree-9.4.0" + sources."espree-9.4.1" sources."esprima-4.0.1" sources."esquery-1.4.0" sources."esrecurse-4.3.0" @@ -150669,11 +149811,6 @@ in sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - (sources."fast-glob-3.2.12" // { - dependencies = [ - sources."glob-parent-5.1.2" - ]; - }) (sources."fast-json-patch-2.2.1" // { dependencies = [ sources."fast-deep-equal-2.0.1" @@ -150682,11 +149819,10 @@ in sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fast-redact-3.1.2" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fd-slicer-1.1.0" sources."fetch-blob-3.2.0" sources."file-entry-cache-6.0.1" - sources."fill-range-7.0.1" (sources."finalhandler-1.2.0" // { dependencies = [ sources."debug-2.6.9" @@ -150705,7 +149841,7 @@ in sources."fluent-syntax-0.13.0" sources."forever-agent-0.6.1" sources."form-data-2.3.3" - sources."form-data-encoder-2.1.3" + sources."form-data-encoder-2.1.4" sources."formdata-polyfill-4.0.10" sources."forwarded-0.2.0" sources."fresh-0.5.2" @@ -150730,15 +149866,14 @@ in (sources."glob-8.0.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."glob-parent-6.0.2" sources."glob-to-regexp-0.4.1" - sources."global-dirs-3.0.0" - sources."globals-13.17.0" - sources."globby-11.1.0" - (sources."got-12.5.2" // { + sources."global-dirs-3.0.1" + sources."globals-13.18.0" + (sources."got-12.5.3" // { dependencies = [ sources."get-stream-6.0.1" ]; @@ -150762,11 +149897,11 @@ in sources."http-cache-semantics-4.1.0" sources."http-errors-2.0.0" sources."http-signature-1.2.0" - sources."http2-wrapper-2.1.11" + sources."http2-wrapper-2.2.0" sources."human-signals-1.1.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."image-size-1.0.2" sources."immediate-3.0.6" sources."import-fresh-3.3.0" @@ -150787,7 +149922,6 @@ in sources."is-installed-globally-0.4.0" sources."is-mergeable-object-1.1.1" sources."is-npm-6.0.0" - sources."is-number-7.0.0" sources."is-obj-2.0.0" sources."is-path-inside-3.0.3" sources."is-relative-0.1.3" @@ -150795,13 +149929,13 @@ in sources."is-typedarray-1.0.0" sources."is-utf8-0.2.1" sources."is-wsl-2.2.0" - sources."is-yarn-global-0.4.0" + sources."is-yarn-global-0.4.1" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isstream-0.1.2" sources."jed-1.1.1" - sources."jose-4.10.0" - sources."js-sdsl-4.1.5" + sources."jose-4.11.1" + sources."js-sdsl-4.2.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."jsbn-0.1.1" @@ -150831,7 +149965,7 @@ in }) sources."jwa-1.4.1" sources."jws-3.2.2" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."latest-version-7.0.0" sources."lcid-3.1.1" sources."levn-0.4.1" @@ -150861,9 +149995,7 @@ in sources."mem-5.1.1" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" - sources."merge2-1.4.1" sources."methods-1.1.2" - sources."micromatch-4.0.5" sources."mime-1.6.0" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -150874,11 +150006,7 @@ in sources."mkdirp-1.0.4" sources."moment-2.29.4" sources."ms-2.1.2" - (sources."multimatch-6.0.0" // { - dependencies = [ - sources."array-union-3.0.1" - ]; - }) + sources."multimatch-6.0.0" (sources."mv-2.1.1" // { dependencies = [ sources."glob-6.0.4" @@ -150893,11 +150021,11 @@ in sources."ncp-2.0.0" sources."negotiator-0.6.3" sources."node-domexception-1.0.0" - sources."node-fetch-3.2.10" + sources."node-fetch-3.3.0" sources."node-forge-1.3.1" sources."node-gyp-build-4.5.0" sources."node-notifier-10.0.1" - sources."normalize-url-7.2.0" + sources."normalize-url-8.0.0" sources."npm-run-path-4.0.1" sources."nth-check-2.1.1" sources."oauth-sign-0.9.0" @@ -150920,22 +150048,20 @@ in sources."pako-1.0.11" sources."parent-module-1.0.1" sources."parse-json-6.0.2" - sources."parse5-7.1.1" + sources."parse5-7.1.2" sources."parse5-htmlparser2-tree-adapter-7.0.0" sources."parseurl-1.3.3" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-to-regexp-0.1.7" - sources."path-type-4.0.0" sources."pend-1.2.0" sources."performance-now-2.1.0" sources."picocolors-1.0.0" - sources."picomatch-2.3.1" - sources."pino-8.6.1" + sources."pino-8.7.0" sources."pino-abstract-transport-1.0.0" sources."pino-std-serializers-6.0.0" - sources."postcss-8.4.18" + sources."postcss-8.4.19" sources."prelude-ls-1.2.1" sources."process-0.11.10" sources."process-nextick-args-2.0.1" @@ -150962,7 +150088,7 @@ in }) sources."readable-stream-4.2.0" sources."real-require-0.2.0" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."regexpp-3.2.0" sources."registry-auth-token-5.0.1" sources."registry-url-6.0.1" @@ -151025,7 +150151,6 @@ in sources."side-channel-1.0.4" sources."sign-addon-5.1.0" sources."signal-exit-3.0.7" - sources."slash-3.0.0" sources."sonic-boom-3.2.0" sources."source-map-0.6.1" sources."source-map-js-1.0.2" @@ -151062,7 +150187,6 @@ in sources."thread-stream-2.2.0" sources."through-2.3.8" sources."tmp-0.2.1" - sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."tosource-1.0.0" sources."tough-cookie-2.5.0" @@ -151114,13 +150238,13 @@ in }) sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" - sources."ws-8.9.0" + sources."ws-8.11.0" sources."xdg-basedir-5.1.0" sources."xml2js-0.4.23" sources."xmlbuilder-11.0.1" sources."y18n-5.0.8" sources."yallist-4.0.0" - (sources."yargs-17.6.0" // { + (sources."yargs-17.6.2" // { dependencies = [ sources."string-width-4.2.3" ]; @@ -151143,10 +150267,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.74.0"; + version = "5.75.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz"; - sha512 = "A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz"; + sha512 = "piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -151159,7 +150283,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -151183,11 +150307,11 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."electron-to-chromium-1.4.284" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" sources."eslint-scope-5.1.1" @@ -151222,12 +150346,12 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.15.1" + sources."terser-5.16.1" sources."terser-webpack-plugin-5.3.6" sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.74.0" + sources."webpack-5.75.0" sources."webpack-sources-3.2.3" ]; buildInputs = globalBuildInputs; @@ -151243,10 +150367,10 @@ in webpack-cli = nodeEnv.buildNodePackage { name = "webpack-cli"; packageName = "webpack-cli"; - version = "4.10.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz"; - sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w=="; + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.0.0.tgz"; + sha512 = "AACDTo20yG+xn6HPW5xjbn2Be4KUzQPebWXsDMHwPPyKh9OnTOJgZN2Nc+g/FZKV3ObRTYsGvibAvc+5jAUrVA=="; }; dependencies = [ sources."@discoveryjs/json-ext-0.5.7" @@ -151260,7 +150384,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -151276,9 +150400,9 @@ in sources."@webassemblyjs/wasm-opt-1.11.1" sources."@webassemblyjs/wasm-parser-1.11.1" sources."@webassemblyjs/wast-printer-1.11.1" - sources."@webpack-cli/configtest-1.2.0" - sources."@webpack-cli/info-1.5.0" - sources."@webpack-cli/serve-1.7.0" + sources."@webpack-cli/configtest-2.0.0" + sources."@webpack-cli/info-2.0.0" + sources."@webpack-cli/serve-2.0.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.8.1" @@ -151287,14 +150411,14 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.19" - sources."commander-7.2.0" + sources."commander-9.4.1" sources."cross-spawn-7.0.3" sources."electron-to-chromium-1.4.284" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."envinfo-7.8.1" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -151316,7 +150440,7 @@ in sources."has-1.0.3" sources."has-flag-4.0.0" sources."import-local-3.1.0" - sources."interpret-2.2.0" + sources."interpret-3.1.1" sources."is-core-module-2.11.0" sources."is-plain-object-2.0.4" sources."isexe-2.0.0" @@ -151342,7 +150466,7 @@ in sources."pkg-dir-4.2.0" sources."punycode-2.1.1" sources."randombytes-2.1.0" - sources."rechoir-0.7.1" + sources."rechoir-0.8.0" sources."resolve-1.22.1" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" @@ -151357,7 +150481,7 @@ in sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" - (sources."terser-5.15.1" // { + (sources."terser-5.16.1" // { dependencies = [ sources."commander-2.20.3" ]; @@ -151366,8 +150490,8 @@ in sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.74.0" - sources."webpack-cli-4.10.0" + sources."webpack-5.75.0" + sources."webpack-cli-5.0.0" sources."webpack-merge-5.8.0" sources."webpack-sources-3.2.3" sources."which-2.0.2" @@ -151411,7 +150535,7 @@ in sources."@types/http-proxy-1.17.9" sources."@types/json-schema-7.0.11" sources."@types/mime-3.0.1" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.0" @@ -151439,11 +150563,11 @@ in sources."accepts-1.3.8" sources."acorn-8.8.1" sources."acorn-import-assertions-1.8.0" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-formats-2.1.1" sources."ajv-keywords-5.1.0" sources."ansi-html-community-0.0.8" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."array-flatten-2.1.2" sources."balanced-match-1.0.2" sources."batch-0.6.1" @@ -151461,7 +150585,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.19" @@ -151491,7 +150615,7 @@ in sources."ee-first-1.1.1" sources."electron-to-chromium-1.4.284" sources."encodeurl-1.0.2" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -151565,7 +150689,7 @@ in sources."json-schema-traverse-1.0.0" sources."loader-runner-4.3.0" sources."media-typer-0.3.0" - sources."memfs-3.4.10" + sources."memfs-3.4.12" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" sources."methods-1.1.2" @@ -151666,7 +150790,7 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.15.1" + sources."terser-5.16.1" (sources."terser-webpack-plugin-5.3.6" // { dependencies = [ sources."ajv-6.12.6" @@ -151689,7 +150813,7 @@ in sources."vary-1.1.2" sources."watchpack-2.4.0" sources."wbuf-1.7.3" - (sources."webpack-5.74.0" // { + (sources."webpack-5.75.0" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -151737,7 +150861,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -151757,18 +150881,18 @@ in sources."@xtuc/long-4.2.2" sources."acorn-8.8.1" sources."acorn-import-assertions-1.8.0" - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."ajv-formats-2.1.1" sources."ajv-keywords-5.1.0" sources."braces-3.0.2" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001431" + sources."caniuse-lite-1.0.30001436" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" sources."electron-to-chromium-1.4.284" - sources."enhanced-resolve-5.10.0" + sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" sources."eslint-scope-5.1.1" @@ -151786,14 +150910,14 @@ in ]; }) sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fill-range-7.0.1" sources."glob-parent-6.0.2" sources."glob-to-regexp-0.4.1" sources."globby-13.1.2" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -151826,7 +150950,7 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.15.1" + sources."terser-5.16.1" (sources."terser-webpack-plugin-5.3.6" // { dependencies = [ sources."ajv-6.12.6" @@ -151839,7 +150963,7 @@ in sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - (sources."webpack-5.74.0" // { + (sources."webpack-5.75.0" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -151880,7 +151004,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -151893,7 +151017,7 @@ in sources."bep53-range-1.1.1" sources."binary-search-1.3.6" sources."bitfield-4.1.0" - (sources."bittorrent-dht-10.0.6" // { + (sources."bittorrent-dht-10.0.7" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -151905,11 +151029,12 @@ in sources."ms-2.1.2" ]; }) - sources."bittorrent-peerid-1.3.4" + sources."bittorrent-peerid-1.3.5" (sources."bittorrent-protocol-3.5.5" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" + sources."readable-stream-3.6.0" ]; }) (sources."bittorrent-tracker-9.19.0" // { @@ -151922,9 +151047,18 @@ in sources."simple-get-4.0.1" ]; }) - sources."bl-4.1.0" + (sources."bl-4.1.0" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."blob-to-buffer-1.2.9" - sources."block-stream2-2.1.0" + sources."block-iterator-1.1.1" + (sources."block-stream2-2.1.0" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."bn.js-5.2.1" sources."browserify-package-json-1.0.1" sources."buffer-5.7.1" @@ -151953,7 +151087,11 @@ in sources."mime-1.6.0" ]; }) - sources."chunk-store-stream-4.3.0" + (sources."chunk-store-stream-4.3.0" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."cli-cursor-3.1.0" sources."cli-spinners-2.7.0" sources."cli-width-3.0.0" @@ -151963,16 +151101,10 @@ in sources."color-name-1.1.4" sources."common-tags-1.8.2" sources."compact2string-1.4.1" - (sources."concat-stream-1.6.2" // { - dependencies = [ - sources."readable-stream-2.3.7" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - }) + sources."concat-stream-1.6.2" sources."core-util-is-1.0.3" sources."cpus-1.0.3" - sources."create-torrent-5.0.6" + sources."create-torrent-5.0.9" sources."debug-2.6.9" sources."decompress-response-3.3.0" sources."defaults-1.0.4" @@ -152058,7 +151190,11 @@ in sources."magnet-uri-6.2.0" sources."mdns-js-0.5.0" sources."mdns-js-packet-0.2.0" - sources."mediasource-2.4.0" + (sources."mediasource-2.4.0" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."memory-chunk-store-1.3.5" sources."mime-3.0.0" sources."mimic-fn-2.1.0" @@ -152067,7 +151203,11 @@ in sources."mkdirp-classic-0.5.3" sources."moment-2.29.4" sources."mp4-box-encoding-1.4.1" - sources."mp4-stream-3.1.3" + (sources."mp4-stream-3.1.3" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."ms-2.0.0" (sources."multicast-dns-7.2.5" // { dependencies = [ @@ -152114,9 +151254,13 @@ in sources."random-iterate-1.0.1" sources."randombytes-2.1.0" sources."range-parser-1.2.1" - sources."range-slice-stream-2.0.0" + (sources."range-slice-stream-2.0.0" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."rc4-0.1.5" - sources."readable-stream-3.6.0" + sources."readable-stream-2.3.7" sources."record-cache-1.2.0" (sources."render-media-4.1.0" // { dependencies = [ @@ -152131,8 +151275,8 @@ in sources."run-parallel-limit-1.1.0" sources."run-series-1.1.9" sources."rusha-0.8.14" - sources."rxjs-7.5.7" - sources."safe-buffer-5.2.1" + sources."rxjs-7.6.0" + sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.1.4" sources."semver-5.1.1" @@ -152144,6 +151288,7 @@ in sources."buffer-6.0.3" sources."debug-4.3.4" sources."ms-2.1.2" + sources."readable-stream-3.6.0" ]; }) sources."simple-sha1-3.1.0" @@ -152151,6 +151296,7 @@ in dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" + sources."readable-stream-3.6.0" ]; }) sources."smart-buffer-4.2.0" @@ -152168,7 +151314,7 @@ in sources."streamx-2.12.5" sources."string-width-4.2.3" sources."string2compact-1.3.2" - sources."string_decoder-1.3.0" + sources."string_decoder-1.1.1" sources."strip-ansi-6.0.1" sources."supports-color-7.2.0" sources."thirty-two-1.0.2" @@ -152203,11 +151349,15 @@ in sources."ut_pex-3.0.2" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" - sources."utp-native-2.5.3" + (sources."utp-native-2.5.3" // { + dependencies = [ + sources."readable-stream-3.6.0" + ]; + }) sources."videostream-3.2.2" sources."vlc-command-1.2.0" sources."wcwidth-1.0.1" - (sources."webtorrent-1.9.1" // { + (sources."webtorrent-1.9.6" // { dependencies = [ sources."debug-4.3.4" sources."decompress-response-6.0.0" @@ -152240,13 +151390,13 @@ in "@withgraphite/graphite-cli" = nodeEnv.buildNodePackage { name = "_at_withgraphite_slash_graphite-cli"; packageName = "@withgraphite/graphite-cli"; - version = "0.20.11"; + version = "0.20.12"; src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.20.11.tgz"; - sha512 = "MpeRYC1CeU218Euj6+R7uGBwRiWhl2voek2LsMOsswI+jhN+YxgFM7d/UDrmrJ1Eq4IpCeCauZVnE+Ax7rJGNA=="; + url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.20.12.tgz"; + sha512 = "Dki/T3/T3Anl9swh2AbQz2M9ne3jK6kTuInhd5ZIUY9CdXJd1olK1w7o6TWcN6Ez2qT0SQbt9lsjZQEH2vMxxQ=="; }; dependencies = [ - sources."@withgraphite/graphite-cli-routes-0.22.0" + sources."@withgraphite/graphite-cli-routes-0.23.0" sources."@withgraphite/retype-0.3.15" sources."@withgraphite/retyped-routes-0.3.7" sources."ansi-regex-5.0.1" @@ -152319,10 +151469,10 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.1.15"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.15.tgz"; - sha512 = "5iqtFNo+zbu1FTnQQU/1Y+WWxIEuPIy71fe0uvqqFl0pSlkAtZJ+ufw8UYVxf2Mprw4ia4mSDdhV+hHpZO1sLQ=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.5.0.tgz"; + sha512 = "7Y7Vh4yi1Vpa/o2o48VgWMv6G/3u8SPR3CJEWgntL4zPZog7iIxl0R2QjthWpsPHI7+PK6cFtnpSaSrcdEk+vw=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" @@ -152349,9 +151499,9 @@ in sources."@miniflare/watcher-2.10.0" sources."@miniflare/web-sockets-2.10.0" sources."@types/better-sqlite3-7.6.2" - sources."@types/node-18.11.9" + sources."@types/node-18.11.10" sources."@types/stack-trace-0.0.29" - sources."anymatch-3.1.2" + sources."anymatch-3.1.3" sources."binary-extensions-2.2.0" sources."blake3-wasm-2.1.5" sources."braces-3.0.2" @@ -152506,8 +151656,8 @@ in sha512 = "P1Ct7+DNrOcr2JAxDZ3Q5i5sx2LSveu7iLaoUL0A+YiG0GKf0l5+9j3rwMeyh6JeTL1+HfQV1rnwEvzhNIvpFw=="; }; dependencies = [ - sources."@babel/runtime-7.20.1" - sources."@babel/runtime-corejs3-7.20.1" + sources."@babel/runtime-7.20.6" + sources."@babel/runtime-corejs3-7.20.6" (sources."@eslint/eslintrc-1.3.3" // { dependencies = [ sources."debug-4.3.4" @@ -152534,11 +151684,12 @@ in sources."ansi-styles-4.3.0" sources."argparse-2.0.1" sources."aria-query-4.2.2" - sources."array-includes-3.1.5" + sources."array-includes-3.1.6" sources."array.prototype.flat-1.3.1" sources."array.prototype.flatmap-1.3.1" + sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" - sources."axe-core-4.5.1" + sources."axe-core-4.5.2" sources."axobject-query-2.2.0" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" @@ -152549,7 +151700,7 @@ in sources."color-name-1.1.4" sources."commander-2.20.3" sources."concat-map-0.0.1" - sources."core-js-pure-3.26.0" + sources."core-js-pure-3.26.1" sources."cross-spawn-7.0.3" sources."damerau-levenshtein-1.0.8" sources."debug-2.6.9" @@ -152562,7 +151713,7 @@ in sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.27.0" // { + (sources."eslint-8.29.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" @@ -152583,7 +151734,7 @@ in }) sources."eslint-plugin-import-2.26.0" sources."eslint-plugin-jsx-a11y-6.6.1" - (sources."eslint-plugin-react-7.31.10" // { + (sources."eslint-plugin-react-7.31.11" // { dependencies = [ sources."resolve-2.0.0-next.4" ]; @@ -152604,7 +151755,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" @@ -152617,7 +151768,7 @@ in sources."get-symbol-description-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" - sources."globals-13.17.0" + sources."globals-13.18.0" sources."grapheme-splitter-1.0.4" sources."has-1.0.3" sources."has-bigints-1.0.2" @@ -152625,7 +151776,7 @@ in sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -152647,7 +151798,7 @@ in sources."is-symbol-1.0.4" sources."is-weakref-1.0.2" sources."isexe-2.0.0" - sources."js-sdsl-4.1.5" + sources."js-sdsl-4.2.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" @@ -152655,7 +151806,7 @@ in sources."json5-1.0.1" sources."jsx-ast-utils-3.3.3" sources."language-subtag-registry-0.3.22" - sources."language-tags-1.0.5" + sources."language-tags-1.0.6" sources."levn-0.4.1" sources."locate-path-6.0.0" sources."lodash.merge-4.6.2" @@ -152688,7 +151839,7 @@ in sources."punycode-2.1.1" sources."queue-microtask-1.2.3" sources."react-is-16.13.1" - sources."regenerator-runtime-0.13.10" + sources."regenerator-runtime-0.13.11" sources."regexp.prototype.flags-1.4.3" sources."regexpp-3.2.0" sources."resolve-1.22.1" @@ -152701,9 +151852,9 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."string.prototype.matchall-4.0.7" - sources."string.prototype.trimend-1.0.5" - sources."string.prototype.trimstart-1.0.5" + sources."string.prototype.matchall-4.0.8" + sources."string.prototype.trimend-1.0.6" + sources."string.prototype.trimstart-1.0.6" sources."strip-ansi-6.0.1" sources."strip-bom-3.0.0" sources."strip-json-comments-3.1.1" @@ -152760,7 +151911,7 @@ in sha512 = "bGE5lObc8PBXDQ8QKEWUVFw85/g1R3TVbtLPswNY+YXR2fLb1RF6PW3CKNI0gshXTSKleywhAyORrXi7fjwpzg=="; }; dependencies = [ - sources."ajv-8.11.0" + sources."ajv-8.11.2" sources."fast-deep-equal-3.1.3" sources."json-schema-traverse-1.0.0" sources."jsonc-parser-3.2.0" @@ -152818,7 +151969,7 @@ in sources."glob-7.2.3" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-3.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -152872,13 +152023,25 @@ in yo = nodeEnv.buildNodePackage { name = "yo"; packageName = "yo"; - version = "4.3.0"; + version = "4.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/yo/-/yo-4.3.0.tgz"; - sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ=="; + url = "https://registry.npmjs.org/yo/-/yo-4.3.1.tgz"; + sha512 = "KKp5WNPq0KdqfJY4W6HSiDG4DcgvmL4InWfkg5SVG9oYp+DTUUuc5ZmDw9VAvK0Z2J6XeEumDHcWh8NDhzrtOw=="; }; dependencies = [ - sources."@babel/runtime-7.20.1" + sources."@babel/code-frame-7.18.6" + sources."@babel/helper-validator-identifier-7.19.1" + (sources."@babel/highlight-7.18.6" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) + sources."@babel/runtime-7.20.6" sources."@gar/promisify-1.1.3" sources."@isaacs/string-locale-compare-1.1.0" sources."@nodelib/fs.scandir-2.1.5" @@ -152899,13 +152062,12 @@ in dependencies = [ sources."mkdirp-1.0.4" sources."semver-7.3.8" - sources."which-2.0.2" ]; }) sources."@npmcli/installed-package-contents-1.0.7" (sources."@npmcli/map-workspaces-2.0.4" // { dependencies = [ - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) (sources."@npmcli/metavuln-calculator-2.0.0" // { @@ -152924,11 +152086,17 @@ in sources."@npmcli/promise-spawn-1.3.2" sources."@npmcli/run-script-2.0.0" sources."@sindresorhus/is-0.7.0" + sources."@szmarczak/http-timer-1.1.2" sources."@tootallnate/once-1.1.2" + sources."@types/cacheable-request-6.0.3" sources."@types/expect-1.20.4" + sources."@types/http-cache-semantics-4.0.1" + sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" sources."@types/node-15.14.9" - sources."@types/vinyl-2.0.6" + sources."@types/normalize-package-data-2.4.1" + sources."@types/responselike-1.0.0" + sources."@types/vinyl-2.0.7" sources."abbrev-1.1.1" (sources."agent-base-6.0.2" // { dependencies = [ @@ -152943,12 +152111,15 @@ in ]; }) sources."aggregate-error-3.1.0" - sources."ajv-6.12.6" sources."ansi-0.3.1" - sources."ansi-align-2.0.0" - sources."ansi-escapes-3.2.0" - sources."ansi-regex-3.0.1" - sources."ansi-styles-3.2.1" + sources."ansi-align-3.0.1" + (sources."ansi-escapes-4.3.2" // { + dependencies = [ + sources."type-fest-0.21.3" + ]; + }) + sources."ansi-regex-5.0.1" + sources."ansi-styles-4.3.0" sources."aproba-2.0.0" sources."are-we-there-yet-1.1.7" (sources."argparse-1.0.10" // { @@ -152961,16 +152132,9 @@ in sources."array-union-2.1.0" sources."arrify-2.0.1" sources."asap-2.0.6" - sources."asn1-0.2.6" - sources."assert-plus-1.0.0" - sources."astral-regex-1.0.0" - sources."async-2.6.4" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."async-3.2.4" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" - sources."bcrypt-pbkdf-1.0.2" (sources."bin-links-3.0.3" // { dependencies = [ sources."npm-normalize-package-bin-2.0.0" @@ -152978,7 +152142,11 @@ in ]; }) sources."bin-version-3.1.0" - sources."bin-version-check-4.0.0" + (sources."bin-version-check-4.0.0" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) sources."binaryextensions-4.18.0" (sources."bl-4.1.0" // { dependencies = [ @@ -152986,9 +152154,10 @@ in ]; }) sources."boolean-3.2.0" - (sources."boxen-1.3.0" // { + (sources."boxen-5.1.2" // { dependencies = [ - sources."camelcase-4.1.0" + sources."camelcase-6.3.0" + sources."type-fest-0.20.2" ]; }) sources."brace-expansion-2.0.1" @@ -153002,28 +152171,29 @@ in sources."mkdirp-1.0.4" ]; }) + sources."cacheable-lookup-5.0.4" (sources."cacheable-request-2.1.4" // { dependencies = [ sources."get-stream-3.0.0" sources."lowercase-keys-1.0.0" ]; }) - sources."camelcase-2.1.1" - sources."camelcase-keys-2.1.0" + sources."camelcase-4.1.0" + sources."camelcase-keys-4.2.0" sources."capture-stack-trace-1.0.2" - sources."caseless-0.12.0" - sources."chalk-2.4.2" + sources."chalk-4.1.2" + sources."char-regex-1.0.2" sources."chardet-0.7.0" sources."chownr-2.0.0" - sources."ci-info-1.6.0" + sources."ci-info-2.0.0" sources."clean-stack-2.2.0" - sources."cli-boxes-1.0.0" - sources."cli-cursor-2.1.0" + sources."cli-boxes-2.2.1" + sources."cli-cursor-3.1.0" sources."cli-list-0.2.0" sources."cli-spinners-2.7.0" sources."cli-table-0.3.11" - sources."cli-width-2.2.1" - sources."clone-2.1.2" + sources."cli-width-3.0.0" + sources."clone-1.0.4" sources."clone-buffer-1.0.0" sources."clone-regexp-1.0.1" sources."clone-response-1.0.2" @@ -153031,52 +152201,51 @@ in sources."cloneable-readable-1.1.3" sources."cmd-shim-5.0.0" sources."code-point-at-1.1.0" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."color-support-1.1.3" sources."colors-1.0.3" - sources."combined-stream-1.0.8" sources."commander-7.1.0" sources."common-ancestor-path-1.0.1" sources."commondir-1.0.1" sources."concat-map-0.0.1" sources."concat-stream-1.6.2" - sources."conf-1.4.0" sources."config-chain-1.1.13" - sources."configstore-3.1.5" + sources."configstore-5.0.1" sources."console-control-strings-1.1.0" - sources."core-js-3.26.0" + sources."core-js-3.26.1" sources."core-util-is-1.0.3" sources."create-error-class-3.0.2" - sources."cross-spawn-6.0.5" - sources."crypto-random-string-1.0.0" + sources."cross-spawn-7.0.3" + sources."crypto-random-string-2.0.0" sources."currently-unhandled-0.4.1" - sources."dashdash-1.14.1" sources."dateformat-4.6.3" sources."debug-2.6.9" sources."debuglog-1.0.1" - sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" + sources."decamelize-2.0.0" + (sources."decamelize-keys-1.1.1" // { + dependencies = [ + sources."decamelize-1.2.0" + sources."map-obj-1.0.1" + ]; + }) + sources."decode-uri-component-0.2.2" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."default-uid-1.0.0" - (sources."defaults-1.0.4" // { - dependencies = [ - sources."clone-1.0.4" - ]; - }) + sources."defaults-1.0.4" + sources."defer-to-connect-1.1.3" + sources."define-lazy-prop-2.0.0" sources."define-properties-1.1.4" - sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" sources."detect-node-2.1.0" sources."dezalgo-1.0.4" sources."diff-5.1.0" sources."dir-glob-3.0.1" - sources."dot-prop-4.2.1" + sources."dot-prop-5.3.0" sources."downgrade-root-1.2.2" sources."duplexer3-0.1.5" - sources."ecc-jsbn-0.1.2" sources."ejs-3.1.8" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" @@ -153086,28 +152255,35 @@ in ]; }) sources."end-of-stream-1.4.4" - sources."env-paths-1.0.0" + sources."env-paths-2.2.1" sources."err-code-2.0.3" sources."error-10.4.0" sources."error-ex-1.3.2" sources."es6-error-4.1.1" + sources."escape-goat-2.1.1" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" sources."eventemitter3-4.0.7" - sources."execa-1.0.0" + (sources."execa-1.0.0" // { + dependencies = [ + sources."cross-spawn-6.0.5" + sources."path-key-2.0.1" + sources."semver-5.7.1" + sources."shebang-command-1.2.0" + sources."shebang-regex-1.0.0" + sources."which-1.3.1" + ]; + }) sources."execall-1.0.0" sources."exit-hook-1.1.1" sources."extend-3.0.2" sources."external-editor-3.1.0" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.13.0" - sources."figures-2.0.0" + sources."fastq-1.14.0" + sources."figures-3.2.0" (sources."filelist-1.0.4" // { dependencies = [ - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."fill-range-7.0.1" @@ -153117,8 +152293,6 @@ in sources."find-yarn-workspace-root2-1.2.16" sources."first-chunk-stream-2.0.0" sources."foreachasync-3.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" sources."from2-2.3.0" sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" @@ -153128,19 +152302,22 @@ in sources."get-intrinsic-1.1.3" sources."get-stdin-4.0.1" sources."get-stream-4.1.0" - sources."getpass-0.1.7" (sources."glob-8.0.3" // { dependencies = [ - sources."minimatch-5.1.0" + sources."minimatch-5.1.1" ]; }) sources."glob-parent-5.1.2" - (sources."global-agent-2.2.0" // { + (sources."global-agent-3.0.0" // { dependencies = [ sources."semver-7.3.8" ]; }) - sources."global-dirs-0.1.1" + (sources."global-dirs-3.0.1" // { + dependencies = [ + sources."ini-2.0.0" + ]; + }) sources."global-tunnel-ng-2.7.1" sources."globalthis-1.0.3" sources."globby-11.1.0" @@ -153152,20 +152329,19 @@ in }) sources."graceful-fs-4.2.10" sources."grouped-queue-2.0.0" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" sources."has-1.0.3" (sources."has-ansi-2.0.0" // { dependencies = [ sources."ansi-regex-2.1.1" ]; }) - sources."has-flag-3.0.0" + sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" sources."has-unicode-2.0.1" + sources."has-yarn-2.1.0" sources."hosted-git-info-2.8.9" sources."http-cache-semantics-3.8.1" (sources."http-proxy-agent-4.0.1" // { @@ -153174,7 +152350,11 @@ in sources."ms-2.1.2" ]; }) - sources."http-signature-1.2.0" + (sources."http2-wrapper-1.0.3" // { + dependencies = [ + sources."quick-lru-5.1.1" + ]; + }) (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" @@ -153183,10 +152363,10 @@ in }) sources."human-signals-2.1.0" sources."humanize-ms-1.2.1" - sources."humanize-string-1.0.2" + sources."humanize-string-2.1.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."ignore-walk-4.0.1" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" @@ -153195,31 +152375,28 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."inquirer-6.5.2" - sources."insight-0.10.3" + sources."inquirer-8.2.5" (sources."into-stream-3.1.0" // { dependencies = [ sources."p-is-promise-1.1.0" ]; }) sources."ip-2.0.0" - sources."ip-regex-2.1.0" sources."is-arrayish-0.2.1" - sources."is-ci-1.2.1" + sources."is-ci-2.0.0" sources."is-core-module-2.11.0" - sources."is-docker-1.1.0" + sources."is-docker-2.2.1" sources."is-extglob-2.1.1" - sources."is-finite-1.1.0" - sources."is-fullwidth-code-point-2.0.0" + sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-installed-globally-0.1.0" + sources."is-installed-globally-0.4.0" sources."is-interactive-1.0.0" sources."is-lambda-1.0.1" - sources."is-npm-1.0.0" + sources."is-npm-5.0.0" sources."is-number-7.0.0" - sources."is-obj-1.0.1" + sources."is-obj-2.0.0" sources."is-object-1.0.2" - sources."is-path-inside-1.0.1" + sources."is-path-inside-3.0.3" sources."is-plain-obj-1.1.0" sources."is-redirect-1.0.0" sources."is-regexp-1.0.0" @@ -153231,49 +152408,41 @@ in sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" sources."is-utf8-0.2.1" - sources."is-wsl-1.1.0" + sources."is-wsl-2.2.0" + sources."is-yarn-global-0.3.0" sources."isarray-1.0.0" sources."isbinaryfile-4.0.10" sources."isexe-2.0.0" - sources."isstream-0.1.2" sources."isurl-1.0.0" - (sources."jake-10.8.5" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."async-3.2.4" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) + sources."jake-10.8.5" + sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" - sources."jsbn-0.1.1" sources."json-buffer-3.0.0" sources."json-parse-better-errors-1.0.2" sources."json-parse-even-better-errors-2.3.1" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" sources."json-stringify-nice-1.1.4" sources."json-stringify-safe-5.0.1" sources."jsonparse-1.3.1" - sources."jsprim-1.4.2" sources."just-diff-5.1.1" sources."just-diff-apply-5.4.1" sources."keyv-3.0.0" - (sources."latest-version-3.1.0" // { + (sources."latest-version-5.1.0" // { dependencies = [ - sources."get-stream-3.0.0" - sources."got-6.7.1" - sources."package-json-4.0.1" - sources."prepend-http-1.0.4" - sources."url-parse-lax-1.0.0" + sources."@sindresorhus/is-0.14.0" + sources."cacheable-request-6.1.0" + sources."get-stream-5.2.0" + sources."got-9.6.0" + sources."http-cache-semantics-4.1.0" + sources."lowercase-keys-2.0.0" + sources."normalize-url-4.5.1" + sources."p-cancelable-1.1.0" + sources."package-json-6.5.0" ]; }) - (sources."load-json-file-1.1.0" // { + sources."lines-and-columns-1.2.4" + (sources."load-json-file-4.0.0" // { dependencies = [ - sources."pify-2.3.0" + sources."strip-bom-3.0.0" ]; }) (sources."load-yaml-file-0.2.0" // { @@ -153285,23 +152454,21 @@ in sources."locate-path-2.0.0" sources."locutus-2.0.16" sources."lodash-4.17.21" - sources."lodash.debounce-4.0.8" sources."lodash.pad-4.5.1" sources."lodash.padend-4.6.1" sources."lodash.padstart-4.6.1" - sources."log-symbols-2.2.0" + sources."log-symbols-4.1.0" sources."loud-rejection-1.6.0" sources."lowercase-keys-1.0.1" sources."lru-cache-6.0.0" - sources."macos-release-2.5.0" - sources."make-dir-1.3.0" + sources."make-dir-3.1.0" (sources."make-fetch-happen-9.1.0" // { dependencies = [ sources."http-cache-semantics-4.1.0" ]; }) sources."map-age-cleaner-0.1.3" - sources."map-obj-1.0.1" + sources."map-obj-2.0.0" (sources."matcher-3.0.0" // { dependencies = [ sources."escape-string-regexp-4.0.0" @@ -153310,18 +152477,14 @@ in sources."mem-5.1.1" sources."mem-fs-2.2.1" sources."mem-fs-editor-9.5.0" - (sources."meow-3.7.0" // { + (sources."meow-5.0.0" // { dependencies = [ - sources."find-up-1.1.2" - sources."path-exists-2.1.0" - sources."read-pkg-up-1.0.1" + sources."read-pkg-up-3.0.0" ]; }) sources."merge-stream-2.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."mime-db-1.52.0" - sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" (sources."minimatch-3.1.2" // { @@ -153330,7 +152493,12 @@ in ]; }) sources."minimist-1.2.7" - sources."minipass-3.3.5" + (sources."minimist-options-3.0.2" // { + dependencies = [ + sources."arrify-1.0.1" + ]; + }) + sources."minipass-3.3.6" sources."minipass-collect-1.0.2" sources."minipass-fetch-1.4.1" sources."minipass-flush-1.0.5" @@ -153346,27 +152514,25 @@ in }) sources."ms-2.0.0" sources."multimatch-5.0.0" - sources."mute-stream-0.0.7" + sources."mute-stream-0.0.8" sources."negotiator-0.6.3" sources."nice-try-1.0.5" (sources."node-gyp-8.4.1" // { dependencies = [ - sources."ansi-regex-5.0.1" sources."are-we-there-yet-3.0.1" - sources."env-paths-2.2.1" sources."gauge-4.0.4" sources."glob-7.2.3" - sources."is-fullwidth-code-point-3.0.0" sources."npmlog-6.0.2" sources."readable-stream-3.6.0" sources."semver-7.3.8" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - sources."which-2.0.2" ]; }) sources."nopt-5.0.0" - sources."normalize-package-data-2.5.0" + (sources."normalize-package-data-2.5.0" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) sources."normalize-path-3.0.0" sources."normalize-url-2.0.1" sources."npm-bundled-1.1.2" @@ -153376,14 +152542,16 @@ in sources."semver-7.3.8" ]; }) - (sources."npm-keyword-5.0.0" // { + (sources."npm-keyword-6.1.0" // { dependencies = [ - sources."get-stream-3.0.0" - sources."got-7.1.0" - sources."p-cancelable-0.3.0" - sources."p-timeout-1.2.1" - sources."prepend-http-1.0.4" - sources."url-parse-lax-1.0.0" + sources."@sindresorhus/is-0.14.0" + sources."cacheable-request-6.1.0" + sources."get-stream-5.2.0" + sources."got-9.6.0" + sources."http-cache-semantics-4.1.0" + sources."lowercase-keys-2.0.0" + sources."normalize-url-4.5.1" + sources."p-cancelable-1.1.0" ]; }) sources."npm-normalize-package-bin-1.0.1" @@ -153431,37 +152599,20 @@ in sources."unique-slug-3.0.0" ]; }) - sources."npm-run-path-2.0.2" + (sources."npm-run-path-2.0.2" // { + dependencies = [ + sources."path-key-2.0.1" + ]; + }) sources."npmlog-2.0.4" sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."object-keys-1.1.1" sources."once-1.4.0" - (sources."onetime-2.0.1" // { - dependencies = [ - sources."mimic-fn-1.2.0" - ]; - }) - sources."open-6.4.0" - (sources."ora-5.4.1" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."cli-cursor-3.1.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."log-symbols-4.1.0" - sources."onetime-5.1.2" - sources."restore-cursor-3.1.0" - sources."strip-ansi-6.0.1" - sources."supports-color-7.2.0" - ]; - }) + sources."onetime-5.1.2" + sources."open-8.4.0" + sources."ora-5.4.1" sources."os-homedir-1.0.2" - sources."os-name-3.1.0" sources."os-shim-0.1.3" sources."os-tmpdir-1.0.2" sources."p-any-2.1.0" @@ -153486,7 +152637,25 @@ in ]; }) sources."p-try-1.0.0" - sources."package-json-5.0.0" + (sources."package-json-7.0.0" // { + dependencies = [ + sources."@sindresorhus/is-4.6.0" + sources."@szmarczak/http-timer-4.0.6" + sources."cacheable-request-7.0.2" + sources."decompress-response-6.0.0" + sources."defer-to-connect-2.0.1" + sources."get-stream-5.2.0" + sources."got-11.8.5" + sources."http-cache-semantics-4.1.0" + sources."json-buffer-3.0.1" + sources."keyv-4.5.2" + sources."lowercase-keys-2.0.0" + sources."mimic-response-3.1.0" + sources."normalize-url-6.1.0" + sources."responselike-2.0.1" + sources."semver-7.3.8" + ]; + }) (sources."pacote-12.0.3" // { dependencies = [ sources."mkdirp-1.0.4" @@ -153495,15 +152664,13 @@ in sources."pad-component-0.0.1" sources."parse-conflict-json-2.0.2" sources."parse-help-1.0.0" - sources."parse-json-2.2.0" + sources."parse-json-4.0.0" sources."passwd-user-3.0.0" sources."path-exists-3.0.0" sources."path-is-absolute-1.0.1" - sources."path-is-inside-1.0.2" - sources."path-key-2.0.1" + sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."path-type-4.0.0" - sources."performance-now-2.1.0" sources."picomatch-2.3.1" sources."pify-3.0.0" sources."pinkie-2.0.4" @@ -153518,7 +152685,6 @@ in sources."path-exists-4.0.0" ]; }) - sources."pkg-up-2.0.0" (sources."preferred-pm-3.0.3" // { dependencies = [ sources."find-up-5.0.0" @@ -153537,34 +152703,34 @@ in sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" sources."proto-list-1.2.4" - sources."pseudomap-1.0.2" - sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" - sources."qs-6.5.3" + sources."pupa-2.1.1" sources."query-string-5.1.1" sources."queue-microtask-1.2.3" + sources."quick-lru-1.1.0" sources."rc-1.2.8" sources."read-cmd-shim-3.0.1" sources."read-package-json-fast-2.0.3" - (sources."read-pkg-1.1.0" // { + (sources."read-pkg-3.0.0" // { dependencies = [ - sources."path-type-1.1.0" - sources."pify-2.3.0" + sources."path-type-3.0.0" ]; }) - (sources."read-pkg-up-4.0.0" // { + (sources."read-pkg-up-7.0.1" // { dependencies = [ - sources."find-up-3.0.0" - sources."load-json-file-4.0.0" - sources."locate-path-3.0.0" + sources."find-up-4.1.0" + sources."locate-path-5.0.0" sources."p-limit-2.3.0" - sources."p-locate-3.0.0" + sources."p-locate-4.1.0" sources."p-try-2.2.0" - sources."parse-json-4.0.0" - sources."path-type-3.0.0" - sources."read-pkg-3.0.0" - sources."strip-bom-3.0.0" + sources."parse-json-5.2.0" + sources."path-exists-4.0.0" + (sources."read-pkg-5.2.0" // { + dependencies = [ + sources."type-fest-0.6.0" + ]; + }) + sources."type-fest-0.8.1" ]; }) (sources."readable-stream-2.3.7" // { @@ -153573,25 +152739,20 @@ in ]; }) sources."readdir-scoped-modules-1.1.0" - (sources."redent-1.0.0" // { + (sources."redent-2.0.0" // { dependencies = [ - sources."indent-string-2.1.0" + sources."indent-string-3.2.0" ]; }) - sources."regenerator-runtime-0.13.10" - sources."registry-auth-token-3.4.0" - sources."registry-url-3.1.0" + sources."regenerator-runtime-0.13.11" + sources."registry-auth-token-4.2.2" + sources."registry-url-5.1.0" sources."remove-trailing-separator-1.1.0" - sources."repeating-2.0.1" sources."replace-ext-1.0.1" - (sources."request-2.88.2" // { - dependencies = [ - sources."tough-cookie-2.5.0" - ]; - }) sources."resolve-1.22.1" + sources."resolve-alpn-1.2.1" sources."responselike-1.0.2" - sources."restore-cursor-2.0.0" + sources."restore-cursor-3.1.0" sources."retry-0.12.0" sources."reusify-1.0.4" (sources."rimraf-3.0.2" // { @@ -153604,23 +152765,27 @@ in sources."run-async-2.4.1" sources."run-parallel-1.2.0" sources."rx-4.1.0" - sources."rxjs-6.6.7" + sources."rxjs-7.6.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."scoped-regex-2.1.0" - sources."semver-5.7.1" + sources."semver-6.3.0" sources."semver-compare-1.0.0" - sources."semver-diff-2.1.0" + sources."semver-diff-3.1.1" sources."semver-regex-2.0.0" - sources."semver-truncate-1.1.2" + (sources."semver-truncate-1.1.2" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) (sources."serialize-error-7.0.1" // { dependencies = [ sources."type-fest-0.13.1" ]; }) sources."set-blocking-2.0.0" - sources."shebang-command-1.2.0" - sources."shebang-regex-1.0.0" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" sources."slash-3.0.0" sources."smart-buffer-4.2.0" @@ -153632,57 +152797,41 @@ in ]; }) sources."sort-keys-2.0.0" - (sources."sort-on-3.0.0" // { - dependencies = [ - sources."arrify-1.0.1" - ]; - }) + sources."sort-on-4.1.1" sources."spawn-sync-1.0.15" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" sources."sprintf-js-1.1.2" - sources."sshpk-1.17.0" sources."ssri-8.0.1" sources."strict-uri-encode-1.1.0" - (sources."string-length-2.0.0" // { - dependencies = [ - sources."strip-ansi-4.0.0" - ]; - }) - (sources."string-width-2.1.1" // { - dependencies = [ - sources."strip-ansi-4.0.0" - ]; - }) + sources."string-length-4.0.2" + sources."string-width-4.2.3" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" ]; }) - (sources."strip-ansi-5.2.0" // { - dependencies = [ - sources."ansi-regex-4.1.1" - ]; - }) + sources."strip-ansi-6.0.1" sources."strip-bom-2.0.0" sources."strip-bom-buf-1.0.0" sources."strip-bom-stream-2.0.0" sources."strip-eof-1.0.0" sources."strip-final-newline-2.0.0" - sources."strip-indent-1.0.1" + sources."strip-indent-2.0.0" sources."strip-json-comments-2.0.1" (sources."sudo-block-1.2.0" // { dependencies = [ sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."chalk-1.1.3" + sources."is-docker-1.1.0" sources."strip-ansi-3.0.1" sources."supports-color-2.0.0" ]; }) - sources."supports-color-5.5.0" + sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" (sources."tabtab-1.3.2" // { dependencies = [ @@ -153691,6 +152840,7 @@ in sources."ansi-styles-2.2.1" sources."chalk-1.1.3" sources."cli-cursor-1.0.2" + sources."cli-width-2.2.1" sources."external-editor-1.1.1" sources."figures-1.7.0" sources."inquirer-1.2.3" @@ -153710,29 +152860,18 @@ in sources."mkdirp-1.0.4" ]; }) - (sources."term-size-1.2.0" // { - dependencies = [ - sources."cross-spawn-5.1.0" - sources."execa-0.7.0" - sources."get-stream-3.0.0" - sources."lru-cache-4.1.5" - sources."yallist-2.1.2" - ]; - }) sources."text-table-0.2.0" sources."textextensions-5.15.0" sources."through-2.3.8" sources."timed-out-4.0.1" - sources."titleize-1.0.1" + sources."titleize-2.1.0" sources."tmp-0.0.33" + sources."to-readable-stream-1.0.0" sources."to-regex-range-5.0.1" - sources."tough-cookie-3.0.1" sources."treeverse-1.0.4" - sources."trim-newlines-1.0.0" - sources."tslib-1.14.1" + sources."trim-newlines-2.0.0" + sources."tslib-2.4.1" sources."tunnel-0.0.6" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" (sources."twig-1.15.4" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -153741,26 +152880,28 @@ in }) sources."type-fest-0.3.1" sources."typedarray-0.0.6" + sources."typedarray-to-buffer-3.1.5" sources."unique-filename-1.1.1" sources."unique-slug-2.0.2" - sources."unique-string-1.0.0" + sources."unique-string-2.0.0" sources."untildify-4.0.0" sources."unzip-response-2.0.1" - sources."update-notifier-2.5.0" - sources."uri-js-4.4.1" + (sources."update-notifier-5.1.0" // { + dependencies = [ + sources."semver-7.3.8" + ]; + }) sources."url-parse-lax-3.0.0" sources."url-to-options-1.0.1" sources."user-home-2.0.0" sources."util-deprecate-1.0.2" - sources."uuid-3.4.0" sources."validate-npm-package-license-3.0.4" sources."validate-npm-package-name-3.0.0" - (sources."verror-1.10.0" // { + (sources."vinyl-2.2.1" // { dependencies = [ - sources."core-util-is-1.0.2" + sources."clone-2.1.2" ]; }) - sources."vinyl-2.2.1" (sources."vinyl-file-3.0.0" // { dependencies = [ sources."pify-2.3.0" @@ -153769,103 +152910,98 @@ in sources."walk-2.3.15" sources."walk-up-path-1.0.0" sources."wcwidth-1.0.1" - sources."which-1.3.1" + sources."which-2.0.2" (sources."which-pm-2.0.0" // { dependencies = [ sources."path-exists-4.0.0" ]; }) sources."wide-align-1.1.5" - sources."widest-line-2.0.1" - sources."windows-release-3.3.3" - (sources."wrap-ansi-7.0.0" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."is-fullwidth-code-point-3.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - ]; - }) + sources."widest-line-3.1.0" + sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" - sources."write-file-atomic-2.4.3" - sources."xdg-basedir-3.0.0" + sources."write-file-atomic-3.0.3" + sources."xdg-basedir-4.0.0" + sources."xregexp-4.0.0" sources."yallist-4.0.0" + sources."yargs-parser-10.1.0" (sources."yeoman-character-1.1.0" // { dependencies = [ sources."has-flag-1.0.0" sources."supports-color-3.2.3" ]; }) - sources."yeoman-doctor-5.0.0" - (sources."yeoman-environment-3.12.1" // { + (sources."yeoman-doctor-5.0.0" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."get-stream-3.0.0" + (sources."global-agent-2.2.0" // { + dependencies = [ + sources."semver-7.3.8" + ]; + }) + sources."got-6.7.1" + sources."has-flag-3.0.0" + sources."latest-version-3.1.0" + sources."log-symbols-2.2.0" + sources."package-json-4.0.1" + sources."prepend-http-1.0.4" + sources."registry-auth-token-3.4.0" + sources."registry-url-3.1.0" + sources."semver-5.7.1" + sources."supports-color-5.5.0" + sources."url-parse-lax-1.0.0" + ]; + }) + (sources."yeoman-environment-3.13.0" // { dependencies = [ - sources."ansi-escapes-4.3.2" - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" sources."are-we-there-yet-2.0.0" - sources."chalk-4.1.2" - sources."cli-cursor-3.1.0" - sources."cli-width-3.0.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."cross-spawn-7.0.3" sources."debug-4.3.4" sources."escape-string-regexp-4.0.0" sources."execa-5.1.1" - (sources."figures-3.2.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) sources."find-up-5.0.0" sources."gauge-3.0.2" sources."get-stream-6.0.1" - sources."has-flag-4.0.0" - sources."inquirer-8.2.5" - sources."is-fullwidth-code-point-3.0.0" sources."is-stream-2.0.1" sources."locate-path-6.0.0" - sources."log-symbols-4.1.0" sources."ms-2.1.2" - sources."mute-stream-0.0.8" sources."npm-run-path-4.0.1" sources."npmlog-5.0.1" - sources."onetime-5.1.2" sources."p-limit-3.1.0" sources."p-locate-5.0.0" sources."path-exists-4.0.0" - sources."path-key-3.1.1" sources."readable-stream-3.6.0" - sources."restore-cursor-3.1.0" - sources."rxjs-7.5.7" sources."semver-7.3.8" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - sources."supports-color-7.2.0" - sources."tslib-2.4.1" - sources."type-fest-0.21.3" - sources."which-2.0.2" ]; }) sources."yocto-queue-0.1.0" (sources."yosay-2.0.2" // { dependencies = [ sources."ansi-regex-2.1.1" + sources."ansi-styles-3.2.1" (sources."chalk-1.1.3" // { dependencies = [ sources."ansi-styles-2.2.1" ]; }) - sources."is-fullwidth-code-point-1.0.0" + sources."cli-boxes-1.0.0" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."is-fullwidth-code-point-2.0.0" + (sources."string-width-2.1.1" // { + dependencies = [ + sources."ansi-regex-3.0.1" + sources."strip-ansi-4.0.0" + ]; + }) sources."strip-ansi-3.0.1" sources."supports-color-2.0.0" (sources."wrap-ansi-2.1.0" // { dependencies = [ + sources."is-fullwidth-code-point-1.0.0" sources."string-width-1.0.2" ]; }) @@ -153897,63 +153033,63 @@ in sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" sources."@esm2cjs/cacheable-lookup-7.0.0" - sources."@esm2cjs/cacheable-request-10.2.2" - sources."@esm2cjs/form-data-encoder-2.1.3" - sources."@esm2cjs/got-12.5.2" + sources."@esm2cjs/cacheable-request-10.2.3" + sources."@esm2cjs/form-data-encoder-2.1.4" + sources."@esm2cjs/got-12.5.3" sources."@esm2cjs/http-timer-5.0.1" sources."@esm2cjs/is-5.3.0" sources."@esm2cjs/lowercase-keys-3.0.0" sources."@esm2cjs/mimic-response-4.0.0" - sources."@esm2cjs/normalize-url-7.2.0" + sources."@esm2cjs/normalize-url-8.0.0" sources."@esm2cjs/p-cancelable-3.0.0" sources."@esm2cjs/p-queue-7.3.0" sources."@esm2cjs/p-timeout-5.1.0" sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.5" - (sources."@sentry/core-7.17.4" // { + (sources."@sentry/core-7.23.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/integrations-7.17.4" // { + (sources."@sentry/integrations-7.23.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.17.4" // { + (sources."@sentry/node-7.23.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.17.4" - (sources."@sentry/utils-7.17.4" // { + sources."@sentry/types-7.23.0" + (sources."@sentry/utils-7.23.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) sources."@serialport/binding-mock-10.2.2" - sources."@serialport/bindings-cpp-10.7.0" - sources."@serialport/bindings-interface-1.2.1" - sources."@serialport/parser-byte-length-10.3.0" - sources."@serialport/parser-cctalk-10.3.0" - sources."@serialport/parser-delimiter-10.3.0" - sources."@serialport/parser-inter-byte-timeout-10.3.0" - sources."@serialport/parser-packet-length-10.3.0" - sources."@serialport/parser-readline-10.3.0" - sources."@serialport/parser-ready-10.3.0" - sources."@serialport/parser-regex-10.3.0" - sources."@serialport/parser-slip-encoder-10.3.0" - sources."@serialport/parser-spacepacket-10.3.0" - sources."@serialport/stream-10.3.0" + sources."@serialport/bindings-cpp-10.8.0" + sources."@serialport/bindings-interface-1.2.2" + sources."@serialport/parser-byte-length-10.5.0" + sources."@serialport/parser-cctalk-10.5.0" + sources."@serialport/parser-delimiter-10.5.0" + sources."@serialport/parser-inter-byte-timeout-10.5.0" + sources."@serialport/parser-packet-length-10.5.0" + sources."@serialport/parser-readline-10.5.0" + sources."@serialport/parser-ready-10.5.0" + sources."@serialport/parser-regex-10.5.0" + sources."@serialport/parser-slip-encoder-10.5.0" + sources."@serialport/parser-spacepacket-10.5.0" + sources."@serialport/stream-10.5.0" sources."@types/http-cache-semantics-4.0.1" - sources."@zwave-js/cc-10.3.0" - sources."@zwave-js/config-10.3.0" + sources."@zwave-js/cc-10.3.1" + sources."@zwave-js/config-10.3.1" sources."@zwave-js/core-10.3.0" - sources."@zwave-js/host-10.3.0" + sources."@zwave-js/host-10.3.1" sources."@zwave-js/nvmedit-10.3.0" - sources."@zwave-js/serial-10.3.0" + sources."@zwave-js/serial-10.3.1" sources."@zwave-js/shared-10.3.0" - sources."@zwave-js/testing-10.3.0" + sources."@zwave-js/testing-10.3.1" sources."agent-base-6.0.2" sources."alcalzone-shared-4.0.8" sources."ansi-colors-4.1.3" @@ -153995,7 +153131,7 @@ in sources."get-stream-6.0.1" sources."graceful-fs-4.2.10" sources."http-cache-semantics-4.1.0" - sources."http2-wrapper-2.1.11" + sources."http2-wrapper-2.2.0" sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" sources."immediate-3.0.6" @@ -154008,7 +153144,7 @@ in sources."json-logic-js-2.0.2" sources."json5-2.2.1" sources."jsonfile-6.1.0" - sources."keyv-4.5.1" + sources."keyv-4.5.2" sources."kuler-2.0.0" sources."lie-3.1.1" sources."localforage-1.10.0" @@ -154022,7 +153158,7 @@ in sources."minimist-1.2.7" sources."moment-2.29.4" sources."ms-2.1.2" - sources."node-addon-api-4.3.0" + sources."node-addon-api-5.0.0" sources."node-gyp-build-4.5.0" sources."npm-run-path-4.0.1" sources."nrf-intel-hex-1.3.0" @@ -154041,7 +153177,7 @@ in sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.1" sources."semver-7.3.8" - sources."serialport-10.4.0" + sources."serialport-10.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -154070,7 +153206,7 @@ in sources."yallist-4.0.0" sources."yargs-17.6.2" sources."yargs-parser-21.1.1" - sources."zwave-js-10.3.0" + sources."zwave-js-10.3.1" ]; buildInputs = globalBuildInputs; meta = { @@ -154096,7 +153232,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-18.11.9" + sources."@types/node-18.11.10" sources."@types/ps-tree-1.1.2" sources."@types/which-2.0.1" sources."braces-3.0.2" @@ -154106,7 +153242,7 @@ in sources."duplexer-0.1.2" sources."event-stream-3.3.4" sources."fast-glob-3.2.12" - sources."fastq-1.13.0" + sources."fastq-1.14.0" sources."fetch-blob-3.2.0" sources."fill-range-7.0.1" sources."formdata-polyfill-4.0.10" @@ -154115,7 +153251,7 @@ in sources."glob-parent-5.1.2" sources."globby-13.1.2" sources."graceful-fs-4.2.10" - sources."ignore-5.2.0" + sources."ignore-5.2.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" From 2a8977997a3c979611bbb0c51b4ade28455fdf0d Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Mon, 5 Dec 2022 12:21:33 -0800 Subject: [PATCH 143/144] unpoller: add passthru.tests --- pkgs/servers/monitoring/unpoller/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/monitoring/unpoller/default.nix b/pkgs/servers/monitoring/unpoller/default.nix index 7c55f580fe78..aa217ece8778 100644 --- a/pkgs/servers/monitoring/unpoller/default.nix +++ b/pkgs/servers/monitoring/unpoller/default.nix @@ -1,6 +1,7 @@ { lib , buildGoModule , fetchFromGitHub +, nixosTests }: buildGoModule rec { @@ -24,6 +25,8 @@ buildGoModule rec { "-X github.com/prometheus/common/version.Version=${version}-0" ]; + passthru.tests = { inherit (nixosTests.prometheus-exporters) unpoller; }; + meta = with lib; { description = "Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus"; homepage = "https://github.com/unpoller/unpoller"; From 3b03e122ef0a5cdb3e8f8228e32eb258fc46ccab Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 5 Dec 2022 22:31:39 +0000 Subject: [PATCH 144/144] python310Packages.aioesphomeapi: 13.0.0 -> 13.0.1 --- pkgs/development/python-modules/aioesphomeapi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix index c7dbfe62f602..a1e9aefbc447 100644 --- a/pkgs/development/python-modules/aioesphomeapi/default.nix +++ b/pkgs/development/python-modules/aioesphomeapi/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "aioesphomeapi"; - version = "13.0.0"; + version = "13.0.1"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "esphome"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-u+RaQcEfljgjK+7vMJj60WkvjozzRM5Z1Yaf4NkrF+U="; + hash = "sha256-33iaM5+5OV9TAk3SAZWzJfwQbeDSPQiVLBPAAOyyFm0="; }; postPatch = ''