From f88873d877d17617ed11a8f6aba49db9ae57cdbb Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 29 Dec 2022 15:49:01 -0800 Subject: [PATCH 01/36] runelite: 2.1.5 -> 2.5.0 --- pkgs/games/runelite/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/games/runelite/default.nix b/pkgs/games/runelite/default.nix index a3c686eee9fe..0f71164f62fd 100644 --- a/pkgs/games/runelite/default.nix +++ b/pkgs/games/runelite/default.nix @@ -2,26 +2,26 @@ stdenv.mkDerivation rec { pname = "runelite"; - version = "2.1.5"; + version = "2.5.0"; jar = fetchurl { url = "https://github.com/runelite/launcher/releases/download/${version}/RuneLite.jar"; - sha256 = "4BX188QIjIFTxng2ktqlKn7AqQ9tdBcKWmgOj/5yd10="; + hash = "sha512-uEvlxXtnq7pgt8H5/hYIMu/kl32/dNojcHrPW6n2/RD/nzywreDw4kZ3G1kx0gGBY71x0RIEseEbm4BM+fhJlQ=="; }; icon = fetchurl { url = "https://github.com/runelite/launcher/raw/${version}/appimage/runelite.png"; - sha256 = "04fcjm7p546gr82g0jbh497j7rnh70lrvas0k171bff4v3knrjw1"; + hash = "sha512-Yh8mpc6z9xd6ePe3f1f+KzrpE9r3fsdtQ0pfAvOhK/0hrCo/17eQA6v73yFXZcPQogVwm9CmJlrx4CkfzB25RQ=="; }; # The `.so` files provided by these two jars aren't detected by RuneLite for some reason, so we have to provide them manually jogl = fetchurl { url = "https://repo.runelite.net/net/runelite/jogl/jogl-all/2.4.0-rc-20200429/jogl-all-2.4.0-rc-20200429-natives-linux-amd64.jar"; - sha256 = "S60qxyWY9RfyhLFygn/OxZFWnc8qVRtTFdWMbdu+2U0="; + hash = "sha512-OmJIbk5pKtvf1n1I5UHu6iaOKNrPgmaJTPhqC8yMjaRh/Hso1vV/+Eu+zKu7d5UiVggVUzJxqDKatmEnqFrzbg=="; }; gluegen = fetchurl { - url = "https://repo.runelite.net/net/runelite/gluegen/gluegen-rt/2.4.0-rc-20200429/gluegen-rt-2.4.0-rc-20200429-natives-linux-amd64.jar"; - sha256 = "eF8S5sQkJFDtW8rcVBKIyeyKm5Ze5rXK5r/yosZcHjU="; + url = "https://repo.runelite.net/net/runelite/gluegen/gluegen-rt/2.4.0-rc-20220318/gluegen-rt-2.4.0-rc-20220318-natives-linux-amd64.jar"; + hash = "sha512-kF+RdDzYEhBuZOJ6ZwMhaEVcjYLxiwR8tYAm08FXDML45iP4HBEfmqHOLJpIakK06aQFj99/296vx810eDFX5A=="; }; dontUnpack = true; From 3290734615c91f490550d8336e4cf14d897b2027 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 5 Mar 2023 15:27:38 +0000 Subject: [PATCH 02/36] pkgsStatic.iproute2: fix build (disable shared libraries) --- pkgs/os-specific/linux/iproute/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/os-specific/linux/iproute/default.nix b/pkgs/os-specific/linux/iproute/default.nix index 9a63a28a7a96..719527607a8f 100644 --- a/pkgs/os-specific/linux/iproute/default.nix +++ b/pkgs/os-specific/linux/iproute/default.nix @@ -39,6 +39,10 @@ stdenv.mkDerivation rec { "SBINDIR=$(out)/sbin" "DOCDIR=$(TMPDIR)/share/doc/${pname}" # Don't install docs "HDRDIR=$(dev)/include/iproute2" + ] ++ lib.optionals stdenv.hostPlatform.isStatic [ + "SHARED_LIBS=n" + # all build .so plugins: + "TC_CONFIG_NO_XT=y" ]; buildFlags = [ From 3966519d12be2fb3fded3420f1cc82d681b17b5d Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Thu, 2 Mar 2023 11:17:44 +0200 Subject: [PATCH 03/36] libreoffice: wrapper.nix rewrite Cleanup the unwrapped derivation's postInstall. Delete wrapper.sh, and put it's contents in the wrapped derivation via configurable `makeWrapper`. Also, always install dolphin templates in the unwrapped derivation. --- .../office/libreoffice/default.nix | 103 ++++++++++----- .../office/libreoffice/wrapper.nix | 124 ++++++++++++++---- .../office/libreoffice/wrapper.sh | 32 ----- pkgs/top-level/all-packages.nix | 12 +- 4 files changed, 175 insertions(+), 96 deletions(-) delete mode 100644 pkgs/applications/office/libreoffice/wrapper.sh diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 8fa7d6d78a74..c777e5b4b835 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -1,6 +1,7 @@ { stdenv , fetchurl , lib +, substituteAll , pam , python3 , libxslt @@ -88,7 +89,6 @@ , gdb , commonsLogging , librdf_rasqal -, wrapGAppsHook , gnome , glib , ncurses @@ -102,15 +102,32 @@ , mkDerivation ? null , qtbase ? null , qtx11extras ? null +, qtwayland ? null , ki18n ? null , kconfig ? null , kcoreaddons ? null , kio ? null , kwindowsystem ? null -, wrapQtAppsHook ? null , variant ? "fresh" , symlinkJoin , postgresql +# The rest are used only in passthru, for the wrapper +, kauth ? null +, kcompletion ? null +, kconfigwidgets ? null +, kglobalaccel ? null +, kitemviews ? null +, knotifications ? null +, ktextwidgets ? null +, kwidgetsaddons ? null +, kxmlgui ? null +, phonon ? null +, qtdeclarative ? null +, qtquickcontrols ? null +, qtsvg ? null +, qttools ? null +, solid ? null +, sonnet ? null } @ args: assert builtins.elem variant [ "fresh" "still" ]; @@ -354,33 +371,24 @@ in # It installs only things to $out/lib/libreoffice postInstall = '' - mkdir -p $out/bin $out/share/desktop - - mkdir -p "$out/share/gsettings-schemas/collected-for-libreoffice/glib-2.0/schemas/" - - for a in sbase scalc sdraw smath swriter simpress soffice unopkg; do - ln -s $out/lib/libreoffice/program/$a $out/bin/$a - done - - ln -s $out/bin/soffice $out/bin/libreoffice + mkdir -p $out/share ln -s $out/lib/libreoffice/share/xdg $out/share/applications - for f in $out/share/applications/*.desktop; do - substituteInPlace "$f" \ - --replace "Exec=libreoffice${major}.${minor}" "Exec=libreoffice" - done - cp -r sysui/desktop/icons "$out/share" sed -re 's@Icon=libreoffice(dev)?[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop + # Install dolphin templates, like debian does + install -D extras/source/shellnew/soffice.* --target-directory="$out/share/templates/.source" + cp ${substituteAll {src = ./soffice-template.desktop; app="Writer"; ext="odt"; type="text"; }} $out/share/templates/soffice.odt.desktop + cp ${substituteAll {src = ./soffice-template.desktop; app="Calc"; ext="ods"; type="spreadsheet"; }} $out/share/templates/soffice.ods.desktop + cp ${substituteAll {src = ./soffice-template.desktop; app="Impress"; ext="odp"; type="presentation";}} $out/share/templates/soffice.odp.desktop + cp ${substituteAll {src = ./soffice-template.desktop; app="Draw"; ext="odg"; type="drawing"; }} $out/share/templates/soffice.odg.desktop + mkdir -p $dev cp -r include $dev - '' + optionalString kdeIntegration '' - for prog in $out/bin/*; do - wrapQtApp $prog - done ''; + # Wrapping is done in ./wrapper.nix dontWrapQtApps = true; configureFlags = [ @@ -464,8 +472,7 @@ in jdk17 libtool pkg-config - ] - ++ [ (if kdeIntegration then wrapQtAppsHook else wrapGAppsHook) ]; + ]; buildInputs = with xorg; [ ArchiveZip @@ -557,20 +564,56 @@ in zip zlib ] - ++ (with gst_all_1; [ - gst-libav - gst-plugins-bad - gst-plugins-base - gst-plugins-good - gst-plugins-ugly - gstreamer - ]) + ++ passthru.gst_packages ++ optionals kdeIntegration [ qtbase qtx11extras kcoreaddons kio ] ++ optionals (lib.versionAtLeast (lib.versions.majorMinor version) "7.4") [ libwebp ]; passthru = { inherit srcs; jdk = jre'; + inherit kdeIntegration; + # For the wrapper.nix + inherit gtk3; + # Although present in qtPackages, we need qtbase.qtPluginPrefix and + # qtbase.qtQmlPrefix + inherit qtbase; + gst_packages = with gst_all_1; [ + gst-libav + gst-plugins-bad + gst-plugins-base + gst-plugins-good + gst-plugins-ugly + gstreamer + ]; + qmlPackages = [ + ki18n + knotifications + qtdeclarative + qtquickcontrols + qtwayland + solid + sonnet + ]; + qtPackages = [ + kauth + kcompletion + kconfigwidgets + kglobalaccel + ki18n + kio + kitemviews + ktextwidgets + kwidgetsaddons + kwindowsystem + kxmlgui + phonon + qtbase + qtdeclarative + qtsvg + qttools + qtwayland + sonnet + ]; }; requiredSystemFeatures = [ "big-parallel" ]; diff --git a/pkgs/applications/office/libreoffice/wrapper.nix b/pkgs/applications/office/libreoffice/wrapper.nix index 95206ee6a8c6..d97e76617b03 100644 --- a/pkgs/applications/office/libreoffice/wrapper.nix +++ b/pkgs/applications/office/libreoffice/wrapper.nix @@ -1,33 +1,101 @@ -{ lib, runCommand -, libreoffice, dbus, bash, substituteAll -, coreutils, gnugrep -, dolphinTemplates ? true +{ lib +, stdenv +# The unwrapped libreoffice derivation +, unwrapped +, makeWrapper +, runCommand +, substituteAll +# For Emulating wrapGAppsHook +, gsettings-desktop-schemas +, hicolor-icon-theme +, dconf +, librsvg +, gdk-pixbuf +# Configuration options for the wrapper +, extraMakeWrapperArgs ? [] +, dbusVerify ? stdenv.isLinux +, dbus }: -runCommand libreoffice.name { - inherit (libreoffice) jdk meta; - inherit coreutils dbus gnugrep libreoffice bash; + +let + makeWrapperArgs = builtins.concatStringsSep " " ([ + "--set" "GDK_PIXBUF_MODULE_FILE" "${librsvg}/${gdk-pixbuf.moduleDir}.cache" + "--prefix" "GIO_EXTRA_MODULES" ":" "${lib.getLib dconf}/lib/gio/modules" + "--prefix" "XDG_DATA_DIRS" ":" "${unwrapped.gtk3}/share/gsettings-schemas/${unwrapped.gtk3.name}" + "--prefix" "XDG_DATA_DIRS" ":" "$out/share" + "--prefix" "XDG_DATA_DIRS" ":" "${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}" + "--prefix" "XDG_DATA_DIRS" ":" "${hicolor-icon-theme}/share" + "--prefix" "GST_PLUGIN_SYSTEM_PATH_1_0" ":" + "${lib.makeSearchPath "lib/girepository-1.0" unwrapped.gst_packages}" + ] ++ lib.optionals unwrapped.kdeIntegration [ + "--prefix" "QT_PLUGIN_PATH" ":" "${ + lib.makeSearchPath + unwrapped.qtbase.qtPluginPrefix + (builtins.map lib.getBin unwrapped.qtPackages) + }" + "--prefix" "QML2_IMPORT_PATH" ":" "${ + lib.makeSearchPath unwrapped.qtbase.qtQmlPrefix + (builtins.map lib.getBin unwrapped.qmlPackages) + }" + ] ++ [ + # Add dictionaries from all NIX_PROFILES + "--run" (lib.escapeShellArg '' + for PROFILE in $NIX_PROFILES; do + HDIR="$PROFILE/share/hunspell" + if [ -d "$HDIR" ]; then + export DICPATH=$DICPATH''${DICPATH:+:}$HDIR + fi + done + '') + ] ++ lib.optionals dbusVerify [ + # If no dbus is running, start a dedicated dbus daemon + "--run" (lib.escapeShellArg '' + if ! ( test -n "$DBUS_SESSION_BUS_ADDRESS" ); then + dbus_tmp_dir="/run/user/$(id -u)/libreoffice-dbus" + if ! test -d "$dbus_tmp_dir" && test -d "/run"; then + mkdir -p "$dbus_tmp_dir" + fi + if ! test -d "$dbus_tmp_dir"; then + dbus_tmp_dir="/tmp/libreoffice-$(id -u)/libreoffice-dbus" + mkdir -p "$dbus_tmp_dir" + fi + dbus_socket_dir="$(mktemp -d -p "$dbus_tmp_dir")" + "${dbus}"/bin/dbus-daemon \ + --nopidfile \ + --nofork \ + --config-file "${dbus}"/share/dbus-1/session.conf \ + --address "unix:path=$dbus_socket_dir/session" &> /dev/null & + dbus_pid=$! + export DBUS_SESSION_BUS_ADDRESS="unix:path=$dbus_socket_dir/session" + fi + '') + ] ++ [ + "--chdir" "${unwrapped}/lib/libreoffice/program" + "--inherit-argv0" + ] ++ extraMakeWrapperArgs + ); +in runCommand "${unwrapped.name}-wrapped" { + inherit (unwrapped) meta; + paths = [ unwrapped ]; + nativeBuildInputs = [ makeWrapper ]; + passthru = { + inherit unwrapped; + # For backwards compatibility: + libreoffice = lib.warn "libreoffice: Use the unwrapped attributed, using libreoffice.libreoffice is deprecated." unwrapped; + inherit (unwrapped) kdeIntegration; + }; } ('' mkdir -p "$out/bin" - substituteAll "${./wrapper.sh}" "$out/bin/soffice" - chmod a+x "$out/bin/soffice" - - for i in $(ls "${libreoffice}/bin/"); do - test "$i" = "soffice" || ln -s soffice "$out/bin/$(basename "$i")" + ln -s ${unwrapped}/share $out/share + ln -s ${unwrapped}/lib $out/lib + for i in sbase scalc sdraw smath swriter simpress soffice unopkg; do + makeWrapper ${unwrapped}/lib/libreoffice/program/$i $out/bin/$i ${makeWrapperArgs} +'' + lib.optionalString dbusVerify '' + # Delete the dbus socket directory after libreoffice quits + sed -i 's/^exec -a "$0" //g' $out/bin/"$i" + echo 'code="$?"' >> $out/bin/$i + echo 'test -n "$dbus_socket_dir" && { rm -rf "$dbus_socket_dir"; kill $dbus_pid; }' >> $out/bin/$i + echo 'exit "$code"' >> $out/bin/$i +'' + '' done - - mkdir -p "$out/share" - ln -s "${libreoffice}/share"/* $out/share -'' + lib.optionalString dolphinTemplates '' - # Add templates to dolphin "Create new" menu - taken from debian - - # We need to unpack the core source since the necessary files aren't available in the libreoffice output - unpackFile "${libreoffice.src}" - - install -D "${libreoffice.name}"/extras/source/shellnew/soffice.* --target-directory="$out/share/templates/.source" - - cp ${substituteAll {src = ./soffice-template.desktop; app="Writer"; ext="odt"; type="text"; }} $out/share/templates/soffice.odt.desktop - cp ${substituteAll {src = ./soffice-template.desktop; app="Calc"; ext="ods"; type="spreadsheet"; }} $out/share/templates/soffice.ods.desktop - cp ${substituteAll {src = ./soffice-template.desktop; app="Impress"; ext="odp"; type="presentation";}} $out/share/templates/soffice.odp.desktop - cp ${substituteAll {src = ./soffice-template.desktop; app="Draw"; ext="odg"; type="drawing"; }} $out/share/templates/soffice.odg.desktop '') - diff --git a/pkgs/applications/office/libreoffice/wrapper.sh b/pkgs/applications/office/libreoffice/wrapper.sh deleted file mode 100644 index 162bede3ec69..000000000000 --- a/pkgs/applications/office/libreoffice/wrapper.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!@bash@/bin/bash -export JAVA_HOME="${JAVA_HOME:-@jdk@}" -#export SAL_USE_VCLPLUGIN="${SAL_USE_VCLPLUGIN:-gen}" - -if "@coreutils@"/bin/uname | "@gnugrep@"/bin/grep Linux > /dev/null && - ! ( test -n "$DBUS_SESSION_BUS_ADDRESS" ); then - dbus_tmp_dir="/run/user/$(id -u)/libreoffice-dbus" - if ! test -d "$dbus_tmp_dir" && test -d "/run"; then - mkdir -p "$dbus_tmp_dir" - fi - if ! test -d "$dbus_tmp_dir"; then - dbus_tmp_dir="/tmp/libreoffice-$(id -u)/libreoffice-dbus" - mkdir -p "$dbus_tmp_dir" - fi - dbus_socket_dir="$(mktemp -d -p "$dbus_tmp_dir")" - "@dbus@"/bin/dbus-daemon --nopidfile --nofork --config-file "@dbus@"/share/dbus-1/session.conf --address "unix:path=$dbus_socket_dir/session" &> /dev/null & - dbus_pid=$! - export DBUS_SESSION_BUS_ADDRESS="unix:path=$dbus_socket_dir/session" -fi - -for PROFILE in $NIX_PROFILES; do - HDIR="$PROFILE/share/hunspell" - if [ -d "$HDIR" ]; then - export DICPATH=$DICPATH''${DICPATH:+:}$HDIR - fi -done - -"@libreoffice@/bin/$("@coreutils@"/bin/basename "$0")" "$@" -code="$?" - -test -n "$dbus_socket_dir" && { rm -rf "$dbus_socket_dir"; kill $dbus_pid; } -exit "$code" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ef967f8e43ed..9d3868a3ee39 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -31159,7 +31159,7 @@ with pkgs; libreoffice = hiPrio libreoffice-still; - libreoffice-unwrapped = (hiPrio libreoffice-still).libreoffice; + libreoffice-unwrapped = libreoffice.unwrapped; libreoffice-args = { inherit (perlPackages) ArchiveZip IOCompress; @@ -31180,7 +31180,7 @@ with pkgs; }; libreoffice-qt = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { - libreoffice = libsForQt5.callPackage ../applications/office/libreoffice + unwrapped = libsForQt5.callPackage ../applications/office/libreoffice (libreoffice-args // { kdeIntegration = true; variant = "fresh"; @@ -31188,20 +31188,20 @@ with pkgs; }); libreoffice-fresh = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { - libreoffice = callPackage ../applications/office/libreoffice + unwrapped = callPackage ../applications/office/libreoffice (libreoffice-args // { variant = "fresh"; }); }); - libreoffice-fresh-unwrapped = libreoffice-fresh.libreoffice; + libreoffice-fresh-unwrapped = libreoffice-fresh.unwrapped; libreoffice-still = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { - libreoffice = callPackage ../applications/office/libreoffice + unwrapped = callPackage ../applications/office/libreoffice (libreoffice-args // { variant = "still"; }); }); - libreoffice-still-unwrapped = libreoffice-still.libreoffice; + libreoffice-still-unwrapped = libreoffice-still.unwrapped; libresprite = callPackage ../applications/editors/libresprite { inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation; From 60446dda1fca1f80876ba16e26b61ec486b377aa Mon Sep 17 00:00:00 2001 From: Rick van Schijndel Date: Tue, 14 Feb 2023 19:45:33 +0100 Subject: [PATCH 04/36] nixos/hydra: wait for network-online before evaluator start This prevents issues I'm seeing with the hydra I'm running on my laptop. Every time I reboot it I see eval errors like this: ``` error fetching latest change from git repo at `https://github.com/nixos/nixpkgs.git': fatal: unable to access 'https://github.com/nixos/nixpkgs.git/': Could not resolve host: github.com ``` This is because the evaluator already starts before the network is actually online. It should wait until the network is fully online before starting evaluation to prevent evaluation errors like above. --- nixos/modules/services/continuous-integration/hydra/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/continuous-integration/hydra/default.nix b/nixos/modules/services/continuous-integration/hydra/default.nix index 564bcd37dec5..83078706fcae 100644 --- a/nixos/modules/services/continuous-integration/hydra/default.nix +++ b/nixos/modules/services/continuous-integration/hydra/default.nix @@ -398,7 +398,7 @@ in systemd.services.hydra-evaluator = { wantedBy = [ "multi-user.target" ]; requires = [ "hydra-init.service" ]; - after = [ "hydra-init.service" "network.target" ]; + after = [ "hydra-init.service" "network.target" "network-online.target" ]; path = with pkgs; [ hydra-package nettools jq ]; restartTriggers = [ hydraConf ]; environment = env // { From cbbc0750671cf816cbaf1cde38c7eef075f5c45b Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Wed, 8 Mar 2023 23:29:55 +0100 Subject: [PATCH 05/36] chromiumDev: 112.0.5615.12 -> 112.0.5615.20 --- .../networking/browsers/chromium/upstream-info.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 17cd09e7ca95..56bafcd6385d 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -32,9 +32,9 @@ } }, "dev": { - "version": "112.0.5615.12", - "sha256": "1kkpfaqr3rzxlj7kn2l8gchvq17w03mcf3aajqv193jazcb083ci", - "sha256bin64": "1ci3vmr6q665rp8h7b1y7gmkv4zczjw5ryf0yycwfcll087ym6g6", + "version": "112.0.5615.20", + "sha256": "0qxifnc2xk2zkmpzc1pzd95ym3i829qzgzd83qh7ah9p64c76f9y", + "sha256bin64": "0yvgwh8mmm42jp2cgi3kz9mq7gdcna3cf61ripgpqd8bf34fb6rx", "deps": { "gn": { "version": "2023-02-17", From 48dad033bbbd540fa0e397efd0175ab1ce522dd6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 08:59:17 +0100 Subject: [PATCH 06/36] python310Packages.aioairzone: 0.5.2 -> 0.5.3 Diff: https://github.com/Noltari/aioairzone/compare/refs/tags/0.5.2...0.5.3 Changelog: https://github.com/Noltari/aioairzone/releases/tag/0.5.3 --- pkgs/development/python-modules/aioairzone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioairzone/default.nix b/pkgs/development/python-modules/aioairzone/default.nix index 73f77b517a5c..6a08ba9e814f 100644 --- a/pkgs/development/python-modules/aioairzone/default.nix +++ b/pkgs/development/python-modules/aioairzone/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "aioairzone"; - version = "0.5.2"; + version = "0.5.3"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -16,7 +16,7 @@ buildPythonPackage rec { owner = "Noltari"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-x4OtYUJjRDSDd0FzlbMf7syjUIVxKsqgEfRWS1wgvPo="; + hash = "sha256-A2jk8gXqKeQ3b2p9/bkPat1NdhUOFdJCZeSFg//D/hA="; }; propagatedBuildInputs = [ From 9984b263bf82339258d405d4e7754df669384eab Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:00:41 +0100 Subject: [PATCH 07/36] exploitdb: 2023-03-08 -> 2023-03-09 --- pkgs/tools/security/exploitdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index a91af3fdef8b..20f4cf1c1093 100644 --- a/pkgs/tools/security/exploitdb/default.nix +++ b/pkgs/tools/security/exploitdb/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2023-03-08"; + version = "2023-03-09"; src = fetchFromGitLab { owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-pUFgjdVEtvIJu1BBLQRwtL3IqJYZ6iZ8MttfWhscg20="; + hash = "sha256-GOO8IQUWfgqD8pjynfIz4McAqr/F1JF0uN6aeOOqQyA="; }; nativeBuildInputs = [ From 88e9562f2c4027dd961e55b084877be2c1750fe0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:00:46 +0100 Subject: [PATCH 08/36] python310Packages.peaqevcore: 12.2.7 -> 13.0.0 --- pkgs/development/python-modules/peaqevcore/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/peaqevcore/default.nix b/pkgs/development/python-modules/peaqevcore/default.nix index 03591377a07e..fa762998489d 100644 --- a/pkgs/development/python-modules/peaqevcore/default.nix +++ b/pkgs/development/python-modules/peaqevcore/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "peaqevcore"; - version = "12.2.7"; + version = "13.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-CtOicqS4PBDcsLrIyu3vek5Gi73vfE2vZfIo83mJgS4="; + hash = "sha256-uQ5e85KHFaJCgpALFCYVs+nY0fZIE4UIYdNOn6VrIWM="; }; postPatch = '' From 6cbc7d9832e977099270619396270f19fef07ea2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:02:12 +0100 Subject: [PATCH 09/36] python310Packages.pymazda: 0.3.7 -> 0.3.8 --- pkgs/development/python-modules/pymazda/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pymazda/default.nix b/pkgs/development/python-modules/pymazda/default.nix index 7515c8fe9d2a..186d5ed03ff0 100644 --- a/pkgs/development/python-modules/pymazda/default.nix +++ b/pkgs/development/python-modules/pymazda/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "pymazda"; - version = "0.3.7"; + version = "0.3.8"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-1xreFjoHmdMirpxjVya30cw31fBaCPt877yqTr9By+A="; + sha256 = "sha256-CBPBmzghuc+kvBt50qmU+jHyUdGgLgNX3jcVm9CC7/Q="; }; propagatedBuildInputs = [ From 9fd32c52cc4c26009da39236831819ea16a084ed Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:07:00 +0100 Subject: [PATCH 10/36] python310Packages.identify: 2.5.18 -> 2.5.19 Diff: https://github.com/pre-commit/identify/compare/v2.5.18...v2.5.19 --- pkgs/development/python-modules/identify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/identify/default.nix b/pkgs/development/python-modules/identify/default.nix index 061b20a835da..c51b268d861a 100644 --- a/pkgs/development/python-modules/identify/default.nix +++ b/pkgs/development/python-modules/identify/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "identify"; - version = "2.5.18"; + version = "2.5.19"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "pre-commit"; repo = pname; rev = "v${version}"; - sha256 = "sha256-Pf9/mjbyC859WT8ZreFq5u6YER/tRgsQuqIgt6mdPqE="; + sha256 = "sha256-+EY2x9PQ8MQsvLg4p1Oki5JLqYHatTsANLBwqS1y7kw="; }; nativeCheckInputs = [ From 2e61c703f29259d23fb796813ed04867d3caadaf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:08:22 +0100 Subject: [PATCH 11/36] python310Packages.rns: 0.4.9 -> 0.5.0 Diff: https://github.com/markqvist/Reticulum/compare/refs/tags/0.4.9...0.5.0 Changelog: https://github.com/markqvist/Reticulum/releases/tag/0.5.0 --- pkgs/development/python-modules/rns/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/rns/default.nix b/pkgs/development/python-modules/rns/default.nix index 453a6e8e953f..b808a407abaa 100644 --- a/pkgs/development/python-modules/rns/default.nix +++ b/pkgs/development/python-modules/rns/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "rns"; - version = "0.4.9"; + version = "0.5.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "markqvist"; repo = "Reticulum"; rev = "refs/tags/${version}"; - hash = "sha256-6hv85lWr2/qRzLrER6IYdmcvgiPKi1tt4fQaiqGwFQY="; + hash = "sha256-mkCICKuo9NYkfjjbuDInq+ENwZsQJMf5C1HS+8nafJI="; }; propagatedBuildInputs = [ From 3da4f828a0533cfcdc75a449963d7d552f84303e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:09:20 +0100 Subject: [PATCH 12/36] python310Packages.scmrepo: 0.1.13 -> 0.1.15 Diff: https://github.com/iterative/scmrepo/compare/refs/tags/0.1.13...0.1.15 Changelog: https://github.com/iterative/scmrepo/releases/tag/0.1.15 --- pkgs/development/python-modules/scmrepo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scmrepo/default.nix b/pkgs/development/python-modules/scmrepo/default.nix index c61bc4a8ce14..d8c04f10d6e5 100644 --- a/pkgs/development/python-modules/scmrepo/default.nix +++ b/pkgs/development/python-modules/scmrepo/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "scmrepo"; - version = "0.1.13"; + version = "0.1.15"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "iterative"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-/KUPePiy3ROZY+orJYZQLiAaQ5kY5eAe4v1hOS5Zmck="; + hash = "sha256-Z/W49P1T8XgCmKWLTO/eI7ArAB9QKWUbJWRTlRnjJ7E="; }; postPatch = '' From de4707810d0eb970b073ce584906b9752b2d1971 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:21:00 +0100 Subject: [PATCH 13/36] python310Packages.screenlogicpy: 0.8.0 -> 0.8.1 Diff: https://github.com/dieselrabbit/screenlogicpy/compare/refs/tags/v0.8.0...v0.8.1 Changelog: https://github.com/dieselrabbit/screenlogicpy/releases/tag/v0.8.1 --- pkgs/development/python-modules/screenlogicpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/screenlogicpy/default.nix b/pkgs/development/python-modules/screenlogicpy/default.nix index 24529b63a5d1..90d179bffad4 100644 --- a/pkgs/development/python-modules/screenlogicpy/default.nix +++ b/pkgs/development/python-modules/screenlogicpy/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "screenlogicpy"; - version = "0.8.0"; + version = "0.8.1"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "dieselrabbit"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-VZ2WZpty7PXxU0uqJ/dftUNBW3QEIXrLghKxsW9lsgE="; + hash = "sha256-cnQ3YqVz0AfEVma/RfQuB5kOBxo59qJJBn7PwaEe8Ro="; }; propagatedBuildInputs = [ From d6e52d26b092036423beb029e67283e6fa9c4768 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 09:38:05 +0100 Subject: [PATCH 14/36] shell-genie: specify license --- pkgs/applications/misc/shell-genie/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/misc/shell-genie/default.nix b/pkgs/applications/misc/shell-genie/default.nix index 7225eb4c3fc0..d800a24ead2f 100644 --- a/pkgs/applications/misc/shell-genie/default.nix +++ b/pkgs/applications/misc/shell-genie/default.nix @@ -40,8 +40,7 @@ buildPythonPackage rec { meta = with lib; { description = "Describe your shell commands in natural language"; homepage = "https://github.com/dylanjcastillo/shell-genie"; - # https://github.com/dylanjcastillo/shell-genie/issues/3 - license = licenses.unfree; + license = licenses.mit; maintainers = with maintainers; [ onny ]; }; } From 2aa9921403ddc795344a3af7f891ddde7f48bc83 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 9 Mar 2023 08:54:47 +0000 Subject: [PATCH 15/36] datree: 1.8.33 -> 1.8.36 --- pkgs/development/tools/datree/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/datree/default.nix b/pkgs/development/tools/datree/default.nix index 83e9d2d9877e..753cbfeef577 100644 --- a/pkgs/development/tools/datree/default.nix +++ b/pkgs/development/tools/datree/default.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "datree"; - version = "1.8.33"; + version = "1.8.36"; src = fetchFromGitHub { owner = "datreeio"; repo = "datree"; rev = "refs/tags/${version}"; - hash = "sha256-pyu8umkR8ncDVkSLJbxqnLFRlZQR29GnkCSxDNHQUGg="; + hash = "sha256-h3Bfdd5v8lder5N+75P/u9rSxxhvpw5mf/T4bNYWdOY="; }; vendorHash = "sha256-mkVguYzjNGgFUdATjGfenCx3h97LS3SEOkYo3CuP9fA="; From e2b1f289a30addca193722c525e1a8cfd7b421ce Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 9 Mar 2023 10:25:51 +0100 Subject: [PATCH 16/36] python310Packages.timeago: 1.0.15 -> 1.0.16 Diff: https://github.com/hustcc/timeago/compare/1.0.15...1.0.16 --- pkgs/development/python-modules/timeago/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/timeago/default.nix b/pkgs/development/python-modules/timeago/default.nix index fa89cff6ebe8..6a84d909f363 100644 --- a/pkgs/development/python-modules/timeago/default.nix +++ b/pkgs/development/python-modules/timeago/default.nix @@ -6,13 +6,13 @@ buildPythonPackage rec { pname = "timeago"; - version = "1.0.15"; + version = "1.0.16"; src = fetchFromGitHub { owner = "hustcc"; repo = pname; rev = version; - sha256 = "03vm7c02l4g2d1x33w382i1psk8i3an7xchk69yinha33fjj1cag"; + sha256 = "sha256-PqORJKAVrjezU/yP2ky3gb1XsM8obDI3GQzi+mok/OM="; }; nativeCheckInputs = [ From fe12faba4d9e8d57aea0d2940d756bbd44c7370f Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Thu, 9 Mar 2023 07:21:35 -0300 Subject: [PATCH 17/36] Revert "Merge pull request #217317 from atorres1985-contrib/remove-bqn-mode" This reverts commit aff38799b1d407bfb346f329b44541a4b2f5b16e, reversing changes made to 573ed79d1bc8806070b9e7b073a06e0ee6c402b5. According to the bug reported at https://github.com/NixOS/nixpkgs/pull/217317#issuecomment-1458621144, the Emacs package ligo-mode returns an unexpected hash. --- .../emacs/elisp-packages/elpa-generated.nix | 79 +- .../emacs/elisp-packages/manual-packages.nix | 2 + .../manual-packages/bqn-mode/default.nix | 22 + .../emacs/elisp-packages/nongnu-generated.nix | 6 +- .../elisp-packages/recipes-archive-melpa.json | 1918 ++++++++--------- 5 files changed, 1004 insertions(+), 1023 deletions(-) create mode 100644 pkgs/applications/editors/emacs/elisp-packages/manual-packages/bqn-mode/default.nix diff --git a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix index 6ee95f860a6d..41329ec143e0 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix @@ -366,21 +366,6 @@ license = lib.licenses.free; }; }) {}; - beframe = callPackage ({ elpaBuild, emacs, fetchurl, lib }: - elpaBuild { - pname = "beframe"; - ename = "beframe"; - version = "0.1.11"; - src = fetchurl { - url = "https://elpa.gnu.org/packages/beframe-0.1.11.tar"; - sha256 = "1r5wlg2xaih197fi3jk0qmnhpy7mc6xrwraxfnygsjwr63dxhnq2"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://elpa.gnu.org/packages/beframe.html"; - license = lib.licenses.free; - }; - }) {}; bind-key = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "bind-key"; @@ -1674,16 +1659,16 @@ license = lib.licenses.free; }; }) {}; - erc = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: + erc = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "erc"; ename = "erc"; - version = "5.5"; + version = "5.4.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/erc-5.5.tar"; - sha256 = "02649ijnpyalk0k1yq1dcinj92awhbnkia2x9sdb9xjk80xw1gqp"; + url = "https://elpa.gnu.org/packages/erc-5.4.1.tar"; + sha256 = "0hghqwqrx11f8qa1zhyhjqp99w01l686azsmd24z9w0l93fz598a"; }; - packageRequires = [ compat emacs ]; + packageRequires = [ emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/erc.html"; license = lib.licenses.free; @@ -2627,10 +2612,10 @@ elpaBuild { pname = "kind-icon"; ename = "kind-icon"; - version = "0.2.0"; + version = "0.1.9"; src = fetchurl { - url = "https://elpa.gnu.org/packages/kind-icon-0.2.0.tar"; - sha256 = "1vgwbd99vx793iy04albkxl24c7vq598s7bg0raqwmgx84abww6r"; + url = "https://elpa.gnu.org/packages/kind-icon-0.1.9.tar"; + sha256 = "0phssrcpmcidzlwy1577f3f02qwjs6hpavb416302y0n8kkhwvli"; }; packageRequires = [ emacs svg-lib ]; meta = { @@ -3062,10 +3047,10 @@ elpaBuild { pname = "modus-themes"; ename = "modus-themes"; - version = "4.1.1"; + version = "3.0.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/modus-themes-4.1.1.tar"; - sha256 = "06lp7mpazby7iiwzw4naym983plg9r63ba9vmaszh3609d2gm0s9"; + url = "https://elpa.gnu.org/packages/modus-themes-3.0.0.tar"; + sha256 = "1c3rls175nmc4n01hfzwqxv2nhyv8n6i8d4pv93k28z6c30n8lhs"; }; packageRequires = [ emacs ]; meta = { @@ -3746,10 +3731,10 @@ elpaBuild { pname = "phps-mode"; ename = "phps-mode"; - version = "0.4.42"; + version = "0.4.39"; src = fetchurl { - url = "https://elpa.gnu.org/packages/phps-mode-0.4.42.tar"; - sha256 = "040wrmz9wl0x86vdgzyfdwxdciscd94v9nfgfz0ir2ghwhw6j9x3"; + url = "https://elpa.gnu.org/packages/phps-mode-0.4.39.tar"; + sha256 = "0wixalji4c4hjqb41n1yvxfy3qfl2ipfsjawbgk9wdwb7jkhjr1i"; }; packageRequires = [ emacs ]; meta = { @@ -3836,10 +3821,10 @@ elpaBuild { pname = "posframe"; ename = "posframe"; - version = "1.4.0"; + version = "1.3.3"; src = fetchurl { - url = "https://elpa.gnu.org/packages/posframe-1.4.0.tar"; - sha256 = "0pqy7scdi3qxj518xm0bbr3979byfxqxxh64wny37xzhd4apsw5j"; + url = "https://elpa.gnu.org/packages/posframe-1.3.3.tar"; + sha256 = "07hgbhvhwj6zfhlg6znavwrj3gp7cv4c758chrhkvk33a3slhw6b"; }; packageRequires = [ emacs ]; meta = { @@ -4437,10 +4422,10 @@ elpaBuild { pname = "shell-command-plus"; ename = "shell-command+"; - version = "2.4.2"; + version = "2.4.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/shell-command+-2.4.2.tar"; - sha256 = "1ldvil6hjs8c7wpdwx0jwaar867dil5qh6vy2k27i1alffr9nnqm"; + url = "https://elpa.gnu.org/packages/shell-command+-2.4.1.tar"; + sha256 = "1pbv5g58647gq83vn5pg8c6kjhvjn3lj0wggz3iz3695yvl8aw4i"; }; packageRequires = [ emacs ]; meta = { @@ -4911,10 +4896,10 @@ elpaBuild { pname = "taxy-magit-section"; ename = "taxy-magit-section"; - version = "0.12.2"; + version = "0.12.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/taxy-magit-section-0.12.2.tar"; - sha256 = "1pf83zz5ibhqqlqgcxig0dsl1rnkk5r6v16s5ngvbc37q40vkwn1"; + url = "https://elpa.gnu.org/packages/taxy-magit-section-0.12.1.tar"; + sha256 = "0bs00y8pl51dji23zx5w64h6la0y109q0jv2q1nggizk6q5bsxmg"; }; packageRequires = [ emacs magit-section taxy ]; meta = { @@ -5050,10 +5035,10 @@ elpaBuild { pname = "tramp"; ename = "tramp"; - version = "2.6.0.2"; + version = "2.6.0.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/tramp-2.6.0.2.tar"; - sha256 = "0pfrsgci1rqrykkfyxm9wsn7f0l3rzc2vj1fas27w925l0k0lrci"; + url = "https://elpa.gnu.org/packages/tramp-2.6.0.1.tar"; + sha256 = "1mxkl8v40wdcyvsyjayw9yj7ghn5zrnzgaapwh1prxs42scw85x8"; }; packageRequires = [ emacs ]; meta = { @@ -5155,10 +5140,10 @@ elpaBuild { pname = "triples"; ename = "triples"; - version = "0.2.6"; + version = "0.2.3"; src = fetchurl { - url = "https://elpa.gnu.org/packages/triples-0.2.6.tar"; - sha256 = "09vr8r78vpycpxglacbgy2fy01khmvhh42panilwz2n9nhjy6xzm"; + url = "https://elpa.gnu.org/packages/triples-0.2.3.tar"; + sha256 = "1p6vijaab3a7h9lqlxxhyipwd9rkr15r3rm0iyxxanlcggi04a39"; }; packageRequires = [ emacs seq ]; meta = { @@ -5426,10 +5411,10 @@ elpaBuild { pname = "vertico-posframe"; ename = "vertico-posframe"; - version = "0.7.2"; + version = "0.7.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/vertico-posframe-0.7.2.tar"; - sha256 = "1sbgg0syyk24phwzji40lyw5dmwxssgvwv2fs8mbmkhv0q44f9ny"; + url = "https://elpa.gnu.org/packages/vertico-posframe-0.7.1.tar"; + sha256 = "18a65hnacavy375ry5qmfj454b10h2yg9p6wbx1wdx30fwpi247a"; }; packageRequires = [ emacs posframe vertico ]; meta = { diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix index a7e8721f75b8..950160593a63 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix @@ -9,6 +9,8 @@ in agda2-mode = callPackage ./manual-packages/agda2-mode { }; + bqn-mode = callPackage ./manual-packages/bqn-mode { }; + cask = callPackage ./manual-packages/cask { }; control-lock = callPackage ./manual-packages/control-lock { }; diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/bqn-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/bqn-mode/default.nix new file mode 100644 index 000000000000..6430e56ef730 --- /dev/null +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/bqn-mode/default.nix @@ -0,0 +1,22 @@ +{ lib +, trivialBuild +, fetchFromGitHub +}: + +trivialBuild { + pname = "bqn-mode"; + version = "0.pre+date=2022-09-14"; + + src = fetchFromGitHub { + owner = "museoa"; + repo = "bqn-mode"; + rev = "3e3d4758c0054b35f047bf6d9e03b1bea425d013"; + hash = "sha256:0pz3m4jp4dn8bsmc9n51sxwdk6g52mxb6y6f6a4g4hggb35shy2a"; + }; + + meta = with lib; { + description = "Emacs mode for BQN programming language"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sternenseemann AndersonTorres ]; + }; +} diff --git a/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix index c4ad89429c82..801148d32fe9 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix @@ -3182,10 +3182,10 @@ elpaBuild { pname = "xah-fly-keys"; ename = "xah-fly-keys"; - version = "22.12.20230301220803"; + version = "22.9.20230207171612"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-22.12.20230301220803.tar"; - sha256 = "0m1wyhxqsih7777hchjk4v742ar16frdjvxyspa72az881yinv5g"; + url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-22.9.20230207171612.tar"; + sha256 = "0m633k8rx2k3gwbh3hndkmn3k804pg7j7xmqw6yf8j2a2ym4893b"; }; packageRequires = [ emacs ]; meta = { diff --git a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json index 04a04cec07da..61557a95e1c7 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json +++ b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json @@ -204,11 +204,11 @@ "repo": "ymarco/auto-activating-snippets", "unstable": { "version": [ - 20230303, - 2214 + 20220930, + 52 ], - "commit": "ddc2b7a58a2234477006af348b30e970f73bc2c1", - "sha256": "03rqj11xdkspxcx2zjd71fnk7lpcjr0lws0i729qhsi1nr98jjn4" + "commit": "e92b5cffa4e87c221c24f3e72ae33959e1ec2b68", + "sha256": "1nl7wm4l30hjcbqrvdci66aa6ax32ih46n58q3imc46z8c6rhqxh" }, "stable": { "version": [ @@ -1061,8 +1061,8 @@ "repo": "xcwen/ac-php", "unstable": { "version": [ - 20230224, - 1507 + 20220701, + 253 ], "deps": [ "dash", @@ -1072,8 +1072,8 @@ "s", "xcscope" ], - "commit": "35eeaa3aaf1a38b183783dc693012242c7dd2053", - "sha256": "0mvmib4yscpahj7zq1w88x6gdf80y482icwdv5pr7ai3ysvb70b9" + "commit": "dc563f4b1efeac8ae75f217532f4c99b4ba417de", + "sha256": "188hisppjbpia3bmrpsxvkfi8xkirisarnrpvkk3ya4k8lv4z13p" }, "stable": { "version": [ @@ -1917,14 +1917,14 @@ "repo": "minad/affe", "unstable": { "version": [ - 20230301, - 337 + 20230215, + 715 ], "deps": [ "consult" ], - "commit": "21a6c74157b02388f429e8d5f8c910d04aa16f08", - "sha256": "0yrmz7nlclizx7z90xx8c66bqlmi43iphx3sagqrmasik671a2rj" + "commit": "69d9d05200dbf9058b3ae14e37f52944718374d7", + "sha256": "1p5hqlkhl1vi2m1wpjhzv38jbs5b1c4ji4nqsiyc37h3mp05nbbc" }, "stable": { "version": [ @@ -2556,14 +2556,14 @@ "repo": "iyefrat/all-the-icons-completion", "unstable": { "version": [ - 20230224, - 1610 + 20221130, + 2354 ], "deps": [ "all-the-icons" ], - "commit": "b08f053cee444546ab44a05fd541f59e8bc8983b", - "sha256": "1mfdhiv70ay7mlcvm6aibjx8fa9vdy75al4rmdkcms9wf9qv0g3l" + "commit": "4da28584a1b36b222e0e78d46fd8d46bbd9116c7", + "sha256": "0b5m1djwhfbjakfda72ybqrw3rzmrq154yfpv4p8wgxknc5xjxfr" } }, { @@ -3694,19 +3694,19 @@ "repo": "radian-software/apheleia", "unstable": { "version": [ - 20230225, - 1931 + 20230219, + 100 ], - "commit": "ffa8d5865118bb33299a429e9c25577a79410542", - "sha256": "0rcga3nq1ly5xg61zv3jxgqi0krxk86c24wcrij4vzidhn0s9ncn" + "commit": "972b9906bf6d23f5a8e92129a4572a906bdfe45e", + "sha256": "1zjnhgkjhgg58c486k6a0p3kns9kap0lfk538059r65nrv4mkbzp" }, "stable": { "version": [ 3, - 2 + 1 ], - "commit": "ffa8d5865118bb33299a429e9c25577a79410542", - "sha256": "0rcga3nq1ly5xg61zv3jxgqi0krxk86c24wcrij4vzidhn0s9ncn" + "commit": "5286b1c61c82755e9486cb210524ceed038b265f", + "sha256": "1145zh7nqadgz5r2llwjwgj2aciv08mn2cpp3zlf0rf3awg86yg7" } }, { @@ -4510,15 +4510,15 @@ "repo": "alpha22jp/atomic-chrome", "unstable": { "version": [ - 20230304, - 112 + 20220723, + 113 ], "deps": [ "let-alist", "websocket" ], - "commit": "f1b077be7e414f457191d72dcf5eedb4371f9309", - "sha256": "01024ikcy23hkxjpy6qlsa8sj3cyf4p3igx5i31qkq21dm7b8xqv" + "commit": "061958ab96c31085b5daf449b1d826b052777b59", + "sha256": "0jfmw11d18v8qjcqcfkcmq66ccaa97jq7y5v7m67kf2hcawxk2a4" }, "stable": { "version": [ @@ -6031,11 +6031,11 @@ "repo": "vutran1710/Ayu-Theme-Emacs", "unstable": { "version": [ - 20230225, - 1600 + 20200521, + 1157 ], - "commit": "16fc8d8085ca7763915fecd782ad11a596ca5773", - "sha256": "01ipwi06hqhz8zac4gc3gqjfcb3bsbx6armkf2zy31hjpz9b59kh" + "commit": "ed98a9f41d9f0e08458ee71cc1038f66c50e1979", + "sha256": "1qdw9pq1daydky0b94x248q27sjzaxpfw9d027xk6ygi9hksvcsk" } }, { @@ -6263,10 +6263,10 @@ }, { "ename": "baidu-translate", - "commit": "ffd4c67ca8cf6b45427cefa42c642399bdc86295", - "sha256": "1zmibqy35k31hmq345ryhzhg2r114wa5gl52v0b68x10v7288j5a", + "commit": "ccfcd6624cfcfa242f18c3d81127e09b34c333a3", + "sha256": "1icsbbwar20qv0cpy3qssmbnwwjm07nqn126a0vb3yyv9amh76xl", "fetcher": "github", - "repo": "suxiaogang223/baidu-translate", + "repo": "LiShiZhensPi/baidu-translate", "unstable": { "version": [ 20211130, @@ -6393,11 +6393,11 @@ "repo": "szermatt/emacs-bash-completion", "unstable": { "version": [ - 20230302, - 1959 + 20230208, + 1903 ], - "commit": "91d51ede0d9424766a0c174890a331385390f7fa", - "sha256": "00v492mnz663mhw1dzimsvswpqz9aipyp1fachjqsmgld2vh5b19" + "commit": "25611eed1e086c4e8cdd335dbd38b1d796be5b8d", + "sha256": "0hqqb7dprwbyhjmymknxcixwqk13fm6aninbjhlaxgwv93i2ghfb" }, "stable": { "version": [ @@ -6915,20 +6915,20 @@ "repo": "DamienCassou/beginend", "unstable": { "version": [ - 20230303, - 754 + 20220824, + 1605 ], - "commit": "61f1eb22718fcd9796b47a98702d161ff323a532", - "sha256": "0a5nr3zwcb36nw4j7xzknvd14gxp52ilgs07hddcjjyxmhrrfmav" + "commit": "d0aec04c05911a0d47b34625959e1950ead4e4bd", + "sha256": "17m0dv2z8yf3cnc9fbvxcbg6mbk9vycws38rw6x5b05dg4vpi1pf" }, "stable": { "version": [ 2, - 4, + 3, 0 ], - "commit": "61f1eb22718fcd9796b47a98702d161ff323a532", - "sha256": "0a5nr3zwcb36nw4j7xzknvd14gxp52ilgs07hddcjjyxmhrrfmav" + "commit": "62c75804ba7d74f4c01c0629722c061c11bed393", + "sha256": "17r8v1sjvgcmprywny9fdg54x4pssp8p7a9ivv5mrygkqjz1vykk" } }, { @@ -7757,11 +7757,11 @@ "repo": "pythonic-emacs/blacken", "unstable": { "version": [ - 20230224, - 1336 + 20220922, + 2045 ], - "commit": "1e80b970b130d5c33031f2539c89eb2f13da2572", - "sha256": "0v3ny3mrnx4b1aghg7nk62hgvv6qm7lbagh7p07hysf9m1241pcg" + "commit": "456596e00f8277eafd9a08c62a71df06e8cad2c5", + "sha256": "0ii9gib5r18cbjgg1l54m0va1c176hvv07rfn4vzwyfksrbibl4i" }, "stable": { "version": [ @@ -7804,26 +7804,26 @@ "repo": "Artawower/blamer.el", "unstable": { "version": [ - 20230304, - 907 + 20230113, + 2009 ], "deps": [ "posframe" ], - "commit": "a8c4b8c3c8b3add17b10b7323c86228e322513c3", - "sha256": "1wn89161rrad6sc3fqimic2nrvj78i12hq5v0a2lykzb510xvmk6" + "commit": "d1d5f2dc4d9cd5a47c47b55abb1f3b38911cc2d0", + "sha256": "1djp0bdgbzlhxcajvw7znj68i64finilch24kzrxh96panaami3c" }, "stable": { "version": [ 0, - 6, + 5, 1 ], "deps": [ "posframe" ], - "commit": "85a7b2d203a8a505edd9977953fd7e902948c3ed", - "sha256": "0g7kslmlq97ys86w7zjdp5fzxmxjx5plp7h1f24rwgszmppki3v7" + "commit": "d1d5f2dc4d9cd5a47c47b55abb1f3b38911cc2d0", + "sha256": "1djp0bdgbzlhxcajvw7znj68i64finilch24kzrxh96panaami3c" } }, { @@ -8314,16 +8314,16 @@ "repo": "jyp/boon", "unstable": { "version": [ - 20230304, - 1502 + 20230214, + 2035 ], "deps": [ "dash", "expand-region", "multiple-cursors" ], - "commit": "1e85d6a11a756519dd4632b1bb2029a1e9c61f5a", - "sha256": "1dkhlmx567c1qys6c2bi18aqj0iqikhicb3phkjhwri340rkr40x" + "commit": "786cf085a9af60083279297c599d5ea0f744efba", + "sha256": "142gj7mxr8kg412y6xkicwicsy9y7jc3pjsmmnx3x4c7msh3hkqi" }, "stable": { "version": [ @@ -8571,21 +8571,6 @@ "sha256": "0n88kj3n8dqa7bi6y762apz88w8riqm56vnlqj0i7zcbjwxyddbd" } }, - { - "ename": "brec-mode", - "commit": "344abaffa2bb5fab9c30a769e9ab91dd47f187db", - "sha256": "0yyayymrgv1naqfnf0yjp468np0234wclmjgk757i0kj9f734q6x", - "fetcher": "github", - "repo": "Michael-Allan/Breccia.Emacs", - "unstable": { - "version": [ - 20230227, - 1146 - ], - "commit": "8672af3d473985b4ccd1d06a41ab74bf0d745655", - "sha256": "0bp4jry9ys984wzm7bvyg305jnf252hdqr7j1rhddla37pjdaz5i" - } - }, { "ename": "brf", "commit": "203e7d21e2387866107740ead4ec28787d82ebfb", @@ -8662,16 +8647,16 @@ "repo": "rmuslimov/browse-at-remote", "unstable": { "version": [ - 20230223, - 554 + 20230118, + 407 ], "deps": [ "cl-lib", "f", "s" ], - "commit": "1c2a565bb7275bf78f23d471e32dd8c696523b8c", - "sha256": "1vyybg5yvhm0b1cz7sll6x314iqwvk2zk96pv18nb1bga2nk775q" + "commit": "c020975a891438e278ad1855213d4f3d62c9fccb", + "sha256": "0g78l8jkwxmnpiwjk3yjbd7528mywwh26i3zzgy9a3904fv37rcw" }, "stable": { "version": [ @@ -10077,17 +10062,16 @@ "repo": "beacoder/call-graph", "unstable": { "version": [ - 20230222, - 525 + 20230220, + 226 ], "deps": [ - "beacon", "hierarchy", "ivy", "tree-mode" ], - "commit": "5fd5f3aad35e3561c253870e4d7fa34353b70b7b", - "sha256": "1x4s5h4qpw3cm2bqnpwz0fkpznbs2fyvdk2zssbikwn9wxvpfapi" + "commit": "18a96dbabbedcd9e55817af7b6a0f303aea09faa", + "sha256": "1xdb2fiyavhxn7m5gg5b7vr8fydlzdriz0ckhsr95v19vjylkwg4" }, "stable": { "version": [ @@ -10113,11 +10097,11 @@ "repo": "caldwell/calmer-forest-theme", "unstable": { "version": [ - 20230302, - 2149 + 20130926, + 510 ], - "commit": "09fc50730ea386d3589863f8809e02e5bdd459cf", - "sha256": "02r4526p0cdxlza39xy982ajkza3pywm0p02zv8vszri584nxcc3" + "commit": "31a0bed8e5db1e314557175a719a10804ac089f4", + "sha256": "1rqd46ngnjln6vvcx7vsmwsjn4r3wfdpip6gqjqbsznav2g74bra" } }, { @@ -10593,11 +10577,11 @@ "repo": "catppuccin/emacs", "unstable": { "version": [ - 20230223, - 808 + 20230221, + 737 ], - "commit": "cc450390d0b3a8fdbb032ee96deb0aeaa1984ce0", - "sha256": "0a182x3jzn4vkk5z2wlc7hahrvf1mdcp8mpn057w8v4gck6af5rl" + "commit": "046358639b3b6948f0779a16bef51cec44c606c3", + "sha256": "01r3xpx55i4wwk2xzrl3y7ajckkwzpxlyx4ccpzn0l3rl8dbsw9c" }, "stable": { "version": [ @@ -11718,16 +11702,16 @@ "repo": "contrapunctus/chronometrist", "unstable": { "version": [ - 20230302, - 700 + 20230203, + 557 ], "deps": [ "dash", "seq", "ts" ], - "commit": "015524bbeb4a112db7bb2af813408cc3c5c93240", - "sha256": "19gp6bcsinw8f52gasbg2c46v6sny3s0m5j5h37wrdj4khif1xz0" + "commit": "f131e996320715238e8403439a18dbc016b09520", + "sha256": "1p25way281k6ygkws1fmkz2z9imcj7p82n6zlrlfjz37192d8saq" }, "stable": { "version": [ @@ -11881,8 +11865,8 @@ "repo": "clojure-emacs/cider", "unstable": { "version": [ - 20230226, - 1413 + 20230218, + 915 ], "deps": [ "clojure-mode", @@ -11892,8 +11876,8 @@ "sesman", "spinner" ], - "commit": "2e213f92d7bd84da9bf3826a42edb43a4e2fe7b3", - "sha256": "1mzp1pvy481x5i35cvdhvn421fvfzyf2pjr78xbkj8bdavkcskc5" + "commit": "1ed5163433c991c00ea83fdd4447e8daf4aeccbe", + "sha256": "1r8arjpzl12fzd5j27xdgvqk33srs0cl0nrp9lm54zhqzxc7gbw2" }, "stable": { "version": [ @@ -12191,16 +12175,16 @@ "repo": "emacs-citar/citar", "unstable": { "version": [ - 20230227, - 2247 + 20230218, + 2016 ], "deps": [ "citeproc", "org", "parsebib" ], - "commit": "5c4310321cd955b89951f8109a573c001d830bd3", - "sha256": "159cspnzfz0fk4pb90fil1pp844zvwp02k4wnhvspq4p82j5qd29" + "commit": "5dac3d5bf287566f049b44465e415afb42f30ec3", + "sha256": "03ypp4kb6h0x2i3g22mq2vynybmd39qzfg0s31k9bx3dbxxf2j1b" }, "stable": { "version": [ @@ -12318,8 +12302,8 @@ "repo": "andras-simonyi/citeproc-el", "unstable": { "version": [ - 20230228, - 1414 + 20230125, + 1818 ], "deps": [ "dash", @@ -12330,8 +12314,8 @@ "s", "string-inflection" ], - "commit": "290320fc579f886255f00d7268600df7fa5cc7e8", - "sha256": "131b6jcyyry4qpv536n4llf8d5xc3a98qq49rvsp0sqwipqhx4qs" + "commit": "2623043b2546ee09a4bd86641870ca86332c0bcf", + "sha256": "1f2bcshnccfbvbnkhnynkdpszrs4zb3z82hqrrdp9hf3ig3h5750" }, "stable": { "version": [ @@ -13289,15 +13273,15 @@ "repo": "magit/closql", "unstable": { "version": [ - 20230224, - 1619 + 20230220, + 1944 ], "deps": [ "compat", "emacsql" ], - "commit": "0a7226331ff1f96142199915c0ac7940bac4afdd", - "sha256": "1769a96nkfxlczx4sbzqab1xnn2540mwbwrcrcaxq72h3akrciq8" + "commit": "b670b88c6f2785ddfdff91439ceb332b1bf8a8ce", + "sha256": "0hffljz4353id5y7ps2saw9gsclyj1ishpvfa4vclpc9kg7mw58n" }, "stable": { "version": [ @@ -13470,11 +13454,11 @@ "url": "https://gitlab.kitware.com/cmake/cmake.git", "unstable": { "version": [ - 20230301, - 1443 + 20230215, + 1434 ], - "commit": "6c0b3d2b7e3cfdf62e895d6827f103e2b3fd8ef8", - "sha256": "0alnv9ffivjc0a7v96fv6h7xhh6mfpvp1dwcna823f6lfg7ncki5" + "commit": "037975ef69a0e889f9c17e5e6e6fb87111dfd9df", + "sha256": "18gwgqr71rn2klfw7b1bcbsisbrsk40pr3x832k84x9wyx6vb0ip" }, "stable": { "version": [ @@ -13482,10 +13466,10 @@ 26, 0, -1, - 5 + 3 ], - "commit": "6c0b3d2b7e3cfdf62e895d6827f103e2b3fd8ef8", - "sha256": "0alnv9ffivjc0a7v96fv6h7xhh6mfpvp1dwcna823f6lfg7ncki5" + "commit": "037975ef69a0e889f9c17e5e6e6fb87111dfd9df", + "sha256": "18gwgqr71rn2klfw7b1bcbsisbrsk40pr3x832k84x9wyx6vb0ip" } }, { @@ -13553,20 +13537,20 @@ "repo": "tumashu/cnfonts", "unstable": { "version": [ - 20230228, - 631 + 20230216, + 803 ], - "commit": "ca8ea16ac3a6faec4ff4cd20514e7d2cffdd70a2", - "sha256": "1xxdwvphz2nk08k92g0xaxj0g77hj2b3myp13gw129np7czpdr3d" + "commit": "4b1bbf854009992858e86a19de49b8dc91e924eb", + "sha256": "1sab7az9rqzylvay5ai8k2rg656hqd0ga4qwsy2plnmn0fx9iv24" }, "stable": { "version": [ 1, - 1, + 0, 0 ], - "commit": "f42f417e84af020e6dfd51ebb4b1c605001b96b6", - "sha256": "156qj5dkipa5a3f3scldf1mcfvmp1g199ds2wyi6jk5gqfv73zsd" + "commit": "102f808e500715e0cfb80905110d1f42aa7b6069", + "sha256": "1vim429ikgsh7zvh521af39xgmm6qb3fc3pwb51458fj010gf8pj" } }, { @@ -13909,14 +13893,14 @@ "repo": "ankurdave/color-identifiers-mode", "unstable": { "version": [ - 20230302, - 226 + 20230210, + 2047 ], "deps": [ "dash" ], - "commit": "1bc474bdbb1086a73638effde51f37a9da748173", - "sha256": "113nnfi8jdxp7a8m7jjsn0ww2fqymk2ai4nzfdxzdfsk0q0bp49y" + "commit": "9fd09481bbcdb35712d974d5bc3667f5a5900ddb", + "sha256": "0rj860ypsr9w9i1bq8wf8ssj54yxb3kp0q5wp0b67nh27qycywx5" }, "stable": { "version": [ @@ -14496,11 +14480,11 @@ "repo": "company-mode/company-mode", "unstable": { "version": [ - 20230303, - 2331 + 20230209, + 134 ], - "commit": "83c408b187b957f5939ee814de68d46993247d4f", - "sha256": "1h2k8vq1sv75ga17i4lr1iiq9g3csjg65fbqqna4scv7vhkqkbw1" + "commit": "2ca3e29abf87392714bc2b26e50e1c0f4b9f4e2c", + "sha256": "1z73yn7jyjxm4lf3d3r65rb549w8npjdba6iaxqawf2a8hkwjgy2" }, "stable": { "version": [ @@ -16535,8 +16519,8 @@ "repo": "necaris/conda.el", "unstable": { "version": [ - 20230228, - 322 + 20230221, + 1603 ], "deps": [ "dash", @@ -16544,8 +16528,8 @@ "pythonic", "s" ], - "commit": "f90598f54af78469e61497560ddad05344810a35", - "sha256": "0m3fgvj415nr5ziafbc3km3kqlzifgxkpjwjbdd9xld871d83v1y" + "commit": "28f51e49fd25abff14c1b46dea196a90a77ced64", + "sha256": "1wvlpsz68m4nq499nhyspg5xls2ib5sxcha3mf7vn13kyl994si6" }, "stable": { "version": [ @@ -16699,14 +16683,14 @@ "repo": "minad/consult", "unstable": { "version": [ - 20230228, - 1346 + 20230218, + 1212 ], "deps": [ "compat" ], - "commit": "5b2b9f572a9046d3235b4fae0e70ef129f735a26", - "sha256": "12aypq3d6xm115q94wrk5qkzkxgqisdwq56blf96zv5c2gkj64cf" + "commit": "ffaaf6da909dc9ff766e5a5f16eb265635aa6149", + "sha256": "16id9w0fiavr08g9lq5am0ary7ba7p900ilf4gnkizabgji0padi" }, "stable": { "version": [ @@ -16728,26 +16712,26 @@ "repo": "yadex205/consult-ag", "unstable": { "version": [ - 20230227, - 406 + 20220419, + 1721 ], "deps": [ "consult" ], - "commit": "9eb4df265aedf2628a714610c2ade6d2f21de053", - "sha256": "1gjyxahz0mi2yf1zxwlnlyai331dq7pbw7n12c6mpk4wxqk709sf" + "commit": "2460ae6829e86c9f1186a852304d919526838cb8", + "sha256": "0f5m66xgmm306ifh794q65wm4wwyayfgvm9fn1kip7aj86n0snfh" }, "stable": { "version": [ 0, - 2, - 0 + 1, + 2 ], "deps": [ "consult" ], - "commit": "25d7a2a8fafbaa956610023e4ca17389294773fd", - "sha256": "0im966lbr3jwq6kif8cdx0sbxxjkl046vnsj7yhi1847kqb749ji" + "commit": "2460ae6829e86c9f1186a852304d919526838cb8", + "sha256": "0f5m66xgmm306ifh794q65wm4wwyayfgvm9fn1kip7aj86n0snfh" } }, { @@ -17127,15 +17111,15 @@ "repo": "jgru/consult-org-roam", "unstable": { "version": [ - 20230301, - 1555 + 20230209, + 833 ], "deps": [ "consult", "org-roam" ], - "commit": "ede01c2710836f055351d2ef0d9fac70b885ac65", - "sha256": "05crx412wnffz2069l44py4acnp3qv04zg0279z427il24lincd4" + "commit": "8f9f122627a6b4e1613401b06d707e3efdb3c2d0", + "sha256": "1wni3lsjlkhs76wx27np74qhs3k8hwq98yn6vfnkb9h4dg7d8ll0" } }, { @@ -17534,6 +17518,24 @@ "sha256": "1rq0j6ds9snv21k2lzyja96qxxz8nrai5aj1k1si9zshld28mapx" } }, + { + "ename": "corfu-doc", + "commit": "78440eba5512b37243de24364afd5d7f46f8fcca", + "sha256": "0vi12khc9c9gcz8lagw75zkx377f7f6qdlgjr6rg37nd3ip4pkj0", + "fetcher": "github", + "repo": "galeo/corfu-doc", + "unstable": { + "version": [ + 20221128, + 1533 + ], + "deps": [ + "corfu" + ], + "commit": "0e6125cd042506a048feb7b6446a5653eccfcff5", + "sha256": "1cpx9flv6m10h1rganjmbccc289c4hzss9kd9mw6krsxiik65xl7" + } + }, { "ename": "corfu-prescient", "commit": "72a84587636e291bee48d7e9ad5723791ad02d7e", @@ -18799,11 +18801,11 @@ "repo": "crystal-lang-tools/emacs-crystal-mode", "unstable": { "version": [ - 20230223, - 2257 + 20221008, + 1847 ], - "commit": "ea2da3c7701542ca4cf703c7c29eb783269d18f6", - "sha256": "11dxr6152gpns08blxzmz1vnhnsjdyz1sgr8k6sq86phc1r0lplq" + "commit": "9bfb9f0f566e937cc6a2f2913d1b56978b81dc99", + "sha256": "0d81b296ifn65h29cplvlznqjq8955a4kpsj9kyiwmg44v88afzv" }, "stable": { "version": [ @@ -19856,8 +19858,8 @@ "repo": "emacs-lsp/dap-mode", "unstable": { "version": [ - 20230226, - 1910 + 20230220, + 1618 ], "deps": [ "bui", @@ -19870,8 +19872,8 @@ "posframe", "s" ], - "commit": "2cff309019de6b49e8508b2b07e1a6c043d3df5f", - "sha256": "08j4rlmi74v3g7plwja0cvd1jl9yi3rzc2lzqhl4fa7nb1z0iq0y" + "commit": "f5a8f240d85ec4cfe87314a5ac0c245b60a7dfe0", + "sha256": "08d815lfx89wd9dligy3q9j89jhjzkcy4fffmnq0xpjdfnvmjd5n" }, "stable": { "version": [ @@ -20206,11 +20208,11 @@ "repo": "emacs-dashboard/emacs-dashboard", "unstable": { "version": [ - 20230227, - 1853 + 20230220, + 1916 ], - "commit": "243a5006d16f004d1a72b2e2e459e28ca0206fd3", - "sha256": "1vvyggwd1vakvcw9i9fsm53dwx338s2682qpssr8ikhqs1hx7abx" + "commit": "221ee4b77db77199380c519c4ba52c06abc725e9", + "sha256": "19qkly4k0j326kd4979cn1z35jpjnnbbmycxdp4v2i5h7hp76954" }, "stable": { "version": [ @@ -20604,16 +20606,16 @@ "repo": "Wilfred/deadgrep", "unstable": { "version": [ - 20230301, - 636 + 20230201, + 2329 ], "deps": [ "dash", "s", "spinner" ], - "commit": "ce8a6fa1952213aa4b79a7f1fc972541ccb0ae75", - "sha256": "1irwr8pjl5261a3zcmfcywmj9rcfbc8gv58wq1mpwa3wy3dvry9v" + "commit": "0d3e0725a7fe605978692076ab1d8f1870d8a269", + "sha256": "07n6f4axckxvl59ccmfsbzcn1qkaxw145274bs4izscc9x27ss07" }, "stable": { "version": [ @@ -21357,14 +21359,14 @@ "repo": "psibi/dhall-mode", "unstable": { "version": [ - 20230228, - 1005 + 20220519, + 1115 ], "deps": [ "reformatter" ], - "commit": "87ab69fe765d87b3bb1604a306a8c44d6887681d", - "sha256": "1h55bcn0csy7xacl6lqhr3vfva208rszjn15gsfq0pbwhx4n6zhx" + "commit": "c77f1c1e75b6d2725019c5275fc102ae98d25628", + "sha256": "0b0pahi122rnfqpjk2svdcyywka2md6sch609d0x7vqlpylk66dx" } }, { @@ -21681,11 +21683,11 @@ "repo": "mgalgs/diffview-mode", "unstable": { "version": [ - 20230224, - 1916 + 20220322, + 2334 ], - "commit": "8f07c0ff4a1acef990589df0d3e32288f19c9d71", - "sha256": "05jg0p5qrs77h59mq8mi6fxil8djcb53w3raj441avsywzziigvy" + "commit": "bba07de698b519c143bffb57143a780b3dac299d", + "sha256": "1hq0rx397i5vqjk69m5d7lq9qk8acnd05abxmma86nzq89xi3ba2" }, "stable": { "version": [ @@ -22862,11 +22864,11 @@ "repo": "purcell/diredfl", "unstable": { "version": [ - 20230224, - 1302 + 20220508, + 805 ], - "commit": "17e805763d57370c4eff2c92ed257b72eeb9f94a", - "sha256": "0p9fznvblw6md37lgqjpyw8ifvgp513v2sgfyh6sqwpvzz0zl80g" + "commit": "62b559e1d6b69834a56a57eb1832ac6ad4d2e5d0", + "sha256": "18ggh4x7gqdnrdaknd4vkd34jgi8aw5s7r3a2xv54p8z22ipxrhh" }, "stable": { "version": [ @@ -23273,9 +23275,9 @@ }, { "ename": "display-wttr", - "commit": "f09bbadd59823e05964c5608ee96ce3bdcee1dc1", - "sha256": "036d8339h71vikld4psyihsw8fwspp854ll3g20ka1k0625csn8x", - "fetcher": "sourcehut", + "commit": "a60a6643b6d8a5691d48b47c31eb560e0f793d26", + "sha256": "1lhnv2cqff22z7d7n2sx7pqvskyg5fbiax2dhfznf2xjmqh22lzi", + "fetcher": "github", "repo": "josegpt/display-wttr", "unstable": { "version": [ @@ -23768,8 +23770,8 @@ "repo": "Silex/docker.el", "unstable": { "version": [ - 20230302, - 2046 + 20221023, + 1201 ], "deps": [ "aio", @@ -23778,8 +23780,8 @@ "tablist", "transient" ], - "commit": "4a308e6b2184a1b7745df5a8b8adafb29b3f7157", - "sha256": "0fa61yfr7bys4cmhhkkcpdbczn19x0b3gqyybhdfpn4cqsrfr83d" + "commit": "cc0046e6a557dce0ccc4108dd22e04f21ba8b0dc", + "sha256": "11l8jpqj6m04ndhnfz41nhph1rqjvqbfd5vw334mph776aq1baln" }, "stable": { "version": [ @@ -24127,15 +24129,15 @@ "repo": "seagle0128/doom-modeline", "unstable": { "version": [ - 20230303, - 847 + 20230219, + 1605 ], "deps": [ "compat", "shrink-path" ], - "commit": "c705089c8dd689e7d19edd3c148571cee2fb2864", - "sha256": "1wyvp58wzssk38ibmy0c2d3207nwpfv46lh6y07a7yh9hh6adwzc" + "commit": "6125309c2caa3c98591a4c802e9b4dd2f7ea83e9", + "sha256": "1klyfazdqxy2kdb72mbaxy0ravpfikw030q61rbbhl47sp41yxrv" }, "stable": { "version": [ @@ -24706,19 +24708,19 @@ "repo": "jscheid/dtrt-indent", "unstable": { "version": [ - 20230302, - 2151 + 20220725, + 849 ], - "commit": "07364ae07301f6f0a1713a8dff520c813849ffb3", - "sha256": "0rpl48rdmgi7rsv6kgl048vfafnfcqwmvb46ibm9z3wjxsmfg131" + "commit": "d4fd1b4977eb0d534844fddf01c3c51c70c57205", + "sha256": "16g4bv2py423l19n0kaz18a41wk5fsrpnqzifdss6amqh0dqyvmf" }, "stable": { "version": [ 1, - 9 + 8 ], - "commit": "07364ae07301f6f0a1713a8dff520c813849ffb3", - "sha256": "0rpl48rdmgi7rsv6kgl048vfafnfcqwmvb46ibm9z3wjxsmfg131" + "commit": "d4fd1b4977eb0d534844fddf01c3c51c70c57205", + "sha256": "16g4bv2py423l19n0kaz18a41wk5fsrpnqzifdss6amqh0dqyvmf" } }, { @@ -25397,11 +25399,11 @@ "repo": "earthly/earthly-emacs", "unstable": { "version": [ - 20230302, - 1709 + 20221018, + 355 ], - "commit": "a242a4d68ebefce81879823c54155e0a04d3ea4a", - "sha256": "1wycm065l60jviqvy5a5qkkcq5xdfnb8bhjcgq15ip93ks6p4bgi" + "commit": "0427c367768ab52c359c34941ed13dbf419d74d7", + "sha256": "01s1srcc1qp9x74gdjha1cmr1fjv1fbwjd2h4rk74alyrhhzhwn5" } }, { @@ -25622,14 +25624,14 @@ "repo": "joostkremers/ebib", "unstable": { "version": [ - 20230221, - 2204 + 20230211, + 2228 ], "deps": [ "parsebib" ], - "commit": "5a03e4662dccbffe63605bb8e88bfb691ebe0afa", - "sha256": "0yakr2ai341nzhvibs3r7z06wjf0wnzwdavvagklwciq693w2hz7" + "commit": "abe6ed461b334673001b930f7e30752aa8aff526", + "sha256": "03vn16nrsap8sdy4bindjr3sr1xqy8w9vffy5a970ksygfdv2j14" }, "stable": { "version": [ @@ -26159,14 +26161,14 @@ "repo": "editorconfig/editorconfig-emacs", "unstable": { "version": [ - 20230302, - 831 + 20230212, + 617 ], "deps": [ "nadvice" ], - "commit": "e1a391a618ec33d157822dbcc51d010559289f1a", - "sha256": "1w39abjjrig030330jhs12qg1gaphh4llmriii60smkwqw01aaf1" + "commit": "2d13945c8d4c0ceee1c9310a2c1c4375f88a3b1e", + "sha256": "12v6jj6nlql00xn76x080y3cb3331zr7k83pk04v67l6wlh9l813" }, "stable": { "version": [ @@ -26763,16 +26765,16 @@ "repo": "kostafey/ejc-sql", "unstable": { "version": [ - 20230228, - 102 + 20230219, + 605 ], "deps": [ "clomacs", "dash", "spinner" ], - "commit": "29308faad38e9cabd98fb5a8450df15db1e4a4cb", - "sha256": "0n3fwhj760d4cvlarkmnmys303iahrk5643wypc7p0qaai181z3c" + "commit": "c9a602efd4b3a1b607c630e55e3124d4a63048fb", + "sha256": "0pnkg8m4ba8nmxc77lcb316hnjhl205jsdfr29gls8qidlfhxwwn" }, "stable": { "version": [ @@ -26813,14 +26815,14 @@ "repo": "ahyatt/ekg", "unstable": { "version": [ - 20230304, - 619 + 20230221, + 602 ], "deps": [ "triples" ], - "commit": "f19f25279cab76d025f710ce3d373b92f9fad0ca", - "sha256": "1lmh6f0bnil197lr9pr7rka84b0ja5b42khnvqlzw30gd1b446n6" + "commit": "cb3dfbf8c6faa0aa95f603b855eb37260acdc89d", + "sha256": "1za8smby0sshl0icfjqwh6rlwvjzj0mflhf4pwnhynf5n7p3jdjg" } }, { @@ -27010,11 +27012,11 @@ "repo": "radian-software/el-patch", "unstable": { "version": [ - 20230226, - 2230 + 20230219, + 214 ], - "commit": "c4a1b435181596fe71e18b2422e07e693b75203c", - "sha256": "0sspbrnkks4bl16jz5bqdwgb75qh0kjv8j09cwr54axbd51mf078" + "commit": "ad8b18578d224cf8ebb1cce9a3b1b5a3d93a0e69", + "sha256": "0w97dqmn5imqpnwrsp442k23bssx07s5r29xspp00rwp4kjdggwa" }, "stable": { "version": [ @@ -27292,11 +27294,11 @@ "repo": "Mstrodl/elcord", "unstable": { "version": [ - 20230303, - 457 + 20230203, + 101 ], - "commit": "e97283f8cdc3ca16a0179a14c78f1ba6e93cef80", - "sha256": "1pknwkvf7bvcmy048bpybyrgf1mnw3575mphycjn6r8x9glj073y" + "commit": "43ae6c375811754e640b0bae4678bf33e72988e9", + "sha256": "03ljcpy7bf08l0zdrq27h2h2mf92rwc8yv26w8bl4gam83ypkk1c" } }, { @@ -27365,11 +27367,11 @@ "repo": "casouri/eldoc-box", "unstable": { "version": [ - 20230228, - 237 + 20221205, + 638 ], - "commit": "16fbf1f17f09a8308d5e5df3a3a97277baa5736a", - "sha256": "100dlzzwaf09i3vp0dj8maf1is0pnp3r21iix41ymxrfcafx6hi1" + "commit": "5c067f5c195198ffd16df2f455da95e46cc8ce02", + "sha256": "12vl8a5xqz1cbi9bg3i7h7rjb1kgwdbfin6pn7zvzajfmg0pi2qf" }, "stable": { "version": [ @@ -28034,11 +28036,11 @@ "repo": "ideasman42/emacs-elisp-autofmt", "unstable": { "version": [ - 20230223, - 2328 + 20230221, + 1124 ], - "commit": "70f7070f4e79db4117892a2c5291d101b84c0710", - "sha256": "023c32anhia1j1ici7b4g92scps16mv160k03s1q7dgf430lw5ry" + "commit": "153785d7e7d392ae07fe0f91a8ba3af6dd6d7df6", + "sha256": "1q1xbgwbsd2ma7axlajhkq20z446wk5x9an60wynsxshnsjxrlfy" } }, { @@ -28825,8 +28827,8 @@ "repo": "emacs-elsa/Elsa", "unstable": { "version": [ - 20230304, - 1228 + 20230220, + 2011 ], "deps": [ "cl-lib", @@ -28835,8 +28837,8 @@ "lsp-mode", "trinary" ], - "commit": "2126a72f6d5d632741d9f5209997fb4f11133fd7", - "sha256": "0ldf83nddj7fixd5wplbhfh9vw3a684rzbxd24qbb23nsivhpqim" + "commit": "2776cd0c0617f99cac2da3da764d2f221f62ff2a", + "sha256": "12f7svl0nikgqja87xwqhm5xw47sqwmx86f9lx90yadacw8v71qw" } }, { @@ -29140,17 +29142,17 @@ }, { "ename": "emacsql", - "commit": "2e40e3364a5dec38672753093c28ae97d85de189", - "sha256": "0chvx5y58zabp690fvxxizmvc8px62vqb88xq0s1qmi4k7w08bad", + "commit": "4872ef038dbbf67008bfa7951574ee372d6ff68d", + "sha256": "0mip1v0mrp7b538i949q9jrqlk9sl3i0qxa4jmm99llrs82mmdj0", "fetcher": "github", "repo": "magit/emacsql", "unstable": { "version": [ - 20230228, - 1040 + 20230221, + 1532 ], - "commit": "415dbfd846f46d921a70a351695f0d0e8f75da35", - "sha256": "01px4ybaywc4yl3cgry6f6anl8j4wgzr72ii7bqzvhc8yv5ml4g6" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29170,14 +29172,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230225, - 2205 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "b436adf09ebe058c28e0f473bed90ccd7084f6aa", - "sha256": "1wc3j33cjshsckwk2s7xnfill6l5j5hnn0w03hqw2k81dfqvb8hc" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29200,15 +29202,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230224, - 1201 + 20230221, + 1532 ], "deps": [ "emacsql", "pg" ], - "commit": "7c533fb6c27c3a10b6ab05bddf663e37c109e459", - "sha256": "1jmcxj8hx7900pfg7hlpdfln3higvfl7as931ry5zb2wla5wc76l" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29232,14 +29234,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230225, - 2205 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "b436adf09ebe058c28e0f473bed90ccd7084f6aa", - "sha256": "1wc3j33cjshsckwk2s7xnfill6l5j5hnn0w03hqw2k81dfqvb8hc" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29262,14 +29264,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230225, - 2205 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "b436adf09ebe058c28e0f473bed90ccd7084f6aa", - "sha256": "1wc3j33cjshsckwk2s7xnfill6l5j5hnn0w03hqw2k81dfqvb8hc" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29292,14 +29294,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230224, - 1201 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "7c533fb6c27c3a10b6ab05bddf663e37c109e459", - "sha256": "1jmcxj8hx7900pfg7hlpdfln3higvfl7as931ry5zb2wla5wc76l" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" } }, { @@ -29310,15 +29312,45 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230224, - 1201 + 20230221, + 1532 ], "deps": [ "emacsql", "sqlite3" ], - "commit": "7c533fb6c27c3a10b6ab05bddf663e37c109e459", - "sha256": "1jmcxj8hx7900pfg7hlpdfln3higvfl7as931ry5zb2wla5wc76l" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" + } + }, + { + "ename": "emacsql-sqlite3", + "commit": "402d5f088111264aaca5196da9ca3ffada3220c6", + "sha256": "0kb92kgbhxllyx72igxlky5kzp9z8175zw9m8irxjb8x523sf499", + "fetcher": "github", + "repo": "cireu/emacsql-sqlite3", + "unstable": { + "version": [ + 20220304, + 1014 + ], + "deps": [ + "emacsql" + ], + "commit": "2113618732665f2112cb932a66c0e89c404d8777", + "sha256": "0r8svrd0d4cflx8a8gkynnhafcpv3ksn9rds8dhyx5yibximbzsw" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "emacsql" + ], + "commit": "50aa9bdd76b0d18bf80526cff13a69fe306ee29c", + "sha256": "1jzvvsvi8jm2ws3y49nmpmwd3zlvf8j83rl2vwizd1aplwwdnmd6" } }, { @@ -29425,14 +29457,14 @@ "repo": "oantolin/embark", "unstable": { "version": [ - 20230301, - 1415 + 20230219, + 1700 ], "deps": [ "compat" ], - "commit": "a6ea648cac9edc06b60b9b08f9b2b2c392163bd9", - "sha256": "0qn02yk9gk3knsq6kwbkkjpcr5zf0b1v24faj1fxbh1s009n8wbn" + "commit": "8e7c53a8ec6969a8d54a22c7cb76f15e2e7fa3f9", + "sha256": "0dj0qds3mqc7bi4z945519q260mc0jrkmwjh6cz74dlw4csd0c1a" }, "stable": { "version": [ @@ -30026,11 +30058,11 @@ "repo": "isamert/empv.el", "unstable": { "version": [ - 20230226, - 2322 + 20230203, + 2159 ], - "commit": "4e42b9b066ff0cd970328d769d736655be635e7e", - "sha256": "1yjsqp00d1r3b7ykrcysgii09nywm4mampzcnh7fk00bhbmcsdlw" + "commit": "a45a2a01a7e629c9126b444d952fe71bcc9a262f", + "sha256": "04hndxiq5k3zgh0wq8xcn8dzf65fg9zjqb9gav9w53dq3l236h81" }, "stable": { "version": [ @@ -30436,8 +30468,8 @@ "repo": "emacscollective/epkg", "unstable": { "version": [ - 20230222, - 1304 + 20230220, + 1945 ], "deps": [ "closql", @@ -30445,8 +30477,8 @@ "emacsql", "llama" ], - "commit": "62f4763fdf6d372d0fa28ad18d5ae84112798c61", - "sha256": "0drx1svf0szqjlqb5x01kb8rgrjyjh27b3pvrvcbjx0yiaplmpw0" + "commit": "576ba9fedc360d2f7dfb724f9f767cc4688e5b7f", + "sha256": "1ghx8y814wi09zi3fa19nmxw7b0v6fp4mb49ibf46608k0vndq0y" }, "stable": { "version": [ @@ -32106,11 +32138,11 @@ "repo": "emacs-ess/ESS", "unstable": { "version": [ - 20230302, - 2111 + 20221204, + 1348 ], - "commit": "86d1bce8b53522a5939924960025799e66d9414e", - "sha256": "074drba1z8h0cidj7y657905lpkxp7ysds3iipl1nz24lfx6s28n" + "commit": "b6aefb9ca231c3cbb1a6532b8afa4022c2678f81", + "sha256": "0xjj842cxqg6lka9h4a0qamdjc0iifnhcddpdafarbssh2qaxiys" }, "stable": { "version": [ @@ -32739,15 +32771,15 @@ "repo": "emacs-evil/evil", "unstable": { "version": [ - 20230304, - 949 + 20230220, + 1805 ], "deps": [ "cl-lib", "goto-chg" ], - "commit": "2b2ba3cbeabe1f239b6b0ebdaddcb68dd158bd1f", - "sha256": "018kdczyp7aq89xwwim6mr3mk60a4wdj27radkl0va5xqkgbdscd" + "commit": "22d76a4080e40381aae194c94f3bc16ba67a330a", + "sha256": "110gdl73jfy0r28vs34bipyq692h2v1wfinrgkpak1s09zwcmnd3" }, "stable": { "version": [ @@ -32940,15 +32972,15 @@ "repo": "emacs-evil/evil-collection", "unstable": { "version": [ - 20230226, - 2219 + 20230214, + 1800 ], "deps": [ "annalist", "evil" ], - "commit": "4d10a2d3305bbe28c1e11a059e3e9c8d2cdaad01", - "sha256": "0w014pa2qfd88zq4ihsz80lgshhfya61mncafnjxbf5rz2c5cxls" + "commit": "aaf3e0038e9255659fe0455729239c08498c4c0b", + "sha256": "1791240px7n98k18cxsi2shdbjiayn80r20y86qdmb8j82rpdqcn" }, "stable": { "version": [ @@ -35190,11 +35222,11 @@ "url": "https://repo.or.cz/external-dict.el.git", "unstable": { "version": [ - 20230228, - 828 + 20221210, + 407 ], - "commit": "68ab3e5f78239774d1710874e8a68e3f8498cee3", - "sha256": "09nxvrpz26kszc57lba6acial7196vc68rh23x12jqr9mrri6vhi" + "commit": "a9ceb6c2e12df460ce1686d47cafd88f212d0291", + "sha256": "1sdnzdph6gck2ghmafad10xc99avj7i01ad2r9r6iixhpa5qbpb9" } }, { @@ -35768,11 +35800,11 @@ "repo": "ideasman42/emacs-fancy-compilation", "unstable": { "version": [ - 20230223, - 2309 + 20230109, + 536 ], - "commit": "d5d790dee6b07f866d203c5c174440ec8a2b2215", - "sha256": "0x2b5fp6f4klsnpwdgls99b1jdch1z0yqy69bgrpr51bd1axshkd" + "commit": "889e77c899cbf28673915b7b0161d45734bfdcb7", + "sha256": "1zxynjsa6h0nvlkrvbdrzvqkxq10sggsg62lpaf1gzx1wqshhfq4" } }, { @@ -36764,8 +36796,8 @@ "repo": "LaurenceWarne/finito.el", "unstable": { "version": [ - 20230225, - 1326 + 20230116, + 1124 ], "deps": [ "async", @@ -36776,8 +36808,8 @@ "s", "transient" ], - "commit": "c8143ff6d32d13f809688800e761250b113d1b0f", - "sha256": "05gwxb8w1d2kwp9yd7pcr7pqzmbal0yhkiwxqqf28m9j2vrcyn3n" + "commit": "286bea5b4f27d906aa7fe71baa35c8f2bf55c286", + "sha256": "0g8sg0d1d6p9lwxnb0agj3cjnhqwyxgddqpvpi271l2hvvdaq7y0" }, "stable": { "version": [ @@ -37638,8 +37670,8 @@ "repo": "flycheck/flycheck", "unstable": { "version": [ - 20230226, - 6 + 20230218, + 2135 ], "deps": [ "dash", @@ -37647,8 +37679,8 @@ "pkg-info", "seq" ], - "commit": "2f73050144e1ec0aca312cbe37aee3233ba45217", - "sha256": "1nhyq2n2j5k0p067cvh6qj93p8174zzq0mi11qan6df4ha231hg4" + "commit": "55614401a955e73f5c0f05c0e098d9e717e3116d", + "sha256": "1ywsdyzagwzrj0mjifn4yzyv5xxgaxrr865rxrp6dj474h054dnj" }, "stable": { "version": [ @@ -38503,28 +38535,28 @@ "repo": "falcosecurity/flycheck-falco-rules", "unstable": { "version": [ - 20230302, - 2340 + 20230213, + 1603 ], "deps": [ "flycheck", "let-alist" ], - "commit": "1ad301d497ade9556327053ca571ee51bf0c0633", - "sha256": "0z1p2np23gmd07ssaaf9mp4halazf79fldmirff09m1zckcan5p9" + "commit": "ba359f2d5968df47a100e78758f280fe0c965f07", + "sha256": "03w6alsvp7bcb2qpgva9w67c1xdbcgfgan6kfzmf6shrni93gldk" }, "stable": { "version": [ - 1, 0, - 0 + 9, + 1 ], "deps": [ "flycheck", "let-alist" ], - "commit": "1ad301d497ade9556327053ca571ee51bf0c0633", - "sha256": "0z1p2np23gmd07ssaaf9mp4halazf79fldmirff09m1zckcan5p9" + "commit": "ba359f2d5968df47a100e78758f280fe0c965f07", + "sha256": "03w6alsvp7bcb2qpgva9w67c1xdbcgfgan6kfzmf6shrni93gldk" } }, { @@ -40602,11 +40634,11 @@ "repo": "orzechowskid/flymake-eslint", "unstable": { "version": [ - 20230301, - 1441 + 20221002, + 2307 ], - "commit": "82b1345c699172b6092e13be2c4cc10551d88b90", - "sha256": "0clwrn05hkc45y46q76xv25bp2gdnrk9c96n43fzxadzhw8ivv7p" + "commit": "efbf9e1fcc6ba4959c4ad0435742c96099f4f96f", + "sha256": "0qmfwfi818l8v18srkbz7hsq59wdklgdlqx1q6824qjndbrb41nq" }, "stable": { "version": [ @@ -41599,20 +41631,20 @@ "repo": "shaohme/flymake-yamllint", "unstable": { "version": [ - 20230226, - 1024 + 20220531, + 913 ], - "commit": "020d2a33568c8069801db9dd6992b8961a58de8d", - "sha256": "0ccq6j8x43arxm43rys1mcfppmq60zlfp5hbznxbzy208jck47rv" + "commit": "f269e6614993f3c56d545e7d7b225ca2ba1da342", + "sha256": "0pw2c22nvy4fkcqbhkrj94q66sx7ggcan26wvy9z6wp04qzaiva8" }, "stable": { "version": [ 0, 1, - 5 + 4 ], - "commit": "0134f9f864749f30f8ea3c6a86865b35d4352cea", - "sha256": "00ys5k6xx3wcccj37n326749ypifc43dafjp28kmqgf218lrfng4" + "commit": "f269e6614993f3c56d545e7d7b225ca2ba1da342", + "sha256": "0pw2c22nvy4fkcqbhkrj94q66sx7ggcan26wvy9z6wp04qzaiva8" } }, { @@ -42314,8 +42346,8 @@ "repo": "magit/forge", "unstable": { "version": [ - 20230222, - 1917 + 20230220, + 1945 ], "deps": [ "closql", @@ -42329,8 +42361,8 @@ "transient", "yaml" ], - "commit": "ba35ffc9bafc6457cc95633904e53e34e544543f", - "sha256": "1s7mdprdl2rd9cwnig854gypxqgpyl4xy824vly3lp0rffw7n9v7" + "commit": "3164739dc70ee5ecf05d87dba9dc803d62a89adf", + "sha256": "01mxlikyxjl9q4gc5bp0i5vy2jvg7fc9ramilajgx37yf7nf5gn2" }, "stable": { "version": [ @@ -42385,15 +42417,15 @@ "repo": "lassik/emacs-format-all-the-code", "unstable": { "version": [ - 20230223, - 2008 + 20221210, + 1608 ], "deps": [ "inheritenv", "language-id" ], - "commit": "c6f33e6efb55b5e5112d3d1366fea910d3629de2", - "sha256": "07xrrkiz0mxkw4hn92j3f19ghpwljbxnkbmq77yi6mlah7lrgcqa" + "commit": "c156ffe5f3c979ab89fd941658e840801078d091", + "sha256": "0h6sv36psl9rp1xvg5xzz4w2c7xlrz5iykivf7cfnq5g48aqsihs" }, "stable": { "version": [ @@ -43534,11 +43566,11 @@ "repo": "bling/fzf.el", "unstable": { "version": [ - 20230224, - 1236 + 20230114, + 403 ], - "commit": "f90ee73f9427ddce396fdca93a5be1ea04e56a1b", - "sha256": "1zyqwd81mpc0xy63s5rkbj8r33ljd0i8bz2iqd5j7a7y26ym9r5z" + "commit": "1d80e76df0899e26196aea150c29fba95fc73ed6", + "sha256": "075v5ypn4clkgg9jb4jd9xrw3ldy7sz5f2vryf5kniwm8zhs85yi" }, "stable": { "version": [ @@ -43799,14 +43831,14 @@ "repo": "emacs-geiser/geiser", "unstable": { "version": [ - 20230228, - 345 + 20230120, + 1738 ], "deps": [ "project" ], - "commit": "bd12f2dc6c5949e260f094fb60737498cd0ae9a5", - "sha256": "16qi3vk1yps4f5v98ipdl5kq0jq5qlnlpx8c598csj9yk86p1hsw" + "commit": "e54d5e6dc659c252d10c4280f4c4d78d38623df5", + "sha256": "13q78d6pgmv7nmv0c4nfggbf29l624q73sycz3gr6hqng6kdlsvb" }, "stable": { "version": [ @@ -43829,25 +43861,25 @@ "repo": "emacs-geiser/chez", "unstable": { "version": [ - 20230228, - 2253 + 20221027, + 137 ], "deps": [ "geiser" ], - "commit": "04ab4387fed68659f21377dbe74513edac2fd134", - "sha256": "19yv5brhzf10hsazmm8s1b058d434hv60a52s08m3kxyrkwr5sca" + "commit": "d64687c46dcd12aa3225a0fa38269f79a248dfb0", + "sha256": "0hjbml8jmix32wpzjlb9wh8kkbvzzr3lrj4nrm8srnp2zibyqw4q" }, "stable": { "version": [ 0, - 18 + 17 ], "deps": [ "geiser" ], - "commit": "04ab4387fed68659f21377dbe74513edac2fd134", - "sha256": "19yv5brhzf10hsazmm8s1b058d434hv60a52s08m3kxyrkwr5sca" + "commit": "48427d4aecc6fed751d266673f1ce2ad57ddbcfc", + "sha256": "03fc9ahb0pmznkcnxzgpni4clj1zgky6vaqkc94nf8b8swniwkm9" } }, { @@ -44594,16 +44626,16 @@ "repo": "magit/ghub", "unstable": { "version": [ - 20230301, - 1402 + 20230212, + 2209 ], "deps": [ "compat", "let-alist", "treepy" ], - "commit": "6a5de97649ff3eca9aa20b79f3526b4b3ab86b13", - "sha256": "1xn95k8fd55q5z5kv3bzhvivvgk860gxsvsrav8s7d5clrvl5ilm" + "commit": "47b7dc9bb299d50647cd24efebaf41dbc07d9e90", + "sha256": "0k9zx62cwcb3pribmj1s4f7v7d4rg3msnscv1y2pjf2x740a1vj9" }, "stable": { "version": [ @@ -46472,11 +46504,11 @@ "repo": "emacs-gnuplot/gnuplot", "unstable": { "version": [ - 20230224, - 926 + 20230218, + 1717 ], - "commit": "9a31a12903cd3d9eb413948ef206023917c0d469", - "sha256": "1g3gnbb684rhclwprrx1jm81wsn0l65zkw6zcy8mpgk0ryx1nkhz" + "commit": "663a89d263d4f26b996796d01b6a3b783449e0f5", + "sha256": "0s0k18ibi4b2vn6l7rwdk79g6ck6xafxzzbja8a8y0r8ljfssfgb" }, "stable": { "version": [ @@ -47314,11 +47346,11 @@ "repo": "lorniu/go-translate", "unstable": { "version": [ - 20230304, - 644 + 20230112, + 1532 ], - "commit": "cb8002277d44c6b548f7e924fa1715706b5f986a", - "sha256": "1ca7pcvfzl69qc1zsvx2ifz2za88hb79vvckaw924pxqzabrcix9" + "commit": "e8343e7d41af67f55c2da9231fb275a93382a4c8", + "sha256": "0f8d96pz676bl1b8rh2wxhdw1incaf691rkdlwzyzsar51c11dj9" }, "stable": { "version": [ @@ -47985,30 +48017,6 @@ "sha256": "1vg4sc6j0i03riwzvj8pg333fihj4g2nwd3pgahjfkxps7fbmlqv" } }, - { - "ename": "gptai", - "commit": "24a96bdf7802aacded56d84e8824d9394335a309", - "sha256": "15m3nxlgzw0was6c3f3wmq6zw98fx47ga7dlxsb5wl3pnpr8nxnc", - "fetcher": "github", - "repo": "antonhibl/gptai", - "unstable": { - "version": [ - 20230227, - 1036 - ], - "commit": "a8de3ae18fc0fcec220a236165a81dfdc042d79a", - "sha256": "0drg83jnsly60mms9l0jl50wlffv4nc810pgh6fggr1is6yq96nk" - }, - "stable": { - "version": [ - 1, - 0, - 0 - ], - "commit": "fde04c9905de2a7ded5a1590e8296fee801d313a", - "sha256": "1jb8v4fdx5kaf6jckzpfckpmkb6isl3jj8lcijh1wxcjwj7wdyjj" - } - }, { "ename": "grab-mac-link", "commit": "e4cc8a72a9f161f024ed9415ad281dbea5f07a18", @@ -48138,6 +48146,38 @@ "sha256": "1jpfyqnqd8nj0g8xbiw4ar2qzxx3pvhwibr6hdzhyy9mmc4yzdgk" } }, + { + "ename": "grails-projectile-mode", + "commit": "35d49029c1f665ad40e543040d98d5a770bfea96", + "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", + "fetcher": "github", + "repo": "yveszoundi/grails-projectile-mode", + "unstable": { + "version": [ + 20160327, + 1324 + ], + "deps": [ + "cl-lib", + "projectile" + ], + "commit": "8efca50ce92b556fe9d467b157d7aec635bcc017", + "sha256": "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "deps": [ + "cl-lib", + "projectile" + ], + "commit": "8efca50ce92b556fe9d467b157d7aec635bcc017", + "sha256": "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1" + } + }, { "ename": "grammarly", "commit": "6bfa47f73110bdf2ca1b223dbed16f73c08a12f2", @@ -48348,11 +48388,11 @@ "repo": "ppareit/graphviz-dot-mode", "unstable": { "version": [ - 20230227, - 2008 + 20230213, + 1945 ], - "commit": "3199817b54ffd6644b9c1c3fdd2d9317bf95a152", - "sha256": "19jj3j6r1pjq8y7vi7aw99zcphbcicjcvhamxbb42s5ix2zafpb3" + "commit": "a3cbfa969051dd638a993e1962e2b965067896f6", + "sha256": "01f0p4gkbr2n57qkr4hxgwqm7rsflqp3y806ab4l66g42xn1lp5j" }, "stable": { "version": [ @@ -49096,11 +49136,11 @@ "repo": "Overdr0ne/gumshoe", "unstable": { "version": [ - 20230302, - 457 + 20230115, + 2105 ], - "commit": "3b65ee2496d6de3c7c47a821b38a5a19e0b64c2a", - "sha256": "1xs25f7di94fb32ahh6h5rkv37bn9vrdahkp0hp4c7s9jpvxf5im" + "commit": "0ada8c575d4e94b4f3edb0092239cfa835b17726", + "sha256": "0jq43w12j6sf6qammahfyhmzcq78y2w00lmaxr2mjqdmq435vhah" } }, { @@ -49250,14 +49290,14 @@ "repo": "hhvm/hack-mode", "unstable": { "version": [ - 20230227, - 1950 + 20220825, + 127 ], "deps": [ "s" ], - "commit": "278e4cc4032bff92060496cf1179643cfc6f9c0f", - "sha256": "0b7831sklgal1zky772qdmg6b2a1kdy4nwhz398rb8shx66fx4pm" + "commit": "26f06ffe82574f98e7da381e48202eceb8ef0793", + "sha256": "0sbrrwlr64dkb1dnfblx5l8ypwmcjxwbzf7ppqjnw0n2wx466751" }, "stable": { "version": [ @@ -49748,11 +49788,11 @@ "repo": "haskell/haskell-mode", "unstable": { "version": [ - 20230304, - 921 + 20221113, + 1425 ], - "commit": "20d4e2300302a9af673e82d0185d3f489bfb0f59", - "sha256": "1n6r2y26rrb4y6c849lwfkckz8426jpcx2d4dzv5jkycvhcpzw59" + "commit": "a34ccdc54be15043ff0d253c3c20087524255491", + "sha256": "1z2jcgdm5bc13zwl4y7fn5rxqqzs3i54qw32wb2hwpa42izwq159" }, "stable": { "version": [ @@ -49998,11 +50038,11 @@ "repo": "purcell/emacs-hcl-mode", "unstable": { "version": [ - 20230302, - 1029 + 20200315, + 2129 ], - "commit": "35784854efd29fa8c9fe827654d747a2ace5cb19", - "sha256": "1glz8p89c6mfrh92wycinqr1ffk5b6skjjn9qpqw6n510ccpzhwg" + "commit": "c3d1158ad1a64f06aa8986ab1cdea6b7fbdd4bf7", + "sha256": "0qza5pgpzcabik3592dk25glsv9zcg84pn1jzm43f9b1j9w5iv4i" }, "stable": { "version": [ @@ -50075,15 +50115,15 @@ "repo": "emacs-helm/helm", "unstable": { "version": [ - 20230224, - 658 + 20230221, + 819 ], "deps": [ "helm-core", "popup" ], - "commit": "4d42ea5d0797696e6301ee5e193707ea394631e2", - "sha256": "1yarkycw8ly7iamj5gb0alzq8izyfizcgzym9clz7mis73v87afp" + "commit": "fb3df89c7b0a68c79d6725beb20d3dc6ccd348a1", + "sha256": "189d1ldhaw83ahvjpi1l5q6v1agglvbll9qimfyv8g2h4nj50730" }, "stable": { "version": [ @@ -50981,14 +51021,14 @@ "repo": "emacs-helm/helm", "unstable": { "version": [ - 20230227, - 649 + 20230217, + 602 ], "deps": [ "async" ], - "commit": "e8957d1b38abd554aecfb2bf87ffc88b8d3311a7", - "sha256": "1xnnslv3gdqniwakz5xlxzdbvyiq1kja4rfka6z9gav4jqbvck1a" + "commit": "dfd6403947c5cd9f32afcd6bc92a1756cc958c82", + "sha256": "03rw1j7cs7glwcnwxp69zl0csfj138csyzcg6g2yj1vsm31mx2mn" }, "stable": { "version": [ @@ -55807,6 +55847,24 @@ "sha256": "1xqrd6z015ka42b1j1kakym3qvv1m5ip450fiffkv8gmfnxi7mkj" } }, + { + "ename": "hl-fill-column", + "commit": "68c40d7b6af664e01083b78c60b6a8e66b278a4e", + "sha256": "1kv77zfz1rd60cajjgljn8b04j6szqwwc3ialfxf6wdzh1w28jd3", + "fetcher": "github", + "repo": "laishulu/hl-fill-column", + "unstable": { + "version": [ + 20200607, + 757 + ], + "deps": [ + "names" + ], + "commit": "5782a91ba0182c4e562fa0db6379ff9dd472856b", + "sha256": "0sfki2844yjlvnjlaia0n46af3c5y1bi74x91icwxccqwlkyg8jg" + } + }, { "ename": "hl-indent", "commit": "3aa6ce8f3d1349e28dd9dea8396c38257e3cea2f", @@ -58759,14 +58817,14 @@ "repo": "clojure-emacs/inf-clojure", "unstable": { "version": [ - 20230226, - 653 + 20221114, + 616 ], "deps": [ "clojure-mode" ], - "commit": "fb9b5ea55f9ef02be32660cc29df15023968fb78", - "sha256": "0kf9hm3l95yq1mxm6has2s13jw0rhxzrv10x5ym4qvr390rc9dic" + "commit": "e5ce3839835b9b561fca5810f43f413c96c197d9", + "sha256": "04ggx767a795scidy0f58d577pm7ipgpxpi43rlqc2g9gcgzk9sd" }, "stable": { "version": [ @@ -58858,11 +58916,11 @@ "repo": "nonsequitur/inf-ruby", "unstable": { "version": [ - 20230304, - 1512 + 20230122, + 246 ], - "commit": "6f1df882ab319758af43877fa20465f6566efbf3", - "sha256": "11my63lfb3lcd2df0ych1hq3c3jcriws4ljvrmx1qqgxphli3dsm" + "commit": "0ce7f4049edcae188b4643b3163e5301f9ef09cc", + "sha256": "0ygm4y0iwvh1mz883x9727jlw0pnf0xgl4b1xysbvsyg6gplf0xv" }, "stable": { "version": [ @@ -59327,10 +59385,10 @@ }, { "ename": "insecure-lock", - "commit": "170ba8b01dbb8385260ef546ecb4e5239c6cc686", - "sha256": "0c256qyrbnanly930w1kj13mnysw0pvklnvqw51pdyjq9cs30y3x", + "commit": "1fe53161ec25badb9a4b1b415f42d2d520bb614c", + "sha256": "1j1xkwqyrcgprsnqihd7c9x85rrphskwcjnvc9firvyw8rs5k4sr", "fetcher": "github", - "repo": "kchanqvq/insecure-lock", + "repo": "BlueFlo0d/insecure-lock", "unstable": { "version": [ 20221111, @@ -59690,14 +59748,14 @@ "repo": "emarsden/ipp-el", "unstable": { "version": [ - 20230303, - 1138 + 20220830, + 1336 ], "deps": [ "cl-lib" ], - "commit": "8011ef4f550ebfbeefcacc1196a103580c730cfe", - "sha256": "05l1ryj54h5ylqia3zwncbsdqdklpj7pzvrmarnmfrs722r1s5fg" + "commit": "21d3b3fd5d1e655126ee03dac9d6b46cad9deef6", + "sha256": "1w0mbpprzrf0b24s0cdm6h3g1m6ydp844n3wyd3nx0rf3w980wsy" }, "stable": { "version": [ @@ -60821,14 +60879,14 @@ "repo": "Yevgnen/ivy-rich", "unstable": { "version": [ - 20230228, - 608 + 20210409, + 931 ], "deps": [ "ivy" ], - "commit": "4fdd4669d69c9e8248b361b6e069b27d10e809e4", - "sha256": "1marlsm5rcnsd3ddiwy82q8q05pchrjw867ngp7vrrlvi17x5hcg" + "commit": "600b8183ed0be8668dcc548cc2c8cb94b001363b", + "sha256": "1dv6vr7fv32v5m04zdy02sdajpvrnpc4i3pbh2dwfv73ff8d8yxm" }, "stable": { "version": [ @@ -61796,11 +61854,11 @@ "repo": "ianyepan/jetbrains-darcula-emacs-theme", "unstable": { "version": [ - 20230223, - 1901 + 20210602, + 1430 ], - "commit": "46f153385e50998826ca13e18056c6a972768cfd", - "sha256": "1qpjipigq320ri48ah8mnl7lq4hf8drk5lnpqr4csa7cgi83md6l" + "commit": "f57c359044ff1fa90db62a60b6691ff8d65c82f3", + "sha256": "17wd6yzhjdw5j3bpn6bnga5nkwdnqgk8nprqiavsir4ghkzw2h46" }, "stable": { "version": [ @@ -62811,14 +62869,11 @@ "repo": "FelipeLema/julia-formatter.el", "unstable": { "version": [ - 20230301, - 1807 + 20220106, + 1414 ], - "deps": [ - "session-async" - ], - "commit": "6297a3e6b4b24ec0158b43b886be346043c2772f", - "sha256": "01r1mrnxn53fbz2p2cvzn967i35qq2gph7vp1r2sp8zv06k8ybaj" + "commit": "a17490fbf8902fc11827651f567924edb22f81cb", + "sha256": "15ij7l80s847ykphdpmlcbj1jdhfx2ki6gkzqh90sbil3yby0qzs" } }, { @@ -63146,20 +63201,20 @@ "repo": "leon-barrett/just-mode.el", "unstable": { "version": [ - 20230303, - 2255 + 20221107, + 1633 ], - "commit": "d7f52eab8fa3828106f80acb1e2176e5877b7191", - "sha256": "103jwkmg3dphmr885rpbxjp3x8xw45c0zbcvwarkv4bjhph8y4vh" + "commit": "45a221063093f3461816913acdaba898e62b42ce", + "sha256": "08n2z3822g5gq2zdbj2nzmd5y4xwa8w4bpgcgdjffnc9casnjdwm" }, "stable": { "version": [ 0, 1, - 8 + 7 ], - "commit": "d7f52eab8fa3828106f80acb1e2176e5877b7191", - "sha256": "103jwkmg3dphmr885rpbxjp3x8xw45c0zbcvwarkv4bjhph8y4vh" + "commit": "45a221063093f3461816913acdaba898e62b42ce", + "sha256": "08n2z3822g5gq2zdbj2nzmd5y4xwa8w4bpgcgdjffnc9casnjdwm" } }, { @@ -63623,25 +63678,6 @@ "sha256": "114hjz7k8p8xmpfbv2img98qfkb46wn4mz5sdbl7278f973z2yqv" } }, - { - "ename": "kconfig-ref", - "commit": "2edbef3c799e7832945898d2df91464d1c9b8008", - "sha256": "0npsv07jhzav22iv7jdr04k2gqavc7m5x41qgih4m0zwqq0y031v", - "fetcher": "github", - "repo": "seokbeomKim/kconfig-ref", - "unstable": { - "version": [ - 20230220, - 1207 - ], - "deps": [ - "projectile", - "ripgrep" - ], - "commit": "dfb127fa5ac003a06f108d2e876c84a1931e5678", - "sha256": "1rzqj7if1qk59rhp9ddmw0hjf52niacdvyacpdcyc7v7m49bnwil" - } - }, { "ename": "kdeconnect", "commit": "c363866d30fb86ae636d30def8c3847711ada762", @@ -64266,14 +64302,14 @@ "repo": "debanjum/khoj", "unstable": { "version": [ - 20230301, - 423 + 20230218, + 231 ], "deps": [ "transient" ], - "commit": "e77a5ffc835dd006e17d9903307413dd495db729", - "sha256": "1pnl222qv1z1ggfhjk20x1ngi360jwkzwf5zil0v4lgrlmp6xf6i" + "commit": "61b6ee2857b92721fc2c7e1329ae476a8d41f040", + "sha256": "16rcjgyaqkncfxy8zihn339rj1dxc55pcr4h1m1z1hpq7dnk895a" }, "stable": { "version": [ @@ -64517,24 +64553,6 @@ "sha256": "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb" } }, - { - "ename": "kkp", - "commit": "dcae17bc6cc208122587fb2edaaedde2bc30a89c", - "sha256": "1izg1ga1djshr7vmkk0pxsywgyz64dcc7abnraianwb7005lsxgb", - "fetcher": "github", - "repo": "benjaminor/kkp", - "unstable": { - "version": [ - 20230301, - 2147 - ], - "deps": [ - "compat" - ], - "commit": "38440c0b64c12299dcf789622d59d1c9b85fca9e", - "sha256": "1vn219njvxlbcqkp0bg9y1wdsh0l46xiqih40wc3zqmpajciwpq2" - } - }, { "ename": "klere-theme", "commit": "962f7c87d0630399ea388f25ec5792fa2f2b4489", @@ -64558,11 +64576,11 @@ "repo": "vifon/kmacro-x.el", "unstable": { "version": [ - 20230303, - 2339 + 20220323, + 2215 ], - "commit": "913e08cfa377eb1537ed066e2a4f08b8d8d59a5e", - "sha256": "1dhpghbaqdjsmwkhf96qi7cakzbwm4gpw7wjr9l75dnw132fczn9" + "commit": "429abd82c97031948b7681197551bb77708bd174", + "sha256": "07yxqcq84hlj3h3b66cwlmmk4cfnwb7pfr5lqvgaxywvziv2hqng" } }, { @@ -65091,15 +65109,16 @@ "repo": "tecosaur/LaTeX-auto-activating-snippets", "unstable": { "version": [ - 20230302, - 1345 + 20220509, + 1234 ], "deps": [ "aas", - "auctex" + "auctex", + "yasnippet" ], - "commit": "7f4044918c4e0a9b71128f36f65f1d86842203f9", - "sha256": "1n2w97rskbdjgiic6wjsxdjfh536v05mpx0f14bbjasj9y0cjh1m" + "commit": "44533de4968fee924d9cc81ce9a23c9d82847db3", + "sha256": "13rflldz3684qv6xvg44sj6r1dzaqclmjcg0rxfnksf6cb47l1yg" }, "stable": { "version": [ @@ -65283,11 +65302,11 @@ "repo": "mhayashi1120/Emacs-langtool", "unstable": { "version": [ - 20230222, - 326 + 20230207, + 950 ], - "commit": "416abc7d1c1cbb31a9bddad458366215bad0089b", - "sha256": "1fw1xb7dbdv2frcnvvkplx30y20g0khp3xgb2s4p5ws97qpwqbf3" + "commit": "fc6c046af1c5e4e55331414387865f65afb1bd3c", + "sha256": "0vzs3hkhmvdrbii1hmg87brddpjfmqfqykf7a2hnwmdbkihiwwk9" }, "stable": { "version": [ @@ -65325,14 +65344,15 @@ "repo": "mhayashi1120/Emacs-langtool", "unstable": { "version": [ - 20230222, - 401 + 20230207, + 319 ], "deps": [ + "langtool", "popup" ], - "commit": "d86101eafe9a994eb0425e08e7c1795e9cb0cd42", - "sha256": "0wbjmkxlj79iffd7v64d6qpv97jc0jwfcy3849dglm8xygx9x7cg" + "commit": "25b23a2dc592cdfe498740af87d975f7ef23a854", + "sha256": "0hbvkynasz54scd1avsskxav9nlb3z571wrmz2z10kyx3z6rnr9a" }, "stable": { "version": [ @@ -66701,11 +66721,11 @@ "repo": "ligolang/ligo", "unstable": { "version": [ - 20230302, - 1616 + 20230130, + 541 ], - "commit": "d1073474efc9e0a020a4bcdf5e0c12a217265a3a", - "sha256": "0ipk7l2dhfc6qv3nqdyhxasswyl11xg9cklka6s3hv4sly0c2lma" + "commit": "fa63e64ff3de4de78f74c2d270c0c0f000abec8f", + "sha256": "1gxpdr7ssdzmax4g7fcn15l3rr4m4zm2gv695iywa5x48k4syzn8" }, "stable": { "version": [ @@ -67485,13 +67505,13 @@ "repo": "Atreyagaurav/litex-mode", "unstable": { "version": [ - 20221107, - 147 + 20221108, + 300 ], "deps": [ "units-mode" ], - "commit": "45004b3a865771799b739d17ebb7849190fffa63", + "commit": "72e20233db66cb37306bdc066c68e6d7086ab3c4", "sha256": "017lqavwks3f0q71aw0mw45k79d0ydjfdn2l9i66bmvdms5bjih5" }, "stable": { @@ -67571,11 +67591,11 @@ "repo": "donkirkby/live-py-plugin", "unstable": { "version": [ - 20230227, - 18 + 20221203, + 38 ], - "commit": "b0721520a55b34a86144ebee5dd3f2d8287bf34c", - "sha256": "14x1kl6bigpbfvppr1w3jxd5y0h9msxl6rc0qhcqhklbddvwj3hb" + "commit": "c02c7a5002d817d6e9cd4d7a1551c0ee412a65f1", + "sha256": "0m5v46s4n4wq730pdzhmf26r4lxj23sg24l7yzf40dhsa7pfgh4p" }, "stable": { "version": [ @@ -67911,11 +67931,10 @@ "stable": { "version": [ 1, - 6, - 1 + 6 ], - "commit": "5c31af49bfbb2f387fa505ba4aeb2004b249af2c", - "sha256": "05y2qvagcc4r3q594gvlabd37ljw51482wdhw8d49ls624fdcwyl" + "commit": "a878589fbbd291d0aa27f56c582ab900a03ca063", + "sha256": "04jw2zfbzw8qblkmxg5c4dm31i5kk8d9r3l1bqa1bld8s7pdxnp4" } }, { @@ -68703,26 +68722,26 @@ "repo": "ROCKTAKEY/lsp-latex", "unstable": { "version": [ - 20230228, - 1711 + 20230121, + 1846 ], "deps": [ "lsp-mode" ], - "commit": "9200ad19c416b3945d62683dd606917d8a1b3fee", - "sha256": "1wclmi12y13hd85y76wbyh3qvny1w3cyxhg57ip73i2v8paxhn1f" + "commit": "de080d83f5759ead46dd7a26bb73b7c3a940ef40", + "sha256": "18k93vwq95zyhfp8jj6ppsks95rcqs39p3lhwshgwq9k2i33v1zi" }, "stable": { "version": [ 3, - 2, + 1, 0 ], "deps": [ "lsp-mode" ], - "commit": "9200ad19c416b3945d62683dd606917d8a1b3fee", - "sha256": "1wclmi12y13hd85y76wbyh3qvny1w3cyxhg57ip73i2v8paxhn1f" + "commit": "de080d83f5759ead46dd7a26bb73b7c3a940ef40", + "sha256": "18k93vwq95zyhfp8jj6ppsks95rcqs39p3lhwshgwq9k2i33v1zi" } }, { @@ -68809,8 +68828,8 @@ "repo": "emacs-lsp/lsp-mode", "unstable": { "version": [ - 20230304, - 1615 + 20230221, + 1558 ], "deps": [ "dash", @@ -68821,8 +68840,8 @@ "markdown-mode", "spinner" ], - "commit": "eb9c9c914b50bfa281453ab1df09243b2eb0bf3b", - "sha256": "17m21i56wxg0mnqnbv4yjd8c841ibj1xy2bdd6v39xw3c8fhjfsv" + "commit": "e6293251a65554fa23f87d0e883d121b4f0aed4e", + "sha256": "1gkn3zw9h2kgpcmmpsadnh9aazgyyp9lmxkl6i7wd7gx5mg6fp49" }, "stable": { "version": [ @@ -68969,16 +68988,16 @@ "repo": "emacs-lsp/lsp-pyright", "unstable": { "version": [ - 20230225, - 1118 + 20221201, + 1501 ], "deps": [ "dash", "ht", "lsp-mode" ], - "commit": "54a2acddfdd7c3d31cb804a042305a3c6e60cf81", - "sha256": "1256q00zsh4q4p3qx5jwih1j7j7nfgmwvv9m0bn6j588wj97aiy2" + "commit": "4cd2adbb32287278d9d9da59a3212a53ecdf8036", + "sha256": "0ys76xd1bg9r0hkgq1h3aq6wxsjxqplxmk7cfwazzh9nwmgp9s22" }, "stable": { "version": [ @@ -69562,14 +69581,14 @@ "repo": "amake/macports.el", "unstable": { "version": [ - 20230224, - 49 + 20230215, + 142 ], "deps": [ "transient" ], - "commit": "b56f47a2ba386a4ff68d249ba9675b1a22135a45", - "sha256": "1d3j6savqgp4fgbh0lvmyspar6ic090w2js5fdrpn71vk3hmxsf4" + "commit": "e7b16e8b78db6d7fcc17eb05fa3a2a4ed439f2f2", + "sha256": "1kzxq9qcsn63lqx22d21zd4c8wm80d4nhqfsvh5m3p88as9ff29q" } }, { @@ -69756,8 +69775,8 @@ "repo": "magit/magit", "unstable": { "version": [ - 20230302, - 2135 + 20230221, + 648 ], "deps": [ "compat", @@ -69767,8 +69786,8 @@ "transient", "with-editor" ], - "commit": "b926ab0e051e497e8ed43754cfd2012d23dbfc4c", - "sha256": "1k1hdhj9nwv0ylwkwg3mvkgv5mhnyzscdck8qdfn18s7x2p5952x" + "commit": "97a95f70079b6613bf98d2306279d3e03fe51234", + "sha256": "1mm13lpq2ank0pnnf6q4qfpaw4k6fw3zjd1qgdi73l4lw8rrbvrx" }, "stable": { "version": [ @@ -70278,15 +70297,15 @@ "repo": "magit/magit", "unstable": { "version": [ - 20230302, - 2130 + 20230213, + 2018 ], "deps": [ "compat", "dash" ], - "commit": "410e4583e01b7fac31a4748e78f4c613859d3c41", - "sha256": "0g188jxvc7v8fhjwfd17i000fv1qf5mgi5bm7dvl9pjlawx2qgcn" + "commit": "deb10e984e16201182b0569f7df7d30ec3b8afa9", + "sha256": "0qh8170mb2bm2zmncpzd7zz11s7bvbw9pzpwf52cbai3qk90b544" }, "stable": { "version": [ @@ -70301,21 +70320,6 @@ "sha256": "0cxyvp2aav27znc7mf6c83q5pddpdniaqkrxn1r8dbgr540qmnpn" } }, - { - "ename": "magit-stats", - "commit": "89f49701d5760a927fd3ddfeac035f1d27c81fe8", - "sha256": "06k6jj2i2ll9kq12i3rh7097grz9vv4vkjwkjsajky0l6qild3s4", - "fetcher": "github", - "repo": "LionyxML/magit-stats", - "unstable": { - "version": [ - 20230223, - 1819 - ], - "commit": "41b18e5fc664dba93981a7931f476632c5b54a7d", - "sha256": "0ggl29cqxskmwjzj4aqahdd3a9228wxwryj1kaa613vvfc96cgyq" - } - }, { "ename": "magit-stgit", "commit": "8528698b6e61e62b35a95d9c297d5b868a81a3db", @@ -70418,8 +70422,8 @@ "repo": "alphapapa/magit-todos", "unstable": { "version": [ - 20230222, - 132 + 20220822, + 2224 ], "deps": [ "async", @@ -70431,8 +70435,8 @@ "s", "transient" ], - "commit": "c6f3fd03aa5b750636c2647253f21cc03329566c", - "sha256": "1nmym73i90fik9949cwzh615bm7h8vj9k6fbn6i4ms97f6wy715p" + "commit": "c5030cc27c7c1a48db52b0134bf2648a59a43176", + "sha256": "0j32zslcbiaq2a6ppyzdq4x59payya5hzd2kpw3mdj0p479byz19" }, "stable": { "version": [ @@ -70729,16 +70733,16 @@ "repo": "Olivia5k/makefile-executor.el", "unstable": { "version": [ - 20230224, - 1329 + 20220928, + 936 ], "deps": [ "dash", "f", "s" ], - "commit": "d1d98eaf522a767561f6c7cbd8d2526be58b3ec5", - "sha256": "0wm0i2m124dglwq0szp6pdh2r0dln0xpgscw2immi9cchcmgcy4f" + "commit": "170d14d834a0d163cd618d642d4580ff75b014be", + "sha256": "1g9mzic9k27fhpzcfpvlirgks2ip13z4xn8bfqabmp0xgq41ga5j" } }, { @@ -71103,14 +71107,14 @@ "repo": "minad/marginalia", "unstable": { "version": [ - 20230302, - 252 + 20230217, + 2050 ], "deps": [ "compat" ], - "commit": "6aa48ab592d209449800e1dc04c083007b5a6fcf", - "sha256": "02ycfa6j2hg11r3b92yfzyn2abydmahzgwnakbl48dca6k84xz3m" + "commit": "ccf573e2145d9deb9d734432351eefc87fc1bc16", + "sha256": "0zi3q7dd9dgrhbz6ww270i43kkqs0ddk0vzs89mfvwa5pzw32d2q" }, "stable": { "version": [ @@ -71229,11 +71233,11 @@ "repo": "jrblevin/markdown-mode", "unstable": { "version": [ - 20230227, - 342 + 20230212, + 1208 ], - "commit": "f4567202bbe76a211e454525e6d093a86a1cef14", - "sha256": "0zbfrpqb3aa1imn746gnnr76q6gphir056aqgbin9lbzzzipw979" + "commit": "c765b73b370f0fcaaa3cee28b2be69652e2d2c39", + "sha256": "1i9qw8pyf44zvdfc8nh5gjpiihhafvjjqwgc6z7r6jl2gn4bmyri" }, "stable": { "version": [ @@ -71559,16 +71563,16 @@ "repo": "martianh/mastodon.el", "unstable": { "version": [ - 20230301, - 2133 + 20230219, + 2053 ], "deps": [ "persist", "request", "ts" ], - "commit": "6eb7c27bef937ec76f3dba0ae19b57de4561bf8f", - "sha256": "0rh0a1bpba5zmkpa4rnyz7czdb8ggj3gwzyxqld9jb00ahwlrdfp" + "commit": "4f9a7be4926dbf3f33a717fcbed12de78c22b331", + "sha256": "0grgilbfzn1fhmzriq5wynxm119dlav8d975inhr2gi49sg8bx1d" }, "stable": { "version": [ @@ -72248,11 +72252,11 @@ "repo": "meow-edit/meow", "unstable": { "version": [ - 20230226, - 101 + 20230213, + 200 ], - "commit": "8754857b800e0bf22c85bebad07488e85146e81d", - "sha256": "1pcg06m17nh202w0lry3mhjhy9g6m9xa87rb9fhk8dkavrff1p0m" + "commit": "1e69067c1647ea634c87c021c5acf4a81152f4b2", + "sha256": "125g3ya4n7whj88ja80gl8pfg3zwnkbmizkxyvs1hfwla1xr559p" }, "stable": { "version": [ @@ -72281,12 +72285,13 @@ "stable": { "version": [ 4, - 8, + 7, + 1, -4, 500 ], - "commit": "1fbb47f7559fd4145cee3661cb70e2fae711df53", - "sha256": "1qyzynvaz010zxmg7sq5dxlxclrr2fkirny2izan8i2j1s2vrzwr" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -72310,7 +72315,8 @@ "stable": { "version": [ 4, - 8, + 7, + 1, -4, 500 ], @@ -72318,8 +72324,8 @@ "auto-complete", "merlin" ], - "commit": "1fbb47f7559fd4145cee3661cb70e2fae711df53", - "sha256": "1qyzynvaz010zxmg7sq5dxlxclrr2fkirny2izan8i2j1s2vrzwr" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -72343,7 +72349,8 @@ "stable": { "version": [ 4, - 8, + 7, + 1, -4, 500 ], @@ -72351,8 +72358,8 @@ "company", "merlin" ], - "commit": "1fbb47f7559fd4145cee3661cb70e2fae711df53", - "sha256": "1qyzynvaz010zxmg7sq5dxlxclrr2fkirny2izan8i2j1s2vrzwr" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -72405,7 +72412,8 @@ "stable": { "version": [ 4, - 8, + 7, + 1, -4, 500 ], @@ -72413,8 +72421,8 @@ "iedit", "merlin" ], - "commit": "1fbb47f7559fd4145cee3661cb70e2fae711df53", - "sha256": "1qyzynvaz010zxmg7sq5dxlxclrr2fkirny2izan8i2j1s2vrzwr" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -73205,14 +73213,14 @@ "repo": "tarsius/minions", "unstable": { "version": [ - 20230228, - 1944 + 20230212, + 2213 ], "deps": [ "compat" ], - "commit": "199b6022f82dc54e7cd58ca302810e16dc506b53", - "sha256": "1j3jc2yryi8b32b8y9gp5qjpxd2qx0rs8s0kmfkq5xm8gf9cxrl2" + "commit": "c5e8b65620558409a79766e86e3e8263cef765df", + "sha256": "1prs6zr924smh1kiq1rljz0vim4rl2ngi5rj7lrq60k0hq1vyddl" }, "stable": { "version": [ @@ -73920,20 +73928,20 @@ "repo": "protesilaos/modus-themes", "unstable": { "version": [ - 20230228, - 2011 + 20230220, + 1859 ], - "commit": "d8e92a50f003908c72a2f588beb1856041dc9cda", - "sha256": "0p01ji9rnxc82pcvn80w6xs47khqyxqia4s9wm6ap8003pj2nzq6" + "commit": "f4282839d880a88062acaafbd8acea2708d3932b", + "sha256": "0nn5mkm2pn59l1bchxaz59zsl9xhvjxmqc5vizrgl77y9mjkws96" }, "stable": { "version": [ 4, - 1, - 0 + 0, + 2 ], - "commit": "829d06d9d3f6753dfcba3d811237cc138c5ffeb1", - "sha256": "1rfnn7c6qv3qmzpksdzy7623qijbldnmr7hl9ka2kwnhdarsigkk" + "commit": "ca4d92aa0dd2046a06821281b12201bcaa95bb1d", + "sha256": "05wl0310va5irc2f72d2mxq19xafxswmgc0a048mah0aam8lsv2f" } }, { @@ -74088,11 +74096,11 @@ "repo": "ananthakumaran/monky", "unstable": { "version": [ - 20230222, - 2153 + 20210417, + 12 ], - "commit": "7046eee5fc9ac625924382cb4a82b0d8efcd9ff0", - "sha256": "01k3qfhh0ly9x88azsh0skxsxsjv0b80s1ydg6m59cxis2jc7gxc" + "commit": "72c7cd21b7b995c476e938fd0b92a494aa25c3a7", + "sha256": "03khwadd3x3s9wrggdfjj8cff0nr64fj6hzc9yqbn2baxfkgrn8l" }, "stable": { "version": [ @@ -74294,11 +74302,11 @@ "repo": "takaxp/moom", "unstable": { "version": [ - 20230224, - 1234 + 20220911, + 2344 ], - "commit": "864bee4e121771a055fab2b9f3e53cb3b8a8e02a", - "sha256": "0j1v4l3kj522jcpc5xz2k1mjadgwa8jvjbk10yjpx6w5rwlh2ypz" + "commit": "9029cd76ba037ca31cc7b91453ff5f8510747cb6", + "sha256": "0p2xwsv77ygcqblc80xcdd92f37vag8zsldw4vvd9c7hr5n5m4s2" }, "stable": { "version": [ @@ -76056,11 +76064,11 @@ "repo": "kenranunderscore/emacs-naga-theme", "unstable": { "version": [ - 20230304, - 551 + 20230215, + 623 ], - "commit": "3b5a6eb800a78df66a8e1c08c2465110ec36c10c", - "sha256": "0hzqzr1fdys4v0lad24ns9gj58ha69j2qlj5ir2l1gsa3c961dgc" + "commit": "508bf3505e9bf60163b68056b89c084df97b48aa", + "sha256": "0x1n41c8bvi1ynsa9ka8wz7plk0a04c18ynyswcff3shrzayyr7d" } }, { @@ -76658,20 +76666,20 @@ "repo": "babashka/neil", "unstable": { "version": [ - 20230302, - 1337 + 20230217, + 957 ], - "commit": "350c7ce94060bb0a6e57b32d35c37d9b17d88970", - "sha256": "0fs209m3bn3jm6zwwhfx10w5f0xssddc1mpzwjdzk1q41f5wryjp" + "commit": "abea182499897eda40088d24b647e66099ef94ed", + "sha256": "19gqiynl59n2ni748f3wz212q22hnsx7xvq122hhwha0srdq8nyr" }, "stable": { "version": [ 0, 1, - 57 + 56 ], - "commit": "350c7ce94060bb0a6e57b32d35c37d9b17d88970", - "sha256": "0fs209m3bn3jm6zwwhfx10w5f0xssddc1mpzwjdzk1q41f5wryjp" + "commit": "abea182499897eda40088d24b647e66099ef94ed", + "sha256": "19gqiynl59n2ni748f3wz212q22hnsx7xvq122hhwha0srdq8nyr" } }, { @@ -77507,16 +77515,16 @@ "repo": "dickmao/nnhackernews", "unstable": { "version": [ - 20230222, - 1441 + 20220604, + 2100 ], "deps": [ "anaphora", "dash", "request" ], - "commit": "bf0ff5d4a079004f937e7440ba282c156f24dced", - "sha256": "129kp12rbggq3hy6w14264svf4a2lf3l5j9mnlf47f35w9zvwxd6" + "commit": "ec99d579b9fa26fdb5f5e00dfd77e968ed8386f0", + "sha256": "0bnalbgf3bdvwnvmdjy1vq439n6vkfzmp9a5rgn0kdr32ar75kfw" } }, { @@ -77577,24 +77585,6 @@ "sha256": "1zi73i1mhdfxrpp0vhnpzcalcqmkjv7ygx5kvam8r0j7265bn7nw" } }, - { - "ename": "no-clown-fiesta-theme", - "commit": "3004633d97d78a997b4e904b36dc13f87df1503f", - "sha256": "0cvg8ldnn90sqdkrk64im42kbr6f3z3zk9skbda9v530l456m38l", - "fetcher": "github", - "repo": "ranmaru22/no-clown-fiesta-theme.el", - "unstable": { - "version": [ - 20230220, - 1019 - ], - "deps": [ - "autothemer" - ], - "commit": "e143cdfa7cecac6383328eca88586105f308bca9", - "sha256": "1j986mbr49rlfxx3dsq5fjipif1gpkwjhx6f7sm9zppnf51r875h" - } - }, { "ename": "no-emoji", "commit": "af6b04c1f95468254f2cf361964df9fd25d23586", @@ -77663,16 +77653,16 @@ "repo": "thomp/noaa", "unstable": { "version": [ - 20230228, - 2331 + 20220812, + 1535 ], "deps": [ "kv", "request", "s" ], - "commit": "4a4f2169a840902799348e589c6f0211073c9d96", - "sha256": "1x3s25ai1g93gql5hdwbdq9lkhx4dyg4skz0xzfas12xv398pqb9" + "commit": "c691e770da0f1ed5b83c656087dfbc2ff231bef7", + "sha256": "01whmrfikxmxz2dmg1hy7myp68cvnblvb9blvk872k30y8yv074n" } }, { @@ -78846,11 +78836,11 @@ "repo": "nickanderson/ob-cfengine3", "unstable": { "version": [ - 20230226, - 1954 + 20191011, + 1721 ], - "commit": "52aa32fdfa412860837e795d17d50dac237e56e4", - "sha256": "1gskkxm3ah8x5flhwzf6x4i7v75fzls20g20bg6r8xranyp7av8v" + "commit": "195ba4694a0ec18d3fb89342e8e0988b382a5b1a", + "sha256": "0a18fv141s35vh1mza2d6q5japrfjg5g6l7gp6qq4k4im3gmaf86" } }, { @@ -79678,14 +79668,14 @@ "repo": "alf/ob-restclient.el", "unstable": { "version": [ - 20230301, - 1951 + 20220819, + 2228 ], "deps": [ "restclient" ], - "commit": "ded3b7eb7b0592328a7a08ecce6f25278cba4a1d", - "sha256": "0992xs7mkljgql7g4jrbvnm1dqkbzajfaj7jfrrxfrcd4b7i5ny6" + "commit": "1b021ce1c67c97fa1aa4d2c0816edb7add129e48", + "sha256": "1bcjj01q5n9w2cch6brbz8pzwnwsmdlgaa4sf5s97b9frmqb2ffg" } }, { @@ -80206,20 +80196,20 @@ "repo": "ocaml-ppx/ocamlformat", "unstable": { "version": [ - 20230224, - 907 + 20220718, + 1147 ], - "commit": "c94ead524c8294a8496b9efde7a6817a9a79f26b", - "sha256": "1h8pr68wql5qia3wqgfczz0m5m4ql44c39bbnhlnld039fsva42y" + "commit": "86938aa4435b251af1a3b081f7fbed90f982cf62", + "sha256": "0y1j5mwwrliy6a78cmpi6j8gw425shghqg9ylyl3qw5fx4b088pp" }, "stable": { "version": [ 0, - 25, - 0 + 24, + 1 ], - "commit": "c94ead524c8294a8496b9efde7a6817a9a79f26b", - "sha256": "1h8pr68wql5qia3wqgfczz0m5m4ql44c39bbnhlnld039fsva42y" + "commit": "86938aa4435b251af1a3b081f7fbed90f982cf62", + "sha256": "0y1j5mwwrliy6a78cmpi6j8gw425shghqg9ylyl3qw5fx4b088pp" } }, { @@ -80403,14 +80393,14 @@ "repo": "oer/oer-reveal", "unstable": { "version": [ - 20230225, - 556 + 20221229, + 727 ], "deps": [ "org-re-reveal" ], - "commit": "e124770d9d728155f53432f3adb47f5d2fbd17c7", - "sha256": "08q2z2d06kcg1z9mycwgwjqrfn6a8a90rzg7iqb77qlvpayf24n4" + "commit": "a2dde292e464bfb9b4d8ab470bb9a6a37b5cb6b9", + "sha256": "0nr63m4wka7q48hll0fhq8ijw7dw6g7m80r81xn62yfd7j7mfwk4" }, "stable": { "version": [ @@ -81905,11 +81895,11 @@ "repo": "inickey/org-clock-reminder", "unstable": { "version": [ - 20230222, - 1956 + 20230217, + 728 ], - "commit": "d3bf97113fd519aa08198e2283ba9c236a6df168", - "sha256": "026isn6qa4ra69ivm1b12k63dbcz4dcbz34ks6c6fby95rcbmhis" + "commit": "fd3d2ca9d5ca1a804c0e70193f89f650c69a8dc1", + "sha256": "119ad38hnj4i1wbsp9hkl5sa3s8z17aqly2y5ml37dbfid05w0ps" } }, { @@ -81982,14 +81972,14 @@ "url": "https://repo.or.cz/org-contacts.git", "unstable": { "version": [ - 20230227, - 1417 + 20221221, + 431 ], "deps": [ "org" ], - "commit": "ae45b9413e24abdc431d12858dced54e0dee6e39", - "sha256": "0dgw33db262pbm58l8z04bkh3jk21ddzziiblkbxzm736g6ckivq" + "commit": "bb4032eb12c20d34555a4e670f28696cf31a7b54", + "sha256": "149s34d4j68f8crp66xmscd22svwkar1a6zifznxlyhvszg0zl27" } }, { @@ -82915,16 +82905,15 @@ "repo": "beacoder/org-ivy-search", "unstable": { "version": [ - 20230222, - 514 + 20230220, + 812 ], "deps": [ - "beacon", "ivy", "org" ], - "commit": "7f2afd8c196e3723ae6ac4dd229367ece9acd3bf", - "sha256": "1k3l2zhwmnbxbslxrp07zsvg5xrzawiklskw90bpfvwakrbnsh88" + "commit": "e7170ff613734f24edace3309d69e23ef73f4b0f", + "sha256": "0sp6qpzj69n1hir9widxdbhz3781ld5hg1h98s23v1lqqxa6ddk9" } }, { @@ -82935,16 +82924,16 @@ "repo": "ahungry/org-jira", "unstable": { "version": [ - 20230228, - 1619 + 20220725, + 1808 ], "deps": [ "cl-lib", "dash", "request" ], - "commit": "13457755932565306f42074c69076759a428568a", - "sha256": "0syrrk7xf44hxdxa6iff31vzkvbp4lqlrmxj2rinf2rr4fp47h6q" + "commit": "9510f2010750c5c74b6c1be7e06939afd64aa39b", + "sha256": "1s91l4ibjvvc7rfvd8gldxqrcgjq00q83fdww217ck2ps5yrzyjl" }, "stable": { "version": [ @@ -82969,14 +82958,14 @@ "repo": "bastibe/org-journal", "unstable": { "version": [ - 20230224, - 1529 + 20230109, + 1217 ], "deps": [ "org" ], - "commit": "64a1fbc504269f407b9270cc2c4c5e34a85508c0", - "sha256": "1lysha39rc11skgvv74axdxsw9p16988kyg7l4l9syn7dw8zffa4" + "commit": "c84f1a771933d662695c20b73832a6415b7d3603", + "sha256": "0djypcb09iwx42mrnwq3nr381qmz0ssavwmsvzmq4rfpdj3gh5ly" }, "stable": { "version": [ @@ -83122,14 +83111,14 @@ "url": "https://repo.or.cz/org-link-beautify.git", "unstable": { "version": [ - 20230304, - 1214 + 20230221, + 1311 ], "deps": [ "all-the-icons" ], - "commit": "8e0e45bf5bb06996895e99a223ee038fa9da5bf9", - "sha256": "0biiky3c50cbnwfyy76vwjlhdk2s6nmjwbzsy4mg21pbqq43xbxa" + "commit": "370535e4259888f686cb6cedcabb79c5b389e6bb", + "sha256": "113q1axrhl1y5lq5pf799nlh0i7vinrikphb90fwmx35y0gkpgj7" } }, { @@ -83218,11 +83207,11 @@ "repo": "aimebertrand/org-mac-link", "unstable": { "version": [ - 20230222, - 2228 + 20220616, + 2340 ], - "commit": "16734797b56b5bd1f49929b59f7cd8fcdcd268e0", - "sha256": "0cs6j6gkqkspf9g7ci37vm63bvsdl9914w4lx2y6b8mn4phd2wn2" + "commit": "0b18c1d070b9601cc65c40e902169e367e4348c9", + "sha256": "0ijlmfq6dbdmk3jpl87g4knk4l76yxf63nmk3n2nll3v3swbk22g" }, "stable": { "version": [ @@ -84166,28 +84155,28 @@ "repo": "oer/org-re-reveal", "unstable": { "version": [ - 20230228, - 1655 + 20230220, + 848 ], "deps": [ "htmlize", "org" ], - "commit": "bf4e23e2ce9109d35957c9f42fafe9c9edb6bf4a", - "sha256": "0v9403zjxays4c66xq3zq2285h77pn2ha7afx70xffjyynmvnz6i" + "commit": "611d6bd1f66eedf5ee2590426990efd4ca990076", + "sha256": "1l8qjzijgbjzy4skhy9n0z05bczqlyh9lxwsd98f83mv956ghbkd" }, "stable": { "version": [ 3, - 18, - 2 + 17, + 0 ], "deps": [ "htmlize", "org" ], - "commit": "bf4e23e2ce9109d35957c9f42fafe9c9edb6bf4a", - "sha256": "0v9403zjxays4c66xq3zq2285h77pn2ha7afx70xffjyynmvnz6i" + "commit": "91cdd82c47b86990b5eb41fe34446a042194cc83", + "sha256": "1bp3kz2awy2mizs59qsa2yl7wfa0197fklnramzifz6z2zv5kbrx" } }, { @@ -84345,8 +84334,8 @@ "repo": "jkitchin/org-ref", "unstable": { "version": [ - 20230301, - 1259 + 20230131, + 1743 ], "deps": [ "avy", @@ -84361,8 +84350,8 @@ "parsebib", "s" ], - "commit": "348cb860e5cfc2b32870e826218df16cf90e7d75", - "sha256": "02fmnhxag40182xcnpsiwf1r32fm13fs4j79xijgyvkdrljwrcsq" + "commit": "4c691f7b4cafbd9bf8c9608fe9d590f7c4894d67", + "sha256": "01yym610ffmf38vp3m3h9vc00y9gfx46pn83js6zwksq2rf6n96l" }, "stable": { "version": [ @@ -84509,8 +84498,8 @@ "repo": "org-roam/org-roam", "unstable": { "version": [ - 20230223, - 645 + 20221231, + 2122 ], "deps": [ "dash", @@ -84519,8 +84508,8 @@ "magit-section", "org" ], - "commit": "e73807efe135c5797d7a94c0f205a7fbd4b2e781", - "sha256": "1d75paijz6dv1qqpj68j412wbcrpxqxdlqhpp3wg4d1gx414cniy" + "commit": "74422df546a515bc984c2f3d3a681c09d6f43916", + "sha256": "0vhl69y6yk2zzfixjdwr8vxl2k921h0syshk5123r1nm9jp3i1s9" }, "stable": { "version": [ @@ -85164,15 +85153,15 @@ "url": "https://repo.or.cz/org-tag-beautify.git", "unstable": { "version": [ - 20230228, - 1622 + 20221211, + 941 ], "deps": [ "all-the-icons", "org-pretty-tags" ], - "commit": "1902d475b47b342d250c934ad26e2b35d6aafb4d", - "sha256": "0i4cr0yqry2m3grk11nqlpa9jaz8vwfa17qia5hpvnsxi9q5jzdi" + "commit": "5eb75d86c143c1801c71b54fe0da832affc3adc3", + "sha256": "17hq54v6f1b4cbjf9dsxq7f72ls5bal8lmhfjd27kkbhj2h5ky1w" } }, { @@ -85446,11 +85435,11 @@ "repo": "takaxp/org-tree-slide", "unstable": { "version": [ - 20230304, - 726 + 20221016, + 1623 ], - "commit": "badeab8bed56b41979ce65894e8c267db3ae9663", - "sha256": "0z8pgx5l16h14hal7401vq8ng64m5vzi7b533pamxcnsv1czkhxa" + "commit": "d6529bc2df727d09014e0e56abf4f15a8e8fc20f", + "sha256": "1br32mpwarmrn158y2pkkmfl2ssv8q8spzknkg2avr16fil0j1pz" }, "stable": { "version": [ @@ -89039,11 +89028,11 @@ "repo": "joostkremers/parsebib", "unstable": { "version": [ - 20230228, - 1530 + 20221007, + 1402 ], - "commit": "ace9df707108b17759c004c7387655277122d4c1", - "sha256": "02h5sbg2bqkmksj1ap4z7301hnsp5ga6951jrnwy89ds0xvrbg6l" + "commit": "1efca921cbb49380396df9d81308b32e55fc8b63", + "sha256": "054s29rbqjrsn50d8ckvg0b9581bpq5bp1yb4905p8p2sbhjgmsp" }, "stable": { "version": [ @@ -90051,20 +90040,20 @@ "repo": "Fanael/persistent-scratch", "unstable": { "version": [ - 20230225, - 1439 + 20230113, + 318 ], - "commit": "5ff41262f158d3eb966826314516f23e0cb86c04", - "sha256": "187cyl005csmmmh292km1v3ffl8x49h5qyn87i4adz9l5sqnpdgj" + "commit": "f9c1361ad69073af8133174f9e37b594df9be361", + "sha256": "1bgz6hdxwwi96pgxlxabzq6v7a63xznzd7ifmcdx9571vlbg48cc" }, "stable": { "version": [ 0, 3, - 9 + 8 ], - "commit": "5ff41262f158d3eb966826314516f23e0cb86c04", - "sha256": "187cyl005csmmmh292km1v3ffl8x49h5qyn87i4adz9l5sqnpdgj" + "commit": "f9c1361ad69073af8133174f9e37b594df9be361", + "sha256": "1bgz6hdxwwi96pgxlxabzq6v7a63xznzd7ifmcdx9571vlbg48cc" } }, { @@ -90348,14 +90337,14 @@ "repo": "wyuenho/emacs-pet", "unstable": { "version": [ - 20230301, - 111 + 20220917, + 2111 ], "deps": [ "f" ], - "commit": "9d2d747b18c3f1d330bf9f09c9f64af9446c1268", - "sha256": "18srb4m56jrbz059b0yl4ryl319pn0qwwl8kmqm010kzsg5xbjiz" + "commit": "7620c18223f126c384dbf42b0b167a6066a81dd1", + "sha256": "0azkf569fm8z8igd7wwgmf8w6wl3gd7r24j5nsbji16k8jfvq03c" }, "stable": { "version": [ @@ -91608,14 +91597,14 @@ "repo": "mtekman/planemo-mode.el", "unstable": { "version": [ - 20230227, - 1139 + 20201216, + 1122 ], "deps": [ "dash" ], - "commit": "537ebe40688ca8f3786aa1e9842265e6f34584d2", - "sha256": "0q9k8djb4f8c2q1649cxmjml2w8zzdgwnj5n7vi01n03qp85mhzd" + "commit": "9a981f79a2727f87689ae5a07368c41d35902a67", + "sha256": "1hx1mdbb25hggg4kwga97m3wysm0yj11hnnycmbwa85c9rn96jzv" } }, { @@ -92201,15 +92190,15 @@ "repo": "cybniv/poetry.el", "unstable": { "version": [ - 20230304, - 1540 + 20220915, + 801 ], "deps": [ "pyvenv", "transient" ], - "commit": "5ca52b221e57bb9dce7c89f62e7b01da1346a273", - "sha256": "1622lb747ihk24saiz9kl7k55iwa1cp4bifgg2shchhcdn7mj8vg" + "commit": "3da3990d3cea17f84c90257cc206540d4ea1b6c6", + "sha256": "0gz31v1c4v8yzl5wmzgh115083g17n9wndhgvw3wkx9xharkzhgr" }, "stable": { "version": [ @@ -92305,16 +92294,16 @@ "repo": "polymode/poly-R", "unstable": { "version": [ - 20230303, - 1140 + 20210930, + 1921 ], "deps": [ "poly-markdown", "poly-noweb", "polymode" ], - "commit": "f2e85391efe2d5a9516687422b4784d185af5241", - "sha256": "0i6wjmqanzngk3jh9lmm2i54hy0m9zg420ky2f8jqgqjykfpx6fs" + "commit": "e4a39caaf48e1c2e5afab3865644267b10610537", + "sha256": "19s99k0madr5yp9v523yj1990fmark09vixn31lzfmghi8nmdmck" }, "stable": { "version": [ @@ -92857,11 +92846,11 @@ "repo": "karthink/popper", "unstable": { "version": [ - 20230302, - 2055 + 20230120, + 751 ], - "commit": "76b1a1f1bce412296d564056c76dd174bcf8ec64", - "sha256": "1x842h2yps3l0llbd8akilgr3drsh9hal603l4is270c631b6c2c" + "commit": "da70c8296a3b3b69626b11f2d202a38075f00c7b", + "sha256": "02lls6fh0fyxq3hwnwb5kih26q29fgl9g4isq1qk6j7bvv53gb04" }, "stable": { "version": [ @@ -93122,20 +93111,20 @@ "repo": "tumashu/posframe", "unstable": { "version": [ - 20230222, - 53 + 20230212, + 808 ], - "commit": "dace2dcf105e9685b4085836645b3392dc7e2211", - "sha256": "1hr0hcxkqsdzl8gnn8iap67p675rlxp76dbr3yygq97475klyrk1" + "commit": "06b939cfb06168782fc378043ff35bd7fec203b8", + "sha256": "0c04005k0g0np96prff461nqkmac4l0d4sda42v2jnjh25ylhy81" }, "stable": { "version": [ 1, - 4, - 0 + 3, + 3 ], - "commit": "dace2dcf105e9685b4085836645b3392dc7e2211", - "sha256": "1hr0hcxkqsdzl8gnn8iap67p675rlxp76dbr3yygq97475klyrk1" + "commit": "06b939cfb06168782fc378043ff35bd7fec203b8", + "sha256": "0c04005k0g0np96prff461nqkmac4l0d4sda42v2jnjh25ylhy81" } }, { @@ -93304,15 +93293,15 @@ "repo": "SavchenkoValeriy/emacs-powerthesaurus", "unstable": { "version": [ - 20230304, - 1454 + 20220414, + 1453 ], "deps": [ "request", "s" ], - "commit": "0765581ee2b2b16f4f762193335630064c229477", - "sha256": "0sj0khimvzmiiwfj5dy19adwypcinjg8y0rqm9dbq7ii55cbiv26" + "commit": "88bc5229cba1604c8f74db0a1456d99259d538cc", + "sha256": "19fvibfv3skvs77k3bsd0q5cg3shn9wrdjfyrcybgc9sjfcngv7n" } }, { @@ -94248,11 +94237,11 @@ "repo": "bbatsov/projectile", "unstable": { "version": [ - 20230228, - 706 + 20230219, + 647 ], - "commit": "5143d32abd92ed111dc0cb69bf21946de7c6eadc", - "sha256": "0f8fr177s8khrd01bw6b6rqyi2g3x6a1gvsryz23xms6w0d636hl" + "commit": "fd257811c46f89f53143dd0ccbc134fc9459d6bb", + "sha256": "0rawixwdya1cva40r0ppq8c22ifdlprgyz6nw1a99w3bgny284zn" }, "stable": { "version": [ @@ -94834,11 +94823,11 @@ "url": "https://repo.or.cz/proxy-mode.git", "unstable": { "version": [ - 20230303, - 706 + 20220210, + 1410 ], - "commit": "eca6f0b8a17fcf9eb961ed0426f57a5b7ca4e1f6", - "sha256": "0mmlkci81m116gvak6z7pi8yskbl62209y3h7h3lfjb30jx77zww" + "commit": "620e48c6afaf760d0ee9f5bdf583fd91cd9d0ec6", + "sha256": "0xlla1ymqgpb15bycxl4xijlgcwir01krcvsyhxl4anmrpj2c0hm" } }, { @@ -95615,16 +95604,16 @@ "repo": "andcarnivorous/pyconf", "unstable": { "version": [ - 20230225, - 1741 + 20230127, + 2046 ], "deps": [ "pyenv-mode", "pyvenv", "transient" ], - "commit": "25adcbdc007011f2b6f4b5b0a6748298ab229fc2", - "sha256": "18sg6cgfs43mwcz7b845v3nj48q2qm7z8wgj4l6rrykz5716ihn1" + "commit": "f78e7f269210c7d7e06001752d87c8fbfd8b9084", + "sha256": "019c1hcdfr9cnpcag2qyg2lkf1scg1m6aw0nllwn31cwa8mvyyga" } }, { @@ -96106,11 +96095,11 @@ "repo": "thisch/python-cell.el", "unstable": { "version": [ - 20230224, - 1925 + 20220105, + 2315 ], - "commit": "cb8e6381b1fab16bcf475d115bb22fef503bea32", - "sha256": "11drjn5a9k25wsw3z870yvy911772v1giq7j2j0d72483kimlq0d" + "commit": "9a111dcee0cbb5922662bfecb37b6983b740950a", + "sha256": "17izy7sd7v2144yhshv0nymqx6bkrc1grb60imz5ipqhm6b6yf92" } }, { @@ -98639,11 +98628,11 @@ "repo": "alvarogonzalezsotillo/region-occurrences-highlighter", "unstable": { "version": [ - 20230221, - 1803 + 20200815, + 1555 ], - "commit": "9c2a3193ccf32f8fa48578a6b8826b2959dac120", - "sha256": "0qj9vnl5zqw288aw84nrwy21fqzi40b2yiv0g4km8y5pq7w13rw2" + "commit": "51e4c51e6078ebf0681e65f7dea4f328f0c91cfe", + "sha256": "04x0vi92bd7zz026zhk40bxh82559wzrv144rnh0yq92l6dscfm9" } }, { @@ -98752,11 +98741,11 @@ "repo": "DamienCassou/related-files", "unstable": { "version": [ - 20230225, - 1900 + 20221125, + 1824 ], - "commit": "5f0888e6427c49b9ca62e5e21f135db0966a2194", - "sha256": "0jz5gf9alp8qbywi1y509w9h7fjp1bwjsgkvwfym72hmx34v7lbw" + "commit": "0c2e38d0bb0db45a50a082d3e8362c07fc60a1f2", + "sha256": "0n87x3ilnn7kc607pa5zffrkpbnkv4xa9hlzyx8ga8xj756zk558" }, "stable": { "version": [ @@ -99522,11 +99511,11 @@ "repo": "galdor/rfc-mode", "unstable": { "version": [ - 20230302, - 1422 + 20221123, + 1643 ], - "commit": "01b37d63e498eab3ac6ad2588777438cfd4d7f60", - "sha256": "1k6zlj419zcvm84df50icy112p43ahw3g4lzr4a9k0jnnfkvyr6z" + "commit": "53ec006aa6aa4fae9c6c64004692aa3d01b38275", + "sha256": "0qfl774796wpplzsv8ns31472615sb6hh6r7z2mvqhm3i0a5d35z" }, "stable": { "version": [ @@ -99546,15 +99535,15 @@ "repo": "dajva/rg.el", "unstable": { "version": [ - 20230223, - 1846 + 20230201, + 1819 ], "deps": [ "transient", "wgrep" ], - "commit": "f09de8b43ebc88e3ddce686dc717dfb79159ee90", - "sha256": "045jswyndsviagmqk0ffybhg53207g07f4p2zrzvfxh9d1ix3kr2" + "commit": "e7afc1573922dd6ec8e8ccd178e054ff8c99e5bf", + "sha256": "0cng9kra880gma19jl9c8wwrsz94qcha7ymjrw279zq3244750j1" }, "stable": { "version": [ @@ -100193,11 +100182,11 @@ "repo": "DerBeutlin/ros.el", "unstable": { "version": [ - 20230226, - 826 + 20221212, + 1047 ], - "commit": "a0d33da83424deeea484565a13c6930bda9b176a", - "sha256": "0y7zx4m3h3zm0slmmmsmrwrsv57hwc1nwfd1jn8cjl7hrrkj3z03" + "commit": "b437e46bee8f64eec1b8e61f86476977dab6cdb4", + "sha256": "0vbadwr5gmr7px40mhphm4v11ix302bj9f4m8mw7h5mwm8y84skb" } }, { @@ -102850,14 +102839,14 @@ "repo": "FelipeLema/session-async.el", "unstable": { "version": [ - 20230223, - 313 + 20220302, + 2008 ], "deps": [ "jsonrpc" ], - "commit": "e06835ea181b3a15099280527c9a4590d2fa61d1", - "sha256": "10yh94bvvnq2aszg64xvbkn8zbr4bmhj3x7q44i71qqpblb5jwj5" + "commit": "427238bdfde880106dd39cf5845b559975e52f4f", + "sha256": "0zrcfycfgy87bpfm3jcfzp72ky5marbd5w4xf4rqvnw9spml6sya" } }, { @@ -103408,20 +103397,20 @@ "repo": "redguardtoo/shenshou", "unstable": { "version": [ - 20230226, - 320 + 20230116, + 805 ], - "commit": "0a00b9f5a86a54324f88c7d27b603f136ee2fb0b", - "sha256": "0yr6pw3yglav07xg6l0dx1xc0dggcgv1xyfpds7y865iizvmc4i9" + "commit": "763f28b2d132ed94bb57ca08ef12ff1454b7f7d3", + "sha256": "083csvlx87jj96zkg5nni0rzw831xyaghl9vy76iggk9jyixd60z" }, "stable": { "version": [ 0, 1, - 2 + 1 ], - "commit": "0a00b9f5a86a54324f88c7d27b603f136ee2fb0b", - "sha256": "0yr6pw3yglav07xg6l0dx1xc0dggcgv1xyfpds7y865iizvmc4i9" + "commit": "763f28b2d132ed94bb57ca08ef12ff1454b7f7d3", + "sha256": "083csvlx87jj96zkg5nni0rzw831xyaghl9vy76iggk9jyixd60z" } }, { @@ -104544,14 +104533,14 @@ "repo": "laishulu/emacs-smart-input-source", "unstable": { "version": [ - 20230302, - 1219 + 20220721, + 1600 ], "deps": [ "terminal-focus-reporting" ], - "commit": "24360d83e25fc040792a7888ec4a032b8949e09c", - "sha256": "1g7s2qvfpxagsqylw0n0gymsc508jwfnm838fp4xpa1s2cap1pj8" + "commit": "d7a415b00bb1ddcf940d82afdd01e8b793d5466b", + "sha256": "1vj1yr6likmsapr6nrkbr3sf2bk9w16jxa8hra0328b3q8afh21f" } }, { @@ -104886,15 +104875,15 @@ "repo": "slime/slime", "unstable": { "version": [ - 20230222, - 1526 + 20230215, + 2125 ], "deps": [ "cl-lib", "macrostep" ], - "commit": "e193bc5f3431a2f71f1d7a0e3f28e6dc4dd5de2d", - "sha256": "1ykbi3rzmh454j22gchl3z0as9ffbs0jgk9i2ry9jbgilrs8ydcl" + "commit": "5e8fc7cad5ae7dc19b434c559ebaee3185d80b98", + "sha256": "1jllc6zk1vmh7g2zq9y1a5kihclawjf9zkizqz8kzs4hsyp6racs" }, "stable": { "version": [ @@ -105125,11 +105114,11 @@ "repo": "joaotavora/sly", "unstable": { "version": [ - 20230224, - 911 + 20230216, + 1140 ], - "commit": "f34c22289a2b3ab10e607f9f8822d62bb5c98cf5", - "sha256": "1i64iid9drc4iqmmgvgsfzm28v8128rbq29ccj2a0rn0465jk3wc" + "commit": "fa70fc8ab1bc1f1c21661d672834e41b1d0abd39", + "sha256": "1bfigrb4nnx4sv50jsx15jsyh2yfbb72g5nhjbhcpmv8apkq4818" } }, { @@ -105625,15 +105614,15 @@ "repo": "Fuco1/smartparens", "unstable": { "version": [ - 20230225, - 1026 + 20230219, + 1728 ], "deps": [ "cl-lib", "dash" ], - "commit": "1d5cd5e8d46e182b935f8cd3cf29c8c4410aab0a", - "sha256": "16hfqyq7rb214v8cwixnx0jjcyhi98arzzzz2l6sg9bmqv9d1nig" + "commit": "f0c863268d296e38d4b5374f4c165cf9a823cd8c", + "sha256": "0f65wwjz4nxk2v49qmqck14xlyv1hfqnzjsf8ny1dv82l0v1by4s" }, "stable": { "version": [ @@ -106657,20 +106646,20 @@ "repo": "mssola/soria", "unstable": { "version": [ - 20230227, - 1454 + 20230102, + 1459 ], - "commit": "c5275d02fcc9f6af2cfebd69bcf69f8cdccbe3ab", - "sha256": "0zrz1n8b9hd6srwk1bjmb43y3cm9rvrkllv5030q43q0azjrhr81" + "commit": "7669770034f773bd96a71bb5e0cde93a8f0495e9", + "sha256": "05n2fjvs94s8023xmnbcrdbpqa25mh5j8l7naw4xhlggzynjfvan" }, "stable": { "version": [ 0, 4, - 2 + 1 ], - "commit": "c5275d02fcc9f6af2cfebd69bcf69f8cdccbe3ab", - "sha256": "0zrz1n8b9hd6srwk1bjmb43y3cm9rvrkllv5030q43q0azjrhr81" + "commit": "0b30ee125571a715d069846b4dafc5de8923cedd", + "sha256": "1vqhnajljx104yw11q6r1ywdxhdwsz5cf314wmq718zc58w68xrg" } }, { @@ -106950,8 +106939,8 @@ "repo": "TheBB/spaceline", "unstable": { "version": [ - 20230221, - 2314 + 20211120, + 1636 ], "deps": [ "cl-lib", @@ -106959,8 +106948,8 @@ "powerline", "s" ], - "commit": "e0f848cc116d9046a04a09f5728fabf892863b7e", - "sha256": "0pbx1s4g6hwwbf0wg8lb58h2iidrr9fpzvybjvd2yb5p9mz4l1nl" + "commit": "9a81afa52738544ad5e8b71308a37422ca7e25ba", + "sha256": "0m4542wba9zi18qv8lzhgz8f9dbf01l3dca7vv7i0wmnjsg9bsj9" }, "stable": { "version": [ @@ -107148,11 +107137,11 @@ "repo": "condy0919/spdx.el", "unstable": { "version": [ - 20230224, - 116 + 20230220, + 118 ], - "commit": "66afaeda787edbb509b24fd3999763493822d3f5", - "sha256": "17h6qqglxrj11m9ck2r1cija916bsrpdlyy2iwg7xarmk9dxwpc8" + "commit": "7ae6710a95a02c90b0f13486e8f20be3a746bee2", + "sha256": "159hxs3pa9pmjbhm9i3c2271zllvajw68g8sdcggx6lf3mp5w402" } }, { @@ -107776,11 +107765,11 @@ "repo": "pekingduck/emacs-sqlite3-api", "unstable": { "version": [ - 20230228, - 2310 + 20221110, + 1050 ], - "commit": "50b814063bef617028e4ace4e2315e5d29ed62b9", - "sha256": "0xb01xvb74bflb7mklza17rkh22c7sn8hlqzzf866qqim9mlz1kj" + "commit": "108521be0242bedf232775a28728588da9699336", + "sha256": "0xcybd9470lvlw3nwlnpz0s8nx1h2r1qfwcd1sqk65p8p3gi60q9" }, "stable": { "version": [ @@ -107815,21 +107804,6 @@ "sha256": "14s66xrabj269z7f94iynsla96bka7zac011psrbcfyy4m8mlamz" } }, - { - "ename": "squirrel-mode", - "commit": "f4179f87b96fa1aaad9320c53d0e844d68e68a20", - "sha256": "07pgwadlzlz1bljcjl0fk5airakiha290p9057559qjmyf3qc2ki", - "fetcher": "github", - "repo": "thechampagne/squirrel-mode", - "unstable": { - "version": [ - 20221227, - 232 - ], - "commit": "1af79dfe70c4c8e6f0f144bfd2eb65c077aca785", - "sha256": "0pmk410i5ik8rbkn7zk4i1iq0ax7hkvdv0y7ikyi3m159rjbfnaa" - } - }, { "ename": "sr-speedbar", "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", @@ -107899,11 +107873,11 @@ "repo": "srfi-explorations/emacs-srfi", "unstable": { "version": [ - 20230228, - 2212 + 20230205, + 2247 ], - "commit": "5599488e07c538d893e296da1f55fa24ac9f194a", - "sha256": "0yd4p45m5wrsxysgcsmwyzg0jpjq8nc5arilpj4l6s90sra5c6lm" + "commit": "7e92ae3b4c4a7f3386bf1d7d620e5cd29e6e3b37", + "sha256": "0apccq1hj4sydkd7sa5iziavpi6swzaj6w7gckp5n8pjzibnqlx8" }, "stable": { "version": [ @@ -108176,11 +108150,11 @@ "repo": "SFTtech/starlit-emacs", "unstable": { "version": [ - 20230221, - 1620 + 20230209, + 21 ], - "commit": "5ef623020e6a2d43ac82a2a9b71c434d4e8a0585", - "sha256": "0v10v89h0vhhvlkpvc3j3yfmmsmjggwq08lyyxm4r05zk1pk2wr0" + "commit": "f910112a76f0ec62f7150a3a2d4f1337a1809ff7", + "sha256": "1zcdbg69aicwsr53h6sbsms7cwq3l6zdhlb0fm8jy6r1rn9clwv8" } }, { @@ -108335,20 +108309,20 @@ "repo": "stacked-git/stgit", "unstable": { "version": [ - 20230224, - 2315 + 20221212, + 1619 ], - "commit": "327d1dbed318a21b96d8234b6ee11e58efe442cc", - "sha256": "1zzvj1wwd4dvcd1ydyanxrhf35bs9zjsc2pg2yf5jyhkigxim3sv" + "commit": "35a9822ba130613b7ae88d241df48556aaff01b3", + "sha256": "0h82dq2r0bxsv5il15nb9j2v3pikc5g7aaiwvrlkkfjc7ld563a9" }, "stable": { "version": [ 2, - 2, + 1, 0 ], - "commit": "327d1dbed318a21b96d8234b6ee11e58efe442cc", - "sha256": "1zzvj1wwd4dvcd1ydyanxrhf35bs9zjsc2pg2yf5jyhkigxim3sv" + "commit": "35a9822ba130613b7ae88d241df48556aaff01b3", + "sha256": "0h82dq2r0bxsv5il15nb9j2v3pikc5g7aaiwvrlkkfjc7ld563a9" } }, { @@ -108404,11 +108378,11 @@ "repo": "motform/stimmung-themes", "unstable": { "version": [ - 20230227, - 852 + 20230209, + 1359 ], - "commit": "85bee715164c186114d986332b7d694a0c9c068c", - "sha256": "0yq6gy0k0bk1zna2scbrikg81jsyqqnirgjbmjnmf15zfbdzmqvx" + "commit": "518b7ad3b6b8234d5a34dca1301f218f786e0a1c", + "sha256": "0066ddnw8ijxbh3snqkkysalf84qj0r5rk4d5zpvzbsals6dhcr3" } }, { @@ -110016,14 +109990,14 @@ "repo": "emacs-berlin/syntactic-close", "unstable": { "version": [ - 20230225, - 1508 + 20230221, + 937 ], "deps": [ "cl-lib" ], - "commit": "290d18e12b4c485292c4e3feb3e2e4848706aa57", - "sha256": "0pw9wbhbk51r5ja93bhv78rgfv3bza7rfjwrh6xdr0n7yd0fbpr4" + "commit": "830fc4d4fb5d31a018d32319c6e0d2dc29e3de34", + "sha256": "01i3vc0a7jngfwa16yp4knlyiwnak3srxp4lxjnw5fdq2hvgwhz1" } }, { @@ -110613,11 +110587,11 @@ "repo": "11111000000/tao-theme-emacs", "unstable": { "version": [ - 20230225, - 1245 + 20230111, + 1606 ], - "commit": "4b58447097c2e0a3e5c364b1308b56b37cc3ab7f", - "sha256": "14nbx12jvkxq6zxhrp3gyc0v9jyn5zn0dnnyp57kzah5i73sgssz" + "commit": "5525e49357d066c0dca4ccc12ca69804e46577f2", + "sha256": "0vcvhksiwc2gpz90gl5911nmds4rqgdhk1v3gbpj7cbhi1imrfx5" }, "stable": { "version": [ @@ -110828,15 +110802,15 @@ "repo": "zevlg/telega.el", "unstable": { "version": [ - 20230304, - 1158 + 20230212, + 1547 ], "deps": [ "rainbow-identifiers", "visual-fill-column" ], - "commit": "2af8f15c6b7ef1a338a11e479d375a97b647fb45", - "sha256": "009x87dywz5l5n4hqribx5mvzfpqmzshkpff6c6jjzh234fyh093" + "commit": "37e7eb805bc247ecc644308f1f2a4ed9a6d30624", + "sha256": "0bc0v7ix59cq269raxl6pdq12qd4rnq7012mix55rmy6llb17jb4" }, "stable": { "version": [ @@ -110978,14 +110952,14 @@ "repo": "Crandel/tempel-collection", "unstable": { "version": [ - 20230303, - 942 + 20230103, + 2244 ], "deps": [ "tempel" ], - "commit": "4d0ae7b9355b45aa24dfa5e072ff50baf63f752a", - "sha256": "0ba182nbnyc7hx4vwddxrb6n9wf6acqjzc29sw8aa8wsq4m568hy" + "commit": "7ef22ea7aaf699632a1d02d47a9a505ae8bc52c3", + "sha256": "0gvvxkgmj84ivnav0v98m6nhas6mbkhxqqj1ba5gj334h7gxyl4n" } }, { @@ -111495,28 +111469,26 @@ "repo": "emacsorphanage/terraform-mode", "unstable": { "version": [ - 20230301, - 1502 + 20230130, + 2153 ], "deps": [ "dash", "hcl-mode" ], - "commit": "7b1e482530c76dcf856ec4a20aee6586eb2e8ccf", - "sha256": "0npmj39b74h1lmqbvnnwcy3jqnaifgawi9p4sb242fcngiy2ppxf" + "commit": "39d2fd5bfc86c6bf1c7bc38e6f0016d714f2d79d", + "sha256": "1ancpn3v176lzxd95xshbsna307y55idirbqjsfhpivhvcq6y9g7" }, "stable": { "version": [ - 1, 0, - 0 + 6 ], "deps": [ - "dash", "hcl-mode" ], - "commit": "7b1e482530c76dcf856ec4a20aee6586eb2e8ccf", - "sha256": "0npmj39b74h1lmqbvnnwcy3jqnaifgawi9p4sb242fcngiy2ppxf" + "commit": "6286aa42132a7fcad49271d63be33deeeb8d4efc", + "sha256": "05hn8kskx9lcgn7bzgam99c629zlryir2pickwrqndacjrqpdykx" } }, { @@ -112033,21 +112005,21 @@ "repo": "facebook/fbthrift", "unstable": { "version": [ - 20230222, - 2028 + 20230220, + 336 ], - "commit": "cbc3de581fdf36ba474b0c135b9e785e504f1c1e", - "sha256": "189rqa9vbl7469gga6rybk75rarzbmz00m3w2i6piq3ggw350pbh" + "commit": "1d01d76ff25b7d5c5d36a08f111834082277f8e7", + "sha256": "0f1cq9psqqnrxca1sh97dg4kjcqdpdjib9kwx80gg4mr5wjpcw9j" }, "stable": { "version": [ 2023, 2, - 27, + 20, 0 ], - "commit": "cbc3de581fdf36ba474b0c135b9e785e504f1c1e", - "sha256": "189rqa9vbl7469gga6rybk75rarzbmz00m3w2i6piq3ggw350pbh" + "commit": "1d01d76ff25b7d5c5d36a08f111834082277f8e7", + "sha256": "0f1cq9psqqnrxca1sh97dg4kjcqdpdjib9kwx80gg4mr5wjpcw9j" } }, { @@ -112591,11 +112563,11 @@ "repo": "kuanyui/tldr.el", "unstable": { "version": [ - 20230301, - 136 + 20221109, + 1501 ], - "commit": "1b09d2032491d3904bd7ee9bf5ba7c7503db6593", - "sha256": "0qdv5yhvs4mnb4lszglhli80pv1436mknbap9qrm9riixfg6zlvv" + "commit": "2b5d53571bd30b75d4f5a642aa129055803a6bfb", + "sha256": "0i58abjzxi6qkfclwhphp7ljdc4sx80cj7izcq76glkpkif6sysn" } }, { @@ -112621,11 +112593,11 @@ "repo": "vifon/tmsu.el", "unstable": { "version": [ - 20230304, - 59 + 20230207, + 1438 ], - "commit": "3baca29f5d8a60abac52cdd1ce2966c5cdebfbd8", - "sha256": "1xvklkl8rg1arx5zdxcwpw9ahskhkhj2j78m0wk8z7rmj97l7i5a" + "commit": "26fb81d2667c88bef4f571c87bd9842d1be21234", + "sha256": "0lkvsqgp5cwi39n37b32dfjrdsk21j6r3q5lx4px84w2sqhm5gg1" } }, { @@ -112807,11 +112779,11 @@ "repo": "topikettunen/tok-theme", "unstable": { "version": [ - 20230303, - 1924 + 20230220, + 1320 ], - "commit": "5ceaecbaf359745d7bc6d407535895b7e84217c1", - "sha256": "1dxmy8wps01kwp5w72m66kvmgp618wvq77mk9ndh0xsv486a50yx" + "commit": "4dd1efcab11576c0989c52f67c89759a43e07f0b", + "sha256": "0s4bamim86y42ahg529hj2sf7654lab1p0fb06srn1gqj8zapndj" } }, { @@ -113321,14 +113293,14 @@ "repo": "magit/transient", "unstable": { "version": [ - 20230304, - 1149 + 20230220, + 1425 ], "deps": [ "compat" ], - "commit": "75a5076def1e6f5265eb2346a951ba9d97502fc9", - "sha256": "1j5kkg3nj1zqq1g4rchxafm0k5c5cqayay5wh07insi8mrw60nal" + "commit": "0204a2432862aa187745995f1c378e6d875b35cb", + "sha256": "06qbc8ad3s4z5vihbpvyl8xdlppxkhvprnhxq0kxsasy7psfqdns" }, "stable": { "version": [ @@ -114187,20 +114159,20 @@ "repo": "emacs-elsa/trinary-logic", "unstable": { "version": [ - 20230301, - 2044 + 20230213, + 1217 ], - "commit": "d4869d260f22d13a9a71327a6d40edc6980d022e", - "sha256": "17982dsjrm1xcw1fmq64shp4qlydj6v4c4yna24l45q90fhxd6mm" + "commit": "4268556d89831889a722302241c0de680de3731b", + "sha256": "17a9asi08vi6baagmhlm8qmsh8sbb52gphyg9jdydn1hji0qlk40" }, "stable": { "version": [ 1, - 2, - 1 + 0, + 0 ], - "commit": "d4869d260f22d13a9a71327a6d40edc6980d022e", - "sha256": "17982dsjrm1xcw1fmq64shp4qlydj6v4c4yna24l45q90fhxd6mm" + "commit": "dc10294af106ff3b110c372841eef0a8ec4c29c7", + "sha256": "0a1437hkcx2ba3jvvrn7f0x0gca36wagnhbq4ll2mlkmvdkac6is" } }, { @@ -115282,11 +115254,11 @@ "repo": "purcell/unfill", "unstable": { "version": [ - 20230227, - 1349 + 20210106, + 222 ], - "commit": "075052ce0b4451d7d3ede013ce5a77e6a7a92360", - "sha256": "06wa1f3j0l2bqsqm05zfix6sl74mw3kx7vgd1d23yddz37vkcvr8" + "commit": "8375d87ec184fbe964189e2f9b7263cdb1396694", + "sha256": "0pg64nza2mp4xyr69pjq51jsq1aaym0g38g4jzaxr0hh3w0ris1n" }, "stable": { "version": [ @@ -116948,11 +116920,11 @@ "repo": "federicotdn/verb", "unstable": { "version": [ - 20230301, - 2117 + 20221113, + 2327 ], - "commit": "0fa5259eb7e9404a5d665fb3fdf3f2c19d043189", - "sha256": "030yxnlyky89v8n4j48dh1q1zcqdmlx2xm0lm2fq93y9hpr8s7b6" + "commit": "b8ff1a0bbf84920fe26c56b9658bd289f43ad100", + "sha256": "0vmrmjfkky17sj8qrvibbnv621dnfksm21wn2h7kn40qi5h5kxb4" }, "stable": { "version": [ @@ -117710,11 +117682,11 @@ "repo": "k-talo/volatile-highlights.el", "unstable": { "version": [ - 20230301, - 1402 + 20230220, + 1415 ], - "commit": "fcf6e2778454ce514c189a7d1fe70e03ad81c325", - "sha256": "13ag9p2k7snzrc8qllr7hb3mlfqfhwzprlwhykk110nglba1hjrd" + "commit": "513c8b73cd3bc06cb9936a100468c227f649851c", + "sha256": "0a2r492plzxcl5sl2n75xqywk6yjkgj07xzbkcabvibj33bf1mz7" }, "stable": { "version": [ @@ -120304,14 +120276,14 @@ "repo": "martianh/wordreference.el", "unstable": { "version": [ - 20230304, - 1307 + 20230214, + 1735 ], "deps": [ "s" ], - "commit": "ea741be7ff0979552f7dfb591596075add0293b7", - "sha256": "0yxpj8r6cb4si298cj4i0kmnw0dl3za6w65bfs43h4jza49isrn9" + "commit": "8ccda3422fc30fba23602327cc8e7de9f53bfa1d", + "sha256": "12lhaqhri3yh2l010a2kajzys5jvvad1yg0rcwiyn6hlr6wsg60a" } }, { @@ -121894,14 +121866,14 @@ "repo": "AndreaCrotti/yasnippet-snippets", "unstable": { "version": [ - 20230227, - 1504 + 20230220, + 1659 ], "deps": [ "yasnippet" ], - "commit": "ffdabd7990013718f6b765bfd5e3f1899430d2cc", - "sha256": "1jp90khhkzhyk52lkpxrvz0319d0hkgl69hb3a4n47yiayikjzf0" + "commit": "9580874944cce78b3bb2296ae10de1443b0a57e8", + "sha256": "0ig8ywpw1ql49fp1nlxrgaiadd6zxf2npxnpiv09vj6vij0pank4" }, "stable": { "version": [ @@ -122193,11 +122165,11 @@ "repo": "ryuslash/yoshi-theme", "unstable": { "version": [ - 20230225, - 740 + 20221024, + 20 ], - "commit": "ba9427329ac49fa2e060da2c16507feed62ad890", - "sha256": "0f57qz8fxn4bncmd8ak9n0s8h4b0kba7nfmkb475djlhn2n2xxl9" + "commit": "59cf53110ed73344c7f96da8136b88b039b69602", + "sha256": "0sgyq59hpib2q0yrih4l33pdcvg6hk17cwfv27khhayf4hf92cnn" }, "stable": { "version": [ From d7867e8b8cc47c40998c6a26871fde1c4226a248 Mon Sep 17 00:00:00 2001 From: misuzu Date: Thu, 9 Mar 2023 10:49:32 +0200 Subject: [PATCH 18/36] ffmpeg: fix configure errors on native armv7l-linux This fixes the following errors: ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec ERROR: cuvid requested, but not all dependencies are satisfied: ffnvcodec ERROR: nvenc requested, but not all dependencies are satisfied: ffnvcodec --- pkgs/development/libraries/ffmpeg/generic.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 5b08f0379390..c1f9bbaddddd 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -34,7 +34,7 @@ , withCaca ? withFullDeps # Textual display (ASCII art) , withCelt ? withFullDeps # CELT decoder , withCrystalhd ? withFullDeps -, withCuda ? withFullDeps && (with stdenv; (!isDarwin && !isAarch64)) +, withCuda ? withFullDeps && (with stdenv; (!isDarwin && !hostPlatform.isAarch)) , withCudaLLVM ? withFullDeps , withDav1d ? withHeadlessDeps # AV1 decoder (focused on speed and correctness) , withDc1394 ? withFullDeps && !stdenv.isDarwin # IIDC-1394 grabbing (ieee 1394) @@ -57,8 +57,8 @@ , withModplug ? withFullDeps && !stdenv.isDarwin # ModPlug support , withMp3lame ? withHeadlessDeps # LAME MP3 encoder , withMysofa ? withFullDeps # HRTF support via SOFAlizer -, withNvdec ? withHeadlessDeps && !stdenv.isDarwin && stdenv.hostPlatform == stdenv.buildPlatform -, withNvenc ? withHeadlessDeps && !stdenv.isDarwin && stdenv.hostPlatform == stdenv.buildPlatform +, withNvdec ? withHeadlessDeps && !stdenv.isDarwin && stdenv.hostPlatform == stdenv.buildPlatform && !stdenv.isAarch32 +, withNvenc ? withHeadlessDeps && !stdenv.isDarwin && stdenv.hostPlatform == stdenv.buildPlatform && !stdenv.isAarch32 , withOgg ? withHeadlessDeps # Ogg container used by vorbis & theora , withOpenal ? withFullDeps # OpenAL 1.1 capture support , withOpencl ? withFullDeps From 5b6722f20ecb9e1c7ed76018c9736a6d114ba035 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 9 Mar 2023 15:06:26 +0000 Subject: [PATCH 19/36] plexRaw: 1.31.1.6733-bc0674160 -> 1.31.1.6782-77dfff442 --- pkgs/servers/plex/raw.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix index 5a0368d36f7d..b1afed46ec81 100644 --- a/pkgs/servers/plex/raw.nix +++ b/pkgs/servers/plex/raw.nix @@ -12,16 +12,16 @@ # server, and the FHS userenv and corresponding NixOS module should # automatically pick up the changes. stdenv.mkDerivation rec { - version = "1.31.1.6733-bc0674160"; + version = "1.31.1.6782-77dfff442"; pname = "plexmediaserver"; # Fetch the source src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl { url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb"; - sha256 = "0nj9n250lhin58xlqvn2l0pjxdbajj0bla2wrgan8gs2m45nk3q9"; + sha256 = "1ssnqkyghjpc81jmh67j5bwqqbvjb9aaan9j1yp2rj89fgg9br2c"; } else fetchurl { url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb"; - sha256 = "0a5h151gh1ja3frqzaqw3pj1kyh5p0wgnfmmxiz0q3zx1drjs611"; + sha256 = "0mnqbh5cfpvbhq2s0jg207cy45dm6dkz3d88qgwsi8spwfaj84p7"; }; outputs = [ "out" "basedb" ]; From 6cdbfcb08621d161f33395fc11470f9cd650ebd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 9 Mar 2023 07:33:34 -0800 Subject: [PATCH 20/36] imagemagick: 7.1.0-62 -> 7.1.1-0 Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.0-62...7.1.1-0 --- pkgs/applications/graphics/ImageMagick/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index 1d7863df05e8..d45ae2fa5493 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -47,13 +47,13 @@ in stdenv.mkDerivation (finalAttrs: { pname = "imagemagick"; - version = "7.1.0-62"; + version = "7.1.1-0"; src = fetchFromGitHub { owner = "ImageMagick"; repo = "ImageMagick"; rev = finalAttrs.version; - hash = "sha256-K74BWxGTpkaE+KBrdOCVd+m/2MJP6YUkB2CFh/YEHyI="; + hash = "sha256-FaoiB8qnzgREaslEXRituToIbU9tK3FnvC5ptFkctjA="; }; outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big From 1a032cd8e706635ecd904475020cf6ae41a569db Mon Sep 17 00:00:00 2001 From: Gabriel Dougherty Date: Thu, 9 Mar 2023 10:59:43 -0500 Subject: [PATCH 21/36] pdfmixtool: 1.1 -> 1.1.1 --- pkgs/applications/office/pdfmixtool/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/office/pdfmixtool/default.nix b/pkgs/applications/office/pdfmixtool/default.nix index c8f6ce6de10f..f7b58acf22b8 100644 --- a/pkgs/applications/office/pdfmixtool/default.nix +++ b/pkgs/applications/office/pdfmixtool/default.nix @@ -13,13 +13,13 @@ mkDerivation rec { pname = "pdfmixtool"; - version = "1.1"; + version = "1.1.1"; src = fetchFromGitLab { owner = "scarpetta"; repo = pname; rev = "v${version}"; - hash = "sha256-S8hhWZ6nHyIWPwsfl+o9XnljLD3aE/vthCLuWEbm5nc="; + hash = "sha256-fgtRKUG6J/CM6cXUTHWAPemqL8loWZT3wZmGdRHldq8="; }; nativeBuildInputs = [ @@ -36,12 +36,11 @@ mkDerivation rec { ]; patches = [ - # fix incompatibility with qpdf11 + # fix incompatibility with qpdf11.3.0 usage of c++17 - delete this patch when we reach pdfmixtool version > v1.1.1 (fetchpatch { - url = "https://gitlab.com/scarpetta/pdfmixtool/-/commit/81f7e96f6e68dfeba3cd4e00d8553dfdd2d7f2fa.diff"; - hash = "sha256-uBchYjUIqL7dJR7U/TSxhSGu1qY742cFUIv0XKU6L2g="; + url = "https://gitlab.com/scarpetta/pdfmixtool/-/commit/bd5f78c3a4d977d9b0c74302ce2521c737189b43.diff"; + hash = "sha256-h2g5toFqgEEnObd2TYQms1a1WFTgN7VsIHyy0Uyq4/I="; }) - ]; meta = with lib; { From 78c95c14b6b74812dfd76ddc44344826f723cc7c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 9 Mar 2023 16:57:06 +0000 Subject: [PATCH 22/36] awscli2: 2.11.0 -> 2.11.1 --- pkgs/tools/admin/awscli2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/awscli2/default.nix b/pkgs/tools/admin/awscli2/default.nix index bf588d217805..24dedd64e143 100644 --- a/pkgs/tools/admin/awscli2/default.nix +++ b/pkgs/tools/admin/awscli2/default.nix @@ -25,14 +25,14 @@ let in with py.pkgs; buildPythonApplication rec { pname = "awscli2"; - version = "2.11.0"; # N.B: if you change this, check if overrides are still up-to-date + version = "2.11.1"; # N.B: if you change this, check if overrides are still up-to-date format = "pyproject"; src = fetchFromGitHub { owner = "aws"; repo = "aws-cli"; rev = version; - hash = "sha256-i5ZGq51ZKEkyt6+d/Q4NzGS/zEaoqNql2IPZ2xlTV6k="; + hash = "sha256-+gTs+TAv3gchtwGbiYwXjIfMYFWfkGW9Jk1Aru3mA3s="; }; postPatch = '' From 7d8b42a553f3fa2f76e1b754b424d1c3c23bd7d0 Mon Sep 17 00:00:00 2001 From: Artturin Date: Thu, 9 Mar 2023 20:56:47 +0200 Subject: [PATCH 23/36] qt5: inherit from __splicedPackages to fix cross --- pkgs/top-level/all-packages.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4fbad823ba93..738e2a75fcca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23058,12 +23058,11 @@ with pkgs; qt5 = recurseIntoAttrs (makeOverridable (import ../development/libraries/qt-5/5.15) { - inherit newScope; - inherit lib fetchurl fetchpatch fetchgit fetchFromGitHub makeSetupHook makeWrapper; - inherit bison cups dconf harfbuzz libGL perl gtk3 python3; - inherit (gst_all_1) gstreamer gst-plugins-base; - inherit darwin; - inherit buildPackages; + inherit (__splicedPackages) + makeScopeWithSplicing generateSplicesForMkScope lib fetchurl fetchpatch fetchgit fetchFromGitHub makeSetupHook makeWrapper + bison cups dconf harfbuzz libGL perl gtk3 python3 + darwin buildPackages; + inherit (__splicedPackages.gst_all_1) gstreamer gst-plugins-base; stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; }); From 2cbbef006b5b48dc9428d3caa99f853fedc6bfe7 Mon Sep 17 00:00:00 2001 From: Artturin Date: Thu, 9 Mar 2023 20:57:06 +0200 Subject: [PATCH 24/36] qt5: use makeScopeWithSplicing if there is more than one qt5 attr and this file is copied then the arg to generateSplicesForMkScope should be changed --- nixos/modules/config/no-x-libs.nix | 2 +- pkgs/development/libraries/qt-5/5.15/default.nix | 7 +++++-- pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix index 763c2038f6d4..3ebe2fa9f164 100644 --- a/nixos/modules/config/no-x-libs.nix +++ b/nixos/modules/config/no-x-libs.nix @@ -61,7 +61,7 @@ with lib; pinentry = super.pinentry.override { enabledFlavors = [ "curses" "tty" "emacs" ]; withLibsecret = false; }; qemu = super.qemu.override { gtkSupport = false; spiceSupport = false; sdlSupport = false; }; qrencode = super.qrencode.overrideAttrs (_: { doCheck = false; }); - qt5 = super.qt5.overrideScope' (const (super': { + qt5 = super.qt5.overrideScope (const (super': { qtbase = super'.qtbase.override { withGtk3 = false; }; })); stoken = super.stoken.override { withGTK3 = false; }; diff --git a/pkgs/development/libraries/qt-5/5.15/default.nix b/pkgs/development/libraries/qt-5/5.15/default.nix index 31de73b25edc..8560779b8d03 100644 --- a/pkgs/development/libraries/qt-5/5.15/default.nix +++ b/pkgs/development/libraries/qt-5/5.15/default.nix @@ -7,7 +7,7 @@ Check for any minor version changes. */ -{ newScope +{ makeScopeWithSplicing, generateSplicesForMkScope , lib, stdenv, fetchurl, fetchgit, fetchpatch, fetchFromGitHub, makeSetupHook, makeWrapper , bison, cups ? null, harfbuzz, libGL, perl, python3 , gstreamer, gst-plugins-base, gtk3, dconf @@ -119,6 +119,9 @@ let callPackage = self.newScope { inherit qtCompatVersion qtModule srcs stdenv; }; in { + # remove before 23.11 + overrideScope' = lib.warn "qt5 now uses makeScopeWithSplicing which does not have \"overrideScope'\", use \"overrideScope\"." self.overrideScope; + inherit callPackage qtCompatVersion qtModule srcs; mkDerivationWith = @@ -225,4 +228,4 @@ let } ../hooks/wrap-qt-apps-hook.sh; }; -in lib.makeScope newScope addPackages +in makeScopeWithSplicing (generateSplicesForMkScope "qt5") (_: {}) (_: {}) addPackages diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 738e2a75fcca..ac6ef5664f7c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23072,7 +23072,7 @@ with pkgs; # TODO: remove once no package needs this anymore or together with OpenSSL 1.1 # Current users: mumble, murmur - qt5_openssl_1_1 = qt5.overrideScope' (_: super: { + qt5_openssl_1_1 = qt5.overrideScope (_: super: { qtbase = super.qtbase.override { openssl = openssl_1_1; libmysqlclient = libmysqlclient.override { From 56be2087c5c3080052a2b70376cb70f810b34d14 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 28 Feb 2023 10:58:12 +0000 Subject: [PATCH 25/36] ebook_tools: fix cross This doesn't seem to be necessary any more, and isn't cross-friendly. --- pkgs/tools/text/ebook-tools/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/tools/text/ebook-tools/default.nix b/pkgs/tools/text/ebook-tools/default.nix index 1a46110e2a42..5efdb69fe453 100644 --- a/pkgs/tools/text/ebook-tools/default.nix +++ b/pkgs/tools/text/ebook-tools/default.nix @@ -12,11 +12,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ libxml2 libzip ]; - preConfigure = - '' - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libzip)" - ''; - meta = with lib; { homepage = "http://ebook-tools.sourceforge.net"; description = "Tools and library for dealing with various ebook file formats"; From bc7d355dc07ad0c789e45877cd8d7896253923ad Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 1 Mar 2023 14:38:34 +0000 Subject: [PATCH 26/36] lib.systems: don't try to emulate s390-linux We don't have an emulator that can do this. --- lib/systems/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/systems/default.nix b/lib/systems/default.nix index 4a5e66caec7c..7e6fa5ecfb4b 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -140,6 +140,7 @@ rec { qemuArch = if final.isAarch32 then "arm" + else if final.isS390 && !final.isS390x then null else if final.isx86_64 then "x86_64" else if final.isx86 then "i386" else final.uname.processor; @@ -193,7 +194,7 @@ rec { then "${pkgs.runtimeShell} -c '\"$@\"' --" else if final.isWindows then "${wine}/bin/wine${lib.optionalString (final.parsed.cpu.bits == 64) "64"}" - else if final.isLinux && pkgs.stdenv.hostPlatform.isLinux + else if final.isLinux && pkgs.stdenv.hostPlatform.isLinux && final.qemuArch != null then "${qemu-user}/bin/qemu-${final.qemuArch}" else if final.isWasi then "${pkgs.wasmtime}/bin/wasmtime" From 737e372a78fbbc4f9dd8bdb9c7eeefe4d1e233f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Tue, 7 Mar 2023 22:39:05 +0100 Subject: [PATCH 27/36] fastly: use viceroy from nix --- pkgs/misc/fastly/default.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/fastly/default.nix b/pkgs/misc/fastly/default.nix index e8db6a8eeccf..743d8cd1c5f2 100644 --- a/pkgs/misc/fastly/default.nix +++ b/pkgs/misc/fastly/default.nix @@ -4,17 +4,19 @@ , installShellFiles , buildGoModule , go +, makeWrapper +, viceroy }: buildGoModule rec { pname = "fastly"; - version = "7.0.1"; + version = "8.0.0"; src = fetchFromGitHub { owner = "fastly"; repo = "cli"; rev = "refs/tags/v${version}"; - hash = "sha256-6M1vdwtw+qjKldW642JN2sanaKV3u9J1qWAoLRNupzE="; + hash = "sha256-Bwof1Np0eSjmBXQ6dqFmw3TA/2u+VzzyIn/95m9eXVo="; # The git commit is part of the `fastly version` original output; # leave that output the same in nixpkgs. Use the `.git` directory # to retrieve the commit SHA, and remove the directory afterwards, @@ -31,10 +33,11 @@ buildGoModule rec { "cmd/fastly" ]; - vendorHash = "sha256-oQwlhlZHpUvGaOyozBpK5W9glzo8VKH7S3vih5c15OA="; + vendorHash = "sha256-/tdvIX839NkhUoj/bfJ/68K8RtPCidydNQZCdDvizzU="; nativeBuildInputs = [ installShellFiles + makeWrapper ]; # Flags as provided by the build automation of the project: @@ -49,14 +52,19 @@ buildGoModule rec { ]; preBuild = let cliConfigToml = fetchurl { - url = "https://web.archive.org/web/20230207211120/https://developer.fastly.com/api/internal/cli-config"; - hash = "sha256-Vkl8V5AkiJMZLswSN0vTnz7S7/5lXftlWD5UZh//vUw="; + url = "https://web.archive.org/web/20230308181550/https://developer.fastly.com/api/internal/cli-config"; + hash = "sha256-Y2KBTiUQlugKjfhOY+8W7/IUSjgeRVc2NgmL+nhb6aQ="; }; in '' cp ${cliConfigToml} ./pkg/config/config.toml ldflags+=" -X github.com/fastly/cli/pkg/revision.GitCommit=$(cat COMMIT)" ''; + preFixup = '' + wrapProgram $out/bin/fastly --prefix PATH : ${lib.makeBinPath [ viceroy ]} \ + --set FASTLY_VICEROY_USE_PATH 1 + ''; + postInstall = '' export HOME="$(mktemp -d)" installShellCompletion --cmd fastly \ From 036f75ff5c9a8f49c09a656fc88e20ace2b34513 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 9 Mar 2023 21:59:29 +0100 Subject: [PATCH 28/36] chromiumBeta: 111.0.5563.64 -> 112.0.5615.20 --- .../networking/browsers/chromium/upstream-info.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 56bafcd6385d..28c5f55c9ffc 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -19,15 +19,15 @@ } }, "beta": { - "version": "111.0.5563.64", - "sha256": "0x20zqwq051a5j76q1c3m0ddf1hhcm6fgz3b7rqrfamjppia0p3x", - "sha256bin64": "1cl7zbsl0ndp5x1g0p1q511mn72iy72sqxycmlrccs9j8jmaiqgw", + "version": "112.0.5615.20", + "sha256": "0qxifnc2xk2zkmpzc1pzd95ym3i829qzgzd83qh7ah9p64c76f9y", + "sha256bin64": "11c7k87fnfhaynhpp2rjzpzydrl096fjx3gw589nvq1lckbg9nsd", "deps": { "gn": { - "version": "2022-12-12", + "version": "2023-02-17", "url": "https://gn.googlesource.com/gn", - "rev": "5e19d2fb166fbd4f6f32147fbb2f497091a54ad8", - "sha256": "1b5fwldfmkkbpp5x63n1dxv0nc965hphc8rm8ah7zg44zscm9z30" + "rev": "b25a2f8c2d33f02082f0f258350f5e22c0973108", + "sha256": "075p4jwk1apvwmqmvhwfw5f669ci7nxwjq9mz5aa2g5lz4fkdm4c" } } }, From afd3b4cfe254a131f95402fbb29af7be79c9b864 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 9 Mar 2023 21:59:29 +0100 Subject: [PATCH 29/36] chromiumDev: 112.0.5615.20 -> 113.0.5638.0 --- .../networking/browsers/chromium/upstream-info.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 56bafcd6385d..439ecba7f5cc 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -32,15 +32,15 @@ } }, "dev": { - "version": "112.0.5615.20", - "sha256": "0qxifnc2xk2zkmpzc1pzd95ym3i829qzgzd83qh7ah9p64c76f9y", - "sha256bin64": "0yvgwh8mmm42jp2cgi3kz9mq7gdcna3cf61ripgpqd8bf34fb6rx", + "version": "113.0.5638.0", + "sha256": "0v4hminx765swv0iakg5qw7rk6zc67cn5p9x625jaizz50ahpfib", + "sha256bin64": "07snjlizj30mzcm5fbsg6ibd4jqmcwiykdwrpqmdqq902c3gwc3r", "deps": { "gn": { - "version": "2023-02-17", + "version": "2023-02-24", "url": "https://gn.googlesource.com/gn", - "rev": "b25a2f8c2d33f02082f0f258350f5e22c0973108", - "sha256": "075p4jwk1apvwmqmvhwfw5f669ci7nxwjq9mz5aa2g5lz4fkdm4c" + "rev": "fe330c0ae1ec29db30b6f830e50771a335e071fb", + "sha256": "0fj8kfck53hbfz30m8p0mfcqbjs9cjrlfzi03l3h7n7yd88js8i4" } } }, From 175a86d3b654afcfb6d98598c3abca5f436f35fb Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 9 Mar 2023 21:59:29 +0100 Subject: [PATCH 30/36] ungoogled-chromium: 110.0.5481.177 -> 111.0.5563.65 --- .../networking/browsers/chromium/default.nix | 6 +----- .../networking/browsers/chromium/upstream-info.json | 10 +++++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/default.nix b/pkgs/applications/networking/browsers/chromium/default.nix index 0152a7ed0926..202b0cab0e31 100644 --- a/pkgs/applications/networking/browsers/chromium/default.nix +++ b/pkgs/applications/networking/browsers/chromium/default.nix @@ -1,5 +1,4 @@ { newScope, config, stdenv, fetchurl, makeWrapper -, llvmPackages_14 , llvmPackages_15 , ed, gnugrep, coreutils, xdg-utils , glib, gtk3, gtk4, gnome, gsettings-desktop-schemas, gn, fetchgit @@ -19,7 +18,7 @@ }: let - llvmPackages = llvmPackages_14; + llvmPackages = llvmPackages_15; stdenv = llvmPackages.stdenv; upstream-info = (lib.importJSON ./upstream-info.json).${channel}; @@ -54,9 +53,6 @@ let inherit (upstream-info.deps.gn) url rev sha256; }; }); - } // lib.optionalAttrs (chromiumVersionAtLeast "111") rec { - llvmPackages = llvmPackages_15; - stdenv = llvmPackages_15.stdenv; }); browser = callPackage ./browser.nix { diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 56bafcd6385d..3b3858d352fc 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -45,9 +45,9 @@ } }, "ungoogled-chromium": { - "version": "110.0.5481.177", - "sha256": "1dy9l61r3fpl40ff790dbqqvw9l1svcgd7saz4whl9wm256labvv", - "sha256bin64": "0sylaf8b0rzr82dg7safvs5dxqqib26k4j6vlm75vs99dpnlznj2", + "version": "111.0.5563.65", + "sha256": "1wg84pd50zi5268snkiahnp5191c66bqkbvdz2z8azivm95lwqwp", + "sha256bin64": null, "deps": { "gn": { "version": "2022-12-12", @@ -56,8 +56,8 @@ "sha256": "1b5fwldfmkkbpp5x63n1dxv0nc965hphc8rm8ah7zg44zscm9z30" }, "ungoogled-patches": { - "rev": "110.0.5481.177-1", - "sha256": "0rsvkbsrnfkdp3iw4s54kddw8r771h14hf1ivgahmn42yjafkk3n" + "rev": "111.0.5563.65-1", + "sha256": "06mfm2gaz1nbwqhn2jp34pm52rw1q99i9fq7wh19m0qasdpidis9" } } } From ed00c38e0a4885aae0ba183402e8a36bee34265a Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Fri, 24 Feb 2023 08:19:26 -0500 Subject: [PATCH 31/36] torchvision: fix C/C++ compilers when using CUDA; migrate to cudaPackages - when building with CUDA, we must make sure to use the same C/C++ compiler as NVCC to avoid symbol errors when linking - move to cudaPackages to reduce closure size - separate build-time and run-time CUDA dependencies --- .../python-modules/torchvision/default.nix | 69 +++++++++++++------ 1 file changed, 47 insertions(+), 22 deletions(-) diff --git a/pkgs/development/python-modules/torchvision/default.nix b/pkgs/development/python-modules/torchvision/default.nix index d36beb6575e0..a9c5defbe38e 100644 --- a/pkgs/development/python-modules/torchvision/default.nix +++ b/pkgs/development/python-modules/torchvision/default.nix @@ -1,30 +1,50 @@ -{ lib -, symlinkJoin -, buildPythonPackage +{ buildPythonPackage +, cudaSupport ? torch.cudaSupport or false # by default uses the value from torch , fetchFromGitHub -, ninja -, which +, lib , libjpeg_turbo , libpng +, ninja , numpy -, scipy , pillow -, torch , pytest -, cudaSupport ? torch.cudaSupport or false # by default uses the value from torch +, scipy +, symlinkJoin +, torch +, which }: let - inherit (torch) gpuTargetString; - inherit (torch.cudaPackages) cudatoolkit cudnn; + inherit (torch) cudaPackages gpuTargetString; + inherit (cudaPackages) cudatoolkit cudaFlags cudaVersion; - cudatoolkit_joined = symlinkJoin { - name = "${cudatoolkit.name}-unsplit"; - paths = [ cudatoolkit.out cudatoolkit.lib ]; + # NOTE: torchvision doesn't use cudnn; torch does! + # For this reason it is not included. + cuda-common-redist = with cudaPackages; [ + cuda_cccl # + libcublas # cublas_v2.h + libcusolver # cusolverDn.h + libcusparse # cusparse.h + ]; + + cuda-native-redist = symlinkJoin { + name = "cuda-native-redist-${cudaVersion}"; + paths = with cudaPackages; [ + cuda_cudart # cuda_runtime.h + cuda_nvcc + ] ++ cuda-common-redist; }; -in buildPythonPackage rec { + + cuda-redist = symlinkJoin { + name = "cuda-redist-${cudaVersion}"; + paths = cuda-common-redist; + }; + pname = "torchvision"; version = "0.14.1"; +in +buildPythonPackage { + inherit pname version; src = fetchFromGitHub { owner = "pytorch"; @@ -33,18 +53,22 @@ in buildPythonPackage rec { hash = "sha256-lKkEJolJQaLr1TVm44CizbJQedGa1wyy0cFWg2LTJN0="; }; - nativeBuildInputs = [ libpng ninja which ] - ++ lib.optionals cudaSupport [ cudatoolkit_joined ]; + nativeBuildInputs = [ libpng ninja which ] ++ lib.optionals cudaSupport [ cuda-native-redist ]; - TORCHVISION_INCLUDE = "${libjpeg_turbo.dev}/include/"; - TORCHVISION_LIBRARY = "${libjpeg_turbo}/lib/"; - - buildInputs = [ libjpeg_turbo libpng ] - ++ lib.optionals cudaSupport [ cudnn ]; + buildInputs = [ libjpeg_turbo libpng ] ++ lib.optionals cudaSupport [ cuda-redist ]; propagatedBuildInputs = [ numpy pillow torch scipy ]; - preBuild = lib.optionalString cudaSupport '' + preConfigure = '' + export TORCHVISION_INCLUDE="${libjpeg_turbo.dev}/include/" + export TORCHVISION_LIBRARY="${libjpeg_turbo}/lib/" + '' + # NOTE: We essentially override the compilers provided by stdenv because we don't have a hook + # for cudaPackages to swap in compilers supported by NVCC. + + lib.optionalString cudaSupport '' + export CC=${cudatoolkit.cc}/bin/cc + export CXX=${cudatoolkit.cc}/bin/c++ + export CUDAHOSTCXX=${cudatoolkit.cc}/bin/c++ export TORCH_CUDA_ARCH_LIST="${gpuTargetString}" export FORCE_CUDA=1 ''; @@ -52,6 +76,7 @@ in buildPythonPackage rec { # tries to download many datasets for tests doCheck = false; + pythonImportsCheck = [ "torchvision" ]; checkPhase = '' HOME=$TMPDIR py.test test --ignore=test/test_datasets_download.py ''; From 0061cd98801ada930e04bec8c9d9df45691bc40d Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Thu, 9 Mar 2023 13:40:56 -0800 Subject: [PATCH 32/36] vimPlugins.smartyank-nvim: init at 2023-02-25 --- pkgs/applications/editors/vim/plugins/generated.nix | 12 ++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 436a6781e831..de9e139cc45b 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -7644,6 +7644,18 @@ final: prev: meta.homepage = "https://github.com/gorkunov/smartpairs.vim/"; }; + smartyank-nvim = buildVimPluginFrom2Nix { + pname = "smartyank.nvim"; + version = "2023-02-25"; + src = fetchFromGitHub { + owner = "ibhagwan"; + repo = "smartyank.nvim"; + rev = "7e3905578f646503525b2f7018b8afd17861018c"; + sha256 = "19lp8cpnp3ynr6vc5si3gsfpdw78xs8krmaqlbjsx478ig316y7z"; + }; + meta.homepage = "https://github.com/ibhagwan/smartyank.nvim/"; + }; + snap = buildVimPluginFrom2Nix { pname = "snap"; version = "2022-08-03"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index d4557f0e4d29..f65b4e5d68d5 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -642,6 +642,7 @@ https://github.com/mopp/sky-color-clock.vim/,, https://github.com/kovisoft/slimv/,, https://github.com/mrjones2014/smart-splits.nvim/,, https://github.com/gorkunov/smartpairs.vim/,, +https://github.com/ibhagwan/smartyank.nvim/,, https://github.com/camspiers/snap/,, https://github.com/norcalli/snippets.nvim/,, https://github.com/shaunsingh/solarized.nvim/,HEAD, From 90bca3541d87edf83cb7d7693da9e5bdf7e1b107 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Fri, 10 Mar 2023 07:10:24 +1000 Subject: [PATCH 33/36] gh: 2.24.1 -> 2.24.3 Diff: https://github.com/cli/cli/compare/v2.24.1...v2.24.3 Changelog: https://github.com/cli/cli/releases/tag/v2.24.3 --- pkgs/applications/version-management/gh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/gh/default.nix b/pkgs/applications/version-management/gh/default.nix index 89b793a8adce..8c3e6ea42b3f 100644 --- a/pkgs/applications/version-management/gh/default.nix +++ b/pkgs/applications/version-management/gh/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "gh"; - version = "2.24.1"; + version = "2.24.3"; src = fetchFromGitHub { owner = "cli"; repo = "cli"; rev = "v${version}"; - hash = "sha256-W0wl9I5FblbUBi1kZ7X+lhnhDahrggm9ooTaTWqATLg="; + hash = "sha256-Z0Z8mMTk1uAgegL4swJswCJ3D5Zi7DMTai9oQXH+2WM="; }; vendorHash = "sha256-nn2DzjcXHiuSaiEuWNZTAZ3+OKrEpRzUPzqmH+gZ9sY="; From 633dd775ee3a8d311899483a4b20fe8112506810 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 9 Mar 2023 22:18:43 +0000 Subject: [PATCH 34/36] toast: 0.46.1 -> 0.46.2 --- pkgs/development/tools/toast/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/toast/default.nix b/pkgs/development/tools/toast/default.nix index 912050083112..98c072164faa 100644 --- a/pkgs/development/tools/toast/default.nix +++ b/pkgs/development/tools/toast/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "toast"; - version = "0.46.1"; + version = "0.46.2"; src = fetchFromGitHub { owner = "stepchowfun"; repo = pname; rev = "v${version}"; - sha256 = "sha256-3ng1nVl5eqpa3YWqT/RYZo9sBl6Zkyc8NabG1GpjapQ="; + sha256 = "sha256-WsNBBivfw0tUF3TsJBbg7A13IcFEqclF9MR55xogI5Q="; }; - cargoHash = "sha256-22DtD0PeuDK1Gwy28ZD02LJYgOYuowf+pDQjHXiT6+A="; + cargoHash = "sha256-hZA5iWZ2KKifvHRx5p9LM/la80ezyzV2XOuxq0lRYB0="; checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails From 9f98bcb917b646ce038bd2e6960ba618e569ed66 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 10 Mar 2023 00:06:57 +0100 Subject: [PATCH 35/36] vscode-extensions.rust-lang.rust-analyzer: 0.3.1059 -> 0.3.1426 --- .../rust-analyzer/build-deps/package.json | 29 ++++++++++--------- .../extensions/rust-analyzer/default.nix | 4 +-- .../vscode/extensions/rust-analyzer/update.sh | 2 +- 3 files changed, 19 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json b/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json index 48592e9e6dd8..167f92fbede9 100644 --- a/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json +++ b/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json @@ -1,20 +1,23 @@ { "name": "rust-analyzer", - "version": "0.3.1059", + "version": "0.3.1426", "dependencies": { - "d3": "^7.3.0", - "d3-graphviz": "^4.1.0", - "vscode-languageclient": "8.0.0-next.14", - "@types/node": "~14.17.5", + "anser": "^2.1.1", + "d3": "^7.6.1", + "d3-graphviz": "^5.0.2", + "vscode-languageclient": "^8.0.2", + "@types/node": "~16.11.7", "@types/vscode": "~1.66.0", - "@typescript-eslint/eslint-plugin": "^5.16.0", - "@typescript-eslint/parser": "^5.16.0", - "@vscode/test-electron": "^2.1.3", + "@typescript-eslint/eslint-plugin": "^5.30.5", + "@typescript-eslint/parser": "^5.30.5", + "@vscode/test-electron": "^2.1.5", "cross-env": "^7.0.3", - "eslint": "^8.11.0", - "tslib": "^2.3.0", - "typescript": "^4.6.3", - "typescript-formatter": "^7.2.2", - "vsce": "^2.7.0" + "eslint": "^8.19.0", + "eslint-config-prettier": "^8.5.0", + "ovsx": "^0.5.2", + "prettier": "^2.7.1", + "tslib": "^2.4.0", + "typescript": "^4.7.4", + "vsce": "^2.9.2" } } diff --git a/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix b/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix index 531e44f66685..368d6ff8e08c 100644 --- a/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix +++ b/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix @@ -20,13 +20,13 @@ let # Use the plugin version as in vscode marketplace, updated by update script. inherit (vsix) version; - releaseTag = "2022-05-17"; + releaseTag = "2023-03-06"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-analyzer"; rev = releaseTag; - sha256 = "sha256-vrVpgQYUuJPgK1NMb1nxlCdxjoYo40YkUbZpH2Z2mwM="; + sha256 = "sha256-Njlus+vY3N++qWE0JXrGjwcXY2QDFuOV/7NruBBMETY="; }; build-deps = nodePackages."rust-analyzer-build-deps-../../applications/editors/vscode/extensions/rust-analyzer/build-deps"; diff --git a/pkgs/applications/editors/vscode/extensions/rust-analyzer/update.sh b/pkgs/applications/editors/vscode/extensions/rust-analyzer/update.sh index 3fa4e6f4c11f..fbf62c3b9db4 100755 --- a/pkgs/applications/editors/vscode/extensions/rust-analyzer/update.sh +++ b/pkgs/applications/editors/vscode/extensions/rust-analyzer/update.sh @@ -48,4 +48,4 @@ else ./"$node_packages"/generate.sh fi -echo "Remember to also update the revisionTag and hash in default.nix!" +echo "Remember to also update the releaseTag and hash in default.nix!" From 7f2b7d56d816eba7058447ddd07674c4b10a5337 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 10 Mar 2023 00:07:21 +0100 Subject: [PATCH 36/36] nodePackages: update all --- .../node-packages/node-packages.nix | 5543 ++++++++--------- 1 file changed, 2639 insertions(+), 2904 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 1314cb690198..4c7dd7276241 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.1502.0" = { + "@angular-devkit/architect-0.1502.2" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1502.0"; + version = "0.1502.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1502.0.tgz"; - sha512 = "/HmyAQhb4BNbcVRL2uaLwrJAAeYVUD42Bipoq8+kUNzoRv9QqJTIOx+2fSsmwBk8C+Jx3184UD3SfUmEnFPt4g=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1502.2.tgz"; + sha512 = "+NE2IV+tuPgcBdC+1ac7eYIBqZDH0VskXTqbhHiRKySbK0vF3/cwTw6Ie07phl0xC1dxLXeRE52L5YwX5jERFQ=="; }; }; "@angular-devkit/core-15.0.4" = { @@ -175,13 +175,13 @@ let sha512 = "PW5MRmd9DHJR4FaXchwQtj9pXnsghSTnwRvfZeCRNYgU2sv0DKyTV+YTSJB+kNXnoPNG1Je6amDEkiXecpspXg=="; }; }; - "@angular-devkit/core-15.2.0" = { + "@angular-devkit/core-15.2.2" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "15.2.0"; + version = "15.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-15.2.0.tgz"; - sha512 = "kUE5XvQzn+fiEvFqIk8x0q4hvRD+dKfAMM7p0uPQ69O9cj2b8c01oDvLOskvwhIJOnKTxnK/1d2gFQLupPci4A=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-15.2.2.tgz"; + sha512 = "YPwDSldpVcuSJuIkXy5iRzaPA78ySXKc80OicHR6XtMsrHlwY7DuxQoSWr+ih9LAqpeeBz9ECMalztwohdy0MA=="; }; }; "@angular-devkit/schematics-15.0.4" = { @@ -202,13 +202,13 @@ let sha512 = "jpddxo9Qd2yRQ1t9FLhAx5S+luz6HkyhDytq0LFKbxf9ikf1J4oy9riPBFl4pRmrNARWcHZ6GbD20/Ky8PjmXQ=="; }; }; - "@angular-devkit/schematics-15.2.0" = { + "@angular-devkit/schematics-15.2.2" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "15.2.0"; + version = "15.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.2.0.tgz"; - sha512 = "LrsbQWaMRrLPBCgTOw7F+BvA4mjCljC+42NmiId/GXdU9FljEw/Ly1+u7LJREnE1yYqGQeR8zd8xjgIS0mTc3A=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.2.2.tgz"; + sha512 = "i1yQzzv1bJtVrhWPixdXg61nkR/mO5/mQ6SA8rq9t0NAjs4W08MBZ6TUspPvt4iLy9+W6pImW45tUmnfkdhhdQ=="; }; }; "@angular-devkit/schematics-cli-15.1.4" = { @@ -436,13 +436,13 @@ let sha512 = "Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg=="; }; }; - "@apollo/usage-reporting-protobuf-4.0.2" = { + "@apollo/usage-reporting-protobuf-4.1.0" = { name = "_at_apollo_slash_usage-reporting-protobuf"; packageName = "@apollo/usage-reporting-protobuf"; - version = "4.0.2"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@apollo/usage-reporting-protobuf/-/usage-reporting-protobuf-4.0.2.tgz"; - sha512 = "GfE8aDqi/lAFut95pjH9IRvH0zGsQ5G/2lYL0ZLZfML7ArX+A4UVHFANQcPCcUYGE6bI6OPhLekg4Vsjf6B1cw=="; + url = "https://registry.npmjs.org/@apollo/usage-reporting-protobuf/-/usage-reporting-protobuf-4.1.0.tgz"; + sha512 = "hXouMuw5pQVkzi8dgMybmr6Y11+eRmMQVoB5TF0HyTwAg9SOq/v3OCuiYqcVUKdBcskU9Msp+XvjAk0GKpWCwQ=="; }; }; "@apollo/utils.dropunuseddefinitions-1.1.0" = { @@ -571,22 +571,22 @@ let sha512 = "6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw=="; }; }; - "@astrojs/compiler-1.1.2" = { + "@astrojs/compiler-1.2.0" = { name = "_at_astrojs_slash_compiler"; packageName = "@astrojs/compiler"; - version = "1.1.2"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.1.2.tgz"; - sha512 = "L3/JrdNwBFKcoDeStmRgJWvI2t/5nNJm7HnGjDy4e8BH3qKv8iQYdpvuQjeYRA00k6I1lxZGBm/0wU+Lg7HPiQ=="; + url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.2.0.tgz"; + sha512 = "O8yPCyuq+PU9Fjht2tIW6WzSWiq8qDF1e8uAX2x+SOGFzKqOznp52UlDG2mSf+ekf0Z3R34sb64O7SgX+asTxg=="; }; }; - "@asyncapi/specs-4.1.1" = { + "@asyncapi/specs-4.1.2" = { name = "_at_asyncapi_slash_specs"; packageName = "@asyncapi/specs"; - version = "4.1.1"; + version = "4.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@asyncapi/specs/-/specs-4.1.1.tgz"; - sha512 = "CtJdKTQnzX3UwHVBgwrzLIwmnlxl1VKsLNG9ORgdUoD7BFB1fEh9hjdCD3Qh3eHhvlfizLtlFlGet1yQBSi1mg=="; + url = "https://registry.npmjs.org/@asyncapi/specs/-/specs-4.1.2.tgz"; + sha512 = "A6iUCI96LB1Uma9DIaFcFKegNiOsGkquk0UUtkx7VbBJO+bOlwKfUhl5n+nwKaVR/UjyszeBtbUEodIC7Q3oBQ=="; }; }; "@aws-crypto/crc32-2.0.0" = { @@ -1156,22 +1156,22 @@ let sha512 = "/R5q5agdPd7HJB68XMzpxrNPk158EHUvkFkuRu5Qf3kkkHebEzWEBlWoVpUe6ss4rP9Tqcue6xPuaftEmhjpYw=="; }; }; - "@aws-sdk/signature-v4-3.272.0" = { + "@aws-sdk/signature-v4-3.282.0" = { name = "_at_aws-sdk_slash_signature-v4"; packageName = "@aws-sdk/signature-v4"; - version = "3.272.0"; + version = "3.282.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.272.0.tgz"; - sha512 = "pWxnHG1NqJWMwlhJ6NHNiUikOL00DHROmxah6krJPMPq4I3am2KY2Rs/8ouWhnEXKaHAv4EQhSALJ+7Mq5S4/A=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.282.0.tgz"; + sha512 = "rnSL3UyF/No7+O2EMtN1sTCiqL1a+odbfnfo3wCSl8DH5PEYINt2kZgVEvT1Fgaffk1pUggBBOZoR+arPIIDJA=="; }; }; - "@aws-sdk/signature-v4-crt-3.272.0" = { + "@aws-sdk/signature-v4-crt-3.282.0" = { name = "_at_aws-sdk_slash_signature-v4-crt"; packageName = "@aws-sdk/signature-v4-crt"; - version = "3.272.0"; + version = "3.282.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.272.0.tgz"; - sha512 = "egTOzuMoQvKXR8B1kT0Ym6He0BrADj5S2nJxhmIqmuANLXulUVfi9yxdlPfI9eWGimzOCzVsyd8Pl7HYU67FSA=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.282.0.tgz"; + sha512 = "NKtqmJLfutjwtpwFFOTBPyEi4262+R+cMhjYo6CwEHXlbXgPbPlyuuIdSuFlL8MecGC61nw2prBlwkTjR//pxA=="; }; }; "@aws-sdk/signature-v4-multi-region-3.226.0" = { @@ -1543,13 +1543,13 @@ let sha512 = "zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw=="; }; }; - "@azure/core-rest-pipeline-1.10.1" = { + "@azure/core-rest-pipeline-1.10.2" = { name = "_at_azure_slash_core-rest-pipeline"; packageName = "@azure/core-rest-pipeline"; - version = "1.10.1"; + version = "1.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.10.1.tgz"; - sha512 = "Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA=="; + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.10.2.tgz"; + sha512 = "e3WzAsRKLor5EgK2bQqR1OY5D7VBqzORHtlqtygZZQGCYOIBsynqrZBa8MFD1Ue9r8TPtofOLditalnlQHS45Q=="; }; }; "@azure/core-tracing-1.0.0-preview.13" = { @@ -1570,13 +1570,13 @@ let sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw=="; }; }; - "@azure/core-util-1.1.1" = { + "@azure/core-util-1.2.0" = { name = "_at_azure_slash_core-util"; packageName = "@azure/core-util"; - version = "1.1.1"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.1.1.tgz"; - sha512 = "A4TBYVQCtHOigFb2ETiiKFDocBoI1Zk2Ui1KpI42aJSIDexF7DHQFpnjonltXAIU/ceH+1fsZAWWgvX6/AKzog=="; + url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.2.0.tgz"; + sha512 = "ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng=="; }; }; "@azure/identity-2.1.0" = { @@ -1597,31 +1597,31 @@ let sha512 = "0112LegxeR03L8J4k+q6HwBVvrpd9y+oInG0FG3NaHXN7YUubVBon/eb5jFI6edGrvNigpxSR0XIsprFXdkzCQ=="; }; }; - "@azure/logger-1.0.3" = { + "@azure/logger-1.0.4" = { name = "_at_azure_slash_logger"; packageName = "@azure/logger"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/logger/-/logger-1.0.3.tgz"; - sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; + url = "https://registry.npmjs.org/@azure/logger/-/logger-1.0.4.tgz"; + sha512 = "ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg=="; }; }; - "@azure/msal-browser-2.33.0" = { + "@azure/msal-browser-2.34.0" = { name = "_at_azure_slash_msal-browser"; packageName = "@azure/msal-browser"; - version = "2.33.0"; + version = "2.34.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.33.0.tgz"; - sha512 = "c7CVh1tfUfxiWkEIhoIb11hL4PGo4hz0M+gMy34ATagAKdLK7qyEu/5AXJWAf5lz5eE+vQhm7+LKiuETrcXXGw=="; + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.34.0.tgz"; + sha512 = "stoXdlfAtyVIMOp1lS5PorgO5f66MGRi3Q1FBlXhVZFTsTfAWrNdSOx1m/PXWHskWE9aXO+NEzXVOoWmDNnvNA=="; }; }; - "@azure/msal-common-10.0.0" = { + "@azure/msal-common-11.0.0" = { name = "_at_azure_slash_msal-common"; packageName = "@azure/msal-common"; - version = "10.0.0"; + version = "11.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-10.0.0.tgz"; - sha512 = "/LghpT93jsZLy55QzTsRZWMx6R1Mjc1Aktwps8sKSGE3WbrGwbSsh2uhDlpl6FMcKChYjJ0ochThWwwOodrQNg=="; + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-11.0.0.tgz"; + sha512 = "SZH8ObQ3Hq5v3ogVGBYJp1nNW7p+MtM4PH4wfNadBP9wf7K0beQHF9iOtRcjPOkwZf+ZD49oXqw91LndIkdk8g=="; }; }; "@azure/msal-common-7.6.0" = { @@ -1633,13 +1633,13 @@ let sha512 = "XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q=="; }; }; - "@azure/msal-node-1.15.0" = { + "@azure/msal-node-1.16.0" = { name = "_at_azure_slash_msal-node"; packageName = "@azure/msal-node"; - version = "1.15.0"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.15.0.tgz"; - sha512 = "fwC5M0c8pxOAzmScPbpx7j28YVTDebUaizlVF7bR0xvlU0r3VWW5OobCcr9ybqKS6wGyO7u4EhXJS9rjRWAuwA=="; + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.16.0.tgz"; + sha512 = "eGXPp65i++mAIvziafbCH970TCeECB6iaQP7aRzZEjtU238cW4zKm40U8YxkiCn9rR1G2VeMHENB5h6WRk7ZCQ=="; }; }; "@azure/storage-blob-12.11.0" = { @@ -2938,13 +2938,13 @@ let sha512 = "ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw=="; }; }; - "@babel/types-7.18.4" = { + "@babel/types-7.19.0" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.18.4"; + version = "7.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz"; - sha512 = "ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz"; + sha512 = "YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA=="; }; }; "@babel/types-7.21.2" = { @@ -3226,40 +3226,40 @@ let sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; }; }; - "@cspell/cspell-bundled-dicts-6.27.0" = { + "@cspell/cspell-bundled-dicts-6.28.0" = { name = "_at_cspell_slash_cspell-bundled-dicts"; packageName = "@cspell/cspell-bundled-dicts"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.27.0.tgz"; - sha512 = "udRkEUz0QIAecCUECVac8IBCu7f5siCrxUZmsoZINgqLlSh0ppmn4/CiiA+sefj99rOq/vB4VEEQCnMShfl5qw=="; + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.28.0.tgz"; + sha512 = "RjAf67eejzQVXPX45xmIGFgSewtUeY5R+xun6xz1pQFIIrgsoxYNZ1hbdj72sX6+QdkJDf1WF3S9zMfiRVlOXQ=="; }; }; - "@cspell/cspell-pipe-6.27.0" = { + "@cspell/cspell-pipe-6.28.0" = { name = "_at_cspell_slash_cspell-pipe"; packageName = "@cspell/cspell-pipe"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.27.0.tgz"; - sha512 = "lS3kIew5+ETExORdPcJkEA03ylrEL9CHaJ1xE7SSezU3mqoUgbVW5/f2+PCIWPu1mVvUpWef2X1ODddiPPp9NQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.28.0.tgz"; + sha512 = "/D8cmitszZCethV4ekz+RMigwlkk5kLcOiVdjKBx/YHC5CtpkQ+v5ZlaTpxAKCoOyfyKW6hI8UNhNIx7ZyrizQ=="; }; }; - "@cspell/cspell-service-bus-6.27.0" = { + "@cspell/cspell-service-bus-6.28.0" = { name = "_at_cspell_slash_cspell-service-bus"; packageName = "@cspell/cspell-service-bus"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.27.0.tgz"; - sha512 = "GC3WseMeBE1xtIftBgfTOQxgAMHmLF5HhjHo2rVIfCKv3uyQXuNsGYmtqY7dm4GDrBx1vIYjOoT2xtEaSLoUPw=="; + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.28.0.tgz"; + sha512 = "l3PtT8wZTTB3HcCFg0WYAamzt9MO4fVevOj+6lOaTTQDh5iV+4+XmutkdKGoDmMpe3EdqOeYJ5SC96NUb6U5CA=="; }; }; - "@cspell/cspell-types-6.27.0" = { + "@cspell/cspell-types-6.28.0" = { name = "_at_cspell_slash_cspell-types"; packageName = "@cspell/cspell-types"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.27.0.tgz"; - sha512 = "eHKpAhIUYIjssqF20IrihzNAPDTWJsFpBzg7UznX03Z4Y77JrGAgdRZ6h69uaIafQb7uotNYWnDazpVSkMpikQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.28.0.tgz"; + sha512 = "+LJ7IlD4X9eaw8fBPtHYH8g5eFIkEZssLrjAOLA2hIps5aVNZ6J6oS4lUOVdKaDjdn6qsPgTpHGZJ2rV/RSrCA=="; }; }; "@cspell/dict-ada-4.0.1" = { @@ -3316,13 +3316,13 @@ let sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw=="; }; }; - "@cspell/dict-companies-3.0.8" = { + "@cspell/dict-companies-3.0.9" = { name = "_at_cspell_slash_dict-companies"; packageName = "@cspell/dict-companies"; - version = "3.0.8"; + version = "3.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.8.tgz"; - sha512 = "tQPpkxgog+7xGN3dA9p2Hd4O95+hFYfJuHeY9GgxNahBQyq3bv0REAc6xlqdtkIpfV2ga93B0l37mQr1p107Iw=="; + url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.9.tgz"; + sha512 = "wSkVIJjk33Sm3LhieNv9TsSvUSeP0R/h8xx06NqbMYF43w9J8hZiMHlbB3FzaSOHRpXT5eBIJBVTeFbceZdiqg=="; }; }; "@cspell/dict-cpp-1.1.40" = { @@ -3820,13 +3820,13 @@ let sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; }; }; - "@cspell/dict-python-4.0.1" = { + "@cspell/dict-python-4.0.2" = { name = "_at_cspell_slash_dict-python"; packageName = "@cspell/dict-python"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.1.tgz"; - sha512 = "1wtUgyaTqRiQY0/fryk0oW22lcxNUnZ5DwteTzfatMdbgR0OHXTlHbI8vYxpHLWalSoch7EpLsnaymG+fOrt8g=="; + url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.2.tgz"; + sha512 = "w1jSWDR1CkO23cZFbSYgnD/ZqknDZSVCI1AOE6sSszOJR8shmBkV3lMBYd+vpLsWhmkLLBcZTXDkiqFLXDGowQ=="; }; }; "@cspell/dict-r-2.0.1" = { @@ -3964,22 +3964,22 @@ let sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A=="; }; }; - "@cspell/dynamic-import-6.27.0" = { + "@cspell/dynamic-import-6.28.0" = { name = "_at_cspell_slash_dynamic-import"; packageName = "@cspell/dynamic-import"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-6.27.0.tgz"; - sha512 = "PrBAH0+6OERWeY57PUH+9WmxYtUBnBjTYmm+3Zpg3SUd/ToD0cNf83OJCrcDF7KNQYE9rjCPUfVdsOe3aJlIHw=="; + url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-6.28.0.tgz"; + sha512 = "drPfcTDDnWfQqSA3TqYMewocbFnPIW08/xKnouC7QFThgNocLD6TkBExa9timCATEsL7HujeAFEgMaPPTPFMqA=="; }; }; - "@cspell/strong-weak-map-6.27.0" = { + "@cspell/strong-weak-map-6.28.0" = { name = "_at_cspell_slash_strong-weak-map"; packageName = "@cspell/strong-weak-map"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.27.0.tgz"; - sha512 = "4hel0Dik7GTX8yVOjOXlumIOzYD8mWzDeyMEhEJb3qwDfsTPeeYo1EMTSgtS+oJXR6kQ09qBrF1lok44v6NOAQ=="; + url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.28.0.tgz"; + sha512 = "M8qffYu672xMbF3JH5TmlXydfoglhiO/Tuy2fziQHtaTRm5Qp0KrSioSvHq+3QxnmHVTa91vYuzmr6qoAxqPjQ=="; }; }; "@cspotcode/source-map-consumer-0.8.0" = { @@ -5017,13 +5017,13 @@ let sha512 = "OU5P5mJyD3OoWYMWY+yIgwvgNS9cFAU10f+DDuvtogcWQOoJIsQ4Hy2McSfUfhKjq8L0FuWVb4Rt7kgA+XK86A=="; }; }; - "@exodus/schemasafe-1.0.0-rc.9" = { + "@exodus/schemasafe-1.0.0-rc.11" = { name = "_at_exodus_slash_schemasafe"; packageName = "@exodus/schemasafe"; - version = "1.0.0-rc.9"; + version = "1.0.0-rc.11"; src = fetchurl { - url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.9.tgz"; - sha512 = "dGGHpb61hLwifAu7sotuHFDBw6GTdpG8aKC0fsK17EuTzMRvUrH7lEAr6LTJ+sx3AZYed9yZ77rltVDHyg2hRg=="; + url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.11.tgz"; + sha512 = "jlDglM3cbjrpq+D4oDBP/tztQDJn2hNqOak/wIOIVxbv8+d9Yn8or4Misr0zx9UEsvVFYNCQsE97zVvIU0/Idw=="; }; }; "@expo/apple-utils-0.0.0-alpha.37" = { @@ -5629,22 +5629,22 @@ let sha512 = "VGCtAmPU/3uj/QV4Kx7gO/H2vNrhNSB346sE7xM+bBtxj+hf/owaGTvN6/tuZ8HXQu8tjTf8+ubQ3d7D7DUIjA=="; }; }; - "@fluentui/font-icons-mdl2-8.5.9" = { + "@fluentui/font-icons-mdl2-8.5.12" = { name = "_at_fluentui_slash_font-icons-mdl2"; packageName = "@fluentui/font-icons-mdl2"; - version = "8.5.9"; + version = "8.5.12"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.9.tgz"; - sha512 = "u2a45ZE7GDLOSLpKPIDykVfbZs48oLT1m12JUdz4oGTkR9bR0+l8cnQL/+rYTu0KcJp2V5F9zLyTpJdlZnV36w=="; + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.12.tgz"; + sha512 = "fn/xvJ3BaoH4N2X58UJq4lymPV2zWRDfCwPX62oGYuxGYoc2F7+MSXSgCJMy106KvfYO1IkIdppWwtkoKKq7fw=="; }; }; - "@fluentui/foundation-legacy-8.2.29" = { + "@fluentui/foundation-legacy-8.2.32" = { name = "_at_fluentui_slash_foundation-legacy"; packageName = "@fluentui/foundation-legacy"; - version = "8.2.29"; + version = "8.2.32"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.29.tgz"; - sha512 = "apO4PcZtU8N4zFW9fLE6aEb6JdlPyssI98MHSvCWKMiUqWSUhimvIgJ75CT3XmbKdI3bXu/miKjWSOMIHsZkiQ=="; + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.32.tgz"; + sha512 = "1KwzkWtna+m52g9vbVxbSmkkUP3Xopv5ImAZQsyr20l3XU8sdauks40DM31PVLCT8JlXKNR0cfx2DspZNOr0rQ=="; }; }; "@fluentui/keyboard-key-0.4.5" = { @@ -5665,31 +5665,31 @@ let sha512 = "i9Wy+7V+lKfX+UWRTrrK+3xm4aa8jl9tK2/7Ku696yWJ5v3D6xjRcMevfxUZDrZ3xS4/GRFfWKPHkAjzz/BQoQ=="; }; }; - "@fluentui/react-8.106.1" = { + "@fluentui/react-8.106.4" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.106.1"; + version = "8.106.4"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.106.1.tgz"; - sha512 = "cLagkBBsknKOYFXBeWBwAm5VryPeJFVUIgLa0XlXcxmeOco/IhmWlhY5gEEQ9YoX1dFyNVcYXWxNFR55KUpZoA=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.106.4.tgz"; + sha512 = "Lq/FJa8ww8mRI5/1xzl/DvV96DLRm210g1Oe1PL3i5rsTuOIY4ZqcjffNEVLztSemm2u2sRoZUS/wQnUcWi1Xw=="; }; }; - "@fluentui/react-focus-8.8.15" = { + "@fluentui/react-focus-8.8.18" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "8.8.15"; + version = "8.8.18"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.15.tgz"; - sha512 = "TRYOSkQ6hQmZnfiM8k8Uw7bVAi69iguFc4V6lO90QHZ3fHQxlIHBHEmBzysYDORKMwQbtbllCtkm9ImlhsxEJw=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.18.tgz"; + sha512 = "qH4mD7BM0n8318X4jCZRV5Gv4b94xSluhMEK0uZwM6A+AClucEX93+7cgYanss0QU4yhOYrtQ+xJURQHVThq+Q=="; }; }; - "@fluentui/react-hooks-8.6.17" = { + "@fluentui/react-hooks-8.6.18" = { name = "_at_fluentui_slash_react-hooks"; packageName = "@fluentui/react-hooks"; - version = "8.6.17"; + version = "8.6.18"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.17.tgz"; - sha512 = "UdsK3YZ6Rx5fCNFfIcyJ2il8j5Ypb7OQY+0Qe2nmrn+/NKrtCeFVCIAs+i5MzjlL5wOsX27YXZwqby2DBUuSPg=="; + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.18.tgz"; + sha512 = "8XtDs3VmdIjwYU9y5xWMxZg0DhZ4CNJx7aPjEdGiLfn6EyUTvJFZO5DcdlCF126Thbb1bqsD94iV8/GdS5ikCw=="; }; }; "@fluentui/react-portal-compat-context-9.0.4" = { @@ -5701,13 +5701,13 @@ let sha512 = "qw2lmkxZ2TmgC0pB2dvFyrzVffxBdpCx1BdWRaF+MRGUlTxRtqfybSx3Edsqa6NMewc3J0ThLMFdVFBQ5Yafqw=="; }; }; - "@fluentui/react-window-provider-2.2.6" = { + "@fluentui/react-window-provider-2.2.7" = { name = "_at_fluentui_slash_react-window-provider"; packageName = "@fluentui/react-window-provider"; - version = "2.2.6"; + version = "2.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.6.tgz"; - sha512 = "bcQM5mdi4ugVb30GNtde8sP173F+l9p7uQfgK/I8O07EfKHUHZeY4wj5arD53s1cUIQI0kxWJ5RD7upZNRQeQA=="; + url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.7.tgz"; + sha512 = "fi5nYs2h4H70yrJ4g+XN4Tp4PCbwvyIErBz0Bdyai8b86VUtYLnGt+MDDrFqLqt17tcooH8u29iGyGGNFy2yYw=="; }; }; "@fluentui/set-version-8.2.5" = { @@ -5719,31 +5719,31 @@ let sha512 = "DwJq9wIXLc8WkeJ/lqYM4Sv+R0Ccb6cy3cY1Bqaa5POsroVKIfL6W+njvAMOj3LO3+DaXo2aDeiUnnw70M8xIw=="; }; }; - "@fluentui/style-utilities-8.9.2" = { + "@fluentui/style-utilities-8.9.5" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.9.2"; + version = "8.9.5"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.9.2.tgz"; - sha512 = "cnP3p73+9RDE91Dy6aWHgkkBLbtv9Ct66YD6Hgr/tU3th3Z/CJU2TcJ4EN8RqiIBCiO4LU+W2jrFFZNnXTAxEw=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.9.5.tgz"; + sha512 = "vkS7mRD/bPw6BDlvV4OXZbgowZ7Vo5TfmLMQ3b98B2h0RydRsXwl6p99WV289QL7jJmdo/PBfBBTh9i/mQe9MA=="; }; }; - "@fluentui/theme-2.6.23" = { + "@fluentui/theme-2.6.24" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "2.6.23"; + version = "2.6.24"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.23.tgz"; - sha512 = "xuX3jHsIrB/LbgVwmZwiXkmCT+EY8c7b97wV2SGDpVUSsFDSQMQPZgQ3eAfXNA1ZLbgYcxBycm5f+gDxjlKA8g=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.24.tgz"; + sha512 = "UUXmBSAEDwRQsCs5cnUo9t8C6n38bWaD0Gaaxfp+j1R1Rdox4RQUNIReh5yyyO26RGTFJ/6pcx5xaiS19J5uGg=="; }; }; - "@fluentui/utilities-8.13.7" = { + "@fluentui/utilities-8.13.8" = { name = "_at_fluentui_slash_utilities"; packageName = "@fluentui/utilities"; - version = "8.13.7"; + version = "8.13.8"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.7.tgz"; - sha512 = "whH09ttg7DGzANijSFXTF//xJNYjTrMB6TcgC7ge+5suI7VVwsh3NZc9lYN2mKKUveHEOjLgeunEhQ3neAvn5Q=="; + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.8.tgz"; + sha512 = "UpuuB1wZdZK8XZTOagnWRC3ArdKQmY4X9WPgQ1E62Ko/IeE8hFOOUfQ6CFjdm/mg4+fmV3ITr97+edfKaxIPVA=="; }; }; "@forge/api-2.11.1" = { @@ -5944,13 +5944,13 @@ let sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA=="; }; }; - "@google-cloud/pubsub-3.3.0" = { + "@google-cloud/pubsub-3.4.1" = { name = "_at_google-cloud_slash_pubsub"; packageName = "@google-cloud/pubsub"; - version = "3.3.0"; + version = "3.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.3.0.tgz"; - sha512 = "pypP7JYqKnVOO7wES71TkyxQD7UluWMc/7zH5wFZ6ycLRfonLvO1XBBS3Hcg4ltMEjBlYxRC6ODbzYLfuZm9/g=="; + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.4.1.tgz"; + sha512 = "6sTJAFQYeUeAEyBiz2hMvEku3fUvFwNHKrkHjM3w6hcnN37xCH60NDlnZvGuT2rRXG24QBq6Fx3Pe/3nkaybUQ=="; }; }; "@grammarly/sdk-1.11.0" = { @@ -6034,13 +6034,13 @@ let sha512 = "6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA=="; }; }; - "@graphql-tools/executor-graphql-ws-0.0.11" = { + "@graphql-tools/executor-graphql-ws-0.0.12" = { name = "_at_graphql-tools_slash_executor-graphql-ws"; packageName = "@graphql-tools/executor-graphql-ws"; - version = "0.0.11"; + version = "0.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.11.tgz"; - sha512 = "muRj6j897ks2iKqe3HchWFFzd+jFInSRuLPvHJ7e4WPrejFvaZx3BQ9gndfJvVkfYUZIFm13stCGXaJJTbVM0Q=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.12.tgz"; + sha512 = "aFD79i9l282Ob5dOZ7JsyhhXXP1o8eQh0prYkSSVo/OU2ndzWigfANz4DJgWgS3LwBjLDlMcmaXPZZeXt3m4Tg=="; }; }; "@graphql-tools/executor-http-0.1.9" = { @@ -6115,13 +6115,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/load-7.8.12" = { + "@graphql-tools/load-7.8.13" = { name = "_at_graphql-tools_slash_load"; packageName = "@graphql-tools/load"; - version = "7.8.12"; + version = "7.8.13"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz"; - sha512 = "JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig=="; + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.13.tgz"; + sha512 = "c97/GuUl81Wpa38cx3E6nMz8gUrvVcFokoPfDOaA5uTWSTXA1UxaF4KrvM9P5rNFaKVAtF9f6nMIusRE5B0mag=="; }; }; "@graphql-tools/merge-6.2.17" = { @@ -6142,22 +6142,22 @@ let sha512 = "BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg=="; }; }; - "@graphql-tools/merge-8.3.18" = { + "@graphql-tools/merge-8.4.0" = { name = "_at_graphql-tools_slash_merge"; packageName = "@graphql-tools/merge"; - version = "8.3.18"; + version = "8.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz"; - sha512 = "R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA=="; + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.0.tgz"; + sha512 = "3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA=="; }; }; - "@graphql-tools/mock-8.7.18" = { + "@graphql-tools/mock-8.7.19" = { name = "_at_graphql-tools_slash_mock"; packageName = "@graphql-tools/mock"; - version = "8.7.18"; + version = "8.7.19"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.18.tgz"; - sha512 = "ZbXMp86V0DmfgUZhr5aGHtNIS2hBazhvTpPlFCyNOP+RMio3ErKnSsma3T1jV1ZyMo11l7QrxV9Xxn3uA0dv+w=="; + url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.19.tgz"; + sha512 = "LT2boYM+Y1vGFEhzmC7xDFRL8RPG20FbNcuk2/hHGH0Kh8K1hkItvL89tul3Pl7N6xerOnDZ3c3fx7Ls5GuFxA=="; }; }; "@graphql-tools/schema-7.1.5" = { @@ -6178,13 +6178,13 @@ let sha512 = "0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg=="; }; }; - "@graphql-tools/schema-9.0.16" = { + "@graphql-tools/schema-9.0.17" = { name = "_at_graphql-tools_slash_schema"; packageName = "@graphql-tools/schema"; - version = "9.0.16"; + version = "9.0.17"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz"; - sha512 = "kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ=="; + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.17.tgz"; + sha512 = "HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng=="; }; }; "@graphql-tools/url-loader-6.10.1" = { @@ -6196,13 +6196,13 @@ let sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; }; }; - "@graphql-tools/url-loader-7.17.13" = { + "@graphql-tools/url-loader-7.17.14" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "7.17.13"; + version = "7.17.14"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.13.tgz"; - sha512 = "FEmbvw68kxeZLn4VYGAl+NuBPk09ZnxymjW07A6mCtiDayFgYfHdWeRzXn/iM5PzsEuCD73R1sExtNQ/ISiajg=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.14.tgz"; + sha512 = "7boEmrZlbViqQSSvu2VFCGi9YAY7E0BCVObiv1sLYbFR+62mo825As0haU5l7wlx1zCDyUlOleNz+X2jVvBbSQ=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -6268,13 +6268,13 @@ let sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; }; }; - "@graphql-tools/wrap-9.3.7" = { + "@graphql-tools/wrap-9.3.8" = { name = "_at_graphql-tools_slash_wrap"; packageName = "@graphql-tools/wrap"; - version = "9.3.7"; + version = "9.3.8"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.3.7.tgz"; - sha512 = "gavfiWLKgvmC2VPamnMzml3zmkBoo0yt+EmOLIHY6O92o4uMTR281WGM77tZIfq+jzLtjoIOThUSjC/cN/6XKg=="; + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.3.8.tgz"; + sha512 = "MGsExYPiILMw4Qff7HcvE9MMSYdjb/tr5IQYJbxJIU4/TrBHox1/smne8HG+Bd7kmDlTTj7nU/Z8sxmoRd0hOQ=="; }; }; "@graphql-typed-document-node/core-3.1.2" = { @@ -6304,6 +6304,15 @@ let sha512 = "f/xC+6Z2QKsRJ+VSSFlt4hA5KSRm+PKvMWV8kMPkMgGlFidR6PeIkXrOasIY2roe+WROM6GFQLlgDKfeEZo2YQ=="; }; }; + "@grpc/grpc-js-1.8.12" = { + name = "_at_grpc_slash_grpc-js"; + packageName = "@grpc/grpc-js"; + version = "1.8.12"; + src = fetchurl { + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.12.tgz"; + sha512 = "MbUMvpVvakeKhdYux6gbSIPJaFMLNSY8jw4PqLI+FFztGrQRrYYAnHlR94+ncBQQewkpXQaW449m3tpH/B/ZnQ=="; + }; + }; "@grpc/grpc-js-1.8.4" = { name = "_at_grpc_slash_grpc-js"; packageName = "@grpc/grpc-js"; @@ -6313,15 +6322,6 @@ let sha512 = "oaETBotls7FTBpySg5dhyUCyXSxSeCMmkBBXHXG1iw57MiNoB6D7VRhkrXYbwyHM3Q3Afjp4KlsBX0Zb+ELZXw=="; }; }; - "@grpc/grpc-js-1.8.9" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.9.tgz"; - sha512 = "xzsl2HamhovnZddS/2pMF4Q+FgwINaBvxoFGQ+G54Lo7Xsge36VvfDO/TDkL7FofmrRK/X5weRvwlJh7rKwN4w=="; - }; - }; "@grpc/proto-loader-0.7.4" = { name = "_at_grpc_slash_proto-loader"; packageName = "@grpc/proto-loader"; @@ -6448,13 +6448,13 @@ let sha512 = "ZI9tcbPfX2d8oP1PNeLzrZLXISAIDUtJQWk4JVVJKCxktC6tQ3JyWXT9t1FbB5xtl82M1jdCgyAbWbjhUtRWcA=="; }; }; - "@hpcc-js/wasm-1.16.6" = { + "@hpcc-js/wasm-2.5.0" = { name = "_at_hpcc-js_slash_wasm"; packageName = "@hpcc-js/wasm"; - version = "1.16.6"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-1.16.6.tgz"; - sha512 = "heqfVIqFifmjEaUiHW6ZHLHZ4fQ8EFFhYlNJWFB/F/gHsjKEuBih0bNbSHkdh0opuKNwqfGvLqNXpoNbbec69g=="; + url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-2.5.0.tgz"; + sha512 = "G26BamgaHW46f6P8bmkygapgNcy+tTDMwIvCzmMzdp39sxUS1u4gaT/vR2SSDc4x3SfL5RE4B2B8ef/wd429Hg=="; }; }; "@httptoolkit/websocket-stream-6.0.1" = { @@ -6556,13 +6556,22 @@ let sha512 = "trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="; }; }; - "@ibm-cloud/openapi-ruleset-0.37.3" = { + "@ibm-cloud/openapi-ruleset-0.45.5" = { name = "_at_ibm-cloud_slash_openapi-ruleset"; packageName = "@ibm-cloud/openapi-ruleset"; - version = "0.37.3"; + version = "0.45.5"; src = fetchurl { - url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-0.37.3.tgz"; - sha512 = "saQM/1YTfhW7ou/mtmC4BMUhW/UM54aD47KBZucjrZLvAelzt8Lykm5zeN59Cu4cs/LBDEcvJfyZzDpPhdcVjQ=="; + url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-0.45.5.tgz"; + sha512 = "8FqJQj8osll6iLOD5JsFWR+kOU1HbCp1Z2PjHeE67Wb/srz7V9B+YyjZOO9QAgLLHwvgt07XS13FQ+ArNNetGg=="; + }; + }; + "@ibm-cloud/openapi-ruleset-utilities-0.0.1" = { + name = "_at_ibm-cloud_slash_openapi-ruleset-utilities"; + packageName = "@ibm-cloud/openapi-ruleset-utilities"; + version = "0.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset-utilities/-/openapi-ruleset-utilities-0.0.1.tgz"; + sha512 = "LBWf21EYmOJnM4azYPM4LsNbiH9GBK8rc1dwmDhuUELI43dEOGWSs2ateLn8/E9vyrVELGwQ1Y3Bu61YHa8kaA=="; }; }; "@intervolga/optimize-cssnano-plugin-1.0.6" = { @@ -7204,13 +7213,13 @@ let sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; }; }; - "@jsdoc/salty-0.2.3" = { + "@jsdoc/salty-0.2.5" = { name = "_at_jsdoc_slash_salty"; packageName = "@jsdoc/salty"; - version = "0.2.3"; + version = "0.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.3.tgz"; - sha512 = "bbtCxCkxcnWhi50I+4Lj6mdz9w3pOXOgEQrID8TCZ/DF51fW7M9GCQW2y45SpBDdHd1Eirm1X/Cf6CkAAe8HPg=="; + url = "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.5.tgz"; + sha512 = "TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw=="; }; }; "@jsep-plugin/regex-1.0.3" = { @@ -7231,22 +7240,22 @@ let sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg=="; }; }; - "@jsii/check-node-1.76.0" = { + "@jsii/check-node-1.77.0" = { name = "_at_jsii_slash_check-node"; packageName = "@jsii/check-node"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.76.0.tgz"; - sha512 = "iAQohlms0FQNtmAsXOV9Rrd7QDikkLw68R2TPwhlVKuLPdHPKIK3gyeN0jqZzc0luNQ9h+3P7kSqfpKd+Kr79Q=="; + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.77.0.tgz"; + sha512 = "kgq4h5SrpIuM9CZ6uZVZ9KrJCPSn6zwz4y60ZEIFMA5aqkBN1n7MhTJglG6I8IaL2uYm7P5kZf6+eGNI+n3tig=="; }; }; - "@jsii/spec-1.76.0" = { + "@jsii/spec-1.77.0" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.76.0.tgz"; - sha512 = "7L8KeG44ECq0ulKYWaOr0FQvnFW7RavjxEGvMAdKfIOXb5mZyGERnj5pKl5kmq2m1lWE2VBZELoTfM7dDlAPtg=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.77.0.tgz"; + sha512 = "QmwXRREX8W1YOdKHbfu+Tw0rygdCJ2AYcKt7iu56Is2giQ9doyRLKvzywXoKxJjZtj9E7Sp0GdDob8pl8cwmlg=="; }; }; "@json2csv/formatters-6.1.2" = { @@ -7825,13 +7834,13 @@ let sha512 = "W+IzEBw8a6LOOfRJM02dTT7BDZijxm+Z7lhtOAz1+y9vQm1Kdz9jlAO+qCEKsfxtUOmKilW8DIRqFw2aUgKeGg=="; }; }; - "@microsoft/rush-lib-5.93.1" = { + "@microsoft/rush-lib-5.93.2" = { name = "_at_microsoft_slash_rush-lib"; packageName = "@microsoft/rush-lib"; - version = "5.93.1"; + version = "5.93.2"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.93.1.tgz"; - sha512 = "8ZCSW4He9VPAAsF2T/OxVaTN06wLbzeEveOvEuwNJ5h6AQYPTtlH0yv8cDDuZqSEVgOv/gK4D+kAExOszYm06A=="; + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.93.2.tgz"; + sha512 = "EFlEY8nRmVrcI7Va8/iTQdeT4ORvWj3Ez+EGqCqzU8g39IyKJvp1Yrva4wGebIs5xH7rxLQiFLvDa2iZ/0kanQ=="; }; }; "@miniflare/cache-2.12.1" = { @@ -8059,58 +8068,58 @@ let sha512 = "h9u4u/jiIRKbq25PM+zymTyW6bhTzELvOoUd+AvYriWOAKpLGnIamaET3pnHYoI5iYphAHBI4ayx0MehR+VVPQ=="; }; }; - "@msgpackr-extract/msgpackr-extract-darwin-arm64-3.0.1" = { + "@msgpackr-extract/msgpackr-extract-darwin-arm64-3.0.2" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-darwin-arm64"; packageName = "@msgpackr-extract/msgpackr-extract-darwin-arm64"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.1.tgz"; - sha512 = "5o52DqsMswZhfFIsuqLYUXlSpYdwpTyPxGNdByvuWKp2ZMFkI2qne9FAbsYWkLYKTY0b5OnuFRasvGO4VwZhJw=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.2.tgz"; + sha512 = "9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ=="; }; }; - "@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.1" = { + "@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.2" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-darwin-x64"; packageName = "@msgpackr-extract/msgpackr-extract-darwin-x64"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.1.tgz"; - sha512 = "/UbtGNtEkfoqdLmNbHx2r+g5YPARwxmB4PoG47q3a/4qnAU/3cSJFo3oidDRZzB5KD3+lYvq29HRA4+nXJ0LNw=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.2.tgz"; + sha512 = "lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw=="; }; }; - "@msgpackr-extract/msgpackr-extract-linux-arm-3.0.1" = { + "@msgpackr-extract/msgpackr-extract-linux-arm-3.0.2" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-linux-arm"; packageName = "@msgpackr-extract/msgpackr-extract-linux-arm"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.1.tgz"; - sha512 = "WCFK1OVoXXTHDGEkpVTKxWsKphfutyrrU2HtIDaecgKfTCI/kBoT6FVMQrm7mSdVcBuxpsBkL25L6k2fz2wFlQ=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.2.tgz"; + sha512 = "MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA=="; }; }; - "@msgpackr-extract/msgpackr-extract-linux-arm64-3.0.1" = { + "@msgpackr-extract/msgpackr-extract-linux-arm64-3.0.2" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-linux-arm64"; packageName = "@msgpackr-extract/msgpackr-extract-linux-arm64"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.1.tgz"; - sha512 = "2aCdVMgx8BrNOP0E6Xf00z2C5+pGUgQpS7F5rTGhWWnyAsCNKOScBxj7waWKBOz6K5mPTFLQcV+yoAf3iGMBSA=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.2.tgz"; + sha512 = "FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg=="; }; }; - "@msgpackr-extract/msgpackr-extract-linux-x64-3.0.1" = { + "@msgpackr-extract/msgpackr-extract-linux-x64-3.0.2" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-linux-x64"; packageName = "@msgpackr-extract/msgpackr-extract-linux-x64"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.1.tgz"; - sha512 = "VQr5D19ssachwhvVWWiTLZlB8pD+rD/XLlcCU3iOlSsb6O2OIfmSrVCqPS59KtP61EW4hTOovnmtJv+9EqcMFA=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.2.tgz"; + sha512 = "gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA=="; }; }; - "@msgpackr-extract/msgpackr-extract-win32-x64-3.0.1" = { + "@msgpackr-extract/msgpackr-extract-win32-x64-3.0.2" = { name = "_at_msgpackr-extract_slash_msgpackr-extract-win32-x64"; packageName = "@msgpackr-extract/msgpackr-extract-win32-x64"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.1.tgz"; - sha512 = "2gqEM4ybMpI51HPOiYgI63n9UDF7qvwZB2w92RQJQVb27gLUeUtTL7kJx/NpZvuNC4dcPJDY7kU7p5GWZ6Z5Qw=="; + url = "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.2.tgz"; + sha512 = "O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ=="; }; }; "@nestjs/schematics-9.0.4" = { @@ -8194,130 +8203,130 @@ let sha512 = "zhxmFk48QEC4coBN0G0JDHt727+BlZS2QZarWs9hLeNDBdhjlU58RY0lhDgqODu/Z3JvBmIdPhCtDcvHpe4zmw=="; }; }; - "@node-rs/crc32-1.6.0" = { + "@node-rs/crc32-1.6.1" = { name = "_at_node-rs_slash_crc32"; packageName = "@node-rs/crc32"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.6.0.tgz"; - sha512 = "B21ivhDp8IKhEaxOZ/H3gdtDVyFHmnHudfGMeTysLj2arRpntCIoxyL0pMXz7g4kf6FupzvNESHb8557LvCWHA=="; + url = "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.6.1.tgz"; + sha512 = "LRl9o3Ft7Rqs1DrMHr6HLHSx6SAtAJrgNFQZddiCwtpt6CF82ubKOhjY6wK/Cx8dbXq1IoXE0V3CS02oosHQGQ=="; }; }; - "@node-rs/crc32-android-arm-eabi-1.6.0" = { + "@node-rs/crc32-android-arm-eabi-1.6.1" = { name = "_at_node-rs_slash_crc32-android-arm-eabi"; packageName = "@node-rs/crc32-android-arm-eabi"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-android-arm-eabi/-/crc32-android-arm-eabi-1.6.0.tgz"; - sha512 = "ZxWoWfEaKJ4k9x9IRSzZwPff1xTbeTbTTWOXFgnW0myVqFRF4toGiRK3uJnj7of47SsVwjZn1XrO2snLbo77Bg=="; + url = "https://registry.npmjs.org/@node-rs/crc32-android-arm-eabi/-/crc32-android-arm-eabi-1.6.1.tgz"; + sha512 = "pvYzF2Jfw0EbE7hUGTB7Hapc/Q2vBUynxndVQhJSP1hgajNKgxdx5yYuKvINFeXYIpsEQ6tS1r4muRq3/+v61w=="; }; }; - "@node-rs/crc32-android-arm64-1.6.0" = { + "@node-rs/crc32-android-arm64-1.6.1" = { name = "_at_node-rs_slash_crc32-android-arm64"; packageName = "@node-rs/crc32-android-arm64"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.6.0.tgz"; - sha512 = "DyeB3uzMD3Ctfr3dZzLwfy6zDK5GFdaqgCElILwx7S5tMeqlEpLxeAqMFoiovq98+0G+QHhNlAikfDJWDYTmFA=="; + url = "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.6.1.tgz"; + sha512 = "dtmAGGB91sstUsWw+a6hsJweLpuFnu7ID9aFjbI2ghUf2ybiL479nGE36kxtlAYei8eqRcjmvo7+G4VjFXDuxg=="; }; }; - "@node-rs/crc32-darwin-arm64-1.6.0" = { + "@node-rs/crc32-darwin-arm64-1.6.1" = { name = "_at_node-rs_slash_crc32-darwin-arm64"; packageName = "@node-rs/crc32-darwin-arm64"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.6.0.tgz"; - sha512 = "Mb4fx1EtEc163ZuuU1kOYJpgQDiKllnjX5WW0k5JFL17MwOwC2AiZfiIVxqjqDUZ6kim8Fvg3205zxNpYcy5Xw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.6.1.tgz"; + sha512 = "b8LQ5mBf2+7MwiINr9uvWawYLOticMiqlyczE+WkJqUh59UGPXuSEMAmJG7zE+5zXkn2lVu4vB40klW4aBr9vg=="; }; }; - "@node-rs/crc32-darwin-x64-1.6.0" = { + "@node-rs/crc32-darwin-x64-1.6.1" = { name = "_at_node-rs_slash_crc32-darwin-x64"; packageName = "@node-rs/crc32-darwin-x64"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.6.0.tgz"; - sha512 = "lizIV4mxI5jw3vviHBLRM6Q8u0iizeIKHx2QKTEiD4b2KMZrce1kv0QAnz/RNxZ47ajRe3cp5B8KceSm8/qcng=="; + url = "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.6.1.tgz"; + sha512 = "VhVDKvk/HymNDySbXeeoRFhBDBpqSAl0UwX2SNU2mE86cudsPGP49s41oYlI/qN2YeSrlKPJlzOo65Y4PhxVQg=="; }; }; - "@node-rs/crc32-freebsd-x64-1.6.0" = { + "@node-rs/crc32-freebsd-x64-1.6.1" = { name = "_at_node-rs_slash_crc32-freebsd-x64"; packageName = "@node-rs/crc32-freebsd-x64"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.6.0.tgz"; - sha512 = "mdl9K0JixpprjfJQ3gEfyvwH4kzklqROmoDoDRX2DiF86c6KVaVVN2w33PgHXfsJo36taime2+pMaHexae+lNQ=="; + url = "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.6.1.tgz"; + sha512 = "VPeq58gtUHUxe2KHwmeloO7X25fk1BbU3aJsKswe1wQIbms2KNfypy6fVNQs/VLsTurRZKJSJNKJxFvb8Vs6pQ=="; }; }; - "@node-rs/crc32-linux-arm-gnueabihf-1.6.0" = { + "@node-rs/crc32-linux-arm-gnueabihf-1.6.1" = { name = "_at_node-rs_slash_crc32-linux-arm-gnueabihf"; packageName = "@node-rs/crc32-linux-arm-gnueabihf"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.6.0.tgz"; - sha512 = "fyyQi2qiGLqy5bMdzG+Y4p+/nRvjOG92t6qZBFmdWrcQnj0jxfPqORPNUYvSGfvDW7PgUI/+IAo8bpgNt6GbzA=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.6.1.tgz"; + sha512 = "Ee9oNLnAhd3xXyvC3xEtVNlvWTPs17S17gBo6Go+xRHVRf1nS8Xvxkt27WDpYt4DQnvCz8n5u52gbaVjSqi0tA=="; }; }; - "@node-rs/crc32-linux-arm64-gnu-1.6.0" = { + "@node-rs/crc32-linux-arm64-gnu-1.6.1" = { name = "_at_node-rs_slash_crc32-linux-arm64-gnu"; packageName = "@node-rs/crc32-linux-arm64-gnu"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.6.0.tgz"; - sha512 = "NhFPUDz/A8C/su/kNrtG0FgtQJuxW1KwIUJySAinGVDDqSWUcKr+jeFMsYKWU331AIJW6uCMIaJowE2tQ0lnBQ=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.6.1.tgz"; + sha512 = "0Q90Tzl/gpZtQ13pcEnnqL/usWk7X5l7SCquB9QW9IIAha+vtVOyylcuyrXOiDQaMcEfVs2EMWtcufXfrxZwiw=="; }; }; - "@node-rs/crc32-linux-arm64-musl-1.6.0" = { + "@node-rs/crc32-linux-arm64-musl-1.6.1" = { name = "_at_node-rs_slash_crc32-linux-arm64-musl"; packageName = "@node-rs/crc32-linux-arm64-musl"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.6.0.tgz"; - sha512 = "N35CF21n07JkKAAEp+6E+ARrOUsk6Z5In/h16wDArTagMb+u6VxByc97G01htnb+G0ZpZ0q8MLWuH29gbypOGg=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.6.1.tgz"; + sha512 = "PF1klYsrRwfCALepuvCn6Egbw+k5MaNoEuR6l94sJmWE1KkEcAtFXiV5R2o4XDsWxRk8haKYymH27QGqpslxxw=="; }; }; - "@node-rs/crc32-linux-x64-gnu-1.6.0" = { + "@node-rs/crc32-linux-x64-gnu-1.6.1" = { name = "_at_node-rs_slash_crc32-linux-x64-gnu"; packageName = "@node-rs/crc32-linux-x64-gnu"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.6.0.tgz"; - sha512 = "6cZIh4un/IlKHJKWQS1KPbMIEkfK47cHd4m7YkwNjwXiT62hzkyfWA+D/io0L8glqUyGAcStQGv8fpRngIkdkw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.6.1.tgz"; + sha512 = "6NpgS8NQpGy8xQDSfKWBAA129fANvL+WxoZ3PjGT4yFLcisHA2g5FYDIxnH79Q0p2bIsB6DFP6v310r2Weck6g=="; }; }; - "@node-rs/crc32-linux-x64-musl-1.6.0" = { + "@node-rs/crc32-linux-x64-musl-1.6.1" = { name = "_at_node-rs_slash_crc32-linux-x64-musl"; packageName = "@node-rs/crc32-linux-x64-musl"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.6.0.tgz"; - sha512 = "DKd2SwAsf5RJW9BHZqLW0NAKxCRFL3GDEzuUm43wn53XEcL6hmezCUtmNHOmdehIiwNyGEruBh1kekH3JPSYYw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.6.1.tgz"; + sha512 = "W17m90y6U0erfH0Hpqu7iCF6F9g4x3RXe0Y9H8ewu4q77P8JkOj2yhWiFUG/xJbVmDJ87mGBJkIXQx9NH6xK+w=="; }; }; - "@node-rs/crc32-win32-arm64-msvc-1.6.0" = { + "@node-rs/crc32-win32-arm64-msvc-1.6.1" = { name = "_at_node-rs_slash_crc32-win32-arm64-msvc"; packageName = "@node-rs/crc32-win32-arm64-msvc"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.6.0.tgz"; - sha512 = "OzO+4V426M1qIJWGkIJwbhJ38MdIA/AJvsoW3O5t/zkabtbZVNROJi2aWObxQvUmb+kowItzNj4OqcWz0ZEqMQ=="; + url = "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.6.1.tgz"; + sha512 = "Vs+7xsERI5v+zQ+jPXCuRDB8oW2dZMy5kzeKM6oB43mYIoLLWWw5JgaMCOsbkb50da8BIaZxn8eWaqv8TNfzwg=="; }; }; - "@node-rs/crc32-win32-ia32-msvc-1.6.0" = { + "@node-rs/crc32-win32-ia32-msvc-1.6.1" = { name = "_at_node-rs_slash_crc32-win32-ia32-msvc"; packageName = "@node-rs/crc32-win32-ia32-msvc"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.6.0.tgz"; - sha512 = "uONkPIn9Lxdq34CSJFeYvy1npzgEXMbfukoyTLikXi3TlTb+tTqRKLZtUx3/ypuRg+t3ka9iVeywFqhWfBYIFg=="; + url = "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.6.1.tgz"; + sha512 = "ux9MC146/kCKHBxNCQnVJxroQn0TaUTubyYFivh+YTnhVMw+kVls5HukesT5o1CXVochhFjIJ8AfVPWoeZg1BQ=="; }; }; - "@node-rs/crc32-win32-x64-msvc-1.6.0" = { + "@node-rs/crc32-win32-x64-msvc-1.6.1" = { name = "_at_node-rs_slash_crc32-win32-x64-msvc"; packageName = "@node-rs/crc32-win32-x64-msvc"; - version = "1.6.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.6.0.tgz"; - sha512 = "raJJVGbP/KbffTAbIW5hl9/N4VMj9zIonskJy2xVEmo/B6TZtkjhRcaXZvgWqjVqh2SzO94HCphygD1qxT4EYw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.6.1.tgz"; + sha512 = "/HQScvmbh1j7Y1uFS4ceL7hjU50wraUWQ5jD8cIAb1ibcf04Lwsm7BMh5BkoT8ZC/WtIALMxVM01kn5SJjPCgw=="; }; }; "@nodelib/fs.scandir-2.1.5" = { @@ -8644,112 +8653,112 @@ let sha512 = "ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ=="; }; }; - "@nrwl/cli-15.7.2" = { + "@nrwl/cli-15.8.5" = { name = "_at_nrwl_slash_cli"; packageName = "@nrwl/cli"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.7.2.tgz"; - sha512 = "A/72FAW1e0ku8YB/PaCqN9BpVvciO83MS5F5bvX5PA8xCNqe1+iXp/5T2ASnN2lB9zR3fQJmvR7mHKTKQlqQQQ=="; + url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.8.5.tgz"; + sha512 = "voy16nUO1MxRMRqCpLlhDB9U4KyPfGHZABXtfMEIQk+W3alncatFMMSVvMQZmi8HXwubM8LxWSOnPtTtOCKBrQ=="; }; }; - "@nrwl/devkit-15.7.2" = { + "@nrwl/devkit-15.8.5" = { name = "_at_nrwl_slash_devkit"; packageName = "@nrwl/devkit"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.7.2.tgz"; - sha512 = "HMGi7L6w2g4IrYwhb04snD8Zr24Z/gzau5i9WUNkwzrjeR1xAm0Cc9WRre221zaeohtK11gyBt7BerT1tgkNwA=="; + url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.8.5.tgz"; + sha512 = "NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw=="; }; }; - "@nrwl/nx-darwin-arm64-15.7.2" = { + "@nrwl/nx-darwin-arm64-15.8.5" = { name = "_at_nrwl_slash_nx-darwin-arm64"; packageName = "@nrwl/nx-darwin-arm64"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-darwin-arm64/-/nx-darwin-arm64-15.7.2.tgz"; - sha512 = "F82exjuqkAkElSTxEcTFeLMhHpbGiccfTQh2VjXMS+ONldxM+Kd7atJjtUG8wKNXfg0lxxjjAdnzLy3iBuN/HQ=="; + url = "https://registry.npmjs.org/@nrwl/nx-darwin-arm64/-/nx-darwin-arm64-15.8.5.tgz"; + sha512 = "/8yXbh1J3k85MAW/A6cDiPeEnbt66SE9BPnM2IPlGoZrXakQvAXEn+gsjQlvnP3q2EaEyv7e5+GA+8d+p6mT5A=="; }; }; - "@nrwl/nx-darwin-x64-15.7.2" = { + "@nrwl/nx-darwin-x64-15.8.5" = { name = "_at_nrwl_slash_nx-darwin-x64"; packageName = "@nrwl/nx-darwin-x64"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-darwin-x64/-/nx-darwin-x64-15.7.2.tgz"; - sha512 = "MNT7Bxz6yhoVLCgGpR0NtVkj20SER1CbrCaY7tmsKVNY9iA/EOZhz9qa3LeA1KZ4lw8Gpi2vD42mOngn7Mwr7w=="; + url = "https://registry.npmjs.org/@nrwl/nx-darwin-x64/-/nx-darwin-x64-15.8.5.tgz"; + sha512 = "zEVoi0d+YChLrQMypoGFwu73t3YiD8UkXSozMtUEa2mg/se4e7jh+15tB6Te+Oq5aL0JKwQpr027GE4YtAmpLw=="; }; }; - "@nrwl/nx-linux-arm-gnueabihf-15.7.2" = { + "@nrwl/nx-linux-arm-gnueabihf-15.8.5" = { name = "_at_nrwl_slash_nx-linux-arm-gnueabihf"; packageName = "@nrwl/nx-linux-arm-gnueabihf"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-15.7.2.tgz"; - sha512 = "QGyPkYnZ9LnUnuCzrP50bwsMJ9n6r8K2bNC1sQQwioijY+4MHNL+bMTOGWc8+lYBP7Ju3gpTqozGV3FQVkaM2w=="; + url = "https://registry.npmjs.org/@nrwl/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-15.8.5.tgz"; + sha512 = "4C5wN0C7gQD6/lC9+UKUsB6mbHvowKhlaO529GIgtzrCLmfEh/LJ/CybnnKGpFEB/8Y5GpCa2uTWyA1XcPDzUw=="; }; }; - "@nrwl/nx-linux-arm64-gnu-15.7.2" = { + "@nrwl/nx-linux-arm64-gnu-15.8.5" = { name = "_at_nrwl_slash_nx-linux-arm64-gnu"; packageName = "@nrwl/nx-linux-arm64-gnu"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-15.7.2.tgz"; - sha512 = "HqufFVIvuunfChEFGkIhsLhhQjWLTFcCH2aQBSNesHpm6AhFVRGyokNu+PT6NNobr+BTrqJMocBqNQR1uvSyRQ=="; + url = "https://registry.npmjs.org/@nrwl/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-15.8.5.tgz"; + sha512 = "SMQ+oIsyK75JiKeSMprmb8VXce6MLdfcS5GWWOihpoDWfUC9FoQHAu4X1OtxHbVTmJfoEOInJKAhPxXAi5obdw=="; }; }; - "@nrwl/nx-linux-arm64-musl-15.7.2" = { + "@nrwl/nx-linux-arm64-musl-15.8.5" = { name = "_at_nrwl_slash_nx-linux-arm64-musl"; packageName = "@nrwl/nx-linux-arm64-musl"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-linux-arm64-musl/-/nx-linux-arm64-musl-15.7.2.tgz"; - sha512 = "9B8q6I/OVyQuYe+Yg2wNyxza/CsbvejIUsrK3QGGWUwHlkklqOSmUOHyTrcyMHUSped6CWPyKdIywngYOQzltQ=="; + url = "https://registry.npmjs.org/@nrwl/nx-linux-arm64-musl/-/nx-linux-arm64-musl-15.8.5.tgz"; + sha512 = "GVENjltZ17aJ6KOCibdBtLXQcGY5lpBqKolB9+rIYJvTWuV1k/uHOkYJDG7Vl70Rj46rC8K0Jp6BCpJHCv1ksQ=="; }; }; - "@nrwl/nx-linux-x64-gnu-15.7.2" = { + "@nrwl/nx-linux-x64-gnu-15.8.5" = { name = "_at_nrwl_slash_nx-linux-x64-gnu"; packageName = "@nrwl/nx-linux-x64-gnu"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-linux-x64-gnu/-/nx-linux-x64-gnu-15.7.2.tgz"; - sha512 = "8/6WtQn4derYKUWu5SxWWM+1dGihSZXMhDW9l/sXOr/qbMZu3XBmM2XZSguw/+p9gEVHcMmN0+D+Cai+q6/vDQ=="; + url = "https://registry.npmjs.org/@nrwl/nx-linux-x64-gnu/-/nx-linux-x64-gnu-15.8.5.tgz"; + sha512 = "AW8YjhZv3c+LRUoLvHLx4BZaDakQbPCPx70+c/uQyDkQP/ckYJc0gRjoZukolcI6+AvNcBhkI559RL9W4qb9iw=="; }; }; - "@nrwl/nx-linux-x64-musl-15.7.2" = { + "@nrwl/nx-linux-x64-musl-15.8.5" = { name = "_at_nrwl_slash_nx-linux-x64-musl"; packageName = "@nrwl/nx-linux-x64-musl"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-linux-x64-musl/-/nx-linux-x64-musl-15.7.2.tgz"; - sha512 = "c5SbqYZZBeBHhH5E30xwb4cHzCMVa/GQMCyTpZgsS/AHAPHbdkv+pO6bxxALvLPTyimcub7V+xbLCL7rgALzyw=="; + url = "https://registry.npmjs.org/@nrwl/nx-linux-x64-musl/-/nx-linux-x64-musl-15.8.5.tgz"; + sha512 = "m4Iy/pbzH0LTsADq/X+74nfVzm2Tt0zorOXXy/uQN4ozL/JNGVpwvxdOFxZ7e3RBXDX4u6awUzSE52Z2d2f0uA=="; }; }; - "@nrwl/nx-win32-arm64-msvc-15.7.2" = { + "@nrwl/nx-win32-arm64-msvc-15.8.5" = { name = "_at_nrwl_slash_nx-win32-arm64-msvc"; packageName = "@nrwl/nx-win32-arm64-msvc"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-15.7.2.tgz"; - sha512 = "gWD/+gSO3XBma8PHX1Dp86fM6EcntHFfa7n/BISwDFkZ19MfV/gK6HbO847fkD6I34/IcDM/z1PsFwoIpTeoow=="; + url = "https://registry.npmjs.org/@nrwl/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-15.8.5.tgz"; + sha512 = "4AT1PHo5At8AXvgE5XlQbimE0THeSji6J3XZ1UTqq7n3L26QicNdnZcaHGyL1ukMtXRIwT/yed+xu1PFkXF4QA=="; }; }; - "@nrwl/nx-win32-x64-msvc-15.7.2" = { + "@nrwl/nx-win32-x64-msvc-15.8.5" = { name = "_at_nrwl_slash_nx-win32-x64-msvc"; packageName = "@nrwl/nx-win32-x64-msvc"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/nx-win32-x64-msvc/-/nx-win32-x64-msvc-15.7.2.tgz"; - sha512 = "ARE4qGPgk+e+pSm0uPhHan5UCRtwNYc5ddVNS88NFrVoDTPm5MxYLGdvLnshWWio/Bx526FcwUMSCBWSW8HIFw=="; + url = "https://registry.npmjs.org/@nrwl/nx-win32-x64-msvc/-/nx-win32-x64-msvc-15.8.5.tgz"; + sha512 = "53vzsQErvN4OeF/qBgfPg6OZ3smX4V8Lza59bwql9aAjjlMe1Ff9Su0BgAqlhVfSiYGxAirfHljgA6aWFqpCHQ=="; }; }; - "@nrwl/tao-15.7.2" = { + "@nrwl/tao-15.8.5" = { name = "_at_nrwl_slash_tao"; packageName = "@nrwl/tao"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.7.2.tgz"; - sha512 = "srx9heMIt/QIyuqfewiVYbRpFcD/2pHkTkrEEUKspPd25kzAL2adcAITQKVCHI7/VS2sPdDR67pVsGQPZFBMRQ=="; + url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.8.5.tgz"; + sha512 = "pb/hUprOOv2vgvbevGz9hiu8LLOtK7KKuBe4JLSXrFxfHEQjMFsK/2aymnts0ZQrA83QlIG2Mr0tuSKj6/iWvg=="; }; }; "@oclif/command-1.8.0" = { @@ -9283,58 +9292,58 @@ let sha512 = "oPQdbFDmZvjXk5ZDoBGXG8B4tSB/qW5vQunJWQMFUBp7Xe8O1ByPANueJ+Jzg58esEBegyyxZ7LRmfJr7kFcFg=="; }; }; - "@orval/angular-6.12.0" = { + "@orval/angular-6.12.1" = { name = "_at_orval_slash_angular"; packageName = "@orval/angular"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/angular/-/angular-6.12.0.tgz"; - sha512 = "PtJYqmf666csQn90fb+3/lcG8uOEFOYXJIO8aeKzeEVgLeYw3sLXY5qje6KTWP6uxQKPVlmvNskdIPazobQCeQ=="; + url = "https://registry.npmjs.org/@orval/angular/-/angular-6.12.1.tgz"; + sha512 = "X9zpI7wccGnZh/pKApSkuG1vwa8W3VVIHvY0H6iJ3fDi721JicdwF28bIdYFpRYEyVXLSEc24NELvcyJeXapeQ=="; }; }; - "@orval/axios-6.12.0" = { + "@orval/axios-6.12.1" = { name = "_at_orval_slash_axios"; packageName = "@orval/axios"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/axios/-/axios-6.12.0.tgz"; - sha512 = "O3IzwtN0qzlUfJ0mOpS7HauoNKtaHq4fJ4IpUvGC8O9ZhnleVlVxd5Q0Ua+5vQSPSTeR8rqHGFOgH49N8UgN7g=="; + url = "https://registry.npmjs.org/@orval/axios/-/axios-6.12.1.tgz"; + sha512 = "aXihe799adzHzLJJVrs/QjgfKlIH0XE0jTnLFD2ugMg7RmL/O1TBhq+cZ0XT4tV0nvnsLJf8E6Q063N988BF+g=="; }; }; - "@orval/core-6.12.0" = { + "@orval/core-6.12.1" = { name = "_at_orval_slash_core"; packageName = "@orval/core"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/core/-/core-6.12.0.tgz"; - sha512 = "zLO9k2IpzAGkafBj/uqCwiNH5n3h97uV29o3Rxq6YFyV67xMUFxhQN4mhiK/Lm1z+ZfYrdUyoJxfiXVLXqdYqA=="; + url = "https://registry.npmjs.org/@orval/core/-/core-6.12.1.tgz"; + sha512 = "W0R6broXx8ax50eLhTteOZ9wSVLT1Do1HYlFTjoDKMUSRvUQP8TtV6VIbI8UdMm9ZVx5YnSshbYvb4PBk3TuEw=="; }; }; - "@orval/msw-6.12.0" = { + "@orval/msw-6.12.1" = { name = "_at_orval_slash_msw"; packageName = "@orval/msw"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/msw/-/msw-6.12.0.tgz"; - sha512 = "r6ABZ9frp607xcIPeMTNjai+9RzOYcRAiztk3S7nVTcEEvQWBpvr63wzXkKu1yyUjN5UxUXSGYgfLS7McDbLdA=="; + url = "https://registry.npmjs.org/@orval/msw/-/msw-6.12.1.tgz"; + sha512 = "53j9bsQjGM9/9bnP1X2vDPM1ZBx4iS2w60nzQ7WQGrIZO+TLsz5OF1KAbjjCRa/Ll35aqME0FyYMES1+VzCVEA=="; }; }; - "@orval/query-6.12.0" = { + "@orval/query-6.12.1" = { name = "_at_orval_slash_query"; packageName = "@orval/query"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/query/-/query-6.12.0.tgz"; - sha512 = "0S54tRrFQbyWbiwZPkGSud56dufVukGUmxy9UAx0oBz6PE6dCpSwGTsqta1POhr3oIPjGXEumW0ED3NivaMRtA=="; + url = "https://registry.npmjs.org/@orval/query/-/query-6.12.1.tgz"; + sha512 = "N2hgcVVC7JMtMg6B8TjT7WbOHdGeSlHTsjtGWufBL/ap0+yhEk2mi2ZbHaL4SxJAG+oRudUoTEy+0e5/CBhbiQ=="; }; }; - "@orval/swr-6.12.0" = { + "@orval/swr-6.12.1" = { name = "_at_orval_slash_swr"; packageName = "@orval/swr"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/swr/-/swr-6.12.0.tgz"; - sha512 = "dTmzvOWZhoMlcy2dEnNH5FpKV8fJdAW3BX3gX5KP/S8xFH8IPNlRZTUOLNb1AagMzzmRjEL4E29DhhuAQi4p0g=="; + url = "https://registry.npmjs.org/@orval/swr/-/swr-6.12.1.tgz"; + sha512 = "UNQifWs2q8KQz1DMbzMBNS059jx+jJC1/fUEBtgRg+p9c8BdiKV0X+ijy0CEz6GZjryGBMz+twCblYmGYflDzA=="; }; }; "@parcel/bundler-default-2.8.3" = { @@ -9940,6 +9949,15 @@ let sha512 = "SXsM27SGH3yTWKc2fKR4SYNxsmnvuBQ9dd6QHtEWmiZ/VqaOYPAIlS8+vMcn27YLtAEBGvNRSh3TPNvtjZgfqA=="; }; }; + "@pnpm/config.env-replace-1.0.0" = { + name = "_at_pnpm_slash_config.env-replace"; + packageName = "@pnpm/config.env-replace"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.0.0.tgz"; + sha512 = "ZVPVDi1E8oeXlYqkGRtX0CkzLTwE2zt62bjWaWKaAvI8NZqHzlMvGeSNDpW+JB3+aKanYb4UETJOF1/CxGPemA=="; + }; + }; "@pnpm/crypto.base32-hash-1.0.1" = { name = "_at_pnpm_slash_crypto.base32-hash"; packageName = "@pnpm/crypto.base32-hash"; @@ -9976,13 +9994,13 @@ let sha512 = "YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="; }; }; - "@pnpm/npm-conf-1.0.5" = { + "@pnpm/npm-conf-2.1.0" = { name = "_at_pnpm_slash_npm-conf"; packageName = "@pnpm/npm-conf"; - version = "1.0.5"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-1.0.5.tgz"; - sha512 = "hD8ml183638O3R6/Txrh0L8VzGOrFXgRtRDG4qQC4tONdZ5Z1M+tlUUDUvrjYdmK6G+JTBTeaCLMna11cXzi8A=="; + url = "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.1.0.tgz"; + sha512 = "Oe6ntvgsMTE3hDIqy6sajqHF+MnzJrOF06qC2QSiUEybLL7cp6tjoKUa32gpd9+KPVl4QyMs3E3nsXrx/Vdnlw=="; }; }; "@pnpm/package-bins-4.1.0" = { @@ -10075,22 +10093,22 @@ let sha512 = "J/p2PcgT39Za4wpukbN6iUkEUvL5aE7Bs9kXBeEkrjEgc0Uu7J7B2ypwx9J0qM3m3lk2273RT5/4oGv8pfFLcg=="; }; }; - "@prisma/engines-4.10.1" = { + "@prisma/engines-4.11.0" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "4.10.1"; + version = "4.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.10.1.tgz"; - sha512 = "B3tcTxjx196nuAu1GOTKO9cGPUgTFHYRdkPkTS4m5ptb2cejyBlH9X7GOfSt3xlI7p4zAJDshJP4JJivCg9ouA=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.11.0.tgz"; + sha512 = "0AEBi2HXGV02cf6ASsBPhfsVIbVSDC9nbQed4iiY5eHttW9ZtMxHThuKZE1pnESbr8HRdgmFSa/Kn4OSNYuibg=="; }; }; - "@prisma/prisma-fmt-wasm-4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19" = { + "@prisma/prisma-fmt-wasm-4.11.0-57.8fde8fef4033376662cad983758335009d522acb" = { name = "_at_prisma_slash_prisma-fmt-wasm"; packageName = "@prisma/prisma-fmt-wasm"; - version = "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19"; + version = "4.11.0-57.8fde8fef4033376662cad983758335009d522acb"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19.tgz"; - sha512 = "BUIxpsKel5dwplRrb3JzfLRnRqTStWg1TfJ1is5xYMexJ0U2y1n7O6XRwiuUCQgJjoerPDJ5eZ8X++q1geSUWA=="; + url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.11.0-57.8fde8fef4033376662cad983758335009d522acb.tgz"; + sha512 = "KV+IrVh8LdwBfJjDGdbZZDg+KwQ6b4Ee7/hLiTpL8ZHLI2IdGOufRxvmZSTuio28wfAporSA+N0YdzAdx43gWA=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -10336,58 +10354,58 @@ let sha512 = "W6MbUWpb/VaV+Kf0c3jmMIJw3WwwF7iK5nAfcOS+ZwrlbxtIl37+1hEydFlJ209vCR9HL12PaMwdh2Vpihj6Jw=="; }; }; - "@remix-run/dev-1.13.0" = { + "@remix-run/dev-1.14.0" = { name = "_at_remix-run_slash_dev"; packageName = "@remix-run/dev"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/dev/-/dev-1.13.0.tgz"; - sha512 = "hPqUjM9RRcz3inBOWqP3GKhggVz0a0ikWaRZpdKrhpQNCNiF6Hunbx876mJERj2YrmIzJ05eoeQmmdF6xcr4qg=="; + url = "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.14.0.tgz"; + sha512 = "567BSCe3YNTKVKFYWSjC7sj8y0AbiAolCz1roW2JpdZXY7GoxoP+I8mtQV7RGrgpvUzhVL0go1B2EIxFJzZhDQ=="; }; }; - "@remix-run/express-1.13.0" = { + "@remix-run/express-1.14.0" = { name = "_at_remix-run_slash_express"; packageName = "@remix-run/express"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/express/-/express-1.13.0.tgz"; - sha512 = "MX80PdQu3k1HlQsHlUjPBZe5rpTdn4FqZ5Fg4d85cVi+GMfu3x8n8hB0xbCDLhmRbKTR01PQ01j3UUNtsWWikg=="; + url = "https://registry.npmjs.org/@remix-run/express/-/express-1.14.0.tgz"; + sha512 = "Kj7kVbj3f86TTbwE8kbSqHjLEzHJvs+cvYdlBEDrWsuXj1q5ciHs7Jjun6qSLrrOxCtEMqFXc6s530p67M1fiQ=="; }; }; - "@remix-run/node-1.13.0" = { + "@remix-run/node-1.14.0" = { name = "_at_remix-run_slash_node"; packageName = "@remix-run/node"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/node/-/node-1.13.0.tgz"; - sha512 = "FDvPGaoDyon8UGYQ9DroLtiX8vFa0efBQQSHV3az0s7HbUpugw7BcA6NBW5pIs2z5sszCCeRbAgSIXcETLzfhw=="; + url = "https://registry.npmjs.org/@remix-run/node/-/node-1.14.0.tgz"; + sha512 = "TAm6AMAxFTccCAUIMki5VY+6vhBmItFvms1K+uTZc0z62ct0i1JEH+xl2POj6wB0UJhlq8IWchAZ41KKttPV1A=="; }; }; - "@remix-run/router-1.3.2" = { + "@remix-run/router-1.3.3" = { name = "_at_remix-run_slash_router"; packageName = "@remix-run/router"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/router/-/router-1.3.2.tgz"; - sha512 = "t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA=="; + url = "https://registry.npmjs.org/@remix-run/router/-/router-1.3.3.tgz"; + sha512 = "YRHie1yQEj0kqqCTCJEfHqYSSNlZQ696QJG+MMiW4mxSl9I0ojz/eRhJS4fs88Z5i6D1SmoF9d3K99/QOhI8/w=="; }; }; - "@remix-run/serve-1.13.0" = { + "@remix-run/serve-1.14.0" = { name = "_at_remix-run_slash_serve"; packageName = "@remix-run/serve"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.13.0.tgz"; - sha512 = "ondApr1ZUbQR6iy1iGvdarBGqvTZdET4wSNFb2+2NrbxW9Y9E3RZ7q+5M5/iiuy1qbdqubqsoq2N7uFk+gDGxw=="; + url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.14.0.tgz"; + sha512 = "lf/hEwogYgxqiNdRdEoAf6u2IJK8o0QmsC2EIqc6sHIHTL1X+kDw39m46ePAFY/wU/ymRUtD+dote+u3PCAczA=="; }; }; - "@remix-run/server-runtime-1.13.0" = { + "@remix-run/server-runtime-1.14.0" = { name = "_at_remix-run_slash_server-runtime"; packageName = "@remix-run/server-runtime"; - version = "1.13.0"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.13.0.tgz"; - sha512 = "gjIW3XCeIlOt3rrOZMD6HixQydRgs1SwYjP99ZAVruG2+gNq/tL2OusMFYTLvtWrybt215tPROyF/6iTLsaO3g=="; + url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.14.0.tgz"; + sha512 = "qkqfT7DDwVzLICtJxMGthIU4T7DVtLy+oxKAzOi9eiCFlr3aWqV30YJ5Kq6r/kP8tighlnHbj1uEo41+WbD8uA=="; }; }; "@remix-run/web-blob-3.0.4" = { @@ -10606,13 +10624,13 @@ let sha512 = "SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A=="; }; }; - "@rushstack/package-deps-hash-4.0.8" = { + "@rushstack/package-deps-hash-4.0.9" = { name = "_at_rushstack_slash_package-deps-hash"; packageName = "@rushstack/package-deps-hash"; - version = "4.0.8"; + version = "4.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.0.8.tgz"; - sha512 = "ad2ZnGWLlcga4GVRVo3mibkTrrnDs8xvABTr79z7zwA43htaVbddwFs3Y+tyqaPo8s92Tqh47jzrGDJTqm6Vyg=="; + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.0.9.tgz"; + sha512 = "RoxZ1hfoyAXpEjggJyjUdiRQ5Qou2iMWPbfQuhqGzfUsc6ANUiS3zs0qLWFsUj8T+d8pCbQr2trwCUBoQzCD9Q=="; }; }; "@rushstack/rig-package-0.3.18" = { @@ -10624,31 +10642,31 @@ let sha512 = "SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ=="; }; }; - "@rushstack/rush-amazon-s3-build-cache-plugin-5.93.1" = { + "@rushstack/rush-amazon-s3-build-cache-plugin-5.93.2" = { name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; - version = "5.93.1"; + version = "5.93.2"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.93.1.tgz"; - sha512 = "urEQ+u7oSdfQnbuuVURbTE3RaJVh7rOSyB8RN2xAYh88HveYMeduq3EU5/0afHKnRs/UJG/iwt6EqCbXRR0J+w=="; + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.93.2.tgz"; + sha512 = "khLwdHY7CfRxY7mNcjYVcfGwY3A1wsKg84/Ixesw0MlzPdUyUZdcQuvwszPui8ayFBOmD1tjlNLydmMCAri3yQ=="; }; }; - "@rushstack/rush-azure-storage-build-cache-plugin-5.93.1" = { + "@rushstack/rush-azure-storage-build-cache-plugin-5.93.2" = { name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; - version = "5.93.1"; + version = "5.93.2"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.93.1.tgz"; - sha512 = "urbl28yUit+GJ4cgU9iAfWEhu6bP0/kdBaQEsOTYoLYRGnF0uBJ6O+46aMOp4WsqxAk+K+xL6ixw1ZE1BTix6g=="; + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.93.2.tgz"; + sha512 = "kkVU1hpQLar8mokaku56axdaXsJQh4hpe+DZKdPdrPZkYhz2dRaNYrsxOSkuUDPzeBsfTXq90BVMwmkkLRyLXg=="; }; }; - "@rushstack/rush-sdk-5.93.1" = { + "@rushstack/rush-sdk-5.93.2" = { name = "_at_rushstack_slash_rush-sdk"; packageName = "@rushstack/rush-sdk"; - version = "5.93.1"; + version = "5.93.2"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.93.1.tgz"; - sha512 = "rHfGvxyiR6nO5nqruqz/0N3GpAIi4P565FYcadnHsK791ncoh60lBHvQU9b9oRdpZjl2dHjoAQrr+pgSgOY/vw=="; + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.93.2.tgz"; + sha512 = "HRRgYIAxEM0/4HoAYCEGgTp2dgDziBI1sg4TRUzFj59cbysRUWXByX2dDTdupcd3aCwWkiOYW/JtxM/fANP16w=="; }; }; "@rushstack/stream-collator-4.0.227" = { @@ -10714,13 +10732,13 @@ let sha512 = "mzqWiZ5Its8aCXGdv9EA4ROgwoLdqKoEgbKOnLjUtk2xuliGJ2L9Y54xcMSTtzDAUUEhZCKMDPTXloCqYAUpCQ=="; }; }; - "@schematics/angular-15.2.0" = { + "@schematics/angular-15.2.2" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "15.2.0"; + version = "15.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-15.2.0.tgz"; - sha512 = "KnsG7xyEbjg+6zflANkdynXdS3wi9rSCg+8Y7erKdygD90O/JcT68PcanvTU2GfawDkBtvAR5VMURw2TIfCTnw=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-15.2.2.tgz"; + sha512 = "H8R2TziGgJkXFZf3NQCOKQhkbGhVX8bPQAKv/YFEpPm1n//cPshysf2r3nBCc0WcTGkdC087UTCYvbFjQ7Fa6w=="; }; }; "@segment/ajv-human-errors-2.2.0" = { @@ -10759,13 +10777,13 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.39.0" = { + "@sentry/core-7.42.0" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.39.0"; + version = "7.42.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.39.0.tgz"; - sha512 = "45WJIcWWCQnZ8zhHtcrkJjQ4YydmzMWY4pmRuBG7Qp+zrCT6ISoyODcjY+SCHFdvXkiYFi8+bFZa1qG3YQnnYw=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.42.0.tgz"; + sha512 = "vNcTyoQz5kUXo5vMGDyc5BJMO0UugPvMfYMQVxqt/BuDNR30LVhY+DL2tW1DFZDvRvyn5At+H7kSTj6GFrANXQ=="; }; }; "@sentry/hub-6.19.7" = { @@ -10777,13 +10795,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.39.0" = { + "@sentry/integrations-7.42.0" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.39.0"; + version = "7.42.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.39.0.tgz"; - sha512 = "NJzPSAI8/YqlHj0ZbrIQrRRb4CE0IhH2UAmp96HbSqXyfiSBrGrEjPurgjKPjkYiWDpUiSolN5bhAxRG5xbe/w=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.42.0.tgz"; + sha512 = "5P3LsU+HRmdh458mav3dNh8RCn0TROIxwa/b7jk1TLWcXHrNp5REjo1oI4PTC+fFbNE4b7ydwHNEzI65rz7gyA=="; }; }; "@sentry/minimal-6.19.7" = { @@ -10804,13 +10822,13 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.39.0" = { + "@sentry/node-7.42.0" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.39.0"; + version = "7.42.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.39.0.tgz"; - sha512 = "oe1OBxgs6t/FizjxkSPtuvJv5wJMO+mLENZkiE0PpBD56JyZrWK48kYIt2ccWAfk6Vh235/oIpmqET150xB4lQ=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.42.0.tgz"; + sha512 = "mmpVSDeoM5aEbKOMq3Wt54wAvH53bkivhRh3Ip+R7Uj3aOKkcVJST2XlbghHgoYQXTWz+pl475EVyODWgY9QYg=="; }; }; "@sentry/types-6.19.7" = { @@ -10822,13 +10840,13 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.39.0" = { + "@sentry/types-7.42.0" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.39.0"; + version = "7.42.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.39.0.tgz"; - sha512 = "5Y83Y8O3dT5zT2jTKEIPMcpn5lUm05KRMaCXuw0sRsv4r9TbBUKeqiSU1LjowT8rB/XNy8m7DHav8+NmogPaJw=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.42.0.tgz"; + sha512 = "Ga0xaBIR/peuXQ88hI9a5TNY3GLNoH8jpsgPaAjAtRHkLsTx0y3AR+PrD7pUysza9QjvG+Qux01DRvLgaNKOHA=="; }; }; "@sentry/utils-6.19.7" = { @@ -10840,13 +10858,13 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.39.0" = { + "@sentry/utils-7.42.0" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.39.0"; + version = "7.42.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.39.0.tgz"; - sha512 = "/ZxlPgm1mGgmuMckCTc9iyqDuFTEYNEoMB53IjVFz8ann+37OiWB7Py/QV1rEEsv3xKrGbA8thhRhV9E1sjTlQ=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.42.0.tgz"; + sha512 = "cBiDZVipC+is+IVgsTQLJyZWUZQxlLZ9GarNT+XZOZ5BFh0acFtz88hO6+S7vGmhcx2aCvsdC9yb2Yf+BphK6Q=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -11038,6 +11056,15 @@ let sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="; }; }; + "@sinclair/typebox-0.25.24" = { + name = "_at_sinclair_slash_typebox"; + packageName = "@sinclair/typebox"; + version = "0.25.24"; + src = fetchurl { + url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz"; + sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="; + }; + }; "@sindresorhus/chunkify-0.2.0" = { name = "_at_sindresorhus_slash_chunkify"; packageName = "@sindresorhus/chunkify"; @@ -11551,202 +11578,103 @@ let sha512 = "gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA=="; }; }; - "@swc/core-1.3.36" = { + "@swc/core-1.3.38" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.36.tgz"; - sha512 = "Ogrd9uRNIj7nHjXxG66UlKBIcXESUenJ7OD6K2a8p82qlg6ne7Ne5Goiipm/heHYhSfVmjcnRWL9ZJ4gv+YCPA=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.38.tgz"; + sha512 = "AiEVehRFws//AiiLx9DPDp1WDXt+yAoGD1kMYewhoF6QLdTz8AtYu6i8j/yAxk26L8xnegy0CDwcNnub9qenyQ=="; }; }; - "@swc/core-1.3.37" = { - name = "_at_swc_slash_core"; - packageName = "@swc/core"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.37.tgz"; - sha512 = "VOFlEQ1pReOM73N9A7R8rt561GU8Rxsq833jiimWDUB2sXEN3V6n6wFTgYmZuMz2T4/R0cQA1nV48KkaT4gkFw=="; - }; - }; - "@swc/core-darwin-arm64-1.3.36" = { + "@swc/core-darwin-arm64-1.3.38" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.36.tgz"; - sha512 = "lsP+C8p9cC/Vd9uAbtxpEnM8GoJI/MMnVuXak7OlxOtDH9/oTwmAcAQTfNGNaH19d2FAIRwf+5RbXCPnxa2Zjw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.38.tgz"; + sha512 = "4ZTJJ/cR0EsXW5UxFCifZoGfzQ07a8s4ayt1nLvLQ5QoB1GTAf9zsACpvWG8e7cmCR0L76R5xt8uJuyr+noIXA=="; }; }; - "@swc/core-darwin-arm64-1.3.37" = { - name = "_at_swc_slash_core-darwin-arm64"; - packageName = "@swc/core-darwin-arm64"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.37.tgz"; - sha512 = "iIyVqqioUpVeT/hbBVfkrsjfCyL4idNH+LVKGmoTAWaTTSB0+UNhNuA7Wh2CqIHWh1Mv7IlumitWPcqsVDdoEw=="; - }; - }; - "@swc/core-darwin-x64-1.3.36" = { + "@swc/core-darwin-x64-1.3.38" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.36.tgz"; - sha512 = "jaLXsozWN5xachl9fPxDMi5nbWq1rRxPAt6ISeiYB6RJk0MQKH1634pOweBBem2pUDDzwDFXFw6f22LTm/cFvA=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.38.tgz"; + sha512 = "Kim727rNo4Dl8kk0CR8aJQe4zFFtsT1TZGlNrNMUgN1WC3CRX7dLZ6ZJi/VVcTG1cbHp5Fp3mUzwHsMxEh87Mg=="; }; }; - "@swc/core-darwin-x64-1.3.37" = { - name = "_at_swc_slash_core-darwin-x64"; - packageName = "@swc/core-darwin-x64"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.37.tgz"; - sha512 = "dao5nXPWKxtaxqak4ZkRyBoApNIelW/glantQhPhj0FjMjuIQc+v03ldJ8XDByWOG+6xuVUTheANCtEccxoQBw=="; - }; - }; - "@swc/core-linux-arm-gnueabihf-1.3.36" = { + "@swc/core-linux-arm-gnueabihf-1.3.38" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.36.tgz"; - sha512 = "vcBdTHjoEpvJDbFlgto+S6VwAHzLA9GyCiuNcTU2v4KNQlFzhbO4A4PMfMCb/Z0RLJEr16tirfHdWIxjU3h8nw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.38.tgz"; + sha512 = "yaRdnPNU2enlJDRcIMvYVSyodY+Amhf5QuXdUbAj6rkDD6wUs/s9C6yPYrFDmoTltrG+nBv72mUZj+R46wVfSw=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.37" = { - name = "_at_swc_slash_core-linux-arm-gnueabihf"; - packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.37.tgz"; - sha512 = "/mVrc8H/f062CUkqKGmBiil2VIYu4mKawHxERfeP1y38X5K/OwjG5s9MgO9TVxy+Ly6vejwj70kRhSa3hVp1Bw=="; - }; - }; - "@swc/core-linux-arm64-gnu-1.3.36" = { + "@swc/core-linux-arm64-gnu-1.3.38" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.36.tgz"; - sha512 = "o7f5OsvwWppJo+qIZmrGO5+XC6DPt6noecSbRHjF6o1YAcR13ETPC14k1eC9H1YbQwpyCFNVAFXyNcUbCeQyrQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.38.tgz"; + sha512 = "iNY1HqKo/wBSu3QOGBUlZaLdBP/EHcwNjBAqIzpb8J64q2jEN02RizqVW0mDxyXktJ3lxr3g7VW9uqklMeXbjQ=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.37" = { - name = "_at_swc_slash_core-linux-arm64-gnu"; - packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.37.tgz"; - sha512 = "eRQ3KaZI0j5LidTfOIi/kUVOOMuVmw1HCdt/Z1TAUKoHMLVxY8xcJ3pEE3/+ednI60EmHpwpJRs6LelXyL6uzQ=="; - }; - }; - "@swc/core-linux-arm64-musl-1.3.36" = { + "@swc/core-linux-arm64-musl-1.3.38" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.36.tgz"; - sha512 = "FSHPngMi3c0fuGt9yY2Ubn5UcELi3EiPLJxBSC3X8TF9atI/WHZzK9PE9Gtn0C/LyRh4CoyOugDtSOPzGYmLQg=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.38.tgz"; + sha512 = "LJCFgLZoPRkPCPmux+Q5ctgXRp6AsWhvWuY61bh5bIPBDlaG9pZk94DeHyvtiwT0syhTtXb2LieBOx6NqN3zeA=="; }; }; - "@swc/core-linux-arm64-musl-1.3.37" = { - name = "_at_swc_slash_core-linux-arm64-musl"; - packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.37.tgz"; - sha512 = "w2BRLODyxNQY2rfHZMZ5ir6QrrnGBPlnIslTrgKmVbn1OjZoxUCtuqhrYnCmybaAc4DOkeH02TqynEFXrm+EMw=="; - }; - }; - "@swc/core-linux-x64-gnu-1.3.36" = { + "@swc/core-linux-x64-gnu-1.3.38" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.36.tgz"; - sha512 = "PHSsH2rek5pr3e0K09VgWAbrWK2vJhaI7MW9TPoTjyACYjcs3WwjcjQ30MghXUs2Dc/bXjWAOi9KFTjq/uCyFg=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.38.tgz"; + sha512 = "hRQGRIWHmv2PvKQM/mMV45mVXckM2+xLB8TYLLgUG66mmtyGTUJPyxjnJkbI86WNGqo18k+lAuMG2mn6QmzYwQ=="; }; }; - "@swc/core-linux-x64-gnu-1.3.37" = { - name = "_at_swc_slash_core-linux-x64-gnu"; - packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.37.tgz"; - sha512 = "CfoH8EsZJZ9kunjMUjBNYD5fFuO86zw+K/o4wEw72Yg6ZEiqPmeIlCKU8tpTv4sK+CbhUXrmVzMB5tqsb2jALQ=="; - }; - }; - "@swc/core-linux-x64-musl-1.3.36" = { + "@swc/core-linux-x64-musl-1.3.38" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.36.tgz"; - sha512 = "4LfMYQHzozHCKkIcmQy83b+4SpI+mOp6sYNbXqSRz5dYvTVjegKZXe596P1U/87cK2cgR4uYvkgkgBXquaWvwQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.38.tgz"; + sha512 = "PTYSqtsIfPHLKDDNbueI5e0sc130vyHRiFOeeC6qqzA2FAiVvIxuvXHLr0soPvKAR1WyhtYmFB9QarcctemL2w=="; }; }; - "@swc/core-linux-x64-musl-1.3.37" = { - name = "_at_swc_slash_core-linux-x64-musl"; - packageName = "@swc/core-linux-x64-musl"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.37.tgz"; - sha512 = "9YPrHYNdoG7PK11gV51GfL45biI2dic+YTqHUDKyykemsD7Ot1zUFX7Ty//pdvpKcKSff6SrHbfFACD5ziNirA=="; - }; - }; - "@swc/core-win32-arm64-msvc-1.3.36" = { + "@swc/core-win32-arm64-msvc-1.3.38" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.36.tgz"; - sha512 = "7y3dDcun79TAjCyk3Iv0eOMw1X/KNQbkVyKOGqnEgq9g22F8F1FoUGKHNTzUqVdzpHeJSsHgW5PlkEkl3c/d9w=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.38.tgz"; + sha512 = "9lHfs5TPNs+QdkyZFhZledSmzBEbqml/J1rqPSb9Fy8zB6QlspixE6OLZ3nTlUOdoGWkcTTdrOn77Sd7YGf1AA=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.37" = { - name = "_at_swc_slash_core-win32-arm64-msvc"; - packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.37.tgz"; - sha512 = "h17Ek8/wCDje6BrXOvCXBM80oBRmTSMMdLyt87whTl5xqYlWYYs9oQIzZndNRTlNpTgjGO8Ns2eo4kwVxIkBIA=="; - }; - }; - "@swc/core-win32-ia32-msvc-1.3.36" = { + "@swc/core-win32-ia32-msvc-1.3.38" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.36.tgz"; - sha512 = "zK0VR3B4LX5hzQ+7eD+K+FkxJlJg5Lo36BeahMzQ+/i0IURpnuyFlW88sdkFkMsc2swdU6bpvxLZeIRQ3W4OUg=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.38.tgz"; + sha512 = "SbL6pfA2lqvDKnwTHwOfKWvfHAdcbAwJS4dBkFidr7BiPTgI5Uk8wAPcRb8mBECpmIa9yFo+N0cAFRvMnf+cNw=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.37" = { - name = "_at_swc_slash_core-win32-ia32-msvc"; - packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.37.tgz"; - sha512 = "1BR175E1olGy/zdt94cgdb6ps/lBNissAOaxyBk8taFpcjy3zpdP30yAoH0GIsC6isnZ5JfArbOJNRXXO5tE0Q=="; - }; - }; - "@swc/core-win32-x64-msvc-1.3.36" = { + "@swc/core-win32-x64-msvc-1.3.38" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.36.tgz"; - sha512 = "2bIjr9DhAckGiXZEvj6z2z7ECPcTimG+wD0VuQTvr+wkx46uAJKl5Kq+Zk+dd15ErL7JGUtCet1T7bf1k4FwvQ=="; - }; - }; - "@swc/core-win32-x64-msvc-1.3.37" = { - name = "_at_swc_slash_core-win32-x64-msvc"; - packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.37.tgz"; - sha512 = "1siDQ7dccQ1pesJmgAL3BUBbRPtfbNInOWnZOkiie/DfFqGQ117QKnCVyjUvwFKfTQx1+3UUTDmMSlRd00SlXg=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.38.tgz"; + sha512 = "UFveLrL6eGvViOD8OVqUQa6QoQwdqwRvLtL5elF304OT8eCPZa8BhuXnWk25X8UcOyns8gFcb8Fhp3oaLi/Rlw=="; }; }; "@swc/helpers-0.4.14" = { @@ -11758,22 +11686,13 @@ let sha512 = "4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw=="; }; }; - "@swc/wasm-1.3.36" = { + "@swc/wasm-1.3.38" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.36"; + version = "1.3.38"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.36.tgz"; - sha512 = "ZNxKASN36p6GTg2whIRdxQjiQHiDA9JjovRTB3iiHF1cTAEskyrbAdrxFOTrgD0swaSi4+KCujPwpAPpJVyMJg=="; - }; - }; - "@swc/wasm-1.3.37" = { - name = "_at_swc_slash_wasm"; - packageName = "@swc/wasm"; - version = "1.3.37"; - src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.37.tgz"; - sha512 = "cRlyLuQrMKE6ppo07jVcYAEK69l+O+g+u5xZBon466vA416IK86jHYxGZqXRP+HEF6P/imntLbJgj9F/AGFEBA=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.38.tgz"; + sha512 = "7A4T9/R48J4Vy/1DB2yYuY29CYNgyqDgvlTW1rdaGJGv7i7TxTmx6lnMm4b8/MU+TUJ5NRL/MDPVjmQ8Vwkwbg=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -12082,6 +12001,15 @@ let sha512 = "yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ=="; }; }; + "@tufjs/models-1.0.0" = { + name = "_at_tufjs_slash_models"; + packageName = "@tufjs/models"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@tufjs/models/-/models-1.0.0.tgz"; + sha512 = "RRMu4uMxWnZlxaIBxahSb2IssFZiu188sndesZflWOe1cA/qUqtemSIoBWbuVKPvvdktapImWNnKpBcc+VrCQw=="; + }; + }; "@turist/fetch-7.2.0" = { name = "_at_turist_slash_fetch"; packageName = "@turist/fetch"; @@ -12397,15 +12325,6 @@ let sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; }; }; - "@types/estree-0.0.50" = { - name = "_at_types_slash_estree"; - packageName = "@types/estree"; - version = "0.0.50"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz"; - sha512 = "C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="; - }; - }; "@types/estree-0.0.51" = { name = "_at_types_slash_estree"; packageName = "@types/estree"; @@ -12523,6 +12442,15 @@ let sha512 = "MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA=="; }; }; + "@types/geojson-7946.0.10" = { + name = "_at_types_slash_geojson"; + packageName = "@types/geojson"; + version = "7946.0.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz"; + sha512 = "Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA=="; + }; + }; "@types/get-stdin-5.0.1" = { name = "_at_types_slash_get-stdin"; packageName = "@types/get-stdin"; @@ -12946,15 +12874,6 @@ let sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="; }; }; - "@types/node-14.17.34" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "14.17.34"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.17.34.tgz"; - sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg=="; - }; - }; "@types/node-14.18.33" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -12964,13 +12883,13 @@ let sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg=="; }; }; - "@types/node-14.18.36" = { + "@types/node-14.18.37" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "14.18.36"; + version = "14.18.37"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.18.36.tgz"; - sha512 = "FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ=="; + url = "https://registry.npmjs.org/@types/node/-/node-14.18.37.tgz"; + sha512 = "7GgtHCs/QZrBrDzgIJnQtuSvhFSwhyYSI2uafSwZoNt1iOGhEN5fwNrQMjtONyHm9+/LoA4453jH0CMYcr06Pg=="; }; }; "@types/node-15.14.9" = { @@ -12991,13 +12910,22 @@ let sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; }; }; - "@types/node-16.18.13" = { + "@types/node-16.11.68" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.18.13"; + version = "16.11.68"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.18.13.tgz"; - sha512 = "l0/3XZ153UTlNOnZK8xSNoJlQda9/WnYgiTdcKKPJSZjdjI9MU+A9oMXOesAWLSnqAaaJhj3qfQsU07Dr8OUwg=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.11.68.tgz"; + sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ=="; + }; + }; + "@types/node-16.18.14" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "16.18.14"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-16.18.14.tgz"; + sha512 = "wvzClDGQXOCVNU4APPopC2KtMYukaF1MN/W3xAmslx22Z4/IF1/izDMekuyoUlwfnDHYCIZGaj7jMwnJKBTxKw=="; }; }; "@types/node-16.9.1" = { @@ -13018,22 +12946,31 @@ let sha512 = "DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA=="; }; }; - "@types/node-18.13.0" = { + "@types/node-18.14.4" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.13.0"; + version = "18.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz"; - sha512 = "gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.14.4.tgz"; + sha512 = "VhCw7I7qO2X49+jaKcAUwi3rR+hbxT5VcYF493+Z5kMLI0DL568b7JI4IDJaxWFH0D/xwmGJNoXisyX+w7GH/g=="; }; }; - "@types/node-18.14.2" = { + "@types/node-18.14.6" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.14.2"; + version = "18.14.6"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.14.2.tgz"; - sha512 = "1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.14.6.tgz"; + sha512 = "93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA=="; + }; + }; + "@types/node-18.15.0" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "18.15.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-18.15.0.tgz"; + sha512 = "z6nr0TTEOBGkzLGmbypWOGnpSpSIBorEhC4L+4HeQ2iezKCi4f77kyslRwvHeNitymGQ+oFyIWGP96l/DPSV9w=="; }; }; "@types/node-6.14.13" = { @@ -13225,13 +13162,13 @@ let sha512 = "F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ=="; }; }; - "@types/sass-1.43.1" = { + "@types/sass-1.45.0" = { name = "_at_types_slash_sass"; packageName = "@types/sass"; - version = "1.43.1"; + version = "1.45.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/sass/-/sass-1.43.1.tgz"; - sha512 = "BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g=="; + url = "https://registry.npmjs.org/@types/sass/-/sass-1.45.0.tgz"; + sha512 = "jn7qwGFmJHwUSphV8zZneO3GmtlgLsmhs/LQyVvQbIIa+fzGMUiHI4HXJZL3FT8MJmgXWbLGiVVY7ElvHq6vDA=="; }; }; "@types/scheduler-0.16.2" = { @@ -13657,13 +13594,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.54.0" = { + "@typescript-eslint/eslint-plugin-5.54.1" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.0.tgz"; - sha512 = "+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.1.tgz"; + sha512 = "a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -13684,13 +13621,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.54.0" = { + "@typescript-eslint/parser-5.54.1" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.0.tgz"; - sha512 = "aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.1.tgz"; + sha512 = "8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -13702,22 +13639,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.54.0" = { + "@typescript-eslint/scope-manager-5.54.1" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.0.tgz"; - sha512 = "VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.1.tgz"; + sha512 = "zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg=="; }; }; - "@typescript-eslint/type-utils-5.54.0" = { + "@typescript-eslint/type-utils-5.54.1" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.0.tgz"; - sha512 = "WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.1.tgz"; + sha512 = "WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -13729,13 +13666,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.54.0" = { + "@typescript-eslint/types-5.54.1" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.0.tgz"; - sha512 = "nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.1.tgz"; + sha512 = "G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -13747,22 +13684,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.54.0" = { + "@typescript-eslint/typescript-estree-5.54.1" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.0.tgz"; - sha512 = "X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.1.tgz"; + sha512 = "bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg=="; }; }; - "@typescript-eslint/utils-5.54.0" = { + "@typescript-eslint/utils-5.54.1" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.0.tgz"; - sha512 = "cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.1.tgz"; + sha512 = "IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -13774,13 +13711,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.54.0" = { + "@typescript-eslint/visitor-keys-5.54.1" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.54.0"; + version = "5.54.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.0.tgz"; - sha512 = "xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.1.tgz"; + sha512 = "q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg=="; }; }; "@uphold/request-logger-2.0.0" = { @@ -13828,13 +13765,13 @@ let sha512 = "UGyyGAMXzop9C/fIoe7Ij63DkPSy1uMw2jipB5dnB8R3kl80za7LYzVnA1HvBEt2ZPWfMuwez/VGLOQ7XX4bTA=="; }; }; - "@vanilla-extract/babel-plugin-debug-ids-1.0.1" = { + "@vanilla-extract/babel-plugin-debug-ids-1.0.2" = { name = "_at_vanilla-extract_slash_babel-plugin-debug-ids"; packageName = "@vanilla-extract/babel-plugin-debug-ids"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.1.tgz"; - sha512 = "ynyKqsJiMzM1/yiIJ6QdqpWKlK4IMJJWREpPtaemZrE1xG1B4E/Nfa6YazuDWjDkCJC1tRIpEGnVs+pMIjUxyw=="; + url = "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.2.tgz"; + sha512 = "LjnbQWGeMwaydmovx8jWUR8BxLtLiPyq0xz5C8G5OvFhsuJxvavLdrBHNNizvr1dq7/3qZGlPv0znsvU4P44YA=="; }; }; "@vanilla-extract/css-1.9.5" = { @@ -13846,13 +13783,13 @@ let sha512 = "aVSv6q24zelKRtWx/l9yshU3gD1uCDMZ2ZGcIiYnAcPfyLryrG/1X5DxtyiPKcyI/hZWoteHofsN//2q9MvzOA=="; }; }; - "@vanilla-extract/integration-6.1.0" = { + "@vanilla-extract/integration-6.1.2" = { name = "_at_vanilla-extract_slash_integration"; packageName = "@vanilla-extract/integration"; - version = "6.1.0"; + version = "6.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-6.1.0.tgz"; - sha512 = "7gDkOibk/DraG35ZpiAYqWd33wLA6YRnieC5vw7ItoFEzCv9bUaS9c+ZyktyWW3nRnL+e7Pc6FS6l7MKgEsX1w=="; + url = "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-6.1.2.tgz"; + sha512 = "80Qff+mry4aUC3O2xv6N+FzylI9L64ZZ5THXUKFueZNTTswqgnxLlT9Nsf1nQYtvaZjavorVt3qpq+aakBZHvg=="; }; }; "@vanilla-extract/private-1.0.3" = { @@ -13864,58 +13801,58 @@ let sha512 = "17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ=="; }; }; - "@vercel/build-utils-6.3.1" = { + "@vercel/build-utils-6.3.4" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "6.3.1"; + version = "6.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.3.1.tgz"; - sha512 = "mFd6QZJX1SaweTa9BB+zO6OyGeQWsk+z0LFhsSblnWue2wjmeZ3z3TBt8V/Wlae5NMg4+E2AFcDf/lr3ENeCfg=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.3.4.tgz"; + sha512 = "7qhJP/5yz/9aBmkJirRxcTrvrLdV6PUT9DpxsILnfdw7WAJ5KSa59kBj8Aw4VhW4CqK4pFcuMMHr73aYRcEmkg=="; }; }; - "@vercel/gatsby-plugin-vercel-analytics-1.0.7" = { + "@vercel/gatsby-plugin-vercel-analytics-1.0.8" = { name = "_at_vercel_slash_gatsby-plugin-vercel-analytics"; packageName = "@vercel/gatsby-plugin-vercel-analytics"; - version = "1.0.7"; + version = "1.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.7.tgz"; - sha512 = "j4DsneQ+oOF0Zurvisj+H2ds8s8ZEqfI4iD6xgFY9mB2UdGixhzFRjvDBH6g4pfUQXfO76K5GiA1afumGlJbwA=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.8.tgz"; + sha512 = "EL5xH3KOtAwzLc50NA2Df5BQwIV9tu8QBIG0unSTUtOpIaqqnOMBZT86DxadsAniUs7xYRcaeXOkQog/PbpWDw=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-1.1.9" = { + "@vercel/gatsby-plugin-vercel-builder-1.2.1" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "1.1.9"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.1.9.tgz"; - sha512 = "Djd8a59niZeZL4iX1by+zeD0LM1HIkBi8SE/9owKlt8e1CJbo0VBat+uVEUTQ+Vfq+E2gcCDodimSlbNz09JnA=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.2.1.tgz"; + sha512 = "L4Sydz8JJPZM9ZmIoxCMCc6TnQVEgbwPbmKNPESLPPUZkPpyaNcMYa8APkbyiEQMp8tuq5flEE21Aoq5tDkD3A=="; }; }; - "@vercel/go-2.3.8" = { + "@vercel/go-2.3.11" = { name = "_at_vercel_slash_go"; packageName = "@vercel/go"; - version = "2.3.8"; + version = "2.3.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/go/-/go-2.3.8.tgz"; - sha512 = "gL+bqelYG/YBiZFc1A+XNOOrHwd7EBoGH4KeqQi9I2NH6gn5sMg7/dvg2C92nf8Hzz6Q4BkVx1QB4Qo0ldazXQ=="; + url = "https://registry.npmjs.org/@vercel/go/-/go-2.3.11.tgz"; + sha512 = "IuFnrQzTuTBp08/+2UHWIZ4KYB0TJvTjVEvGE275nsDXqlssZRDNHXfjGTEouScCN7HuYQMkEFRn+xlMb+0qHg=="; }; }; - "@vercel/hydrogen-0.0.54" = { + "@vercel/hydrogen-0.0.57" = { name = "_at_vercel_slash_hydrogen"; packageName = "@vercel/hydrogen"; - version = "0.0.54"; + version = "0.0.57"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.54.tgz"; - sha512 = "oNgwer0JlmRS9MomYE202basrsHpMrA4uU+LEC2uPyhLk7HMac4DiIXXt59ddY/UJUiN6+F1UX48x1UXdmAW8Q=="; + url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.57.tgz"; + sha512 = "VOI7AYJlrrxoPaxbYpAJz/t0516a7/sMtukAT834T7Ne/MOgj5fU6n/IOTBqz3si8tZ7NybWIlM+T5iJSozoZw=="; }; }; - "@vercel/next-3.6.1" = { + "@vercel/next-3.6.6" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.6.1"; + version = "3.6.6"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.6.1.tgz"; - sha512 = "aEtq99LHqnZ5fYdodaKPKGGgoKnzRYJPYhl5WX+j0cpF3LTYlnKbMnmelY5RGbfyYvkKzLCrLTg40qhMi+JFGg=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.6.6.tgz"; + sha512 = "vnlMCHwyXkUGB3Bc5nUwf27fe1Q8t+1VosSAY+97tCJURlIodvSKDBMmR/x+Fb/uoWip66MmO63DH9szLUw0cQ=="; }; }; "@vercel/nft-0.22.5" = { @@ -13927,76 +13864,76 @@ let sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.9.8" = { + "@vercel/node-2.9.12" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.9.8"; + version = "2.9.12"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.9.8.tgz"; - sha512 = "GqRqUmdT5/l8XY68ulUJKgijCrWw/p2sgxzrq5Mj40B2nOC5CQa0HLLiNd/Q+jnIrrJkdBpB1xeVkebEv1mgng=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.9.12.tgz"; + sha512 = "NGbOK9bl7Lhnr1OfB+iz2yIOuMhOQKZz66jn11153mDqqlQ93i7cNcQeMU61A1waJj1KubqViMGWKgxO7QTCUw=="; }; }; - "@vercel/node-bridge-3.1.12" = { + "@vercel/node-bridge-3.1.14" = { name = "_at_vercel_slash_node-bridge"; packageName = "@vercel/node-bridge"; - version = "3.1.12"; + version = "3.1.14"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.12.tgz"; - sha512 = "RYMYzyR/QyT+1JeOHBtBxwDc8XszYbChq0b18uqt4/PQ8rUWdcHMUkUoNjScB6RmqScX+vTzYj8eLS8UfHxnaQ=="; + url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.14.tgz"; + sha512 = "TAbo0rwBenmWywcEup+5lZgr6ILPPq55P33JRX+oJJuTxYib0NqVj47gEvLTxaj3MoJFgp0iDlC9A0uAf4ykxQ=="; }; }; - "@vercel/python-3.1.50" = { + "@vercel/python-3.1.53" = { name = "_at_vercel_slash_python"; packageName = "@vercel/python"; - version = "3.1.50"; + version = "3.1.53"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.50.tgz"; - sha512 = "J9DMiQNoED+gVzX4T7MjdOeMn9Fy+BhXC0zT+EkxFoTWpEDYx6zzACdOMwiKgjetLujRWeMWQXT++64oeArBHA=="; + url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.53.tgz"; + sha512 = "jr6D7AZ70cFfTV7+dmqFL9d1ssbx/3/o1AwOm1iq/XlAGLNhoMYVaT/m/oC7st82OyBUk7X0Ek5NLaUZsjlQbg=="; }; }; - "@vercel/redwood-1.1.6" = { + "@vercel/redwood-1.1.9" = { name = "_at_vercel_slash_redwood"; packageName = "@vercel/redwood"; - version = "1.1.6"; + version = "1.1.9"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.6.tgz"; - sha512 = "b+G/bptoxoqVnA+CvZn1AwiPc0ODjXEX7vb+qwJ3CDD7FP4axF6gNM100g5Q6W+qhEWoQ7ssIY/njnpQgPWrmQ=="; + url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.9.tgz"; + sha512 = "blFWThhosa+LhqReoXI+xnXoD9Gj2PK/jIfvSo9vP2Kzbzr/hLfcaDqv1ZQted/PuZilaa3gX9j7e/kPFsXulw=="; }; }; - "@vercel/remix-1.4.1" = { + "@vercel/remix-1.6.2" = { name = "_at_vercel_slash_remix"; packageName = "@vercel/remix"; - version = "1.4.1"; + version = "1.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.4.1.tgz"; - sha512 = "Tmq8zDZIW3feYMzVcMVTDF1hKiHdZXXvwQpNXy5oPJOK6j1mNXcr51z0LZMPIcxLUns8ZC1h18xvDl0x04j63A=="; + url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.6.2.tgz"; + sha512 = "y0b32OJbQpvcEZPIB+BNyoCIpXH+hN/T/WN6PEPYOFzMQzb9Zjh2SEMBO+mh3azbq64RWWedxljIrSyR59jfAQ=="; }; }; - "@vercel/routing-utils-2.1.9" = { + "@vercel/routing-utils-2.1.10" = { name = "_at_vercel_slash_routing-utils"; packageName = "@vercel/routing-utils"; - version = "2.1.9"; + version = "2.1.10"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.9.tgz"; - sha512 = "DVE9coIpicZQBKWL0DgIe5wnZsi4SRPbD51XxFCvvnRyYxG34DY09R0aMz4ZQQdPK2asJF57i5rbcplXYaEOkg=="; + url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.10.tgz"; + sha512 = "eOde+TQBcGOpEMd5EVTE36rK5NQOewEepEUCX1jrSgwbf/vzYP5B82zwcGdtddxEwzWqJV4QjltS6H0GZOgf6A=="; }; }; - "@vercel/ruby-1.3.67" = { + "@vercel/ruby-1.3.70" = { name = "_at_vercel_slash_ruby"; packageName = "@vercel/ruby"; - version = "1.3.67"; + version = "1.3.70"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.67.tgz"; - sha512 = "2j9QO8U59wRBbOWwcbnjpqteguD11GbPhJLNRZ9zJsp5Ku1YGF2NY975EwIKlDMra8WCehHAkm7JuvNCPunwRg=="; + url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.70.tgz"; + sha512 = "tVCl78XWuZEzi8oyumzB7pAuxLPK54zTko6yJVqXtytOyuLorTB+LLEV9wDzh+Yird8bVsA/hDf6qoYJaFYagA=="; }; }; - "@vercel/static-build-1.3.12" = { + "@vercel/static-build-1.3.16" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.3.12"; + version = "1.3.16"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.12.tgz"; - sha512 = "KufcZlf4qamzUuBVa3+7UHy62WfvMqrP5xid91DNCVFLnTzauoViMhufMU601SwERxH1fPYS78mzsQd1h+5Mfw=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.16.tgz"; + sha512 = "Nz1qXjcgaWZfZd3CU/1WITLIu9kcGu7tiBs1+t2Fh1013rwQdb/YothpjXKauUhMbUm3blgH0Jej86N2ctrpTw=="; }; }; "@vercel/static-config-2.0.13" = { @@ -14035,13 +13972,13 @@ let sha512 = "ukOMWnCg1tCvT7WnDfsUKQOFDQGsyR5tNgRpwmqi+5/vzU3ghdDXzvIM4IOPdSb3OeSsBNvmSL8nxIVOqi2WXA=="; }; }; - "@vscode/test-electron-2.2.3" = { + "@vscode/test-electron-2.3.0" = { name = "_at_vscode_slash_test-electron"; packageName = "@vscode/test-electron"; - version = "2.2.3"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.2.3.tgz"; - sha512 = "7DmdGYQTqRNaLHKG3j56buc9DkstriY4aV0S3Zj32u0U9/T0L8vwWAC9QGCh1meu1VXDEla1ze27TkqysHGP0Q=="; + url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.3.0.tgz"; + sha512 = "fwzA9RtazH1GT/sckYlbxu6t5e4VaMXwCVtyLv4UAG0hP6NTfnMaaG25XCfWqlVwFhBMcQXHBCy5dmz2eLUnkw=="; }; }; "@vue/cli-overlay-4.5.19" = { @@ -14989,22 +14926,22 @@ let sha512 = "WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w=="; }; }; - "@whatwg-node/fetch-0.8.1" = { + "@whatwg-node/fetch-0.8.2" = { name = "_at_whatwg-node_slash_fetch"; packageName = "@whatwg-node/fetch"; - version = "0.8.1"; + version = "0.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.1.tgz"; - sha512 = "Fkd1qQHK2tAWxKlC85h9L86Lgbq3BzxMnHSnTsnzNZMMzn6Xi+HlN8/LJ90LxorhSqD54td+Q864LgwUaYDj1Q=="; + url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.2.tgz"; + sha512 = "6u1xGzFZvskJpQXhWreR9s1/4nsuY4iFRsTb4BC3NiDHmzgj/Hu1Ovt4iHs5KAjLzbnsjaQOI5f5bQPucqvPsQ=="; }; }; - "@whatwg-node/node-fetch-0.3.0" = { + "@whatwg-node/node-fetch-0.3.1" = { name = "_at_whatwg-node_slash_node-fetch"; packageName = "@whatwg-node/node-fetch"; - version = "0.3.0"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.0.tgz"; - sha512 = "mPM8WnuHiI/3kFxDeE0SQQXAElbz4onqmm64fEGCwYEcBes2UsvIDI8HwQIqaXCH42A9ajJUPv4WsYoN/9oG6w=="; + url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.1.tgz"; + sha512 = "/U4onp5eBkRHfFe/VL+ppyupqj7z6iBtjcuPSosQNH2/y+LxRn5lyFb7Vqhb5DokjrDMjssLcqiVYnx+UABFsw=="; }; }; "@withgraphite/graphite-cli-routes-0.23.0" = { @@ -15349,13 +15286,13 @@ let sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; }; }; - "@yarnpkg/parsers-3.0.0-rc.39" = { + "@yarnpkg/parsers-3.0.0-rc.40" = { name = "_at_yarnpkg_slash_parsers"; packageName = "@yarnpkg/parsers"; - version = "3.0.0-rc.39"; + version = "3.0.0-rc.40"; src = fetchurl { - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.39.tgz"; - sha512 = "BsD4zq3EVmaHqlynXTceNuEFAtrfToV4fI9GA54moKlWZL4Eb2eXrhgf1jV2nMYx18SZxYO4Jc5Kf1sCDNRjOg=="; + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.40.tgz"; + sha512 = "sKbi5XhHKXCjzb5m0ftGuQuODM2iUXEsrCSl8MkKexNWHepCmU3IPaGTPC5gHZy4sOvsb9JqTLaZEez+kDzG+Q=="; }; }; "@zeit/schemas-2.29.0" = { @@ -15394,76 +15331,76 @@ let sha512 = "nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg=="; }; }; - "@zwave-js/cc-10.10.0" = { + "@zwave-js/cc-10.11.1" = { name = "_at_zwave-js_slash_cc"; packageName = "@zwave-js/cc"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.10.0.tgz"; - sha512 = "ZT+V5+llCZknSe5CwaVom5PpEFbFfm6pXbzS6nJ2Nt5m7//G4qExK+356qOfE7vsEz9KgIDEbDGfEtfhq/heUQ=="; + url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.11.1.tgz"; + sha512 = "B1R8VQTFERWPafKb5V9SaB2H27Mpp18XnOrwR6inZxeG62TaB38FH7VgyLcxn0C7QNlKvTF11fA7CGZ7B+JQxA=="; }; }; - "@zwave-js/config-10.10.0" = { + "@zwave-js/config-10.11.1" = { name = "_at_zwave-js_slash_config"; packageName = "@zwave-js/config"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.10.0.tgz"; - sha512 = "nlCYS8SZol0IM66OFgOF2eFC0NRc4qreVrC2NfUTdxy3plClSOhsQeZsREyvXyxEtrhMaW5G93M6Ad7+YbIh7Q=="; + url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.11.1.tgz"; + sha512 = "dCrhYMYMzY8Pwd43B5lUlPBEsmOsbJFB669QS4OLZJtmvSGDbc7WP5fUJoR09DiLzIlxnEHUc7VwLfROoqwsww=="; }; }; - "@zwave-js/core-10.10.0" = { + "@zwave-js/core-10.11.1" = { name = "_at_zwave-js_slash_core"; packageName = "@zwave-js/core"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/core/-/core-10.10.0.tgz"; - sha512 = "jwejHy/HEAHTCIJJkAF+4b8F1mTK2xVLdZzdPNh4t9RBRpFH+cxuKS4DP7iEHAyDROvyOmzW//QOxZMHEmbqwg=="; + url = "https://registry.npmjs.org/@zwave-js/core/-/core-10.11.1.tgz"; + sha512 = "Hiv8x9xYOWmhL9nLIEyXJ4XTGixUGErL/iSM0dHT3upVo+OIkp5iluEAL8cRhSV4hOueckE+WXwqziiDlRlW1g=="; }; }; - "@zwave-js/host-10.10.0" = { + "@zwave-js/host-10.11.1" = { name = "_at_zwave-js_slash_host"; packageName = "@zwave-js/host"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.10.0.tgz"; - sha512 = "SrbfE3um8S1lFhW9WaZcbIIzqCirB0ej6U64azhxSQLRWDj0mbkqso1FZvbqzOgT67HTFejiICDe6MqVnl2beA=="; + url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.11.1.tgz"; + sha512 = "AZ3pRA0i4i6jfdceqSdLvVSZUxQqN/rkpfmxzpQxKYwtd0kzfpZD13mkvktsYF+3fDNmOk5Mp19I+Q78WEi/Bg=="; }; }; - "@zwave-js/nvmedit-10.10.0" = { + "@zwave-js/nvmedit-10.11.1" = { name = "_at_zwave-js_slash_nvmedit"; packageName = "@zwave-js/nvmedit"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-10.10.0.tgz"; - sha512 = "EGSXNUptfwQPONtrZPkYkV3wefaKrheEx2GheH11L9v4Bg1KfxVMLJh92p9c0/sGZTayZnAR0q5Pt41BeuMhBA=="; + url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-10.11.1.tgz"; + sha512 = "wn/ldo/u9c5ttLTMNhARo4eseCmY9RI+WUZiRvgbShiSROWZWYps+rMZXql2eTtBOLrzat/nYDz2Xk9Gv27NUA=="; }; }; - "@zwave-js/serial-10.10.0" = { + "@zwave-js/serial-10.11.1" = { name = "_at_zwave-js_slash_serial"; packageName = "@zwave-js/serial"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.10.0.tgz"; - sha512 = "3Bp9lR3uojiEyZV6wtj8RDijRDhcGPhK3xu0wQZ2OEYZOKuGyGB1XNpVaRhowj26UQ2e6ztcz8S/tr8poNRDXA=="; + url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.11.1.tgz"; + sha512 = "SOflxz90nQ94vlQoXX9GUEj8dyJVUoYQQuWpiYpYAaa3DAh1fkMHpxJ/90md83TfjP/OpCzgb3fdZFzb0HgDRQ=="; }; }; - "@zwave-js/shared-10.10.0" = { + "@zwave-js/shared-10.11.1" = { name = "_at_zwave-js_slash_shared"; packageName = "@zwave-js/shared"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/shared/-/shared-10.10.0.tgz"; - sha512 = "UOEyaQ60nRO9zWlsOyK3prYZCUtjfbXNPd/mZSzWrWeZcNzKcU5VdZGHHJnbCDf3wS0zyOhB66afBlY7O0RpuQ=="; + url = "https://registry.npmjs.org/@zwave-js/shared/-/shared-10.11.1.tgz"; + sha512 = "lAxZ1qPkZB4Kl4lMAUVIqMcdTLW5ZAdKUKYOVGXpdfOdXkavhtLYbjdW5kdsjU7R9fwB7lO1BRooGsC8m2L/gQ=="; }; }; - "@zwave-js/testing-10.10.0" = { + "@zwave-js/testing-10.11.1" = { name = "_at_zwave-js_slash_testing"; packageName = "@zwave-js/testing"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.10.0.tgz"; - sha512 = "VylUNmdrGMVaUFOvFqZuQGa9fLmZ6HPhrgLHcECbn7YBjgk7kz2Ha+irrsfny73zYT0t/BtYlZl3M54I2S5ahQ=="; + url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.11.1.tgz"; + sha512 = "zLXtAKg5sxg7vD6JxkWfD9uvb3m/fgqAHwg1iHbgqYCCw+WcwNwWYf5AwuftvYeTvwjBz1MxV15JlzQukxYFBQ=="; }; }; "@zxing/text-encoding-0.9.0" = { @@ -16024,13 +15961,13 @@ let sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; }; }; - "agentkeepalive-4.2.1" = { + "agentkeepalive-4.3.0" = { name = "agentkeepalive"; packageName = "agentkeepalive"; - version = "4.2.1"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz"; - sha512 = "Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA=="; + url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz"; + sha512 = "7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg=="; }; }; "aggregate-error-3.1.0" = { @@ -16312,6 +16249,15 @@ let sha512 = "NLU4tCHlWt0tzEaFQL7NIoWhq2KmQSmz0JvyS2lYn6fc4fEjTMSabhJUx8H1r5995FX8fE3rZ15uIHU6u+ovlQ=="; }; }; + "anser-2.1.1" = { + name = "anser"; + packageName = "anser"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/anser/-/anser-2.1.1.tgz"; + sha512 = "nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ=="; + }; + }; "ansi-0.3.1" = { name = "ansi"; packageName = "ansi"; @@ -16780,22 +16726,22 @@ let sha512 = "L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg=="; }; }; - "apollo-reporting-protobuf-3.3.3" = { + "apollo-reporting-protobuf-3.4.0" = { name = "apollo-reporting-protobuf"; packageName = "apollo-reporting-protobuf"; - version = "3.3.3"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.3.tgz"; - sha512 = "L3+DdClhLMaRZWVmMbBcwl4Ic77CnEBPXLW53F7hkYhkaZD88ivbCVB1w/x5gunO6ZHrdzhjq0FHmTsBvPo7aQ=="; + url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.4.0.tgz"; + sha512 = "h0u3EbC/9RpihWOmcSsvTW2O6RXVaD/mPEjfrPkxRPTEPWqncsgOoRJw+wih4OqfH3PvTJvoEIf4LwKrUaqWog=="; }; }; - "apollo-server-core-3.11.1" = { + "apollo-server-core-3.12.0" = { name = "apollo-server-core"; packageName = "apollo-server-core"; - version = "3.11.1"; + version = "3.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.11.1.tgz"; - sha512 = "t/eCKrRFK1lYZlc5pHD99iG7Np7CEm3SmbDiONA7fckR3EaB/pdsEdIkIwQ5QBBpT5JLp/nwvrZRVwhaWmaRvw=="; + url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.12.0.tgz"; + sha512 = "hq7iH6Cgldgmnjs9FVSZeKWRpi0/ZR+iJ1arzeD2VXGxxgk1mAm/cz1Tx0TYgegZI+FvvrRl0UhKEx7sLnIxIg=="; }; }; "apollo-server-env-4.2.1" = { @@ -16816,31 +16762,31 @@ let sha512 = "xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA=="; }; }; - "apollo-server-express-3.11.1" = { + "apollo-server-express-3.12.0" = { name = "apollo-server-express"; packageName = "apollo-server-express"; - version = "3.11.1"; + version = "3.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.11.1.tgz"; - sha512 = "x9ngcpXbBlt4naCXTwNtBFb/mOd9OU0wtFXvJkObHF26NsRazu3DxDfEuekA6V1NFOocD+A9jmVMQeQWug5MgA=="; + url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.12.0.tgz"; + sha512 = "m8FaGPUfDOEGSm7QRWRmUUGjG/vqvpQoorkId9/FXkC57fz/A59kEdrzkMt9538Xgsa5AV+X4MEWLJhTvlW3LQ=="; }; }; - "apollo-server-plugin-base-3.7.1" = { + "apollo-server-plugin-base-3.7.2" = { name = "apollo-server-plugin-base"; packageName = "apollo-server-plugin-base"; - version = "3.7.1"; + version = "3.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.7.1.tgz"; - sha512 = "g3vJStmQtQvjGI289UkLMfThmOEOddpVgHLHT2bNj0sCD/bbisj4xKbBHETqaURokteqSWyyd4RDTUe0wAUDNQ=="; + url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.7.2.tgz"; + sha512 = "wE8dwGDvBOGehSsPTRZ8P/33Jan6/PmL0y0aN/1Z5a5GcbFhDaaJCjK5cav6npbbGL2DPKK0r6MPXi3k3N45aw=="; }; }; - "apollo-server-types-3.7.1" = { + "apollo-server-types-3.8.0" = { name = "apollo-server-types"; packageName = "apollo-server-types"; - version = "3.7.1"; + version = "3.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.7.1.tgz"; - sha512 = "aE9RDVplmkaOj/OduNmGa+0a1B5RIWI0o3zC1zLvBTVWMKTpo0ifVf11TyMkLCY+T7cnZqVqwyShziOyC3FyUw=="; + url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.8.0.tgz"; + sha512 = "ZI/8rTE4ww8BHktsVpb91Sdq7Cb71rdSkXELSwdSR0eXu600/sY+1UXhTWdiJvk+Eq5ljqoHLwLbY2+Clq2b9A=="; }; }; "app-path-2.2.0" = { @@ -16960,13 +16906,13 @@ let sha512 = "ZzXXpZpDRGcy6Pp5V319nDF9/+Ey7jNknEXZyaBajtC5onN0dcBem6ng5jcb3MPH2AjYWRI8XgyNEuzP/6Y5/A=="; }; }; - "applicationinsights-native-metrics-0.0.8" = { + "applicationinsights-native-metrics-0.0.9" = { name = "applicationinsights-native-metrics"; packageName = "applicationinsights-native-metrics"; - version = "0.0.8"; + version = "0.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.8.tgz"; - sha512 = "3areRz2+Q1EPWbQYokfOgYXLkZyBzeReI9716nw97p697gFUfGqYgwJ5fCopftvHycW2zuRWTFJWmA70S5605A=="; + url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.9.tgz"; + sha512 = "JGnb6Ou/E4XuM3eKZP+nvpA9NWYLscclwoMFvAHyUknthiNJwREHYrNQT3c63P7AWoFsyf6cyUqeo9KX1jMp8w=="; }; }; "aproba-1.2.0" = { @@ -18472,13 +18418,22 @@ let sha512 = "qRrXLgK4FpkdxeagjrHuhtEEvYrvRbddTBg1I7KBuMCIhXHzSS3nEUmdZjdyMuQJEvt0BCJjwVkNh8e/5TauDQ=="; }; }; - "aws-sdk-2.1324.0" = { + "aws-sdk-2.1331.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1324.0"; + version = "2.1331.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1324.0.tgz"; - sha512 = "7T9Jn6qtzCANdqRcdhxZ9Fx31/U+h/VPFxEU3+sFEnC7WtGtRlgmsJOY2lIdFKRXkHYT3Jw5MqDyjnb/i1QqbA=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1331.0.tgz"; + sha512 = "zrA1ymbt/D4GtieF7FuiZacv1fp9BBp9qnHUmy0YbPd9dwH5iwPIFkzdGTABbQ+F3a6b//AjtTpcF/JGVjCtTw=="; + }; + }; + "aws-sdk-2.1332.0" = { + name = "aws-sdk"; + packageName = "aws-sdk"; + version = "2.1332.0"; + src = fetchurl { + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1332.0.tgz"; + sha512 = "WuzpeiVv+80gPDv+foHTDap0FW0OkBax+wXf8frm1mub0aBOAGJ2rGnTaCbNVPOZ5zbMFSiEuODvlebMdWBnRg=="; }; }; "aws-sign2-0.6.0" = { @@ -18634,13 +18589,13 @@ let sha512 = "XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA=="; }; }; - "b4a-1.6.1" = { + "b4a-1.6.2" = { name = "b4a"; packageName = "b4a"; - version = "1.6.1"; + version = "1.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/b4a/-/b4a-1.6.1.tgz"; - sha512 = "AsKjNhz72yxteo/0EtQEiwkMUgk/tGmycXlbG4g3Ard2/ULtNLUykGOkeK0egmN27h0xMAhb76jYccW+XTBExA=="; + url = "https://registry.npmjs.org/b4a/-/b4a-1.6.2.tgz"; + sha512 = "YFqjbZ8iqX/wWJVmF1SSOB5TYDwsPd/sZzhSdu2PskElf55PjEe+0MhsEPgoa5eTK1VS/WqJMz9qwIFwZta+3g=="; }; }; "babel-code-frame-6.26.0" = { @@ -19102,13 +19057,13 @@ let sha512 = "ZNB4525U7BxT6v9C8LEtywyCgB4Pjnm7/bh+ru/Z9Ecxvg3fDjaJ6z305z9a61orQdbB1zqYHh5JbUqx4s4K0g=="; }; }; - "bash-language-server-4.7.0" = { + "bash-language-server-4.8.2" = { name = "bash-language-server"; packageName = "bash-language-server"; - version = "4.7.0"; + version = "4.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.7.0.tgz"; - sha512 = "JLe8bk0/FtOiGIdFWg/2JoAGJctYQyrYpmj24dhCSEAjIq9HHqr9I6L9k32fh9WkWjHcrh6v70Epiv6m+SxvDQ=="; + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.8.2.tgz"; + sha512 = "B/jBGVeRMdQs+fHkEDycxD6L8/nf2WwoH3r+kt+O4GqknZ9AX3gNVE8sGjCOf0iLEvAChi6tqefYRRY2nKM4xw=="; }; }; "basic-auth-1.1.0" = { @@ -19147,13 +19102,13 @@ let sha512 = "x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="; }; }; - "bcfg-0.1.7" = { + "bcfg-0.1.8" = { name = "bcfg"; packageName = "bcfg"; - version = "0.1.7"; + version = "0.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/bcfg/-/bcfg-0.1.7.tgz"; - sha512 = "+4beq5bXwfmxdcEoHYQsaXawh1qFzjLcRvPe5k5ww/NEWzZTm56Jk8LuPmfeGB7X584jZ8xGq6UgMaZnNDa5Ww=="; + url = "https://registry.npmjs.org/bcfg/-/bcfg-0.1.8.tgz"; + sha512 = "1zHJM1/sztv9ldutWyJDZSRYQJEuRBTIzLWZ2J5ncWoWI2T6b4/hahhvQmnzucfeleU5Mx5+bcwCsF2wcWt2vA=="; }; }; "bcrypt-5.0.1" = { @@ -19345,13 +19300,13 @@ let sha512 = "pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g=="; }; }; - "better-sqlite3-8.1.0" = { + "better-sqlite3-8.2.0" = { name = "better-sqlite3"; packageName = "better-sqlite3"; - version = "8.1.0"; + version = "8.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.1.0.tgz"; - sha512 = "p1m09H+Oi8R9TPj810pdNswMFuVgRNgCJEWypp6jlkOgSwMIrNyuj3hW78xEuBRGok5RzeaUW8aBtTWF3l/TQA=="; + url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.2.0.tgz"; + sha512 = "8eTzxGk9535SB3oSNu0tQ6I4ZffjVCBUjKHN9QeeIFtphBX0sEd0NxAuglBNR9TO5ThnxBB7GqzfcYo9kjadJQ=="; }; }; "bevent-0.1.5" = { @@ -20470,13 +20425,13 @@ let sha512 = "j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg=="; }; }; - "boxen-7.0.1" = { + "boxen-7.0.2" = { name = "boxen"; packageName = "boxen"; - version = "7.0.1"; + version = "7.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/boxen/-/boxen-7.0.1.tgz"; - sha512 = "8k2eH6SRAK00NDl1iX5q17RJ8rfl53TajdYxE3ssMLehbg487dEVgsad4pIsZb/QqBgYWIl6JOauMTLGX2Kpkw=="; + url = "https://registry.npmjs.org/boxen/-/boxen-7.0.2.tgz"; + sha512 = "1Z4UJabXUP1/R9rLpoU3O2lEMnG3pPLAs/ZD2lF3t2q7qD5lM8rqbtnvtvm4N0wEyNlE+9yZVTVAGmd1V5jabg=="; }; }; "bplist-creator-0.0.6" = { @@ -20686,22 +20641,22 @@ let sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; }; }; - "browser-sync-client-2.28.1" = { + "browser-sync-client-2.28.3" = { name = "browser-sync-client"; packageName = "browser-sync-client"; - version = "2.28.1"; + version = "2.28.3"; src = fetchurl { - url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.28.1.tgz"; - sha512 = "srFIhUU6CtsLtvBsVmTgRtFt/kFbcl/PYvenpfxPIKTDSxQf35cCjYwYF1osyJdvRoeKoDlaK/fv6eN6/cXRKw=="; + url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.28.3.tgz"; + sha512 = "SMsnGkyXlySVLBWRrXdnTdtQCy0Sl5UoiF8BVtigj9S49DaPWQiesbsyq+uJBUKgpyNve+cvfpBU3KSfIp6oLQ=="; }; }; - "browser-sync-ui-2.28.1" = { + "browser-sync-ui-2.28.3" = { name = "browser-sync-ui"; packageName = "browser-sync-ui"; - version = "2.28.1"; + version = "2.28.3"; src = fetchurl { - url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.28.1.tgz"; - sha512 = "yPylRdTE8HS/MxcgGpYfcW/JVde+tVnoTIwotVqzqybW8Kg0e3GfFlS7fD0W+KtI/rS4U5GxVsqERxdqpAjCoQ=="; + url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.28.3.tgz"; + sha512 = "Mj5M+O3jroGp5hlO6pDfUo19wzUTIuvGyzaRrJAYUgsSkpFacrX+MLCjN9VbZm9fYXbtHyIsnIUUIlYag87wgQ=="; }; }; "browserify-16.5.2" = { @@ -21434,13 +21389,13 @@ let sha512 = "8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="; }; }; - "bval-0.1.7" = { + "bval-0.1.8" = { name = "bval"; packageName = "bval"; - version = "0.1.7"; + version = "0.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/bval/-/bval-0.1.7.tgz"; - sha512 = "Ohv+MV7C0xAt5DJ4u681EVCArZ+ybEpz8yPjAozBEZYmR/rp9AX9QJB9PJ0aVlzEodjr3PIKTQrZfaONP8XR9w=="; + url = "https://registry.npmjs.org/bval/-/bval-0.1.8.tgz"; + sha512 = "38WQyq94sgKaJbHSmkOwZqba6Ac0KIKPO0SMDNg/mCcwUos2NIrMg5Bb2LkzIer+RzS186IYusNeSrJrKdaqhA=="; }; }; "bweb-0.1.12" = { @@ -22019,13 +21974,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001458" = { + "caniuse-lite-1.0.30001464" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001458"; + version = "1.0.30001464"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001458.tgz"; - sha512 = "lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001464.tgz"; + sha512 = "oww27MtUmusatpRpCGSOneQk2/l5czXANDSFvsc7VuOQ86s3ANhZetpwXNf1zY/zdfP63Xvjz325DAdAoES13g=="; }; }; "canvas-2.11.0" = { @@ -22181,22 +22136,22 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.7.14" = { + "cdk8s-2.7.25" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.7.14"; + version = "2.7.25"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.14.tgz"; - sha512 = "MJXV6Fqp6m6t9iYOqR5Vw2748/xIr3AHMXSD4uItAHuYRnAXJAyrp4WtbxiOyRk0qnCH8MNNEWZBc1mb0PJgEQ=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.25.tgz"; + sha512 = "MwCZvNn14EWibak5RM+CfgMJwZ+mpUrtUyrxhedAsA4pSELHUNpVUqYsLRBJwbabWRV7N0cUwaZVeU9XYMLe1A=="; }; }; - "cdk8s-plus-25-2.4.37" = { + "cdk8s-plus-25-2.4.47" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.4.37"; + version = "2.4.47"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.4.37.tgz"; - sha512 = "vVtsOLBUxyqa1m7/Ip4PuT9GvxaHavp5hW7ndSc96dFFPvLvZRvE7CBZZQwe9MY8GPfXC12Y9oiVxmE5pb0LPQ=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.4.47.tgz"; + sha512 = "2iNl2XWT+T9zKtW+xaEJQBxNs9b2Ol3RL+FglrH1FnPnm+WiCl+/P1S7OAKtybZtzBXykImp/oCSz3vQ8+d3gg=="; }; }; "cdktf-0.15.5" = { @@ -23846,13 +23801,13 @@ let sha512 = "+xi2ENsvchtUNa8oBUU58gHgmyN6BEEeZ8NIEgeQ0XnC+AoyihivgZYe+OOiNi+fLy/NUowugwV5gP8XWYDm0Q=="; }; }; - "codemaker-1.76.0" = { + "codemaker-1.77.0" = { name = "codemaker"; packageName = "codemaker"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.76.0.tgz"; - sha512 = "EqnBOOiEV+kjyRghA5Z0TX22VnVH2Mgo2diOSYelcmntlTSiQkZimGof6jxE5j1buzjEVBK1d1W7bhRKYGegUg=="; + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.77.0.tgz"; + sha512 = "XSHAqkXMn5OtcebJLVMFEW9puB+4ZmmChBFspEf62ZeYzs+ggSXEHW9GrjC/ZyX+sfxql6ciJP3z25sSp4VsVQ=="; }; }; "codepage-1.4.0" = { @@ -24413,15 +24368,6 @@ let sha512 = "KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ=="; }; }; - "commandpost-1.4.0" = { - name = "commandpost"; - packageName = "commandpost"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commandpost/-/commandpost-1.4.0.tgz"; - sha512 = "aE2Y4MTFJ870NuB/+2z1cXBhSBBzRydVVjzhFC4gtenEhpnj15yu0qptWGJsO9YGrcPZ3ezX8AWb1VA391MKpQ=="; - }; - }; "comment-json-1.1.3" = { name = "comment-json"; packageName = "comment-json"; @@ -24971,13 +24917,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.1.263" = { + "constructs-10.1.272" = { name = "constructs"; packageName = "constructs"; - version = "10.1.263"; + version = "10.1.272"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.263.tgz"; - sha512 = "lJq4n2iukIQE/XtSfMMwnOE33n67kSzNi6rF3C83RrHYtrQYRswOcAv3XJciCQoznxn99pKmgsxAQBYJlYcwFg=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.1.272.tgz"; + sha512 = "Rn5nwQoWjsVTeUOXqPsXE//uwd2Aj6Ln59/PTNIgyCUVuRMgRGTuKNT5w4cDauJWYnwsE+z15v2AvcHA85RToA=="; }; }; "consume-http-header-1.0.0" = { @@ -26205,22 +26151,22 @@ let sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; }; }; - "cspell-dictionary-6.27.0" = { + "cspell-dictionary-6.28.0" = { name = "cspell-dictionary"; packageName = "cspell-dictionary"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.27.0.tgz"; - sha512 = "u2HZ6Yl0tIBzflJ9Rt5i15kP1KN41XtyKfqCCntugX3gYtfbQ1t/HvAPcq4g7EDZV2tzqSKGcNvzuJgHJyxxFw=="; + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.28.0.tgz"; + sha512 = "7RSap81rJ2JVENuErrcKqfN1rBfDN8UIJSn5uoQZj2Boz/IfV24wGs0izXcJ+jpZI9L5PoT0XpMyuT93rwo+hA=="; }; }; - "cspell-gitignore-6.27.0" = { + "cspell-gitignore-6.28.0" = { name = "cspell-gitignore"; packageName = "cspell-gitignore"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.27.0.tgz"; - sha512 = "aXIuSMtm2pW8Z0y4SHBqvXwY4Hk3lz4b3PD50IU1gn2mjk8GioEYAnWlN/FANeOuMjOXiRfLaX0McvNErnZxdw=="; + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.28.0.tgz"; + sha512 = "AOlblIJsoMk8F7+CznmhUIM+jGpIP/rBFERo5yT7bF7GarO2MoONxFA5MauSDnRaIDxMuik/gCn4MzvgT8ZZgw=="; }; }; "cspell-glob-0.1.25" = { @@ -26232,22 +26178,22 @@ let sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; }; }; - "cspell-glob-6.27.0" = { + "cspell-glob-6.28.0" = { name = "cspell-glob"; packageName = "cspell-glob"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.27.0.tgz"; - sha512 = "YzS9SiNU5iFIdEMCeVOsGlCvffCM7M51io9ylkkY6138NLCnqWw/DSePzIAAsuLqh9nsJt8xiXrHPerKiPnN3g=="; + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.28.0.tgz"; + sha512 = "588E4RdswSNRoXf9mPtDxc+aSP3rpRwmJCrLEPtV6FdbG0YJDQOAmV2jP2qRqVouWOHjZZ84HwN79jfWt1ROsA=="; }; }; - "cspell-grammar-6.27.0" = { + "cspell-grammar-6.28.0" = { name = "cspell-grammar"; packageName = "cspell-grammar"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.27.0.tgz"; - sha512 = "03SH0+bWazhkzUUK+t6ywUZvWuDcqj4J171oIdA3fvdG7nBpTqyFc1/vU1mReZK7CDde16BUaqCkWgf+El+N1w=="; + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.28.0.tgz"; + sha512 = "MQaaGn+aJxsUnYxi6yHeU0RvsD3ARo6/14aipbrx11uZYZjm8dDQVPFabW98aPjO7zd0qNuB6FBS/3FK6nbKkg=="; }; }; "cspell-io-4.1.7" = { @@ -26259,13 +26205,13 @@ let sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; }; }; - "cspell-io-6.27.0" = { + "cspell-io-6.28.0" = { name = "cspell-io"; packageName = "cspell-io"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.27.0.tgz"; - sha512 = "WsvXjbbWwIQVembEtlNuC8cJrGtyUuk8GvZzL9bBpSofU2UXvFjaQ9bAZjIeHibGQrIIuOM0ra0CqOcLb5mShA=="; + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.28.0.tgz"; + sha512 = "h/KtXQDX1c7q/0tZvBlYe0MyaqmtJZ1dcL9kInQXrFhLnw3IPXcS3Nwux+FRj7DXJp5uXbM80hEu54z8fDnT6g=="; }; }; "cspell-lib-4.3.12" = { @@ -26277,13 +26223,13 @@ let sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; }; }; - "cspell-lib-6.27.0" = { + "cspell-lib-6.28.0" = { name = "cspell-lib"; packageName = "cspell-lib"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.27.0.tgz"; - sha512 = "wwi3VCFiWaVFrV/ycm4yNBjjPY3pyhWud4lVJs51p2IkKqJbmR7hZ+bSIyw6d9MVzPKRD67eMaNBYXFGDaNHGQ=="; + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.28.0.tgz"; + sha512 = "J24iWuaWU3O4L+4//wS3TA/Dw1GEqzZqeKsufOlpgU+P1+VplPaoIKmKBK44nM7RBPEz+fbyUxhnksLKD1tRmQ=="; }; }; "cspell-trie-lib-4.2.8" = { @@ -26295,13 +26241,13 @@ let sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; }; }; - "cspell-trie-lib-6.27.0" = { + "cspell-trie-lib-6.28.0" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.27.0.tgz"; - sha512 = "kelDXszZKzlWbk7hV3cTtWYd2Gs3MXqTNSL3udtN4Oow74ik+h1bWsOOmXKKjtKvRctx4omWC1JdriQXfhBMBA=="; + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.28.0.tgz"; + sha512 = "pF+C60Fdclg5oxXdnyA2biP6WjckaTs/eNMPTxbmQOEAraujZVyGFL3b464dwW9dJ8Qz1FuQc7fhQADelN2LrA=="; }; }; "cspell-util-bundle-4.1.11" = { @@ -26835,13 +26781,13 @@ let sha512 = "byxnDBxM1AVF3YfmsK7Smop9/usNz7gAZYSo9eYp61TGcNXraJby1rAiLyJSt1/8Iho2qaxZOtZCOvQMXogPtg=="; }; }; - "csv-parse-5.3.5" = { + "csv-parse-5.3.6" = { name = "csv-parse"; packageName = "csv-parse"; - version = "5.3.5"; + version = "5.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.5.tgz"; - sha512 = "8O5KTIRtwmtD3+EVfW6BCgbwZqJbhTYsQZry12F1TP5RUp0sD9tp1UnCWic3n0mLOhzeocYaCZNYxOGSg3dmmQ=="; + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.6.tgz"; + sha512 = "WI330GjCuEioK/ii8HM2YE/eV+ynpeLvU+RXw4R8bRU8R0laK5zO3fDsc4gH8s472e3Ga38rbIjCAiQh+tEHkw=="; }; }; "csv-stream-0.2.0" = { @@ -27015,15 +26961,6 @@ let sha512 = "KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw=="; }; }; - "d3-array-3.1.1" = { - name = "d3-array"; - packageName = "d3-array"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.1.tgz"; - sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; - }; - }; "d3-array-3.2.2" = { name = "d3-array"; packageName = "d3-array"; @@ -27105,15 +27042,6 @@ let sha512 = "p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q=="; }; }; - "d3-color-2.0.0" = { - name = "d3-color"; - packageName = "d3-color"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-color/-/d3-color-2.0.0.tgz"; - sha512 = "SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ=="; - }; - }; "d3-color-3.1.0" = { name = "d3-color"; packageName = "d3-color"; @@ -27159,15 +27087,6 @@ let sha512 = "fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA=="; }; }; - "d3-dispatch-2.0.0" = { - name = "d3-dispatch"; - packageName = "d3-dispatch"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-2.0.0.tgz"; - sha512 = "S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA=="; - }; - }; "d3-dispatch-3.0.1" = { name = "d3-dispatch"; packageName = "d3-dispatch"; @@ -27186,15 +27105,6 @@ let sha512 = "rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w=="; }; }; - "d3-drag-2.0.0" = { - name = "d3-drag"; - packageName = "d3-drag"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-drag/-/d3-drag-2.0.0.tgz"; - sha512 = "g9y9WbMnF5uqB9qKqwIIa/921RYWzlUDv9Jl1/yONQwxbOfszAWTCm8u7HOTgJgRDXiRZN56cHT9pd24dmXs8w=="; - }; - }; "d3-drag-3.0.0" = { name = "d3-drag"; packageName = "d3-drag"; @@ -27231,15 +27141,6 @@ let sha512 = "lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ=="; }; }; - "d3-ease-2.0.0" = { - name = "d3-ease"; - packageName = "d3-ease"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-ease/-/d3-ease-2.0.0.tgz"; - sha512 = "68/n9JWarxXkOWMshcT5IcjbB+agblQUaIsbnXmrzejn2O82n3p2A9R2zEB9HIEFWKFwPAEDDN8gR0VdSAyyAQ=="; - }; - }; "d3-ease-3.0.1" = { name = "d3-ease"; packageName = "d3-ease"; @@ -27294,15 +27195,6 @@ let sha512 = "J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ=="; }; }; - "d3-format-2.0.0" = { - name = "d3-format"; - packageName = "d3-format"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-format/-/d3-format-2.0.0.tgz"; - sha512 = "Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA=="; - }; - }; "d3-format-3.1.0" = { name = "d3-format"; packageName = "d3-format"; @@ -27339,13 +27231,13 @@ let sha512 = "p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg=="; }; }; - "d3-graphviz-4.5.0" = { + "d3-graphviz-5.0.2" = { name = "d3-graphviz"; packageName = "d3-graphviz"; - version = "4.5.0"; + version = "5.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/d3-graphviz/-/d3-graphviz-4.5.0.tgz"; - sha512 = "qEhZB19Tv7oNV92Hys/aY+XkVCyHAzM+VjqbjJoHK5YXLC3tRtZoSFr64tdrURl8qRsKnphtvPeFpHeJAbOgSQ=="; + url = "https://registry.npmjs.org/d3-graphviz/-/d3-graphviz-5.0.2.tgz"; + sha512 = "EVRow9rnFgm/L1trbbnu2PGOND11IcSEdWXbrDbz9hH0/Kj3YM2AqMkkTN/EAWgawD5/zryyCy+3Vm05oSJ1Kg=="; }; }; "d3-hierarchy-1.1.9" = { @@ -27375,15 +27267,6 @@ let sha512 = "V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA=="; }; }; - "d3-interpolate-2.0.1" = { - name = "d3-interpolate"; - packageName = "d3-interpolate"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-2.0.1.tgz"; - sha512 = "c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ=="; - }; - }; "d3-interpolate-3.0.1" = { name = "d3-interpolate"; packageName = "d3-interpolate"; @@ -27402,15 +27285,6 @@ let sha512 = "VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg=="; }; }; - "d3-path-2.0.0" = { - name = "d3-path"; - packageName = "d3-path"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-path/-/d3-path-2.0.0.tgz"; - sha512 = "ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA=="; - }; - }; "d3-path-3.1.0" = { name = "d3-path"; packageName = "d3-path"; @@ -27519,15 +27393,6 @@ let sha512 = "SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg=="; }; }; - "d3-selection-2.0.0" = { - name = "d3-selection"; - packageName = "d3-selection"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-selection/-/d3-selection-2.0.0.tgz"; - sha512 = "XoGGqhLUN/W14NmaqcO/bb1nqjDAw5WtSYb2X8wiuQWvSZUsUVYsOSkOybUrNvcBjaywBdYPy03eXHMXjk9nZA=="; - }; - }; "d3-selection-3.0.0" = { name = "d3-selection"; packageName = "d3-selection"; @@ -27600,15 +27465,6 @@ let sha512 = "B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw=="; }; }; - "d3-timer-2.0.0" = { - name = "d3-timer"; - packageName = "d3-timer"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-timer/-/d3-timer-2.0.0.tgz"; - sha512 = "TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA=="; - }; - }; "d3-timer-3.0.1" = { name = "d3-timer"; packageName = "d3-timer"; @@ -27627,15 +27483,6 @@ let sha512 = "sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA=="; }; }; - "d3-transition-2.0.0" = { - name = "d3-transition"; - packageName = "d3-transition"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-transition/-/d3-transition-2.0.0.tgz"; - sha512 = "42ltAGgJesfQE3u9LuuBHNbGrI/AJjNL2OAUdclE70UE6Vy239GCBEYD38uBPoLeNsOhFStGpPI0BAOV+HMxog=="; - }; - }; "d3-transition-3.0.1" = { name = "d3-transition"; packageName = "d3-transition"; @@ -27663,15 +27510,6 @@ let sha512 = "VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ=="; }; }; - "d3-zoom-2.0.0" = { - name = "d3-zoom"; - packageName = "d3-zoom"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/d3-zoom/-/d3-zoom-2.0.0.tgz"; - sha512 = "fFg7aoaEm9/jf+qfstak0IYpnesZLiMX6GZvXtUSdv8RH2o4E2qeelgdU09eKS6wGuiGMfcnMI0nTIqWzRHGpw=="; - }; - }; "d3-zoom-3.0.0" = { name = "d3-zoom"; packageName = "d3-zoom"; @@ -29310,13 +29148,13 @@ let sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; }; }; - "diff2html-3.4.31" = { + "diff2html-3.4.33" = { name = "diff2html"; packageName = "diff2html"; - version = "3.4.31"; + version = "3.4.33"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.31.tgz"; - sha512 = "bgL4kUUChpBqyFykgalwXRXbeW+zCkGmoH4Ftw6+WFP5JccBUJPNMapfX2WDEb+KOLflrE7eJwvb5r8+zutetw=="; + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.33.tgz"; + sha512 = "A9Frkyu9oEXqa8Q27Y5XKzp2ye4Jlwdktviy/o1WzwXiJzRSzjr1eg2frqBPdYEqnFvzJHvKdaWHX7U4QKEVFA=="; }; }; "diff3-0.0.3" = { @@ -29823,13 +29661,13 @@ let sha512 = "Be9tbQMZds4a3C6xTmz68NlMfeONA//4dOavl/1rNw50E+/QO0KVpbcU0PcaW0nsQxurXls9ZocqFxk8R2mWEA=="; }; }; - "dompurify-2.4.4" = { + "dompurify-2.4.5" = { name = "dompurify"; packageName = "dompurify"; - version = "2.4.4"; + version = "2.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/dompurify/-/dompurify-2.4.4.tgz"; - sha512 = "1e2SpqHiRx4DPvmRuXU5J0di3iQACwJM+mFGE2HAkkK7Tbnfk9WcghcAmyWc9CRrjyRRUpmuhPUH6LphQQR3EQ=="; + url = "https://registry.npmjs.org/dompurify/-/dompurify-2.4.5.tgz"; + sha512 = "jggCCd+8Iqp4Tsz0nIvpcb22InKEBrGz5dw3EQJMs8HPJDsKbFIO3STYtAvCfDx26Muevn1MHVI0XxjgFfmiSA=="; }; }; "domutils-1.4.3" = { @@ -30264,13 +30102,13 @@ let sha512 = "wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w=="; }; }; - "eazy-logger-4.0.0" = { + "eazy-logger-4.0.1" = { name = "eazy-logger"; packageName = "eazy-logger"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/eazy-logger/-/eazy-logger-4.0.0.tgz"; - sha512 = "ZnYemMI98cKlJt0Fkrw/7zVJYlnzVY22pbQJXmT1ZMmxnC732o7US9KaLXlf3x/g/ImS+uLIvF2R6nbcWP1uWw=="; + url = "https://registry.npmjs.org/eazy-logger/-/eazy-logger-4.0.1.tgz"; + sha512 = "2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw=="; }; }; "ecc-jsbn-0.1.2" = { @@ -30408,13 +30246,22 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.313" = { + "electron-to-chromium-1.4.325" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.313"; + version = "1.4.325"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.313.tgz"; - sha512 = "QckB9OVqr2oybjIrbMI99uF+b9+iTja5weFe0ePbqLb5BHqXOJUO1SG6kDj/1WtWPRIBr51N153AEq8m7HuIaA=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.325.tgz"; + sha512 = "K1C03NT4I7BuzsRdCU5RWkgZxtswnKDYM6/eMhkEXqKu4e5T+ck610x3FPzu1y7HVFSiQKZqP16gnJzPpji1TQ=="; + }; + }; + "electron-to-chromium-1.4.326" = { + name = "electron-to-chromium"; + packageName = "electron-to-chromium"; + version = "1.4.326"; + src = fetchurl { + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.326.tgz"; + sha512 = "tFNZP7VlGDp88vR7TYQ/h5svw8lzfu44PU5tfDJ+JYdcsEuWv4GpEm7hOF3c4Z/o4QQ6lNxmlGtvGaBVMRM9uQ=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -31941,6 +31788,15 @@ let sha512 = "BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew=="; }; }; + "eslint-config-prettier-8.7.0" = { + name = "eslint-config-prettier"; + packageName = "eslint-config-prettier"; + version = "8.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.7.0.tgz"; + sha512 = "HHVXLSlVUhMSmyW4ZzEuvjpwqamgmlfkutD53cYXLikh4pt/modINRcCIApJ84czDxM4GZInwUrromsDdTImTA=="; + }; + }; "eslint-config-standard-17.0.0" = { name = "eslint-config-standard"; packageName = "eslint-config-standard"; @@ -32337,13 +32193,13 @@ let sha512 = "m7OsYzocA8OQ3+9CxmhIv7NPHtyDR2ixaLCO7kLZ+YH+xQ/BpaZmll9EXmc+kBxzWA8BRBXbNEuEQqQ6vfsgDw=="; }; }; - "esquery-1.4.2" = { + "esquery-1.5.0" = { name = "esquery"; packageName = "esquery"; - version = "1.4.2"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz"; - sha512 = "JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng=="; + url = "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz"; + sha512 = "YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg=="; }; }; "esrecurse-4.3.0" = { @@ -33048,13 +32904,13 @@ let sha512 = "/wSgNMxFusiYRy1rd19LT2SQlIXDppHpumpWo06wxjflD1OYxDLbl6rMVw+U3bxD5Nuhex4TKqv9Aem4D0lVzQ=="; }; }; - "expo-48.0.4" = { + "expo-48.0.6" = { name = "expo"; packageName = "expo"; - version = "48.0.4"; + version = "48.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/expo/-/expo-48.0.4.tgz"; - sha512 = "FGxaxqI8u0r3CvFQAEx/kpqZP4cA7q9ymMoIrrjtOsWvKsuk5Dt3gLEJpymGp6aicPuDXn3xBxo2dsRZF5NkUw=="; + url = "https://registry.npmjs.org/expo/-/expo-48.0.6.tgz"; + sha512 = "ylm91v/xYjBBEqFHH+mpNyGijJgFXx4NwgKgHCIEfcAQyTZLXpGCL6teOVzAmHCCVF7EdalLl3If/+n09jOi4g=="; }; }; "expo-application-5.1.1" = { @@ -33066,13 +32922,13 @@ let sha512 = "aDatTcTTCdTbHw8h4/Tq2ilc6InM5ntF9xWCJdOcnUEcglxxGphVI/lzJKBaBF6mJECA8mEOjpVg2EGxOctTwg=="; }; }; - "expo-asset-8.9.0" = { + "expo-asset-8.9.1" = { name = "expo-asset"; packageName = "expo-asset"; - version = "8.9.0"; + version = "8.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/expo-asset/-/expo-asset-8.9.0.tgz"; - sha512 = "zenkZrYcsJAcTVl478mCarVmaOE9r2GbTlVvKZaXL8UJIL4rnspk63xUSJLAGMArZIdHzsGFQMXlQG3pgEfzrg=="; + url = "https://registry.npmjs.org/expo-asset/-/expo-asset-8.9.1.tgz"; + sha512 = "ugavxA7Scn96TBdeTYQA6xtHktnk0o/0xk7nFkxJKoH/t2cZDFSB05X0BI2/LDZY4iE6xTPOYw4C4mmourWfuA=="; }; }; "expo-constants-14.2.1" = { @@ -33129,13 +32985,13 @@ let sha512 = "oOlkAccVnHwwR5ccvF/F/x4Omj9HWzSimMUlIVz0SVGdNBEqTPyn0L/d4uIufhyQbEWvrarqL8o5Yz11wEI0SQ=="; }; }; - "expo-modules-core-1.2.3" = { + "expo-modules-core-1.2.4" = { name = "expo-modules-core"; packageName = "expo-modules-core"; - version = "1.2.3"; + version = "1.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.2.3.tgz"; - sha512 = "bYWxL60NPzDTuvlBrNLlwu7K6H7GqlRKJJpF1c3lqHsMw9vusu3StHZhAXB2noMPD+Ww/pGa/A9tfTtieqvbcg=="; + url = "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.2.4.tgz"; + sha512 = "AV0NCTy9O8xQqpKgX6gvsDzV1ogpCzYpGxqM85Vw1xHsOF51s7Avu7NdNjBPUZOVuDderUXAvd97dWrtefSKcA=="; }; }; "expo-pwa-0.0.124" = { @@ -33993,13 +33849,13 @@ let sha512 = "483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ=="; }; }; - "fastpriorityqueue-0.7.2" = { + "fastpriorityqueue-0.7.3" = { name = "fastpriorityqueue"; packageName = "fastpriorityqueue"; - version = "0.7.2"; + version = "0.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/fastpriorityqueue/-/fastpriorityqueue-0.7.2.tgz"; - sha512 = "5DtIKh6vtOmEGkYdEPNNb+mxeYCnBiKbK3s4gq52l6cX8I5QaTDWWw0Wx/iYo80fVOblSycHu1/iJeqeNxG8Jw=="; + url = "https://registry.npmjs.org/fastpriorityqueue/-/fastpriorityqueue-0.7.3.tgz"; + sha512 = "1+DZ5cjw6irYFvkmn4RqfmSZ0o7xgAqDtdO4wXYw2fxBrYIgUxEljrN/RYxIXwj6k08dIzNq+lkeYxwcxwZfuw=="; }; }; "fastq-1.15.0" = { @@ -34992,13 +34848,13 @@ let sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA=="; }; }; - "flow-parser-0.200.1" = { + "flow-parser-0.201.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.200.1"; + version = "0.201.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.200.1.tgz"; - sha512 = "N6gxgo0iQx0G2m3aJjg3RLxNLUG3EBYgBN/xDDPGQXSjvqNkTdEd2t1myE36Xi7GndZQWngDP7jf0GvxdL6pRg=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.201.0.tgz"; + sha512 = "G4oeDNpNGyIrweF9EnoHatncAihMT0tQgV6NMdyM5I7fhrz9Pr13PJ2KLQ673O4wj9KooTdBpeeYHdDNAQoyyw=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -36090,13 +35946,13 @@ let sha512 = "gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA=="; }; }; - "gaxios-5.0.2" = { + "gaxios-5.1.0" = { name = "gaxios"; packageName = "gaxios"; - version = "5.0.2"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/gaxios/-/gaxios-5.0.2.tgz"; - sha512 = "TjtV2AJOZoMQqRYoy5eM8cCQogYwazWNYLQ72QB0kwa6vHHruYkGmhhyrlzbmgNHK1dNnuP2WSH81urfzyN2Og=="; + url = "https://registry.npmjs.org/gaxios/-/gaxios-5.1.0.tgz"; + sha512 = "aezGIjb+/VfsJtIcHGcBSerNEDdfdHeMros+RbYbGpmonKWQCOVOes0LVZhn1lDtIgq55qq0HaxymIoae3Fl/A=="; }; }; "gaze-1.1.3" = { @@ -36216,13 +36072,13 @@ let sha512 = "ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g=="; }; }; - "gensequence-4.0.3" = { + "gensequence-5.0.2" = { name = "gensequence"; packageName = "gensequence"; - version = "4.0.3"; + version = "5.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/gensequence/-/gensequence-4.0.3.tgz"; - sha512 = "izr+MKqJKjexkvLiPGhW96elQX8TuUR/su/xzILxjqzU1RDz1n1ZbqwDUnNFaRcq0gFR3oQfNH2JOH4Je1x/QA=="; + url = "https://registry.npmjs.org/gensequence/-/gensequence-5.0.2.tgz"; + sha512 = "JlKEZnFc6neaeSVlkzBGGgkIoIaSxMgvdamRoPN8r3ozm2r9dusqxeKqYQ7lhzmj2UhFQP8nkyfCaiLQxiLrDA=="; }; }; "gensync-1.0.0-beta.2" = { @@ -36918,13 +36774,13 @@ let sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="; }; }; - "glob-9.0.1" = { + "glob-9.2.1" = { name = "glob"; packageName = "glob"; - version = "9.0.1"; + version = "9.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-9.0.1.tgz"; - sha512 = "psRdn8MI0gRcH0xow0VOhYxXD/6ZaRGmgtfN0oWN/hCgjxpRQBMCl7wE4JRJSAUTdJsW+FmD0EtE0CgJhKqSVw=="; + url = "https://registry.npmjs.org/glob/-/glob-9.2.1.tgz"; + sha512 = "Pxxgq3W0HyA3XUvSXcFhRSs+43Jsx0ddxcFrbjxNGkL2Ak5BAUBxLqI5G6ADDeCHLfzzXFhe0b1yYcctGmytMA=="; }; }; "glob-base-0.3.0" = { @@ -37567,13 +37423,13 @@ let sha512 = "6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g=="; }; }; - "got-12.5.3" = { + "got-12.6.0" = { name = "got"; packageName = "got"; - version = "12.5.3"; + version = "12.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-12.5.3.tgz"; - sha512 = "8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w=="; + url = "https://registry.npmjs.org/got/-/got-12.6.0.tgz"; + sha512 = "WTcaQ963xV97MN3x0/CbAriXFZcXCfgxVp91I+Ze6pawQOa7SgzwSx2zIJJsX+kTajMnVs0xcFD1TxZKFqhdnQ=="; }; }; "got-3.3.1" = { @@ -37828,22 +37684,22 @@ let sha512 = "Uiu3X7+s5c056WyrvdZVz2vG1fhAipMlYmtiCU/4Z2mX79OXDr1SqIon2MprC/pExIWJfAQZCcjYDY76fPBUQg=="; }; }; - "graphql-config-4.4.1" = { + "graphql-config-4.5.0" = { name = "graphql-config"; packageName = "graphql-config"; - version = "4.4.1"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-config/-/graphql-config-4.4.1.tgz"; - sha512 = "B8wlvfBHZ5WnI4IiuQZRqql6s+CKz7S+xpUeTb28Z8nRBi8tH9ChEBgT5FnTyE05PUhHlrS2jK9ICJ4YBl9OtQ=="; + url = "https://registry.npmjs.org/graphql-config/-/graphql-config-4.5.0.tgz"; + sha512 = "x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw=="; }; }; - "graphql-language-service-5.1.1" = { + "graphql-language-service-5.1.2" = { name = "graphql-language-service"; packageName = "graphql-language-service"; - version = "5.1.1"; + version = "5.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.1.1.tgz"; - sha512 = "gpaDT9E3+3eWhoqO4C81CGhkzr7Vp2jH/eq+ykoUbgfvMEpqhGTfCeNmrf+S4K/+4WTkAAJBsYT0/ZPZkqe/Hg=="; + url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.1.2.tgz"; + sha512 = "oeuztbvd7fwKWZ/GCp0voqgctdIL4BDjTkd/phz1jEyH+pfj6inJWKKIkUJPW5ebWHx+mFsZ00wdE6tiCvW2fA=="; }; }; "graphql-language-service-interface-2.10.2" = { @@ -37864,13 +37720,13 @@ let sha512 = "duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA=="; }; }; - "graphql-language-service-server-2.9.5" = { + "graphql-language-service-server-2.9.6" = { name = "graphql-language-service-server"; packageName = "graphql-language-service-server"; - version = "2.9.5"; + version = "2.9.6"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.9.5.tgz"; - sha512 = "u4X6mgoB5ufp64h9vT5UsFgQZ8GsbIIGLHfr/vndujlVpY+iHml9ea1o8on2c9i1LpB/ILa2zF90pJkBQgASfg=="; + url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.9.6.tgz"; + sha512 = "a+kwNEPX+ZvEUNxE8u8K/haxsfVfk1rn8AjzHWsXUhLfhl06vhCiU0kgdls1d/DiMJ3HbcNFjeKqV9OZcLNhdg=="; }; }; "graphql-language-service-types-1.8.7" = { @@ -37945,13 +37801,13 @@ let sha512 = "sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag=="; }; }; - "graphql-ws-5.11.3" = { + "graphql-ws-5.12.0" = { name = "graphql-ws"; packageName = "graphql-ws"; - version = "5.11.3"; + version = "5.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.11.3.tgz"; - sha512 = "fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ=="; + url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.12.0.tgz"; + sha512 = "PA3ImUp8utrpEjoxBMhvxsjkStvFEdU0E1gEBREt8HZIWkxOUymwJBhFnBL7t/iHhUq1GVPeZevPinkZFENxTw=="; }; }; "gray-matter-4.0.3" = { @@ -40096,13 +39952,13 @@ let sha512 = "acJLCk38YMfEPjBR/1vS13SFY7rBQLs9E5m1tSRnWc9UW3f+SZszgH+NP1fZRA1+O+CdG2eLGGmuUMJW52EwzQ=="; }; }; - "ibm-openapi-validator-0.88.3" = { + "ibm-openapi-validator-0.97.5" = { name = "ibm-openapi-validator"; packageName = "ibm-openapi-validator"; - version = "0.88.3"; + version = "0.97.5"; src = fetchurl { - url = "https://registry.npmjs.org/ibm-openapi-validator/-/ibm-openapi-validator-0.88.3.tgz"; - sha512 = "WHkkO5TXWSS12P8VybB04Stq+yFloMlHy2aVzcLAZo425PYIVMuIWhsH7zN9vwcZcOB/qAnWQ4T3PKn6wrcT+Q=="; + url = "https://registry.npmjs.org/ibm-openapi-validator/-/ibm-openapi-validator-0.97.5.tgz"; + sha512 = "MlXLjQCZRU0yqQ6EFzBhCehkFXp/rXuGsjsEglK+ldDJZV/YQy7dw1V6ROzoiibjm0f00J7L3ubLvlbIlHilGQ=="; }; }; "iconv-lite-0.4.19" = { @@ -40807,13 +40663,13 @@ let sha512 = "firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg=="; }; }; - "ink-select-input-4.2.1" = { + "ink-select-input-4.2.2" = { name = "ink-select-input"; packageName = "ink-select-input"; - version = "4.2.1"; + version = "4.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/ink-select-input/-/ink-select-input-4.2.1.tgz"; - sha512 = "WvlrYdwmdnD6/nE/9mNhaaanTQOKmwy/hT/vuAqbDec3PUQBQ8Pkwszii/8eGvDTx5bGiUHu18P9D5IoB/ERaw=="; + url = "https://registry.npmjs.org/ink-select-input/-/ink-select-input-4.2.2.tgz"; + sha512 = "E5AS2Vnd4CSzEa7Rm+hG47wxRQo1ASfh4msKxO7FHmn/ym+GKSSsFIfR+FonqjKNDPXYJClw8lM47RdN3Pi+nw=="; }; }; "ink-spinner-4.0.3" = { @@ -41545,13 +41401,13 @@ let sha512 = "kniTIJmaZYiwa17eTtWIfm0K342seyugl6vuC8DiiyiRAJWAVlLkqGCI0Im0neo0TkXw+pRcKaBPRdcKHnQJ6Q=="; }; }; - "irregular-plurals-3.4.0" = { + "irregular-plurals-3.4.1" = { name = "irregular-plurals"; packageName = "irregular-plurals"; - version = "3.4.0"; + version = "3.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.4.0.tgz"; - sha512 = "YXxECO/W6N9aMBVKMKKZ8TXESgq7EFrp3emCGGUcrYY1cgJIeZjoB75MTu8qi+NAKntS9NwPU8VdcQ3r6E6aWQ=="; + url = "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.4.1.tgz"; + sha512 = "JR7VL+1Kd9z79bE+2uSgifpzrTwLWmTvyeUewhxZCHVtpPImAsLk4adfRxg86uvdsJ8etYYrpzN7vRT30gGnOA=="; }; }; "is-3.3.0" = { @@ -41680,13 +41536,13 @@ let sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; }; }; - "is-array-buffer-3.0.1" = { + "is-array-buffer-3.0.2" = { name = "is-array-buffer"; packageName = "is-array-buffer"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz"; - sha512 = "ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ=="; + url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz"; + sha512 = "y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w=="; }; }; "is-arrayish-0.2.1" = { @@ -43651,6 +43507,15 @@ let sha512 = "j6PZcTup+evIz+cVy8wDB6+GlV20/YvgDKCQtV7FBTBgYhl8FtpurUclcHz+C4OerMRosaKRX1doxTWgWoCmBQ=="; }; }; + "jiti-1.17.1" = { + name = "jiti"; + packageName = "jiti"; + version = "1.17.1"; + src = fetchurl { + url = "https://registry.npmjs.org/jiti/-/jiti-1.17.1.tgz"; + sha512 = "NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw=="; + }; + }; "jju-1.4.0" = { name = "jju"; packageName = "jju"; @@ -43805,13 +43670,13 @@ let sha256 = "c1b7d85fad2ff0b6a2d1ed1140142c0450e3240a371703ad66d60cb3b5f612b6"; }; }; - "jquery-3.6.3" = { + "jquery-3.6.4" = { name = "jquery"; packageName = "jquery"; - version = "3.6.3"; + version = "3.6.4"; src = fetchurl { - url = "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz"; - sha512 = "bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg=="; + url = "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz"; + sha512 = "v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ=="; }; }; "jquery-ui-1.13.2" = { @@ -44201,49 +44066,49 @@ let sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; }; }; - "jsii-1.76.0" = { + "jsii-1.77.0" = { name = "jsii"; packageName = "jsii"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-1.76.0.tgz"; - sha512 = "IlQmxPPnscn2Va/cnnXRnQ7bnxEkO8ImKW0MBlEr66oqxhFQ9jy9+FWzOp/5kfHzhyyyM5mcqitB8O6fr1moIw=="; + url = "https://registry.npmjs.org/jsii/-/jsii-1.77.0.tgz"; + sha512 = "3VODnWUhljro1+PmWlTWAEUPxWGWwCOmzOS6EG7l5E1KthurCgQDzhpTySlw80U85mGU9XvDJMcpvwuj3ESrKA=="; }; }; - "jsii-pacmak-1.76.0" = { + "jsii-pacmak-1.77.0" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.76.0.tgz"; - sha512 = "70h0puIRpDeDyYk/jLxQk7vPbg3w3ppJRATlF0qPntMk/WnSo4uvr8hlz1BmRzOOvQ7JqXBuNOaVd+bp7Xolbw=="; + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.77.0.tgz"; + sha512 = "mYrITqM/fTiS1rzGFYeIK90/Ab7S39/4wFlBlhVYqqxbeAwiOFS1+zfx2m5RBYGvJMw5rd6S4zoWg6CnK2kpPg=="; }; }; - "jsii-reflect-1.76.0" = { + "jsii-reflect-1.77.0" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.76.0.tgz"; - sha512 = "voS5WyeitP3o0knus00v00NlxVLbaU9ykvEDamFw5KPEc4z4wvAwDG9wBfNmdO1OulXgID41WhMzJOEJFKle6A=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.77.0.tgz"; + sha512 = "wSEkBxdEjuZHp2qLPpUPFamhppvDBW+vUJi8/VnQlAYJMCOIvQPdj8GVfiMllc+6tir9xIHl8q30PZaanbQpXA=="; }; }; - "jsii-rosetta-1.76.0" = { + "jsii-rosetta-1.77.0" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.76.0.tgz"; - sha512 = "y3OcYebjMdK/4Yxt8P9tMalK9Szmq8Xc4VXD3kGDIEulMjUxo3TpEUZc9WEfzVu6A+lSl/WRAwV50ZgzQyVWZg=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.77.0.tgz"; + sha512 = "gOpK7YxGb64Fwy6zvEpRV3umC3u77HAmltP3kSF/eGPmM04ggTQ17UEfN+XsEO4NXJh1LDniMDyMjOIa3QViBw=="; }; }; - "jsii-srcmak-0.1.838" = { + "jsii-srcmak-0.1.847" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.838"; + version = "0.1.847"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.838.tgz"; - sha512 = "5GJi0TGtO4NyTS5lT7rYnlpr4WD14rkUry5+3aMg/MYtECoX0IyTTHy/RBEFCQBZ47i7tZkQC9m5EIpGSSKpjA=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.847.tgz"; + sha512 = "icCv6UlSCYsijfZK6Mxik6A0YehtZKRJ8lRotJw24Ynw+lBh9aPhFYhfx9Q6m8Y8YqijLc2yxemMMiLpgdcTbg=="; }; }; "json-bigint-1.0.0" = { @@ -44615,13 +44480,13 @@ let sha512 = "ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="; }; }; - "json2jsii-0.3.290" = { + "json2jsii-0.3.299" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.3.290"; + version = "0.3.299"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.290.tgz"; - sha512 = "aG3lEpWDluFecGHE+GbxzjSQBkQslgLjiw8S6ZZc5RRrI0ShDNj0bv8AXlPES4EwmBcv2w1jkjBxtWMLR4KxMw=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.299.tgz"; + sha512 = "Yu2EgEUmYS9o+YhD8KqriTdfuh8S3KcghqELPC0YpQ09fTa5Jal3zkzNLefsY/UeqsJvUXBIBTr30l3lmpJKUg=="; }; }; "json3-3.2.6" = { @@ -46289,13 +46154,13 @@ let sha512 = "oGnfMICKd0cmGxHdXG6VW5Ha/TLVgHJxCCYxHHyOO0PKAAweK8yUV8d0CUfgHaV/rUybTxbQ+oRhMQ6M7yPtyg=="; }; }; - "lightning-7.1.0" = { + "lightning-7.1.2" = { name = "lightning"; packageName = "lightning"; - version = "7.1.0"; + version = "7.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-7.1.0.tgz"; - sha512 = "+46PVhATqGB+t01RipPHj/uOavsnDdKbSBMSNAyAmn2Yo1+lJSp8nYJpr2mfMikMmNDiP3NbBJTSqNjNBknHBQ=="; + url = "https://registry.npmjs.org/lightning/-/lightning-7.1.2.tgz"; + sha512 = "rT/94wdCV2rO4o1KLmQGwK6JoN3/IqyO0fduMK9TN7UNd1yq23b0lUNPR8Xm/zvD6CTnxStmQxjZLqJXAdnPZw=="; }; }; "lightningcss-1.19.0" = { @@ -46379,13 +46244,13 @@ let sha512 = "C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg=="; }; }; - "lilconfig-2.0.6" = { + "lilconfig-2.1.0" = { name = "lilconfig"; packageName = "lilconfig"; - version = "2.0.6"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz"; - sha512 = "9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg=="; + url = "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz"; + sha512 = "utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="; }; }; "limit-spawn-0.0.3" = { @@ -46604,13 +46469,13 @@ let sha512 = "8eQvvZb/MiYcRUlg/iIaamWSSTLBpLidLiviqmZ3enpnliW1JIA6pgXsbfyKSWPK3bdzqPuRGnQKQevXsTAybQ=="; }; }; - "ln-service-54.10.0" = { + "ln-service-54.10.2" = { name = "ln-service"; packageName = "ln-service"; - version = "54.10.0"; + version = "54.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.10.0.tgz"; - sha512 = "lNEUUDMPkh78mY4Gl1HWK0qMvZOmP7sN2kWBYwOYKlhdvxzN9Mn2BkPUYx19wY9QpechbqIezVn3tS4zwnq9/A=="; + url = "https://registry.npmjs.org/ln-service/-/ln-service-54.10.2.tgz"; + sha512 = "EA5PZjiQhcSHwfKOTwPvEnbEeVy9AaCOiF3AplYCmYX8IskkUM36x8o4YaHmC2L2w7Le1B+KNExi7MzGZtznSg=="; }; }; "ln-service-54.9.0" = { @@ -48296,13 +48161,13 @@ let sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; }; }; - "log4js-6.8.0" = { + "log4js-6.9.1" = { name = "log4js"; packageName = "log4js"; - version = "6.8.0"; + version = "6.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/log4js/-/log4js-6.8.0.tgz"; - sha512 = "g+V8gZyurIexrOvWQ+AcZsIvuK/lBnx2argejZxL4gVZ4Hq02kUYH6WZOnqxgBml+zzQZYdaEoTN84B6Hzm8Fg=="; + url = "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz"; + sha512 = "1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g=="; }; }; "logform-2.5.1" = { @@ -48683,13 +48548,13 @@ let sha512 = "ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA=="; }; }; - "lru-cache-7.17.0" = { + "lru-cache-7.18.3" = { name = "lru-cache"; packageName = "lru-cache"; - version = "7.17.0"; + version = "7.18.3"; src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.17.0.tgz"; - sha512 = "zSxlVVwOabhVyTi6E8gYv2cr6bXK+8ifYz5/uyJb9feXX6NACVDwY4p5Ut3WC3Ivo/QhpARHU3iujx2xGAYHbQ=="; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz"; + sha512 = "jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="; }; }; "lru-queue-0.1.0" = { @@ -51258,13 +51123,13 @@ let sha512 = "lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A=="; }; }; - "mini-css-extract-plugin-2.7.2" = { + "mini-css-extract-plugin-2.7.3" = { name = "mini-css-extract-plugin"; packageName = "mini-css-extract-plugin"; - version = "2.7.2"; + version = "2.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz"; - sha512 = "EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw=="; + url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.3.tgz"; + sha512 = "CD9cXeKeXLcnMw8FZdtfrRrLaM7gwCl4nKuKn2YkY2Bw5wdlB8zU2cCzw+w2zS9RFvbrufTBkMCJACNPwqQA0w=="; }; }; "mini-svg-data-uri-1.4.4" = { @@ -51375,6 +51240,15 @@ let sha512 = "9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g=="; }; }; + "minimatch-4.2.3" = { + name = "minimatch"; + packageName = "minimatch"; + version = "4.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz"; + sha512 = "lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng=="; + }; + }; "minimatch-5.0.1" = { name = "minimatch"; packageName = "minimatch"; @@ -51411,13 +51285,13 @@ let sha512 = "sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg=="; }; }; - "minimatch-7.3.0" = { + "minimatch-7.4.2" = { name = "minimatch"; packageName = "minimatch"; - version = "7.3.0"; + version = "7.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-7.3.0.tgz"; - sha512 = "WaMDuhKa7a6zKiwplR1AOz+zGvJba24k5VU1Cy6NhEguavT2YRlHxuINUgTas4wiS6fwBpYq4TcA1XIECSntyw=="; + url = "https://registry.npmjs.org/minimatch/-/minimatch-7.4.2.tgz"; + sha512 = "xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA=="; }; }; "minimist-0.0.10" = { @@ -51771,13 +51645,13 @@ let sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; }; }; - "mkdirp-2.1.3" = { + "mkdirp-2.1.5" = { name = "mkdirp"; packageName = "mkdirp"; - version = "2.1.3"; + version = "2.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-2.1.3.tgz"; - sha512 = "sjAkg21peAG9HS+Dkx7hlG9Ztx7HLeKnvB3NQRcu/mltCVmvkF0pisbiTSfDVYTT86XEfZrTUosLdZLStquZUw=="; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-2.1.5.tgz"; + sha512 = "jbjfql+shJtAPrFoKxHOXip4xS+kul9W3OzfzzrqueWK2QMGon2bFH2opl6W9EagBThjEz+iysyi/swOoVfB/w=="; }; }; "mkdirp-classic-0.5.3" = { @@ -51834,13 +51708,13 @@ let sha512 = "+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA=="; }; }; - "mobx-react-lite-3.4.0" = { + "mobx-react-lite-3.4.3" = { name = "mobx-react-lite"; packageName = "mobx-react-lite"; - version = "3.4.0"; + version = "3.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.4.0.tgz"; - sha512 = "bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ=="; + url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.4.3.tgz"; + sha512 = "NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg=="; }; }; "mocha-2.5.3" = { @@ -52221,22 +52095,22 @@ let sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg=="; }; }; - "msgpackr-1.8.4" = { + "msgpackr-1.8.5" = { name = "msgpackr"; packageName = "msgpackr"; - version = "1.8.4"; + version = "1.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.8.4.tgz"; - sha512 = "BE3hD3PqV7jsNaV022uq0jMW+ZVc32wSYyQmwAoJUc+vPtCeyro2MOtAW61Fd9ZKNySM6y913E9fBY0mG+hKXg=="; + url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.8.5.tgz"; + sha512 = "mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg=="; }; }; - "msgpackr-extract-3.0.1" = { + "msgpackr-extract-3.0.2" = { name = "msgpackr-extract"; packageName = "msgpackr-extract"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.1.tgz"; - sha512 = "8jiKrp+ApgrD/TqdnYjqNC2wwId1qPdC/zsop/rT1A5nAGJeQ6Y5HV8AasQ3vuh1ZMblYwMm+nMyFp7Sv0PUeA=="; + url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.2.tgz"; + sha512 = "SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A=="; }; }; "mssql-9.1.1" = { @@ -52608,13 +52482,13 @@ let sha512 = "Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig=="; }; }; - "mysql2-3.1.2" = { + "mysql2-3.2.0" = { name = "mysql2"; packageName = "mysql2"; - version = "3.1.2"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/mysql2/-/mysql2-3.1.2.tgz"; - sha512 = "NXz6sUvHSEOKz1jv3koSga7eb2dHrwD/mnPmqbbZzMRvjQcSpb0Eh0ectWyYt1U60CLlEbjoA3XYjjbbReRF5Q=="; + url = "https://registry.npmjs.org/mysql2/-/mysql2-3.2.0.tgz"; + sha512 = "0Vn6a9WSrq6fWwvPgrvIwnOCldiEcgbzapVRDAtDZ4cMTxN7pnGqCTx8EG32S/NYXl6AXkdO+9hV1tSIi/LigA=="; }; }; "mz-2.7.0" = { @@ -55048,13 +54922,13 @@ let sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw=="; }; }; - "nx-15.7.2" = { + "nx-15.8.5" = { name = "nx"; packageName = "nx"; - version = "15.7.2"; + version = "15.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/nx/-/nx-15.7.2.tgz"; - sha512 = "VRb+CZCji3G4ikdMAGoh6TeU9Q6n5atRwqRSFhUX63er8zhlMvWHLskPMZC4q/81edo/E7RhbmEVUD5MB0JoeA=="; + url = "https://registry.npmjs.org/nx/-/nx-15.8.5.tgz"; + sha512 = "1c6Y3rPSzzlqQVJPo33Ej0HY/3t9ykeaPs074HpYxXH0+GU1BSIv/9EfXKQGvmBzjs5yAx6asGIv+H3QDrFt3A=="; }; }; "nyc-15.1.0" = { @@ -55724,13 +55598,13 @@ let sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; }; }; - "oo-ascii-tree-1.76.0" = { + "oo-ascii-tree-1.77.0" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.76.0"; + version = "1.77.0"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.76.0.tgz"; - sha512 = "I/me4GK6Dybc9lsPYZJdnd1OOFbbnZtfEIIizrbTuFx/v1if375Y59w9ol/TJ75MlSAKs4aHj7Xm+A4E0JitSw=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.77.0.tgz"; + sha512 = "UQXPEVtecK9FDQxlp5WQ9nVBgS0sq96R9LWE1HBmlS3ZLJRqXh3+kdU7Bxs+qqF+cdWmE9uOggwihBffTpqLrA=="; }; }; "open-0.0.2" = { @@ -56453,6 +56327,15 @@ let sha512 = "KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A=="; }; }; + "ovsx-0.5.2" = { + name = "ovsx"; + packageName = "ovsx"; + version = "0.5.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ovsx/-/ovsx-0.5.2.tgz"; + sha512 = "UbLultRCk46WddeA0Cly4hoRhzBJUiLgbIEViXlgOvV54LbsppClDkMLoCevUUBHoiNdMX2NuiSgURAEXgCZdw=="; + }; + }; "ow-0.21.0" = { name = "ow"; packageName = "ow"; @@ -57182,13 +57065,13 @@ let sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="; }; }; - "papaparse-5.3.2" = { + "papaparse-5.4.0" = { name = "papaparse"; packageName = "papaparse"; - version = "5.3.2"; + version = "5.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/papaparse/-/papaparse-5.3.2.tgz"; - sha512 = "6dNZu0Ki+gyV0eBsFKJhYr+MdQYAzFUGlBMNj3GNrmHxmz1lfRa24CjFObPXtjcetlOv5Ad299MhIK0znp3afw=="; + url = "https://registry.npmjs.org/papaparse/-/papaparse-5.4.0.tgz"; + sha512 = "ZBQABWG09p+u8rFoJVl/GhgxZ5zy9Zh1Lu/LVc7VX5T4nljjC14/YTcpebYwqP218B9X307eBOP7Tuhoqv7v7w=="; }; }; "parallel-transform-1.2.0" = { @@ -57803,13 +57686,13 @@ let sha512 = "9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow=="; }; }; - "passport-oauth2-1.6.1" = { + "passport-oauth2-1.7.0" = { name = "passport-oauth2"; packageName = "passport-oauth2"; - version = "1.6.1"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.6.1.tgz"; - sha512 = "ZbV43Hq9d/SBSYQ22GOiglFsjsD1YY/qdiptA+8ej+9C1dL1TVB+mBE5kDH/D4AJo50+2i8f4bx0vg4/yDDZCQ=="; + url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.7.0.tgz"; + sha512 = "j2gf34szdTF2Onw3+76alNnaAExlUmHvkc7cL+cmaS5NzHzDP/BvFHJruueQ9XAeNOdpI+CH+PWid8RA7KCwAQ=="; }; }; "passport-oauth2-client-password-0.1.2" = { @@ -58055,13 +57938,13 @@ let sha512 = "4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ=="; }; }; - "path-scurry-1.5.0" = { + "path-scurry-1.6.1" = { name = "path-scurry"; packageName = "path-scurry"; - version = "1.5.0"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.5.0.tgz"; - sha512 = "hJ8rODLI9B2qwsYAd32rrI76gwVUPeu5kq/do6URDj2bJCVH3ilyT978Mv/NLuFMaqzHrn3XtiDLMZHaTTh4vA=="; + url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.6.1.tgz"; + sha512 = "OW+5s+7cw6253Q4E+8qQ/u1fVvcJQCJo/VFD8pje+dbJCF1n5ZRMV2AEHbGp+5Q7jxQIYJxkHopnj6nzdGeZLA=="; }; }; "path-to-glob-pattern-1.0.2" = { @@ -58325,13 +58208,13 @@ let sha512 = "vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw=="; }; }; - "pg-8.9.0" = { + "pg-8.10.0" = { name = "pg"; packageName = "pg"; - version = "8.9.0"; + version = "8.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg/-/pg-8.9.0.tgz"; - sha512 = "ZJM+qkEbtOHRuXjmvBtOgNOXOtLSbxiMiUVMgE4rV6Zwocy03RicCVvDXgx8l4Biwo8/qORUnEqn2fdQzV7KCg=="; + url = "https://registry.npmjs.org/pg/-/pg-8.10.0.tgz"; + sha512 = "ke7o7qSTMb47iwzOSaZMfeR7xToFdkE71ifIipOAAaLIM0DYzfOAXlgFFmYUIE2BcJtvnVlGCID84ZzCegE8CQ=="; }; }; "pg-connection-string-2.5.0" = { @@ -58343,13 +58226,13 @@ let sha512 = "r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ=="; }; }; - "pg-cursor-2.8.0" = { + "pg-cursor-2.9.0" = { name = "pg-cursor"; packageName = "pg-cursor"; - version = "2.8.0"; + version = "2.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.8.0.tgz"; - sha512 = "LrOaEHK+R1C40e+xeri3FTRY/VKp9uTOCVsKtGB7LJ57qbeaphYvWjbVly8AesdT1GfHXYcAnVdExKhW7DKOvA=="; + url = "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.9.0.tgz"; + sha512 = "tNX0FbHX6+hlhZVNbxhSQPDMNMFF6mOWQvwDobPROAFpilmXrZo3FozawqaBQKonFKpBloZZyWUL3Kkf5rLn6A=="; }; }; "pg-int8-1.0.1" = { @@ -58370,13 +58253,13 @@ let sha512 = "LBVNWkNh0fVx/cienARRP2y22J5OpUsKBe0TpxzAx3arEUUdIs77aLSAHS3scS7SMaqc+OkG40CEu5fN0/cjIw=="; }; }; - "pg-pool-3.5.2" = { + "pg-pool-3.6.0" = { name = "pg-pool"; packageName = "pg-pool"; - version = "3.5.2"; + version = "3.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.2.tgz"; - sha512 = "His3Fh17Z4eg7oANLob6ZvH8xIVen3phEZh2QuyrIl4dQSDVEabNducv6ysROKpDNPSD+12tONZVWfSgMvDD9w=="; + url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.0.tgz"; + sha512 = "clFRf2ksqd+F497kWFyM21tMjeikn60oGDmqMT8UBrynEwVEX/5R5xd2sdvdo1cZCFlguORNpVuqxIj+aK4cfQ=="; }; }; "pg-protocol-1.6.0" = { @@ -58388,13 +58271,13 @@ let sha512 = "M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q=="; }; }; - "pg-query-stream-4.3.0" = { + "pg-query-stream-4.4.0" = { name = "pg-query-stream"; packageName = "pg-query-stream"; - version = "4.3.0"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.3.0.tgz"; - sha512 = "+Eer4Y1e43rAaphFNu9/VJKn9nKTApFKCSwVtDjXYnuO4QYqWHOEkApmGJv8gvaU5T6fcuEtjsN24gk+Rx7X9A=="; + url = "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.4.0.tgz"; + sha512 = "shmP973/ruBw3exSmIEBW9iubWvyyZMzp6oWfcHgvlqAe4LtaRyVqPGxgnuorbRqksK03mjOC9PU+Ohz3b0GkQ=="; }; }; "pg-types-1.13.0" = { @@ -58667,13 +58550,13 @@ let sha512 = "IWo0HwnxUEH9OtQ3qEZsKUbpdStRSomS18Gx4UV5JT1fj/E/opYGZMgpcdzC1+3ouBJECV1evzt0778S2RJ+/Q=="; }; }; - "pkg-5.8.0" = { + "pkg-5.8.1" = { name = "pkg"; packageName = "pkg"; - version = "5.8.0"; + version = "5.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/pkg/-/pkg-5.8.0.tgz"; - sha512 = "8h9PUDYFi+LOMLbIyGRdP21g08mAtHidSpofSrf8LWhxUWGHymaRzcopEGiynB5EhQmZUKM6PQ9kCImV2TpdjQ=="; + url = "https://registry.npmjs.org/pkg/-/pkg-5.8.1.tgz"; + sha512 = "CjBWtFStCfIiT4Bde9QpJy0KeH19jCfwZRJqHFDFXfhUklCx8JoFmMj3wgnEYIwGmZVNkhsStPHEOnrtrQhEXA=="; }; }; "pkg-conf-1.1.3" = { @@ -60377,15 +60260,6 @@ let sha512 = "aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg=="; }; }; - "prebuild-install-6.1.4" = { - name = "prebuild-install"; - packageName = "prebuild-install"; - version = "6.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.4.tgz"; - sha512 = "Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ=="; - }; - }; "prebuild-install-7.1.1" = { name = "prebuild-install"; packageName = "prebuild-install"; @@ -62303,22 +62177,22 @@ let sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA=="; }; }; - "puppeteer-19.7.2" = { + "puppeteer-19.7.3" = { name = "puppeteer"; packageName = "puppeteer"; - version = "19.7.2"; + version = "19.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.7.2.tgz"; - sha512 = "4Lm7Qpe/LU95Svirei/jDLDvR5oMrl9BPGd7HMY5+Q28n+BhvKuW97gKkR+1LlI86bO8J3g8rG/Ll5kv9J1nlQ=="; + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.7.3.tgz"; + sha512 = "QEiRHPUAJp8VOK27zE6h2ne4xKVYibKUZpvjCuLYaAe8/2SOLKIgstF8wK3YaLgTkeruMrYfqZo+Qlw4ZkJDAQ=="; }; }; - "puppeteer-core-19.7.2" = { + "puppeteer-core-19.7.3" = { name = "puppeteer-core"; packageName = "puppeteer-core"; - version = "19.7.2"; + version = "19.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.7.2.tgz"; - sha512 = "PvI+fXqgP0uGJxkyZcX51bnzjFA73MODZOAv0fSD35yR7tvbqwtMV3/Y+hxQ0AMMwzxkEebP6c7po/muqxJvmQ=="; + url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.7.3.tgz"; + sha512 = "9Q5HahsstfoTnllcpNkxNu2z9J7V0Si5Mr5q90K6XSXwW1P8iqe8q3HzWViVuBuEYTSMZ2LaXXzTEYeoCzLEWg=="; }; }; "purgecss-2.3.0" = { @@ -62393,13 +62267,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.295" = { + "pyright-1.1.298" = { name = "pyright"; packageName = "pyright"; - version = "1.1.295"; + version = "1.1.298"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.295.tgz"; - sha512 = "nBowWG3qI2+ETtbsPBOnN7S5aNFE2PXn3OfQMM2jNfSh6A9P7z6YOmV9tYt8HYQ8WHX8qcU9b4ALe7nFp0GnBg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.298.tgz"; + sha512 = "lDTIS0a7SJ6TCcACjPl1eXatYbctTgGd/Ji3aZ9oCJTVjZCIpwf4Huj6sSlhC3KmsHFCcLt4t1uFi0z/jm7qYg=="; }; }; "q-1.1.2" = { @@ -62537,6 +62411,15 @@ let sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; }; }; + "qs-6.11.1" = { + name = "qs"; + packageName = "qs"; + version = "6.11.1"; + src = fetchurl { + url = "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz"; + sha512 = "0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ=="; + }; + }; "qs-6.3.3" = { name = "qs"; packageName = "qs"; @@ -62798,31 +62681,31 @@ let sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g=="; }; }; - "quicktype-core-23.0.9" = { + "quicktype-core-23.0.12" = { name = "quicktype-core"; packageName = "quicktype-core"; - version = "23.0.9"; + version = "23.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-23.0.9.tgz"; - sha512 = "RDbv+V3iC8gDwBiROTbpT0s1cHNkG+NYa9+r2gKjROHTkApd4UjT/eUiw5LDdDjbDyYeYIKIKTALG7qLS8tYuQ=="; + url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-23.0.12.tgz"; + sha512 = "EPCLnAPBw6/WqYW7WsS5Mcpg+U/w6tYnmfphsSes555qltbB9USR6QbBYksuO+JwF04x94an1ziZi9javD0teQ=="; }; }; - "quicktype-graphql-input-23.0.9" = { + "quicktype-graphql-input-23.0.12" = { name = "quicktype-graphql-input"; packageName = "quicktype-graphql-input"; - version = "23.0.9"; + version = "23.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-23.0.9.tgz"; - sha512 = "L0MTYTp/Llf6iP8Fm0PoDSCo46RCqpvZpFb3CZnpa26WGMzR6537zdIHErP3HYXbKS18wW2GFH0Jc2RaDw+ffg=="; + url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-23.0.12.tgz"; + sha512 = "7A3/3LuN8h1Pw4F4tdXevnujRUAlMQ+Zi7Q8APXmTQTu85zTUDA/FAQy5giiKt/Y5veoYSL+72jSFRlA3Re2MA=="; }; }; - "quicktype-typescript-input-23.0.9" = { + "quicktype-typescript-input-23.0.12" = { name = "quicktype-typescript-input"; packageName = "quicktype-typescript-input"; - version = "23.0.9"; + version = "23.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-23.0.9.tgz"; - sha512 = "pQr4tw2EGscfMgIS6Ik5Y9DsaiMGtzENvtAcoAlK3R/iwUGA4/QbyS+8H9RGHSVLl7ZmLIa9ZjQbepl/mbqw+g=="; + url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-23.0.12.tgz"; + sha512 = "HdW6DwkSE2FnkPaimfebizb4Exb1SKKxE/KLA3oYQFwxyafzwDwEkRFwstTFhI6J3Svn1jE5LLMI3lunSVXMBA=="; }; }; "quotation-1.1.3" = { @@ -63374,6 +63257,15 @@ let sha512 = "nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q=="; }; }; + "react-refresh-0.14.0" = { + name = "react-refresh"; + packageName = "react-refresh"; + version = "0.14.0"; + src = fetchurl { + url = "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz"; + sha512 = "wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ=="; + }; + }; "react-refresh-0.4.3" = { name = "react-refresh"; packageName = "react-refresh"; @@ -64139,13 +64031,13 @@ let sha512 = "DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A=="; }; }; - "redoc-2.0.0-rc.77" = { + "redoc-2.0.0" = { name = "redoc"; packageName = "redoc"; - version = "2.0.0-rc.77"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.77.tgz"; - sha512 = "hiCMNSEl6R9vDkiVBMJSKxyT+wLY0qZdw+UZuOHWDCFm3uV0SELwTUU+spVBFCdzM4fdxjCnvsY2vX6cjcJNNg=="; + url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0.tgz"; + sha512 = "rU8iLdAkT89ywOkYk66Mr+IofqaMASlRvTew0dJvopCORMIPUcPMxjlJbJNC6wsn2vvMnpUFLQ/0ISDWn9BWag=="; }; }; "reduce-component-1.0.1" = { @@ -64391,13 +64283,13 @@ let sha512 = "PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg=="; }; }; - "registry-auth-token-5.0.1" = { + "registry-auth-token-5.0.2" = { name = "registry-auth-token"; packageName = "registry-auth-token"; - version = "5.0.1"; + version = "5.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.1.tgz"; - sha512 = "UfxVOj8seK1yaIOiieV4FIP01vfBDLsY0H9sQzi9EbbUdJiuuBjJgLa1DpImXMNPnVkBD4eVxTEXcrZA6kfpJA=="; + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz"; + sha512 = "o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ=="; }; }; "registry-url-3.1.0" = { @@ -66245,6 +66137,24 @@ let sha512 = "BlIbgFryTbw3Dz6hyoWFhKk+unCcHMSkZGrTFVAx2WmttdBSonsdtRlwiuTbDqTKr+UlXIUqJVS4QT5tUzGENQ=="; }; }; + "rimraf-4.1.4" = { + name = "rimraf"; + packageName = "rimraf"; + version = "4.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-4.1.4.tgz"; + sha512 = "CoUTSckPOFgu0m8PzkXWlp/e0IHxxv3fUxOivMspXfxcm1rPaNtj6lkkbi5NnFVoGDFj6kX7jPKVccafEf9HoA=="; + }; + }; + "rimraf-4.4.0" = { + name = "rimraf"; + packageName = "rimraf"; + version = "4.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-4.4.0.tgz"; + sha512 = "X36S+qpCUR0HjXlkDe4NAOhS//aHH0Z+h8Ckf2auGJk3PTnx5rLmrHkwNdbVQuCSUhOyFrlRvFEllZOYE+yZGQ=="; + }; + }; "ripemd160-2.0.2" = { name = "ripemd160"; packageName = "ripemd160"; @@ -68234,13 +68144,13 @@ let sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A=="; }; }; - "simple-git-3.16.1" = { + "simple-git-3.17.0" = { name = "simple-git"; packageName = "simple-git"; - version = "3.16.1"; + version = "3.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.16.1.tgz"; - sha512 = "xzRxMKiy1zEYeHGXgAzvuXffDS0xgsq07Oi4LWEEcVH29vLpcZ2tyQRWyK0NLLlCVaKysZeem5tC1qHEOxsKwA=="; + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.17.0.tgz"; + sha512 = "JozI/s8jr3nvLd9yn2jzPVHnhVzt7t7QWfcIoDcqRIGN+f1IINGv52xoZti2kkYfoRhhRvzMSNPfogHMp97rlw=="; }; }; "simple-markdown-0.4.4" = { @@ -69467,13 +69377,13 @@ let sha512 = "EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg=="; }; }; - "spdx-correct-3.1.1" = { + "spdx-correct-3.2.0" = { name = "spdx-correct"; packageName = "spdx-correct"; - version = "3.1.1"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"; - sha512 = "cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w=="; + url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz"; + sha512 = "kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA=="; }; }; "spdx-exceptions-2.3.0" = { @@ -71817,13 +71727,13 @@ let sha512 = "HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw=="; }; }; - "styled-components-5.3.6" = { + "styled-components-5.3.8" = { name = "styled-components"; packageName = "styled-components"; - version = "5.3.6"; + version = "5.3.8"; src = fetchurl { - url = "https://registry.npmjs.org/styled-components/-/styled-components-5.3.6.tgz"; - sha512 = "hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg=="; + url = "https://registry.npmjs.org/styled-components/-/styled-components-5.3.8.tgz"; + sha512 = "6jQrlvaJQ16uWVVO0rBfApaTPItkqaG32l3746enNZzpMDxMvzmHzj8rHUg39bvVtom0Y8o8ZzWuchEXKGjVsg=="; }; }; "styled-jsx-3.1.0" = { @@ -72267,13 +72177,13 @@ let sha512 = "0HXyhCoc9rsW4zGOgtInylC6qj259E1hpFnJMJWTf+aIfeqh4O/QHT31KT2hvPEqQfdjmqBR/kO2JDkkciBLrQ=="; }; }; - "svelte2tsx-0.6.2" = { + "svelte2tsx-0.6.3" = { name = "svelte2tsx"; packageName = "svelte2tsx"; - version = "0.6.2"; + version = "0.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.6.2.tgz"; - sha512 = "0ircYY2/jMOfistf+iq8fVHERnu1i90nku56c78+btC8svyafsc3OjOV37LDEOV7buqYY1Rv/uy03eMxhopH2Q=="; + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.6.3.tgz"; + sha512 = "2e0rB9l7oih3CEa5S8OEYm1FvlXKj6c444hAVRMqt7LZgOm6oTu3FqfzIPXViDNh7LmU9Yb3PiYWhS7a7D7zow=="; }; }; "sver-compat-1.5.0" = { @@ -72420,13 +72330,13 @@ let sha512 = "8z18eX8G/jbTXYzyNIaobrnD7PSN7yU/YkSasMmajrXtw0FGS64XjrKn5v37d36qmU3o1xLeuYnktshRr7uIFw=="; }; }; - "swagger-ui-dist-4.16.1" = { + "swagger-ui-dist-4.18.0" = { name = "swagger-ui-dist"; packageName = "swagger-ui-dist"; - version = "4.16.1"; + version = "4.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.16.1.tgz"; - sha512 = "4J4XekQG0ol4/TyUzMfksrWsMTbw/7JYlT+SFaX7H0xamd1OeuVlUSb/Cbq4qdDx1lc+uLZQW7u2mlImcE8c+w=="; + url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.18.0.tgz"; + sha512 = "PZeF7r+JsAXC8tEGatOARSEeC0n3ChGqTDcbZUzrV+mGnlW2ZEystlpiEyMWfAY4FAT+uxibfMuRahEvnoG3CQ=="; }; }; "swagger2openapi-7.0.8" = { @@ -72564,13 +72474,13 @@ let sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; }; }; - "systeminformation-5.17.11" = { + "systeminformation-5.17.12" = { name = "systeminformation"; packageName = "systeminformation"; - version = "5.17.11"; + version = "5.17.12"; src = fetchurl { - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.17.11.tgz"; - sha512 = "JaS/ggJDzMC1oOhCcs2b2wTQlmrnLCHUNHsefbqOcZH/uLYAxaweI5Nyx1tViQqYIxLOsgr6Rl0FDny8MtRj/g=="; + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.17.12.tgz"; + sha512 = "I3pfMW2vue53u+X08BNxaJieaHkRoMMKjWetY9lbYJeWFaeWPO6P4FkNc4XOCX8F9vbQ0HqQ25RJoz3U/B7liw=="; }; }; "sywac-1.3.0" = { @@ -73105,13 +73015,13 @@ let sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; }; }; - "terser-5.16.5" = { + "terser-5.16.6" = { name = "terser"; packageName = "terser"; - version = "5.16.5"; + version = "5.16.6"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.16.5.tgz"; - sha512 = "qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg=="; + url = "https://registry.npmjs.org/terser/-/terser-5.16.6.tgz"; + sha512 = "IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg=="; }; }; "terser-webpack-plugin-1.4.5" = { @@ -73123,13 +73033,13 @@ let sha512 = "04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw=="; }; }; - "terser-webpack-plugin-5.3.6" = { + "terser-webpack-plugin-5.3.7" = { name = "terser-webpack-plugin"; packageName = "terser-webpack-plugin"; - version = "5.3.6"; + version = "5.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz"; - sha512 = "kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ=="; + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz"; + sha512 = "AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw=="; }; }; "test-exclude-6.0.0" = { @@ -73735,22 +73645,22 @@ let sha512 = "Q0TU9zh5hDs2CpRFNM7SOW3K7OSgUgJC/cMrq9t44ei4tu+G3KV8BZyIJuYVvryJHH96mKgc9WXdhgKVvGD7jg=="; }; }; - "tldts-5.7.109" = { + "tldts-5.7.111" = { name = "tldts"; packageName = "tldts"; - version = "5.7.109"; + version = "5.7.111"; src = fetchurl { - url = "https://registry.npmjs.org/tldts/-/tldts-5.7.109.tgz"; - sha512 = "k7uaEspKgUS1yyeQFETYbhh+l7tfGfQCC0pzDsz+fqyvOEptovF5yM+ND2jcxqrlcbrmC7qUY/fZ+2mXg7tdww=="; + url = "https://registry.npmjs.org/tldts/-/tldts-5.7.111.tgz"; + sha512 = "D1iH3Exmw4hNRd9ipv8ZJFtL8V6oCSoE9+8NY7mcEQPMDKHT7kAnOr33cJ1tIATeHNVUejRgqR7I67UecwzSjQ=="; }; }; - "tldts-core-5.7.109" = { + "tldts-core-5.7.111" = { name = "tldts-core"; packageName = "tldts-core"; - version = "5.7.109"; + version = "5.7.111"; src = fetchurl { - url = "https://registry.npmjs.org/tldts-core/-/tldts-core-5.7.109.tgz"; - sha512 = "PGjUhQ8DrwoxpnZch0zrLPGeRPpjPbRy7dzpSChulmLf09jg6QXqfa2W8DXEZLWhcAZ7CxBk+arr/kJT1Dgg9w=="; + url = "https://registry.npmjs.org/tldts-core/-/tldts-core-5.7.111.tgz"; + sha512 = "BU3OOzGbih8zvLiKgDw+wNS311ItfLt3gXi3qSDvAQiI86l+dyEAGSEs2s72ptPJ3KqXgRt7wiE6jTQ2SgoMqw=="; }; }; "tmp-0.0.29" = { @@ -74842,13 +74752,13 @@ let sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; }; }; - "tuf-js-1.0.0" = { + "tuf-js-1.1.1" = { name = "tuf-js"; packageName = "tuf-js"; - version = "1.0.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/tuf-js/-/tuf-js-1.0.0.tgz"; - sha512 = "1dxsQwESDzACJjTdYHQ4wJ1f/of7jALWKfJEHSBWUQB/5UTJUx9SW6GHXp4mZ1KvdBRJCpGjssoPFGi4hvw8/A=="; + url = "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.1.tgz"; + sha512 = "WTp382/PR96k0dI4GD5RdiRhgOU0rAC7+lnoih/5pZg3cyb3aNMqDozleEEWwyfT3+FOg7Qz9JU3n6A44tLSHw=="; }; }; "tumblr-0.4.1" = { @@ -75184,15 +75094,6 @@ let sha512 = "70T99cpILFk2fzwuljwWxmazSphFrdOe3gRHbp6bqs71pxFBbJwFqnmkLO2lQL6aLHxHmYAnP/sL+AJWpT70jA=="; }; }; - "type-fest-3.6.0" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.6.0.tgz"; - sha512 = "RqTRtKTzvPpNdDUp1dVkKQRunlPITk4mXeqFlAZoJsS+fLRn8AdPK0TcQDumGayhU7fjlBfiBjsq3pe3rIfXZQ=="; - }; - }; "type-fest-3.6.1" = { name = "type-fest"; packageName = "type-fest"; @@ -75391,15 +75292,6 @@ let sha512 = "IKawLTu4A2xN3aN/cPLxvZ0bhxZHILGDKTZWvWNJ3sLNhJ3PjfMEDQmR2VMpdRPrmWOadgWXRwjLBzSA8AGsaQ=="; }; }; - "typescript-formatter-7.2.2" = { - name = "typescript-formatter"; - packageName = "typescript-formatter"; - version = "7.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/typescript-formatter/-/typescript-formatter-7.2.2.tgz"; - sha512 = "V7vfI9XArVhriOTYHPzMU2WUnm5IMdu9X/CPxs8mIMGxmTBFpDABlbkBka64PZJ9/xgQeRpK8KzzAG4MPzxBDQ=="; - }; - }; "typescript-json-schema-0.45.1" = { name = "typescript-json-schema"; packageName = "typescript-json-schema"; @@ -75490,13 +75382,13 @@ let sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="; }; }; - "ua-parser-js-0.7.33" = { + "ua-parser-js-0.7.34" = { name = "ua-parser-js"; packageName = "ua-parser-js"; - version = "0.7.33"; + version = "0.7.34"; src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.33.tgz"; - sha512 = "s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw=="; + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.34.tgz"; + sha512 = "cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ=="; }; }; "ua-parser-js-1.0.2" = { @@ -75508,13 +75400,13 @@ let sha512 = "00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg=="; }; }; - "ua-parser-js-1.0.33" = { + "ua-parser-js-1.0.34" = { name = "ua-parser-js"; packageName = "ua-parser-js"; - version = "1.0.33"; + version = "1.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz"; - sha512 = "RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ=="; + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.34.tgz"; + sha512 = "K9mwJm/DaB6mRLZfw6q8IMXipcrmuT6yfhYmwhAkuh+81sChuYstYA+znlgaflUPaYUa3odxKPKGw6Vw/lANew=="; }; }; "uc.micro-1.0.6" = { @@ -77839,274 +77731,274 @@ let sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ=="; }; }; - "vega-5.22.1" = { + "vega-5.24.0" = { name = "vega"; packageName = "vega"; - version = "5.22.1"; + version = "5.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega/-/vega-5.22.1.tgz"; - sha512 = "KJBI7OWSzpfCPbmWl3GQCqBqbf2TIdpWS0mzO6MmWbvdMhWHf74P9IVnx1B1mhg0ZTqWFualx9ZYhWzMMwudaQ=="; + url = "https://registry.npmjs.org/vega/-/vega-5.24.0.tgz"; + sha512 = "eahZ+4eryPywLuq9BpgcwWMyqiuVD3FAh7eMB3koOp7peQ4scPxAZxWdLwnh0t0kah+oE2QcXi2EHS4BabsMPg=="; }; }; - "vega-canvas-1.2.6" = { + "vega-canvas-1.2.7" = { name = "vega-canvas"; packageName = "vega-canvas"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.6.tgz"; - sha512 = "rgeYUpslYn/amIfnuv3Sw6n4BGns94OjjZNtUc9IDji6b+K8LGS/kW+Lvay8JX/oFqtulBp8RLcHN6QjqPLA9Q=="; + url = "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz"; + sha512 = "OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q=="; }; }; - "vega-crossfilter-4.1.0" = { + "vega-crossfilter-4.1.1" = { name = "vega-crossfilter"; packageName = "vega-crossfilter"; - version = "4.1.0"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.0.tgz"; - sha512 = "aiOJcvVpiEDIu5uNc4Kf1hakkkPaVOO5fw5T4RSFAw6GEDbdqcB6eZ1xePcsLVic1hxYD5SGiUPdiiIs0SMh2g=="; + url = "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz"; + sha512 = "yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q=="; }; }; - "vega-dataflow-5.7.4" = { + "vega-dataflow-5.7.5" = { name = "vega-dataflow"; packageName = "vega-dataflow"; - version = "5.7.4"; + version = "5.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.4.tgz"; - sha512 = "JGHTpUo8XGETH3b1V892we6hdjzCWB977ybycIu8DPqRoyrZuj6t1fCVImazfMgQD1LAfJlQybWP+alwKDpKig=="; + url = "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz"; + sha512 = "EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA=="; }; }; - "vega-encode-4.9.0" = { + "vega-encode-4.9.1" = { name = "vega-encode"; packageName = "vega-encode"; - version = "4.9.0"; + version = "4.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.0.tgz"; - sha512 = "etv2BHuCn9bzEc0cxyA2TnbtcAFQGVFmsaqmB4sgBCaqTSEfXMoX68LK3yxBrsdm5LU+y3otJVoewi3qWYCx2g=="; + url = "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.1.tgz"; + sha512 = "05JB47UZaqIBS9t6rtHI/aKjEuH4EsSIH+wJWItht4BFj33eIl4XRNtlXdE31uuQT2pXWz5ZWW3KboMuaFzKLw=="; }; }; - "vega-event-selector-3.0.0" = { + "vega-event-selector-3.0.1" = { name = "vega-event-selector"; packageName = "vega-event-selector"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.0.tgz"; - sha512 = "Gls93/+7tEJGE3kUuUnxrBIxtvaNeF01VIFB2Q2Of2hBIBvtHX74jcAdDtkh5UhhoYGD8Q1J30P5cqEBEwtPoQ=="; + url = "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz"; + sha512 = "K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A=="; }; }; - "vega-expression-5.0.0" = { + "vega-expression-5.0.1" = { name = "vega-expression"; packageName = "vega-expression"; - version = "5.0.0"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.0.tgz"; - sha512 = "y5+c2frq0tGwJ7vYXzZcfVcIRF/QGfhf2e+bV1Z0iQs+M2lI1II1GPDdmOcMKimpoCVp/D61KUJDIGE1DSmk2w=="; + url = "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.1.tgz"; + sha512 = "atfzrMekrcsuyUgZCMklI5ki8cV763aeo1Y6YrfYU7FBwcQEoFhIV/KAJ1vae51aPDGtfzvwbtVIo3WShFCP2Q=="; }; }; - "vega-force-4.1.0" = { + "vega-force-4.2.0" = { name = "vega-force"; packageName = "vega-force"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-force/-/vega-force-4.1.0.tgz"; - sha512 = "Sssf8iH48vYlz+E7/RpU+SUaJbuLoIL87U4tG2Av4gf/hRiImU49x2TI3EuhFWg1zpaCFxlz0CAaX++Oh/gjdw=="; - }; - }; - "vega-format-1.1.0" = { - name = "vega-format"; - packageName = "vega-format"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-format/-/vega-format-1.1.0.tgz"; - sha512 = "6mgpeWw8yGdG0Zdi8aVkx5oUrpJGOpNxqazC2858RSDPvChM/jDFlgRMTYw52qk7cxU0L08ARp4BwmXaI75j0w=="; - }; - }; - "vega-functions-5.13.0" = { - name = "vega-functions"; - packageName = "vega-functions"; - version = "5.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.0.tgz"; - sha512 = "Mf53zNyx+c9fFqagEI0T8zc9nMlx0zozOngr8oOpG1tZDKOgwOnUgN99zQKbLHjyv+UzWrq3LYTnSLyVe0ZmhQ=="; - }; - }; - "vega-geo-4.4.0" = { - name = "vega-geo"; - packageName = "vega-geo"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.0.tgz"; - sha512 = "3YX41y+J5pu0PMjvBCASg0/lgvu9+QXWJZ+vl6FFKa8AlsIopQ67ZL7ObwqjZcoZMolJ4q0rc+ZO8aj1pXCYcw=="; - }; - }; - "vega-hierarchy-4.1.0" = { - name = "vega-hierarchy"; - packageName = "vega-hierarchy"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.0.tgz"; - sha512 = "DWBK39IEt4FiQru12twzKSFUvFFZ7KtlH9+lAaqrJnKuIZFCyQ1XOUfKScfbKIlk4KS+DuCTNLI/pxC/f7Sk9Q=="; - }; - }; - "vega-label-1.2.0" = { - name = "vega-label"; - packageName = "vega-label"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-label/-/vega-label-1.2.0.tgz"; - sha512 = "1prOqkCAfXaUvMqavbGI0nbYGqV8UQR9qvuVwrPJ6Yxm3GIUIOA/JRqNY8eZR8USwMP/kzsqlfVEixj9+Y75VQ=="; - }; - }; - "vega-loader-4.5.0" = { - name = "vega-loader"; - packageName = "vega-loader"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.0.tgz"; - sha512 = "EkAyzbx0pCYxH3v3wghGVCaKINWxHfgbQ2pYDiYv0yo8e04S8Mv/IlRGTt6BAe7cLhrk1WZ4zh20QOppnGG05w=="; - }; - }; - "vega-parser-6.1.4" = { - name = "vega-parser"; - packageName = "vega-parser"; - version = "6.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.1.4.tgz"; - sha512 = "tORdpWXiH/kkXcpNdbSVEvtaxBuuDtgYp9rBunVW9oLsjFvFXbSWlM1wvJ9ZFSaTfx6CqyTyGMiJemmr1QnTjQ=="; - }; - }; - "vega-projection-1.5.0" = { - name = "vega-projection"; - packageName = "vega-projection"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-projection/-/vega-projection-1.5.0.tgz"; - sha512 = "aob7qojh555x3hQWZ/tr8cIJNSWQbm6EoWTJaheZgFOY2x3cDa4Qrg3RJbGw6KwVj/IQk2p40paRzixKZ2kr+A=="; - }; - }; - "vega-regression-1.1.0" = { - name = "vega-regression"; - packageName = "vega-regression"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-regression/-/vega-regression-1.1.0.tgz"; - sha512 = "09K0RemY6cdaXBAyakDUNFfEkRcLkGjkDJyWQPAUqGK59hV2J+G3i4uxkZp18Vu0t8oqU7CgzwWim1s5uEpOcA=="; - }; - }; - "vega-runtime-6.1.3" = { - name = "vega-runtime"; - packageName = "vega-runtime"; - version = "6.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.3.tgz"; - sha512 = "gE+sO2IfxMUpV0RkFeQVnHdmPy3K7LjHakISZgUGsDI/ZFs9y+HhBf8KTGSL5pcZPtQsZh3GBQ0UonqL1mp9PA=="; - }; - }; - "vega-scale-7.2.0" = { - name = "vega-scale"; - packageName = "vega-scale"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-scale/-/vega-scale-7.2.0.tgz"; - sha512 = "QYltO/otrZHLrCGGf06Y99XtPtqWXITr6rw7rO9oL+l3d9o5RFl9sjHrVxiM7v+vGoZVWbBd5IPbFhPsXZ6+TA=="; - }; - }; - "vega-scenegraph-4.10.1" = { - name = "vega-scenegraph"; - packageName = "vega-scenegraph"; - version = "4.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.1.tgz"; - sha512 = "takIpkmNxYHhJYALOYzhTin3EDzbys6U4g+l1yJZVlXG9YTdiCMuEVAdtaQOCqF9/7qytD6pCrMxJY2HaoN0qQ=="; - }; - }; - "vega-selections-5.4.0" = { - name = "vega-selections"; - packageName = "vega-selections"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.0.tgz"; - sha512 = "Un3JdLDPjIpF9Dh4sw6m1c/QAcfam6m1YXHJ9vJxE/GdJ+sOrPxc7bcEU8VhOmTUN7IQUn4/1ry4JqqOVMbEhw=="; - }; - }; - "vega-statistics-1.8.0" = { - name = "vega-statistics"; - packageName = "vega-statistics"; - version = "1.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.8.0.tgz"; - sha512 = "dl+LCRS6qS4jWDme/NEdPVt5r649uB4IK6Kyr2/czmGA5JqjuFmtQ9lHQOnRu8945XLkqLf+JIQQo7vnw+nslA=="; - }; - }; - "vega-time-2.1.0" = { - name = "vega-time"; - packageName = "vega-time"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-time/-/vega-time-2.1.0.tgz"; - sha512 = "Q9/l3S6Br1RPX5HZvyLD/cQ4K6K8DtpR09/1y7D66gxNorg2+HGzYZINH9nUvN3mxoXcBWg4cCUh3+JvmkDaEg=="; - }; - }; - "vega-transforms-4.10.0" = { - name = "vega-transforms"; - packageName = "vega-transforms"; - version = "4.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.0.tgz"; - sha512 = "Yk6ByzVq5F2niFfPlSsrU5wi+NZhsF7IBpJCcTfms4U7eoyNepUXagdFEJ3VWBD/Lit6GorLXFgO17NYcyS5gg=="; - }; - }; - "vega-typings-0.22.3" = { - name = "vega-typings"; - packageName = "vega-typings"; - version = "0.22.3"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.22.3.tgz"; - sha512 = "PREcya3nXT9Tk7xU0IhEpOLVTlqizNtKXV55NhI6ApBjJtqVYbJL7IBh2ckKxGBy3YeUQ37BQZl56UqqiYVWBw=="; - }; - }; - "vega-util-1.17.0" = { - name = "vega-util"; - packageName = "vega-util"; - version = "1.17.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-util/-/vega-util-1.17.0.tgz"; - sha512 = "HTaydZd9De3yf+8jH66zL4dXJ1d1p5OIFyoBzFiOli4IJbwkL1jrefCKz6AHDm1kYBzDJ0X4bN+CzZSCTvNk1w=="; - }; - }; - "vega-view-5.11.0" = { - name = "vega-view"; - packageName = "vega-view"; - version = "5.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-view/-/vega-view-5.11.0.tgz"; - sha512 = "MI9NTRFmtFX6ADk6KOHhi8bhHjC9pPm42Bj2+74c6l1d3NQZf9Jv7lkiGqKohdkQDNH9LPwz/6slhKwPU9JdkQ=="; - }; - }; - "vega-view-transforms-4.5.8" = { - name = "vega-view-transforms"; - packageName = "vega-view-transforms"; - version = "4.5.8"; - src = fetchurl { - url = "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.8.tgz"; - sha512 = "966m7zbzvItBL8rwmF2nKG14rBp7q+3sLCKWeMSUrxoG+M15Smg5gWEGgwTG3A/RwzrZ7rDX5M1sRaAngRH25g=="; - }; - }; - "vega-voronoi-4.2.0" = { - name = "vega-voronoi"; - packageName = "vega-voronoi"; version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.0.tgz"; - sha512 = "1iuNAVZgUHRlBpdq4gSga3KlQmrgFfwy+KpyDgPLQ8HbLkhcVeT7RDh2L6naluqD7Op0xVLms3clR920WsYryQ=="; + url = "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz"; + sha512 = "aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A=="; }; }; - "vega-wordcloud-4.1.3" = { + "vega-format-1.1.1" = { + name = "vega-format"; + packageName = "vega-format"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz"; + sha512 = "Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ=="; + }; + }; + "vega-functions-5.13.1" = { + name = "vega-functions"; + packageName = "vega-functions"; + version = "5.13.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.1.tgz"; + sha512 = "0LhntimnvBl4VzRO/nkCwCTbtaP8bE552galKQbCg88GDxdmcmlsoTCwUzG0vZ/qmNM3IbqnP5k5/um3zwFqLw=="; + }; + }; + "vega-geo-4.4.1" = { + name = "vega-geo"; + packageName = "vega-geo"; + version = "4.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz"; + sha512 = "s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA=="; + }; + }; + "vega-hierarchy-4.1.1" = { + name = "vega-hierarchy"; + packageName = "vega-hierarchy"; + version = "4.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz"; + sha512 = "h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ=="; + }; + }; + "vega-label-1.2.1" = { + name = "vega-label"; + packageName = "vega-label"; + version = "1.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz"; + sha512 = "n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg=="; + }; + }; + "vega-loader-4.5.1" = { + name = "vega-loader"; + packageName = "vega-loader"; + version = "4.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz"; + sha512 = "qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA=="; + }; + }; + "vega-parser-6.2.0" = { + name = "vega-parser"; + packageName = "vega-parser"; + version = "6.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz"; + sha512 = "as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ=="; + }; + }; + "vega-projection-1.6.0" = { + name = "vega-projection"; + packageName = "vega-projection"; + version = "1.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz"; + sha512 = "LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ=="; + }; + }; + "vega-regression-1.1.1" = { + name = "vega-regression"; + packageName = "vega-regression"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-regression/-/vega-regression-1.1.1.tgz"; + sha512 = "98i/z0vdDhOIEhJUdYoJ2nlfVdaHVp2CKB39Qa7G/XyRw0+QwDFFrp8ZRec2xHjHfb6bYLGNeh1pOsC13FelJg=="; + }; + }; + "vega-runtime-6.1.4" = { + name = "vega-runtime"; + packageName = "vega-runtime"; + version = "6.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz"; + sha512 = "0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ=="; + }; + }; + "vega-scale-7.3.0" = { + name = "vega-scale"; + packageName = "vega-scale"; + version = "7.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz"; + sha512 = "pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw=="; + }; + }; + "vega-scenegraph-4.10.2" = { + name = "vega-scenegraph"; + packageName = "vega-scenegraph"; + version = "4.10.2"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz"; + sha512 = "R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA=="; + }; + }; + "vega-selections-5.4.1" = { + name = "vega-selections"; + packageName = "vega-selections"; + version = "5.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz"; + sha512 = "EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA=="; + }; + }; + "vega-statistics-1.8.1" = { + name = "vega-statistics"; + packageName = "vega-statistics"; + version = "1.8.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.8.1.tgz"; + sha512 = "eRR3LZBusnTXUkc/uunAvWi1PjCJK+Ba4vFvEISc5Iv5xF4Aw2cBhEz1obEt6ID5fGVCTAl0E1LOSFxubS89hQ=="; + }; + }; + "vega-time-2.1.1" = { + name = "vega-time"; + packageName = "vega-time"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz"; + sha512 = "z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA=="; + }; + }; + "vega-transforms-4.10.1" = { + name = "vega-transforms"; + packageName = "vega-transforms"; + version = "4.10.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.1.tgz"; + sha512 = "0uWrUZaYl8kjWrGbvPOQSKk6kcNXQFY9moME+bUmkADAvFptphCGbaEIn/nSsG6uCxj8E3rqKmKfjSWdU5yOqA=="; + }; + }; + "vega-typings-0.24.0" = { + name = "vega-typings"; + packageName = "vega-typings"; + version = "0.24.0"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz"; + sha512 = "FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A=="; + }; + }; + "vega-util-1.17.1" = { + name = "vega-util"; + packageName = "vega-util"; + version = "1.17.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-util/-/vega-util-1.17.1.tgz"; + sha512 = "ToPkWoBdP6awoK+bnYaFhgdqZhsNwKxWbuMnFell+4K/Cb6Q1st5Pi9I7iI5Y6n5ZICDDsd6eL7/IhBjEg1NUQ=="; + }; + }; + "vega-view-5.11.1" = { + name = "vega-view"; + packageName = "vega-view"; + version = "5.11.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz"; + sha512 = "RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA=="; + }; + }; + "vega-view-transforms-4.5.9" = { + name = "vega-view-transforms"; + packageName = "vega-view-transforms"; + version = "4.5.9"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz"; + sha512 = "NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g=="; + }; + }; + "vega-voronoi-4.2.1" = { + name = "vega-voronoi"; + packageName = "vega-voronoi"; + version = "4.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz"; + sha512 = "zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q=="; + }; + }; + "vega-wordcloud-4.1.4" = { name = "vega-wordcloud"; packageName = "vega-wordcloud"; - version = "4.1.3"; + version = "4.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.3.tgz"; - sha512 = "is4zYn9FMAyp9T4SAcz2P/U/wqc0Lx3P5YtpWKCbOH02a05vHjUQrQ2TTPOuvmMfAEDCSKvbMSQIJMOE018lJA=="; + url = "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz"; + sha512 = "oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw=="; }; }; "vendors-1.0.4" = { @@ -78613,13 +78505,13 @@ let sha512 = "xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA=="; }; }; - "vscode-json-languageservice-5.3.1" = { + "vscode-json-languageservice-5.3.2" = { name = "vscode-json-languageservice"; packageName = "vscode-json-languageservice"; - version = "5.3.1"; + version = "5.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.3.1.tgz"; - sha512 = "tPRf/2LOBS6uFflFLABdj8T3ol2/QgZ0kpzZHFCs+cbxpnjBNiCo+rfh3th0dtdytq5dSnWo5iFJj99zF6jZWQ=="; + url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.3.2.tgz"; + sha512 = "5td6olfoNdtyxnNA4uocq7V9jdTJt63o9mGEntQb6cbD2HiObZW2XgbSj6nRaebWwBCiYdWpFklNjm6Wz6Xy1Q=="; }; }; "vscode-jsonrpc-3.5.0" = { @@ -78676,15 +78568,6 @@ let sha512 = "wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg=="; }; }; - "vscode-jsonrpc-8.0.0-next.7" = { - name = "vscode-jsonrpc"; - packageName = "vscode-jsonrpc"; - version = "8.0.0-next.7"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.7.tgz"; - sha512 = "JX/F31LEsims0dAlOTKFE4E+AJMiJvdRSRViifFJSqSN7EzeYyWlfuDchF7g91oRNPZOIWfibTkDf3/UMsQGzQ=="; - }; - }; "vscode-jsonrpc-8.0.2" = { name = "vscode-jsonrpc"; packageName = "vscode-jsonrpc"; @@ -78712,13 +78595,13 @@ let sha512 = "0fuBZj9pMkeJ8OMyIvSGeRaRVhUaJt+yeFxi7a3sz/AbrngQdcxOovMXPgKuieoBSBKS05gXPS88BsWpJZfBkA=="; }; }; - "vscode-languageclient-8.0.0-next.14" = { + "vscode-languageclient-8.1.0" = { name = "vscode-languageclient"; packageName = "vscode-languageclient"; - version = "8.0.0-next.14"; + version = "8.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-8.0.0-next.14.tgz"; - sha512 = "NqjkOuDTMu8uo+PhoMsV72VO9Gd3wBi/ZpOrkRUOrWKQo7yUdiIw183g8wjH8BImgbK9ZP51HM7TI0ZhCnI1Mw=="; + url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-8.1.0.tgz"; + sha512 = "GL4QdbYUF/XxQlAsvYWZRV3V34kOkpRlvV60/72ghHfsYFnS/v2MANZ9P6sHmxFcZKOse8O+L9G7Czg0NUWing=="; }; }; "vscode-languageserver-3.5.1" = { @@ -78847,15 +78730,6 @@ let sha512 = "atmkGT/W6tF0cx4SaWFYtFs2UeSeC28RPiap9myv2YZTaTCFvTBEPNWrU5QRKfkyM0tbgtGo6T3UCQ8tkDpjzA=="; }; }; - "vscode-languageserver-protocol-3.17.0-next.16" = { - name = "vscode-languageserver-protocol"; - packageName = "vscode-languageserver-protocol"; - version = "3.17.0-next.16"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.16.tgz"; - sha512 = "tx4DnXw9u3N7vw+bx6n2NKp6FoxoNwiP/biH83AS30I2AnTGyLd7afSeH6Oewn2E8jvB7K15bs12sMppkKOVeQ=="; - }; - }; "vscode-languageserver-protocol-3.17.2" = { name = "vscode-languageserver-protocol"; packageName = "vscode-languageserver-protocol"; @@ -78973,15 +78847,6 @@ let sha512 = "VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg=="; }; }; - "vscode-languageserver-types-3.17.0-next.9" = { - name = "vscode-languageserver-types"; - packageName = "vscode-languageserver-types"; - version = "3.17.0-next.9"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.9.tgz"; - sha512 = "9/PeDNPYduaoXRUzYpqmu4ZV9L01HGo0wH9FUt+sSHR7IXwA7xoXBfNUlv8gB9H0D2WwEmMomSy1NmhjKQyn3A=="; - }; - }; "vscode-languageserver-types-3.17.2" = { name = "vscode-languageserver-types"; packageName = "vscode-languageserver-types"; @@ -79009,13 +78874,13 @@ let sha512 = "D4rUfu/oKYdc9Tmec0nEfedj+uXO2tZHR+eoHs9rE9G/QpRyZaHuug8ZUNGTGdO+ALLGgenL6bRpY8y3J9acHg=="; }; }; - "vscode-markdown-languageservice-0.3.0-alpha.5" = { + "vscode-markdown-languageservice-0.3.0-alpha.6" = { name = "vscode-markdown-languageservice"; packageName = "vscode-markdown-languageservice"; - version = "0.3.0-alpha.5"; + version = "0.3.0-alpha.6"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-markdown-languageservice/-/vscode-markdown-languageservice-0.3.0-alpha.5.tgz"; - sha512 = "5SEn8hr999N/K8IaY25fdZoW7JPJT4pOm53AQvimGNYiCntb0TWJhMJD1Izbc2DvbyrWAksVkLqzbGKV/zW+Sg=="; + url = "https://registry.npmjs.org/vscode-markdown-languageservice/-/vscode-markdown-languageservice-0.3.0-alpha.6.tgz"; + sha512 = "r7rXpsQVrfVdD5KLGkZ2imvR/UeeEZlGickM/jQfe0DLUACjry7kGfHlVKBs1pvluOiC0e2bBv9/I0+uqSn2fA=="; }; }; "vscode-nls-2.0.2" = { @@ -79702,6 +79567,15 @@ let sha512 = "piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ=="; }; }; + "webpack-5.76.0" = { + name = "webpack"; + packageName = "webpack"; + version = "5.76.0"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-5.76.0.tgz"; + sha512 = "l5sOdYBDunyf72HW8dF23rFtWq/7Zgvt/9ftMof71E/yUb1YLOBmTgA2K4vQthB3kotMrSj609txVE0dnr2fjA=="; + }; + }; "webpack-bundle-analyzer-3.9.0" = { name = "webpack-bundle-analyzer"; packageName = "webpack-bundle-analyzer"; @@ -81620,15 +81494,6 @@ let sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; }; }; - "yaml-2.0.0-11" = { - name = "yaml"; - packageName = "yaml"; - version = "2.0.0-11"; - src = fetchurl { - url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-11.tgz"; - sha512 = "5kGSQrzDyjCk0BLuFfjkoUE9vYcoyrwZIZ+GnpOSM9vhkvPjItYiWJ1jpRSo0aU4QmsoNrFwDT4O7XS2UGcBQg=="; - }; - }; "yaml-2.2.1" = { name = "yaml"; packageName = "yaml"; @@ -81800,15 +81665,6 @@ let sha512 = "WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA=="; }; }; - "yargs-17.5.1" = { - name = "yargs"; - packageName = "yargs"; - version = "17.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz"; - sha512 = "t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA=="; - }; - }; "yargs-17.6.2" = { name = "yargs"; packageName = "yargs"; @@ -82286,22 +82142,22 @@ let sha512 = "UzIwO92D0dSFwIRyyqAfRXICITLjF0IP8tRbEK/un7adirMssWZx8xF/1hZNE7t61knWZ+lhEuUvxlu2MO8qqA=="; }; }; - "zod-3.20.5" = { + "zod-3.21.0" = { name = "zod"; packageName = "zod"; - version = "3.20.5"; + version = "3.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/zod/-/zod-3.20.5.tgz"; - sha512 = "BTAAliwfoB9dWf2hC+TXlyWKk/YTqRGZjHQR0WLC2A2pzierWo7KuQ1ebjS4SNaFaxg/lDItzl9/QTgLjcHbgw=="; + url = "https://registry.npmjs.org/zod/-/zod-3.21.0.tgz"; + sha512 = "UYdykTcVxB6lfdyLzAqLyyYAlOcpoluECvjsdoaqfQmz9p+3LRaIqYcNiL/J2kFYp66fBM8wwBvIGVEjq7KtZw=="; }; }; - "zwave-js-10.10.0" = { + "zwave-js-10.11.1" = { name = "zwave-js"; packageName = "zwave-js"; - version = "10.10.0"; + version = "10.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.10.0.tgz"; - sha512 = "mirnbCz9egAZebFDgycnkxnqAPeZRlWE0t0sH23DxkXWsQMZI+L1qHWHZJUm3+1SDLmOS7pCZk+9cwNSEWGhrA=="; + url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.11.1.tgz"; + sha512 = "oVqO6l1YNr7rdtl6riO+17QCOGxB0hAv0ydZZw5o8mXHIgVmsD0LBIyeAVM/ZpwC3thSLjU1j3JkPHehAY40yw=="; }; }; "zwitch-1.0.5" = { @@ -82337,15 +82193,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "15.2.0"; + version = "15.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-15.2.0.tgz"; - sha512 = "Zy1kmcvqoQf316eirfxkS5vb8/3B9btZf0YvZH/hDHmAyzAs8cwfirU+ClhwLLb/T9i7HnB0YS+Pdz0XaQa/jQ=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-15.2.2.tgz"; + sha512 = "r0VrQ+3CHp/y6GHzWDD8CPRqtAuV2iUZ1pbl4AiCnjAlUpPBXJMkJ2kzFn6rTlMoqPeFBnjyhTWyL/azi7GEcw=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1502.0" - sources."@angular-devkit/core-15.2.0" - sources."@angular-devkit/schematics-15.2.0" + sources."@angular-devkit/architect-0.1502.2" + sources."@angular-devkit/core-15.2.2" + sources."@angular-devkit/schematics-15.2.2" sources."@gar/promisify-1.1.3" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@npmcli/fs-2.1.2" @@ -82355,12 +82211,18 @@ in sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.0" - sources."@schematics/angular-15.2.0" + sources."@schematics/angular-15.2.2" sources."@tootallnate/once-2.0.0" + (sources."@tufjs/models-1.0.0" // { + dependencies = [ + sources."brace-expansion-2.0.1" + sources."minimatch-6.2.0" + ]; + }) sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ajv-8.12.0" sources."ajv-formats-2.1.1" @@ -82408,7 +82270,7 @@ in sources."defaults-1.0.4" sources."define-lazy-prop-2.0.0" sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."emoji-regex-8.0.0" (sources."encoding-0.1.13" // { dependencies = [ @@ -82479,7 +82341,7 @@ in sources."jsonparse-1.3.1" sources."lodash-4.17.21" sources."log-symbols-4.1.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."magic-string-0.29.0" (sources."make-fetch-happen-10.2.1" // { dependencies = [ @@ -82606,7 +82468,7 @@ in sources."socks-2.7.1" sources."socks-proxy-agent-7.0.0" sources."source-map-0.7.4" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -82630,11 +82492,9 @@ in sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."tslib-1.14.1" - (sources."tuf-js-1.0.0" // { + (sources."tuf-js-1.1.1" // { dependencies = [ - sources."brace-expansion-2.0.1" sources."make-fetch-happen-11.0.3" - sources."minimatch-6.2.0" sources."minipass-fetch-3.0.1" ]; }) @@ -83016,7 +82876,7 @@ in sha512 = "pdfMMKeVEkx045fzBH6exyqbEa7VMcZaygNAj7Dym4FxYNvMEWZzB5WUBlePpNbt5ChhwUkX5vSqK3zNab5UGw=="; }; dependencies = [ - sources."@astrojs/compiler-1.1.2" + sources."@astrojs/compiler-1.2.0" sources."@emmetio/abbreviation-2.2.3" sources."@emmetio/css-abbreviation-2.1.4" sources."@emmetio/scanner-1.0.0" @@ -83178,7 +83038,7 @@ in sources."bytes-3.1.2" sources."cache-content-type-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."canvas-2.11.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -83248,7 +83108,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -83394,7 +83254,7 @@ in sources."optionator-0.8.3" sources."os-tmpdir-1.0.2" sources."pako-1.0.11" - sources."papaparse-5.3.2" + sources."papaparse-5.4.0" sources."parse5-6.0.1" sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" @@ -83406,7 +83266,7 @@ in sources."proper-lockfile-4.1.2" sources."psl-1.9.0" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."querystringify-2.2.0" (sources."raw-body-2.5.2" // { dependencies = [ @@ -83460,8 +83320,8 @@ in ]; }) sources."through-2.3.8" - sources."tldts-5.7.109" - sources."tldts-core-5.7.109" + sources."tldts-5.7.111" + sources."tldts-core-5.7.111" sources."tmp-0.0.33" sources."to-fast-properties-2.0.0" sources."toidentifier-1.0.1" @@ -83554,24 +83414,24 @@ 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.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.36" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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-18.14.2" + sources."@types/node-18.14.6" sources."@types/normalize-package-data-2.4.1" sources."JSONStream-1.3.5" sources."acorn-8.8.2" @@ -83710,7 +83570,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -83787,10 +83647,10 @@ in "@emacs-eask/cli" = nodeEnv.buildNodePackage { name = "_at_emacs-eask_slash_cli"; packageName = "@emacs-eask/cli"; - version = "0.7.10"; + version = "0.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@emacs-eask/cli/-/cli-0.7.10.tgz"; - sha512 = "Gwr5PsyH+JSsM3jaJLW00EqwMD151wu0v3lBa58mnbBVVXOEG6Fnynv9jE9vLzOkhAVcDH9dtCtYlurDH7/YZg=="; + url = "https://registry.npmjs.org/@emacs-eask/cli/-/cli-0.8.0.tgz"; + sha512 = "IZaUBIrjuhN3e7bxqtGsVp8fjdak8eBWrki3YUWXLrDA5Uy51JkAFarBBqHC7abOW9BqDFinbxrWg8cdo/EfzQ=="; }; dependencies = [ sources."ansi-regex-5.0.1" @@ -83922,19 +83782,19 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@polka/url-1.0.0-next.21" - (sources."@sentry/core-7.39.0" // { + (sources."@sentry/core-7.42.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.39.0" // { + (sources."@sentry/node-7.42.0" // { dependencies = [ sources."cookie-0.4.2" sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.39.0" - (sources."@sentry/utils-7.39.0" // { + sources."@sentry/types-7.42.0" + (sources."@sentry/utils-7.42.0" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -83957,7 +83817,7 @@ in sources."@types/json-schema-7.0.11" sources."@types/keyv-3.1.4" sources."@types/mime-3.0.1" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/node-fetch-2.6.2" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -83968,15 +83828,15 @@ in sources."@types/sockjs-0.3.33" sources."@types/ws-8.5.4" sources."@types/yauzl-2.10.0" - sources."@typescript-eslint/types-5.54.0" - (sources."@typescript-eslint/typescript-estree-5.54.0" // { + sources."@typescript-eslint/types-5.54.1" + (sources."@typescript-eslint/typescript-estree-5.54.1" // { dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.3.8" sources."yallist-4.0.0" ]; }) - sources."@typescript-eslint/visitor-keys-5.54.0" + sources."@typescript-eslint/visitor-keys-5.54.1" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -84107,7 +83967,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.30001458" + sources."caniuse-lite-1.0.30001464" sources."case-1.6.3" sources."chainsaw-0.1.0" (sources."chalk-2.4.2" // { @@ -84238,7 +84098,7 @@ in }) sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -84440,7 +84300,7 @@ in sources."io-ts-2.2.20" sources."io-ts-reporters-1.2.2" sources."ipaddr.js-1.9.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" @@ -84855,12 +84715,12 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.16.5" // { + (sources."terser-5.16.6" // { dependencies = [ sources."commander-2.20.3" ]; }) - (sources."terser-webpack-plugin-5.3.6" // { + (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ sources."schema-utils-3.1.1" ]; @@ -85049,7 +84909,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."abort-controller-3.0.0" @@ -85256,7 +85116,7 @@ in sources."picomatch-2.3.1" sources."prepend-http-3.0.1" sources."pump-3.0.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."querystringify-2.2.0" sources."quick-lru-5.1.1" (sources."read-pkg-6.0.0" // { @@ -85297,7 +85157,7 @@ in sources."ansi-styles-6.2.1" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -85395,7 +85255,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.14.2" + sources."@types/node-18.14.6" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -86285,10 +86145,10 @@ in "@microsoft/rush" = nodeEnv.buildNodePackage { name = "_at_microsoft_slash_rush"; packageName = "@microsoft/rush"; - version = "5.93.1"; + version = "5.93.2"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.93.1.tgz"; - sha512 = "OzdPSA1jis1rYb96ry/dYtJdWSCD7Ao6B71hoiCoOwLtEIoHBbXv5MTxLZb3SvvlWOgrJvHtObSIccfb6DLOEg=="; + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.93.2.tgz"; + sha512 = "QTBu1++N4i2uuFs9BoFa9HzlxGQiP7j1BTLXFdceiXHUuyr4kAz2bnGtPX/qZvPnS3AHaJbYIQ7sasl6kuq49Q=="; }; dependencies = [ (sources."@azure/abort-controller-1.1.0" // { @@ -86323,7 +86183,7 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/core-rest-pipeline-1.10.1" // { + (sources."@azure/core-rest-pipeline-1.10.2" // { dependencies = [ sources."form-data-4.0.0" sources."tslib-2.5.0" @@ -86334,7 +86194,7 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/core-util-1.1.1" // { + (sources."@azure/core-util-1.2.0" // { dependencies = [ sources."tslib-2.5.0" ]; @@ -86344,20 +86204,20 @@ in sources."tslib-2.5.0" ]; }) - (sources."@azure/logger-1.0.3" // { + (sources."@azure/logger-1.0.4" // { dependencies = [ sources."tslib-2.5.0" ]; }) - (sources."@azure/msal-browser-2.33.0" // { + (sources."@azure/msal-browser-2.34.0" // { dependencies = [ - sources."@azure/msal-common-10.0.0" + sources."@azure/msal-common-11.0.0" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.15.0" // { + (sources."@azure/msal-node-1.16.0" // { dependencies = [ - sources."@azure/msal-common-10.0.0" + sources."@azure/msal-common-11.0.0" ]; }) (sources."@azure/storage-blob-12.11.0" // { @@ -86393,7 +86253,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - sources."@microsoft/rush-lib-5.93.1" + sources."@microsoft/rush-lib-5.93.2" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -86417,15 +86277,15 @@ in sources."import-lazy-4.0.0" ]; }) - sources."@rushstack/package-deps-hash-4.0.8" + sources."@rushstack/package-deps-hash-4.0.9" (sources."@rushstack/rig-package-0.3.18" // { dependencies = [ sources."strip-json-comments-3.1.1" ]; }) - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.93.1" - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.93.1" - sources."@rushstack/rush-sdk-5.93.1" + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.93.2" + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.93.2" + sources."@rushstack/rush-sdk-5.93.2" sources."@rushstack/stream-collator-4.0.227" sources."@rushstack/terminal-0.5.2" (sources."@rushstack/ts-command-line-4.13.2" // { @@ -86440,7 +86300,7 @@ in sources."@types/lodash-4.14.191" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/node-fetch-2.6.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" @@ -86972,7 +86832,7 @@ in sources."source-map-0.6.1" sources."source-map-js-1.0.2" sources."sourcemap-codec-1.4.8" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -87239,7 +87099,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.14.2" + sources."@types/node-18.14.6" sources."@types/parse-json-4.0.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" @@ -87283,7 +87143,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.5.3" @@ -87302,7 +87162,7 @@ in sources."de-indent-1.0.2" sources."deepmerge-4.3.0" sources."defaults-1.0.4" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.12.0" @@ -87463,12 +87323,12 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."symbol-observable-4.0.0" sources."tapable-2.2.1" - (sources."terser-5.16.5" // { + (sources."terser-5.16.6" // { dependencies = [ sources."commander-2.20.3" ]; }) - sources."terser-webpack-plugin-5.3.6" + sources."terser-webpack-plugin-5.3.7" sources."through-2.3.8" sources."tmp-0.0.33" sources."to-regex-range-5.0.1" @@ -87582,23 +87442,23 @@ 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.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.36" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.14.6" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87636,7 +87496,7 @@ in sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."make-error-1.3.6" sources."merge2-1.4.1" sources."micromatch-4.0.5" @@ -87706,23 +87566,23 @@ 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.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.36" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.14.6" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87760,7 +87620,7 @@ in sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."make-error-1.3.6" sources."merge2-1.4.1" sources."micromatch-4.0.5" @@ -87849,23 +87709,23 @@ 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.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.36" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.14.6" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87903,7 +87763,7 @@ in sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."make-error-1.3.6" sources."merge2-1.4.1" sources."micromatch-4.0.5" @@ -87973,23 +87833,23 @@ 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.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.36" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.14.6" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -88027,7 +87887,7 @@ in sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."lodash.castarray-4.4.0" sources."lodash.isplainobject-4.0.6" sources."lodash.merge-4.6.2" @@ -88108,7 +87968,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/responselike-1.0.0" sources."accepts-1.3.8" sources."ansi-styles-4.3.0" @@ -88117,7 +87977,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1324.0" + sources."aws-sdk-2.1331.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -88386,7 +88246,7 @@ in sources."@akryum/winattr-3.0.0" sources."@ampproject/remapping-2.2.0" sources."@apollo/protobufjs-1.2.7" - sources."@apollo/usage-reporting-protobuf-4.0.2" + sources."@apollo/usage-reporting-protobuf-4.1.0" sources."@apollo/utils.dropunuseddefinitions-1.1.0" (sources."@apollo/utils.keyvaluecache-1.0.2" // { dependencies = [ @@ -88548,10 +88408,10 @@ in sources."@babel/traverse-7.21.2" sources."@babel/types-7.21.2" sources."@graphql-tools/merge-8.3.1" - (sources."@graphql-tools/mock-8.7.18" // { + (sources."@graphql-tools/mock-8.7.19" // { dependencies = [ - sources."@graphql-tools/merge-8.3.18" - sources."@graphql-tools/schema-9.0.16" + sources."@graphql-tools/merge-8.4.0" + sources."@graphql-tools/schema-9.0.17" sources."@graphql-tools/utils-9.2.1" sources."value-or-promise-1.0.12" ]; @@ -88601,7 +88461,7 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -88630,18 +88490,18 @@ 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.4.0" // { dependencies = [ sources."@apollo/protobufjs-1.2.6" sources."@types/node-10.17.60" ]; }) - sources."apollo-server-core-3.11.1" + sources."apollo-server-core-3.12.0" sources."apollo-server-env-4.2.1" sources."apollo-server-errors-3.3.1" - sources."apollo-server-express-3.11.1" - sources."apollo-server-plugin-base-3.7.1" - sources."apollo-server-types-3.7.1" + sources."apollo-server-express-3.12.0" + sources."apollo-server-plugin-base-3.7.2" + sources."apollo-server-types-3.8.0" (sources."archive-type-4.0.0" // { dependencies = [ sources."file-type-4.4.0" @@ -88710,7 +88570,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -88820,7 +88680,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.8" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -88931,7 +88791,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.200.1" + sources."flow-parser-0.201.0" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -89342,7 +89202,7 @@ in sources."source-map-resolve-0.5.3" sources."source-map-support-0.5.21" sources."source-map-url-0.4.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -89727,8 +89587,9 @@ in ]; }) sources."@npmcli/name-from-folder-2.0.0" + sources."@pnpm/config.env-replace-1.0.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-1.0.5" + sources."@pnpm/npm-conf-2.1.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@types/acorn-4.0.6" @@ -89743,7 +89604,7 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.0" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/normalize-package-data-2.4.1" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" @@ -89761,7 +89622,7 @@ in sources."arrify-1.0.1" sources."bail-2.0.2" sources."balanced-match-1.0.2" - (sources."boxen-7.0.1" // { + (sources."boxen-7.0.2" // { dependencies = [ sources."chalk-5.2.0" sources."type-fest-2.19.0" @@ -89854,7 +89715,7 @@ in sources."ini-2.0.0" ]; }) - sources."got-12.5.3" + sources."got-12.6.0" sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" @@ -89917,7 +89778,7 @@ in sources."locate-path-7.2.0" sources."longest-streak-3.1.0" sources."lowercase-keys-3.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."map-obj-4.3.0" sources."map-stream-0.1.0" sources."markdown-table-3.0.3" @@ -90052,7 +89913,7 @@ in }) sources."readable-stream-1.0.34" sources."redent-4.0.0" - sources."registry-auth-token-5.0.1" + sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."rehype-parse-8.0.4" sources."rehype-retext-3.0.2" @@ -90083,7 +89944,7 @@ in sources."through2-0.4.2" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -90254,7 +90115,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -90264,7 +90125,7 @@ in sources."convert-source-map-1.9.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -90567,7 +90428,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-5.1.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -90652,8 +90513,8 @@ in }; dependencies = [ sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001458" - sources."electron-to-chromium-1.4.313" + sources."caniuse-lite-1.0.30001464" + sources."electron-to-chromium-1.4.325" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.4" @@ -90723,7 +90584,7 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/yauzl-2.10.0" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" @@ -90733,7 +90594,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1324.0" // { + (sources."aws-sdk-2.1331.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -90957,10 +90818,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.66.1"; + version = "2.68.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.66.1.tgz"; - sha512 = "exm97/VOH6yZPN2is3UC0acc6KF56AANvCg2gAEhyu6dPBueKxNCzrvsjNg/vmXrA8HqJ2jYJMg88YRNaUfylA=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.68.0.tgz"; + sha512 = "r+C5M4J3C7RLiixhxsO/W9Kpb5iB0mFshyn5PXT1cGPkDbx23bnWLOab03jG7uHWIWI01DCipHQyTaeXXqvT3A=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -91106,7 +90967,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."inspect-with-kind-1.0.5" - sources."irregular-plurals-3.4.0" + sources."irregular-plurals-3.4.1" sources."is-alphabetical-1.0.4" sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" @@ -91291,7 +91152,7 @@ in sources."signal-exit-3.0.7" sources."slash-3.0.0" sources."sliced-1.0.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -91396,10 +91257,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "13.27.0"; + version = "13.31.2"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.27.0.tgz"; - sha512 = "SQD/KN2kNHKW3CfDDEMnmbt6i07Y3Wb8s6L8Y+PvvHxmimoJ/tzKz3yBOIGimCfatAk7bw+SmgNzJyozzYZaEA=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.31.2.tgz"; + sha512 = "zoHKus75cLDo82VhWiGTvVNKmchtbDcUuN+1Pe3jlglCPoLS/cBDDNBcNWO6n+qlPV1fPKctuG0zx5/2GReuiA=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.4" // { @@ -91451,7 +91312,7 @@ in sources."@types/express-serve-static-core-4.17.33" sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/request-2.48.8" @@ -91545,7 +91406,7 @@ in sources."cors-2.8.5" sources."create-hash-1.2.0" sources."crypto-js-4.1.1" - sources."csv-parse-5.3.5" + sources."csv-parse-5.3.6" sources."debug-2.6.9" sources."defaults-1.0.4" sources."define-property-1.0.0" @@ -91677,14 +91538,16 @@ in sources."ln-service-54.9.0" ]; }) - (sources."ln-service-54.10.0" // { + (sources."ln-service-54.10.2" // { dependencies = [ - sources."@grpc/grpc-js-1.8.9" + sources."@grpc/grpc-js-1.8.11" sources."@grpc/proto-loader-0.7.5" sources."@types/express-4.17.17" - sources."@types/node-18.13.0" - sources."lightning-7.1.0" - sources."type-fest-3.6.0" + sources."@types/node-18.14.4" + sources."body-parser-1.20.2" + sources."lightning-7.1.2" + sources."raw-body-2.5.2" + sources."type-fest-3.6.1" sources."ws-8.12.1" ]; }) @@ -91922,10 +91785,10 @@ in bash-language-server = nodeEnv.buildNodePackage { name = "bash-language-server"; packageName = "bash-language-server"; - version = "4.7.0"; + version = "4.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.7.0.tgz"; - sha512 = "JLe8bk0/FtOiGIdFWg/2JoAGJctYQyrYpmj24dhCSEAjIq9HHqr9I6L9k32fh9WkWjHcrh6v70Epiv6m+SxvDQ=="; + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.8.2.tgz"; + sha512 = "B/jBGVeRMdQs+fHkEDycxD6L8/nf2WwoH3r+kt+O4GqknZ9AX3gNVE8sGjCOf0iLEvAChi6tqefYRRY2nKM4xw=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -91962,7 +91825,7 @@ in sources."web-tree-sitter-0.20.7" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."zod-3.20.5" + sources."zod-3.21.0" ]; buildInputs = globalBuildInputs; meta = { @@ -91977,10 +91840,10 @@ in bibtex-tidy = nodeEnv.buildNodePackage { name = "bibtex-tidy"; packageName = "bibtex-tidy"; - version = "1.8.5"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/bibtex-tidy/-/bibtex-tidy-1.8.5.tgz"; - sha512 = "dOcnSb/fn2q3T8rDHLBepPFPBcvWJQJuZthBQgXqMx95+DQOnRDvkjhbeDu9wKItR0lJ4xb5bcHwfiGYWryXpQ=="; + url = "https://registry.npmjs.org/bibtex-tidy/-/bibtex-tidy-1.9.0.tgz"; + sha512 = "GBkLNdvdxEjV+eWUpfRPmBXcVSlVXj9rI9R7OCcO/buvDU5330rHVjx/5hBUagckkkNq2pqW+K/nwI0bPQ7ctQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -92117,7 +91980,7 @@ in sources."signal-exit-3.0.7" sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -92361,16 +92224,16 @@ in browser-sync = nodeEnv.buildNodePackage { name = "browser-sync"; packageName = "browser-sync"; - version = "2.28.1"; + version = "2.28.3"; src = fetchurl { - url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.28.1.tgz"; - sha512 = "XAd+jULGQ6TSdxA8ABnK6E0r4HHClnZn/p11sHOQ9dr5Qn4ay8TsrEkNUOiWlJOgLuf49QxlkwpqS7BvfGdCpQ=="; + url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.28.3.tgz"; + sha512 = "gublDeevvAuypnc01SQNGL8fkm4RdIkEagnAJ8Tl9mvr2td3Pl4nVIg5S6fcgoMDEWb8IT7nUHG9YwTATn/k2g=="; }; dependencies = [ sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -92384,8 +92247,8 @@ in sources."binary-extensions-2.2.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browser-sync-client-2.28.1" - sources."browser-sync-ui-2.28.1" + sources."browser-sync-client-2.28.3" + sources."browser-sync-ui-2.28.3" sources."bs-recipes-1.3.4" sources."bs-snippet-injector-2.0.1" sources."bufferutil-4.0.7" @@ -92412,7 +92275,7 @@ in sources."destroy-1.0.4" sources."dev-ip-1.0.1" sources."easy-extender-2.3.4" - sources."eazy-logger-4.0.0" + sources."eazy-logger-4.0.1" sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" @@ -92486,7 +92349,7 @@ in sources."parseurl-1.3.3" sources."picomatch-2.3.1" sources."portscanner-2.2.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."range-parser-1.2.1" sources."raw-body-2.5.2" sources."readdirp-3.6.0" @@ -92540,7 +92403,7 @@ in sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."typescript-4.9.5" - sources."ua-parser-js-1.0.33" + sources."ua-parser-js-1.0.34" sources."universalify-0.1.2" sources."unpipe-1.0.0" sources."utf-8-validate-5.0.10" @@ -92958,7 +92821,7 @@ in sources."sha.js-2.4.11" sources."side-channel-1.0.4" sources."simple-git-2.48.0" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -93050,7 +92913,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -93375,7 +93238,7 @@ in ]; }) sources."single-line-log-0.4.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -93935,7 +93798,7 @@ in sources."source-map-0.5.7" sources."source-map-resolve-0.5.3" sources."source-map-url-0.4.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -94146,18 +94009,18 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.1.145"; + version = "2.1.154"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.145.tgz"; - sha512 = "l8gSezQ5uUFGPUQykz+A3l5WqlbQ6RPJ/0chP7qDyv/jH6ObnT5r4aWzObrfig1BWW0RFFAuryPJoiZiyeoKNQ=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.154.tgz"; + sha512 = "hDL2EkHS/hYLxmi6IvJv3JCR2vLCwvIsThc49NkTzMEJpEAsq72BJC1Es+MOI2q9Me8lGrtlj+63nm/U/Ca3uQ=="; }; dependencies = [ - sources."@jsii/check-node-1.76.0" - sources."@jsii/spec-1.76.0" + sources."@jsii/check-node-1.77.0" + sources."@jsii/spec-1.77.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.36" + sources."@types/node-14.18.37" sources."@xmldom/xmldom-0.8.6" sources."ajv-8.12.0" sources."ansi-regex-5.0.1" @@ -94167,12 +94030,12 @@ in sources."braces-3.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.7.14" - sources."cdk8s-plus-25-2.4.37" + sources."cdk8s-2.7.25" + sources."cdk8s-plus-25-2.4.47" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" - (sources."codemaker-1.76.0" // { + (sources."codemaker-1.77.0" // { dependencies = [ sources."fs-extra-10.1.0" ]; @@ -94181,7 +94044,7 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.30.0" - sources."constructs-10.1.263" + sources."constructs-10.1.272" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -94212,41 +94075,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.76.0" // { + (sources."jsii-1.77.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.76.0" // { + (sources."jsii-pacmak-1.77.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.76.0" // { + (sources."jsii-reflect-1.77.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.76.0" // { + (sources."jsii-rosetta-1.77.0" // { dependencies = [ sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.838" // { + (sources."jsii-srcmak-0.1.847" // { dependencies = [ sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.3.290" + sources."json2jsii-0.3.299" sources."jsonfile-6.1.0" sources."locate-path-5.0.0" sources."lodash.truncate-4.4.2" - sources."log4js-6.8.0" + sources."log4js-6.9.1" sources."lower-case-2.0.2" sources."lru-cache-6.0.0" sources."mdurl-1.0.1" @@ -94256,7 +94119,7 @@ in sources."ms-2.1.2" sources."ncp-2.0.0" sources."no-case-3.0.4" - sources."oo-ascii-tree-1.76.0" + sources."oo-ascii-tree-1.77.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -94350,7 +94213,7 @@ in 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.76.0" // { + (sources."@jsii/check-node-1.77.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -94360,7 +94223,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."@jsii/spec-1.76.0" + sources."@jsii/spec-1.77.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -94409,7 +94272,7 @@ in sources."cliui-6.0.0" sources."clone-2.1.2" sources."code-excerpt-3.0.0" - (sources."codemaker-1.76.0" // { + (sources."codemaker-1.77.0" // { dependencies = [ sources."decamelize-5.0.1" sources."fs-extra-10.1.0" @@ -94421,7 +94284,7 @@ in sources."color-name-1.1.3" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.1.263" + sources."constructs-10.1.272" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" sources."cross-spawn-7.0.3" @@ -94487,7 +94350,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."ink-select-input-4.2.1" + sources."ink-select-input-4.2.2" sources."ink-table-3.0.0" sources."is-ci-2.0.0" sources."is-extglob-2.1.1" @@ -94498,7 +94361,7 @@ in sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - (sources."jsii-1.76.0" // { + (sources."jsii-1.77.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -94516,7 +94379,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-pacmak-1.76.0" // { + (sources."jsii-pacmak-1.77.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -94532,7 +94395,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-reflect-1.76.0" // { + (sources."jsii-reflect-1.77.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -94550,7 +94413,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-rosetta-1.76.0" // { + (sources."jsii-rosetta-1.77.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -94562,7 +94425,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.838" // { + (sources."jsii-srcmak-0.1.847" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -94575,7 +94438,7 @@ in sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."lodash.isequal-4.5.0" - sources."log4js-6.8.0" + sources."log4js-6.9.1" sources."loose-envify-1.4.0" sources."lru-cache-6.0.0" sources."lru_map-0.3.3" @@ -94604,7 +94467,7 @@ in sources."obliterator-2.0.4" sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.76.0" + sources."oo-ascii-tree-1.77.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -94860,7 +94723,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -95102,10 +94965,10 @@ in coc-explorer = nodeEnv.buildNodePackage { name = "coc-explorer"; packageName = "coc-explorer"; - version = "0.26.3"; + version = "0.26.4"; src = fetchurl { - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.3.tgz"; - sha512 = "6+Bo47fjBra0G3ESYfBwEcxEuvVK92h/tbYMxiImm3idveWl6InmiAZm2cqHc9vbjm5i1iNrca6b7EdHdPDArA=="; + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.4.tgz"; + sha512 = "V31svQPcKBMAyA+DaALTbcRP1zogl5u3kaBSXJn2/XQmmFJzZdOt1ZEEbBA4a8nxdRA9e5J430wNGJq/io4bgw=="; }; dependencies = [ sources."@sindresorhus/chunkify-0.2.0" @@ -95219,10 +95082,10 @@ in coc-go = nodeEnv.buildNodePackage { name = "coc-go"; packageName = "coc-go"; - version = "1.3.7"; + version = "1.3.8"; src = fetchurl { - url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.7.tgz"; - sha512 = "gs5BZQUNxFRmff8qMg9ISat86tU9oOrmrEMDGUhr51c4HSbToGQfa3ihrcOorRydw8HwYchKvpIYrrcq/bUihQ=="; + url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.8.tgz"; + sha512 = "7nqJShsXTODYp33bAvNo5PVWn71p1HEBfPbbBgC8sJLreQ2JF8A2Wa1QCO6MG1BVgZ7t8Id5007uvFZQbUYVjA=="; }; dependencies = [ sources."isexe-2.0.0" @@ -95534,7 +95397,7 @@ in sources."ini-1.3.8" sources."int64-buffer-0.1.10" sources."internal-slot-1.0.5" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -95562,7 +95425,7 @@ in ]; }) sources."lodash-4.17.21" - sources."log4js-6.8.0" + sources."log4js-6.9.1" sources."lru-cache-6.0.0" sources."metals-languageclient-0.4.2" sources."minimatch-3.1.2" @@ -95706,13 +95569,13 @@ in coc-pyright = nodeEnv.buildNodePackage { name = "coc-pyright"; packageName = "coc-pyright"; - version = "1.1.295"; + version = "1.1.296"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.295.tgz"; - sha512 = "0GIGhNh7VokXpAxJC5YbWJrZ8Cb4jqmdpP4fpQq9ZZp0+m5UaSPLZhI5RO0yjiMQ+ctX6wurBqrV9NFreNI3GQ=="; + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.296.tgz"; + sha512 = "uRUtbH0SuyLV9iMs7nh9zkzsxHvQ9K9V4LarPQW3oNNplkCh+5+As/NTqKZexj0C3so3IAN5wdyQyFrvrBjF7Q=="; }; dependencies = [ - sources."pyright-1.1.295" + sources."pyright-1.1.298" ]; buildInputs = globalBuildInputs; meta = { @@ -95804,16 +95667,16 @@ in coc-sh = nodeEnv.buildNodePackage { name = "coc-sh"; packageName = "coc-sh"; - version = "1.0.2"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-sh/-/coc-sh-1.0.2.tgz"; - sha512 = "qnRVGp+om7DEd/vUoGyxyY0CW5DULEVbx9D/sEStvhWG5l/ZKqubPk3LP4mgOw6C/bCLvWL3+bhJ+lf2jsI6SQ=="; + url = "https://registry.npmjs.org/coc-sh/-/coc-sh-1.1.0.tgz"; + sha512 = "EenkJ/ZPay+WCXCAmBV1agM/ntNNBAw/XMJ0KOkltFrgYOQ+yjLAIMYs5dcOuL8eh8skABQILv1Wq6e6Ff/qvQ=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."bash-language-server-4.7.0" + sources."bash-language-server-4.8.2" sources."braces-3.0.2" sources."domino-2.1.6" sources."encoding-0.1.13" @@ -95846,7 +95709,7 @@ in sources."web-tree-sitter-0.20.7" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."zod-3.20.5" + sources."zod-3.21.0" ]; buildInputs = globalBuildInputs; meta = { @@ -96122,7 +95985,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -96159,7 +96022,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -96340,7 +96203,7 @@ in ]; }) sources."source-map-0.6.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -96706,7 +96569,7 @@ in ]; }) sources."esprima-4.0.1" - (sources."esquery-1.4.2" // { + (sources."esquery-1.5.0" // { dependencies = [ sources."estraverse-5.3.0" ]; @@ -97449,7 +97312,7 @@ in sources."safe-buffer-5.2.1" sources."semver-6.3.0" sources."source-map-0.6.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -97518,7 +97381,7 @@ in sources."abbrev-1.1.1" sources."accepts-1.3.8" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { @@ -97560,7 +97423,6 @@ in dependencies = [ sources."bytes-3.1.2" sources."debug-2.6.9" - sources."depd-2.0.0" sources."iconv-lite-0.4.24" sources."ms-2.0.0" sources."qs-6.11.0" @@ -97670,7 +97532,7 @@ in sources."underscore-1.2.1" ]; }) - sources."depd-1.1.2" + sources."depd-2.0.0" sources."destroy-1.2.0" sources."detect-indent-6.1.0" sources."detect-newline-3.1.0" @@ -97696,7 +97558,6 @@ in (sources."express-4.18.2" // { dependencies = [ sources."debug-2.6.9" - sources."depd-2.0.0" sources."ms-2.0.0" sources."qs-6.11.0" sources."safe-buffer-5.2.1" @@ -97755,11 +97616,7 @@ in sources."has-yarn-2.1.0" sources."hosted-git-info-4.1.0" sources."http-cache-semantics-4.1.1" - (sources."http-errors-2.0.0" // { - dependencies = [ - sources."depd-2.0.0" - ]; - }) + sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" sources."https-proxy-agent-5.0.1" @@ -98003,7 +97860,6 @@ in sources."ms-2.0.0" ]; }) - sources."depd-2.0.0" sources."ms-2.1.3" ]; }) @@ -98018,7 +97874,7 @@ in sources."smart-buffer-4.2.0" sources."socks-2.7.1" sources."socks-proxy-agent-6.2.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -98034,7 +97890,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.17.11" + sources."systeminformation-5.17.12" (sources."tar-6.1.13" // { dependencies = [ sources."minipass-4.2.4" @@ -98227,7 +98083,7 @@ in sources."run-parallel-1.2.0" sources."semver-6.3.0" sources."slash-4.0.0" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -98270,7 +98126,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -98367,7 +98223,7 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.1" sources."pseudomap-1.0.2" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."quicktask-1.1.0" sources."raf-3.3.2" sources."readable-stream-2.3.8" @@ -98535,10 +98391,10 @@ in cspell = nodeEnv.buildNodePackage { name = "cspell"; packageName = "cspell"; - version = "6.27.0"; + version = "6.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-6.27.0.tgz"; - sha512 = "BhDzXJIRFcpswOy32tgnoOw2OdSM91pQuUpRxfZvRxdM4HBxUrodDYJ5HbBz7D0vNBrXFidFX/157KNX4m1gmg=="; + url = "https://registry.npmjs.org/cspell/-/cspell-6.28.0.tgz"; + sha512 = "HPw7bO0H6l8vXyUF0Ybp9IucVt15Og8YsOfQ4RIaCLU9uJP4RgwjwHVPnCJiQvhC5s4Zbw1WzX/+J8PP83oIUg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -98553,14 +98409,14 @@ in sources."supports-color-5.5.0" ]; }) - sources."@cspell/cspell-bundled-dicts-6.27.0" - sources."@cspell/cspell-pipe-6.27.0" - sources."@cspell/cspell-service-bus-6.27.0" - sources."@cspell/cspell-types-6.27.0" + sources."@cspell/cspell-bundled-dicts-6.28.0" + sources."@cspell/cspell-pipe-6.28.0" + sources."@cspell/cspell-service-bus-6.28.0" + sources."@cspell/cspell-types-6.28.0" sources."@cspell/dict-ada-4.0.1" sources."@cspell/dict-aws-3.0.0" sources."@cspell/dict-bash-4.1.1" - sources."@cspell/dict-companies-3.0.8" + sources."@cspell/dict-companies-3.0.9" sources."@cspell/dict-cpp-4.0.3" sources."@cspell/dict-cryptocurrencies-3.0.1" sources."@cspell/dict-csharp-4.0.2" @@ -98592,7 +98448,7 @@ in sources."@cspell/dict-php-3.0.4" sources."@cspell/dict-powershell-4.0.2" sources."@cspell/dict-public-licenses-2.0.1" - sources."@cspell/dict-python-4.0.1" + sources."@cspell/dict-python-4.0.2" sources."@cspell/dict-r-2.0.1" sources."@cspell/dict-ruby-4.0.2" sources."@cspell/dict-rust-4.0.1" @@ -98603,8 +98459,8 @@ in sources."@cspell/dict-swift-2.0.1" sources."@cspell/dict-typescript-3.1.1" sources."@cspell/dict-vue-3.0.0" - sources."@cspell/dynamic-import-6.27.0" - sources."@cspell/strong-weak-map-6.27.0" + sources."@cspell/dynamic-import-6.28.0" + sources."@cspell/strong-weak-map-6.28.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -98625,15 +98481,15 @@ in sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."core-util-is-1.0.3" - sources."cosmiconfig-8.0.0" + sources."cosmiconfig-8.1.0" sources."crypto-random-string-2.0.0" - sources."cspell-dictionary-6.27.0" - sources."cspell-gitignore-6.27.0" - sources."cspell-glob-6.27.0" - sources."cspell-grammar-6.27.0" - sources."cspell-io-6.27.0" - sources."cspell-lib-6.27.0" - sources."cspell-trie-lib-6.27.0" + sources."cspell-dictionary-6.28.0" + sources."cspell-gitignore-6.28.0" + sources."cspell-glob-6.28.0" + sources."cspell-grammar-6.28.0" + sources."cspell-io-6.28.0" + sources."cspell-lib-6.28.0" + sources."cspell-trie-lib-6.28.0" sources."dot-prop-5.3.0" sources."encoding-0.1.13" sources."error-ex-1.3.2" @@ -98649,7 +98505,7 @@ in sources."flat-cache-3.0.4" sources."flatted-3.2.7" sources."fs.realpath-1.0.0" - sources."gensequence-4.0.3" + sources."gensequence-5.0.2" sources."get-stdin-8.0.0" sources."glob-7.2.3" sources."glob-parent-5.1.2" @@ -98808,7 +98664,7 @@ in sources."atomic-batcher-1.0.2" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" - sources."b4a-1.6.1" + sources."b4a-1.6.2" sources."balanced-match-1.0.2" (sources."base-0.11.2" // { dependencies = [ @@ -99551,7 +99407,7 @@ in dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.36" + sources."@types/node-14.18.37" sources."JSONStream-1.3.5" sources."ajv-6.12.6" sources."asn1-0.2.6" @@ -99744,12 +99600,12 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimatch-5.1.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ansi-colors-4.1.3" (sources."ansi-escapes-4.3.2" // { @@ -99822,7 +99678,7 @@ in sources."defer-to-connect-2.0.1" sources."define-properties-1.2.0" sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."detect-libc-2.0.1" sources."detect-node-2.1.0" sources."dir-compare-3.3.0" @@ -99961,7 +99817,7 @@ in ]; }) sources."lowercase-keys-2.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."lzma-native-8.0.6" sources."make-fetch-happen-10.2.1" sources."map-age-cleaner-0.1.3" @@ -100089,7 +99945,7 @@ in sources."socks-proxy-agent-7.0.0" sources."source-map-0.6.1" sources."source-map-support-0.5.21" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -100814,7 +100670,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -100844,7 +100700,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -101010,7 +100866,7 @@ in sources."color-name-1.1.4" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -101087,7 +100943,7 @@ in sources."@azure/core-http-compat-1.3.0" sources."@azure/core-lro-2.5.1" sources."@azure/core-paging-1.5.0" - (sources."@azure/core-rest-pipeline-1.10.1" // { + (sources."@azure/core-rest-pipeline-1.10.2" // { dependencies = [ sources."@tootallnate/once-2.0.0" sources."debug-4.3.4" @@ -101097,23 +100953,23 @@ in ]; }) sources."@azure/core-tracing-1.0.1" - sources."@azure/core-util-1.1.1" + sources."@azure/core-util-1.2.0" (sources."@azure/identity-2.1.0" // { dependencies = [ sources."uuid-8.3.2" ]; }) sources."@azure/keyvault-keys-4.6.0" - sources."@azure/logger-1.0.3" - (sources."@azure/msal-browser-2.33.0" // { + sources."@azure/logger-1.0.4" + (sources."@azure/msal-browser-2.34.0" // { dependencies = [ - sources."@azure/msal-common-10.0.0" + sources."@azure/msal-common-11.0.0" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.15.0" // { + (sources."@azure/msal-node-1.16.0" // { dependencies = [ - sources."@azure/msal-common-10.0.0" + sources."@azure/msal-common-11.0.0" sources."uuid-8.3.2" ]; }) @@ -101151,19 +101007,19 @@ in }) sources."@fluentui/date-time-utilities-8.5.5" sources."@fluentui/dom-utilities-2.2.5" - sources."@fluentui/font-icons-mdl2-8.5.9" - sources."@fluentui/foundation-legacy-8.2.29" + sources."@fluentui/font-icons-mdl2-8.5.12" + sources."@fluentui/foundation-legacy-8.2.32" sources."@fluentui/keyboard-key-0.4.5" sources."@fluentui/merge-styles-8.5.6" - sources."@fluentui/react-8.106.1" - sources."@fluentui/react-focus-8.8.15" - sources."@fluentui/react-hooks-8.6.17" + sources."@fluentui/react-8.106.4" + sources."@fluentui/react-focus-8.8.18" + sources."@fluentui/react-hooks-8.6.18" sources."@fluentui/react-portal-compat-context-9.0.4" - sources."@fluentui/react-window-provider-2.2.6" + sources."@fluentui/react-window-provider-2.2.7" sources."@fluentui/set-version-8.2.5" - sources."@fluentui/style-utilities-8.9.2" - sources."@fluentui/theme-2.6.23" - sources."@fluentui/utilities-8.13.7" + sources."@fluentui/style-utilities-8.9.5" + sources."@fluentui/theme-2.6.24" + sources."@fluentui/utilities-8.13.8" sources."@gar/promisify-1.1.3" (sources."@gulp-sourcemaps/identity-map-2.0.1" // { dependencies = [ @@ -101196,20 +101052,20 @@ in sources."@js-joda/core-5.5.2" sources."@mapbox/node-pre-gyp-1.0.10" sources."@microsoft/load-themed-styles-1.10.295" - sources."@node-rs/crc32-1.6.0" - sources."@node-rs/crc32-android-arm-eabi-1.6.0" - sources."@node-rs/crc32-android-arm64-1.6.0" - sources."@node-rs/crc32-darwin-arm64-1.6.0" - sources."@node-rs/crc32-darwin-x64-1.6.0" - sources."@node-rs/crc32-freebsd-x64-1.6.0" - sources."@node-rs/crc32-linux-arm-gnueabihf-1.6.0" - sources."@node-rs/crc32-linux-arm64-gnu-1.6.0" - sources."@node-rs/crc32-linux-arm64-musl-1.6.0" - sources."@node-rs/crc32-linux-x64-gnu-1.6.0" - sources."@node-rs/crc32-linux-x64-musl-1.6.0" - sources."@node-rs/crc32-win32-arm64-msvc-1.6.0" - sources."@node-rs/crc32-win32-ia32-msvc-1.6.0" - sources."@node-rs/crc32-win32-x64-msvc-1.6.0" + sources."@node-rs/crc32-1.6.1" + sources."@node-rs/crc32-android-arm-eabi-1.6.1" + sources."@node-rs/crc32-android-arm64-1.6.1" + sources."@node-rs/crc32-darwin-arm64-1.6.1" + sources."@node-rs/crc32-darwin-x64-1.6.1" + sources."@node-rs/crc32-freebsd-x64-1.6.1" + sources."@node-rs/crc32-linux-arm-gnueabihf-1.6.1" + sources."@node-rs/crc32-linux-arm64-gnu-1.6.1" + sources."@node-rs/crc32-linux-arm64-musl-1.6.1" + sources."@node-rs/crc32-linux-x64-gnu-1.6.1" + sources."@node-rs/crc32-linux-x64-musl-1.6.1" + sources."@node-rs/crc32-win32-arm64-msvc-1.6.1" + sources."@node-rs/crc32-win32-ia32-msvc-1.6.1" + sources."@node-rs/crc32-win32-x64-msvc-1.6.1" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -101228,18 +101084,18 @@ in }) sources."@sindresorhus/is-0.14.0" sources."@sqltools/formatter-1.2.5" - sources."@swc/core-1.3.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" sources."@szmarczak/http-timer-1.1.2" sources."@tediousjs/connection-string-0.4.2" sources."@tokenizer/token-0.3.0" @@ -101336,9 +101192,10 @@ in sources."ms-2.1.2" ]; }) - (sources."agentkeepalive-4.2.1" // { + (sources."agentkeepalive-4.3.0" // { dependencies = [ sources."debug-4.3.4" + sources."depd-2.0.0" sources."ms-2.1.2" ]; }) @@ -101443,7 +101300,7 @@ in sources."base64-js-1.5.1" sources."base64id-2.0.0" sources."basic-auth-2.0.1" - sources."better-sqlite3-8.1.0" + sources."better-sqlite3-8.2.0" sources."bignumber.js-9.0.0" sources."binary-extensions-1.13.1" sources."bindings-1.5.0" @@ -101489,7 +101346,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-3.0.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-4.1.2" sources."chardet-0.7.0" (sources."chokidar-2.1.8" // { @@ -101649,7 +101506,7 @@ in sources."each-props-1.3.2" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -101714,7 +101571,7 @@ in ]; }) sources."esprima-4.0.1" - (sources."esquery-1.4.2" // { + (sources."esquery-1.5.0" // { dependencies = [ sources."estraverse-5.3.0" ]; @@ -101844,7 +101701,7 @@ in sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" sources."github-from-package-0.0.0" - sources."glob-9.0.1" + sources."glob-9.2.1" sources."glob-parent-5.1.2" (sources."glob-stream-6.1.0" // { dependencies = [ @@ -102041,7 +101898,7 @@ in sources."ipaddr.js-1.9.1" sources."is-absolute-1.0.0" sources."is-accessor-descriptor-1.0.0" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" @@ -102152,7 +102009,7 @@ in sources."long-5.2.1" sources."loose-envify-1.4.0" sources."lowercase-keys-1.0.1" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."lru-queue-0.1.0" (sources."make-dir-3.1.0" // { dependencies = [ @@ -102195,7 +102052,7 @@ in sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" - sources."minimatch-7.3.0" + sources."minimatch-7.4.2" sources."minimist-1.2.5" sources."minipass-4.2.4" (sources."minipass-collect-1.0.2" // { @@ -102284,7 +102141,7 @@ in ]; }) sources."openapi-types-7.2.3" - sources."swagger-ui-dist-4.16.1" + sources."swagger-ui-dist-4.18.0" ]; }) (sources."mixin-deep-1.3.2" // { @@ -102331,7 +102188,7 @@ in sources."string_decoder-1.1.1" ]; }) - (sources."mysql2-3.1.2" // { + (sources."mysql2-3.2.0" // { dependencies = [ sources."iconv-lite-0.6.3" sources."sqlstring-2.3.3" @@ -102485,13 +102342,13 @@ in sources."path-parse-1.0.7" sources."path-root-0.1.1" sources."path-root-regex-0.1.2" - sources."path-scurry-1.5.0" + sources."path-scurry-1.6.1" sources."path-to-regexp-0.1.7" sources."path-type-4.0.0" sources."peek-readable-4.1.0" - sources."pg-8.9.0" + sources."pg-8.10.0" sources."pg-connection-string-2.5.0" - sources."pg-cursor-2.8.0" + sources."pg-cursor-2.9.0" sources."pg-int8-1.0.1" (sources."pg-native-3.0.1" // { dependencies = [ @@ -102501,9 +102358,9 @@ in sources."string_decoder-0.10.31" ]; }) - sources."pg-pool-3.5.2" + sources."pg-pool-3.6.0" sources."pg-protocol-1.6.0" - sources."pg-query-stream-4.3.0" + sources."pg-query-stream-4.4.0" sources."pg-types-2.2.0" sources."pgpass-1.0.5" sources."picocolors-0.2.1" @@ -102722,7 +102579,7 @@ in sources."source-map-url-0.4.1" sources."sparkles-1.0.1" sources."sparse-bitfield-3.0.3" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -102806,13 +102663,13 @@ in sources."sprintf-js-1.1.2" ]; }) - (sources."terser-5.16.5" // { + (sources."terser-5.16.6" // { dependencies = [ sources."acorn-8.8.2" sources."commander-2.20.3" ]; }) - sources."terser-webpack-plugin-5.3.6" + sources."terser-webpack-plugin-5.3.7" sources."text-table-0.2.0" sources."thenify-3.3.1" sources."thenify-all-1.6.0" @@ -102934,7 +102791,7 @@ in }) sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - (sources."webpack-5.75.0" // { + (sources."webpack-5.76.0" // { dependencies = [ sources."acorn-8.8.2" ]; @@ -103060,7 +102917,7 @@ in sources."@types/mime-3.0.1" sources."@types/minimatch-5.1.2" sources."@types/minimist-1.2.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" @@ -103412,7 +103269,7 @@ in sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -103689,7 +103546,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -103802,7 +103659,7 @@ in ]; }) sources."esprima-4.0.1" - (sources."esquery-1.4.2" // { + (sources."esquery-1.5.0" // { dependencies = [ sources."estraverse-5.3.0" ]; @@ -104112,7 +103969,7 @@ in sources."is-absolute-url-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -104914,7 +104771,7 @@ in sources."source-map-url-0.4.1" sources."sourcemap-codec-1.4.8" sources."spark-md5-3.0.2" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -105381,7 +105238,7 @@ in }) sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -105507,7 +105364,7 @@ in }) sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -105974,7 +105831,7 @@ in sources."@types/keyv-3.1.4" sources."@types/mime-3.0.1" sources."@types/minimatch-5.1.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/responselike-1.0.0" @@ -106103,7 +105960,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -106249,7 +106106,7 @@ in sources."dot-case-3.0.4" sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.325" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -106286,7 +106143,7 @@ in sources."is-stream-1.1.0" ]; }) - (sources."expo-48.0.4" // { + (sources."expo-48.0.6" // { dependencies = [ sources."@babel/runtime-7.21.0" (sources."@expo/config-8.0.2" // { @@ -106304,7 +106161,7 @@ in ]; }) sources."expo-application-5.1.1" - sources."expo-asset-8.9.0" + sources."expo-asset-8.9.1" (sources."expo-constants-14.2.1" // { dependencies = [ sources."@expo/config-8.0.2" @@ -106327,7 +106184,7 @@ in sources."fs-extra-9.1.0" ]; }) - sources."expo-modules-core-1.2.3" + sources."expo-modules-core-1.2.4" (sources."expo-pwa-0.0.124" // { dependencies = [ sources."@expo/image-utils-0.3.23" @@ -106539,7 +106396,7 @@ in sources."kleur-3.0.3" sources."latest-version-5.1.0" sources."leven-3.1.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."lines-and-columns-1.2.4" sources."loader-runner-4.3.0" (sources."loader-utils-2.0.4" // { @@ -106585,7 +106442,7 @@ in sources."mime-types-2.1.35" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" - (sources."mini-css-extract-plugin-2.7.2" // { + (sources."mini-css-extract-plugin-2.7.3" // { dependencies = [ sources."ajv-keywords-5.1.0" sources."schema-utils-4.0.0" @@ -106994,13 +106851,13 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.16.5" // { + (sources."terser-5.16.6" // { dependencies = [ sources."commander-2.20.3" sources."source-map-support-0.5.21" ]; }) - (sources."terser-webpack-plugin-5.3.6" // { + (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -107026,7 +106883,7 @@ in sources."type-fest-0.12.0" sources."type-is-1.6.18" sources."typedarray-0.0.6" - sources."ua-parser-js-0.7.33" + sources."ua-parser-js-0.7.34" sources."unicode-canonical-property-names-ecmascript-2.0.0" sources."unicode-match-property-ecmascript-2.0.0" sources."unicode-match-property-value-ecmascript-2.1.0" @@ -107059,7 +106916,7 @@ in sources."wbuf-1.7.3" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" - (sources."webpack-5.75.0" // { + (sources."webpack-5.76.0" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -107204,7 +107061,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" sources."@types/minimist-1.2.2" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" sources."@types/react-18.0.28" @@ -107235,7 +107092,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -107261,7 +107118,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -107402,7 +107259,7 @@ in sources."color-name-1.1.4" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -107601,7 +107458,7 @@ in sources."semver-5.7.1" ]; }) - sources."csv-parse-5.3.5" + sources."csv-parse-5.3.6" sources."csv-stream-0.2.0" sources."dashdash-1.14.1" sources."debug-4.3.4" @@ -107856,10 +107713,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "11.24.0"; + version = "11.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.24.0.tgz"; - sha512 = "fqwI6rBCvMs3E2pLYEzJYPIB+cmLxV9l+bX7VZHpxhUvbZZrM7271C8sjiBdIh97ue+BvgXHqTDlsW88ZZXt1g=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.24.1.tgz"; + sha512 = "X9p15dZLaR3jbMKvtQgj364khq9EEeC3+PXK0Bo8lwe0XasFmq3d5XsD7XS+a5iziCC7sqzhIiuiUfn5yjYgAg=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.1.2" // { @@ -107875,15 +107732,15 @@ in sources."@google-cloud/precise-date-3.0.1" sources."@google-cloud/projectify-3.0.0" sources."@google-cloud/promisify-2.0.4" - (sources."@google-cloud/pubsub-3.3.0" // { + (sources."@google-cloud/pubsub-3.4.1" // { dependencies = [ sources."google-auth-library-8.7.0" ]; }) - sources."@grpc/grpc-js-1.8.11" + sources."@grpc/grpc-js-1.8.12" sources."@grpc/proto-loader-0.7.5" sources."@jsdevtools/ono-7.1.3" - sources."@jsdoc/salty-0.2.3" + sources."@jsdoc/salty-0.2.5" (sources."@npmcli/fs-2.1.2" // { dependencies = [ sources."semver-7.3.8" @@ -107892,8 +107749,9 @@ in sources."@npmcli/move-file-2.0.1" sources."@opentelemetry/api-1.4.0" sources."@opentelemetry/semantic-conventions-1.3.1" + sources."@pnpm/config.env-replace-1.0.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-1.0.5" + sources."@pnpm/npm-conf-2.1.0" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -107913,7 +107771,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.14.2" + sources."@types/node-18.14.6" sources."@types/rimraf-3.0.2" sources."@types/triple-beam-1.3.2" sources."abbrev-1.1.1" @@ -107923,11 +107781,7 @@ in sources."acorn-jsx-5.3.2" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - (sources."agentkeepalive-4.2.1" // { - dependencies = [ - sources."depd-1.1.2" - ]; - }) + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { @@ -108002,7 +107856,7 @@ in (sources."cacache-16.1.3" // { dependencies = [ sources."glob-8.1.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."minimatch-5.1.6" ]; }) @@ -108092,7 +107946,7 @@ in ]; }) sources."crypto-random-string-2.0.0" - sources."csv-parse-5.3.5" + sources."csv-parse-5.3.6" sources."dashdash-1.14.1" sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" @@ -108218,7 +108072,7 @@ in }) sources."function-bind-1.1.1" sources."gauge-4.0.4" - sources."gaxios-5.0.2" + sources."gaxios-5.1.0" sources."gcp-metadata-5.2.0" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.2.0" @@ -108369,7 +108223,7 @@ in dependencies = [ sources."@tootallnate/once-2.0.0" sources."http-proxy-agent-5.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."socks-proxy-agent-7.0.0" ]; }) @@ -108516,7 +108370,7 @@ in }) sources."readdirp-3.6.0" sources."redeyed-2.1.1" - sources."registry-auth-token-5.0.1" + sources."registry-auth-token-5.0.2" sources."registry-url-5.1.0" (sources."request-2.88.2" // { dependencies = [ @@ -108926,7 +108780,7 @@ in sources."ansi-styles-6.2.1" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -108981,7 +108835,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.14.2" + sources."@types/node-18.14.6" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -109395,7 +109249,7 @@ in sources."internal-slot-1.0.5" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.3.2" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" @@ -109698,15 +109552,15 @@ in ganache = nodeEnv.buildNodePackage { name = "ganache"; packageName = "ganache"; - version = "7.7.5"; + version = "7.7.6"; src = fetchurl { - url = "https://registry.npmjs.org/ganache/-/ganache-7.7.5.tgz"; - sha512 = "H8ybC7l9hhvor61uS4wvQ7UOYpgc4OcqZvFb3XGutPwbxQL4yYDoNjOumfUcq4JalYZF9ojzy95ss7lOvrw76w=="; + url = "https://registry.npmjs.org/ganache/-/ganache-7.7.6.tgz"; + sha512 = "1ba5CERykZijw1kIRGUKKPEUqTDU+sEMElYemAS42w1kunu+/3OS5v+eQsJQ+fCVMEmspploA7S9rEWBcyVsLg=="; }; dependencies = [ sources."@types/bn.js-5.1.1" sources."@types/lru-cache-5.1.1" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/seedrandom-3.0.1" sources."abstract-level-1.0.3" (sources."abstract-leveldown-7.2.0" // { @@ -109813,12 +109667,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-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-linux-arm-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-linux-arm64-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-linux-x64-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-win32-x64-3.0.1" + sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-linux-arm-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-linux-arm64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-linux-x64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-win32-x64-3.0.2" sources."@sideway/address-4.1.4" sources."@sideway/formula-3.0.1" sources."@sideway/pinpoint-2.0.0" @@ -109831,7 +109685,7 @@ in sources."@types/common-tags-1.8.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/node-fetch-2.6.2" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -109858,7 +109712,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -109919,7 +109773,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -110021,8 +109875,8 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."ms-2.1.2" - sources."msgpackr-1.8.4" - (sources."msgpackr-extract-3.0.1" // { + sources."msgpackr-1.8.5" + (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" ]; @@ -110232,7 +110086,7 @@ in sources."@types/vinyl-2.0.7" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" (sources."ansi-escapes-4.3.2" // { dependencies = [ @@ -110313,7 +110167,7 @@ in ]; }) sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."deprecation-2.3.1" sources."dezalgo-1.0.4" sources."diff-5.1.0" @@ -110443,7 +110297,7 @@ in sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-fn-2.1.0" - sources."minimatch-7.3.0" + sources."minimatch-7.4.2" sources."minimist-1.2.8" sources."minipass-3.3.6" sources."minipass-collect-1.0.2" @@ -110498,7 +110352,7 @@ in sources."cacache-16.1.3" sources."glob-8.1.0" sources."http-proxy-agent-5.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" (sources."make-fetch-happen-10.2.1" // { dependencies = [ sources."minipass-fetch-2.1.2" @@ -110596,7 +110450,7 @@ in sources."socks-2.7.1" sources."socks-proxy-agent-6.2.1" sources."sort-keys-4.2.0" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -110999,7 +110853,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/responselike-1.0.0" sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" @@ -111069,7 +110923,7 @@ in }) sources."p-cancelable-2.1.1" sources."pump-3.0.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."query-string-7.1.3" sources."quick-lru-5.1.1" sources."readable-stream-3.6.1" @@ -111118,8 +110972,9 @@ in sources."escape-string-regexp-1.0.5" ]; }) + sources."@pnpm/config.env-replace-1.0.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-1.0.5" + sources."@pnpm/npm-conf-2.1.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@tootallnate/once-1.1.2" @@ -111151,7 +111006,7 @@ in sources."atomically-2.0.1" sources."base64-js-1.5.1" sources."bl-5.1.0" - sources."boxen-7.0.1" + sources."boxen-7.0.2" sources."buffer-6.0.3" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" @@ -111244,7 +111099,7 @@ in ]; }) sources."global-dirs-3.0.1" - sources."got-12.5.3" + sources."got-12.6.0" sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" @@ -111252,7 +111107,7 @@ in sources."has-yarn-3.0.0" (sources."hosted-git-info-5.2.1" // { dependencies = [ - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" ]; }) sources."http-cache-semantics-4.1.1" @@ -111372,7 +111227,7 @@ in sources."read-pkg-up-9.1.0" sources."readable-stream-3.6.1" sources."redent-4.0.0" - sources."registry-auth-token-5.0.1" + sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."require-from-string-2.0.2" sources."resolve-alpn-1.2.1" @@ -111401,7 +111256,7 @@ in }) sources."socks-proxy-agent-5.0.1" sources."source-map-0.6.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -111458,19 +111313,19 @@ in glob = nodeEnv.buildNodePackage { name = "glob"; packageName = "glob"; - version = "9.0.1"; + version = "9.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-9.0.1.tgz"; - sha512 = "psRdn8MI0gRcH0xow0VOhYxXD/6ZaRGmgtfN0oWN/hCgjxpRQBMCl7wE4JRJSAUTdJsW+FmD0EtE0CgJhKqSVw=="; + url = "https://registry.npmjs.org/glob/-/glob-9.2.1.tgz"; + sha512 = "Pxxgq3W0HyA3XUvSXcFhRSs+43Jsx0ddxcFrbjxNGkL2Ak5BAUBxLqI5G6ADDeCHLfzzXFhe0b1yYcctGmytMA=="; }; dependencies = [ sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."fs.realpath-1.0.0" - sources."lru-cache-7.17.0" - sources."minimatch-7.3.0" + sources."lru-cache-7.18.3" + sources."minimatch-7.4.2" sources."minipass-4.2.4" - sources."path-scurry-1.5.0" + sources."path-scurry-1.6.1" ]; buildInputs = globalBuildInputs; meta = { @@ -111729,7 +111584,7 @@ in sources."supports-color-5.5.0" ]; }) - sources."@exodus/schemasafe-1.0.0-rc.9" + sources."@exodus/schemasafe-1.0.0-rc.11" sources."@graphql-cli/common-4.1.0" (sources."@graphql-cli/init-4.1.0" // { dependencies = [ @@ -111826,7 +111681,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.14.2" + sources."@types/node-18.14.6" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -112016,7 +111871,7 @@ in }) sources."internal-slot-1.0.5" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" @@ -112298,10 +112153,10 @@ in graphql-language-service-cli = nodeEnv.buildNodePackage { name = "graphql-language-service-cli"; packageName = "graphql-language-service-cli"; - version = "3.3.15"; + version = "3.3.16"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.3.15.tgz"; - sha512 = "YIWyxOxvrvcXb+IzkmMEtH22Uor4SKGl6E27xaMS2IkVpZtaEgwXeN7kEPFVeSn6I3fCahdMVtfz70IL4tWGxw=="; + url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.3.16.tgz"; + sha512 = "0oZzCte2gpP53+8kuQcRXkPK8gAzvmXTd/kE+6imyJUIvwezZIge2S1L55W0nMeTowov4iMRoE41ncp9ioK83w=="; }; dependencies = [ sources."@ardatan/sync-fetch-0.0.1" @@ -112316,18 +112171,18 @@ in sources."@graphql-tools/batch-execute-8.5.18" sources."@graphql-tools/delegate-9.0.28" sources."@graphql-tools/executor-0.0.15" - sources."@graphql-tools/executor-graphql-ws-0.0.11" + sources."@graphql-tools/executor-graphql-ws-0.0.12" sources."@graphql-tools/executor-http-0.1.9" sources."@graphql-tools/executor-legacy-ws-0.0.9" sources."@graphql-tools/graphql-file-loader-7.5.16" sources."@graphql-tools/import-6.7.17" sources."@graphql-tools/json-file-loader-7.4.17" - sources."@graphql-tools/load-7.8.12" - sources."@graphql-tools/merge-8.3.18" - sources."@graphql-tools/schema-9.0.16" - sources."@graphql-tools/url-loader-7.17.13" + sources."@graphql-tools/load-7.8.13" + sources."@graphql-tools/merge-8.4.0" + sources."@graphql-tools/schema-9.0.17" + sources."@graphql-tools/url-loader-7.17.14" sources."@graphql-tools/utils-9.2.1" - sources."@graphql-tools/wrap-9.3.7" + sources."@graphql-tools/wrap-9.3.8" sources."@graphql-typed-document-node/core-3.1.2" sources."@iarna/toml-2.2.5" sources."@nodelib/fs.scandir-2.1.5" @@ -112337,7 +112192,7 @@ in sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@repeaterjs/repeater-3.0.4" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/parse-json-4.0.0" sources."@types/ws-8.5.4" sources."@vue/compiler-core-3.2.47" @@ -112347,8 +112202,8 @@ in sources."@vue/reactivity-transform-3.2.47" sources."@vue/shared-3.2.47" sources."@whatwg-node/events-0.0.2" - sources."@whatwg-node/fetch-0.8.1" - sources."@whatwg-node/node-fetch-0.3.0" + sources."@whatwg-node/fetch-0.8.2" + sources."@whatwg-node/node-fetch-0.3.1" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."arg-4.1.3" @@ -112400,9 +112255,9 @@ in sources."minimatch-4.2.1" ]; }) - sources."graphql-language-service-5.1.1" - sources."graphql-language-service-server-2.9.5" - sources."graphql-ws-5.11.3" + sources."graphql-language-service-5.1.2" + sources."graphql-language-service-server-2.9.6" + sources."graphql-ws-5.12.0" sources."has-flag-3.0.0" sources."iconv-lite-0.6.3" sources."ignore-5.2.4" @@ -112535,11 +112390,10 @@ in ]; }) sources."@cronvel/get-pixels-3.4.1" - sources."@cspotcode/source-map-support-0.8.1" sources."@graphql-tools/batch-execute-8.5.18" sources."@graphql-tools/delegate-9.0.28" sources."@graphql-tools/executor-0.0.15" - (sources."@graphql-tools/executor-graphql-ws-0.0.11" // { + (sources."@graphql-tools/executor-graphql-ws-0.0.12" // { dependencies = [ sources."isomorphic-ws-5.0.0" sources."ws-8.12.1" @@ -112555,22 +112409,19 @@ in sources."@graphql-tools/graphql-file-loader-7.5.16" sources."@graphql-tools/import-6.7.17" sources."@graphql-tools/json-file-loader-7.4.17" - sources."@graphql-tools/load-7.8.12" - sources."@graphql-tools/merge-8.3.18" - sources."@graphql-tools/schema-9.0.16" - (sources."@graphql-tools/url-loader-7.17.13" // { + sources."@graphql-tools/load-7.8.13" + sources."@graphql-tools/merge-8.4.0" + sources."@graphql-tools/schema-9.0.17" + (sources."@graphql-tools/url-loader-7.17.14" // { dependencies = [ sources."isomorphic-ws-5.0.0" sources."ws-8.12.1" ]; }) sources."@graphql-tools/utils-9.2.1" - sources."@graphql-tools/wrap-9.3.7" + sources."@graphql-tools/wrap-9.3.8" sources."@graphql-typed-document-node/core-3.1.2" sources."@iarna/toml-2.2.5" - sources."@jridgewell/resolve-uri-3.1.0" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.9" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -112607,36 +112458,17 @@ in sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@repeaterjs/repeater-3.0.4" - sources."@swc/core-1.3.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.37" - 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.14.2" + sources."@types/node-18.14.6" sources."@types/ws-8.5.4" sources."@whatwg-node/events-0.0.2" - sources."@whatwg-node/fetch-0.8.1" - sources."@whatwg-node/node-fetch-0.3.0" + sources."@whatwg-node/fetch-0.8.2" + sources."@whatwg-node/node-fetch-0.3.1" sources."accepts-1.3.8" - sources."acorn-8.8.2" - sources."acorn-walk-8.2.0" sources."ansi-escapes-3.2.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."ansicolors-0.3.2" - sources."arg-4.1.3" sources."argparse-2.0.1" sources."array-flatten-1.1.1" sources."array-union-2.1.0" @@ -112688,8 +112520,6 @@ in sources."cookie-signature-1.0.6" sources."cosmiconfig-8.0.0" sources."cosmiconfig-toml-loader-1.0.0" - sources."cosmiconfig-typescript-loader-4.3.0" - sources."create-require-1.1.1" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -112700,7 +112530,6 @@ in sources."debug-4.3.4" sources."depd-1.1.2" sources."destroy-1.0.4" - sources."diff-4.0.2" sources."dir-glob-3.0.1" sources."dset-3.1.2" sources."ee-first-1.1.1" @@ -112744,7 +112573,7 @@ in sources."globby-11.1.0" sources."graceful-fs-4.2.10" sources."graphql-15.4.0" - sources."graphql-config-4.4.1" + sources."graphql-config-4.5.0" (sources."graphql-language-service-interface-2.10.2" // { dependencies = [ sources."graphql-16.6.0" @@ -112762,7 +112591,7 @@ in ]; }) sources."graphql-language-service-utils-2.5.1" - sources."graphql-ws-5.11.3" + sources."graphql-ws-5.12.0" sources."has-flag-4.0.0" sources."http-errors-1.6.3" sources."hyperlinker-1.0.0" @@ -112789,6 +112618,7 @@ in sources."isomorphic-fetch-3.0.0" sources."isomorphic-ws-4.0.1" sources."iterall-1.3.0" + sources."jiti-1.17.1" sources."jpeg-js-0.4.4" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" @@ -112801,7 +112631,6 @@ in sources."lodash.template-4.5.0" sources."lodash.templatesettings-4.2.0" sources."lru-cache-6.0.0" - sources."make-error-1.3.6" sources."media-typer-0.3.0" sources."merge-descriptors-1.0.1" sources."merge2-1.4.1" @@ -112811,7 +112640,7 @@ in sources."mime-1.4.1" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-4.2.1" + sources."minimatch-4.2.3" sources."ms-2.1.2" sources."ndarray-1.0.19" sources."ndarray-pack-1.2.1" @@ -112899,10 +112728,8 @@ in sources."tr46-0.0.3" sources."tree-kit-0.7.4" sources."treeify-1.1.0" - sources."ts-node-10.9.1" sources."tslib-2.5.0" sources."type-is-1.6.18" - sources."typescript-4.9.5" sources."uniq-1.0.1" sources."universalify-0.1.2" sources."unixify-1.0.0" @@ -112910,7 +112737,6 @@ in sources."urlpattern-polyfill-6.0.2" sources."utf-8-validate-6.0.3" sources."utils-merge-1.0.1" - sources."v8-compile-cache-lib-3.0.1" sources."value-or-promise-1.0.12" sources."vary-1.1.2" sources."vscode-languageserver-types-3.17.3" @@ -112928,7 +112754,6 @@ in ]; }) sources."yallist-4.0.0" - sources."yn-3.1.1" sources."yocto-queue-0.1.0" ]; buildInputs = globalBuildInputs; @@ -113241,7 +113066,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."systeminformation-5.17.11" + sources."systeminformation-5.17.12" sources."term-canvas-0.0.5" sources."type-fest-1.4.0" sources."wordwrap-0.0.3" @@ -113641,7 +113466,7 @@ in sources."source-map-resolve-0.5.3" sources."source-map-url-0.4.1" sources."sparkles-1.0.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -114040,7 +113865,7 @@ in sources."source-map-resolve-0.5.3" sources."source-map-url-0.4.1" sources."sparkles-1.0.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -114241,7 +114066,7 @@ in sources."object-inspect-1.12.3" sources."opener-1.5.2" sources."portfinder-1.0.32" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."requires-port-1.0.0" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" @@ -114271,7 +114096,7 @@ in sha512 = "G+4iLhKHEEOHYbk/VEvkVO4oNn1rVlH8N3LdsbH+sYZQo8qJTVP5Zwtz1pMa4vWLzA3mjrFSGG3nBFYoIJHpMQ=="; }; dependencies = [ - sources."bcfg-0.1.7" + sources."bcfg-0.1.8" (sources."bcrypto-5.4.0" // { dependencies = [ sources."bufio-1.0.7" @@ -114308,7 +114133,7 @@ in sources."buffer-map-0.0.7" sources."bufio-1.2.0" sources."bupnp-0.2.6" - sources."bval-0.1.7" + sources."bval-0.1.8" sources."bweb-0.1.12" sources."goosig-0.10.0" sources."hs-client-0.0.13" @@ -114364,7 +114189,7 @@ in sha512 = "3Vm/4S0TDstbOW+OfdTeP2EQ4dolPNqMulTSr31RihwX8cX1DyT4il1Fc9STXXToXTsZuFro2WD/+1m0MWi5Ag=="; }; dependencies = [ - sources."bcfg-0.1.7" + sources."bcfg-0.1.8" sources."bcurl-0.2.0" sources."brq-0.1.8" sources."bsert-0.0.10" @@ -114452,7 +114277,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.36" + sources."@types/node-14.18.37" sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -114462,7 +114287,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1324.0" + sources."aws-sdk-2.1332.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."base64-js-1.5.1" @@ -115051,7 +114876,7 @@ in sources."strip-ansi-6.0.1" sources."strip-final-newline-2.0.0" sources."supports-color-5.5.0" - sources."systeminformation-5.17.11" + sources."systeminformation-5.17.12" sources."util-deprecate-1.0.2" sources."which-2.0.2" sources."wrappy-1.0.2" @@ -115128,7 +114953,7 @@ in sources."is-stream-1.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."jquery-3.6.3" + sources."jquery-3.6.4" sources."jquery.terminal-2.35.3" sources."keyboardevent-key-polyfill-1.1.0" sources."line-reader-0.4.0" @@ -115173,8 +114998,8 @@ in sources."@azure/core-auth-1.4.0" sources."@azure/core-http-2.3.1" sources."@azure/core-tracing-1.0.0-preview.13" - sources."@azure/core-util-1.1.1" - sources."@azure/logger-1.0.3" + sources."@azure/core-util-1.2.0" + sources."@azure/logger-1.0.4" sources."@bmewburn/js-beautify-1.14.7" sources."@bmewburn/vscode-html-languageserver-1.9.0" (sources."@mapbox/node-pre-gyp-1.0.10" // { @@ -115202,7 +115027,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@selderee/plugin-htmlparser2-0.10.0" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" (sources."@types/node-fetch-2.6.2" // { dependencies = [ sources."form-data-3.0.1" @@ -115215,7 +115040,7 @@ in sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."applicationinsights-2.3.6" - sources."applicationinsights-native-metrics-0.0.8" + sources."applicationinsights-native-metrics-0.0.9" sources."aproba-2.0.0" sources."are-we-there-yet-2.0.0" sources."asn1-0.2.6" @@ -115681,7 +115506,7 @@ in sources."proxy-agent-4.0.1" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."raw-body-2.5.2" sources."readable-stream-3.6.1" sources."restore-cursor-2.0.0" @@ -116032,9 +115857,9 @@ in sources."@aws-sdk/service-error-classification-3.229.0" sources."@aws-sdk/shared-ini-file-loader-3.226.0" sources."@aws-sdk/signature-v4-3.226.0" - (sources."@aws-sdk/signature-v4-crt-3.272.0" // { + (sources."@aws-sdk/signature-v4-crt-3.282.0" // { dependencies = [ - sources."@aws-sdk/signature-v4-3.272.0" + sources."@aws-sdk/signature-v4-3.282.0" sources."@aws-sdk/types-3.272.0" sources."@aws-sdk/util-middleware-3.272.0" ]; @@ -116111,7 +115936,7 @@ in }) sources."@tootallnate/once-2.0.0" sources."@types/nanoid-3.0.0" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/ws-8.5.4" sources."abab-2.0.6" sources."abbrev-1.1.1" @@ -116119,7 +115944,11 @@ in sources."acorn-globals-7.0.1" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + (sources."agentkeepalive-4.3.0" // { + dependencies = [ + sources."depd-2.0.0" + ]; + }) sources."aggregate-error-3.1.0" sources."ajv-6.12.6" sources."ansi-0.3.1" @@ -117095,7 +116924,7 @@ in }; dependencies = [ sources."@babel/parser-7.21.2" - sources."@jsdoc/salty-0.2.3" + sources."@jsdoc/salty-0.2.5" sources."@types/linkify-it-3.0.2" sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" @@ -117272,7 +117101,7 @@ in sources."once-1.4.0" sources."path-loader-1.0.12" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."readable-stream-3.6.1" sources."safe-buffer-5.2.1" sources."semver-7.3.8" @@ -117442,7 +117271,7 @@ in }) sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -117502,7 +117331,7 @@ in sources."inherits-2.0.4" sources."internal-slot-1.0.5" sources."ipaddr.js-1.9.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" @@ -118195,7 +118024,7 @@ in sources."source-map-0.5.7" sources."source-map-resolve-0.5.3" sources."source-map-url-0.4.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -118478,7 +118307,7 @@ in sources."picomatch-2.3.1" sources."pkg-up-3.1.0" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."queue-microtask-1.2.3" sources."redeyed-2.1.1" sources."restore-cursor-3.1.0" @@ -118563,7 +118392,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -118641,7 +118470,7 @@ in sources."isbinaryfile-4.0.10" sources."jsonfile-4.0.0" sources."lodash-4.17.21" - (sources."log4js-6.8.0" // { + (sources."log4js-6.9.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -118704,7 +118533,7 @@ in sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."type-is-1.6.18" - sources."ua-parser-js-0.7.33" + sources."ua-parser-js-0.7.34" sources."universalify-0.1.2" sources."unpipe-1.0.0" sources."utf-8-validate-5.0.10" @@ -118843,7 +118672,7 @@ in sources."acorn-walk-7.2.0" sources."agent-base-6.0.2" sources."ansi-colors-4.1.3" - sources."ansi-regex-2.1.1" + sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."aproba-2.0.0" sources."are-we-there-yet-2.0.0" @@ -118881,7 +118710,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."canvas-2.11.0" sources."chalk-2.4.2" sources."chardet-1.5.1" @@ -118889,7 +118718,6 @@ in sources."cipher-base-1.0.4" sources."cliui-7.0.4" sources."clone-deep-4.0.1" - sources."code-point-at-1.1.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."color-support-1.1.3" @@ -118942,7 +118770,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -119054,7 +118882,7 @@ in sources."ipaddr.js-1.9.1" sources."irc-colors-1.5.0" sources."irc-upd-0.11.0" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -119133,7 +118961,13 @@ in sources."nan-2.17.0" sources."napi-build-utils-1.0.2" sources."negotiator-0.6.3" - sources."node-abi-2.30.1" + (sources."node-abi-3.33.0" // { + dependencies = [ + sources."lru-cache-6.0.0" + sources."semver-7.3.8" + sources."yallist-4.0.0" + ]; + }) sources."node-environment-flags-1.0.6" sources."node-fetch-2.6.9" sources."node-gyp-build-4.6.0" @@ -119147,7 +118981,6 @@ in sources."node-releases-2.0.10" sources."nopt-5.0.0" sources."npmlog-5.0.1" - sources."number-is-nan-1.0.1" sources."nwsapi-2.2.2" sources."object-assign-4.1.1" sources."object-inspect-1.12.3" @@ -119174,11 +119007,11 @@ in sources."picomatch-2.3.1" sources."pify-4.0.1" sources."pirates-4.0.5" - (sources."pkg-5.8.0" // { + (sources."pkg-5.8.1" // { dependencies = [ sources."@babel/generator-7.18.2" sources."@babel/parser-7.18.4" - sources."@babel/types-7.18.4" + sources."@babel/types-7.19.0" sources."@jridgewell/gen-mapping-0.3.2" sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -119202,19 +119035,11 @@ in sources."yallist-4.0.0" ]; }) - (sources."prebuild-install-6.1.4" // { + (sources."prebuild-install-7.1.1" // { dependencies = [ - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.7" - sources."detect-libc-1.0.3" - sources."gauge-2.7.4" - sources."is-fullwidth-code-point-1.0.0" - sources."npmlog-4.1.2" - sources."readable-stream-2.3.8" - sources."safe-buffer-5.1.2" - sources."string-width-1.0.2" - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" + sources."decompress-response-6.0.0" + sources."mimic-response-3.1.0" + sources."simple-get-4.0.1" ]; }) sources."prelude-ls-1.1.2" @@ -119294,11 +119119,7 @@ in 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 = [ - sources."ansi-regex-5.0.1" - ]; - }) + sources."strip-ansi-6.0.1" sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" @@ -119382,10 +119203,10 @@ in lcov-result-merger = nodeEnv.buildNodePackage { name = "lcov-result-merger"; packageName = "lcov-result-merger"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-4.0.0.tgz"; - sha512 = "xgyipRVKEASBjJ7urBdx4VW+ofcIoatmMBueHy2i/rt3P9MrOvv1CZ7+cVqOfWIB74RvGMGZE4MiXnWLbFwQEA=="; + url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-4.1.0.tgz"; + sha512 = "31FISg2iX5I8oRY9MpIRoBvH+VYZ4D1799yFBlrupduhYoPuQEWOf6FeSvaNwIbNB/lJo5MpDPysOKvUOcgbwA=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -119981,7 +119802,7 @@ in }) (sources."@npmcli/git-3.0.2" // { dependencies = [ - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" (sources."semver-7.3.8" // { dependencies = [ sources."lru-cache-6.0.0" @@ -120006,18 +119827,18 @@ in sources."@npmcli/package-json-2.0.0" sources."@npmcli/promise-spawn-3.0.0" sources."@npmcli/run-script-4.1.7" - sources."@nrwl/cli-15.7.2" - sources."@nrwl/devkit-15.7.2" - sources."@nrwl/nx-darwin-arm64-15.7.2" - sources."@nrwl/nx-darwin-x64-15.7.2" - sources."@nrwl/nx-linux-arm-gnueabihf-15.7.2" - sources."@nrwl/nx-linux-arm64-gnu-15.7.2" - sources."@nrwl/nx-linux-arm64-musl-15.7.2" - sources."@nrwl/nx-linux-x64-gnu-15.7.2" - sources."@nrwl/nx-linux-x64-musl-15.7.2" - sources."@nrwl/nx-win32-arm64-msvc-15.7.2" - sources."@nrwl/nx-win32-x64-msvc-15.7.2" - sources."@nrwl/tao-15.7.2" + sources."@nrwl/cli-15.8.5" + sources."@nrwl/devkit-15.8.5" + sources."@nrwl/nx-darwin-arm64-15.8.5" + sources."@nrwl/nx-darwin-x64-15.8.5" + sources."@nrwl/nx-linux-arm-gnueabihf-15.8.5" + sources."@nrwl/nx-linux-arm64-gnu-15.8.5" + sources."@nrwl/nx-linux-arm64-musl-15.8.5" + sources."@nrwl/nx-linux-x64-gnu-15.8.5" + sources."@nrwl/nx-linux-x64-musl-15.8.5" + sources."@nrwl/nx-win32-arm64-msvc-15.8.5" + sources."@nrwl/nx-win32-x64-msvc-15.8.5" + sources."@nrwl/tao-15.8.5" sources."@octokit/auth-token-3.0.3" sources."@octokit/core-4.2.0" sources."@octokit/endpoint-7.0.5" @@ -120046,24 +119867,24 @@ in sources."@swc-node/core-1.10.1" sources."@swc-node/register-1.6.2" sources."@swc-node/sourcemap-support-0.3.0" - sources."@swc/core-1.3.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" sources."@tootallnate/once-2.0.0" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" 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.39" // { + (sources."@yarnpkg/parsers-3.0.0-rc.40" // { dependencies = [ sources."argparse-1.0.10" sources."js-yaml-3.14.1" @@ -120074,7 +119895,7 @@ in sources."abbrev-1.1.1" sources."add-stream-1.0.0" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ansi-colors-4.1.3" (sources."ansi-escapes-4.3.2" // { @@ -120113,7 +119934,7 @@ in sources."byte-size-7.0.0" (sources."cacache-16.1.3" // { dependencies = [ - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" ]; }) sources."callsites-3.1.0" @@ -120184,7 +120005,7 @@ in sources."define-lazy-prop-2.0.0" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."deprecation-2.3.1" sources."detect-indent-5.0.0" sources."dezalgo-1.0.4" @@ -120208,13 +120029,14 @@ in sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."estraverse-5.3.0" sources."eventemitter3-4.0.7" sources."execa-5.0.0" (sources."external-editor-3.1.0" // { dependencies = [ sources."iconv-lite-0.4.24" + sources."tmp-0.0.33" ]; }) sources."fast-glob-3.2.12" @@ -120277,7 +120099,7 @@ in sources."has-unicode-2.0.1" (sources."hosted-git-info-5.2.1" // { dependencies = [ - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" ]; }) sources."http-cache-semantics-4.1.1" @@ -120384,7 +120206,7 @@ in }) (sources."make-fetch-happen-10.2.1" // { dependencies = [ - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" ]; }) sources."map-obj-4.3.0" @@ -120482,14 +120304,13 @@ in }) sources."npm-run-path-4.0.1" sources."npmlog-6.0.2" - (sources."nx-15.7.2" // { + (sources."nx-15.8.5" // { dependencies = [ sources."cli-spinners-2.6.1" sources."fast-glob-3.2.7" sources."fs-extra-11.1.0" sources."glob-7.1.4" sources."lines-and-columns-2.0.3" - sources."tmp-0.2.1" (sources."yargs-17.7.1" // { dependencies = [ sources."cliui-8.0.1" @@ -120615,7 +120436,7 @@ in sources."sort-keys-2.0.0" sources."source-map-0.6.1" sources."source-map-support-0.5.21" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -120638,7 +120459,7 @@ in sources."text-extensions-1.9.0" sources."through-2.3.8" sources."through2-4.0.2" - sources."tmp-0.0.33" + sources."tmp-0.2.1" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."treeverse-2.0.0" @@ -121689,7 +121510,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.14.2" + sources."@types/node-18.14.6" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -122381,7 +122202,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -122468,7 +122289,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -122656,7 +122477,7 @@ in sources."internal-slot-1.0.5" sources."invariant-2.2.4" sources."is-accessor-descriptor-1.0.0" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -122719,7 +122540,7 @@ in sources."locate-path-3.0.0" sources."lodash-4.17.21" sources."log-update-2.3.0" - sources."log4js-6.8.0" + sources."log4js-6.9.1" sources."loose-envify-1.4.0" sources."lru-cache-5.1.1" sources."make-dir-1.3.0" @@ -123008,7 +122829,7 @@ in ]; }) sources."source-map-url-0.4.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -123301,7 +123122,7 @@ in sources."eslint-3.19.0" sources."espree-3.5.4" sources."esprima-4.0.1" - (sources."esquery-1.4.2" // { + (sources."esquery-1.5.0" // { dependencies = [ sources."estraverse-5.3.0" ]; @@ -123573,10 +123394,10 @@ in "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { name = "_at_mermaid-js_slash_mermaid-cli"; packageName = "@mermaid-js/mermaid-cli"; - version = "9.4.0"; + version = "10.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.4.0.tgz"; - sha512 = "/Nqs8Xtasw5wvop1PPiqmSx5SUxq/yARH+0EhEHAx8MVdbZXtUnzuK+Yv6NgpD2/Fb84/N3jF08zmIiJSyT5Lg=="; + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-10.0.2.tgz"; + sha512 = "dz5ye9wWJjL3jtWtL6pYeKwo74CeCbn8SpvxKEH4Wuc0esDvSpxC+J/Wlsbd6BKvMzLN2J+5voy03kto0J7mOg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -123586,15 +123407,13 @@ in sources."chalk-2.4.2" ]; }) - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-styles-3.2.1" sources."argparse-2.0.1" - sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bl-4.1.0" - sources."brace-expansion-1.1.11" sources."buffer-5.7.1" sources."buffer-crc32-0.2.13" sources."bufferutil-4.0.7" @@ -123605,8 +123424,7 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."commander-10.0.0" - sources."concat-map-0.0.1" - sources."cosmiconfig-8.0.0" + sources."cosmiconfig-8.1.0" sources."cross-fetch-3.1.5" sources."debug-4.3.4" sources."devtools-protocol-0.0.1094867" @@ -123617,22 +123435,18 @@ in 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."js-yaml-4.1.0" sources."json-parse-even-better-errors-2.3.1" sources."lines-and-columns-1.2.4" - sources."minimatch-3.1.2" sources."mitt-3.0.0" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" @@ -123641,17 +123455,15 @@ in 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-19.7.2" - sources."puppeteer-core-19.7.2" + sources."puppeteer-19.7.3" + sources."puppeteer-core-19.7.3" sources."readable-stream-3.6.1" 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" @@ -123662,12 +123474,12 @@ in sources."tr46-0.0.3" sources."typescript-4.9.5" sources."unbzip2-stream-1.4.3" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."wrappy-1.0.2" - sources."ws-8.11.0" + sources."ws-8.12.1" sources."yauzl-2.10.0" ]; buildInputs = globalBuildInputs; @@ -123838,7 +123650,7 @@ in sources."once-1.4.0" sources."path-loader-1.0.12" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."readable-stream-3.6.1" sources."safe-buffer-5.2.1" sources."semver-7.3.8" @@ -124007,7 +123819,7 @@ in 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.14.2" + sources."@types/node-18.14.6" sources."@types/stack-utils-2.0.1" sources."@types/yargs-16.0.5" sources."@types/yargs-parser-21.0.0" @@ -124394,7 +124206,7 @@ in sources."@tootallnate/once-2.0.0" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" sources."aproba-2.0.0" @@ -124415,7 +124227,7 @@ in sources."console-control-strings-1.1.0" sources."debug-4.3.4" sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."env-paths-2.2.1" @@ -124440,7 +124252,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-lambda-1.0.1" sources."isexe-2.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" sources."make-fetch-happen-10.2.1" sources."minimatch-3.1.2" sources."minipass-3.3.6" @@ -124747,7 +124559,7 @@ in sources."side-channel-1.0.4" sources."signal-exit-3.0.7" sources."sntp-1.0.9" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -124951,7 +124763,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.14.6" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -125473,7 +125285,7 @@ in sources."signal-exit-3.0.7" sources."slasp-0.0.4" sources."slide-1.1.6" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -125531,10 +125343,10 @@ in nodemon = nodeEnv.buildNodePackage { name = "nodemon"; packageName = "nodemon"; - version = "2.0.20"; + version = "2.0.21"; src = fetchurl { - url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz"; - sha512 = "Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw=="; + url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.21.tgz"; + sha512 = "djN/n2549DUtY33S7o1djRCd7dEm0kBnj9c7S9XVXqRUbuggN1MZH/Nqa+5RFQr63Fbefq37nFXAE9VU86yL1A=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -125619,7 +125431,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -126047,7 +125859,7 @@ in sources."signal-exit-3.0.7" sources."slash-3.0.0" sources."slice-ansi-0.0.4" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -126113,10 +125925,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "9.5.1"; + version = "9.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-9.5.1.tgz"; - sha512 = "MzULm9eEWPuPyHmRBxjcKm47KKYYT1gteVOXPlNJbfdaXNtp+sO4y2X3v5g375KudEAGJVDVCoFuk7bFnuuvNg=="; + url = "https://registry.npmjs.org/npm/-/npm-9.6.1.tgz"; + sha512 = "0H8CVfQmclQydUfM+WNhx4WY4sGNFC2+JsFMyaludklz8vL+tWqIB1oAXh+12yb8uta9y5p8fbc2f1d18aU6cQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -126131,10 +125943,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "16.7.10"; + version = "16.7.12"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.7.10.tgz"; - sha512 = "sLDgYD8ebkH9Jd6mPIq7UDGLr3DAxkHl6ZuJrEF4rauLv6DqHBxtnF16MHUPN+/eBt5QbH4GL/+nxfSAFm3TfQ=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.7.12.tgz"; + sha512 = "ejYl/BiWhkUxDs1ISQd/6blgTIfHabSdsfR5JWoA7PK+cGn8hCqVKO5p+nNI2PqX+0F21ExGqkt8b7cg2yxuYg=="; }; dependencies = [ sources."@gar/promisify-1.1.3" @@ -126152,15 +125964,21 @@ in sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.0" + sources."@pnpm/config.env-replace-1.0.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-1.0.5" + sources."@pnpm/npm-conf-2.1.0" sources."@sindresorhus/is-5.3.0" sources."@szmarczak/http-timer-5.0.1" sources."@tootallnate/once-2.0.0" + (sources."@tufjs/models-1.0.0" // { + dependencies = [ + sources."minimatch-6.2.0" + ]; + }) sources."@types/http-cache-semantics-4.0.1" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + sources."agentkeepalive-4.3.0" sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" @@ -126170,7 +125988,7 @@ in sources."argparse-2.0.1" sources."array-union-2.1.0" sources."balanced-match-1.0.2" - (sources."boxen-7.0.1" // { + (sources."boxen-7.0.2" // { dependencies = [ sources."ansi-regex-6.0.1" sources."emoji-regex-9.2.2" @@ -126230,7 +126048,7 @@ in sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."dir-glob-3.0.1" sources."dot-prop-6.0.1" sources."eastasianwidth-0.2.0" @@ -126265,7 +126083,7 @@ in ]; }) sources."globby-11.1.0" - sources."got-12.5.3" + sources."got-12.6.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-unicode-2.0.1" @@ -126319,7 +126137,7 @@ in sources."locate-path-6.0.0" sources."lodash-4.17.21" sources."lowercase-keys-3.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" (sources."make-fetch-happen-10.2.1" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -126340,7 +126158,7 @@ in sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-response-4.0.0" - sources."minimatch-7.3.0" + sources."minimatch-7.4.2" sources."minimist-1.2.8" sources."minipass-4.2.4" (sources."minipass-collect-1.0.2" // { @@ -126422,6 +126240,7 @@ in sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" + sources."path-scurry-1.6.1" sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."proc-log-3.0.0" @@ -126448,7 +126267,7 @@ in }) sources."read-package-json-fast-3.0.2" sources."readable-stream-3.6.1" - sources."registry-auth-token-5.0.1" + sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."remote-git-tags-3.0.0" sources."require-from-string-2.0.2" @@ -126456,7 +126275,11 @@ in sources."responselike-3.0.0" sources."retry-0.12.0" sources."reusify-1.0.4" - sources."rimraf-4.1.2" + (sources."rimraf-4.4.0" // { + dependencies = [ + sources."glob-9.2.1" + ]; + }) sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -126485,7 +126308,7 @@ in sources."source-map-0.6.1" sources."source-map-support-0.5.21" sources."spawn-please-2.0.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -126504,10 +126327,9 @@ in ]; }) sources."to-regex-range-5.0.1" - (sources."tuf-js-1.0.0" // { + (sources."tuf-js-1.1.1" // { dependencies = [ sources."make-fetch-happen-11.0.3" - sources."minimatch-6.2.0" sources."minipass-fetch-3.0.1" ]; }) @@ -126696,33 +126518,34 @@ in orval = nodeEnv.buildNodePackage { name = "orval"; packageName = "orval"; - version = "6.12.0"; + version = "6.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/orval/-/orval-6.12.0.tgz"; - sha512 = "H5iErtFRhXdl09LuWJwCNJz4iaqA4azplZXuJUC1SiSjO3jiIXypxTuuMvZ0126VzhlObUv+gVPiKk1zYwVKAw=="; + url = "https://registry.npmjs.org/orval/-/orval-6.12.1.tgz"; + sha512 = "suMe4eQpSJWEecPoimT0tDroDUGrfHu+yTNEW8GHIKx5HEDDxB2aJFJ47/9EimdD50ABebQ2y3yz8hRIFih5ug=="; }; dependencies = [ sources."@apidevtools/json-schema-ref-parser-9.0.6" sources."@apidevtools/openapi-schemas-2.1.0" sources."@apidevtools/swagger-methods-3.0.2" sources."@apidevtools/swagger-parser-10.1.0" - sources."@asyncapi/specs-4.1.1" + sources."@asyncapi/specs-4.1.2" sources."@esbuild/android-arm-0.15.18" sources."@esbuild/linux-loong64-0.15.18" - sources."@exodus/schemasafe-1.0.0-rc.9" - sources."@ibm-cloud/openapi-ruleset-0.37.3" + sources."@exodus/schemasafe-1.0.0-rc.11" + sources."@ibm-cloud/openapi-ruleset-0.45.5" + sources."@ibm-cloud/openapi-ruleset-utilities-0.0.1" sources."@jsdevtools/ono-7.1.3" sources."@jsep-plugin/regex-1.0.3" sources."@jsep-plugin/ternary-1.1.3" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@orval/angular-6.12.0" - sources."@orval/axios-6.12.0" - sources."@orval/core-6.12.0" - sources."@orval/msw-6.12.0" - sources."@orval/query-6.12.0" - sources."@orval/swr-6.12.0" + sources."@orval/angular-6.12.1" + sources."@orval/axios-6.12.1" + sources."@orval/core-6.12.1" + sources."@orval/msw-6.12.1" + sources."@orval/query-6.12.1" + sources."@orval/swr-6.12.1" sources."@rollup/plugin-commonjs-22.0.2" (sources."@rollup/pluginutils-3.1.0" // { dependencies = [ @@ -126768,7 +126591,7 @@ 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.14.2" + sources."@types/node-18.15.0" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.2" @@ -126926,7 +126749,7 @@ in sources."http2-client-1.3.5" sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" - (sources."ibm-openapi-validator-0.88.3" // { + (sources."ibm-openapi-validator-0.97.5" // { dependencies = [ sources."find-up-3.0.0" ]; @@ -126938,7 +126761,7 @@ in sources."inherits-2.0.4" sources."internal-slot-1.0.5" sources."ip-1.1.8" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" @@ -127415,7 +127238,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -127548,7 +127371,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -127666,7 +127489,7 @@ in sources."acorn-8.8.2" sources."posthtml-0.15.2" sources."posthtml-parser-0.7.2" - sources."terser-5.16.5" + sources."terser-5.16.6" ]; }) (sources."htmlparser2-6.1.0" // { @@ -127693,7 +127516,7 @@ in sources."kind-of-6.0.3" ]; }) - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" @@ -128232,12 +128055,12 @@ 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-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-linux-arm-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-linux-arm64-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-linux-x64-3.0.1" - sources."@msgpackr-extract/msgpackr-extract-win32-x64-3.0.1" + sources."@msgpackr-extract/msgpackr-extract-darwin-arm64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-darwin-x64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-linux-arm-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-linux-arm64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-linux-x64-3.0.2" + sources."@msgpackr-extract/msgpackr-extract-win32-x64-3.0.2" sources."@parcel/bundler-default-2.8.3" sources."@parcel/cache-2.8.3" sources."@parcel/codeframe-2.8.3" @@ -128337,7 +128160,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -128386,7 +128209,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."entities-3.0.1" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -128453,7 +128276,7 @@ in sources."lightningcss-linux-x64-gnu-1.19.0" sources."lightningcss-linux-x64-musl-1.19.0" sources."lightningcss-win32-x64-msvc-1.19.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."lines-and-columns-1.2.4" sources."lmdb-2.5.2" sources."lodash-4.17.21" @@ -128465,8 +128288,8 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."minimatch-5.1.6" - sources."msgpackr-1.8.4" - (sources."msgpackr-extract-3.0.1" // { + sources."msgpackr-1.8.5" + (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" ]; @@ -128559,7 +128382,7 @@ in sources."svgo-2.8.0" sources."symbol-tree-3.2.4" sources."term-size-2.2.1" - (sources."terser-5.16.5" // { + (sources."terser-5.16.6" // { dependencies = [ sources."commander-2.20.3" ]; @@ -129238,7 +129061,7 @@ in ]; }) sources."single-line-log-1.1.2" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -129699,16 +129522,17 @@ in pkg = nodeEnv.buildNodePackage { name = "pkg"; packageName = "pkg"; - version = "5.8.0"; + version = "5.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/pkg/-/pkg-5.8.0.tgz"; - sha512 = "8h9PUDYFi+LOMLbIyGRdP21g08mAtHidSpofSrf8LWhxUWGHymaRzcopEGiynB5EhQmZUKM6PQ9kCImV2TpdjQ=="; + url = "https://registry.npmjs.org/pkg/-/pkg-5.8.1.tgz"; + sha512 = "CjBWtFStCfIiT4Bde9QpJy0KeH19jCfwZRJqHFDFXfhUklCx8JoFmMj3wgnEYIwGmZVNkhsStPHEOnrtrQhEXA=="; }; dependencies = [ sources."@babel/generator-7.18.2" + sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/parser-7.18.4" - sources."@babel/types-7.18.4" + sources."@babel/types-7.19.0" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -129720,8 +129544,6 @@ in sources."agent-base-6.0.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.7" sources."array-union-2.1.0" sources."at-least-node-1.0.0" sources."base64-js-1.5.1" @@ -129735,16 +129557,13 @@ in sources."chalk-4.1.2" sources."chownr-1.1.4" sources."cliui-7.0.4" - sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."console-control-strings-1.1.0" sources."core-util-is-1.0.3" sources."debug-4.3.4" - sources."decompress-response-4.2.1" + sources."decompress-response-6.0.0" sources."deep-extend-0.6.0" - sources."delegates-1.0.0" - sources."detect-libc-1.0.3" + sources."detect-libc-2.0.1" sources."dir-glob-3.0.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -129758,14 +129577,6 @@ in sources."fs-constants-1.0.0" sources."fs-extra-9.1.0" sources."function-bind-1.1.1" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."ansi-regex-2.1.1" - sources."is-fullwidth-code-point-1.0.0" - sources."string-width-1.0.2" - sources."strip-ansi-3.0.1" - ]; - }) sources."get-caller-file-2.0.5" sources."github-from-package-0.0.0" sources."glob-parent-5.1.2" @@ -129774,7 +129585,6 @@ in sources."growly-1.3.0" sources."has-1.0.3" sources."has-flag-4.0.0" - sources."has-unicode-2.0.1" sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" @@ -129796,7 +129606,7 @@ in sources."lru-cache-6.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."mimic-response-2.1.0" + sources."mimic-response-3.1.0" sources."minimist-1.2.8" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" @@ -129806,23 +129616,16 @@ in ]; }) sources."napi-build-utils-1.0.2" - (sources."node-abi-2.30.1" // { - dependencies = [ - sources."semver-5.7.1" - ]; - }) + sources."node-abi-3.33.0" sources."node-fetch-2.6.9" sources."node-notifier-10.0.1" - sources."npmlog-4.1.2" - sources."number-is-nan-1.0.1" - sources."object-assign-4.1.1" sources."once-1.4.0" sources."p-is-promise-3.0.0" sources."path-parse-1.0.7" sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."pkg-fetch-3.4.2" - sources."prebuild-install-6.1.4" + sources."prebuild-install-7.1.1" sources."process-nextick-args-2.0.1" sources."progress-2.0.3" sources."pump-3.0.0" @@ -129836,11 +129639,9 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."semver-7.3.8" - sources."set-blocking-2.0.0" sources."shellwords-0.1.1" - sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" - sources."simple-get-3.1.1" + sources."simple-get-4.0.1" sources."slash-3.0.0" sources."stream-meter-1.0.4" sources."string-width-4.2.3" @@ -129865,7 +129666,6 @@ in sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" - sources."wide-align-1.1.5" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."y18n-5.0.8" @@ -130095,7 +129895,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.17.11" + sources."systeminformation-5.17.12" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."tslib-2.5.0" @@ -130132,10 +129932,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "7.28.0"; + version = "7.29.1"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-7.28.0.tgz"; - sha512 = "nbuY07S2519jEjaV9KLjSFmOwh0b6KIViIdc/RCJkgco8SZa2+ikQQe4N3CfNn5By5BH0dKVbZ8Ox1Mw8wItSA=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-7.29.1.tgz"; + sha512 = "dn+65B2XpMIin7sQZvBIJ2Zyx8Z7LK95qyAvgEPE8qXkWYL/LuwpfMfK9Muc7+zNnpPwiQgtGEsxgOtuabFibQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -130214,23 +130014,23 @@ 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.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.15.0" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."ansi-regex-5.0.1" @@ -130270,7 +130070,7 @@ in sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."jsonfile-6.1.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."make-error-1.3.6" sources."merge2-1.4.1" sources."micromatch-4.0.5" @@ -130451,13 +130251,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "4.10.1"; + version = "4.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-4.10.1.tgz"; - sha512 = "0jDxgg+DruB1kHVNlcspXQB9au62IFfVg9drkhzXudszHNUAQn0lVuu+T8np0uC2z1nKD5S3qPeCyR8u5YFLnA=="; + url = "https://registry.npmjs.org/prisma/-/prisma-4.11.0.tgz"; + sha512 = "4zZmBXssPUEiX+GeL0MUq/Yyie4ltiKmGu7jCJFnYMamNrrulTBc+D+QwAQSJ01tyzeGHlD13kOnqPwRipnlNw=="; }; dependencies = [ - sources."@prisma/engines-4.10.1" + sources."@prisma/engines-4.11.0" ]; buildInputs = globalBuildInputs; meta = { @@ -130472,10 +130272,10 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "4.10.1"; + version = "4.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.10.1.tgz"; - sha512 = "8cMYi37R/wjRfgBB+R24NbHpsdHgF1JhYTDHgxl041fFllW6d0JQCyCdc0nHXgh0QqZs30qYpKQWHzY1dc9e4Q=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.11.0.tgz"; + sha512 = "c/q9ehPjft0QYTXh+b3FFlo2yChR2cd/OsbrK/MvMe7hneEd9pqoIutao9o0OLbhTJay/oXZiCeHBdX2B3fK6Q=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -130511,7 +130311,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.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19" + sources."@prisma/prisma-fmt-wasm-4.11.0-57.8fde8fef4033376662cad983758335009d522acb" sources."@types/js-levenshtein-1.1.1" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" @@ -130524,7 +130324,7 @@ in sources."browserslist-4.21.5" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -130537,7 +130337,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -131029,10 +130829,10 @@ in purs-tidy = nodeEnv.buildNodePackage { name = "purs-tidy"; packageName = "purs-tidy"; - version = "0.9.2"; + version = "0.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/purs-tidy/-/purs-tidy-0.9.2.tgz"; - sha512 = "v7Do4E9Tx2OqEhJXKl5tJxjRcmDilMObm0+XgYphpbMelkUQ+CfhtetIk294byhaL18OpEHqmO6BUkyNCBJDpQ=="; + url = "https://registry.npmjs.org/purs-tidy/-/purs-tidy-0.9.3.tgz"; + sha512 = "SrJLOXmlwmMuO1FbjxlyJfcl5sZY7tiS3ky7mvgrb/jYKsyNZwe+XABQlo+uOXQ9OhfytDyB68zabr78hKQ/IA=="; }; buildInputs = globalBuildInputs; meta = { @@ -131137,7 +130937,7 @@ in sources."prepend-http-2.0.0" sources."prompts-2.4.2" sources."pump-3.0.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."rc-1.2.8" sources."readline-sync-1.4.10" sources."register-protocol-win32-1.1.0" @@ -131170,10 +130970,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.295"; + version = "1.1.298"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.295.tgz"; - sha512 = "nBowWG3qI2+ETtbsPBOnN7S5aNFE2PXn3OfQMM2jNfSh6A9P7z6YOmV9tYt8HYQ8WHX8qcU9b4ALe7nFp0GnBg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.298.tgz"; + sha512 = "lDTIS0a7SJ6TCcACjPl1eXatYbctTgGd/Ji3aZ9oCJTVjZCIpwf4Huj6sSlhC3KmsHFCcLt4t1uFi0z/jm7qYg=="; }; buildInputs = globalBuildInputs; meta = { @@ -131188,10 +130988,10 @@ in quicktype = nodeEnv.buildNodePackage { name = "quicktype"; packageName = "quicktype"; - version = "23.0.9"; + version = "23.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype/-/quicktype-23.0.9.tgz"; - sha512 = "seufowo6TLgUcbguGyqUs9K6ey6PR1OMVAlZH8VHndoKMNE9zK2T9n/suY9dN16zXTNxNpxlonkR30cX8aeCTg=="; + url = "https://registry.npmjs.org/quicktype/-/quicktype-23.0.12.tgz"; + sha512 = "g8NIN7MyJG9/Lh+2NdQ8vv8tHUNXKNZT0zjFyAVuch7NweuCRA67NLoePSkSbolRq0YmnWbEA/a54VW15dtO+A=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -131204,24 +131004,24 @@ in sources."typescript-4.9.4" ]; }) - sources."@swc/core-1.3.36" - sources."@swc/core-darwin-arm64-1.3.36" - sources."@swc/core-darwin-x64-1.3.36" - sources."@swc/core-linux-arm-gnueabihf-1.3.36" - sources."@swc/core-linux-arm64-gnu-1.3.36" - sources."@swc/core-linux-arm64-musl-1.3.36" - sources."@swc/core-linux-x64-gnu-1.3.36" - sources."@swc/core-linux-x64-musl-1.3.36" - sources."@swc/core-win32-arm64-msvc-1.3.36" - sources."@swc/core-win32-ia32-msvc-1.3.36" - sources."@swc/core-win32-x64-msvc-1.3.36" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.11" - sources."@types/node-16.18.13" + sources."@types/node-16.18.14" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.2" @@ -131290,9 +131090,9 @@ in sources."path-is-absolute-1.0.1" sources."pluralize-8.0.0" sources."process-0.11.10" - sources."quicktype-core-23.0.9" - sources."quicktype-graphql-input-23.0.9" - sources."quicktype-typescript-input-23.0.9" + sources."quicktype-core-23.0.12" + sources."quicktype-graphql-input-23.0.12" + sources."quicktype-typescript-input-23.0.12" sources."readable-stream-4.3.0" sources."reduce-flatten-2.0.0" sources."require-directory-2.1.1" @@ -131399,7 +131199,7 @@ in sources."inherits-2.0.4" sources."internal-slot-1.0.5" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -131618,7 +131418,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.14.2" + sources."@types/node-18.15.0" sources."@types/parse-json-4.0.0" sources."@types/prop-types-15.7.5" sources."@types/q-1.5.5" @@ -131809,7 +131609,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -132030,7 +131830,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -132330,7 +132130,7 @@ in sources."is-absolute-url-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -133381,7 +133181,7 @@ in sources."delegates-1.0.0" sources."detect-libc-2.0.1" sources."domexception-4.0.0" - sources."dompurify-2.4.4" + sources."dompurify-2.4.5" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."escalade-3.1.1" @@ -133506,10 +133306,10 @@ in redoc-cli = nodeEnv.buildNodePackage { name = "redoc-cli"; packageName = "redoc-cli"; - version = "0.13.20"; + version = "0.13.21"; src = fetchurl { - url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.20.tgz"; - sha512 = "mmaJFyaAS+kzh2GwX7pi1x4K/zbQynJFv9S4mp3Ra5Rw611XxKjWmuVF3ccPV+TAGEe0rU3fYkMuOQg1pA8RWw=="; + url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.21.tgz"; + sha512 = "pjuPf0HkKqo9qtoHxMK4x5dhC/lJ08O0hO0rJISbSRCf19bPBjQ5lb2mHRu9j6vypTMltyaLtFIfVNveuyF5fQ=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -133522,7 +133322,16 @@ in 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/highlight-7.18.6" + (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/parser-7.21.2" sources."@babel/runtime-7.21.0" sources."@babel/template-7.20.7" @@ -133532,7 +133341,7 @@ in sources."@emotion/memoize-0.8.0" sources."@emotion/stylis-0.8.5" sources."@emotion/unitless-0.7.5" - sources."@exodus/schemasafe-1.0.0-rc.9" + sources."@exodus/schemasafe-1.0.0-rc.11" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" @@ -133541,13 +133350,11 @@ in sources."@jridgewell/trace-mapping-0.3.17" sources."@redocly/ajv-8.11.0" sources."@redocly/openapi-core-1.0.0-beta.123" - sources."@sindresorhus/is-0.14.0" - sources."@szmarczak/http-timer-1.1.2" sources."@types/eslint-8.21.1" 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.36" + sources."@types/node-14.18.37" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -133575,7 +133382,7 @@ in sources."ajv-keywords-3.5.2" sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" - sources."ansi-styles-3.2.1" + sources."ansi-styles-4.3.0" sources."anymatch-3.1.3" sources."argparse-2.0.1" (sources."asn1.js-5.4.1" // { @@ -133594,15 +133401,7 @@ in sources."base64-js-1.5.1" sources."binary-extensions-2.2.0" sources."bn.js-5.2.1" - (sources."boxen-5.1.2" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."supports-color-7.2.0" - ]; - }) + sources."boxen-5.1.2" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."brorand-1.1.0" @@ -133618,44 +133417,26 @@ in }) sources."browserify-zlib-0.2.0" sources."browserslist-4.21.5" - (sources."buffer-4.9.2" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) + sources."buffer-4.9.2" sources."buffer-from-1.1.2" sources."buffer-xor-1.0.3" sources."builtin-status-codes-3.0.0" - (sources."cacheable-request-6.1.0" // { - dependencies = [ - sources."get-stream-5.2.0" - sources."lowercase-keys-2.0.0" - ]; - }) sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001458" - (sources."chalk-2.4.2" // { - dependencies = [ - sources."has-flag-3.0.0" - sources."supports-color-5.5.0" - ]; - }) + sources."caniuse-lite-1.0.30001464" + sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" - sources."ci-info-2.0.0" sources."cipher-base-1.0.4" sources."classnames-2.3.2" sources."cli-boxes-2.2.1" sources."cliui-8.0.1" - sources."clone-response-1.0.3" sources."clsx-1.2.1" - 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."colorette-1.4.0" sources."commander-2.20.3" - sources."configstore-5.0.1" sources."console-browserify-1.2.0" sources."constants-browserify-1.0.0" sources."core-js-3.29.0" @@ -133668,14 +133449,10 @@ in sources."create-hash-1.2.0" sources."create-hmac-1.1.7" sources."crypto-browserify-3.12.0" - sources."crypto-random-string-2.0.0" sources."css-color-keywords-1.0.0" sources."css-to-react-native-3.2.0" sources."debug-4.3.4" sources."decko-1.2.0" - sources."decompress-response-3.3.0" - sources."deep-extend-0.6.0" - sources."defer-to-connect-1.1.3" sources."des.js-1.0.1" (sources."diffie-hellman-5.0.3" // { dependencies = [ @@ -133683,10 +133460,8 @@ in ]; }) sources."domain-browser-1.2.0" - sources."dompurify-2.4.4" - sources."dot-prop-5.3.0" - sources."duplexer3-0.1.5" - sources."electron-to-chromium-1.4.313" + sources."dompurify-2.4.5" + sources."electron-to-chromium-1.4.326" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -133695,12 +133470,10 @@ in }) sources."emoji-regex-8.0.0" sources."encoding-0.1.13" - sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."es6-promise-3.3.1" sources."escalade-3.1.1" - sources."escape-goat-2.1.1" sources."escape-string-regexp-1.0.5" sources."eslint-scope-5.1.1" (sources."esrecurse-4.3.0" // { @@ -133719,16 +133492,12 @@ in sources."foreach-2.0.6" sources."fsevents-2.3.2" sources."get-caller-file-2.0.5" - sources."get-stream-4.1.0" sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" - sources."global-dirs-3.0.1" sources."globals-11.12.0" - sources."got-9.6.0" sources."graceful-fs-4.2.10" sources."handlebars-4.7.7" sources."has-flag-4.0.0" - sources."has-yarn-2.1.0" (sources."hash-base-3.1.0" // { dependencies = [ sources."inherits-2.0.4" @@ -133742,51 +133511,34 @@ in }) sources."hmac-drbg-1.0.1" sources."hoist-non-react-statics-3.3.2" - sources."http-cache-semantics-4.1.1" sources."http2-client-1.3.5" sources."https-browserify-1.0.0" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" - sources."import-lazy-2.1.0" - sources."imurmurhash-0.1.4" sources."inherits-2.0.1" - sources."ini-2.0.0" sources."is-binary-path-2.1.0" - sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-installed-globally-0.4.0" - sources."is-npm-5.0.0" sources."is-number-7.0.0" - sources."is-obj-2.0.0" - sources."is-path-inside-3.0.3" - sources."is-typedarray-1.0.0" - sources."is-yarn-global-0.3.0" - sources."isarray-2.0.5" - sources."jest-worker-27.5.1" + sources."isarray-1.0.0" + (sources."jest-worker-27.5.1" // { + dependencies = [ + sources."supports-color-8.1.1" + ]; + }) sources."js-levenshtein-1.1.6" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."jsesc-2.5.2" - sources."json-buffer-3.0.0" sources."json-parse-even-better-errors-2.3.1" sources."json-pointer-0.6.2" sources."json-schema-traverse-1.0.0" - sources."keyv-3.1.0" - sources."latest-version-5.1.0" sources."loader-runner-4.3.0" sources."lodash-4.17.21" sources."lodash.isequal-4.5.0" sources."loose-envify-1.4.0" - sources."lowercase-keys-1.0.1" - sources."lru-cache-6.0.0" sources."lunr-2.3.9" - (sources."make-dir-3.1.0" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) sources."mark.js-8.11.1" sources."marked-4.2.12" sources."md5.js-1.3.5" @@ -133798,7 +133550,6 @@ in }) sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."mimic-response-1.0.1" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" sources."minimatch-5.1.6" @@ -133806,7 +133557,7 @@ in sources."mkdirp-1.0.4" sources."mobx-6.8.0" sources."mobx-react-7.6.0" - sources."mobx-react-lite-3.4.0" + sources."mobx-react-lite-3.4.3" sources."ms-2.1.2" sources."neo-async-2.6.2" sources."node-fetch-2.6.9" @@ -133815,22 +133566,14 @@ in sources."node-readfiles-0.2.0" sources."node-releases-2.0.10" sources."normalize-path-3.0.0" - sources."normalize-url-4.5.1" sources."oas-kit-common-1.0.8" sources."oas-linter-3.2.2" sources."oas-resolver-2.5.6" sources."oas-schema-walker-1.1.5" sources."oas-validator-5.0.8" sources."object-assign-4.1.1" - sources."once-1.4.0" sources."openapi-sampler-1.3.1" sources."os-browserify-0.3.0" - sources."p-cancelable-1.1.0" - (sources."package-json-6.5.0" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) sources."pako-1.0.11" sources."parse-asn1-5.1.6" sources."path-browserify-0.0.1" @@ -133841,7 +133584,6 @@ in sources."pluralize-8.0.0" sources."polished-4.2.2" sources."postcss-value-parser-4.2.0" - sources."prepend-http-2.0.0" sources."prismjs-1.29.0" sources."process-0.11.10" sources."process-nextick-args-2.0.1" @@ -133851,18 +133593,11 @@ in sources."bn.js-4.12.0" ]; }) - sources."pump-3.0.0" sources."punycode-1.4.1" - sources."pupa-2.1.1" sources."querystring-0.2.0" sources."querystring-es3-0.2.1" sources."randombytes-2.1.0" sources."randomfill-1.0.4" - (sources."rc-1.2.8" // { - dependencies = [ - sources."ini-1.3.8" - ]; - }) sources."react-17.0.2" sources."react-dom-17.0.2" sources."react-is-16.13.1" @@ -133870,35 +133605,25 @@ in (sources."readable-stream-2.3.8" // { dependencies = [ sources."inherits-2.0.4" - sources."isarray-1.0.0" sources."safe-buffer-5.1.2" sources."string_decoder-1.1.1" ]; }) sources."readdirp-3.6.0" - (sources."redoc-2.0.0-rc.77" // { + (sources."redoc-2.0.0" // { dependencies = [ sources."path-browserify-1.0.1" ]; }) sources."reftools-1.1.9" 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" sources."require-from-string-2.0.2" - sources."responselike-1.0.2" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."scheduler-0.20.2" sources."schema-utils-3.1.1" - sources."semver-7.3.8" - (sources."semver-diff-3.1.1" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) sources."serialize-javascript-6.0.1" sources."setimmediate-1.0.5" sources."sha.js-2.4.11" @@ -133909,7 +133634,6 @@ in sources."should-type-1.4.0" sources."should-type-adaptors-1.1.0" sources."should-util-1.0.1" - sources."signal-exit-3.0.7" sources."slugify-1.4.7" sources."source-map-0.6.1" sources."source-map-support-0.5.21" @@ -133919,40 +133643,27 @@ in sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - sources."strip-json-comments-2.0.1" sources."style-loader-3.3.1" - (sources."styled-components-5.3.6" // { + (sources."styled-components-5.3.8" // { dependencies = [ sources."has-flag-3.0.0" sources."supports-color-5.5.0" ]; }) - sources."supports-color-8.1.1" + sources."supports-color-7.2.0" sources."swagger2openapi-7.0.8" sources."tapable-2.2.1" - sources."terser-5.16.5" - sources."terser-webpack-plugin-5.3.6" + sources."terser-5.16.6" + sources."terser-webpack-plugin-5.3.7" sources."timers-browserify-2.0.12" sources."to-arraybuffer-1.0.1" sources."to-fast-properties-2.0.0" - sources."to-readable-stream-1.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."tty-browserify-0.0.0" sources."type-fest-0.20.2" - sources."typedarray-to-buffer-3.1.5" sources."uglify-js-3.17.4" - sources."unique-string-2.0.0" sources."update-browserslist-db-1.0.10" - (sources."update-notifier-5.1.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."supports-color-7.2.0" - ]; - }) (sources."uri-js-4.4.1" // { dependencies = [ sources."punycode-2.3.0" @@ -133963,7 +133674,6 @@ in sources."punycode-1.3.2" ]; }) - sources."url-parse-lax-3.0.0" sources."url-template-2.0.8" (sources."util-0.11.1" // { dependencies = [ @@ -133974,24 +133684,14 @@ in sources."vm-browserify-1.1.2" sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - sources."webpack-5.75.0" + sources."webpack-5.76.0" sources."webpack-sources-3.2.3" sources."whatwg-url-5.0.0" sources."widest-line-3.1.0" sources."wordwrap-1.0.0" - (sources."wrap-ansi-7.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - ]; - }) - sources."wrappy-1.0.2" - sources."write-file-atomic-3.0.3" - sources."xdg-basedir-4.0.0" + sources."wrap-ansi-7.0.0" sources."xtend-4.0.2" sources."y18n-5.0.8" - sources."yallist-4.0.0" sources."yaml-1.10.2" sources."yaml-ast-parser-0.0.43" sources."yargs-17.7.1" @@ -134118,7 +133818,7 @@ in sources."semver-5.7.1" sources."signal-exit-3.0.7" sources."slice-ansi-3.0.0" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -134173,10 +133873,10 @@ in reveal-md = nodeEnv.buildNodePackage { name = "reveal-md"; packageName = "reveal-md"; - version = "5.4.0"; + version = "5.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/reveal-md/-/reveal-md-5.4.0.tgz"; - sha512 = "dbVA4qylRP14g0s2QSiPlxUgDFsvpQhUsT0QiNKEYDWvkgS6kVtA/XPbKSp55NuUXJ66qnrsNKKa4QRWaLxLaw=="; + url = "https://registry.npmjs.org/reveal-md/-/reveal-md-5.4.1.tgz"; + sha512 = "pSNiE7ryND/yopuIktKaESTahSMPI2dLPIYLUCAksan6M4v8V5b1GjDaFCgF1wC0qcTZqUS34I8HBYoMStb/AQ=="; }; dependencies = [ sources."@sindresorhus/is-0.14.0" @@ -134271,13 +133971,13 @@ in }) sources."forwarded-0.2.0" sources."fresh-0.5.2" - sources."fs-extra-10.1.0" + sources."fs-extra-11.1.0" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."get-intrinsic-1.2.0" sources."get-stream-4.1.0" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."glob-parent-5.1.2" sources."global-dirs-3.0.1" sources."got-9.6.0" @@ -134350,7 +134050,7 @@ in sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."once-1.4.0" - sources."open-8.4.0" + sources."open-8.4.2" sources."opts-2.0.2" sources."p-cancelable-1.1.0" (sources."package-json-6.5.0" // { @@ -134481,11 +134181,21 @@ in rimraf = nodeEnv.buildNodePackage { name = "rimraf"; packageName = "rimraf"; - version = "4.1.2"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-4.1.2.tgz"; - sha512 = "BlIbgFryTbw3Dz6hyoWFhKk+unCcHMSkZGrTFVAx2WmttdBSonsdtRlwiuTbDqTKr+UlXIUqJVS4QT5tUzGENQ=="; + url = "https://registry.npmjs.org/rimraf/-/rimraf-4.4.0.tgz"; + sha512 = "X36S+qpCUR0HjXlkDe4NAOhS//aHH0Z+h8Ckf2auGJk3PTnx5rLmrHkwNdbVQuCSUhOyFrlRvFEllZOYE+yZGQ=="; }; + dependencies = [ + sources."balanced-match-1.0.2" + sources."brace-expansion-2.0.1" + sources."fs.realpath-1.0.0" + sources."glob-9.2.1" + sources."lru-cache-7.18.3" + sources."minimatch-7.4.2" + sources."minipass-4.2.4" + sources."path-scurry-1.6.1" + ]; buildInputs = globalBuildInputs; meta = { description = "A deep deletion module for node (like `rm -rf`)"; @@ -134499,10 +134209,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.17.3"; + version = "3.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.17.3.tgz"; - sha512 = "p5LaCXiiOL/wrOkj8djsIDFmyU9ysUxcyW+EKRLHb6TKldJzXpImjcRSR+vgo09DBdofGcOoLOsRyxxG2n5/qQ=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.19.0.tgz"; + sha512 = "xZzJZlH9Ca6cosfdNGPwl2z7Pby8dTi9TrYLPeg6/j7aUoDOhBd706tCUFvbiBj45h/cS7z/a4gS8xd5Yg0jBw=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -134520,13 +134230,23 @@ in "rust-analyzer-build-deps-../../applications/editors/vscode/extensions/rust-analyzer/build-deps" = nodeEnv.buildNodePackage { name = "rust-analyzer"; packageName = "rust-analyzer"; - version = "0.3.1059"; + version = "0.3.1426"; src = ../../applications/editors/vscode/extensions/rust-analyzer/build-deps; dependencies = [ - sources."@eslint/eslintrc-2.0.0" + (sources."@eslint/eslintrc-2.0.0" // { + dependencies = [ + sources."brace-expansion-1.1.11" + sources."minimatch-3.1.2" + ]; + }) sources."@eslint/js-8.35.0" - sources."@hpcc-js/wasm-1.16.6" - sources."@humanwhocodes/config-array-0.11.8" + sources."@hpcc-js/wasm-2.5.0" + (sources."@humanwhocodes/config-array-0.11.8" // { + dependencies = [ + sources."brace-expansion-1.1.11" + sources."minimatch-3.1.2" + ]; + }) sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -134534,22 +134254,23 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@tootallnate/once-1.1.2" sources."@types/json-schema-7.0.11" - sources."@types/node-14.17.34" + sources."@types/node-16.11.68" sources."@types/semver-7.3.13" sources."@types/vscode-1.66.0" - sources."@typescript-eslint/eslint-plugin-5.54.0" - sources."@typescript-eslint/parser-5.54.0" - sources."@typescript-eslint/scope-manager-5.54.0" - sources."@typescript-eslint/type-utils-5.54.0" - sources."@typescript-eslint/types-5.54.0" - sources."@typescript-eslint/typescript-estree-5.54.0" - sources."@typescript-eslint/utils-5.54.0" - sources."@typescript-eslint/visitor-keys-5.54.0" - sources."@vscode/test-electron-2.2.3" + sources."@typescript-eslint/eslint-plugin-5.54.1" + sources."@typescript-eslint/parser-5.54.1" + sources."@typescript-eslint/scope-manager-5.54.1" + sources."@typescript-eslint/type-utils-5.54.1" + sources."@typescript-eslint/types-5.54.1" + sources."@typescript-eslint/typescript-estree-5.54.1" + sources."@typescript-eslint/utils-5.54.1" + sources."@typescript-eslint/visitor-keys-5.54.1" + sources."@vscode/test-electron-2.3.0" sources."acorn-8.8.2" sources."acorn-jsx-5.3.2" sources."agent-base-6.0.2" sources."ajv-6.12.6" + sources."anser-2.1.1" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-2.0.1" @@ -134557,33 +134278,27 @@ in sources."azure-devops-node-api-11.2.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" - sources."big-integer-1.6.51" - sources."binary-0.3.0" (sources."bl-4.1.0" // { dependencies = [ sources."readable-stream-3.6.1" ]; }) - sources."bluebird-3.4.7" sources."boolbase-1.0.0" - sources."brace-expansion-1.1.11" + sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."buffer-5.7.1" sources."buffer-crc32-0.2.13" - sources."buffer-indexof-polyfill-1.0.2" - sources."buffers-0.1.1" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."chainsaw-0.1.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.12" sources."cheerio-select-2.1.0" sources."chownr-1.1.4" - sources."cliui-7.0.4" + sources."ci-info-2.0.0" + sources."cliui-8.0.1" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."commander-7.2.0" - sources."commandpost-1.4.0" sources."concat-map-0.0.1" sources."core-util-is-1.0.3" sources."cross-env-7.0.3" @@ -134606,21 +134321,7 @@ in sources."d3-force-3.0.0" sources."d3-format-3.1.0" sources."d3-geo-3.1.0" - (sources."d3-graphviz-4.5.0" // { - dependencies = [ - sources."d3-color-2.0.0" - sources."d3-dispatch-2.0.0" - sources."d3-drag-2.0.0" - sources."d3-ease-2.0.0" - sources."d3-format-2.0.0" - sources."d3-interpolate-2.0.1" - sources."d3-path-2.0.0" - sources."d3-selection-2.0.0" - sources."d3-timer-2.0.0" - sources."d3-transition-2.0.0" - sources."d3-zoom-2.0.0" - ]; - }) + sources."d3-graphviz-5.0.2" sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" sources."d3-path-3.1.0" @@ -134648,15 +134349,6 @@ in sources."domelementtype-2.3.0" sources."domhandler-5.0.3" sources."domutils-3.0.1" - sources."duplexer2-0.1.4" - (sources."editorconfig-0.15.3" // { - dependencies = [ - sources."commander-2.20.3" - sources."lru-cache-4.1.5" - sources."semver-5.7.1" - sources."yallist-2.1.2" - ]; - }) sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."entities-4.4.0" @@ -134664,11 +134356,14 @@ in sources."escape-string-regexp-4.0.0" (sources."eslint-8.35.0" // { dependencies = [ + sources."brace-expansion-1.1.11" sources."eslint-scope-7.1.1" sources."estraverse-5.3.0" sources."glob-parent-6.0.2" + sources."minimatch-3.1.2" ]; }) + sources."eslint-config-prettier-8.7.0" sources."eslint-scope-5.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -134677,7 +134372,7 @@ in }) sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" - (sources."esquery-1.4.2" // { + (sources."esquery-1.5.0" // { dependencies = [ sources."estraverse-5.3.0" ]; @@ -134701,22 +134396,22 @@ in sources."find-up-5.0.0" sources."flat-cache-3.0.4" sources."flatted-3.2.7" + sources."follow-redirects-1.15.2" sources."fs-constants-1.0.0" sources."fs.realpath-1.0.0" - (sources."fstream-1.0.12" // { - dependencies = [ - sources."rimraf-2.7.1" - ]; - }) sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.2.0" sources."github-from-package-0.0.0" - sources."glob-7.2.3" + (sources."glob-7.2.3" // { + dependencies = [ + sources."brace-expansion-1.1.11" + sources."minimatch-3.1.2" + ]; + }) sources."glob-parent-5.1.2" sources."globals-13.20.0" sources."globby-11.1.0" - sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -134728,12 +134423,14 @@ in sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."ignore-5.2.4" + sources."immediate-3.0.6" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" sources."internmap-2.0.3" + sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -134745,11 +134442,12 @@ in sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" + sources."jszip-3.10.1" sources."keytar-7.9.0" sources."leven-3.1.0" sources."levn-0.4.1" + sources."lie-3.3.0" sources."linkify-it-3.0.3" - sources."listenercount-1.0.1" sources."locate-path-6.0.0" sources."lodash.merge-4.6.2" sources."lru-cache-6.0.0" @@ -134763,9 +134461,8 @@ in sources."micromatch-4.0.5" sources."mime-1.6.0" sources."mimic-response-3.1.0" - sources."minimatch-3.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.8" - sources."mkdirp-0.5.6" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."mute-stream-0.0.8" @@ -134778,8 +134475,14 @@ in sources."object-inspect-1.12.3" sources."once-1.4.0" sources."optionator-0.9.1" + (sources."ovsx-0.5.2" // { + dependencies = [ + sources."commander-6.2.1" + ]; + }) sources."p-limit-3.1.0" sources."p-locate-5.0.0" + sources."pako-1.0.11" sources."parent-module-1.0.1" (sources."parse-semver-1.1.1" // { dependencies = [ @@ -134796,11 +134499,11 @@ in sources."picomatch-2.3.1" sources."prebuild-install-7.1.1" sources."prelude-ls-1.2.1" + sources."prettier-2.8.4" sources."process-nextick-args-2.0.1" - sources."pseudomap-1.0.2" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."queue-microtask-1.2.3" (sources."rc-1.2.8" // { dependencies = [ @@ -134825,7 +134528,6 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."sigmund-1.0.1" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" sources."slash-3.0.0" @@ -134843,7 +134545,6 @@ in sources."text-table-0.2.0" sources."tmp-0.2.1" sources."to-regex-range-5.0.1" - sources."traverse-0.3.9" sources."tslib-2.5.0" (sources."tsutils-3.21.0" // { dependencies = [ @@ -134856,30 +134557,30 @@ in sources."type-fest-0.20.2" sources."typed-rest-client-1.8.9" sources."typescript-4.9.5" - sources."typescript-formatter-7.2.2" sources."uc.micro-1.0.6" sources."underscore-1.13.6" - sources."unzipper-0.10.11" sources."uri-js-4.4.1" sources."url-join-4.0.1" sources."util-deprecate-1.0.2" (sources."vsce-2.15.0" // { dependencies = [ sources."ansi-styles-3.2.1" + sources."brace-expansion-1.1.11" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."commander-6.2.1" sources."escape-string-regexp-1.0.5" sources."has-flag-3.0.0" + sources."minimatch-3.1.2" sources."semver-5.7.1" sources."supports-color-5.5.0" ]; }) - sources."vscode-jsonrpc-8.0.0-next.7" - sources."vscode-languageclient-8.0.0-next.14" - sources."vscode-languageserver-protocol-3.17.0-next.16" - sources."vscode-languageserver-types-3.17.0-next.9" + sources."vscode-jsonrpc-8.1.0" + sources."vscode-languageclient-8.1.0" + sources."vscode-languageserver-protocol-3.17.3" + sources."vscode-languageserver-types-3.17.3" sources."which-2.0.2" sources."word-wrap-1.2.3" sources."wrap-ansi-7.0.0" @@ -134888,7 +134589,7 @@ in sources."xmlbuilder-11.0.1" 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" sources."yauzl-2.10.0" sources."yazl-2.5.1" @@ -134996,7 +134697,7 @@ in sources."object-inspect-1.12.3" (sources."openid-2.0.10" // { dependencies = [ - sources."qs-6.11.0" + sources."qs-6.11.1" ]; }) sources."pause-0.0.1" @@ -135213,10 +134914,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "3.27.0"; + version = "3.28.1"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-3.27.0.tgz"; - sha512 = "+8EDo7x8IJxTj4KqQG71qpX7oq+EZy0NGm/04q3M5jK7L8rLowEtnzq82s93yeNSgmJSMopd3pTzuH9CCWkNMw=="; + url = "https://registry.npmjs.org/serverless/-/serverless-3.28.1.tgz"; + sha512 = "zC+8ItbRYtJkIY5YZkU5RrCGd+JPkn8DUeGpHX6C9NKV/555DppiaMXURcNWJqN6VFV3fhmZrtefTzDF/B6+Rg=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -135251,7 +134952,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/lodash-4.14.191" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.10" sources."agent-base-6.0.2" @@ -135279,7 +134980,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.1324.0" // { + (sources."aws-sdk-2.1332.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -135614,7 +135315,7 @@ in sources."promise-queue-2.2.5" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."querystring-0.2.1" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -135650,7 +135351,7 @@ in sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."simple-git-3.16.1" + sources."simple-git-3.17.0" sources."slash-3.0.0" sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" @@ -136380,11 +136081,47 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1109.0"; + version = "1.1116.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1109.0.tgz"; - sha512 = "sBcibkAfcq6nXr6t0GieDjdc8kQfEf429+M1VKavGfLaJPQNIqSjtOhQJ5FcZqaB/mCWa1szektkHeyAiB4m9A=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1116.0.tgz"; + sha512 = "xe14nvgfY4bMC0VZU9Q+0IF4CPNceEaK4R8mqjTvvRjINu0MfV66lhXJnYRU/oaxAWCoAIPYR0J9LpG45r04yg=="; }; + dependencies = [ + sources."@sentry/core-7.42.0" + sources."@sentry/node-7.42.0" + sources."@sentry/types-7.42.0" + sources."@sentry/utils-7.42.0" + sources."agent-base-6.0.2" + sources."boolean-3.2.0" + sources."cookie-0.4.2" + sources."debug-4.3.4" + sources."define-properties-1.2.0" + sources."detect-node-2.1.0" + sources."es6-error-4.1.1" + sources."escape-string-regexp-4.0.0" + sources."function-bind-1.1.1" + sources."get-intrinsic-1.2.0" + sources."global-agent-3.0.0" + sources."globalthis-1.0.3" + sources."has-1.0.3" + sources."has-property-descriptors-1.0.0" + sources."has-symbols-1.0.3" + sources."https-proxy-agent-5.0.1" + sources."json-stringify-safe-5.0.1" + sources."lru-cache-6.0.0" + sources."lru_map-0.3.3" + sources."matcher-3.0.0" + sources."ms-2.1.2" + sources."object-keys-1.1.1" + sources."roarr-2.15.4" + sources."semver-7.3.8" + sources."semver-compare-1.0.0" + sources."serialize-error-7.0.1" + sources."sprintf-js-1.1.2" + sources."tslib-1.14.1" + sources."type-fest-0.13.1" + sources."yallist-4.0.0" + ]; buildInputs = globalBuildInputs; meta = { description = "snyk library and cli utility"; @@ -136406,7 +136143,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.7" @@ -136554,7 +136291,7 @@ in sources."ansi-styles-6.2.1" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -136602,10 +136339,10 @@ in sql-formatter = nodeEnv.buildNodePackage { name = "sql-formatter"; packageName = "sql-formatter"; - version = "12.1.2"; + version = "12.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-12.1.2.tgz"; - sha512 = "SoFn+9ZflUt8+HYZ/PaifXt1RptcDUn8HXqsWmfXdPV3WeHPgT0qOSJXxHU24d7NOVt9X40MLqf263fNk79XqA=="; + url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-12.1.3.tgz"; + sha512 = "9UnqbunqDVrgyB9A1DLTBH+nzk6GpxTUw7pk9ys07PEF1vADwQN7GmzIWTABcKPOhUmKC6u2lgCI92F2RhdO4g=="; }; dependencies = [ sources."argparse-2.0.1" @@ -136670,7 +136407,7 @@ in sources."atomic-file-rw-0.2.2" sources."attach-ware-1.1.1" sources."available-typed-arrays-1.0.5" - sources."b4a-1.6.1" + sources."b4a-1.6.2" sources."bail-1.0.5" sources."balanced-match-1.0.2" (sources."base-0.11.2" // { @@ -136818,7 +136555,7 @@ in sources."extglob-0.3.2" sources."fast-varint-1.0.1" sources."fastintcompression-0.0.4" - sources."fastpriorityqueue-0.7.2" + sources."fastpriorityqueue-0.7.3" sources."file-uri-to-path-1.0.0" sources."filename-regex-2.0.1" sources."fill-range-2.2.4" @@ -136924,7 +136661,7 @@ in sources."is-alphabetical-1.0.4" sources."is-alphanumerical-1.0.4" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" sources."is-boolean-object-1.1.2" @@ -137676,7 +137413,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1324.0" // { + (sources."aws-sdk-2.1332.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -138087,7 +137824,7 @@ in sources."once-1.4.0" (sources."openid-2.0.10" // { dependencies = [ - sources."qs-6.11.0" + sources."qs-6.11.1" ]; }) sources."options-0.0.6" @@ -138104,7 +137841,7 @@ in sources."parseuri-0.0.6" sources."parseurl-1.3.3" sources."passport-0.3.2" - sources."passport-oauth2-1.6.1" + sources."passport-oauth2-1.7.0" (sources."passport-saml-0.15.0" // { dependencies = [ sources."lodash-3.2.0" @@ -138249,7 +137986,7 @@ in ]; }) sources."source-map-0.6.1" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -138293,7 +138030,7 @@ in sources."lru-cache-6.0.0" sources."mime-2.6.0" sources."ms-2.1.2" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."readable-stream-3.6.1" sources."safe-buffer-5.2.1" sources."semver-7.3.8" @@ -138310,7 +138047,7 @@ in sources."esprima-4.0.1" sources."js-yaml-3.14.1" sources."lodash-3.10.1" - sources."qs-6.11.0" + sources."qs-6.11.1" ]; }) sources."swagger-schema-official-2.0.0-bab6bed" @@ -138650,7 +138387,7 @@ in ]; }) sources."source-map-js-1.0.2" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -138831,10 +138568,10 @@ in svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; - version = "3.0.4"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.0.4.tgz"; - sha512 = "feIyBAA5cSIxq4vq6mwGvGQTHy/wBVQbs5b+/VvE21WN8X7nonAuSqwvZv0UDBowzRka3Rh4gmLPH8rPePz3/w=="; + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.1.0.tgz"; + sha512 = "aSdnsGtndfqtb0dmN5qm9Zjl7wGpqh3cWF35WVCcK96TmGn2NEar4M40QW6bvaPPu089mrkZdpeD3Yar2SERBg=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -138876,25 +138613,25 @@ 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.37" - sources."@swc/core-darwin-arm64-1.3.37" - sources."@swc/core-darwin-x64-1.3.37" - sources."@swc/core-linux-arm-gnueabihf-1.3.37" - sources."@swc/core-linux-arm64-gnu-1.3.37" - sources."@swc/core-linux-arm64-musl-1.3.37" - sources."@swc/core-linux-x64-gnu-1.3.37" - sources."@swc/core-linux-x64-musl-1.3.37" - sources."@swc/core-win32-arm64-msvc-1.3.37" - sources."@swc/core-win32-ia32-msvc-1.3.37" - sources."@swc/core-win32-x64-msvc-1.3.37" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.15.0" sources."@types/pug-2.0.6" - sources."@types/sass-1.43.1" + sources."@types/sass-1.45.0" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."ansi-styles-3.2.1" @@ -138912,7 +138649,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -138930,7 +138667,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -138976,7 +138713,7 @@ in sources."json5-2.2.3" sources."jstransformer-1.0.0" sources."less-4.1.3" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."lru-cache-5.1.1" sources."magic-string-0.27.0" (sources."make-dir-2.1.0" // { @@ -139086,10 +138823,10 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.15.5"; + version = "0.15.6"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.5.tgz"; - sha512 = "UGhMIv+oMQeDEE5fu2buhvDjcuSnW5GzHd9QtOpR11a3wqW7SjINvJQy3MzOSH35+8tQM6fvmj0HQsrTtnR4SA=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.6.tgz"; + sha512 = "jvzTRy2AFcSx6MJLJFZBK9wrLfLkNMhlL4Gwt2wU81fpZ5Hq6yg64pvQP4spRU8O/OfH6glZ66Wh1dQv4Jhpuw=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -139134,25 +138871,25 @@ 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.37" - sources."@swc/core-darwin-arm64-1.3.37" - sources."@swc/core-darwin-x64-1.3.37" - sources."@swc/core-linux-arm-gnueabihf-1.3.37" - sources."@swc/core-linux-arm64-gnu-1.3.37" - sources."@swc/core-linux-arm64-musl-1.3.37" - sources."@swc/core-linux-x64-gnu-1.3.37" - sources."@swc/core-linux-x64-musl-1.3.37" - sources."@swc/core-win32-arm64-msvc-1.3.37" - sources."@swc/core-win32-ia32-msvc-1.3.37" - sources."@swc/core-win32-x64-msvc-1.3.37" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.15.0" sources."@types/pug-2.0.6" - sources."@types/sass-1.43.1" + sources."@types/sass-1.45.0" (sources."@vscode/emmet-helper-2.8.6" // { dependencies = [ sources."vscode-uri-2.1.2" @@ -139175,7 +138912,7 @@ in sources."browserslist-4.21.5" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -139194,7 +138931,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."emmet-2.3.6" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -139242,7 +138979,7 @@ in sources."jsonc-parser-2.3.1" sources."jstransformer-1.0.0" sources."less-4.1.3" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."lodash-4.17.21" sources."lower-case-2.0.2" sources."lru-cache-5.1.1" @@ -139326,7 +139063,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."svelte-3.55.1" sources."svelte-preprocess-5.0.1" - sources."svelte2tsx-0.6.2" + sources."svelte2tsx-0.6.3" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" @@ -139600,7 +139337,7 @@ in sources."form-data-4.0.0" (sources."formidable-2.1.2" // { dependencies = [ - sources."qs-6.11.0" + sources."qs-6.11.1" ]; }) sources."fragment-cache-0.2.1" @@ -139825,7 +139562,7 @@ in sources."lru-cache-6.0.0" sources."mime-2.6.0" sources."ms-2.1.2" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."readable-stream-3.6.1" sources."semver-7.3.8" sources."superagent-7.1.6" @@ -140080,23 +139817,23 @@ 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.37" - sources."@swc/core-darwin-arm64-1.3.37" - sources."@swc/core-darwin-x64-1.3.37" - sources."@swc/core-linux-arm-gnueabihf-1.3.37" - sources."@swc/core-linux-arm64-gnu-1.3.37" - sources."@swc/core-linux-arm64-musl-1.3.37" - sources."@swc/core-linux-x64-gnu-1.3.37" - sources."@swc/core-linux-x64-musl-1.3.37" - sources."@swc/core-win32-arm64-msvc-1.3.37" - sources."@swc/core-win32-ia32-msvc-1.3.37" - sources."@swc/core-win32-x64-msvc-1.3.37" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.15.0" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -140134,7 +139871,7 @@ in sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."make-error-1.3.6" sources."merge2-1.4.1" sources."micromatch-4.0.5" @@ -140515,10 +140252,10 @@ in terser = nodeEnv.buildNodePackage { name = "terser"; packageName = "terser"; - version = "5.16.5"; + version = "5.16.6"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.16.5.tgz"; - sha512 = "qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg=="; + url = "https://registry.npmjs.org/terser/-/terser-5.16.6.tgz"; + sha512 = "IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -140715,7 +140452,7 @@ in sources."rimraf-2.6.3" sources."semver-5.7.1" sources."slice-ansi-4.0.0" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -141099,7 +140836,7 @@ in sources."xtend-2.1.2" ]; }) - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -141504,7 +141241,7 @@ in sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."internal-slot-1.0.5" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -141638,7 +141375,7 @@ in }) sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -141677,7 +141414,7 @@ in sources."inherits-2.0.4" sources."internal-slot-1.0.5" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -141817,7 +141554,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -142219,7 +141956,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -142915,7 +142652,7 @@ in sources."psl-1.9.0" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."qs-6.11.0" + sources."qs-6.11.1" sources."range-parser-1.2.1" sources."raw-body-2.4.0" sources."rc-1.2.8" @@ -143291,7 +143028,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -143759,7 +143496,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -144658,7 +144395,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/responselike-1.0.0" sources."@xmldom/xmldom-0.8.6" sources."ajv-6.12.6" @@ -145063,23 +144800,23 @@ 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.37" - sources."@swc/core-darwin-arm64-1.3.37" - sources."@swc/core-darwin-x64-1.3.37" - sources."@swc/core-linux-arm-gnueabihf-1.3.37" - sources."@swc/core-linux-arm64-gnu-1.3.37" - sources."@swc/core-linux-arm64-musl-1.3.37" - sources."@swc/core-linux-x64-gnu-1.3.37" - sources."@swc/core-linux-x64-musl-1.3.37" - sources."@swc/core-win32-arm64-msvc-1.3.37" - sources."@swc/core-win32-ia32-msvc-1.3.37" - sources."@swc/core-win32-x64-msvc-1.3.37" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" 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.14.2" + sources."@types/node-18.15.0" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."arg-4.1.3" @@ -145203,8 +144940,9 @@ in dependencies = [ sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" + sources."@pnpm/config.env-replace-1.0.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-1.0.5" + sources."@pnpm/npm-conf-2.1.0" sources."@primer/octicons-17.10.2" sources."@sindresorhus/is-5.3.0" sources."@socket.io/component-emitter-3.1.0" @@ -145212,7 +144950,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" - sources."@types/node-16.18.13" + sources."@types/node-16.18.14" sources."@types/triple-beam-1.3.2" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" @@ -145326,7 +145064,7 @@ in sources."destroy-1.2.0" sources."detective-5.2.1" sources."diff-5.1.0" - sources."diff2html-3.4.31" + sources."diff2html-3.4.33" (sources."diffie-hellman-5.0.3" // { dependencies = [ sources."bn.js-4.12.0" @@ -145387,7 +145125,7 @@ in sources."getmac-5.20.0" sources."glob-7.2.3" sources."gopd-1.0.1" - sources."got-12.5.3" + sources."got-12.6.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-symbols-1.0.3" @@ -145432,7 +145170,7 @@ in sources."is-utf8-0.2.1" sources."is-wsl-2.2.0" sources."isarray-1.0.0" - sources."jquery-3.6.3" + sources."jquery-3.6.4" sources."jquery-ui-1.13.2" sources."json-buffer-3.0.1" sources."jsonparse-1.3.1" @@ -145474,7 +145212,7 @@ in sources."minimalistic-crypto-utils-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.8" - sources."mkdirp-2.1.3" + sources."mkdirp-2.1.5" sources."mkdirp-classic-0.5.3" sources."module-deps-6.2.3" sources."moment-2.29.4" @@ -145540,13 +145278,13 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."registry-auth-token-5.0.1" + sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."require-directory-2.1.1" sources."resolve-1.22.1" sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" - sources."rimraf-4.1.2" + sources."rimraf-4.1.4" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.2" @@ -145703,7 +145441,7 @@ in sources."@types/debug-4.1.7" sources."@types/is-empty-1.2.1" sources."@types/ms-0.7.31" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" sources."abbrev-2.0.0" @@ -145808,14 +145546,15 @@ in vega-cli = nodeEnv.buildNodePackage { name = "vega-cli"; packageName = "vega-cli"; - version = "5.22.1"; + version = "5.24.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.22.1.tgz"; - sha512 = "gX4TrHLo1nsBiLC/bZkWnZANp1ib4b4+3drekhCkJv0ne+Ti9Xuf5b2G8yqYv4pmT/sB5/ClvxFKmm1Ol0tFIQ=="; + url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.24.0.tgz"; + sha512 = "sAkOdSVlZx51N0Eyz3EQUsWSfoTTlszeUl9QMRvEVVetxQcj/7V4LyXitXjJ4Spx2Ado1csiYHlS1lMvXb9gDA=="; }; dependencies = [ sources."@mapbox/node-pre-gyp-1.0.10" - sources."@types/estree-0.0.50" + sources."@types/estree-1.0.0" + sources."@types/geojson-7946.0.10" sources."abbrev-1.1.1" sources."agent-base-6.0.2" sources."ansi-regex-5.0.1" @@ -145921,40 +145660,36 @@ in }) sources."tr46-0.0.3" sources."util-deprecate-1.0.2" - sources."vega-5.22.1" - sources."vega-canvas-1.2.6" - sources."vega-crossfilter-4.1.0" - sources."vega-dataflow-5.7.4" - sources."vega-encode-4.9.0" - sources."vega-event-selector-3.0.0" - sources."vega-expression-5.0.0" - sources."vega-force-4.1.0" - sources."vega-format-1.1.0" - sources."vega-functions-5.13.0" - sources."vega-geo-4.4.0" - sources."vega-hierarchy-4.1.0" - sources."vega-label-1.2.0" - sources."vega-loader-4.5.0" - sources."vega-parser-6.1.4" - sources."vega-projection-1.5.0" - sources."vega-regression-1.1.0" - sources."vega-runtime-6.1.3" - sources."vega-scale-7.2.0" - sources."vega-scenegraph-4.10.1" - (sources."vega-selections-5.4.0" // { - dependencies = [ - sources."d3-array-3.1.1" - ]; - }) - sources."vega-statistics-1.8.0" - sources."vega-time-2.1.0" - sources."vega-transforms-4.10.0" - sources."vega-typings-0.22.3" - sources."vega-util-1.17.0" - sources."vega-view-5.11.0" - sources."vega-view-transforms-4.5.8" - sources."vega-voronoi-4.2.0" - sources."vega-wordcloud-4.1.3" + sources."vega-5.24.0" + sources."vega-canvas-1.2.7" + sources."vega-crossfilter-4.1.1" + sources."vega-dataflow-5.7.5" + sources."vega-encode-4.9.1" + sources."vega-event-selector-3.0.1" + sources."vega-expression-5.0.1" + sources."vega-force-4.2.0" + sources."vega-format-1.1.1" + sources."vega-functions-5.13.1" + sources."vega-geo-4.4.1" + sources."vega-hierarchy-4.1.1" + sources."vega-label-1.2.1" + sources."vega-loader-4.5.1" + sources."vega-parser-6.2.0" + sources."vega-projection-1.6.0" + sources."vega-regression-1.1.1" + sources."vega-runtime-6.1.4" + sources."vega-scale-7.3.0" + sources."vega-scenegraph-4.10.2" + sources."vega-selections-5.4.1" + sources."vega-statistics-1.8.1" + sources."vega-time-2.1.1" + sources."vega-transforms-4.10.1" + sources."vega-typings-0.24.0" + sources."vega-util-1.17.1" + sources."vega-view-5.11.1" + sources."vega-view-transforms-4.5.9" + sources."vega-voronoi-4.2.1" + sources."vega-wordcloud-4.1.4" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."wide-align-1.1.5" @@ -145985,7 +145720,8 @@ in }; dependencies = [ sources."@types/clone-2.1.1" - sources."@types/estree-0.0.50" + sources."@types/estree-1.0.0" + sources."@types/geojson-7946.0.10" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."cliui-8.0.1" @@ -146036,40 +145772,36 @@ in }) sources."tr46-0.0.3" sources."tslib-2.5.0" - sources."vega-5.22.1" - sources."vega-canvas-1.2.6" - sources."vega-crossfilter-4.1.0" - sources."vega-dataflow-5.7.4" - sources."vega-encode-4.9.0" - sources."vega-event-selector-3.0.0" - sources."vega-expression-5.0.0" - sources."vega-force-4.1.0" - sources."vega-format-1.1.0" - sources."vega-functions-5.13.0" - sources."vega-geo-4.4.0" - sources."vega-hierarchy-4.1.0" - sources."vega-label-1.2.0" - sources."vega-loader-4.5.0" - sources."vega-parser-6.1.4" - sources."vega-projection-1.5.0" - sources."vega-regression-1.1.0" - sources."vega-runtime-6.1.3" - sources."vega-scale-7.2.0" - sources."vega-scenegraph-4.10.1" - (sources."vega-selections-5.4.0" // { - dependencies = [ - sources."d3-array-3.1.1" - ]; - }) - sources."vega-statistics-1.8.0" - sources."vega-time-2.1.0" - sources."vega-transforms-4.10.0" - sources."vega-typings-0.22.3" - sources."vega-util-1.17.0" - sources."vega-view-5.11.0" - sources."vega-view-transforms-4.5.8" - sources."vega-voronoi-4.2.0" - sources."vega-wordcloud-4.1.3" + sources."vega-5.24.0" + sources."vega-canvas-1.2.7" + sources."vega-crossfilter-4.1.1" + sources."vega-dataflow-5.7.5" + sources."vega-encode-4.9.1" + sources."vega-event-selector-3.0.1" + sources."vega-expression-5.0.1" + sources."vega-force-4.2.0" + sources."vega-format-1.1.1" + sources."vega-functions-5.13.1" + sources."vega-geo-4.4.1" + sources."vega-hierarchy-4.1.1" + sources."vega-label-1.2.1" + sources."vega-loader-4.5.1" + sources."vega-parser-6.2.0" + sources."vega-projection-1.6.0" + sources."vega-regression-1.1.1" + sources."vega-runtime-6.1.4" + sources."vega-scale-7.3.0" + sources."vega-scenegraph-4.10.2" + sources."vega-selections-5.4.1" + sources."vega-statistics-1.8.1" + sources."vega-time-2.1.1" + sources."vega-transforms-4.10.1" + sources."vega-typings-0.24.0" + sources."vega-util-1.17.1" + sources."vega-view-5.11.1" + sources."vega-view-transforms-4.5.9" + sources."vega-voronoi-4.2.1" + sources."vega-wordcloud-4.1.4" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."wrap-ansi-7.0.0" @@ -146090,10 +145822,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "28.16.7"; + version = "28.16.15"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-28.16.7.tgz"; - sha512 = "IEplmvPAhsMtAapp3MUMWYS5UNaS55ZO1ZkWPYCIIFyhMufmtyomlUbfzNYtNhTinf0L3hbELNvIp/ReEM5IYw=="; + url = "https://registry.npmjs.org/vercel/-/vercel-28.16.15.tgz"; + sha512 = "BMf/PYgJ5Tz5q9w/poWCKIQ2XHPiFpU1gdMpujOFlBwNHXp2XbOiIJkoEKSSNzYIJibrpBha/KE93qw4bgFN/w=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -146284,7 +146016,7 @@ in }) sources."@npmcli/move-file-1.1.2" sources."@npmcli/package-json-2.0.0" - (sources."@remix-run/dev-1.13.0" // { + (sources."@remix-run/dev-1.14.0" // { dependencies = [ sources."@esbuild/android-arm-0.16.3" sources."@esbuild/android-arm64-0.16.3" @@ -146311,7 +146043,7 @@ in sources."arg-5.0.2" sources."esbuild-0.16.3" sources."fast-glob-3.2.11" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" (sources."semver-7.3.8" // { dependencies = [ sources."lru-cache-6.0.0" @@ -146319,34 +146051,35 @@ in }) ]; }) - sources."@remix-run/express-1.13.0" - (sources."@remix-run/node-1.13.0" // { + sources."@remix-run/express-1.14.0" + (sources."@remix-run/node-1.14.0" // { dependencies = [ sources."cookie-signature-1.2.1" ]; }) - sources."@remix-run/router-1.3.2" - sources."@remix-run/serve-1.13.0" - sources."@remix-run/server-runtime-1.13.0" + sources."@remix-run/router-1.3.3" + sources."@remix-run/serve-1.14.0" + sources."@remix-run/server-runtime-1.14.0" sources."@remix-run/web-blob-3.0.4" sources."@remix-run/web-fetch-4.3.2" sources."@remix-run/web-file-3.0.2" sources."@remix-run/web-form-data-3.0.4" sources."@remix-run/web-stream-1.0.3" sources."@rollup/pluginutils-4.2.1" + sources."@sinclair/typebox-0.25.24" sources."@sindresorhus/is-4.6.0" - sources."@swc/core-1.3.37" - sources."@swc/core-darwin-arm64-1.3.37" - sources."@swc/core-darwin-x64-1.3.37" - sources."@swc/core-linux-arm-gnueabihf-1.3.37" - sources."@swc/core-linux-arm64-gnu-1.3.37" - sources."@swc/core-linux-arm64-musl-1.3.37" - sources."@swc/core-linux-x64-gnu-1.3.37" - sources."@swc/core-linux-x64-musl-1.3.37" - sources."@swc/core-win32-arm64-msvc-1.3.37" - sources."@swc/core-win32-ia32-msvc-1.3.37" - sources."@swc/core-win32-x64-msvc-1.3.37" - sources."@swc/wasm-1.3.37" + sources."@swc/core-1.3.38" + sources."@swc/core-darwin-arm64-1.3.38" + sources."@swc/core-darwin-x64-1.3.38" + sources."@swc/core-linux-arm-gnueabihf-1.3.38" + sources."@swc/core-linux-arm64-gnu-1.3.38" + sources."@swc/core-linux-arm64-musl-1.3.38" + sources."@swc/core-linux-x64-gnu-1.3.38" + sources."@swc/core-linux-x64-musl-1.3.38" + sources."@swc/core-win32-arm64-msvc-1.3.38" + sources."@swc/core-win32-ia32-msvc-1.3.38" + sources."@swc/core-win32-x64-msvc-1.3.38" + sources."@swc/wasm-1.3.38" sources."@szmarczak/http-timer-4.0.6" sources."@tootallnate/once-1.1.2" sources."@ts-morph/common-0.11.1" @@ -146375,47 +146108,46 @@ in sources."@types/responselike-1.0.0" sources."@types/scheduler-0.16.2" sources."@types/unist-2.0.6" - sources."@vanilla-extract/babel-plugin-debug-ids-1.0.1" + sources."@vanilla-extract/babel-plugin-debug-ids-1.0.2" sources."@vanilla-extract/css-1.9.5" - (sources."@vanilla-extract/integration-6.1.0" // { + (sources."@vanilla-extract/integration-6.1.2" // { dependencies = [ sources."esbuild-0.16.17" ]; }) sources."@vanilla-extract/private-1.0.3" - sources."@vercel/build-utils-6.3.1" - (sources."@vercel/gatsby-plugin-vercel-analytics-1.0.7" // { + sources."@vercel/build-utils-6.3.4" + (sources."@vercel/gatsby-plugin-vercel-analytics-1.0.8" // { dependencies = [ sources."@babel/runtime-7.12.1" ]; }) - (sources."@vercel/gatsby-plugin-vercel-builder-1.1.9" // { + (sources."@vercel/gatsby-plugin-vercel-builder-1.2.1" // { dependencies = [ - sources."ajv-8.12.0" sources."fs-extra-11.1.0" ]; }) - sources."@vercel/go-2.3.8" - sources."@vercel/hydrogen-0.0.54" - sources."@vercel/next-3.6.1" + sources."@vercel/go-2.3.11" + sources."@vercel/hydrogen-0.0.57" + sources."@vercel/next-3.6.6" sources."@vercel/nft-0.22.5" - sources."@vercel/node-2.9.8" - sources."@vercel/node-bridge-3.1.12" - sources."@vercel/python-3.1.50" - sources."@vercel/redwood-1.1.6" - (sources."@vercel/remix-1.4.1" // { + sources."@vercel/node-2.9.12" + sources."@vercel/node-bridge-3.1.14" + sources."@vercel/python-3.1.53" + sources."@vercel/redwood-1.1.9" + (sources."@vercel/remix-1.6.2" // { dependencies = [ sources."path-to-regexp-6.2.1" ]; }) - (sources."@vercel/routing-utils-2.1.9" // { + (sources."@vercel/routing-utils-2.1.10" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" ]; }) - sources."@vercel/ruby-1.3.67" - sources."@vercel/static-build-1.3.12" + sources."@vercel/ruby-1.3.70" + sources."@vercel/static-build-1.3.16" sources."@vercel/static-config-2.0.13" sources."@web3-storage/multipart-parser-1.0.0" sources."@zxing/text-encoding-0.9.0" @@ -146486,7 +146218,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -146572,7 +146304,7 @@ in }) sources."edge-runtime-2.0.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -146779,7 +146511,7 @@ in sources."keyv-4.5.2" sources."kleur-4.1.5" sources."levn-0.3.0" - sources."lilconfig-2.0.6" + sources."lilconfig-2.1.0" sources."loader-utils-3.2.1" sources."locate-path-6.0.0" sources."lodash-4.17.21" @@ -146981,6 +146713,7 @@ in sources."iconv-lite-0.4.24" ]; }) + sources."react-refresh-0.14.0" sources."readable-stream-3.6.1" sources."readdirp-3.6.0" (sources."recast-0.21.5" // { @@ -147286,7 +147019,7 @@ in sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" sources."esprima-4.0.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -147591,13 +147324,13 @@ in sources."typescript-4.9.5" sources."vscode-css-languageservice-6.2.4" sources."vscode-html-languageservice-5.0.4" - sources."vscode-json-languageservice-5.3.1" + sources."vscode-json-languageservice-5.3.2" sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" sources."vscode-languageserver-protocol-3.17.3" sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.3" - (sources."vscode-markdown-languageservice-0.3.0-alpha.5" // { + (sources."vscode-markdown-languageservice-0.3.0-alpha.6" // { dependencies = [ sources."@vscode/l10n-0.0.10" ]; @@ -147922,7 +147655,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.14.2" + sources."@types/node-18.15.0" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -148142,7 +147875,7 @@ in sources."eslint-visitor-keys-1.3.0" sources."espree-5.0.1" sources."esprima-4.0.1" - (sources."esquery-1.4.2" // { + (sources."esquery-1.5.0" // { dependencies = [ sources."estraverse-5.3.0" ]; @@ -148607,7 +148340,7 @@ in sources."source-map-resolve-0.5.3" sources."source-map-url-0.4.1" sources."space-separated-tokens-1.1.5" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -149059,13 +148792,14 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" + sources."@pnpm/config.env-replace-1.0.0" sources."@pnpm/network.ca-file-1.0.2" - sources."@pnpm/npm-conf-1.0.5" + sources."@pnpm/npm-conf-2.1.0" 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.14.2" + sources."@types/node-18.15.0" sources."@types/yauzl-2.10.0" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -149111,7 +148845,7 @@ in ]; }) sources."boolbase-1.0.0" - (sources."boxen-7.0.1" // { + (sources."boxen-7.0.2" // { dependencies = [ sources."chalk-5.2.0" sources."type-fest-2.19.0" @@ -149248,7 +148982,7 @@ in sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" sources."esprima-4.0.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -149323,7 +149057,7 @@ in sources."glob-to-regexp-0.4.1" sources."global-dirs-3.0.1" sources."globals-13.20.0" - (sources."got-12.5.3" // { + (sources."got-12.6.0" // { dependencies = [ sources."get-stream-6.0.1" ]; @@ -149530,7 +149264,7 @@ in sources."real-require-0.2.0" sources."regenerator-runtime-0.13.11" sources."regexpp-3.2.0" - sources."registry-auth-token-5.0.1" + sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" (sources."relaxed-json-1.0.3" // { dependencies = [ @@ -149707,10 +149441,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.75.0"; + version = "5.76.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz"; - sha512 = "piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.76.0.tgz"; + sha512 = "l5sOdYBDunyf72HW8dF23rFtWq/7Zgvt/9ftMof71E/yUb1YLOBmTgA2K4vQthB3kotMrSj609txVE0dnr2fjA=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -149723,7 +149457,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.14.2" + sources."@types/node-18.15.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -149747,10 +149481,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -149786,12 +149520,12 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.16.5" - sources."terser-webpack-plugin-5.3.6" + sources."terser-5.16.6" + sources."terser-webpack-plugin-5.3.7" sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.75.0" + sources."webpack-5.76.0" sources."webpack-sources-3.2.3" ]; buildInputs = globalBuildInputs; @@ -149824,7 +149558,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.14.2" + sources."@types/node-18.15.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -149851,13 +149585,13 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.19" sources."commander-9.5.0" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."enhanced-resolve-5.12.0" sources."envinfo-7.8.1" sources."es-module-lexer-0.9.3" @@ -149921,16 +149655,16 @@ in sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" - (sources."terser-5.16.5" // { + (sources."terser-5.16.6" // { dependencies = [ sources."commander-2.20.3" ]; }) - sources."terser-webpack-plugin-5.3.6" + sources."terser-webpack-plugin-5.3.7" sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.75.0" + sources."webpack-5.76.0" sources."webpack-cli-5.0.1" sources."webpack-merge-5.8.0" sources."webpack-sources-3.2.3" @@ -149975,7 +149709,7 @@ in sources."@types/http-proxy-1.17.10" sources."@types/json-schema-7.0.11" sources."@types/mime-3.0.1" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.0" @@ -150025,7 +149759,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.19" @@ -150053,7 +149787,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.4.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" @@ -150230,8 +149964,8 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.16.5" - (sources."terser-webpack-plugin-5.3.6" // { + sources."terser-5.16.6" + (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -150253,7 +149987,7 @@ in sources."vary-1.1.2" sources."watchpack-2.4.0" sources."wbuf-1.7.3" - (sources."webpack-5.75.0" // { + (sources."webpack-5.76.0" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -150301,7 +150035,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.14.2" + sources."@types/node-18.15.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -150327,11 +150061,11 @@ in sources."braces-3.0.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001458" + sources."caniuse-lite-1.0.30001464" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.313" + sources."electron-to-chromium-1.4.326" sources."enhanced-resolve-5.12.0" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -150390,8 +150124,8 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.16.5" - (sources."terser-webpack-plugin-5.3.6" // { + sources."terser-5.16.6" + (sources."terser-webpack-plugin-5.3.7" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -150403,7 +150137,7 @@ in sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - (sources."webpack-5.75.0" // { + (sources."webpack-5.76.0" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -150444,14 +150178,14 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."b4a-1.6.1" + sources."b4a-1.6.2" sources."base64-js-1.5.1" sources."bencode-2.0.3" sources."bep53-range-1.1.1" @@ -150909,10 +150643,10 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.12.0"; + version = "2.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.12.0.tgz"; - sha512 = "yAqv3JbJqkB1oaciI2CGEiEscQ98BXaFN+Z7VbWuepMqVL2UV2wUjA2mJLjWuoZOwSmC74MsDzZ+5hzDs/2Nkg=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.12.2.tgz"; + sha512 = "pjdZvcjiFD6mI3Nncsw3hBv3rxjMx0n4Mtp+Tsql/hvr0LpOmHKlW/aMeYx/fVUmjEKfWBSULc1vgM02O2UTWQ=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" @@ -150961,7 +150695,7 @@ in sources."@miniflare/watcher-2.12.1" sources."@miniflare/web-sockets-2.12.1" sources."@types/better-sqlite3-7.6.3" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/stack-trace-0.0.29" sources."anymatch-3.1.3" sources."binary-extensions-2.2.0" @@ -151183,7 +150917,7 @@ in }) sources."eslint-visitor-keys-3.3.0" sources."espree-9.4.1" - sources."esquery-1.4.2" + sources."esquery-1.5.0" sources."esrecurse-4.3.0" sources."estraverse-5.3.0" sources."esutils-2.0.3" @@ -151222,7 +150956,7 @@ in sources."inherits-2.0.4" sources."internal-slot-1.0.5" sources."is-arguments-1.1.1" - sources."is-array-buffer-3.0.1" + sources."is-array-buffer-3.0.2" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -151357,16 +151091,17 @@ in yaml-language-server = nodeEnv.buildNodePackage { name = "yaml-language-server"; packageName = "yaml-language-server"; - version = "1.11.0"; + version = "1.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.11.0.tgz"; - sha512 = "1TBlhK1nMSpDiq3iZfAyDOg4xwagozZAnqr0AOrZG5UteMt3zbfhOVqhRuAunRIZ8kktfGMjsKxDjO+utGAJaA=="; + url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.12.0.tgz"; + sha512 = "cEQeHVqSH0+UgNNvVGrv3xu+NBTscBSmOS/vNfi7r5JPThgp3hIUVzjj0vxeXFj5swOxnpod0hD99tCkPGiikw=="; }; dependencies = [ sources."ajv-8.12.0" sources."fast-deep-equal-3.1.3" sources."json-schema-traverse-1.0.0" sources."jsonc-parser-3.2.0" + sources."lodash-4.17.21" sources."punycode-2.3.0" sources."request-light-0.5.8" sources."require-from-string-2.0.2" @@ -151383,7 +151118,7 @@ in sources."vscode-languageserver-types-3.17.3" sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" - sources."yaml-2.0.0-11" + sources."yaml-2.2.1" ]; buildInputs = globalBuildInputs; meta = { @@ -151556,7 +151291,7 @@ in sources."ms-2.1.2" ]; }) - (sources."agentkeepalive-4.2.1" // { + (sources."agentkeepalive-4.3.0" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -151692,7 +151427,7 @@ in sources."define-lazy-prop-2.0.0" sources."define-properties-1.2.0" sources."delegates-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."detect-node-2.1.0" sources."dezalgo-1.0.4" sources."diff-5.1.0" @@ -151951,7 +151686,7 @@ in sources."micromatch-4.0.5" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" - sources."minimatch-7.3.0" + sources."minimatch-7.4.2" sources."minimist-1.2.8" (sources."minimist-options-3.0.2" // { dependencies = [ @@ -152049,7 +151784,7 @@ in sources."debug-4.3.4" sources."http-cache-semantics-4.1.1" sources."http-proxy-agent-5.0.0" - sources."lru-cache-7.17.0" + sources."lru-cache-7.18.3" (sources."make-fetch-happen-10.2.1" // { dependencies = [ sources."minipass-fetch-2.1.2" @@ -152270,7 +152005,7 @@ in sources."sort-keys-2.0.0" sources."sort-on-4.1.1" sources."spawn-sync-1.0.15" - sources."spdx-correct-3.1.1" + sources."spdx-correct-3.2.0" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" @@ -152521,23 +152256,23 @@ in sources."@esm2cjs/p-timeout-5.1.0" sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.5" - (sources."@sentry/core-7.39.0" // { + (sources."@sentry/core-7.42.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/integrations-7.39.0" // { + (sources."@sentry/integrations-7.42.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.39.0" // { + (sources."@sentry/node-7.42.0" // { dependencies = [ sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.39.0" - (sources."@sentry/utils-7.39.0" // { + sources."@sentry/types-7.42.0" + (sources."@sentry/utils-7.42.0" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -152558,14 +152293,14 @@ in sources."@serialport/stream-10.5.0" sources."@types/http-cache-semantics-4.0.1" sources."@types/triple-beam-1.3.2" - sources."@zwave-js/cc-10.10.0" - sources."@zwave-js/config-10.10.0" - sources."@zwave-js/core-10.10.0" - sources."@zwave-js/host-10.10.0" - sources."@zwave-js/nvmedit-10.10.0" - sources."@zwave-js/serial-10.10.0" - sources."@zwave-js/shared-10.10.0" - sources."@zwave-js/testing-10.10.0" + sources."@zwave-js/cc-10.11.1" + sources."@zwave-js/config-10.11.1" + sources."@zwave-js/core-10.11.1" + sources."@zwave-js/host-10.11.1" + sources."@zwave-js/nvmedit-10.11.1" + sources."@zwave-js/serial-10.11.1" + sources."@zwave-js/shared-10.11.1" + sources."@zwave-js/testing-10.11.1" sources."agent-base-6.0.2" sources."alcalzone-shared-4.0.8" sources."ansi-colors-4.1.3" @@ -152682,7 +152417,7 @@ in sources."yallist-4.0.0" sources."yargs-17.7.1" sources."yargs-parser-21.1.1" - sources."zwave-js-10.10.0" + sources."zwave-js-10.11.1" ]; buildInputs = globalBuildInputs; meta = { @@ -152709,7 +152444,7 @@ in sources."@types/fs-extra-11.0.1" sources."@types/jsonfile-6.1.1" sources."@types/minimist-1.2.2" - sources."@types/node-18.14.2" + sources."@types/node-18.15.0" sources."@types/ps-tree-1.1.2" sources."@types/which-2.0.2" sources."braces-3.0.2"