diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 4d3d76374d1..98b75f8867e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -11246,6 +11246,12 @@ githubId = 17120571; name = "Xinhao Luo"; }; + nevivurn = { + email = "nevivurn@nevi.dev"; + github = "nevivurn"; + githubId = 7698349; + name = "Yongun Seong"; + }; newam = { email = "alex@thinglab.org"; github = "newAM"; diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md index a1bb5f12453..838bda5c914 100644 --- a/nixos/doc/manual/release-notes/rl-2305.section.md +++ b/nixos/doc/manual/release-notes/rl-2305.section.md @@ -255,6 +255,8 @@ In addition to numerous new and upgraded packages, this release has the followin - `fail2ban` has been updated to 1.0.2, which has a few breaking changes compared to 0.11.2 ([changelog for 1.0.1](https://github.com/fail2ban/fail2ban/blob/1.0.1/ChangeLog), [changelog for 1.0.2](https://github.com/fail2ban/fail2ban/blob/1.0.2/ChangeLog)) +- `albert` has been updated from 0.17.6 to 0.20.13, and 0.18.0 changed the config format and many plugins ([changelog for 0.18.0](https://github.com/albertlauncher/albert/blob/v0.18.0/CHANGELOG.md)) + - Calling `makeSetupHook` without passing a `name` argument is deprecated. - Top-level buildPlatform,hostPlatform,targetPlatform have been deprecated, use stdenv.X instead. diff --git a/nixos/modules/security/pam_mount.nix b/nixos/modules/security/pam_mount.nix index 481f1f3d38e..a17f38f9332 100644 --- a/nixos/modules/security/pam_mount.nix +++ b/nixos/modules/security/pam_mount.nix @@ -47,6 +47,18 @@ in ''; }; + cryptMountOptions = mkOption { + type = types.listOf types.str; + default = []; + example = literalExpression '' + [ "allow_discard" ] + ''; + description = lib.mdDoc '' + Global mount options that apply to every crypt volume. + You can define volume-specific options in the volume definitions. + ''; + }; + fuseMountOptions = mkOption { type = types.listOf types.str; default = []; @@ -157,7 +169,7 @@ in ${pkgs.fuse}/bin/mount.fuse %(VOLUME) %(MNTPT) -o ${concatStringsSep "," (cfg.fuseMountOptions ++ [ "%(OPTIONS)" ])} ${pkgs.fuse}/bin/fusermount -u %(MNTPT) - ${pkgs.pam_mount}/bin/mount.crypt %(VOLUME) %(MNTPT) + ${pkgs.pam_mount}/bin/mount.crypt -o ${concatStringsSep "," (cfg.cryptMountOptions ++ [ "%(OPTIONS)" ])} %(VOLUME) %(MNTPT) ${pkgs.pam_mount}/bin/umount.crypt %(MNTPT) ${pkgs.pam_mount}/bin/pmvarrun -u %(USER) -o %(OPERATION) ${optionalString oflRequired "${fake_ofl}/bin/fake_ofl %(SIGNAL) %(MNTPT)"} diff --git a/nixos/modules/virtualisation/libvirtd.nix b/nixos/modules/virtualisation/libvirtd.nix index 7c95405ed31..537db537279 100644 --- a/nixos/modules/virtualisation/libvirtd.nix +++ b/nixos/modules/virtualisation/libvirtd.nix @@ -414,13 +414,16 @@ in # https://libvirt.org/daemons.html#monolithic-systemd-integration systemd.sockets.libvirtd.wantedBy = [ "sockets.target" ]; - security.polkit.extraConfig = '' - polkit.addRule(function(action, subject) { - if (action.id == "org.libvirt.unix.manage" && - subject.isInGroup("libvirtd")) { - return polkit.Result.YES; - } - }); - ''; + security.polkit = { + enable = true; + extraConfig = '' + polkit.addRule(function(action, subject) { + if (action.id == "org.libvirt.unix.manage" && + subject.isInGroup("libvirtd")) { + return polkit.Result.YES; + } + }); + ''; + }; }; } diff --git a/nixos/tests/fcitx5/default.nix b/nixos/tests/fcitx5/default.nix index 261a5f1f45c..9b000da48ea 100644 --- a/nixos/tests/fcitx5/default.nix +++ b/nixos/tests/fcitx5/default.nix @@ -1,7 +1,8 @@ -import ../make-test-python.nix ({ pkgs, ... }: -# copy_from_host works only for store paths +import ../make-test-python.nix ({ lib, ... }: rec { name = "fcitx5"; + meta.maintainers = with lib.maintainers; [ nevivurn ]; + nodes.machine = { pkgs, ... }: { imports = [ @@ -30,8 +31,10 @@ rec { i18n.inputMethod = { enabled = "fcitx5"; fcitx5.addons = [ - pkgs.fcitx5-m17n pkgs.fcitx5-chinese-addons + pkgs.fcitx5-hangul + pkgs.fcitx5-m17n + pkgs.fcitx5-mozc ]; }; }; @@ -43,11 +46,16 @@ rec { fcitx_confdir = "${user.home}/.config/fcitx5"; in '' - # We need config files before login session - # So copy first thing + start_all() + + machine.wait_for_x() + machine.wait_for_file("${xauth}") + machine.succeed("xauth merge ${xauth}") + machine.sleep(5) + + machine.succeed("su - ${user.name} -c 'kill $(pgrep fcitx5)'") + machine.sleep(1) - # Point and click would be expensive, - # So configure using files machine.copy_from_host( "${./profile}", "${fcitx_confdir}/profile", @@ -57,15 +65,8 @@ rec { "${fcitx_confdir}/config", ) - start_all() - - machine.wait_for_file("${xauth}}") - machine.succeed("xauth merge ${xauth}") - - machine.sleep(5) - - machine.succeed("su - ${user.name} -c 'alacritty&'") - machine.succeed("su - ${user.name} -c 'fcitx5&'") + machine.succeed("su - ${user.name} -c 'alacritty >&2 &'") + machine.succeed("su - ${user.name} -c 'fcitx5 >&2 &'") machine.sleep(10) ### Type on terminal @@ -74,7 +75,6 @@ rec { ### Start fcitx Unicode input machine.send_key("ctrl-alt-shift-u") - machine.sleep(5) machine.sleep(1) ### Search for smiling face @@ -94,9 +94,15 @@ rec { machine.sleep(1) ### Default wubi, enter 一下 - machine.send_chars("gggh") + machine.send_chars("gggh ") machine.sleep(1) - machine.send_key("\n") + + ### Switch to Hangul + machine.send_key("alt-shift") + machine.sleep(1) + + ### Enter 한 + machine.send_chars("gks") machine.sleep(1) ### Switch to Harvard Kyoto @@ -104,12 +110,17 @@ rec { machine.sleep(1) ### Enter क - machine.send_chars("ka ") + machine.send_chars("ka") machine.sleep(1) + ### Switch to Mozc machine.send_key("alt-shift") machine.sleep(1) + ### Enter か + machine.send_chars("ka\n") + machine.sleep(1) + ### Turn off Fcitx machine.send_key("ctrl-spc") machine.sleep(1) @@ -121,7 +132,7 @@ rec { ### Verify that file contents are as expected file_content = machine.succeed("cat ${user.home}/fcitx_test.out") - assert file_content == "☺一下क\n" - '' + assert file_content == "☺一下한कか\n" + '' ; }) diff --git a/nixos/tests/fcitx5/profile b/nixos/tests/fcitx5/profile index 55e7b7b459f..1b48c634e0e 100644 --- a/nixos/tests/fcitx5/profile +++ b/nixos/tests/fcitx5/profile @@ -4,12 +4,24 @@ Default Layout=us DefaultIM=wbx [Groups/0/Items/0] +Name=keyboard-us +Layout= + +[Groups/0/Items/1] Name=wbx Layout=us -[Groups/0/Items/1] +[Groups/0/Items/2] +Name=hangul +Layout=us + +[Groups/0/Items/3] Name=m17n_sa_harvard-kyoto Layout=us +[Groups/0/Items/4] +Name=mozc +Layout=us + [GroupOrder] 0=NixOS_test diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index adc2b467be5..bb87f1a3df9 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -348,9 +348,13 @@ let enable = true; url = "http://localhost"; configFile = pkgs.writeText "json-exporter-conf.json" (builtins.toJSON { - metrics = [ - { name = "json_test_metric"; path = "{ .test }"; } - ]; + modules = { + default = { + metrics = [ + { name = "json_test_metric"; path = "{ .test }"; } + ]; + }; + }; }); }; metricProvider = { diff --git a/pkgs/applications/accessibility/contrast/default.nix b/pkgs/applications/accessibility/contrast/default.nix index 7a7274d8d5e..f98b02117c2 100644 --- a/pkgs/applications/accessibility/contrast/default.nix +++ b/pkgs/applications/accessibility/contrast/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { description = "Checks whether the contrast between two colors meet the WCAG requirements"; homepage = "https://gitlab.gnome.org/World/design/contrast"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.isDarwin; diff --git a/pkgs/applications/audio/easyeffects/default.nix b/pkgs/applications/audio/easyeffects/default.nix index e62e489539a..02f2cf0e169 100644 --- a/pkgs/applications/audio/easyeffects/default.nix +++ b/pkgs/applications/audio/easyeffects/default.nix @@ -105,7 +105,7 @@ stdenv.mkDerivation rec { description = "Audio effects for PipeWire applications."; homepage = "https://github.com/wwmm/easyeffects"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/osdlyrics/default.nix b/pkgs/applications/audio/osdlyrics/default.nix index 3dd43fe3044..e6e748cf448 100644 --- a/pkgs/applications/audio/osdlyrics/default.nix +++ b/pkgs/applications/audio/osdlyrics/default.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { description = "Standalone lyrics fetcher/displayer"; homepage = "https://github.com/osdlyrics/osdlyrics"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index cc12846a93f..398d3a6ad97 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,6 +1,12 @@ -{ lib, stdenv, callPackage }: +{ lib +, stdenv +, callPackage +, ... +}@args: let + extraArgs = removeAttrs args [ "callPackage" ]; + pname = "spotify"; meta = with lib; { @@ -12,5 +18,5 @@ let }; in if stdenv.isDarwin -then callPackage ./darwin.nix { inherit pname meta; } -else callPackage ./linux.nix { inherit pname meta; } +then callPackage ./darwin.nix (extraArgs // { inherit pname meta; }) +else callPackage ./linux.nix (extraArgs // { inherit pname meta; }) diff --git a/pkgs/applications/editors/sublime/3/common.nix b/pkgs/applications/editors/sublime/3/common.nix index e1d5b3d4d36..bbb7e6f1e91 100644 --- a/pkgs/applications/editors/sublime/3/common.nix +++ b/pkgs/applications/editors/sublime/3/common.nix @@ -130,7 +130,7 @@ in stdenv.mkDerivation (rec { meta = with lib; { description = "Sophisticated text editor for code, markup and prose"; homepage = "https://www.sublimetext.com/"; - maintainers = with maintainers; [ jtojnar wmertens demin-dmitriy zimbatm ]; + maintainers = with maintainers; [ wmertens demin-dmitriy zimbatm ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = [ "x86_64-linux" "i686-linux" ]; diff --git a/pkgs/applications/graphics/gcolor3/default.nix b/pkgs/applications/graphics/gcolor3/default.nix index 63725b97431..6895a334f1e 100644 --- a/pkgs/applications/graphics/gcolor3/default.nix +++ b/pkgs/applications/graphics/gcolor3/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { description = "A simple color chooser written in GTK3"; homepage = "https://gitlab.gnome.org/World/gcolor3"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix index 1eb648bf188..a45f1cea966 100644 --- a/pkgs/applications/misc/albert/default.nix +++ b/pkgs/applications/misc/albert/default.nix @@ -2,27 +2,25 @@ , stdenv , fetchFromGitHub , cmake +, libqalculate , muparser -, python3 +, python3Packages , qtbase -, qtcharts -, qtdeclarative -, qtgraphicaleffects +, qtscxml , qtsvg -, qtx11extras , wrapQtAppsHook , nix-update-script }: stdenv.mkDerivation rec { pname = "albert"; - version = "0.17.6"; + version = "0.20.13"; src = fetchFromGitHub { owner = "albertlauncher"; repo = "albert"; rev = "v${version}"; - sha256 = "sha256-nbnywrsKvFG8AkayjnylOKSnn7rRWgNv5zE9DDeOmLw="; + sha256 = "sha256-zG6XlFOzSpUSswG4kvKf2lgwUSZkzEVslgQBjzVTLYQ="; fetchSubmodules = true; }; @@ -32,20 +30,17 @@ stdenv.mkDerivation rec { ]; buildInputs = [ + libqalculate muparser - python3 qtbase - qtcharts - qtdeclarative - qtgraphicaleffects + qtscxml qtsvg - qtx11extras - ]; + ] ++ (with python3Packages; [ python pybind11 ]); postPatch = '' find -type f -name CMakeLists.txt -exec sed -i {} -e '/INSTALL_RPATH/d' \; - sed -i src/app/main.cpp \ + sed -i src/nativepluginprovider.cpp \ -e "/QStringList dirs = {/a QFileInfo(\"$out/lib\").canonicalFilePath()," ''; diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix index e70fe0a19c9..2836b14cd71 100644 --- a/pkgs/applications/misc/lutris/default.nix +++ b/pkgs/applications/misc/lutris/default.nix @@ -32,6 +32,8 @@ , pypresence , pyyaml , requests +, protobuf +, moddb # commands that lutris needs , xrandr @@ -73,13 +75,13 @@ let in buildPythonApplication rec { pname = "lutris-unwrapped"; - version = "0.5.12"; + version = "0.5.13"; src = fetchFromGitHub { owner = "lutris"; repo = "lutris"; - rev = "refs/tags/v${version}"; - sha256 = "sha256-rsiXm7L/M85ot6NrTyy//lMRFlLPJYve9y6Erg9Ugxg="; + rev = "v${version}"; + hash = "sha256-ectrfbIkPhIqfhkavDpBCNdLPnGQhCnfFYwTf2IxB50="; }; nativeBuildInputs = [ wrapGAppsHook gobject-introspection ]; @@ -113,6 +115,8 @@ buildPythonApplication rec { pypresence pyyaml requests + protobuf + moddb ]; postPatch = '' diff --git a/pkgs/applications/misc/ttdl/default.nix b/pkgs/applications/misc/ttdl/default.nix index 03ecf260d24..e81f62095bd 100644 --- a/pkgs/applications/misc/ttdl/default.nix +++ b/pkgs/applications/misc/ttdl/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "ttdl"; - version = "3.8.0"; + version = "3.9.0"; src = fetchFromGitHub { owner = "VladimirMarkelov"; repo = "ttdl"; rev = "v${version}"; - sha256 = "sha256-6QfUy1Y7qFOdBFmDFQyRr+GJZSdH+pbU3dEcAjsV1JM="; + sha256 = "sha256-qeMGJn3UNz9VQSn3J71DEzg0lOqO9DyPpwd21UQwXc0="; }; - cargoHash = "sha256-N+mVfgbL22fmynmz4/xFNxQh7l455cH2jyuczc4XsM4="; + cargoHash = "sha256-oIiTiJC+FmiudnJdhSjmKBg6EwXNpDshRZDjeftVR0o="; meta = with lib; { description = "A CLI tool to manage todo lists in todo.txt format"; diff --git a/pkgs/applications/misc/wtf/default.nix b/pkgs/applications/misc/wtf/default.nix index f743fefc041..f604f50eb7f 100644 --- a/pkgs/applications/misc/wtf/default.nix +++ b/pkgs/applications/misc/wtf/default.nix @@ -17,7 +17,8 @@ buildGoModule rec { sha256 = "sha256-DFrA4bx+wSOxmt1CVA1oNiYVmcWeW6wpfR5F1tnhyDY="; }; - vendorHash = "sha256-f82ibPnauUOuZ5D6Rz3Yyt0jiAXvjN8Or3gud+ri6FA="; + vendorHash = "sha256-9uuLidieBMoKz/FLcBnp9wenyveOIzB0IvRBRasulZk="; + proxyVendor = true; doCheck = false; @@ -40,6 +41,5 @@ buildGoModule rec { maintainers = with maintainers; [ kalbasit ]; mainProgram = "wtfutil"; platforms = platforms.linux ++ platforms.darwin; - broken = stdenv.isDarwin; }; } diff --git a/pkgs/applications/networking/cluster/kluctl/default.nix b/pkgs/applications/networking/cluster/kluctl/default.nix index 755209adc94..04d1729878b 100644 --- a/pkgs/applications/networking/cluster/kluctl/default.nix +++ b/pkgs/applications/networking/cluster/kluctl/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "kluctl"; - version = "2.19.3"; + version = "2.19.4"; src = fetchFromGitHub { owner = "kluctl"; repo = "kluctl"; rev = "v${version}"; - hash = "sha256-yp471eWrwnJiCAVwqnZzq1rN1Mt4d42ymVvsUtTyOsc="; + hash = "sha256-q/LWUTaf0PlNGhUZZIvMTjILmrYAO+jQGrUCqBkbDVM="; }; - vendorHash = "sha256-Ws0Qaw2hk8alOF/K5Wd0ZcMGr6Q3JiQIo/kHOXiGvmg="; + vendorHash = "sha256-AywaABegaM32HnPN4b3xnnG/sggr1Z1Jubfbi1VA1k8="; ldflags = [ "-s" "-w" "-X main.version=v${version}" ]; diff --git a/pkgs/applications/networking/cluster/werf/default.nix b/pkgs/applications/networking/cluster/werf/default.nix index 8d4437231d5..bbc59407733 100644 --- a/pkgs/applications/networking/cluster/werf/default.nix +++ b/pkgs/applications/networking/cluster/werf/default.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "werf"; - version = "1.2.231"; + version = "1.2.233"; src = fetchFromGitHub { owner = "werf"; repo = "werf"; rev = "v${version}"; - hash = "sha256-tiIfdODyUH3RoB1Htono2ZgN8+kiM1BXpNPn2B9V/mk="; + hash = "sha256-3T8LbMbM9ZcG8uLspZSNvM7LYuDAOIWweZsYPTC/DOY="; }; - vendorHash = "sha256-SRNxV3zRYfbMJB4iGic3lu25VXIrl5011rB6AYqZG8U="; + vendorHash = "sha256-AKoK/WAelzMhu9W1zoRe4p5Cx/3NzktLGJEG7gPXekQ="; proxyVendor = true; diff --git a/pkgs/applications/networking/instant-messengers/fractal-next/Cargo.lock b/pkgs/applications/networking/instant-messengers/fractal-next/Cargo.lock index e41117c9109..11b03f0e6fb 100644 --- a/pkgs/applications/networking/instant-messengers/fractal-next/Cargo.lock +++ b/pkgs/applications/networking/instant-messengers/fractal-next/Cargo.lock @@ -8,12 +8,6 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" -[[package]] -name = "adler32" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" - [[package]] name = "aead" version = "0.4.3" @@ -21,18 +15,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" dependencies = [ "generic-array", - "rand_core 0.6.3", + "rand_core 0.6.4", ] [[package]] name = "aes" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfe0133578c0986e1fe3dfcd4af1cc5b2dd6c3dbf534d69916ce16a2701d40ba" +checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" dependencies = [ - "cfg-if 1.0.0", - "cipher 0.4.3", + "cfg-if", + "cipher 0.4.4", "cpufeatures", + "zeroize", ] [[package]] @@ -41,27 +36,38 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ - "getrandom 0.2.7", + "getrandom 0.2.9", + "once_cell", + "version_check", +] + +[[package]] +name = "ahash" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" +dependencies = [ + "cfg-if", "once_cell", "version_check", ] [[package]] name = "aho-corasick" -version = "0.7.19" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" dependencies = [ "memchr", ] [[package]] name = "ammonia" -version = "3.2.1" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b477377562f3086b7778d241786e9406b883ccfaa03557c0fe0924b9349f13a" +checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170" dependencies = [ - "html5ever 0.26.0", + "html5ever", "maplit", "once_cell", "tendril", @@ -77,20 +83,11 @@ dependencies = [ "libc", ] -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi", -] - [[package]] name = "anyhow" -version = "1.0.65" +version = "1.0.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" +checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" [[package]] name = "anymap2" @@ -100,9 +97,9 @@ checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" [[package]] name = "arrayref" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" +checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" [[package]] name = "arrayvec" @@ -115,21 +112,25 @@ dependencies = [ [[package]] name = "ashpd" -version = "0.3.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dcc8ed0b5211687437636d8c95f6a608f4281d142101b3b5d314b38bfadd40f" +checksum = "31688b40eb5d739049f721d8405c33d3796b3f51f2bea84421a542dafe397e41" dependencies = [ "enumflags2", - "futures", + "futures-channel", + "futures-util", "gdk4-wayland", "gdk4-x11", "gtk4", "libc", + "once_cell", "pipewire", "rand 0.8.5", "serde", "serde_repr", + "tokio", "tracing", + "url", "zbus", ] @@ -141,20 +142,19 @@ checksum = "5f093eed78becd229346bf859eec0aa4dd7ddde0757287b2b4107a1f09c80002" [[package]] name = "async-broadcast" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d26004fe83b2d1cd3a97609b21e39f9a31535822210fe83205d2ce48866ea61" +checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" dependencies = [ "event-listener", "futures-core", - "parking_lot 0.12.1", ] [[package]] name = "async-channel" -version = "1.7.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28" +checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" dependencies = [ "concurrent-queue", "event-listener", @@ -163,100 +163,155 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.4.1" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965" +checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" dependencies = [ + "async-lock", "async-task", "concurrent-queue", "fastrand", "futures-lite", - "once_cell", "slab", ] +[[package]] +name = "async-global-executor" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" +dependencies = [ + "async-channel", + "async-executor", + "async-io", + "async-lock", + "blocking", + "futures-lite", + "once_cell", +] + [[package]] name = "async-io" -version = "1.9.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83e21f3a490c72b3b0cf44962180e60045de2925d8dff97918f7ee43c8f637c7" +checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" dependencies = [ + "async-lock", "autocfg", + "cfg-if", "concurrent-queue", "futures-lite", - "libc", "log", - "once_cell", "parking", "polling", + "rustix", "slab", "socket2", "waker-fn", - "winapi", ] [[package]] name = "async-lock" -version = "2.5.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6" +checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" dependencies = [ "event-listener", ] [[package]] -name = "async-once-cell" -version = "0.3.1" +name = "async-process" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72faff1fdc615a0199d7bf71e6f389af54d46a66e9beb5d76c39e48eda93ecce" +checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" +dependencies = [ + "async-io", + "async-lock", + "autocfg", + "blocking", + "cfg-if", + "event-listener", + "futures-lite", + "rustix", + "signal-hook", + "windows-sys 0.48.0", +] [[package]] name = "async-recursion" -version = "0.3.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2" +checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", +] + +[[package]] +name = "async-std" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" +dependencies = [ + "async-channel", + "async-global-executor", + "async-io", + "async-lock", + "async-process", + "crossbeam-utils", + "futures-channel", + "futures-core", + "futures-io", + "futures-lite", + "gloo-timers", + "kv-log-macro", + "log", + "memchr", + "once_cell", + "pin-project-lite", + "pin-utils", + "slab", + "wasm-bindgen-futures", ] [[package]] name = "async-stream" -version = "0.3.3" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" +checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" dependencies = [ "async-stream-impl", "futures-core", + "pin-project-lite", ] [[package]] name = "async-stream-impl" -version = "0.3.3" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" +checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "async-task" -version = "4.3.0" +version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" +checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" [[package]] name = "async-trait" -version = "0.1.57" +version = "0.1.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" +checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] @@ -269,15 +324,16 @@ dependencies = [ ] [[package]] -name = "atty" -version = "0.2.14" +name = "atomic-waker" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi", - "libc", - "winapi", -] +checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" + +[[package]] +name = "atomic_refcell" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79d6dc922a2792b006573f60b2648076355daeae5ce9cb59507e5908c9625d31" [[package]] name = "autocfg" @@ -292,7 +348,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ "futures-core", - "getrandom 0.2.7", + "getrandom 0.2.9", "instant", "pin-project-lite", "rand 0.8.5", @@ -301,39 +357,48 @@ dependencies = [ [[package]] name = "base64" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" [[package]] name = "base64ct" -version = "1.5.2" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2b2456fd614d856680dcd9fcc660a51a820fa09daef2e49772b56a193c8474" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "bindgen" -version = "0.59.2" +version = "0.64.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8" +checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cexpr", "clang-sys", - "clap", - "env_logger", "lazy_static", "lazycell", - "log", "peeking_take_while", - "proc-macro2 1.0.43", - "quote 1.0.21", + "proc-macro2", + "quote", "regex", "rustc-hash", "shlex", - "which", + "syn 1.0.109", ] +[[package]] +name = "bit_field" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" + [[package]] name = "bitflags" version = "1.3.2" @@ -341,17 +406,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] -name = "blake3" -version = "1.3.1" +name = "bitflags" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f" +checksum = "c70beb79cbb5ce9c4f8e20849978f34225931f665bb49efa6982875a4d5facb3" + +[[package]] +name = "bitmaps" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703642b98a00b3b90513279a8ede3fcfa479c126c5fb46e78f3051522f021403" + +[[package]] +name = "blake3" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" dependencies = [ "arrayref", "arrayvec", "cc", - "cfg-if 1.0.0", + "cfg-if", "constant_time_eq", - "digest 0.10.3", + "digest 0.10.6", ] [[package]] @@ -371,33 +448,48 @@ dependencies = [ [[package]] name = "block-buffer" -version = "0.10.3" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ "generic-array", ] [[package]] name = "block-padding" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a90ec2df9600c28a01c56c4784c9207a96d2451833aeceb8cc97e4c9548bb78" +checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" dependencies = [ "generic-array", ] [[package]] -name = "bumpalo" -version = "3.11.0" +name = "blocking" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" +checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" +dependencies = [ + "async-channel", + "async-lock", + "async-task", + "atomic-waker", + "fastrand", + "futures-lite", + "log", +] + +[[package]] +name = "bumpalo" +version = "3.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" [[package]] name = "bytemuck" -version = "1.12.1" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da" +checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" [[package]] name = "byteorder" @@ -407,34 +499,35 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "bytes" -version = "1.2.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" +checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" [[package]] -name = "cache-padded" +name = "bytesize" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" +checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5" [[package]] name = "cairo-rs" -version = "0.15.12" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" +checksum = "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cairo-sys-rs", "glib", "libc", + "once_cell", "thiserror", ] [[package]] name = "cairo-sys-rs" -version = "0.15.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" +checksum = "f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e" dependencies = [ "glib-sys", "libc", @@ -447,14 +540,14 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" dependencies = [ - "cipher 0.4.3", + "cipher 0.4.4", ] [[package]] name = "cc" -version = "1.0.73" +version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" +checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" [[package]] name = "cexpr" @@ -467,19 +560,14 @@ dependencies = [ [[package]] name = "cfg-expr" -version = "0.10.3" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" +checksum = "c8790cf1286da485c72cf5fc7aeba308438800036ec67d89425924c4807268c9" dependencies = [ "smallvec", + "target-lexicon", ] -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - [[package]] name = "cfg-if" version = "1.0.0" @@ -492,7 +580,7 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cipher 0.3.0", "cpufeatures", "zeroize", @@ -519,13 +607,16 @@ checksum = "17cc5e6b5ab06331c33589842070416baa137e8b0eb912b008cfd4a78ada7919" [[package]] name = "chrono" -version = "0.4.22" +version = "0.4.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" +checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" dependencies = [ "iana-time-zone", + "js-sys", "num-integer", "num-traits", + "time", + "wasm-bindgen", "winapi", ] @@ -540,38 +631,33 @@ dependencies = [ [[package]] name = "cipher" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ "crypto-common", "inout", + "zeroize", ] [[package]] name = "clang-sys" -version = "1.3.3" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b" +checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" dependencies = [ "glob", "libc", - "libloading", ] [[package]] -name = "clap" -version = "2.34.0" +name = "codespan-reporting" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ - "ansi_term", - "atty", - "bitflags", - "strsim 0.8.0", - "textwrap", + "termcolor", "unicode-width", - "vec_map", ] [[package]] @@ -582,11 +668,11 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" [[package]] name = "concurrent-queue" -version = "1.2.4" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c" +checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" dependencies = [ - "cache-padded", + "crossbeam-utils", ] [[package]] @@ -597,9 +683,9 @@ checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" [[package]] name = "constant_time_eq" -version = "0.1.5" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" +checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b" [[package]] name = "cookie-factory" @@ -619,15 +705,15 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cpufeatures" -version = "0.2.5" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" +checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" dependencies = [ "libc", ] @@ -638,54 +724,58 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] name = "crossbeam-channel" -version = "0.5.6" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" +checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" +checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "crossbeam-epoch", "crossbeam-utils", ] [[package]] name = "crossbeam-epoch" -version = "0.9.10" +version = "0.9.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1" +checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" dependencies = [ "autocfg", - "cfg-if 1.0.0", + "cfg-if", "crossbeam-utils", - "memoffset", - "once_cell", + "memoffset 0.8.0", "scopeguard", ] [[package]] name = "crossbeam-utils" -version = "0.8.11" +version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" +checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" dependencies = [ - "cfg-if 1.0.0", - "once_cell", + "cfg-if", ] +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + [[package]] name = "crypto-common" version = "0.1.6" @@ -693,23 +783,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ "generic-array", + "rand_core 0.6.4", "typenum", ] [[package]] -name = "ctr" -version = "0.9.1" +name = "ctor" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d14f329cfbaf5d0e06b5e87fff7e265d2673c5ea7d2c27691a2c107db1442a0" +checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" dependencies = [ - "cipher 0.4.3", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ctr" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +dependencies = [ + "cipher 0.4.4", ] [[package]] name = "curve25519-dalek" -version = "3.2.1" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0" +checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" dependencies = [ "byteorder", "digest 0.9.0", @@ -720,73 +821,82 @@ dependencies = [ ] [[package]] -name = "darling" -version = "0.12.4" +name = "cxx" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c" +checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93" dependencies = [ - "darling_core 0.12.4", - "darling_macro 0.12.4", + "cc", + "cxxbridge-flags", + "cxxbridge-macro", + "link-cplusplus", +] + +[[package]] +name = "cxx-build" +version = "1.0.94" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b" +dependencies = [ + "cc", + "codespan-reporting", + "once_cell", + "proc-macro2", + "quote", + "scratch", + "syn 2.0.15", +] + +[[package]] +name = "cxxbridge-flags" +version = "1.0.94" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb" + +[[package]] +name = "cxxbridge-macro" +version = "1.0.94" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "darling" -version = "0.14.1" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02" +checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" dependencies = [ - "darling_core 0.14.1", - "darling_macro 0.14.1", + "darling_core", + "darling_macro", ] [[package]] name = "darling_core" -version = "0.12.4" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36" +checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" dependencies = [ "fnv", "ident_case", - "proc-macro2 1.0.43", - "quote 1.0.21", - "strsim 0.10.0", - "syn 1.0.99", -] - -[[package]] -name = "darling_core" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2 1.0.43", - "quote 1.0.21", - "strsim 0.10.0", - "syn 1.0.99", + "proc-macro2", + "quote", + "strsim", + "syn 1.0.109", ] [[package]] name = "darling_macro" -version = "0.12.4" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a" +checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" dependencies = [ - "darling_core 0.12.4", - "quote 1.0.21", - "syn 1.0.99", -] - -[[package]] -name = "darling_macro" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5" -dependencies = [ - "darling_core 0.14.1", - "quote 1.0.21", - "syn 1.0.99", + "darling_core", + "quote", + "syn 1.0.109", ] [[package]] @@ -795,21 +905,53 @@ version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "hashbrown 0.12.3", "lock_api", "once_cell", - "parking_lot_core 0.9.3", + "parking_lot_core", ] [[package]] -name = "deflate" -version = "0.8.6" +name = "deadpool" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" +checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" dependencies = [ - "adler32", - "byteorder", + "async-trait", + "deadpool-runtime", + "num_cpus", + "retain_mut", + "tokio", +] + +[[package]] +name = "deadpool-runtime" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" +dependencies = [ + "tokio", +] + +[[package]] +name = "deadpool-sqlite" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e026821eaacbce25ff0d54405e4421d71656fcae3e4a9323461280fcda6dbc7d" +dependencies = [ + "deadpool", + "deadpool-sync", + "rusqlite", +] + +[[package]] +name = "deadpool-sync" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1bea344b64b32537fde6e0f0179b1ede34d435636719dd40fe6a0f28218a61c" +dependencies = [ + "deadpool", ] [[package]] @@ -827,71 +969,40 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "derive_builder" -version = "0.10.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30" +checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" dependencies = [ - "derive_builder_macro 0.10.2", -] - -[[package]] -name = "derive_builder" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3" -dependencies = [ - "derive_builder_macro 0.11.2", + "derive_builder_macro", ] [[package]] name = "derive_builder_core" -version = "0.10.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5" +checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" dependencies = [ - "darling 0.12.4", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", -] - -[[package]] -name = "derive_builder_core" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4" -dependencies = [ - "darling 0.14.1", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "darling", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "derive_builder_macro" -version = "0.10.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73" +checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" dependencies = [ - "derive_builder_core 0.10.2", - "syn 1.0.99", -] - -[[package]] -name = "derive_builder_macro" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68" -dependencies = [ - "derive_builder_core 0.11.2", - "syn 1.0.99", + "derive_builder_core", + "syn 1.0.109", ] [[package]] @@ -905,57 +1016,57 @@ dependencies = [ [[package]] name = "digest" -version = "0.10.3" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" +checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" dependencies = [ - "block-buffer 0.10.3", + "block-buffer 0.10.4", "crypto-common", "subtle", ] [[package]] name = "dirs" -version = "4.0.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" +checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd" dependencies = [ "dirs-sys", ] [[package]] name = "dirs-sys" -version = "0.3.7" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" +checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b" dependencies = [ "libc", "redox_users", - "winapi", + "windows-sys 0.45.0", ] -[[package]] -name = "discard" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" - [[package]] name = "displaydoc" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "ed25519" -version = "1.5.2" +name = "djb_hash" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369" +checksum = "e8cf7d61e627a3b49af8f24f47e57f3788cdd7a0e4f17cd79fda5ada87f08578" + +[[package]] +name = "ed25519" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" dependencies = [ "serde", "signature", @@ -978,24 +1089,24 @@ dependencies = [ [[package]] name = "either" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" +checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "encoding_rs" -version = "0.8.31" +version = "0.8.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] name = "enumflags2" -version = "0.7.5" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb" +checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" dependencies = [ "enumflags2_derive", "serde", @@ -1003,37 +1114,24 @@ dependencies = [ [[package]] name = "enumflags2_derive" -version = "0.7.4" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae" +checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", -] - -[[package]] -name = "env_logger" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" -dependencies = [ - "atty", - "humantime", - "log", - "regex", - "termcolor", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "errno" -version = "0.2.8" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" +checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" dependencies = [ "errno-dragonfly", "libc", - "winapi", + "windows-sys 0.48.0", ] [[package]] @@ -1053,24 +1151,106 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] -name = "fastrand" -version = "1.8.0" +name = "exr" +version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" +checksum = "bdd2162b720141a91a054640662d3edce3d50a944a50ffca5313cd951abb35b4" +dependencies = [ + "bit_field", + "flume", + "half", + "lebe", + "miniz_oxide 0.6.2", + "rayon-core", + "smallvec", + "zune-inflate", +] + +[[package]] +name = "eyeball" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1015c5225a75e0ab3d325e934456d92fdd57f440e8c81d09018878d4f651cd46" +dependencies = [ + "futures-core", + "readlock", +] + +[[package]] +name = "eyeball-im" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29e6dff0ac9894dcc183064377dfeb4137bcffa9f9ec3dbc10f8e7fba34c0ac7" +dependencies = [ + "futures-core", + "imbl", + "tokio", + "tokio-stream", +] + +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" + +[[package]] +name = "fallible-streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" + +[[package]] +name = "fastrand" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" dependencies = [ "instant", ] [[package]] -name = "field-offset" -version = "0.3.4" +name = "fdeflate" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" +checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" dependencies = [ - "memoffset", + "simd-adler32", +] + +[[package]] +name = "field-offset" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535" +dependencies = [ + "memoffset 0.8.0", "rustc_version", ] +[[package]] +name = "flate2" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" +dependencies = [ + "crc32fast", + "miniz_oxide 0.6.2", +] + +[[package]] +name = "flume" +version = "0.10.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" +dependencies = [ + "futures-core", + "futures-sink", + "nanorand", + "pin-project", + "spin 0.9.8", +] + [[package]] name = "fnv" version = "1.0.7" @@ -1103,69 +1283,52 @@ dependencies = [ [[package]] name = "fractal" -version = "5.0.0-alpha1" +version = "5.0.0-beta1" dependencies = [ "ashpd", "async-stream", + "djb_hash", + "eyeball-im", "futures", + "geo-uri", "gettext-rs", "gst-plugin-gtk4", "gstreamer", "gstreamer-base", - "gstreamer-player", + "gstreamer-pbutils", + "gstreamer-play", "gstreamer-video", - "gtk-macros", "gtk4", + "html-escape", "html2pango", - "image", + "image 0.24.6", "indexmap", "libadwaita", - "libsecret", "libshumate", "log", "matrix-sdk", "mime", "mime_guess", - "num_enum", "once_cell", + "oo7", "pulldown-cmark", "qrcode", "rand 0.8.5", "regex", + "rmp-serde", "rqrr", "ruma", "secular", "serde", "serde_json", "sourceview5", + "strum", "thiserror", "tokio", "tracing-subscriber", "url", ] -[[package]] -name = "fragile" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" - -[[package]] -name = "fs2" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "fs_extra" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" - [[package]] name = "futf" version = "0.1.5" @@ -1178,9 +1341,9 @@ dependencies = [ [[package]] name = "futures" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" dependencies = [ "futures-channel", "futures-core", @@ -1193,9 +1356,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" dependencies = [ "futures-core", "futures-sink", @@ -1203,15 +1366,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" [[package]] name = "futures-executor" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" dependencies = [ "futures-core", "futures-task", @@ -1220,15 +1383,15 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68" +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" [[package]] name = "futures-lite" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" +checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ "fastrand", "futures-core", @@ -1241,45 +1404,32 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", -] - -[[package]] -name = "futures-signals" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3acc659ba666cff13fdf65242d16428f2f11935b688f82e4024ad39667a5132" -dependencies = [ - "discard", - "futures-channel", - "futures-core", - "futures-util", - "pin-project", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "futures-sink" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56" +checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" [[package]] name = "futures-task" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" [[package]] name = "futures-util" -version = "0.3.24" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" dependencies = [ "futures-channel", "futures-core", @@ -1293,32 +1443,23 @@ dependencies = [ "slab", ] -[[package]] -name = "fxhash" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" -dependencies = [ - "byteorder", -] - [[package]] name = "g2gen" -version = "0.4.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fc100b16c63808c5c388cd23ff94c5a35cf28ea459f336323f7948a39480555" +checksum = "fc2c7625b2fc250dd90b63f7887a6bb0f7ec1d714c8278415bea2669ef20820e" dependencies = [ "g2poly", - "proc-macro2 0.4.30", - "quote 0.6.13", - "syn 0.15.44", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "g2p" -version = "0.4.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf09bc632629cbe5420b330e45bcc8f80403e74ba1027d213258914fd5c62755" +checksum = "fc36d9bdc3d2da057775a9f4fa7d7b09edab3e0eda7a92cc353358fa63b8519e" dependencies = [ "g2gen", "g2poly", @@ -1326,28 +1467,29 @@ dependencies = [ [[package]] name = "g2poly" -version = "0.4.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e837767888fca507f07e89c90e0b350da7bbb89170f67a4655dc9bdc4cca457b" +checksum = "af6a86e750338603ea2c14b1c0bfe58cd61f87ca67a0021d9334996024608e12" [[package]] name = "gdk-pixbuf" -version = "0.15.11" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" +checksum = "b023fbe0c6b407bd3d9805d107d9800da3829dc5a676653210f1d5f16d7f59bf" dependencies = [ - "bitflags", + "bitflags 1.3.2", "gdk-pixbuf-sys", "gio", "glib", "libc", + "once_cell", ] [[package]] name = "gdk-pixbuf-sys" -version = "0.15.10" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" +checksum = "7b41bd2b44ed49d99277d3925652a163038bd5ed943ec9809338ffb2f4391e3b" dependencies = [ "gio-sys", "glib-sys", @@ -1358,11 +1500,11 @@ dependencies = [ [[package]] name = "gdk4" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fabb7cf843c26b085a5d68abb95d0c0bf27a9ae2eeff9c4adb503a1eb580876" +checksum = "c3abf96408a26e3eddf881a7f893a1e111767137136e347745e8ea6ed12731ff" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cairo-rs", "gdk-pixbuf", "gdk4-sys", @@ -1374,9 +1516,9 @@ dependencies = [ [[package]] name = "gdk4-sys" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efe7dcb44f5c00aeabff3f69abfc5673de46559070f89bd3fbb7b66485d9cef2" +checksum = "1bc92aa1608c089c49393d014c38ac0390d01e4841e1fedaa75dbcef77aaed64" dependencies = [ "cairo-sys-rs", "gdk-pixbuf-sys", @@ -1391,9 +1533,9 @@ dependencies = [ [[package]] name = "gdk4-wayland" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf81f00824c5f9862764c18ef061efe12b9c4f10614f74d3eaf1f18852c335e2" +checksum = "2fa73894ed86fe10157436123d8baae5f2924ebc4fa48a11d8f093e07b9ecbbd" dependencies = [ "gdk4", "gdk4-wayland-sys", @@ -1404,9 +1546,9 @@ dependencies = [ [[package]] name = "gdk4-wayland-sys" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f2375ec73e2ec6815cdf1da330ff2e020b46fab9057d1e06f44909f1789898" +checksum = "af41c5a9cd7e06f612b91ec45ecb423ab57921bbd92f56e46a67b962be198e0c" dependencies = [ "glib-sys", "libc", @@ -1415,9 +1557,9 @@ dependencies = [ [[package]] name = "gdk4-x11" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be84e388c6b74cce3f9232904ce87ae1857ee3a41a20d9d8a16ae8792799b27c" +checksum = "17de2c3554d5127b9dfacd4d1801e2e3c9163bce01c6e1c407c054e9b771f2ee" dependencies = [ "gdk4", "gdk4-x11-sys", @@ -1428,9 +1570,9 @@ dependencies = [ [[package]] name = "gdk4-x11-sys" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f85f9dabcc847c0733246822bebb476dcbb93f5a964d561b46b69f00fdbbf44" +checksum = "e6ca6c03d5019467d21671936edeba09f908039900af8ce4b834c19646031c72" dependencies = [ "gdk4-sys", "glib-sys", @@ -1440,14 +1582,24 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.14.6" +version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ "typenum", "version_check", ] +[[package]] +name = "geo-uri" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6b8812a079cb4a3b5b366c2d05db8e231e2f231c443acb3532daad996d89f71" +dependencies = [ + "derive_builder", + "thiserror", +] + [[package]] name = "getopts" version = "0.2.21" @@ -1463,7 +1615,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "libc", "wasi 0.9.0+wasi-snapshot-preview1", @@ -1472,11 +1624,11 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.7" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" +checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", @@ -1505,9 +1657,9 @@ dependencies = [ [[package]] name = "gif" -version = "0.11.4" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06" +checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" dependencies = [ "color_quant", "weezl", @@ -1515,26 +1667,29 @@ dependencies = [ [[package]] name = "gio" -version = "0.15.12" +version = "0.17.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" +checksum = "d14522e56c6bcb6f7a3aebc25cbcfb06776af4c0c25232b601b4383252d7cb92" dependencies = [ - "bitflags", + "bitflags 1.3.2", "futures-channel", "futures-core", "futures-io", + "futures-util", "gio-sys", "glib", "libc", "once_cell", + "pin-project-lite", + "smallvec", "thiserror", ] [[package]] name = "gio-sys" -version = "0.15.10" +version = "0.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" +checksum = "6b1d43b0d7968b48455244ecafe41192871257f5740aa6b095eb19db78e362a5" dependencies = [ "glib-sys", "gobject-sys", @@ -1545,19 +1700,22 @@ dependencies = [ [[package]] name = "glib" -version = "0.15.12" +version = "0.17.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" +checksum = "a7f1de7cbde31ea4f0a919453a2dcece5d54d5b70e08f8ad254dc4840f5f09b6" dependencies = [ - "bitflags", + "bitflags 1.3.2", "futures-channel", "futures-core", "futures-executor", "futures-task", + "futures-util", + "gio-sys", "glib-macros", "glib-sys", "gobject-sys", "libc", + "memchr", "once_cell", "smallvec", "thiserror", @@ -1565,24 +1723,24 @@ dependencies = [ [[package]] name = "glib-macros" -version = "0.15.11" +version = "0.17.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64" +checksum = "0a7206c5c03851ef126ea1444990e81fdd6765fb799d5bc694e4897ca01bb97f" dependencies = [ "anyhow", "heck", "proc-macro-crate", "proc-macro-error", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "glib-sys" -version = "0.15.10" +version = "0.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" +checksum = "49f00ad0a1bf548e61adfff15d83430941d9e1bb620e334f779edd1c745680a5" dependencies = [ "libc", "system-deps", @@ -1590,15 +1748,40 @@ dependencies = [ [[package]] name = "glob" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "gloo-timers" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "gloo-utils" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8e8fc851e9c7b9852508bc6e3f690f452f474417e8545ec9857b7f7377036b5" +dependencies = [ + "js-sys", + "serde", + "serde_json", + "wasm-bindgen", + "web-sys", +] [[package]] name = "gobject-sys" -version = "0.15.10" +version = "0.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" +checksum = "15e75b0000a64632b2d8ca3cf856af9308e3a970844f6e9659bd197f026793d0" dependencies = [ "glib-sys", "libc", @@ -1607,9 +1790,9 @@ dependencies = [ [[package]] name = "graphene-rs" -version = "0.15.1" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c54f9fbbeefdb62c99f892dfca35f83991e2cb5b46a8dc2a715e58612f85570" +checksum = "21cf11565bb0e4dfc2f99d4775b6c329f0d40a2cff9c0066214d31a0e1b46256" dependencies = [ "glib", "graphene-sys", @@ -1618,9 +1801,9 @@ dependencies = [ [[package]] name = "graphene-sys" -version = "0.15.10" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa691fc7337ba1df599afb55c3bcb85c04f1b3f17362570e9bb0ff0d1bc3028a" +checksum = "cf80a4849a8d9565410a8fec6fc3678e9c617f4ac7be182ca55ab75016e07af9" dependencies = [ "glib-sys", "libc", @@ -1630,11 +1813,11 @@ dependencies = [ [[package]] name = "gsk4" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05e9020d333280b3aa38d496495bfa9b50712eebf1ad63f0ec5bcddb5eb61be4" +checksum = "6f01ef44fa7cac15e2da9978529383e6bee03e570ba5bf7036b4c10a15cc3a3c" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cairo-rs", "gdk4", "glib", @@ -1646,9 +1829,9 @@ dependencies = [ [[package]] name = "gsk4-sys" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7add39ccf60078508c838643a2dcc91f045c46ed63b5ea6ab701b2e25bda3fea" +checksum = "c07a84fb4dcf1323d29435aa85e2f5f58bef564342bef06775ec7bd0da1f01b0" dependencies = [ "cairo-sys-rs", "gdk4-sys", @@ -1662,14 +1845,14 @@ dependencies = [ [[package]] name = "gst-plugin-gtk4" -version = "0.1.1" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e62e047edb1932887c20105c681203d138ebeb61b83b9e0b368cdec1d0fbc0cc" +checksum = "e853e6f8b38ca7b5843e930b82470c07d998792cfa01a44fb4f5db9021751785" dependencies = [ - "fragile", "gst-plugin-version-helper", "gstreamer", "gstreamer-base", + "gstreamer-gl", "gstreamer-video", "gtk4", "once_cell", @@ -1677,21 +1860,21 @@ dependencies = [ [[package]] name = "gst-plugin-version-helper" -version = "0.7.3" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a6a4dd1cb931cc6b49af354a68f21b3aee46b5b07370215d942f3a71542123f" +checksum = "87921209945e5dc809848a100115fad65bd127671896f0206f45e272080cc4c9" dependencies = [ "chrono", ] [[package]] name = "gstreamer" -version = "0.18.8" +version = "0.20.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66363bacf5e4f6eb281564adc2902e44c52ae5c45082423e7439e9012b75456" +checksum = "4530401c89be6dc10d77ae1587b811cf455c97dce7abf594cb9164527c7da7fc" dependencies = [ - "bitflags", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", "futures-channel", "futures-core", "futures-util", @@ -1705,17 +1888,49 @@ dependencies = [ "option-operations", "paste", "pretty-hex", + "smallvec", "thiserror", ] [[package]] -name = "gstreamer-base" -version = "0.18.0" +name = "gstreamer-audio" +version = "0.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "224f35f36582407caf58ded74854526beeecc23d0cf64b8d1c3e00584ed6863f" +checksum = "06b5a8658e575f6469053026ac663a348d5a562c9fce20ab2ca0c349e05d079e" dependencies = [ - "bitflags", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", + "glib", + "gstreamer", + "gstreamer-audio-sys", + "gstreamer-base", + "libc", + "once_cell", +] + +[[package]] +name = "gstreamer-audio-sys" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d4001b779e4707b32acd6ec0960e327b926369c1a34f7c41d477ac42b2670e8" +dependencies = [ + "glib-sys", + "gobject-sys", + "gstreamer-base-sys", + "gstreamer-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gstreamer-base" +version = "0.20.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b8ff5dfbf7bcaf1466a385b836bad0d8da25759f121458727fdda1f771c69b3" +dependencies = [ + "atomic_refcell", + "bitflags 1.3.2", + "cfg-if", "glib", "gstreamer", "gstreamer-base-sys", @@ -1724,9 +1939,9 @@ dependencies = [ [[package]] name = "gstreamer-base-sys" -version = "0.18.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a083493c3c340e71fa7c66eebda016e9fafc03eb1b4804cf9b2bad61994b078e" +checksum = "26114ed96f6668380f5a1554128159e98e06c3a7a8460f216d7cd6dce28f928c" dependencies = [ "glib-sys", "gobject-sys", @@ -1736,25 +1951,87 @@ dependencies = [ ] [[package]] -name = "gstreamer-player" -version = "0.18.0" +name = "gstreamer-gl" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f14ee02352ba73cadebe640bfb33f12fe8d03cbcad816a102d55a0251fb99bb" +checksum = "b82b83d18ad1c4d890694b4bedde170c748462a11f51a68428671bc1bf93e71e" dependencies = [ - "bitflags", + "bitflags 1.3.2", "glib", "gstreamer", - "gstreamer-player-sys", + "gstreamer-base", + "gstreamer-gl-sys", "gstreamer-video", "libc", "once_cell", ] [[package]] -name = "gstreamer-player-sys" -version = "0.18.0" +name = "gstreamer-gl-sys" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f9b674b39a4d0e18710f6e3d2b109f1793d8028ee4e39da3909b55b4529d399" +checksum = "f08af9ae5ca5aa01c4875346bb7e61310b75a9afc3607b52a6b73470be93bbc7" +dependencies = [ + "glib-sys", + "gobject-sys", + "gstreamer-base-sys", + "gstreamer-sys", + "gstreamer-video-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gstreamer-pbutils" +version = "0.20.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5221a2807dea97b318dfd6f53433fe372c7ceb8ad196e348312a7878b89be73" +dependencies = [ + "bitflags 1.3.2", + "glib", + "gstreamer", + "gstreamer-audio", + "gstreamer-pbutils-sys", + "gstreamer-video", + "libc", + "thiserror", +] + +[[package]] +name = "gstreamer-pbutils-sys" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cb4493d59f28023656686c7a3581ddbd510b309a861776586afcf9a52ed222b" +dependencies = [ + "glib-sys", + "gobject-sys", + "gstreamer-audio-sys", + "gstreamer-sys", + "gstreamer-video-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gstreamer-play" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f752a53171e330c7f56db24ca91d99b7958dc86395ebe91b117226d339b29306" +dependencies = [ + "bitflags 1.3.2", + "glib", + "gstreamer", + "gstreamer-play-sys", + "gstreamer-video", + "libc", + "once_cell", +] + +[[package]] +name = "gstreamer-play-sys" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b69030bd53c3e5988a1e13bdb55ae8d922f8e9c2b522bfa2442bc13906829fb" dependencies = [ "glib-sys", "gobject-sys", @@ -1766,9 +2043,9 @@ dependencies = [ [[package]] name = "gstreamer-sys" -version = "0.18.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3517a65d3c2e6f8905b456eba5d53bda158d664863aef960b44f651cb7d33e2" +checksum = "e56fe047adef7d47dbafa8bc1340fddb53c325e16574763063702fc94b5786d2" dependencies = [ "glib-sys", "gobject-sys", @@ -1778,12 +2055,12 @@ dependencies = [ [[package]] name = "gstreamer-video" -version = "0.18.7" +version = "0.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9418adfc72dafa1ad9eb106527ce4804887d101027c4528ec28c7d29cc899519" +checksum = "dce97769effde2d779dc4f7037b37106457b74e53f2a711bddc90b30ffeb7e06" dependencies = [ - "bitflags", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", "futures-channel", "glib", "gstreamer", @@ -1795,9 +2072,9 @@ dependencies = [ [[package]] name = "gstreamer-video-sys" -version = "0.18.3" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33331b1675e73b5b000c796354278eca7fdde9327015971d9f41afe28b96e0dc" +checksum = "66ddb6112d438aac0004d2db6053a572f92b1c5e0e9d6ff6c71d9245f7f73e46" dependencies = [ "glib-sys", "gobject-sys", @@ -1807,19 +2084,13 @@ dependencies = [ "system-deps", ] -[[package]] -name = "gtk-macros" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da5bf7748fd4cd0b2490df8debcc911809dbcbee4ece9531b96c29a9c729de5a" - [[package]] name = "gtk4" -version = "0.4.8" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c64f0c2a3d80e899dc3febddad5bac193ffcf74a0fd7e31037f30dd34d6f7396" +checksum = "b28a32a04cd75cef14a0983f8b0c669e0fe152a0a7725accdeb594e2c764c88b" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cairo-rs", "field-offset", "futures-channel", @@ -1838,24 +2109,23 @@ dependencies = [ [[package]] name = "gtk4-macros" -version = "0.4.8" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fafbcc920af4eb677d7d164853e7040b9de5a22379c596f570190c675d45f7a7" +checksum = "6a4d6b61570f76d3ee542d984da443b1cd69b6105264c61afec3abed08c2500f" dependencies = [ "anyhow", "proc-macro-crate", "proc-macro-error", - "proc-macro2 1.0.43", - "quick-xml", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "gtk4-sys" -version = "0.4.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bc8006eea634b7c72da3ff79e24606e45f21b3b832a3c5a1f543f5f97eb0f63" +checksum = "5f8283f707b07e019e76c7f2934bdd4180c277e08aa93f4c0d8dd07b7a34e22f" dependencies = [ "cairo-sys-rs", "gdk-pixbuf-sys", @@ -1872,9 +2142,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.14" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be" +checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" dependencies = [ "bytes", "fnv", @@ -1885,17 +2155,17 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util 0.7.4", + "tokio-util", "tracing", ] [[package]] -name = "hashbrown" -version = "0.11.2" +name = "half" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" dependencies = [ - "ahash", + "crunchy", ] [[package]] @@ -1904,49 +2174,48 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" dependencies = [ - "ahash", + "ahash 0.7.6", ] [[package]] -name = "headers" -version = "0.3.8" +name = "hashbrown" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" +checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "base64", - "bitflags", - "bytes", - "headers-core", - "http", - "httpdate", - "mime", - "sha1 0.10.4", + "ahash 0.8.3", ] [[package]] -name = "headers-core" -version = "0.2.0" +name = "hashlink" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" +checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" dependencies = [ - "http", + "hashbrown 0.12.3", ] [[package]] name = "heck" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hermit-abi" -version = "0.1.19" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" dependencies = [ "libc", ] +[[package]] +name = "hermit-abi" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" + [[package]] name = "hex" version = "0.4.3" @@ -1968,7 +2237,16 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.3", + "digest 0.10.6", +] + +[[package]] +name = "html-escape" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" +dependencies = [ + "utf8-width", ] [[package]] @@ -1979,7 +2257,7 @@ checksum = "e22f189d26bf7cf4652dbe49da86f3a27628f745469365f1d2575ea8caf54eaf" dependencies = [ "ammonia", "anyhow", - "html5ever 0.26.0", + "html5ever", "linkify", "maplit", "markup5ever_rcdom", @@ -1987,20 +2265,6 @@ dependencies = [ "regex", ] -[[package]] -name = "html5ever" -version = "0.25.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" -dependencies = [ - "log", - "mac", - "markup5ever 0.10.1", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", -] - [[package]] name = "html5ever" version = "0.26.0" @@ -2009,17 +2273,17 @@ checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" dependencies = [ "log", "mac", - "markup5ever 0.11.0", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "markup5ever", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "http" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" dependencies = [ "bytes", "fnv", @@ -2049,17 +2313,11 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - [[package]] name = "hyper" -version = "0.14.20" +version = "0.14.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" +checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" dependencies = [ "bytes", "futures-channel", @@ -2094,16 +2352,26 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.47" +version = "0.1.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c495f162af0bf17656d0014a0eded5f3cd2f365fdd204548c2869db89359dc7" +checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" dependencies = [ "android_system_properties", "core-foundation-sys", + "iana-time-zone-haiku", "js-sys", - "once_cell", "wasm-bindgen", - "winapi", + "windows", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" +dependencies = [ + "cxx", + "cxx-build", ] [[package]] @@ -2131,24 +2399,62 @@ dependencies = [ "bytemuck", "byteorder", "color_quant", - "gif", - "jpeg-decoder", "num-iter", "num-rational 0.3.2", "num-traits", +] + +[[package]] +name = "image" +version = "0.24.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" +dependencies = [ + "bytemuck", + "byteorder", + "color_quant", + "exr", + "gif", + "jpeg-decoder", + "num-rational 0.4.1", + "num-traits", "png", - "scoped_threadpool", + "qoi", "tiff", ] [[package]] -name = "indexed_db_futures" -version = "0.2.3" -source = "git+https://github.com/Hywan/rust-indexed-db?branch=feat-factory-nodejs#5dab67890cea0ab88b967031adc09179a537d77c" +name = "imbl" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2806b69cd9f4664844027b64465eacb444c67c1db9c778e341adff0c25cdb0d" dependencies = [ - "cfg-if 1.0.0", + "bitmaps", + "imbl-sized-chunks", + "rand_core 0.6.4", + "rand_xoshiro", + "serde", + "version_check", +] + +[[package]] +name = "imbl-sized-chunks" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6957ea0b2541c5ca561d3ef4538044af79f8a05a1eb3a3b148936aaceaa1076" +dependencies = [ + "bitmaps", +] + +[[package]] +name = "indexed_db_futures" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfbcff6ae46750b15cc594bfd277b188cbddcfdc1817848f97f03f26f8625b9e" +dependencies = [ + "cfg-if", "js-sys", - "uuid 0.8.2", + "uuid", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -2156,9 +2462,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.1" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown 0.12.3", @@ -2181,47 +2487,58 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "wasm-bindgen", "web-sys", ] [[package]] -name = "ipnet" -version = "2.5.0" +name = "io-lifetimes" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" +checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" +dependencies = [ + "hermit-abi 0.3.1", + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "ipnet" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" [[package]] name = "itertools" -version = "0.10.3" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" dependencies = [ "either", ] [[package]] name = "itoa" -version = "1.0.3" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" +checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" [[package]] name = "jpeg-decoder" -version = "0.1.22" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2" +checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" dependencies = [ "rayon", ] [[package]] name = "js-sys" -version = "0.3.60" +version = "0.3.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" dependencies = [ "wasm-bindgen", ] @@ -2244,11 +2561,45 @@ dependencies = [ "serde", ] +[[package]] +name = "konst" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "330f0e13e6483b8c34885f7e6c9f19b1a7bd449c673fbb948a51c99d66ef74f4" +dependencies = [ + "konst_macro_rules", + "konst_proc_macros", +] + +[[package]] +name = "konst_macro_rules" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" + +[[package]] +name = "konst_proc_macros" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "984e109462d46ad18314f10e392c286c3d47bce203088a09012de1015b45b737" + +[[package]] +name = "kv-log-macro" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" +dependencies = [ + "log", +] + [[package]] name = "lazy_static" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +dependencies = [ + "spin 0.5.2", +] [[package]] name = "lazycell" @@ -2257,11 +2608,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] -name = "libadwaita" -version = "0.2.0-alpha.2" +name = "lebe" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ad2318c7abc8629b1d1ed381bd0356c184ae8f4caebc044ef9de1782c86046" +checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" + +[[package]] +name = "libadwaita" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c4efd2020a4fcedbad2c4a97de97bf6045e5dc49d61d5a5d0cfd753db60700" dependencies = [ + "bitflags 1.3.2", "futures-channel", "gdk-pixbuf", "gdk4", @@ -2276,9 +2634,9 @@ dependencies = [ [[package]] name = "libadwaita-sys" -version = "0.2.0-alpha.2" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e835f99b92f6e7f43ddb2c0ca79d9d21124a170190876505e03484f337f7edc7" +checksum = "0727b85b4fe2b1bed5ac90df6343de15cbf8118bfb96d7c3cc1512681a4b34ac" dependencies = [ "gdk4-sys", "gio-sys", @@ -2286,59 +2644,29 @@ dependencies = [ "gobject-sys", "gtk4-sys", "libc", + "pango-sys", "system-deps", ] [[package]] name = "libc" -version = "0.2.132" +version = "0.2.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" +checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" [[package]] -name = "libloading" -version = "0.7.3" +name = "libm" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" -dependencies = [ - "cfg-if 1.0.0", - "winapi", -] - -[[package]] -name = "libsecret" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4af5a2342942fa42d706a424e9f9914287fb8317132750fd73a241140ac38c1" -dependencies = [ - "bitflags", - "gio", - "glib", - "libc", - "libsecret-sys", - "once_cell", -] - -[[package]] -name = "libsecret-sys" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b630bef24b542dc1609a14c56b9267c147dbef1ee7ad08fb1a852a07c17d492d" -dependencies = [ - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "pkg-config", - "system-deps", -] +checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" [[package]] name = "libshumate" -version = "0.1.0-alpha.4" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5c0b7cb25a837204c7eda0879877e0716924c2f970c08e60228bd8410ddc372" +checksum = "6f835052474118c10cfa5583e2d531a262ad7ea0909ae1a8a4e94b5d6d472078" dependencies = [ + "gdk-pixbuf", "gdk4", "gio", "glib", @@ -2350,10 +2678,11 @@ dependencies = [ [[package]] name = "libshumate-sys" -version = "0.1.0-alpha.4" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9380bffe8a69af1cd5c6ae0b6dfd2942017d89d9565f64d0e3579629e3921f07" +checksum = "61ab625df72e11d45d52793e388b5052ab2af7945d8a4d469f427a568f9a29bb" dependencies = [ + "gdk-pixbuf-sys", "gdk4-sys", "gio-sys", "glib-sys", @@ -2365,11 +2694,11 @@ dependencies = [ [[package]] name = "libspa" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8bb02bbc8d550e2f0a31989c61e1ac3c883bab2edee49ffcb5d5ca18266786d" +checksum = "667dfbb50c3d1f7ee1d33afdc04d1255923ece7642db3303046e7d63d997d77d" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cc", "cookie-factory", "errno", @@ -2381,14 +2710,34 @@ dependencies = [ [[package]] name = "libspa-sys" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e8d2e38d6cdd10d7d78eb0cb409c127cf16da2c296d9623375551e309616d4d" +checksum = "79cf5b88f52534df7ca88d451ae9628e22124e3cc5c60966465a7db479534c7a" dependencies = [ "bindgen", + "cc", "system-deps", ] +[[package]] +name = "libsqlite3-sys" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" +dependencies = [ + "pkg-config", + "vcpkg", +] + +[[package]] +name = "link-cplusplus" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" +dependencies = [ + "cc", +] + [[package]] name = "linkify" version = "0.9.0" @@ -2398,6 +2747,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "linux-raw-sys" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36eb31c1778188ae1e64398743890d0877fef36d11521ac60406b42016e8c2cf" + [[package]] name = "locale_config" version = "0.3.0" @@ -2413,9 +2768,9 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390" +checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" dependencies = [ "autocfg", "scopeguard", @@ -2427,25 +2782,17 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", + "value-bag", ] [[package]] name = "lru" -version = "0.6.6" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91" +checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17" dependencies = [ - "hashbrown 0.11.2", -] - -[[package]] -name = "lru" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936d98d2ddd79c18641c6709e7bb09981449694e402d1a0f0f657ea8d61f4a51" -dependencies = [ - "hashbrown 0.12.3", + "hashbrown 0.13.2", ] [[package]] @@ -2469,20 +2816,6 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" -[[package]] -name = "markup5ever" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" -dependencies = [ - "log", - "phf 0.8.0", - "phf_codegen 0.8.0", - "string_cache", - "string_cache_codegen", - "tendril", -] - [[package]] name = "markup5ever" version = "0.11.0" @@ -2491,7 +2824,7 @@ checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" dependencies = [ "log", "phf 0.10.1", - "phf_codegen 0.10.0", + "phf_codegen", "string_cache", "string_cache_codegen", "tendril", @@ -2503,116 +2836,151 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9521dd6750f8e80ee6c53d65e2e4656d7de37064f3a7a5d2d11d05df93839c2" dependencies = [ - "html5ever 0.26.0", - "markup5ever 0.11.0", + "html5ever", + "markup5ever", "tendril", "xml5ever", ] +[[package]] +name = "matrix-pickle" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b18185b3f64cc8d44840dbf92d92aeb05c1ef97094f51a32c1afd36a4415d225" +dependencies = [ + "matrix-pickle-derive", + "thiserror", +] + +[[package]] +name = "matrix-pickle-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cef08fbb48d0d5125d3885e422c426b5be84067c63ceb5d8b32f9130143f5b81" +dependencies = [ + "proc-macro-crate", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "matrix-sdk" -version = "0.5.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.6.2" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ "anymap2", - "async-once-cell", "async-stream", "async-trait", "backoff", "bytes", + "bytesize", + "chrono", "dashmap", - "derive_builder 0.10.2", "event-listener", - "futures-channel", + "eyeball", + "eyeball-im", "futures-core", - "futures-signals", "futures-util", + "gloo-timers", "http", + "hyper", + "image 0.24.6", + "imbl", + "indexmap", "matrix-sdk-base", "matrix-sdk-common", "matrix-sdk-indexeddb", - "matrix-sdk-sled", + "matrix-sdk-sqlite", "mime", + "mime2ext", + "once_cell", + "pin-project-lite", "rand 0.8.5", "reqwest", "ruma", "serde", + "serde_html_form", "serde_json", + "tempfile", "thiserror", "tokio", - "tokio-stream", + "tower", "tracing", "url", - "warp", - "wasm-timer", "zeroize", ] [[package]] name = "matrix-sdk-base" -version = "0.5.1" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.6.1" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ - "async-stream", "async-trait", + "bitflags 2.1.0", "dashmap", - "futures-channel", - "futures-core", - "futures-signals", + "eyeball", "futures-util", - "lru 0.8.0", "matrix-sdk-common", "matrix-sdk-crypto", + "matrix-sdk-store-encryption", "once_cell", "ruma", "serde", "serde_json", "thiserror", + "tokio", "tracing", - "zeroize", ] [[package]] name = "matrix-sdk-common" -version = "0.5.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.6.0" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ - "async-lock", "futures-core", "futures-util", + "gloo-timers", "instant", "ruma", "serde", + "serde_json", "tokio", "wasm-bindgen-futures", - "wasm-timer", ] [[package]] name = "matrix-sdk-crypto" -version = "0.5.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.6.0" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ "aes", + "async-std", "async-trait", "atomic", - "base64", + "base64 0.21.0", "byteorder", + "cfg-if", "ctr", "dashmap", - "event-listener", + "eyeball", + "futures-core", "futures-util", "hmac", + "itertools", "matrix-sdk-common", "matrix-sdk-qrcode", - "pbkdf2", + "pbkdf2 0.11.0", "rand 0.8.5", + "rmp-serde", "ruma", "serde", "serde_json", - "sha2 0.10.5", + "sha2 0.10.6", "thiserror", "tokio", + "tokio-stream", "tracing", "vodozemac", "zeroize", @@ -2620,16 +2988,14 @@ dependencies = [ [[package]] name = "matrix-sdk-indexeddb" -version = "0.1.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.2.0" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ "anyhow", "async-trait", - "base64", - "dashmap", - "derive_builder 0.11.2", - "futures-util", - "getrandom 0.2.7", + "base64 0.21.0", + "getrandom 0.2.9", + "gloo-utils", "indexed_db_futures", "js-sys", "matrix-sdk-base", @@ -2639,6 +3005,7 @@ dependencies = [ "serde", "serde_json", "thiserror", + "tokio", "tracing", "wasm-bindgen", "web-sys", @@ -2646,10 +3013,9 @@ dependencies = [ [[package]] name = "matrix-sdk-qrcode" -version = "0.3.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.4.0" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ - "base64", "byteorder", "qrcode", "ruma-common", @@ -2658,44 +3024,42 @@ dependencies = [ ] [[package]] -name = "matrix-sdk-sled" +name = "matrix-sdk-sqlite" version = "0.1.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ - "async-stream", "async-trait", - "dashmap", - "derive_builder 0.11.2", - "fs_extra", - "futures-core", - "futures-util", + "deadpool-sqlite", "matrix-sdk-base", - "matrix-sdk-common", "matrix-sdk-crypto", "matrix-sdk-store-encryption", + "rmp-serde", "ruma", + "rusqlite", "serde", "serde_json", - "sled", "thiserror", "tokio", "tracing", + "vodozemac", ] [[package]] name = "matrix-sdk-store-encryption" -version = "0.1.0" -source = "git+https://github.com/matrix-org/matrix-rust-sdk.git#34ed04958f4c7c1a4a6957cc33f27a5c637d8790" +version = "0.2.0" +source = "git+https://github.com/matrix-org/matrix-rust-sdk.git?rev=d6100915dfb233c90dab8d64512c0e6063be70e3#d6100915dfb233c90dab8d64512c0e6063be70e3" dependencies = [ "blake3", "chacha20poly1305", "displaydoc", + "getrandom 0.2.9", "hmac", - "pbkdf2", + "pbkdf2 0.11.0", "rand 0.8.5", + "rmp-serde", "serde", "serde_json", - "sha2 0.10.5", + "sha2 0.10.6", "thiserror", "zeroize", ] @@ -2708,18 +3072,33 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "memoffset" -version = "0.6.5" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" +dependencies = [ + "autocfg", +] + +[[package]] +name = "memoffset" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" dependencies = [ "autocfg", ] [[package]] name = "mime" -version = "0.3.16" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime2ext" +version = "0.1.52" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a85a5069ebd40e64b1985773cc81addbe9d90d7ecf60e7b5475a57ad584c70" [[package]] name = "mime_guess" @@ -2739,46 +3118,55 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.3.7" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" +checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" dependencies = [ - "adler32", + "adler", ] [[package]] name = "miniz_oxide" -version = "0.4.4" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" dependencies = [ "adler", - "autocfg", + "simd-adler32", ] [[package]] name = "mio" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" +checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" dependencies = [ "libc", "log", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys", + "windows-sys 0.45.0", ] [[package]] name = "muldiv" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5136edda114182728ccdedb9f5eda882781f35fa6e80cc360af12a8932507f3" +checksum = "956787520e75e9bd233246045d19f42fb73242759cc57fba9611d940ae96d4b0" + +[[package]] +name = "nanorand" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" +dependencies = [ + "getrandom 0.2.9", +] [[package]] name = "native-tls" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ "lazy_static", "libc", @@ -2800,40 +3188,90 @@ checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" [[package]] name = "nix" -version = "0.14.1" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" +checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" dependencies = [ - "bitflags", - "cc", - "cfg-if 0.1.10", + "bitflags 1.3.2", + "cfg-if", "libc", - "void", -] - -[[package]] -name = "nix" -version = "0.23.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" -dependencies = [ - "bitflags", - "cc", - "cfg-if 1.0.0", - "libc", - "memoffset", + "memoffset 0.7.1", + "pin-utils", + "static_assertions", ] [[package]] name = "nom" -version = "7.1.1" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ "memchr", "minimal-lexical", ] +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational 0.4.1", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint-dig" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905" +dependencies = [ + "byteorder", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.5", + "serde", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-complex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" +dependencies = [ + "num-traits", +] + [[package]] name = "num-integer" version = "0.1.45" @@ -2873,6 +3311,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" dependencies = [ "autocfg", + "num-bigint", "num-integer", "num-traits", ] @@ -2888,35 +3327,14 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.13.1" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" +checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" dependencies = [ - "hermit-abi", + "hermit-abi 0.2.6", "libc", ] -[[package]] -name = "num_enum" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" -dependencies = [ - "num_enum_derive", -] - -[[package]] -name = "num_enum_derive" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" -dependencies = [ - "proc-macro-crate", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", -] - [[package]] name = "objc" version = "0.2.7" @@ -2948,9 +3366,37 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.15.0" +version = "1.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" +checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" + +[[package]] +name = "oo7" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1007a6c292751abc192f8dbeef8341bac074e991be7b0eb27a6aece5ee79b4dd" +dependencies = [ + "aes", + "byteorder", + "cbc", + "cipher 0.4.4", + "digest 0.10.6", + "dirs", + "futures-util", + "hkdf", + "hmac", + "num", + "num-bigint-dig", + "once_cell", + "pbkdf2 0.12.1", + "rand 0.8.5", + "serde", + "sha2 0.10.6", + "tokio", + "tracing", + "zbus", + "zeroize", +] [[package]] name = "opaque-debug" @@ -2960,12 +3406,12 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "openssl" -version = "0.10.41" +version = "0.10.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" +checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" dependencies = [ - "bitflags", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", "foreign-types", "libc", "once_cell", @@ -2975,13 +3421,13 @@ dependencies = [ [[package]] name = "openssl-macros" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] @@ -2992,11 +3438,10 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.75" +version = "0.9.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" +checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" dependencies = [ - "autocfg", "cc", "libc", "pkg-config", @@ -3005,30 +3450,37 @@ dependencies = [ [[package]] name = "option-operations" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42b01597916c91a493b1e8a2fde64fec1764be3259abc1f06efc99c274f150a2" +checksum = "7c26d27bb1aeab65138e4bf7666045169d1717febcc9ff870166be8348b223d0" dependencies = [ "paste", ] [[package]] name = "ordered-stream" -version = "0.0.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44630c059eacfd6e08bdaa51b1db2ce33119caa4ddc1235e923109aa5f25ccb1" +checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" dependencies = [ "futures-core", "pin-project-lite", ] [[package]] -name = "pango" -version = "0.15.10" +name = "overload" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "pango" +version = "0.17.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52c280b82a881e4208afb3359a8e7fde27a1b272280981f1f34610bed5770d37" dependencies = [ - "bitflags", + "bitflags 1.3.2", + "gio", "glib", "libc", "once_cell", @@ -3037,9 +3489,9 @@ dependencies = [ [[package]] name = "pango-sys" -version = "0.15.10" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" +checksum = "4293d0f0b5525eb5c24734d30b0ed02cd02aa734f216883f376b54de49625de8" dependencies = [ "glib-sys", "gobject-sys", @@ -3049,20 +3501,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" - -[[package]] -name = "parking_lot" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" -dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.5", -] +checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" [[package]] name = "parking_lot" @@ -3071,34 +3512,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.3", + "parking_lot_core", ] [[package]] name = "parking_lot_core" -version = "0.8.5" +version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" +checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" dependencies = [ - "cfg-if 1.0.0", - "instant", + "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", - "winapi", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "redox_syscall", - "smallvec", - "windows-sys", + "windows-sys 0.45.0", ] [[package]] @@ -3108,15 +3535,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" dependencies = [ "base64ct", - "rand_core 0.6.3", + "rand_core 0.6.4", "subtle", ] [[package]] name = "paste" -version = "1.0.9" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" +checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" [[package]] name = "pbkdf2" @@ -3124,10 +3551,20 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" dependencies = [ - "digest 0.10.3", + "digest 0.10.6", "hmac", "password-hash", - "sha2 0.10.5", + "sha2 0.10.6", +] + +[[package]] +name = "pbkdf2" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0ca0b5a68607598bf3bad68f32227a8164f6254833f84eafaac409cd6746c31" +dependencies = [ + "digest 0.10.6", + "hmac", ] [[package]] @@ -3142,44 +3579,23 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" -[[package]] -name = "pest" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb779fcf4bb850fbbb0edc96ff6cf34fd90c4b1a112ce042653280d9a7364048" -dependencies = [ - "thiserror", - "ucd-trie", -] - -[[package]] -name = "phf" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" -dependencies = [ - "phf_shared 0.8.0", -] - [[package]] name = "phf" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" dependencies = [ - "phf_macros", "phf_shared 0.10.0", - "proc-macro-hack", ] [[package]] -name = "phf_codegen" -version = "0.8.0" +name = "phf" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" +checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" dependencies = [ - "phf_generator 0.8.0", - "phf_shared 0.8.0", + "phf_macros", + "phf_shared 0.11.1", ] [[package]] @@ -3192,16 +3608,6 @@ dependencies = [ "phf_shared 0.10.0", ] -[[package]] -name = "phf_generator" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" -dependencies = [ - "phf_shared 0.8.0", - "rand 0.7.3", -] - [[package]] name = "phf_generator" version = "0.10.0" @@ -3213,26 +3619,26 @@ dependencies = [ ] [[package]] -name = "phf_macros" -version = "0.10.0" +name = "phf_generator" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" +checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", - "proc-macro-hack", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "phf_shared 0.11.1", + "rand 0.8.5", ] [[package]] -name = "phf_shared" -version = "0.8.0" +name = "phf_macros" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" dependencies = [ - "siphasher", + "phf_generator 0.11.1", + "phf_shared 0.11.1", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3244,6 +3650,15 @@ dependencies = [ "siphasher", ] +[[package]] +name = "phf_shared" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" +dependencies = [ + "siphasher", +] + [[package]] name = "pin-project" version = "1.0.12" @@ -3259,9 +3674,9 @@ version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3278,27 +3693,27 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pipewire" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d80fef8219c37f479f3d62d70167f3daaa90b71a083f7fd88d69e49f05f0ecdc" +checksum = "dc2180a4a84b855be86e6cd72fa6fd4318278871d2b1082e7cd05fe64b135ccb" dependencies = [ "anyhow", - "bitflags", + "bitflags 1.3.2", "errno", "libc", "libspa", "libspa-sys", + "nix", "once_cell", "pipewire-sys", - "signal", "thiserror", ] [[package]] name = "pipewire-sys" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f6d4262ea1fd3b01786046d1892cc49e9578d872faf8723d95dc7affc810ee4" +checksum = "a95290eedb7fb6aa3922fdc0261cd0ddeb940abcdbdef28778928106554d2123" dependencies = [ "bindgen", "libspa-sys", @@ -3317,34 +3732,37 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" +checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" [[package]] name = "png" -version = "0.16.8" +version = "0.17.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" +checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crc32fast", - "deflate", - "miniz_oxide 0.3.7", + "fdeflate", + "flate2", + "miniz_oxide 0.7.1", ] [[package]] name = "polling" -version = "2.3.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "899b00b9c8ab553c743b3e11e87c5c7d423b2a2de229ba95b24a756344748011" +checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" dependencies = [ "autocfg", - "cfg-if 1.0.0", + "bitflags 1.3.2", + "cfg-if", + "concurrent-queue", "libc", "log", - "wepoll-ffi", - "winapi", + "pin-project-lite", + "windows-sys 0.48.0", ] [[package]] @@ -3360,9 +3778,9 @@ dependencies = [ [[package]] name = "ppv-lite86" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "precomputed-hash" @@ -3378,13 +3796,12 @@ checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5" [[package]] name = "proc-macro-crate" -version = "1.2.1" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "thiserror", - "toml", + "toml_edit", ] [[package]] @@ -3394,9 +3811,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" dependencies = [ "proc-macro-error-attr", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", "version_check", ] @@ -3406,40 +3823,25 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", + "proc-macro2", + "quote", "version_check", ] -[[package]] -name = "proc-macro-hack" -version = "0.5.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" - [[package]] name = "proc-macro2" -version = "0.4.30" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -dependencies = [ - "unicode-xid 0.1.0", -] - -[[package]] -name = "proc-macro2" -version = "1.0.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" dependencies = [ "unicode-ident", ] [[package]] name = "prost" -version = "0.11.0" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7" +checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" dependencies = [ "bytes", "prost-derive", @@ -3447,15 +3849,15 @@ dependencies = [ [[package]] name = "prost-derive" -version = "0.11.0" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364" +checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" dependencies = [ "anyhow", "itertools", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3464,12 +3866,21 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" dependencies = [ - "bitflags", + "bitflags 1.3.2", "getopts", "memchr", "unicase", ] +[[package]] +name = "qoi" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" +dependencies = [ + "bytemuck", +] + [[package]] name = "qrcode" version = "0.12.0" @@ -3477,34 +3888,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16d2f1455f3630c6e5107b4f2b94e74d76dea80736de0981fd27644216cff57f" dependencies = [ "checked_int_cast", - "image", -] - -[[package]] -name = "quick-xml" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b" -dependencies = [ - "memchr", + "image 0.23.14", ] [[package]] name = "quote" -version = "0.6.13" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" +checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" dependencies = [ - "proc-macro2 0.4.30", -] - -[[package]] -name = "quote" -version = "1.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" -dependencies = [ - "proc-macro2 1.0.43", + "proc-macro2", ] [[package]] @@ -3518,7 +3911,6 @@ dependencies = [ "rand_chacha 0.2.2", "rand_core 0.5.1", "rand_hc", - "rand_pcg", ] [[package]] @@ -3529,7 +3921,7 @@ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", "rand_chacha 0.3.1", - "rand_core 0.6.3", + "rand_core 0.6.4", ] [[package]] @@ -3549,7 +3941,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core 0.6.3", + "rand_core 0.6.4", ] [[package]] @@ -3563,11 +3955,11 @@ dependencies = [ [[package]] name = "rand_core" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.7", + "getrandom 0.2.9", ] [[package]] @@ -3580,31 +3972,29 @@ dependencies = [ ] [[package]] -name = "rand_pcg" -version = "0.2.1" +name = "rand_xoshiro" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" dependencies = [ - "rand_core 0.5.1", + "rand_core 0.6.4", ] [[package]] name = "rayon" -version = "1.5.3" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" +checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" dependencies = [ - "autocfg", - "crossbeam-deque", "either", "rayon-core", ] [[package]] name = "rayon-core" -version = "1.9.3" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" +checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" dependencies = [ "crossbeam-channel", "crossbeam-deque", @@ -3612,13 +4002,28 @@ dependencies = [ "num_cpus", ] +[[package]] +name = "readlock" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5b7f359207e69e1395440120fa3b07c59bb92c4ec077804cd10d7ebbe4c01a" + [[package]] name = "redox_syscall" version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", ] [[package]] @@ -3627,16 +4032,16 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ - "getrandom 0.2.7", - "redox_syscall", + "getrandom 0.2.9", + "redox_syscall 0.2.16", "thiserror", ] [[package]] name = "regex" -version = "1.6.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" dependencies = [ "aho-corasick", "memchr", @@ -3645,26 +4050,17 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.27" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" - -[[package]] -name = "remove_dir_all" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -dependencies = [ - "winapi", -] +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" [[package]] name = "reqwest" -version = "0.11.11" +version = "0.11.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" +checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" dependencies = [ - "base64", + "base64 0.21.0", "bytes", "encoding_rs", "futures-core", @@ -3676,10 +4072,10 @@ dependencies = [ "hyper-tls", "ipnet", "js-sys", - "lazy_static", "log", "mime", "native-tls", + "once_cell", "percent-encoding", "pin-project-lite", "serde", @@ -3697,21 +4093,48 @@ dependencies = [ ] [[package]] -name = "rqrr" -version = "0.4.0" +name = "retain_mut" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fa79947f53b20adb909a323d828d0fd744fa9d854792df07913b083bcd4d63b" +checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" + +[[package]] +name = "rmp" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" +dependencies = [ + "byteorder", + "num-traits", + "paste", +] + +[[package]] +name = "rmp-serde" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5b13be192e0220b8afb7222aa5813cb62cc269ebb5cac346ca6487681d2913e" +dependencies = [ + "byteorder", + "rmp", + "serde", +] + +[[package]] +name = "rqrr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a8b87d1f9f69bb1a6c77e20fd303f9617b2b68dcff87cd9bcbfff2ced4b8a0b" dependencies = [ "g2p", - "image", - "lru 0.6.6", + "image 0.24.6", + "lru", ] [[package]] name = "ruma" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3daa593bddbe225bc78760329afaba54d0c653e015f18ce6405fa723ec0f34d5" +version = "0.8.2" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ "assign", "js_int", @@ -3724,59 +4147,58 @@ dependencies = [ [[package]] name = "ruma-client-api" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2709c891d277ef94d56657c3ec92ed464779dbfff055e518425eedf11d9ecb7" +version = "0.16.2" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ "assign", "bytes", "http", "js_int", + "js_option", "maplit", - "percent-encoding", "ruma-common", "serde", + "serde_html_form", "serde_json", ] [[package]] name = "ruma-common" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67dab5e934f2e280875cf3a863c14d876265bda169e4fd18334058e7307142d6" +version = "0.11.3" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ - "base64", + "base64 0.21.0", "bytes", "form_urlencoded", - "getrandom 0.2.7", - "html5ever 0.25.2", + "getrandom 0.2.9", + "html5ever", "http", "indexmap", - "itoa", "js-sys", "js_int", "js_option", + "konst", "percent-encoding", - "phf 0.10.1", + "phf 0.11.1", "pulldown-cmark", "rand 0.8.5", "regex", "ruma-identifiers-validation", "ruma-macros", "serde", + "serde_html_form", "serde_json", "thiserror", "tracing", "url", - "uuid 1.1.2", + "uuid", "wildmatch", ] [[package]] name = "ruma-federation-api" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f905d12f6144c7a754bd0339fa6893698c03d03a908abb20cc6eeb4ec7f9466" +version = "0.7.1" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ "js_int", "ruma-common", @@ -3786,9 +4208,8 @@ dependencies = [ [[package]] name = "ruma-identifiers-validation" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eabac62d16465a87435579c779d74dceabb93b09e44c766af6085050f3cc4275" +version = "0.9.1" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ "js_int", "thiserror", @@ -3796,25 +4217,23 @@ dependencies = [ [[package]] name = "ruma-macros" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3e5a61180840ebfdeb4bcc4dc4a0d0c21aa22f587360b16b785c79058d99f3" +version = "0.11.3" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ "once_cell", "proc-macro-crate", - "proc-macro2 1.0.43", - "quote 1.0.21", + "proc-macro2", + "quote", "ruma-identifiers-validation", "serde", - "syn 1.0.99", + "syn 2.0.15", "toml", ] [[package]] name = "ruma-push-gateway-api" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dfd2f65e3377126282d444275a43aa05eecf5950344ebc5a6173abf55ba3636" +version = "0.7.1" +source = "git+https://github.com/ruma/ruma.git?rev=54a4223caa1c1052464ecdba0f1e08f126e07bcd#54a4223caa1c1052464ecdba0f1e08f126e07bcd" dependencies = [ "js_int", "ruma-common", @@ -3822,6 +4241,20 @@ dependencies = [ "serde_json", ] +[[package]] +name = "rusqlite" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" +dependencies = [ + "bitflags 1.3.2", + "fallible-iterator", + "fallible-streaming-iterator", + "hashlink", + "libsqlite3-sys", + "smallvec", +] + [[package]] name = "rustc-hash" version = "1.1.0" @@ -3830,40 +4263,47 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc_version" -version = "0.3.3" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ "semver", ] [[package]] -name = "ryu" -version = "1.0.11" +name = "rustix" +version = "0.37.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" - -[[package]] -name = "schannel" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" +checksum = "d9b864d3c18a5785a05953adeed93e2dca37ed30f18e69bba9f30079d51f363f" dependencies = [ - "lazy_static", - "windows-sys", + "bitflags 1.3.2", + "errno", + "io-lifetimes", + "libc", + "linux-raw-sys", + "windows-sys 0.48.0", ] [[package]] -name = "scoped-tls" -version = "1.0.0" +name = "rustversion" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" +checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" [[package]] -name = "scoped_threadpool" -version = "0.1.9" +name = "ryu" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" +checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" + +[[package]] +name = "schannel" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" +dependencies = [ + "windows-sys 0.42.0", +] [[package]] name = "scopeguard" @@ -3871,6 +4311,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" +[[package]] +name = "scratch" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" + [[package]] name = "secular" version = "1.0.1" @@ -3882,11 +4328,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.7.0" +version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" +checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-foundation-sys", "libc", @@ -3895,9 +4341,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.6.1" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" +checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" dependencies = [ "core-foundation-sys", "libc", @@ -3905,56 +4351,57 @@ dependencies = [ [[package]] name = "semver" -version = "0.11.0" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" -dependencies = [ - "semver-parser", -] - -[[package]] -name = "semver-parser" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" -dependencies = [ - "pest", -] +checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" [[package]] name = "serde" -version = "1.0.144" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" +checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" dependencies = [ "serde_derive", ] [[package]] name = "serde_bytes" -version = "0.11.7" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b" +checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" dependencies = [ "serde", ] [[package]] name = "serde_derive" -version = "1.0.144" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" +checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", +] + +[[package]] +name = "serde_html_form" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53192e38d5c88564b924dbe9b60865ecbb71b81d38c4e61c817cffd3e36ef696" +dependencies = [ + "form_urlencoded", + "indexmap", + "itoa", + "ryu", + "serde", ] [[package]] name = "serde_json" -version = "1.0.85" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" dependencies = [ "itoa", "ryu", @@ -3963,13 +4410,22 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.9" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" +checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", +] + +[[package]] +name = "serde_spanned" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" +dependencies = [ + "serde", ] [[package]] @@ -3986,30 +4442,15 @@ dependencies = [ [[package]] name = "sha1" -version = "0.6.1" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" dependencies = [ - "sha1_smol", -] - -[[package]] -name = "sha1" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "006769ba83e921b3085caa8334186b00cf92b4cb1a6cf4632fbccc8eff5c7549" -dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", - "digest 0.10.3", + "digest 0.10.6", ] -[[package]] -name = "sha1_smol" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" - [[package]] name = "sha2" version = "0.9.9" @@ -4017,7 +4458,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" dependencies = [ "block-buffer 0.9.0", - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "digest 0.9.0", "opaque-debug", @@ -4025,13 +4466,13 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5" +checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", - "digest 0.10.3", + "digest 0.10.6", ] [[package]] @@ -4050,20 +4491,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" [[package]] -name = "signal" -version = "0.7.0" +name = "signal-hook" +version = "0.3.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f6ce83b159ab6984d2419f495134972b48754d13ff2e3f8c998339942b56ed9" +checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" +dependencies = [ + "libc", + "signal-hook-registry", +] + +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" dependencies = [ "libc", - "nix 0.14.1", ] [[package]] name = "signature" -version = "1.6.0" +version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0ea32af43239f0d353a7dd75a22d94c329c8cdaafdcb4c1c1335aa10c298a4a" +checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" + +[[package]] +name = "simd-adler32" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" [[package]] name = "siphasher" @@ -4073,40 +4529,24 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" [[package]] name = "slab" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" +checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" dependencies = [ "autocfg", ] -[[package]] -name = "sled" -version = "0.34.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935" -dependencies = [ - "crc32fast", - "crossbeam-epoch", - "crossbeam-utils", - "fs2", - "fxhash", - "libc", - "log", - "parking_lot 0.11.2", -] - [[package]] name = "smallvec" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" [[package]] name = "socket2" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", "winapi", @@ -4114,11 +4554,11 @@ dependencies = [ [[package]] name = "sourceview5" -version = "0.4.2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c467112d482de39e310fa7ec5537325d13b4744d8ab9a069b7e51f6eb719364" +checksum = "ee960607b1f7fda934dce68e76e925989ebe186ac04d6ab5ea9ce93e13835c03" dependencies = [ - "bitflags", + "bitflags 1.3.2", "futures-channel", "futures-core", "gdk-pixbuf", @@ -4133,9 +4573,9 @@ dependencies = [ [[package]] name = "sourceview5-sys" -version = "0.4.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "304ab50228500689437d5a722af97ff5b77376866d655e5326a34069e1bf8d01" +checksum = "e7a23462cd3d696199b56317d35e69b240d655b8c70c12bd8f443b672313776c" dependencies = [ "gdk-pixbuf-sys", "gdk4-sys", @@ -4148,6 +4588,21 @@ dependencies = [ "system-deps", ] +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +dependencies = [ + "lock_api", +] + [[package]] name = "spki" version = "0.5.4" @@ -4165,13 +4620,13 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "string_cache" -version = "0.8.4" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" +checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.1", + "parking_lot", "phf_shared 0.10.0", "precomputed-hash", "serde", @@ -4185,22 +4640,38 @@ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" dependencies = [ "phf_generator 0.10.0", "phf_shared 0.10.0", - "proc-macro2 1.0.43", - "quote 1.0.21", + "proc-macro2", + "quote", ] -[[package]] -name = "strsim" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" - [[package]] name = "strsim" version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" +[[package]] +name = "strum" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" +dependencies = [ + "strum_macros", +] + +[[package]] +name = "strum_macros" +version = "0.24.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 1.0.109", +] + [[package]] name = "subtle" version = "2.4.1" @@ -4209,43 +4680,31 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "syn" -version = "0.15.44" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "proc-macro2 0.4.30", - "quote 0.6.13", - "unicode-xid 0.1.0", -] - -[[package]] -name = "syn" -version = "1.0.99" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" -dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", + "proc-macro2", + "quote", "unicode-ident", ] [[package]] -name = "synstructure" -version = "0.12.6" +name = "syn" +version = "2.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" +checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", - "unicode-xid 0.2.3", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] name = "system-deps" -version = "6.0.2" +version = "6.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709" +checksum = "d0fe581ad25d11420b873cf9aedaca0419c2b411487b134d4d21065f3d092055" dependencies = [ "cfg-expr", "heck", @@ -4254,6 +4713,12 @@ dependencies = [ "version-compare", ] +[[package]] +name = "target-lexicon" +version = "0.12.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" + [[package]] name = "temp-dir" version = "0.1.11" @@ -4262,16 +4727,15 @@ checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" [[package]] name = "tempfile" -version = "3.3.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "fastrand", - "libc", - "redox_syscall", - "remove_dir_all", - "winapi", + "redox_syscall 0.3.5", + "rustix", + "windows-sys 0.45.0", ] [[package]] @@ -4287,62 +4751,65 @@ dependencies = [ [[package]] name = "termcolor" -version = "1.1.3" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" +checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" dependencies = [ "winapi-util", ] -[[package]] -name = "textwrap" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -dependencies = [ - "unicode-width", -] - [[package]] name = "thiserror" -version = "1.0.34" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" +checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.34" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" +checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "thread_local" -version = "1.1.4" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" dependencies = [ + "cfg-if", "once_cell", ] [[package]] name = "tiff" -version = "0.6.1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437" +checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471" dependencies = [ + "flate2", "jpeg-decoder", - "miniz_oxide 0.4.4", "weezl", ] +[[package]] +name = "time" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi", +] + [[package]] name = "tinyvec" version = "1.6.0" @@ -4354,33 +4821,44 @@ dependencies = [ [[package]] name = "tinyvec_macros" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.21.0" +version = "1.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42" +checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" dependencies = [ "autocfg", "bytes", "libc", - "memchr", "mio", "num_cpus", - "once_cell", "pin-project-lite", "socket2", - "winapi", + "tokio-macros", + "tracing", + "windows-sys 0.45.0", +] + +[[package]] +name = "tokio-macros" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "tokio-native-tls" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ "native-tls", "tokio", @@ -4400,34 +4878,21 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.9" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9" +checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313" dependencies = [ "futures-core", "pin-project-lite", "tokio", + "tokio-util", ] [[package]] name = "tokio-util" -version = "0.6.10" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "log", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" +checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" dependencies = [ "bytes", "futures-core", @@ -4439,13 +4904,58 @@ dependencies = [ [[package]] name = "toml" -version = "0.5.9" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" +checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" dependencies = [ "serde", ] +[[package]] +name = "toml_edit" +version = "0.19.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" +dependencies = [ + "indexmap", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-util", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" + [[package]] name = "tower-service" version = "0.3.2" @@ -4454,11 +4964,11 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.36" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "log", "pin-project-lite", "tracing-attributes", @@ -4467,20 +4977,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.22" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" +checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 2.0.15", ] [[package]] name = "tracing-core" -version = "0.1.29" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" dependencies = [ "once_cell", "valuable", @@ -4499,11 +5009,11 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.15" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b" +checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" dependencies = [ - "ansi_term", + "nu-ansi-term", "sharded-slab", "smallvec", "thread_local", @@ -4513,21 +5023,15 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "typenum" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" - -[[package]] -name = "ucd-trie" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" [[package]] name = "uds_windows" @@ -4550,42 +5054,30 @@ dependencies = [ [[package]] name = "unicode-bidi" -version = "0.3.8" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.3" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" +checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" [[package]] name = "unicode-normalization" -version = "0.1.21" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" dependencies = [ "tinyvec", ] [[package]] name = "unicode-width" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" - -[[package]] -name = "unicode-xid" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" - -[[package]] -name = "unicode-xid" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" [[package]] name = "universal-hash" @@ -4606,6 +5098,7 @@ dependencies = [ "form_urlencoded", "idna", "percent-encoding", + "serde", ] [[package]] @@ -4615,21 +5108,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] -name = "uuid" -version = "0.8.2" +name = "utf8-width" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" -dependencies = [ - "getrandom 0.2.7", -] +checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" [[package]] name = "uuid" -version = "1.1.2" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" +checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb" dependencies = [ - "getrandom 0.2.7", + "getrandom 0.2.9", + "wasm-bindgen", ] [[package]] @@ -4638,23 +5129,27 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" +[[package]] +name = "value-bag" +version = "1.0.0-alpha.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" +dependencies = [ + "ctor", + "version_check", +] + [[package]] name = "vcpkg" version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" -[[package]] -name = "vec_map" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" - [[package]] name = "version-compare" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73" +checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" [[package]] name = "version_check" @@ -4665,34 +5160,28 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vodozemac" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f20153a1c82ac5f1243b62e80f067ae608facc415c6ef82f88426a61c79886" +source = "git+https://github.com/matrix-org/vodozemac?rev=fb609ca1e4df5a7a818490ae86ac694119e41e71#fb609ca1e4df5a7a818490ae86ac694119e41e71" dependencies = [ "aes", "arrayvec", - "base64", + "base64 0.13.1", "cbc", "ed25519-dalek", "hkdf", "hmac", + "matrix-pickle", "pkcs7", "prost", "rand 0.7.3", "serde", "serde_json", - "sha2 0.10.5", + "sha2 0.10.6", "subtle", "thiserror", "x25519-dalek", "zeroize", ] -[[package]] -name = "void" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" - [[package]] name = "waker-fn" version = "1.1.0" @@ -4709,40 +5198,18 @@ dependencies = [ "try-lock", ] -[[package]] -name = "warp" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cef4e1e9114a4b7f1ac799f16ce71c14de5778500c5450ec6b7b920c55b587e" -dependencies = [ - "bytes", - "futures-channel", - "futures-util", - "headers", - "http", - "hyper", - "log", - "mime", - "mime_guess", - "percent-encoding", - "pin-project", - "scoped-tls", - "serde", - "serde_json", - "serde_urlencoded", - "tokio", - "tokio-stream", - "tokio-util 0.6.10", - "tower-service", - "tracing", -] - [[package]] name = "wasi" version = "0.9.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" +[[package]] +name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -4751,38 +5218,36 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" dependencies = [ - "cfg-if 1.0.0", - "serde", - "serde_json", + "cfg-if", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" dependencies = [ "bumpalo", "log", "once_cell", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.33" +version = "0.4.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" +checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "wasm-bindgen", "web-sys", @@ -4790,53 +5255,38 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" dependencies = [ - "quote 1.0.21", + "quote", "wasm-bindgen-macro-support", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.83" +version = "0.2.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" - -[[package]] -name = "wasm-timer" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" -dependencies = [ - "futures", - "js-sys", - "parking_lot 0.11.2", - "pin-utils", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] +checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" [[package]] name = "web-sys" -version = "0.3.60" +version = "0.3.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" +checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" dependencies = [ "js-sys", "wasm-bindgen", @@ -4848,26 +5298,6 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" -[[package]] -name = "wepoll-ffi" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" -dependencies = [ - "cc", -] - -[[package]] -name = "which" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" -dependencies = [ - "either", - "libc", - "once_cell", -] - [[package]] name = "wildmatch" version = "2.1.1" @@ -4906,47 +5336,169 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows-sys" -version = "0.36.1" +name = "windows" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" dependencies = [ - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_msvc", + "windows-targets 0.48.0", ] [[package]] -name = "windows_aarch64_msvc" -version = "0.36.1" +name = "windows-sys" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" +checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.0", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" +dependencies = [ + "windows_aarch64_gnullvm 0.48.0", + "windows_aarch64_msvc 0.48.0", + "windows_i686_gnu 0.48.0", + "windows_i686_msvc 0.48.0", + "windows_x86_64_gnu 0.48.0", + "windows_x86_64_gnullvm 0.48.0", + "windows_x86_64_msvc 0.48.0", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" [[package]] name = "windows_i686_gnu" -version = "0.36.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" [[package]] name = "windows_i686_msvc" -version = "0.36.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" [[package]] name = "windows_x86_64_gnu" -version = "0.36.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" [[package]] name = "windows_x86_64_msvc" -version = "0.36.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" + +[[package]] +name = "winnow" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" +dependencies = [ + "memchr", +] [[package]] name = "winreg" @@ -4960,8 +5512,7 @@ dependencies = [ [[package]] name = "x25519-dalek" version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2392b6b94a576b4e2bf3c5b2757d63f10ada8020a2e4d08ac849ebcf6ea8e077" +source = "git+https://github.com/A6GibKm/x25519-dalek?rev=9f19028c34107eea87d37bcee2eb2b350ec34cfe#9f19028c34107eea87d37bcee2eb2b350ec34cfe" dependencies = [ "curve25519-dalek", "rand_core 0.5.1", @@ -4969,6 +5520,16 @@ dependencies = [ "zeroize", ] +[[package]] +name = "xdg-home" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" +dependencies = [ + "nix", + "winapi", +] + [[package]] name = "xml5ever" version = "0.17.0" @@ -4977,44 +5538,39 @@ checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650" dependencies = [ "log", "mac", - "markup5ever 0.11.0", + "markup5ever", ] [[package]] name = "zbus" -version = "2.3.2" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d8f1a037b2c4a67d9654dc7bdfa8ff2e80555bbefdd3c1833c1d1b27c963a6b" +checksum = "29242fa5ec5693629ae74d6eb1f69622a9511f600986d6d9779bccf36ac316e3" dependencies = [ "async-broadcast", - "async-channel", - "async-executor", - "async-io", - "async-lock", "async-recursion", - "async-task", "async-trait", "byteorder", "derivative", - "dirs", "enumflags2", "event-listener", "futures-core", "futures-sink", "futures-util", "hex", - "lazy_static", - "nix 0.23.1", + "nix", "once_cell", "ordered-stream", "rand 0.8.5", "serde", "serde_repr", - "sha1 0.6.1", + "sha1", "static_assertions", + "tokio", "tracing", "uds_windows", "winapi", + "xdg-home", "zbus_macros", "zbus_names", "zvariant", @@ -5022,22 +5578,23 @@ dependencies = [ [[package]] name = "zbus_macros" -version = "2.3.2" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f8fb5186d1c87ae88cf234974c240671238b4a679158ad3b94ec465237349a6" +checksum = "537793e26e9af85f774801dc52c6f6292352b2b517c5cf0449ffd3735732a53a" dependencies = [ "proc-macro-crate", - "proc-macro2 1.0.43", - "quote 1.0.21", + "proc-macro2", + "quote", "regex", - "syn 1.0.99", + "syn 1.0.109", + "zvariant_utils", ] [[package]] name = "zbus_names" -version = "2.2.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41a408fd8a352695690f53906dc7fd036be924ec51ea5e05666ff42685ed0af5" +checksum = "f34f314916bd89bdb9934154627fab152f4f28acdda03e7c4c68181b214fe7e3" dependencies = [ "serde", "static_assertions", @@ -5046,47 +5603,68 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.3.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd" +checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" dependencies = [ "zeroize_derive", ] [[package]] name = "zeroize_derive" -version = "1.3.2" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17" +checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", - "synstructure", + "proc-macro2", + "quote", + "syn 2.0.15", +] + +[[package]] +name = "zune-inflate" +version = "0.2.53" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "440a08fd59c6442e4b846ea9b10386c38307eae728b216e1ab2c305d1c9daaf8" +dependencies = [ + "simd-adler32", ] [[package]] name = "zvariant" -version = "3.6.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bd68e4e6432ef19df47d7e90e2e72b5e7e3d778e0ae3baddf12b951265cc758" +checksum = "46fe4914a985446d6fd287019b5fceccce38303d71407d9e6e711d44954a05d8" dependencies = [ "byteorder", "enumflags2", "libc", "serde", "static_assertions", + "url", "zvariant_derive", ] [[package]] name = "zvariant_derive" -version = "3.6.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08e977eaa3af652f63d479ce50d924254ad76722a6289ec1a1eac3231ca30430" +checksum = "34c20260af4b28b3275d6676c7e2a6be0d4332e8e0aba4616d34007fd84e462a" dependencies = [ "proc-macro-crate", - "proc-macro2 1.0.43", - "quote 1.0.21", - "syn 1.0.99", + "proc-macro2", + "quote", + "syn 1.0.109", + "zvariant_utils", +] + +[[package]] +name = "zvariant_utils" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53b22993dbc4d128a17a3b6c92f1c63872dd67198537ee728d8b5d7c40640a8b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", ] diff --git a/pkgs/applications/networking/instant-messengers/fractal-next/default.nix b/pkgs/applications/networking/instant-messengers/fractal-next/default.nix index d3f2ac09441..b31900cb7db 100644 --- a/pkgs/applications/networking/instant-messengers/fractal-next/default.nix +++ b/pkgs/applications/networking/instant-messengers/fractal-next/default.nix @@ -14,32 +14,35 @@ , gstreamer , gst-plugins-base , gst-plugins-bad -, libsecret , desktop-file-utils , appstream-glib , openssl , pipewire , libshumate , wrapGAppsHook4 +, sqlite +, xdg-desktop-portal }: stdenv.mkDerivation rec { pname = "fractal-next"; - version = "5-alpha1"; + version = "5.beta1"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "GNOME"; repo = "fractal"; rev = version; - hash = "sha256-gHMfBGrq3HiGeqHx2knuc9LomgIW9QA9fCSCcQncvz0="; + hash = "sha256-i1kz7k2BBsSmZXUk6U2eT+08T2l950eFd67Cojtd1/k="; }; cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; outputHashes = { - "indexed_db_futures-0.2.3" = "sha256-yAG2gqMclkyQNfb+gG+YlPX46rKSKGAmagQqlcP6gr8="; - "matrix-sdk-0.5.0" = "sha256-qti8NEl8nhGLclX3AjF5X+RLX8AH2CQw/Z+uL3wRMp4="; + "matrix-sdk-0.6.2" = "sha256-27FYmqkzqh1wI6B2BI8LM4DoMfymyJdOn5OGsJZjBAc="; + "ruma-0.8.2" = "sha256-Qsk8KVY5ix7nlDG+1246vQ5HZxgmJmm3KU+RknUFFGg="; + "vodozemac-0.3.0" = "sha256-tAimsVD8SZmlVybb7HvRffwlNsfb7gLWGCplmwbLIVE="; + "x25519-dalek-1.2.0" = "sha256-AHjhccCqacu0WMTFyxIret7ghJ2V+8wEAwR5L6Hy1KY="; }; }; @@ -66,16 +69,13 @@ stdenv.mkDerivation rec { gtk4 gtksourceview5 libadwaita - libsecret openssl pipewire libshumate + sqlite + xdg-desktop-portal ]; - # enables pipewire API deprecated in 0.3.64 - # fixes error caused by https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55 - env.NIX_CFLAGS_COMPILE = toString [ "-DPW_ENABLE_DEPRECATED" ]; - meta = with lib; { description = "Matrix group messaging app (development version)"; homepage = "https://gitlab.gnome.org/GNOME/fractal"; diff --git a/pkgs/applications/radio/pothos/default.nix b/pkgs/applications/radio/pothos/default.nix index 1b36b36829a..6691ffe2dd4 100644 --- a/pkgs/applications/radio/pothos/default.nix +++ b/pkgs/applications/radio/pothos/default.nix @@ -1,6 +1,7 @@ { lib , mkDerivation , fetchFromGitHub +, fetchpatch , cmake , pkg-config , doxygen @@ -33,6 +34,12 @@ mkDerivation rec { patches = [ # spuce's CMakeLists.txt uses QT5_USE_Modules, which does not seem to work on Nix ./spuce.patch + # Poco had some breaking API changes in 1.12 + (fetchpatch { + name = "poco-1.12-compat.patch"; + url = "https://github.com/pothosware/PothosCore/commit/092d1209b0fd0aa8a1733706c994fa95e66fd017.patch"; + hash = "sha256-bZXG8kD4+1LgDV8viZrJ/DMjg8UvW7b5keJQDXurfkA="; + }) ]; nativeBuildInputs = [ cmake pkg-config doxygen wrapQtAppsHook ]; diff --git a/pkgs/applications/virtualization/docker/compose.nix b/pkgs/applications/virtualization/docker/compose.nix index 311e486484c..15676a993c6 100644 --- a/pkgs/applications/virtualization/docker/compose.nix +++ b/pkgs/applications/virtualization/docker/compose.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "docker-compose"; - version = "2.17.3"; + version = "2.18.1"; src = fetchFromGitHub { owner = "docker"; repo = "compose"; rev = "v${version}"; - sha256 = "sha256-9P6WpTefcyKtpPGbe+nxoatG/i8v8C/vOX28j9Cu1Hc="; + sha256 = "sha256-Zx6yN3hQ3o2yvzNEJ65Q4dtnOvTg/tNa8MJvTZuwick="; }; postPatch = '' @@ -16,7 +16,7 @@ buildGoModule rec { rm -rf e2e/ ''; - vendorHash = "sha256-YnGO5ccl1W3Q6DQ+6cEw7AEZTSbPcvJdQIWzWbQJ9Yo="; + vendorHash = "sha256-RXxuHfNzJe+qLw4A+3jZQTJQgro5sXau4+Ff6OG0GtU="; ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ]; diff --git a/pkgs/data/fonts/twitter-color-emoji/default.nix b/pkgs/data/fonts/twitter-color-emoji/default.nix index 7d966fa196f..cb9021d68f3 100644 --- a/pkgs/data/fonts/twitter-color-emoji/default.nix +++ b/pkgs/data/fonts/twitter-color-emoji/default.nix @@ -111,6 +111,6 @@ stdenv.mkDerivation rec { # In Fedora twitter-twemoji-fonts source ## spec files are MIT: https://fedoraproject.org/wiki/Licensing:Main#License_of_Fedora_SPEC_Files license = with licenses; [ asl20 ofl cc-by-40 mit ]; - maintainers = with maintainers; [ jtojnar emily ]; + maintainers = with maintainers; [ emily ]; }; } diff --git a/pkgs/development/libraries/flatpak/default.nix b/pkgs/development/libraries/flatpak/default.nix index 42628239b98..69dca4c5044 100644 --- a/pkgs/development/libraries/flatpak/default.nix +++ b/pkgs/development/libraries/flatpak/default.nix @@ -203,7 +203,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Linux application sandboxing and distribution framework"; homepage = "https://flatpak.org/"; license = licenses.lgpl21Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; }) diff --git a/pkgs/development/libraries/gthree/default.nix b/pkgs/development/libraries/gthree/default.nix index fa4cb404b0a..f8e50f38459 100644 --- a/pkgs/development/libraries/gthree/default.nix +++ b/pkgs/development/libraries/gthree/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { description = "GObject/GTK port of three.js"; homepage = "https://github.com/alexlarsson/gthree"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gthree.x86_64-darwin }; diff --git a/pkgs/development/libraries/libabigail/default.nix b/pkgs/development/libraries/libabigail/default.nix index 0e8c44a9d0d..4ca2eb75b44 100644 --- a/pkgs/development/libraries/libabigail/default.nix +++ b/pkgs/development/libraries/libabigail/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { description = "ABI Generic Analysis and Instrumentation Library"; homepage = "https://sourceware.org/libabigail/"; license = licenses.asl20-llvm; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/libhandy/0.x.nix b/pkgs/development/libraries/libhandy/0.x.nix index 18f2a563a75..a6945508e59 100644 --- a/pkgs/development/libraries/libhandy/0.x.nix +++ b/pkgs/development/libraries/libhandy/0.x.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { description = "A library full of GTK widgets for mobile phones"; homepage = "https://source.puri.sm/Librem5/libhandy"; license = licenses.lgpl21Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/libportal/default.nix b/pkgs/development/libraries/libportal/default.nix index 005bc212665..0052f710a1d 100644 --- a/pkgs/development/libraries/libportal/default.nix +++ b/pkgs/development/libraries/libportal/default.nix @@ -21,7 +21,8 @@ stdenv.mkDerivation rec { pname = "libportal" + lib.optionalString (variant != null) "-${variant}"; version = "0.6"; - outputs = [ "out" "dev" "devdoc" ]; + outputs = [ "out" "dev" ] + ++ lib.optional (variant != "qt5") "devdoc"; src = fetchFromGitHub { owner = "flatpak"; @@ -62,12 +63,14 @@ stdenv.mkDerivation rec { gtk4 ] ++ lib.optionals (variant == "qt5") [ libsForQt5.qtbase + libsForQt5.qtx11extras ]; mesonFlags = [ "-Dbackends=${lib.optionalString (variant != null) variant}" "-Dvapi=${if variant != "qt5" then "true" else "false"}" "-Dintrospection=${if variant != "qt5" then "true" else "false"}" + "-Ddocs=${if variant != "qt5" then "true" else "false"}" # requires introspection=true ]; postFixup = '' @@ -75,6 +78,9 @@ stdenv.mkDerivation rec { moveToOutput "share/doc" "$devdoc" ''; + # we don't have any binaries + dontWrapQtApps = true; + meta = with lib; { description = "Flatpak portal library"; homepage = "https://github.com/flatpak/libportal"; diff --git a/pkgs/development/libraries/openimageio/default.nix b/pkgs/development/libraries/openimageio/default.nix index 024a91df096..b60b94b9291 100644 --- a/pkgs/development/libraries/openimageio/default.nix +++ b/pkgs/development/libraries/openimageio/default.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "openimageio"; - version = "2.4.11.0"; + version = "2.4.11.1"; src = fetchFromGitHub { owner = "OpenImageIO"; repo = "oiio"; rev = "v${version}"; - hash = "sha256-YWVKmvUHq1QSpTCP0UBfSxqWTIWjxOF0gVE7qljCOyY="; + hash = "sha256-Q8Gb/zscZre7fJPyLlZn04Xp3VFFbr6Z007mDPzownc="; }; outputs = [ "bin" "out" "dev" "doc" ]; diff --git a/pkgs/development/libraries/pipewire/default.nix b/pkgs/development/libraries/pipewire/default.nix index dbd4951f3dd..2e60f72a40d 100644 --- a/pkgs/development/libraries/pipewire/default.nix +++ b/pkgs/development/libraries/pipewire/default.nix @@ -224,7 +224,7 @@ let homepage = "https://pipewire.org/"; license = licenses.mit; platforms = platforms.linux; - maintainers = with maintainers; [ jtojnar kranzes k900 ]; + maintainers = with maintainers; [ kranzes k900 ]; }; }; diff --git a/pkgs/development/libraries/poco/default.nix b/pkgs/development/libraries/poco/default.nix index 0e42ff730c8..1459d605acb 100644 --- a/pkgs/development/libraries/poco/default.nix +++ b/pkgs/development/libraries/poco/default.nix @@ -1,38 +1,21 @@ -{ lib, stdenv, fetchurl, fetchpatch, cmake, pkg-config, zlib, pcre, expat, sqlite, openssl, unixODBC, libmysqlclient }: +{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, zlib, pcre2, expat, sqlite, openssl, unixODBC, libmysqlclient }: stdenv.mkDerivation rec { pname = "poco"; - version = "1.11.1"; + version = "1.12.4"; - src = fetchurl { - url = "https://pocoproject.org/releases/${pname}-${version}/${pname}-${version}-all.tar.gz"; - sha256 = "sha256-MczOYCAEcnAAO/tbDafirUMohMI9PNUJyG9HzzpeXSo="; + src = fetchFromGitHub { + owner = "pocoproject"; + repo = "poco"; + sha256 = "sha256-gQ97fkoTGI6yuMPjEsITfapH9FSQieR8rcrPR1nExxc="; + rev = "poco-${version}-release"; }; - patches = [ - # Use GNUInstallDirs (https://github.com/pocoproject/poco/pull/3503) - (fetchpatch { - name = "use-gnuinstalldirs.patch"; - url = "https://github.com/pocoproject/poco/commit/16a2a74f6c28c6e6baca2ba26b4964b51d8a1b74.patch"; - sha256 = "sha256-mkemG8UemJEUQxae1trKakhnJFJW0AufDYFAbmnINbY="; - # Files not included in release tarball - excludes = [ - "Encodings/Compiler/CMakeLists.txt" - "PocoDoc/CMakeLists.txt" - "NetSSL_Win/CMakeLists.txt" - "PDF/CMakeLists.txt" - "SevenZip/CMakeLists.txt" - "ApacheConnector/CMakeLists.txt" - "CppParser/CMakeLists.txt" - ]; - }) - ]; - nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ unixODBC libmysqlclient ]; - propagatedBuildInputs = [ zlib pcre expat sqlite openssl ]; + propagatedBuildInputs = [ zlib pcre2 expat sqlite openssl ]; outputs = [ "out" "dev" ]; @@ -43,11 +26,18 @@ stdenv.mkDerivation rec { "-DPOCO_UNBUNDLED=ON" ]; + postFixup = '' + grep -rlF INTERFACE_INCLUDE_DIRECTORIES "$dev/lib/cmake/Poco" | while read -r f; do + substituteInPlace "$f" \ + --replace "$"'{_IMPORT_PREFIX}/include' "" + done + ''; + meta = with lib; { homepage = "https://pocoproject.org/"; description = "Cross-platform C++ libraries with a network/internet focus"; license = licenses.boost; - maintainers = with maintainers; [ orivej ]; + maintainers = with maintainers; [ orivej tomodachi94 ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index efc7d78abfe..b42f8fb545c 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -85,6 +85,15 @@ let sha512 = "8mlX3l5Xc+pYyiK9G156NyMosNuvvukL+TtNMqw7ti2zgVpz+WqPMPb2J1WU8I03Jbm4cXF+Q0D53hWvQqLQ0Q=="; }; }; + "@alexbosworth/blockchain-1.2.1" = { + name = "_at_alexbosworth_slash_blockchain"; + packageName = "@alexbosworth/blockchain"; + version = "1.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@alexbosworth/blockchain/-/blockchain-1.2.1.tgz"; + sha512 = "zS9sFOLsoGXuMvJJSgOT9g0H+V2BRWen2oJymKLt+a6BbYEXq4iD4zI52kfLsW01ZXwHGjg7mUn732SH/36wQw=="; + }; + }; "@alexbosworth/caporal-1.4.4" = { name = "_at_alexbosworth_slash_caporal"; packageName = "@alexbosworth/caporal"; @@ -166,31 +175,31 @@ let sha512 = "lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="; }; }; - "@angular-devkit/architect-0.1600.1" = { + "@angular-devkit/architect-0.1600.2" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1600.1"; + version = "0.1600.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.1.tgz"; - sha512 = "7N3Dugrp3Fyyn3Q6RsxFNJJ2m1QuqcF3GHJcX7siINL37Hp6xI/q5gKffcd9rf20H1DYZE0VIbR1Sk31G6hMWg=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.2.tgz"; + sha512 = "2AOP3/dwLywcjkRr3ixR/lb0uBn1jzaMWwQR3o7ye3IuEA2sRtyWhUzsy6V7smKBKWPDIbXvX2TcqYZAJ87ccA=="; }; }; - "@angular-devkit/core-16.0.1" = { + "@angular-devkit/core-16.0.2" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "16.0.1"; + version = "16.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.1.tgz"; - sha512 = "2uz98IqkKJlgnHbWQ7VeL4pb+snGAZXIama2KXi+k9GsRntdcw+udX8rL3G9SdUGUF+m6+147Y1oRBMHsO/v4w=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.2.tgz"; + sha512 = "V4+t0BHO+QML9O2IiG2mJi8DtjeMOm4LAuG6tNDeiHZGAPOflvSPsKBtVl2JlXX/JxdLmyF4B6kRoAXRMKcwTg=="; }; }; - "@angular-devkit/schematics-16.0.1" = { + "@angular-devkit/schematics-16.0.2" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "16.0.1"; + version = "16.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.1.tgz"; - sha512 = "A9D0LTYmiqiBa90GKcSuWb7hUouGIbm/AHbJbjL85WLLRbQA2PwKl7P5Mpd6nS/ZC0kfG4VQY3VOaDvb3qpI9g=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.2.tgz"; + sha512 = "z9GDVHhpEXvOQeekFuGghoFR/HikI66LoEifG+jT659N5ggFLJ88hDnXxeR21yUy3BjvnI+c3gRaOnccWAA7ug=="; }; }; "@apidevtools/json-schema-ref-parser-9.0.6" = { @@ -382,13 +391,13 @@ let sha512 = "xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA=="; }; }; - "@astrojs/compiler-1.4.1" = { + "@astrojs/compiler-1.4.2" = { name = "_at_astrojs_slash_compiler"; packageName = "@astrojs/compiler"; - version = "1.4.1"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.4.1.tgz"; - sha512 = "aXAxapNWZwGN41P+Am/ma/2kAzKOhMNaY6YuvLkUHFv+UZkmDHD6F0fE1sQA2Up0bLjgPQa1VQzoAaii5tZWaA=="; + url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.4.2.tgz"; + sha512 = "xoRp7JpiMZPK/beUcZEM5kM44Z/h20wwwQcl54duPqQMyySG9vZ5xMM6dYiQmn7b3XzpZs0cT6TRDoJJ5gwHAQ=="; }; }; "@asyncapi/specs-4.3.1" = { @@ -3001,6 +3010,51 @@ let sha512 = "MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A=="; }; }; + "@cloudflare/workerd-darwin-64-1.20230512.0" = { + name = "_at_cloudflare_slash_workerd-darwin-64"; + packageName = "@cloudflare/workerd-darwin-64"; + version = "1.20230512.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230512.0.tgz"; + sha512 = "V80DswMTu0hiVue5BmjlC0cVufXLKk0KbkesbJ0IywHiuGk0f9uEOgwwL91ioOhPu+3Ss/ka5BNxwPXDxKkG3g=="; + }; + }; + "@cloudflare/workerd-darwin-arm64-1.20230512.0" = { + name = "_at_cloudflare_slash_workerd-darwin-arm64"; + packageName = "@cloudflare/workerd-darwin-arm64"; + version = "1.20230512.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230512.0.tgz"; + sha512 = "HojEqgtCW8FCRQq/ENPsBVv1YoxJVp2kDrC27D7xfwOa2+LCmxh55c2cckxZuGTNAsBIqk6lczq4yQx9xcfSdg=="; + }; + }; + "@cloudflare/workerd-linux-64-1.20230512.0" = { + name = "_at_cloudflare_slash_workerd-linux-64"; + packageName = "@cloudflare/workerd-linux-64"; + version = "1.20230512.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230512.0.tgz"; + sha512 = "zhu61wFAyjbO+MtiQjcKDv+HUXYnW3GhGCKW8xKUsCktaXKr/l2Vp/t3VFzF+M8CuFMML5xmE/1gopHB9pIUcA=="; + }; + }; + "@cloudflare/workerd-linux-arm64-1.20230512.0" = { + name = "_at_cloudflare_slash_workerd-linux-arm64"; + packageName = "@cloudflare/workerd-linux-arm64"; + version = "1.20230512.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230512.0.tgz"; + sha512 = "LvW/DFz35ISnkgagE6qra1CyFmak5sPJcOZ01fovtHIQdwtgUrU5Q+mTAoDZy+8yQnVIM8HCXJxe5gKxM9hnxQ=="; + }; + }; + "@cloudflare/workerd-windows-64-1.20230512.0" = { + name = "_at_cloudflare_slash_workerd-windows-64"; + packageName = "@cloudflare/workerd-windows-64"; + version = "1.20230512.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230512.0.tgz"; + sha512 = "OgRmn5FjroPSha/2JgcM8AQg5NpTig8TqDXgdM61Y/7DCCCEuOuMsZSqU1IrYkPU7gtOFvZSQZLgFA4XxbePbA=="; + }; + }; "@colors/colors-1.5.0" = { name = "_at_colors_slash_colors"; packageName = "@colors/colors"; @@ -3244,13 +3298,13 @@ let sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw=="; }; }; - "@cspell/dict-companies-3.0.10" = { + "@cspell/dict-companies-3.0.11" = { name = "_at_cspell_slash_dict-companies"; packageName = "@cspell/dict-companies"; - version = "3.0.10"; + version = "3.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.10.tgz"; - sha512 = "LgPi7t9cMc2gBL63jkx/H3LAAtM/DjgZEsnmYmGqrCPWYVmKY1Y4sH2PBaV2ocE9CypV83M0DellGiUNb0kmug=="; + url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.11.tgz"; + sha512 = "HkYT9kTwy/gdrgoI860aOjQr3l6SUIoCeGwmt5Ct80hcwkXSRYb9VZv5jVlh9LVBY6/r3LnQBymnErK691ZUKg=="; }; }; "@cspell/dict-cpp-1.1.40" = { @@ -3424,13 +3478,13 @@ let sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; }; }; - "@cspell/dict-en_us-4.3.2" = { + "@cspell/dict-en_us-4.3.3" = { name = "_at_cspell_slash_dict-en_us"; packageName = "@cspell/dict-en_us"; - version = "4.3.2"; + version = "4.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.2.tgz"; - sha512 = "o8xtHDLPNzW6hK5b1TaDTWt25vVi9lWlL6/dZ9YoS+ZMj+Dy/yuXatqfOgeGyU3a9+2gxC0kbr4oufMUQXI2mQ=="; + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.3.tgz"; + sha512 = "Csjm8zWo1YzLrQSdVZsRMfwHXoqqKR41pA8RpRGy2ODPjFeSteslyTW7jv1+R5V/E/IUI97Cxu+Nobm8MBy4MA=="; }; }; "@cspell/dict-filetypes-1.1.8" = { @@ -3748,13 +3802,13 @@ let sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; }; }; - "@cspell/dict-python-4.0.4" = { + "@cspell/dict-python-4.0.5" = { name = "_at_cspell_slash_dict-python"; packageName = "@cspell/dict-python"; - version = "4.0.4"; + version = "4.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.4.tgz"; - sha512 = "whCrxsALD66PxSbxZ++xV1HQzxpRZMiX6LXEkZlj4gWuptrzyZUdTMiI8EqVEVfyf5G4EW7HNCTz35kNL5Zl+w=="; + url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.5.tgz"; + sha512 = "nG2TxPAMYm368KnZBQI7MPirtazOXBmcQ2NQsv2ITTsXuAnJfKdzPnW/4/1iZl8+VBl00NsqPadByiTXqlqXvA=="; }; }; "@cspell/dict-r-2.0.1" = { @@ -3829,13 +3883,13 @@ let sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ=="; }; }; - "@cspell/dict-software-terms-3.1.8" = { + "@cspell/dict-software-terms-3.1.9" = { name = "_at_cspell_slash_dict-software-terms"; packageName = "@cspell/dict-software-terms"; - version = "3.1.8"; + version = "3.1.9"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.1.8.tgz"; - sha512 = "gXJWSqnr8U50wHo/tpplLaZUQBQQGOwaJFHyMhN+DVNO92setoApHQ0zSqy4KSSkfvdbgYP0nPAj0MAo9/TvOw=="; + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.1.9.tgz"; + sha512 = "WEAkj0h51R38O2Q2r/EyFbk6tBo+XSF0JloY7h4G7CI9lmJo0XkRfN2aSaA3oY+nshftxp/IQF2MfVwo3eyZ/g=="; }; }; "@cspell/dict-sql-2.1.0" = { @@ -4414,13 +4468,13 @@ let sha512 = "mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA=="; }; }; - "@esbuild/android-arm-0.17.18" = { + "@esbuild/android-arm-0.17.19" = { name = "_at_esbuild_slash_android-arm"; packageName = "@esbuild/android-arm"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz"; - sha512 = "EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw=="; + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz"; + sha512 = "rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A=="; }; }; "@esbuild/android-arm-0.17.6" = { @@ -4441,13 +4495,13 @@ let sha512 = "RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg=="; }; }; - "@esbuild/android-arm64-0.17.18" = { + "@esbuild/android-arm64-0.17.19" = { name = "_at_esbuild_slash_android-arm64"; packageName = "@esbuild/android-arm64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz"; - sha512 = "/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw=="; + url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz"; + sha512 = "KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA=="; }; }; "@esbuild/android-arm64-0.17.6" = { @@ -4468,13 +4522,13 @@ let sha512 = "SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ=="; }; }; - "@esbuild/android-x64-0.17.18" = { + "@esbuild/android-x64-0.17.19" = { name = "_at_esbuild_slash_android-x64"; packageName = "@esbuild/android-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz"; - sha512 = "x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg=="; + url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz"; + sha512 = "uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww=="; }; }; "@esbuild/android-x64-0.17.6" = { @@ -4495,13 +4549,13 @@ let sha512 = "DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw=="; }; }; - "@esbuild/darwin-arm64-0.17.18" = { + "@esbuild/darwin-arm64-0.17.19" = { name = "_at_esbuild_slash_darwin-arm64"; packageName = "@esbuild/darwin-arm64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz"; - sha512 = "6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ=="; + url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz"; + sha512 = "80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg=="; }; }; "@esbuild/darwin-arm64-0.17.6" = { @@ -4522,13 +4576,13 @@ let sha512 = "uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ=="; }; }; - "@esbuild/darwin-x64-0.17.18" = { + "@esbuild/darwin-x64-0.17.19" = { name = "_at_esbuild_slash_darwin-x64"; packageName = "@esbuild/darwin-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz"; - sha512 = "Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A=="; + url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz"; + sha512 = "IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw=="; }; }; "@esbuild/darwin-x64-0.17.6" = { @@ -4549,13 +4603,13 @@ let sha512 = "nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw=="; }; }; - "@esbuild/freebsd-arm64-0.17.18" = { + "@esbuild/freebsd-arm64-0.17.19" = { name = "_at_esbuild_slash_freebsd-arm64"; packageName = "@esbuild/freebsd-arm64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz"; - sha512 = "fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA=="; + url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz"; + sha512 = "pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ=="; }; }; "@esbuild/freebsd-arm64-0.17.6" = { @@ -4576,13 +4630,13 @@ let sha512 = "TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug=="; }; }; - "@esbuild/freebsd-x64-0.17.18" = { + "@esbuild/freebsd-x64-0.17.19" = { name = "_at_esbuild_slash_freebsd-x64"; packageName = "@esbuild/freebsd-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz"; - sha512 = "FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew=="; + url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz"; + sha512 = "4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ=="; }; }; "@esbuild/freebsd-x64-0.17.6" = { @@ -4603,13 +4657,13 @@ let sha512 = "VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ=="; }; }; - "@esbuild/linux-arm-0.17.18" = { + "@esbuild/linux-arm-0.17.19" = { name = "_at_esbuild_slash_linux-arm"; packageName = "@esbuild/linux-arm"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz"; - sha512 = "jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg=="; + url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz"; + sha512 = "cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA=="; }; }; "@esbuild/linux-arm-0.17.6" = { @@ -4630,13 +4684,13 @@ let sha512 = "7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ=="; }; }; - "@esbuild/linux-arm64-0.17.18" = { + "@esbuild/linux-arm64-0.17.19" = { name = "_at_esbuild_slash_linux-arm64"; packageName = "@esbuild/linux-arm64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz"; - sha512 = "R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ=="; + url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz"; + sha512 = "ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg=="; }; }; "@esbuild/linux-arm64-0.17.6" = { @@ -4657,13 +4711,13 @@ let sha512 = "X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA=="; }; }; - "@esbuild/linux-ia32-0.17.18" = { + "@esbuild/linux-ia32-0.17.19" = { name = "_at_esbuild_slash_linux-ia32"; packageName = "@esbuild/linux-ia32"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz"; - sha512 = "ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ=="; + url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz"; + sha512 = "w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ=="; }; }; "@esbuild/linux-ia32-0.17.6" = { @@ -4693,13 +4747,13 @@ let sha512 = "hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw=="; }; }; - "@esbuild/linux-loong64-0.17.18" = { + "@esbuild/linux-loong64-0.17.19" = { name = "_at_esbuild_slash_linux-loong64"; packageName = "@esbuild/linux-loong64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz"; - sha512 = "bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ=="; + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz"; + sha512 = "2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ=="; }; }; "@esbuild/linux-loong64-0.17.6" = { @@ -4720,13 +4774,13 @@ let sha512 = "znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw=="; }; }; - "@esbuild/linux-mips64el-0.17.18" = { + "@esbuild/linux-mips64el-0.17.19" = { name = "_at_esbuild_slash_linux-mips64el"; packageName = "@esbuild/linux-mips64el"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz"; - sha512 = "oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA=="; + url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz"; + sha512 = "LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A=="; }; }; "@esbuild/linux-mips64el-0.17.6" = { @@ -4747,13 +4801,13 @@ let sha512 = "EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q=="; }; }; - "@esbuild/linux-ppc64-0.17.18" = { + "@esbuild/linux-ppc64-0.17.19" = { name = "_at_esbuild_slash_linux-ppc64"; packageName = "@esbuild/linux-ppc64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz"; - sha512 = "3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ=="; + url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz"; + sha512 = "/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg=="; }; }; "@esbuild/linux-ppc64-0.17.6" = { @@ -4774,13 +4828,13 @@ let sha512 = "uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ=="; }; }; - "@esbuild/linux-riscv64-0.17.18" = { + "@esbuild/linux-riscv64-0.17.19" = { name = "_at_esbuild_slash_linux-riscv64"; packageName = "@esbuild/linux-riscv64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz"; - sha512 = "/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA=="; + url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz"; + sha512 = "FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA=="; }; }; "@esbuild/linux-riscv64-0.17.6" = { @@ -4801,13 +4855,13 @@ let sha512 = "NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ=="; }; }; - "@esbuild/linux-s390x-0.17.18" = { + "@esbuild/linux-s390x-0.17.19" = { name = "_at_esbuild_slash_linux-s390x"; packageName = "@esbuild/linux-s390x"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz"; - sha512 = "cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw=="; + url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz"; + sha512 = "IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q=="; }; }; "@esbuild/linux-s390x-0.17.6" = { @@ -4828,13 +4882,13 @@ let sha512 = "SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w=="; }; }; - "@esbuild/linux-x64-0.17.18" = { + "@esbuild/linux-x64-0.17.19" = { name = "_at_esbuild_slash_linux-x64"; packageName = "@esbuild/linux-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz"; - sha512 = "66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA=="; + url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz"; + sha512 = "68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw=="; }; }; "@esbuild/linux-x64-0.17.6" = { @@ -4855,13 +4909,13 @@ let sha512 = "AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA=="; }; }; - "@esbuild/netbsd-x64-0.17.18" = { + "@esbuild/netbsd-x64-0.17.19" = { name = "_at_esbuild_slash_netbsd-x64"; packageName = "@esbuild/netbsd-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz"; - sha512 = "95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg=="; + url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz"; + sha512 = "CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q=="; }; }; "@esbuild/netbsd-x64-0.17.6" = { @@ -4882,13 +4936,13 @@ let sha512 = "gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg=="; }; }; - "@esbuild/openbsd-x64-0.17.18" = { + "@esbuild/openbsd-x64-0.17.19" = { name = "_at_esbuild_slash_openbsd-x64"; packageName = "@esbuild/openbsd-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz"; - sha512 = "WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA=="; + url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz"; + sha512 = "cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g=="; }; }; "@esbuild/openbsd-x64-0.17.6" = { @@ -4909,13 +4963,13 @@ let sha512 = "SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw=="; }; }; - "@esbuild/sunos-x64-0.17.18" = { + "@esbuild/sunos-x64-0.17.19" = { name = "_at_esbuild_slash_sunos-x64"; packageName = "@esbuild/sunos-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz"; - sha512 = "Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg=="; + url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz"; + sha512 = "vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg=="; }; }; "@esbuild/sunos-x64-0.17.6" = { @@ -4936,13 +4990,13 @@ let sha512 = "u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg=="; }; }; - "@esbuild/win32-arm64-0.17.18" = { + "@esbuild/win32-arm64-0.17.19" = { name = "_at_esbuild_slash_win32-arm64"; packageName = "@esbuild/win32-arm64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz"; - sha512 = "Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg=="; + url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz"; + sha512 = "yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag=="; }; }; "@esbuild/win32-arm64-0.17.6" = { @@ -4963,13 +5017,13 @@ let sha512 = "GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ=="; }; }; - "@esbuild/win32-ia32-0.17.18" = { + "@esbuild/win32-ia32-0.17.19" = { name = "_at_esbuild_slash_win32-ia32"; packageName = "@esbuild/win32-ia32"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz"; - sha512 = "0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw=="; + url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz"; + sha512 = "eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw=="; }; }; "@esbuild/win32-ia32-0.17.6" = { @@ -4990,13 +5044,13 @@ let sha512 = "5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow=="; }; }; - "@esbuild/win32-x64-0.17.18" = { + "@esbuild/win32-x64-0.17.19" = { name = "_at_esbuild_slash_win32-x64"; packageName = "@esbuild/win32-x64"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz"; - sha512 = "qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg=="; + url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz"; + sha512 = "lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA=="; }; }; "@esbuild/win32-x64-0.17.6" = { @@ -5053,13 +5107,13 @@ let sha512 = "lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg=="; }; }; - "@eslint/js-8.40.0" = { + "@eslint/js-8.41.0" = { name = "_at_eslint_slash_js"; packageName = "@eslint/js"; - version = "8.40.0"; + version = "8.41.0"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint/js/-/js-8.40.0.tgz"; - sha512 = "ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA=="; + url = "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz"; + sha512 = "LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA=="; }; }; "@esm2cjs/cacheable-lookup-7.0.0" = { @@ -5314,13 +5368,13 @@ let sha512 = "vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg=="; }; }; - "@expo/config-plugins-6.0.1" = { + "@expo/config-plugins-6.0.2" = { name = "_at_expo_slash_config-plugins"; packageName = "@expo/config-plugins"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-6.0.1.tgz"; - sha512 = "6mqZutxeibXFeqFfoZApFUEH2n1RxGXYMHCdJrDj4eXDBBFZ3aJ0XBoroZcHHHvfRieEsf54vNyJoWp7JZGj8g=="; + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-6.0.2.tgz"; + sha512 = "Cn01fXMHwjU042EgO9oO3Mna0o/UCrW91MQLMbJa4pXM41CYGjNgVy1EVXiuRRx/upegHhvltBw5D+JaUm8aZQ=="; }; }; "@expo/config-plugins-7.0.0" = { @@ -5404,22 +5458,22 @@ let sha512 = "ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA=="; }; }; - "@expo/eas-build-job-1.0.10" = { + "@expo/eas-build-job-1.0.13" = { name = "_at_expo_slash_eas-build-job"; packageName = "@expo/eas-build-job"; - version = "1.0.10"; + version = "1.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.10.tgz"; - sha512 = "BQqVXA5wRPVRtpCyChnJfq9iYD3sp4wtHY+9s/CmsUzFcNixg9VoY4qPUuP4Bsvr40seK9Ut7fIQN0DFr6arDA=="; + url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.13.tgz"; + sha512 = "Q0i3GposBj/b2OPL0CV00HczawtslorNpoJSBQfB4aNR6i7DBIZZ1jWJtrFP8+zHZqlUi4d21aoblNUrKpgBew=="; }; }; - "@expo/eas-json-3.11.0" = { + "@expo/eas-json-3.13.0" = { name = "_at_expo_slash_eas-json"; packageName = "@expo/eas-json"; - version = "3.11.0"; + version = "3.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-3.11.0.tgz"; - sha512 = "RLO0mEIPxxlzFwwztwZyNEZ+Vzm7BA90R13AJXCVcUHdDN1QeJTQbdJjcC4yBvV4bpxteX7ky7VeNN1ziygnyA=="; + url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-3.13.0.tgz"; + sha512 = "N8NuFFYj4U4sxV/WlytH2iZJdiUuHiW37UBMYiRGEvgJcus4DNMME51DS3r8yrloj2zAGzmpyT2+ydCh0QjKHA=="; }; }; "@expo/image-utils-0.3.21" = { @@ -5476,13 +5530,13 @@ let sha512 = "YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q=="; }; }; - "@expo/logger-1.0.0" = { + "@expo/logger-1.0.13" = { name = "_at_expo_slash_logger"; packageName = "@expo/logger"; - version = "1.0.0"; + version = "1.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/logger/-/logger-1.0.0.tgz"; - sha512 = "i07o2xUsmtpC2mQ3ZHOJRtFEqWTfQabOb3U5Q0Hwip/BvI0yj8Pweu2ExhKLERbGugt4tSSLdQJUcKQbOrue6g=="; + url = "https://registry.npmjs.org/@expo/logger/-/logger-1.0.13.tgz"; + sha512 = "x1dp47CCR/mohJcYhg1cv17nDP2ih5MqQcW4CJL02GpNYPlvWSR5V5203kmOdYdCWq2Rs1j45Yo9VmpS2dxSfw=="; }; }; "@expo/metro-config-0.6.0" = { @@ -5674,13 +5728,13 @@ let sha512 = "sqPAjOEFTrjaTybrh9SnPFLInDXcoMC06psEFmH68jLTmoipSQCq8GCEfIoHhxRDALWB+DsiwXJSbXlE/iVIIQ=="; }; }; - "@expo/steps-1.0.11" = { + "@expo/steps-1.0.13" = { name = "_at_expo_slash_steps"; packageName = "@expo/steps"; - version = "1.0.11"; + version = "1.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.11.tgz"; - sha512 = "9PTW4Y4RTJoqVxViMvyFoypNVEipcdjVntfOSKPHNZMFxD9GOMTmgYebJPeiz3dZrIRSyV9s8ABmbZSxABgIBA=="; + url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.13.tgz"; + sha512 = "Hf8VFgwaFsvIb9/8r02/RO5eb1gDUSVyBFgBYVb3iMJvjoZXv74+mJllbh3x1EO28ai68vcEtp8uZ8Su2sLuwg=="; }; }; "@expo/timeago.js-1.0.0" = { @@ -5809,13 +5863,13 @@ let sha512 = "vIiFv7WtXTPz0Sx6h1NpzqrwDN7yef7aQwqFl46yov72BodiAQMTazBl2A/z76IanBPklJmaTquFT9Uydlp/Dg=="; }; }; - "@fluentui/react-8.109.3" = { + "@fluentui/react-8.109.4" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.109.3"; + version = "8.109.4"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.109.3.tgz"; - sha512 = "WXC/3mzgnFKibbTT6qweoNJD+K616N6+7LpZ6PSvpLHOG1AFbNHG83R6ENidGRYH+BmHip/PsLT1h8mOK8Lxgw=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.109.4.tgz"; + sha512 = "YKyGQMlIXO5OFlNEH6ASJFYconDBsT7y3ZdKNhxc5EH3DBUk3YdcFOfbrJCzMv8lFS3lNbIeKjPYTkS6tY42nw=="; }; }; "@fluentui/react-focus-8.8.23" = { @@ -5836,13 +5890,13 @@ let sha512 = "nw7jGA9Q+n33QPXFkOMNg7LwoPxbD2l0ifWJ5sN7UOZYMPpxO/oSKRiPiskvqKW1I/cGjGffyFE+aRomy9sO7A=="; }; }; - "@fluentui/react-portal-compat-context-9.0.5" = { + "@fluentui/react-portal-compat-context-9.0.6" = { name = "_at_fluentui_slash_react-portal-compat-context"; packageName = "@fluentui/react-portal-compat-context"; - version = "9.0.5"; + version = "9.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.5.tgz"; - sha512 = "vgGvv74jPi/salcxv37TCm06lOFn44CfNLX5wZw5HQIe9LYGUw/J7vkaniwNIzmQZsn62Y+fVxDS6Sq5S823tA=="; + url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.6.tgz"; + sha512 = "HUt0/YXKRB4chtzlGbZ+7y7FHFyqaI0CeMFAe/QBXVOiOwA01QOr2j4Uky+30vupspIt6mjodLanuw1jMybmqQ=="; }; }; "@fluentui/react-window-provider-2.2.13" = { @@ -5890,13 +5944,13 @@ let sha512 = "tdvRcUP2jW6NacsKeDhndJ91/Bk6qozcsm8W1LUgyr8C8YhAi9PM8I8pN2IqRiPyhUkBhZmfetVVgU2iNZHFsQ=="; }; }; - "@forge/api-2.15.2" = { + "@forge/api-2.15.3" = { name = "_at_forge_slash_api"; packageName = "@forge/api"; - version = "2.15.2"; + version = "2.15.3"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/api/-/api-2.15.2.tgz"; - sha512 = "y4/owmhilMCHiKZpunBKeX6sDXmENQs7EuWEaxvvo+rZ9bbeLqNv26qK0XnMFw6m8h6mocrvtGZU5y5ssVvGcg=="; + url = "https://registry.npmjs.org/@forge/api/-/api-2.15.3.tgz"; + sha512 = "ePWWVokOTT4DBjITu0bJB7I94aYTdZ+ud2drR4Jed52F5SQmARACpOgKHIr83o+IolDHbpKCXi+2SC7EV1zjkA=="; }; }; "@forge/auth-0.0.1" = { @@ -5917,22 +5971,22 @@ let sha512 = "n2eXc/shPwx0ahD3NNfsmeiFoBCukeglt2htePaNnJBDt0VpC6R4Njsjc/wnL5OMgrGl5/GXzN+mymngXrw9qQ=="; }; }; - "@forge/bundler-4.6.7" = { + "@forge/bundler-4.7.0" = { name = "_at_forge_slash_bundler"; packageName = "@forge/bundler"; - version = "4.6.7"; + version = "4.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.6.7.tgz"; - sha512 = "RfeG5Qmdlp4eibiHdFj0F6Cl2vBvP7hCmds0kNUTUQ9EO/OEeeukXyfFxicHNC9bgbXih/88/+PsS1Tb8qPLrA=="; + url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.7.0.tgz"; + sha512 = "dxN+od0GzfCGcRMHbL42jEC5oPBupSKu5x6qBT/n2t1AXjKsbiAmndcaiSlNfwotZWI9km2oCgfWCpaFzryEpQ=="; }; }; - "@forge/cli-shared-3.11.1" = { + "@forge/cli-shared-3.11.2" = { name = "_at_forge_slash_cli-shared"; packageName = "@forge/cli-shared"; - version = "3.11.1"; + version = "3.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.11.1.tgz"; - sha512 = "mGW9ITjK0mZDwi3sxbEXqwy+tN27tXf4xY5WNP5/sStIiA2QFTdqWhtcdb7n/i6H5ZjOHsynUYWsuU1e7OVb7Q=="; + url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.11.2.tgz"; + sha512 = "HOkYs6RHY4KVJCOSupc9QKvYEzxfoNvKCsy+0RykKcOl5CyFlVoZRS3yLMwA9ck8m+yfPyWdM9mpImHxMUgdiA=="; }; }; "@forge/csp-2.1.3" = { @@ -5944,58 +5998,58 @@ let sha512 = "ccaodlJx0qfV/eCERa8a6oZwGPd8c0nXYWdTrl3JPoJn7MrpP0mzVc/BgmXIhyybaA81lXNfxVAYUeV4QekYzg=="; }; }; - "@forge/egress-1.2.0" = { + "@forge/egress-1.2.1" = { name = "_at_forge_slash_egress"; packageName = "@forge/egress"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/egress/-/egress-1.2.0.tgz"; - sha512 = "2rYfJnCwp3cIfdYvY+40DHNZXTYq1WafLDoJhkKt4cyVDSER2Tl5MFsLu1M6LbN0YGXyyMHDZ9GhFuYqS+3HJg=="; + url = "https://registry.npmjs.org/@forge/egress/-/egress-1.2.1.tgz"; + sha512 = "4XUr2LfLN4TGbEcg5GiqFeHwOT+1l7aaW7nwCn0uz2uFahQ+G9Kq0ebFWqsvzd5mCvO9oaSAucJaDeEpriKhmA=="; }; }; - "@forge/lint-3.3.1" = { + "@forge/lint-3.4.0" = { name = "_at_forge_slash_lint"; packageName = "@forge/lint"; - version = "3.3.1"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/lint/-/lint-3.3.1.tgz"; - sha512 = "SDWryYNehNr/PUWZQ/zUEjqNVFnfRnZ5wI3CuQnxLv6vpqgp1k0rubnONGjcPkTzRUV4U4Yup/6cNdVoxq1icA=="; + url = "https://registry.npmjs.org/@forge/lint/-/lint-3.4.0.tgz"; + sha512 = "MbtC5aN5YuWFeqt8tq3uws1waQNCJ5jr1S5YGcTtGN4O89DXMnS9euEaYyMg+eNc6BBjzhz767SMsZEBrlgnoA=="; }; }; - "@forge/manifest-4.11.0" = { + "@forge/manifest-4.12.0" = { name = "_at_forge_slash_manifest"; packageName = "@forge/manifest"; - version = "4.11.0"; + version = "4.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.11.0.tgz"; - sha512 = "xi8Y8cyml4OT0OWLUyj1B26BfoG4IK6f3q7YrRdNGAb3PUS3uBuzwWm1ihZd7H1kvMACU0ui0YcUprkQgAS68A=="; + url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.12.0.tgz"; + sha512 = "vtjVADFsNENmnKXInO7h1vpi6n4ixqrdB+zCCXtTc1LDjDAjFh0SaJTCDeZVZ0QJlXQjwoyZasWDBlj2ksfDrA=="; }; }; - "@forge/runtime-4.3.3" = { + "@forge/runtime-4.3.4" = { name = "_at_forge_slash_runtime"; packageName = "@forge/runtime"; - version = "4.3.3"; + version = "4.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/runtime/-/runtime-4.3.3.tgz"; - sha512 = "XS3bw/ll2nxAAlKneD2BjnlZpxznxXgURc+0xQtSApvSEed8ItUMWiEwFLGiMd+gwmijPhuAQYDiP7ma5ZJ0Aw=="; + url = "https://registry.npmjs.org/@forge/runtime/-/runtime-4.3.4.tgz"; + sha512 = "cpEsKjA8mFlDMj8ECMvo2nD/MUqN7g6GxM2Z+dCYGOzrNZMLX/rLaLbgUFyqb9GllnBkpCQ/qw4oIs+6WTe5RA=="; }; }; - "@forge/storage-1.5.1" = { + "@forge/storage-1.5.2" = { name = "_at_forge_slash_storage"; packageName = "@forge/storage"; - version = "1.5.1"; + version = "1.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/storage/-/storage-1.5.1.tgz"; - sha512 = "Muf3zizR5RFU3efDpC/mYeLa7fSr8zeLC0hW3gxAWHH4T2t6X4WgXbyJxIuaLbSuO/9IAfr90vLqdqTim9MVrA=="; + url = "https://registry.npmjs.org/@forge/storage/-/storage-1.5.2.tgz"; + sha512 = "/w9UaTMmvK7DSnGpg+bbLPUF8GDPfrShNPZi7ArgwexihK1j/J7EVvH2j1VEjXGdSH+FuRcqjThfCZoGytFJHw=="; }; }; - "@forge/tunnel-3.3.6" = { + "@forge/tunnel-3.4.0" = { name = "_at_forge_slash_tunnel"; packageName = "@forge/tunnel"; - version = "3.3.6"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/tunnel/-/tunnel-3.3.6.tgz"; - sha512 = "afHizD753UrGRiEl7H5lVdRIbPKmOM9meg1aH0vKRC0Nbftwh4GoYx4Lhrn9Etdg8mfV3+89pjsqv4ZLoGwu+A=="; + url = "https://registry.npmjs.org/@forge/tunnel/-/tunnel-3.4.0.tgz"; + sha512 = "PMaVrl8rgmSm5cwJ240WnxTSJpLYGWWNkC9Sc6L93oOb+i5GoshbrbRZVZKkEc6rnKy80Svg4Kk38pcULiU9hw=="; }; }; "@forge/util-1.2.3" = { @@ -6016,31 +6070,31 @@ let sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="; }; }; - "@gitbeaker/core-38.3.0" = { + "@gitbeaker/core-38.7.0" = { name = "_at_gitbeaker_slash_core"; packageName = "@gitbeaker/core"; - version = "38.3.0"; + version = "38.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/core/-/core-38.3.0.tgz"; - sha512 = "NudxV4lpU/rR9epHH7Lp9vb84iLxxZgSHwLVFQ/m0rGS7T7FkIRqLV/HH9oGjDMsJT39L6DdlDZxvoCNdCzAmw=="; + url = "https://registry.npmjs.org/@gitbeaker/core/-/core-38.7.0.tgz"; + sha512 = "MPmffvKHZM9zTkL4briX5NKLxVp5iUzzJzAoi4o4db+8VnfeUrppYREOO4HIX39m7CHFxirRvZ9Nvb18v0E2cQ=="; }; }; - "@gitbeaker/requester-utils-38.3.0" = { + "@gitbeaker/requester-utils-38.7.0" = { name = "_at_gitbeaker_slash_requester-utils"; packageName = "@gitbeaker/requester-utils"; - version = "38.3.0"; + version = "38.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-38.3.0.tgz"; - sha512 = "2FAehMl1BDz4v27Vgl790DTCaTWV/3WUz0ax1v7Z74bgEgZVSiBEOqNtYzjUVFeKcG4cu4z3FcYbSnmHVM8LEg=="; + url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-38.7.0.tgz"; + sha512 = "4iNANvvRTDwTRo0K59cUfmr5ecB8OVg0ijNhXP7DP/ZEjE2c1TDQKXPaRSuhUzk7NXe3kb0l11+xRj20sunKaA=="; }; }; - "@gitbeaker/rest-38.3.0" = { + "@gitbeaker/rest-38.7.0" = { name = "_at_gitbeaker_slash_rest"; packageName = "@gitbeaker/rest"; - version = "38.3.0"; + version = "38.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-38.3.0.tgz"; - sha512 = "e8Jr59kdMGLdVc0Ysc/1bJVBOFRYrgtndmr5vwiae6FsJErL/zJOUwgMjrhMJRhsALgPmRC7aOfF49FiUJWhkw=="; + url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-38.7.0.tgz"; + sha512 = "7z2BtTprJ2qGCtVTjNxobePDTlatBvHYf8p34aogcWXEaGCg8HQdyp8xfsPFlKAhkO8wHqqhAa8OShxOZrowAw=="; }; }; "@glideapps/ts-necessities-2.1.2" = { @@ -6052,6 +6106,15 @@ let sha512 = "tLjfhinr6doUBcWi7BWnkT2zT6G5UhiZftsiIH6xVvykeXE+FU7Wr0MyqwmqideWlDD5rG+VjVLptLviGo04CA=="; }; }; + "@glideapps/ts-necessities-2.1.3" = { + name = "_at_glideapps_slash_ts-necessities"; + packageName = "@glideapps/ts-necessities"; + version = "2.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@glideapps/ts-necessities/-/ts-necessities-2.1.3.tgz"; + sha512 = "q9U8v/n9qbkd2zDYjuX3qtlbl+OIyI9zF+zQhZjfYOE9VMDH7tfcUSJ9p0lXoY3lxmGFne09yi4iiNeQUwV7AA=="; + }; + }; "@google-cloud/paginator-4.0.1" = { name = "_at_google-cloud_slash_paginator"; packageName = "@google-cloud/paginator"; @@ -6088,13 +6151,13 @@ let sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA=="; }; }; - "@google-cloud/pubsub-3.5.2" = { + "@google-cloud/pubsub-3.6.0" = { name = "_at_google-cloud_slash_pubsub"; packageName = "@google-cloud/pubsub"; - version = "3.5.2"; + version = "3.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.5.2.tgz"; - sha512 = "6Fsj6/jeZvWNTDk3P7PNm14DnGurU+G8lihs1Afhm9sib9olLTgN5vdxAohZCW9ZUtCvyHEgJ7yrErl+1L4/nA=="; + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.6.0.tgz"; + sha512 = "txGVVrQLUZZHh88BTwo2fUodCozbqC9F4YAMm7zZikQ1vlaLKrZtAK5U5QYikQcOtMwrNejFGx2rHegEKEHUuQ=="; }; }; "@grammarly/sdk-1.11.0" = { @@ -7573,15 +7636,6 @@ let sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg=="; }; }; - "@jsii/check-node-1.80.0" = { - name = "_at_jsii_slash_check-node"; - packageName = "@jsii/check-node"; - version = "1.80.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.80.0.tgz"; - sha512 = "QWdvFrjoDxSkj0E7CuSD65y0nMk1K48geQ8UxCFy0fz8COERYK3ZOhyDW8K2iOwZp0H3LWa4dByrNZIMt8xVAw=="; - }; - }; "@jsii/check-node-1.81.0" = { name = "_at_jsii_slash_check-node"; packageName = "@jsii/check-node"; @@ -8203,177 +8257,6 @@ let sha512 = "Ufs1b1C9kDfEA2TMwgI0NNC53bRsfOehaA7YeOgOZKp8hDe9Kv/vTklJg1iJUyfCchyyaITGsuGfmswFqG19oQ=="; }; }; - "@miniflare/cache-2.13.0" = { - name = "_at_miniflare_slash_cache"; - packageName = "@miniflare/cache"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.13.0.tgz"; - sha512 = "y3SdN3SVyPECWmLAEGkkrv0RB+LugEPs/FeXn8QtN9aE1vyj69clOAgmsDzoh1DpFfFsLKRiv05aWs4m79P8Xw=="; - }; - }; - "@miniflare/cli-parser-2.13.0" = { - name = "_at_miniflare_slash_cli-parser"; - packageName = "@miniflare/cli-parser"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.13.0.tgz"; - sha512 = "Nx1PIfuMZ3mK9Dg/JojWZAjHR16h1pcdCFSqYln/ME7y5ifx+P1E5UkShWUQ1cBlibNaltjbJ2n/7stSAsIGPQ=="; - }; - }; - "@miniflare/core-2.13.0" = { - name = "_at_miniflare_slash_core"; - packageName = "@miniflare/core"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/core/-/core-2.13.0.tgz"; - sha512 = "YJ/C0J3k+7xn4gvlMpvePnM3xC8nOnkweW96cc0IA8kJ1JSmScOO2tZ7rrU1RyDgp6StkAtQBw4yC0wYeFycBw=="; - }; - }; - "@miniflare/d1-2.13.0" = { - name = "_at_miniflare_slash_d1"; - packageName = "@miniflare/d1"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/d1/-/d1-2.13.0.tgz"; - sha512 = "OslqjO8iTcvzyrC0spByftMboRmHJEyHyTHnlKkjWDGdQQztEOjso2Xj+3I4SZIeUYvbzDRhKLS2QXI9a8LS5A=="; - }; - }; - "@miniflare/durable-objects-2.13.0" = { - name = "_at_miniflare_slash_durable-objects"; - packageName = "@miniflare/durable-objects"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.13.0.tgz"; - sha512 = "CRGVBPO9vY4Fc3aV+pdPRVVeYIt64vQqvw+BJbyW+TQtqVP2CGQeziJGnCfcONNNKyooZxGyUkHewUypyH+Qhg=="; - }; - }; - "@miniflare/html-rewriter-2.13.0" = { - name = "_at_miniflare_slash_html-rewriter"; - packageName = "@miniflare/html-rewriter"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.13.0.tgz"; - sha512 = "XhN7Icyzvtvu+o/A0hrnSiSmla78seCaNwQ9M1TDHxt352I/ahPX4wtPXs6GbKqY0/i+V6yoG2KGFRQ/j59cQQ=="; - }; - }; - "@miniflare/http-server-2.13.0" = { - name = "_at_miniflare_slash_http-server"; - packageName = "@miniflare/http-server"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.13.0.tgz"; - sha512 = "aMS/nUMTKP15hKnyZboeuWCiqmNrrCu+XRBY/TxDDl07iXcLpiHGf3oVv+yXxXkWlJHJVCbK7i/nXSNPllRMSw=="; - }; - }; - "@miniflare/kv-2.13.0" = { - name = "_at_miniflare_slash_kv"; - packageName = "@miniflare/kv"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.13.0.tgz"; - sha512 = "J0AS5x3g/YVOmHMxMAZs07nRXRvSo9jyuC0eikTBf+4AABvBIyvVYmdTjYNjCmr8O5smcfWBX5S27HelD3aAAQ=="; - }; - }; - "@miniflare/queues-2.13.0" = { - name = "_at_miniflare_slash_queues"; - packageName = "@miniflare/queues"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.13.0.tgz"; - sha512 = "Gf/a6M1mJL03iOvNqh3JNahcBfvEMPHnO28n0gkCoyYWGvddIr9lwCdFIa0qwNJsC1fIDRxhPg8PZ5cQLBMwRA=="; - }; - }; - "@miniflare/r2-2.13.0" = { - name = "_at_miniflare_slash_r2"; - packageName = "@miniflare/r2"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.13.0.tgz"; - sha512 = "/5k6GHOYMNV/oBtilV9HDXBkJUrx8oXVigG5vxbnzEGRXyVRmR+Glzu7mFT8JiE94XiEbXHk9Qvu1S5Dej3wBw=="; - }; - }; - "@miniflare/runner-vm-2.13.0" = { - name = "_at_miniflare_slash_runner-vm"; - packageName = "@miniflare/runner-vm"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.13.0.tgz"; - sha512 = "VmKtF2cA8HmTuLXor1THWY0v+DmaobPct63iLcgWIaUdP3MIvL+9X8HDXFAviCR7bCTe6MKxckHkaOj0IE0aJQ=="; - }; - }; - "@miniflare/scheduler-2.13.0" = { - name = "_at_miniflare_slash_scheduler"; - packageName = "@miniflare/scheduler"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.13.0.tgz"; - sha512 = "AOaQanoR4NjVEzVGWHnrL15A7aMx+d9AKLJhSDF7KaP+4NrT2Wo2BQuXCpn5oStx3itOdlQpMfqQ139e/I8WhQ=="; - }; - }; - "@miniflare/shared-2.13.0" = { - name = "_at_miniflare_slash_shared"; - packageName = "@miniflare/shared"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.13.0.tgz"; - sha512 = "m8YFQzKmbjberrV9hPzNcQjNCXxjTjXUpuNrIGjAJO7g+BDztUHaZbdd26H9maBDlkeiWxA3hf0mDyCT/6MCMA=="; - }; - }; - "@miniflare/sites-2.13.0" = { - name = "_at_miniflare_slash_sites"; - packageName = "@miniflare/sites"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.13.0.tgz"; - sha512 = "/tuzIu00o6CF2tkSv01q02MgEShXBSKx85h9jwWvc+6u7prGacAOer0FA1YNRFbE+t9QIfutAkoPGMA9zYf8+Q=="; - }; - }; - "@miniflare/storage-file-2.13.0" = { - name = "_at_miniflare_slash_storage-file"; - packageName = "@miniflare/storage-file"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.13.0.tgz"; - sha512 = "LuAeAAY5046rq5U1eFLVkz+ppiFEWytWacpkQw92DvVKFFquZcXSj6WPxZF4rSs23WDk+rdcwuLekbb52aDR7A=="; - }; - }; - "@miniflare/storage-memory-2.13.0" = { - name = "_at_miniflare_slash_storage-memory"; - packageName = "@miniflare/storage-memory"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.13.0.tgz"; - sha512 = "FnkYcBNXa/ym1ksNilNZycg9WYYKo6cWKplVBeSthRon3e8QY6t3n7/XRseBUo7O6mhDybVTy4wNCP1R2nBiEw=="; - }; - }; - "@miniflare/storage-redis-2.13.0" = { - name = "_at_miniflare_slash_storage-redis"; - packageName = "@miniflare/storage-redis"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/storage-redis/-/storage-redis-2.13.0.tgz"; - sha512 = "bGVg/9FWjnENBkM6D4CJNRPdp3L8oeJ71tzoXkw5lKXIPqvU4h8sXOXgLP4C1UNTLGc/FouRi9pbxuV/Ht25FQ=="; - }; - }; - "@miniflare/watcher-2.13.0" = { - name = "_at_miniflare_slash_watcher"; - packageName = "@miniflare/watcher"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.13.0.tgz"; - sha512 = "teAacWcpMStoBLbLae95IUaL5lPzjPlXa9lhK9CbRaio/KRMibTMRGWrYos3IVGQRZvklvLwcms/nTvgcdb6yw=="; - }; - }; - "@miniflare/web-sockets-2.13.0" = { - name = "_at_miniflare_slash_web-sockets"; - packageName = "@miniflare/web-sockets"; - version = "2.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.13.0.tgz"; - sha512 = "+U2/HCf+BetRIgjAnNQjkuN6UeAjQmXifhQC+7CCaX834XJhrKXoR6z2xr2xkg1qj0qQs4D2jWG0KzrO5OUpug=="; - }; - }; "@mischnic/json-sourcemap-0.1.0" = { name = "_at_mischnic_slash_json-sourcemap"; packageName = "@mischnic/json-sourcemap"; @@ -8743,13 +8626,13 @@ let sha512 = "3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q=="; }; }; - "@npmcli/config-6.1.6" = { + "@npmcli/config-6.1.7" = { name = "_at_npmcli_slash_config"; packageName = "@npmcli/config"; - version = "6.1.6"; + version = "6.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.6.tgz"; - sha512 = "TM5dwgaz3Un2T5rdHQ6lX+Jj3TQxK6aV1U5OLByZiUS5qnA0NgC6U0aSESQVy80emToz8dtX3aniXD24wRnBaw=="; + url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.7.tgz"; + sha512 = "DyACY6Mv7TH1kz2iBgwS3xE7jKsY+ukUfDyY5PLl9LZTktmBBSybDNzX3bUii+SD4j77Bx6EvgS/jsaUtV7Fng=="; }; }; "@npmcli/fs-1.1.1" = { @@ -8932,13 +8815,13 @@ let sha512 = "42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA=="; }; }; - "@npmcli/package-json-3.0.0" = { + "@npmcli/package-json-3.1.0" = { name = "_at_npmcli_slash_package-json"; packageName = "@npmcli/package-json"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-3.0.0.tgz"; - sha512 = "NnuPuM97xfiCpbTEJYtEuKz6CFbpUHtaT0+5via5pQeI25omvQDFbp1GcGJ/c4zvL/WX0qbde6YiLgfZbWFgvg=="; + url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-3.1.0.tgz"; + sha512 = "qNPy6Yf9ruFST99xcrl5EWAvrb7qFrwgVbwdzcTJlIgxbArKOq5e/bgZ6rTL1X9hDgAdPbvL8RWx/OTLSB0ToA=="; }; }; "@npmcli/promise-spawn-1.3.2" = { @@ -9139,13 +9022,13 @@ let sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw=="; }; }; - "@oclif/command-1.8.24" = { + "@oclif/command-1.8.25" = { name = "_at_oclif_slash_command"; packageName = "@oclif/command"; - version = "1.8.24"; + version = "1.8.25"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.24.tgz"; - sha512 = "FbSChfBO2QFeC5eEeXmi8+kZvBCDzYdpEKhOMaz0sfKMerwSlKxsqWQPGWCjTHaowIUMtnMD3VZ8yfX5qE7SAQ=="; + url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.25.tgz"; + sha512 = "teCfKH6GNF46fiCn/P5EMHX93RE3KJAW4i0sq3X9phrzs6807WRauhythdc8OKINxd+LpqwQ1i5bnaCKvLZRcQ=="; }; }; "@oclif/config-1.17.0" = { @@ -9265,13 +9148,13 @@ let sha512 = "Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw=="; }; }; - "@oclif/parser-3.8.10" = { + "@oclif/parser-3.8.11" = { name = "_at_oclif_slash_parser"; packageName = "@oclif/parser"; - version = "3.8.10"; + version = "3.8.11"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.10.tgz"; - sha512 = "J4l/NcnfbIU84+NNdy6bxq9yJt4joFWNvpk59hq+uaQPUNtjmNJDVGuRvf6GUOxHNgRsVK1JRmd/Ez+v7Z9GqQ=="; + url = "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.11.tgz"; + sha512 = "B3NweRn1yZw2g7xaF10Zh/zwlqTJJINfU+CRkqll+LaTisSNvZbW0RR9WGan26EqqLp4qzNjzX/e90Ew8l9NLw=="; }; }; "@oclif/plugin-autocomplete-0.1.5" = { @@ -9364,22 +9247,22 @@ let sha512 = "jq/ik7A7bCO/oQp0/Znnpu8/JBXifAQ2OF2KmswbNYt7EpsLqz2DaI/CvkrXRSb+Edzx4Xx3usEgSyocVN/u2A=="; }; }; - "@oclif/plugin-update-3.1.14" = { + "@oclif/plugin-update-3.1.15" = { name = "_at_oclif_slash_plugin-update"; packageName = "@oclif/plugin-update"; - version = "3.1.14"; + version = "3.1.15"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.1.14.tgz"; - sha512 = "AYzvGMrjD4m0EzEFKB003RYvp6StXPtdwhcZ+ZMwNCTRqm0imrNzodzYoUYFTWcFfiGnO3j58+0ZxLaSXi5ztg=="; + url = "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.1.15.tgz"; + sha512 = "c2/xDw/g2M3QSb+W5zYmKkL59Salju7YALyHBGfduis61LKszjfX7vwoHNNbFzMfQgBmRwLcwrROKNAM2sxh1A=="; }; }; - "@oclif/plugin-warn-if-update-available-2.0.36" = { + "@oclif/plugin-warn-if-update-available-2.0.37" = { name = "_at_oclif_slash_plugin-warn-if-update-available"; packageName = "@oclif/plugin-warn-if-update-available"; - version = "2.0.36"; + version = "2.0.37"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.36.tgz"; - sha512 = "mHWoEWFICw1Amqn8C7oURxOsR6sT2Hx+xNi30Jbsui5MrCIYYo369dhjl27VfaWlcLjVqpjMVzVFMn5zXjgzBw=="; + url = "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.37.tgz"; + sha512 = "rfDNvplwgiwV+QSV4JU96ypmWgNJ6Hk5FEAEAKzqF0v0J8AHwZGpwwYO/MCZSkbc7bfYpkqLx/sxjpMO6j6PmQ=="; }; }; "@oclif/screen-1.0.4" = { @@ -9427,13 +9310,13 @@ let sha512 = "7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q=="; }; }; - "@octokit/core-4.2.0" = { + "@octokit/core-4.2.1" = { name = "_at_octokit_slash_core"; packageName = "@octokit/core"; - version = "4.2.0"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz"; - sha512 = "AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg=="; + url = "https://registry.npmjs.org/@octokit/core/-/core-4.2.1.tgz"; + sha512 = "tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw=="; }; }; "@octokit/endpoint-6.0.12" = { @@ -9490,13 +9373,13 @@ let sha512 = "HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw=="; }; }; - "@octokit/openapi-types-17.1.2" = { + "@octokit/openapi-types-17.2.0" = { name = "_at_octokit_slash_openapi-types"; packageName = "@octokit/openapi-types"; - version = "17.1.2"; + version = "17.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.2.tgz"; - sha512 = "OaS7Ol4Y+U50PbejfzQflGWRMxO04nYWO5ZBv6JerqMKE2WS/tI9VoVDDPXHBlRMGG2fOdKwtVGlFfc7AVIstw=="; + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.2.0.tgz"; + sha512 = "MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="; }; }; "@octokit/plugin-enterprise-rest-6.0.1" = { @@ -9580,13 +9463,13 @@ let sha512 = "bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A=="; }; }; - "@octokit/request-6.2.3" = { + "@octokit/request-6.2.5" = { name = "_at_octokit_slash_request"; packageName = "@octokit/request"; - version = "6.2.3"; + version = "6.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz"; - sha512 = "TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA=="; + url = "https://registry.npmjs.org/@octokit/request/-/request-6.2.5.tgz"; + sha512 = "z83E8UIlPNaJUsXpjD8E0V5o/5f+vJJNbNcBwVZsX3/vC650U41cOkTLjq4PKk9BYonQGOnx7N17gvLyNjgGcQ=="; }; }; "@octokit/request-error-2.1.0" = { @@ -9643,13 +9526,13 @@ let sha512 = "8oWMUji8be66q2B9PmEIUyQm00VPDPun07umUWSaCwxmeaquFBro4Hcc3ruVoDo3zkQyZBlRvhIMEYS3pBhanw=="; }; }; - "@octokit/types-9.2.2" = { + "@octokit/types-9.2.3" = { name = "_at_octokit_slash_types"; packageName = "@octokit/types"; - version = "9.2.2"; + version = "9.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/types/-/types-9.2.2.tgz"; - sha512 = "9BjDxjgQIvCjNWZsbqyH5QC2Yni16oaE6xL+8SUBMzcYPF4TGQBXGA97Cl3KceK9mwiNMb1mOYCz6FbCCLEL+g=="; + url = "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz"; + sha512 = "MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA=="; }; }; "@opencensus/core-0.0.8" = { @@ -10561,13 +10444,13 @@ let sha512 = "J/p2PcgT39Za4wpukbN6iUkEUvL5aE7Bs9kXBeEkrjEgc0Uu7J7B2ypwx9J0qM3m3lk2273RT5/4oGv8pfFLcg=="; }; }; - "@prisma/engines-4.14.0" = { + "@prisma/engines-4.14.1" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "4.14.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.14.0.tgz"; - sha512 = "PDNlhP/1vyTgmNyiucGqGCdXIp7HIkkvKO50si3y3PcceeHvqtiKPaH1iJdz63jCWMVMbj2MElSxXPOeBvEVIQ=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.14.1.tgz"; + sha512 = "APqFddPVHYmWNKqc+5J5SqrLFfOghKOLZxobmguDUacxOwdEutLsbXPVhNnpFDmuQWQFbXmrTTPoRrrF6B1MWA=="; }; }; "@prisma/prisma-fmt-wasm-4.14.0-67.d9a4c5988f480fa576d43970d5a23641aa77bc9c" = { @@ -10678,13 +10561,13 @@ let sha512 = "Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ=="; }; }; - "@putdotio/api-client-8.34.4" = { + "@putdotio/api-client-8.36.1" = { name = "_at_putdotio_slash_api-client"; packageName = "@putdotio/api-client"; - version = "8.34.4"; + version = "8.36.1"; src = fetchurl { - url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.34.4.tgz"; - sha512 = "4UsaS5ogCBZiqh5rod0zCEtgjpBCCOEbD8iZKUciEySGOwmC0R0dbGIe9MEgdi70LoGDAoQ5PwB5l6T0e1XLQw=="; + url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.36.1.tgz"; + sha512 = "eNZUv590cWVUqUjYiwsNmLO+fSK/7EIKA+MVdFo1DZiA/1OmZOuMAlkLaJAQNsuwDn6JLzAkJC8WkANtvK8XVg=="; }; }; "@reach/router-1.3.4" = { @@ -10831,58 +10714,58 @@ let sha512 = "09oIEh3zBio2CqJz4ERVuJ6KVG7q9LdjU5g7VG4+VSR91mrEA//lkcuZLoSJHvMJfcBWKR3AfYuuvaDijuszCg=="; }; }; - "@remix-run/dev-1.16.0-patch.1" = { + "@remix-run/dev-1.16.1" = { name = "_at_remix-run_slash_dev"; packageName = "@remix-run/dev"; - version = "1.16.0-patch.1"; + version = "1.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.16.0-patch.1.tgz"; - sha512 = "W4ugL5WYJEye91kRsBnH2D3Ia+4nTN9IcCH72ykOr660svw9Xise0Zi5sPtV8FP2RncAVgs2wAyAblQzsm6IqQ=="; + url = "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.16.1.tgz"; + sha512 = "b+gIUNqW9JwPKHSfGs0ylMk9U80dbvEmkjczNmyWvO7r1tz8O9dEmTUmbJ22/aRPPJQ/aEYosqP7UNJtDvieqw=="; }; }; - "@remix-run/express-1.16.0" = { + "@remix-run/express-1.16.1" = { name = "_at_remix-run_slash_express"; packageName = "@remix-run/express"; - version = "1.16.0"; + version = "1.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/express/-/express-1.16.0.tgz"; - sha512 = "V6krwEHajFtpmp/Ds88Ml3HnVoZXrtBTgNaqIxnbiTKeIURKaVQbA0+BTIf3jwnFrL8jFTOFA0Dns3honKAHfw=="; + url = "https://registry.npmjs.org/@remix-run/express/-/express-1.16.1.tgz"; + sha512 = "qBIuFiA0qiHCTT36RwnzxhoVaAEwUmg5bihxwSkhj6zIhjM98e1DQHeKJ4f0G9Zf/qxvdl+cRNjzvlauPmocqQ=="; }; }; - "@remix-run/node-1.16.0" = { + "@remix-run/node-1.16.1" = { name = "_at_remix-run_slash_node"; packageName = "@remix-run/node"; - version = "1.16.0"; + version = "1.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/node/-/node-1.16.0.tgz"; - sha512 = "2JtU3sVWDkyLcZ2prLovSbp4/K/mjbei1r9Qv6D9+fKgJFu3YjCPKfPiSj+T4My5rCG7azuKs5KOtmnwKBavrA=="; + url = "https://registry.npmjs.org/@remix-run/node/-/node-1.16.1.tgz"; + sha512 = "Qp9B2htm0bGG0iuxsqezDIl89uVSBZ8xfwq2aKWgRNm1FCa4/GRXzKmTo+sbBcacj7aYe+1r+0sIS6Q1sgaEnA=="; }; }; - "@remix-run/router-1.6.0" = { + "@remix-run/router-1.6.2" = { name = "_at_remix-run_slash_router"; packageName = "@remix-run/router"; - version = "1.6.0"; + version = "1.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/router/-/router-1.6.0.tgz"; - sha512 = "N13NRw3T2+6Xi9J//3CGLsK2OqC8NMme3d/YX+nh05K9YHWGcv8DycHJrqGScSP4T75o8IN6nqIMhVFU8ohg8w=="; + url = "https://registry.npmjs.org/@remix-run/router/-/router-1.6.2.tgz"; + sha512 = "LzqpSrMK/3JBAVBI9u3NWtOhWNw5AMQfrUFYB0+bDHTSw17z++WJLsPsxAuK+oSddsxk4d7F/JcdDPM1M5YAhA=="; }; }; - "@remix-run/serve-1.16.0" = { + "@remix-run/serve-1.16.1" = { name = "_at_remix-run_slash_serve"; packageName = "@remix-run/serve"; - version = "1.16.0"; + version = "1.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.16.0.tgz"; - sha512 = "Q65NqQuqQosSZUnoHKgQkB9QN2Ed/uvtE9VV8D8ZPSZMV6asAs+BbZf5UUkMWX0+GlH+82j0a8emNnG6dlIQ0w=="; + url = "https://registry.npmjs.org/@remix-run/serve/-/serve-1.16.1.tgz"; + sha512 = "wpYZcUH6rITI9fnUsHffLhOcq98l6DMQh9MFAiGjUjPpMta7X2c7C/l3xOsL3ioE45b1d7A+tS0F69aV71u+uQ=="; }; }; - "@remix-run/server-runtime-1.16.0" = { + "@remix-run/server-runtime-1.16.1" = { name = "_at_remix-run_slash_server-runtime"; packageName = "@remix-run/server-runtime"; - version = "1.16.0"; + version = "1.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.16.0.tgz"; - sha512 = "a8rfS2SJ2nWhyGikXo+uknOSl1gW1/maDYuiG4Ki2wbVmF0v5mhJhlyB+1l+BjvXw+ZTS9HIiSQkg6L6JWqEcQ=="; + url = "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.16.1.tgz"; + sha512 = "HG+f3PGE9kzTTPe5i5Hv7UGrJLmFID1Ae4BMohP5e0xXOxbdlKDPj6NN6yGDgE7OqKFuDVliW2B5LlUdJZgUFw=="; }; }; "@remix-run/web-blob-3.0.4" = { @@ -11209,13 +11092,13 @@ let sha512 = "9OTdCkhhJXS9HTaynJC9SUzrP46rYeje6kM8V5SMA5atJtOUn0DQt7i7CToVV6xWQrfBZj/U6UwMImxik6/O1w=="; }; }; - "@schematics/angular-16.0.1" = { + "@schematics/angular-16.0.2" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "16.0.1"; + version = "16.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.1.tgz"; - sha512 = "MNgH/iB3WWxMLFVHJjtXCHZ8YHtfx2e3mX2Ds5P43OTgSnTk6tHabqvwxJ4wzjoyoPUyXWLhHt0diCmVtDTNeQ=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.2.tgz"; + sha512 = "uur0oSAKu9vkFJuXhSiMjkhgLb7RFtAkUpED7Mx5APXIgAvNylOVQXONmBHBY/2mBJDjt+7giLKweAqSK9PtTg=="; }; }; "@search-dump/jsonstream-1.5.0" = { @@ -11254,13 +11137,13 @@ let sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="; }; }; - "@sentry-internal/tracing-7.51.2" = { + "@sentry-internal/tracing-7.52.1" = { name = "_at_sentry-internal_slash_tracing"; packageName = "@sentry-internal/tracing"; - version = "7.51.2"; + version = "7.52.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.51.2.tgz"; - sha512 = "OBNZn7C4CyocmlSMUPfkY9ORgab346vTHu5kX35PgW5XR51VD2nO5iJCFbyFcsmmRWyCJcZzwMNARouc2V4V8A=="; + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.52.1.tgz"; + sha512 = "6N99rE+Ek0LgbqSzI/XpsKSLUyJjQ9nychViy+MP60p1x+hllukfTsDbNtUNrPlW0Bx+vqUrWKkAqmTFad94TQ=="; }; }; "@sentry/core-6.19.7" = { @@ -11272,13 +11155,13 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.51.2" = { + "@sentry/core-7.52.1" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.51.2"; + version = "7.52.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.51.2.tgz"; - sha512 = "p8ZiSBxpKe+rkXDMEcgmdoyIHM/1bhpINLZUFPiFH8vzomEr7sgnwRhyrU8y/ADnkPeNg/2YF3QpDpk0OgZJUA=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.52.1.tgz"; + sha512 = "36clugQu5z/9jrit1gzI7KfKbAUimjRab39JeR0mJ6pMuKLTTK7PhbpUAD4AQBs9qVeXN2c7h9SVZiSA0UDvkg=="; }; }; "@sentry/hub-6.19.7" = { @@ -11290,13 +11173,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.51.2" = { + "@sentry/integrations-7.52.1" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.51.2"; + version = "7.52.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.51.2.tgz"; - sha512 = "ZnSptbuDQOoQ13mFX9vvLDfXlbMGjenW2fMIssi9+08B7fD6qxmetkYnWmBK+oEipjoGA//0240Fj8FUvZr0Qg=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.52.1.tgz"; + sha512 = "4uejF01723wzEHjcP5AcNcV+Z/6U27b1LyaDu0jY3XDry98MMjhS/ASzecLpaEFxi3dh/jMTUrNp1u7WMj59Lg=="; }; }; "@sentry/minimal-6.19.7" = { @@ -11317,13 +11200,13 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.51.2" = { + "@sentry/node-7.52.1" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.51.2"; + version = "7.52.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.51.2.tgz"; - sha512 = "qtZ2xNVR0ZW+OZWb0Xw0Cdh2QJXOJkXjK84CGC2P4Y6jWrt+GVvwMANPItLT6mAh+ITszTJ5Gk5HHFRpYme5EA=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.52.1.tgz"; + sha512 = "n3frjYbkY/+eZ5RTQMaipv6Hh9w3ia40GDeRK6KJQit7OLKLmXisD+FsdYzm8Jc784csSvb6HGGVgqLpO1p9Og=="; }; }; "@sentry/types-6.19.7" = { @@ -11335,13 +11218,13 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.51.2" = { + "@sentry/types-7.52.1" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.51.2"; + version = "7.52.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.51.2.tgz"; - sha512 = "/hLnZVrcK7G5BQoD/60u9Qak8c9AvwV8za8TtYPJDUeW59GrqnqOkFji7RVhI7oH1OX4iBxV+9pAKzfYE6A6SA=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.52.1.tgz"; + sha512 = "OMbGBPrJsw0iEXwZ2bJUYxewI1IEAU2e1aQGc0O6QW5+6hhCh+8HO8Xl4EymqwejjztuwStkl6G1qhK+Q0/Row=="; }; }; "@sentry/utils-6.19.7" = { @@ -11353,13 +11236,13 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.51.2" = { + "@sentry/utils-7.52.1" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.51.2"; + version = "7.52.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.51.2.tgz"; - sha512 = "EcjBU7qG4IG+DpIPvdgIBcdIofROMawKoRUNKraeKzH/waEYH9DzCaqp/mzc5/rPBhpDB4BShX9xDDSeH+8c0A=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.52.1.tgz"; + sha512 = "MPt1Xu/jluulknW8CmZ2naJ53jEdtdwCBSo6fXJvOTI0SDqwIPbXDVrsnqLAhVJuIN7xbkj96nuY/VBR6S5sWg=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -11686,22 +11569,22 @@ let sha512 = "Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ=="; }; }; - "@sinonjs/commons-2.0.0" = { + "@sinonjs/commons-3.0.0" = { name = "_at_sinonjs_slash_commons"; packageName = "@sinonjs/commons"; - version = "2.0.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz"; - sha512 = "uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg=="; + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz"; + sha512 = "jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA=="; }; }; - "@sinonjs/fake-timers-10.0.2" = { + "@sinonjs/fake-timers-10.2.0" = { name = "_at_sinonjs_slash_fake-timers"; packageName = "@sinonjs/fake-timers"; - version = "10.0.2"; + version = "10.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz"; - sha512 = "SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw=="; + url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz"; + sha512 = "OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg=="; }; }; "@sinonjs/fake-timers-8.1.0" = { @@ -11875,13 +11758,13 @@ let sha512 = "0p9uXkuB22qGdNfy3VeEhxkU5uwvp/KrBTAbrLBURv6ilxIVwanKwjMc41lQfIVgPGcOkmLbTolfFrSsueu7zA=="; }; }; - "@stoplight/json-3.20.2" = { + "@stoplight/json-3.20.3" = { name = "_at_stoplight_slash_json"; packageName = "@stoplight/json"; - version = "3.20.2"; + version = "3.20.3"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/json/-/json-3.20.2.tgz"; - sha512 = "e3Eb/DdLSpJVAsxAG1jKSnl4TVZLl2pH8KsJBWKf5GPCeI58Eo0ZpRTX3HcZ0gBaHWH6CnEHJkCRCONhoFbDIA=="; + url = "https://registry.npmjs.org/@stoplight/json/-/json-3.20.3.tgz"; + sha512 = "2m+Km6CkEPWj+H+CXxFyQB9+mVK8ifz9izK0UZpz4G1ZBx2Pd2hI+qw24FJ+X3DTYtMPYIeINTOEaTFWOmbRxQ=="; }; }; "@stoplight/json-ref-readers-1.2.2" = { @@ -11974,13 +11857,13 @@ let sha512 = "ah6NIB/O1EdEaEu89So3LmtbKRXPVnSElgQ7oBRE9S4/VOedSqyXn+qqMd40tGnO2CsKgZaFUYXdSEHOshpHYw=="; }; }; - "@stoplight/spectral-ruleset-bundler-1.5.1" = { + "@stoplight/spectral-ruleset-bundler-1.5.2" = { name = "_at_stoplight_slash_spectral-ruleset-bundler"; packageName = "@stoplight/spectral-ruleset-bundler"; - version = "1.5.1"; + version = "1.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-bundler/-/spectral-ruleset-bundler-1.5.1.tgz"; - sha512 = "gvlBXkyxLBNdslN/5HEYvCqMr0dvKQwJbbJCKbOvvRTZhhPVzmLb7yavWXjOnRhYn6IAhGAs7u4yhxn7cX/FtQ=="; + url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-bundler/-/spectral-ruleset-bundler-1.5.2.tgz"; + sha512 = "4QUVUFAU+S7IQ9XeCu+0TQMYxKFpKnkOAfa9unRQ1iPL2cviaipEN6witpbAptdHJD3UUjx4OnwlX8WwmXSq9w=="; }; }; "@stoplight/spectral-ruleset-migrator-1.9.3" = { @@ -12127,103 +12010,103 @@ let sha512 = "gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA=="; }; }; - "@swc/core-1.3.57" = { + "@swc/core-1.3.59" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.57.tgz"; - sha512 = "gAT80hOVeK5qoi+BRlgXWgJYI9cbQn2oi05A09Tvb6vjFgBsr9SlQGNZB9uMlcXRXspkZFf9l3yyWRtT4we3Yw=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.59.tgz"; + sha512 = "ZBw31zd2E5SXiodwGvjQdx5ZC90b2uyX/i2LeMMs8LKfXD86pfOfQac+JVrnyEKDhASXj9icgsF9NXBhaMr3Kw=="; }; }; - "@swc/core-darwin-arm64-1.3.57" = { + "@swc/core-darwin-arm64-1.3.59" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.57.tgz"; - sha512 = "lhAK9kF/ppZdNTdaxJl2gE0bXubzQXTgxB2Xojme/1sbOipaLTskBbJ3FLySChpmVOzD0QSCTiW8w/dmQxqNIQ=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.59.tgz"; + sha512 = "AnqWFBgEKHP0jb4iZqx7eVQT9/rX45+DE4Ox7GpwCahUKxxrsDLyXzKhwLwQuAjUvtu5JcSB77szKpPGDM49fQ=="; }; }; - "@swc/core-darwin-x64-1.3.57" = { + "@swc/core-darwin-x64-1.3.59" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.57.tgz"; - sha512 = "jsTDH8Et/xdOM/ZCNvtrT6J8FT255OrMhEDvHZQZTgoky4oW/3FHUfji4J2FE97gitJqNJI8MuNuiGq81pIJRw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.59.tgz"; + sha512 = "iqDs+yii9mOsmpJez82SEi4d4prWDRlapHxKnDVJ0x1AqRo41vIq8t3fujrvCHYU5VQgOYGh4ooXQpaP2H3B2A=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.57" = { + "@swc/core-linux-arm-gnueabihf-1.3.59" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.57.tgz"; - sha512 = "MZv3fwcCmppbwfCWaE8cZvzbXOjX7n5SEC1hF2lgItTqp4S04dFk1iX50jKr6xS6xSLlRBPqDxwZH0sBpHaEuA=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.59.tgz"; + sha512 = "PB0PP+SgkCSd/kYmltnPiGv42cOSaih1OjXCEjxvNwUFEmWqluW6uGdWaNiR1LoYMxhcHZTc336jL2+O3l6p0Q=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.57" = { + "@swc/core-linux-arm64-gnu-1.3.59" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.57.tgz"; - sha512 = "wUeqa/qbkOEGl6TaDQZZL7txrQXs1vL7ERjPYhi9El+ywacFY/rTW2pK5DqaNk2eulVnLhbbNjsE1OMGSEWGkQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.59.tgz"; + sha512 = "Ol/JPszWZ+OZ44FOdJe35TfJ1ckG4pYaisZJ4E7PzfwfVe2ygX85C5WWR4e5L0Y1zFvzpcI7gdyC2wzcXk4Cig=="; }; }; - "@swc/core-linux-arm64-musl-1.3.57" = { + "@swc/core-linux-arm64-musl-1.3.59" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.57.tgz"; - sha512 = "pZfp1B9XfH7ZhDKFjr4qbyM093zU2Ri0IZq2M2A4W9q92+Ivy8oEIqw+gSRO3jwMDqRMEtFD49YuFhkJQakxdA=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.59.tgz"; + sha512 = "PtTTtGbj9GiY5gJdoSFL2A0vL6BRaS1haAhp6g3hZvLDkTTg+rJURmzwBMMjaQlnGC62x/lLf6MoszHG/05//Q=="; }; }; - "@swc/core-linux-x64-gnu-1.3.57" = { + "@swc/core-linux-x64-gnu-1.3.59" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.57.tgz"; - sha512 = "dvtQnv07NikV+CJ+9PYJ3fqphSigzfvSUH6wRCmb5OzLDDLFnPLMrEO0pGeURvdIWCOhngcHF252C1Hl5uFSzA=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.59.tgz"; + sha512 = "XBW9AGi0YsIN76IfesnDSBn/5sjR69J75KUNte8sH6seYlHJ0/kblqUMbUcfr0CiGoJadbzAZeKZZmfN7EsHpg=="; }; }; - "@swc/core-linux-x64-musl-1.3.57" = { + "@swc/core-linux-x64-musl-1.3.59" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.57.tgz"; - sha512 = "1TKCSngyQxpzwBYDzF5MrEfYRDhlzt/GN1ZqlSnsJIPGkABOWZxYDvWJuMrkASdIztn3jSTPU2ih7rR7YQ8IIw=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.59.tgz"; + sha512 = "Cy5E939SdWPQ34cg6UABNO0RyEe0FuWqzZ/GLKtK11Ir4fjttVlucZiY59uQNyUVUc8T2qE0VBFCyD/zYGuHtg=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.57" = { + "@swc/core-win32-arm64-msvc-1.3.59" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.57.tgz"; - sha512 = "HvBYFyf4uBua/jyTrcFLKcq8SIbKVYfz2qWsbgSAZvuQPZvDC1XhN5EDH2tPZmT97F0CJx3fltH5nli6XY1/EQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.59.tgz"; + sha512 = "z5ZJxizRvRoSAaevRIi3YjQh74OFWEIhonSDWNdqDL7RbjEivcatYcG7OikH6s+rtPhOcwNm3PbGV2Prcgh/gg=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.57" = { + "@swc/core-win32-ia32-msvc-1.3.59" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.57.tgz"; - sha512 = "PS8AtK9e6Rp97S0ek9W5VCZNCbDaHBUasiJUmaYqRVCq/Mn6S7eQlhd0iUDnjsagigQtoCRgMUzkVknd1tarsQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.59.tgz"; + sha512 = "vxpsn+hrKAhi5YusQfB/JXUJJVX40rIRE/L49ilBEqdbH8Khkoego6AD+2vWqTdJcUHo1WiAIAEZ0rTsjyorLQ=="; }; }; - "@swc/core-win32-x64-msvc-1.3.57" = { + "@swc/core-win32-x64-msvc-1.3.59" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.57.tgz"; - sha512 = "A6aX/Rpp0v3g7Spf3LSwR+ivviH8x+1xla612KLZmlc0yymWt9BMd3CmBkzyRBr2e41zGCrkf6tra6wgtCbAwA=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.59.tgz"; + sha512 = "Ris/cJbURylcLwqz4RZUUBCEGsuaIHOJsvf69W5pGKHKBryVoOTNhBKpo3Km2hoAi5qFQ/ou0trAT4hBsVPZvQ=="; }; }; "@swc/helpers-0.4.14" = { @@ -12244,13 +12127,13 @@ let sha512 = "sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg=="; }; }; - "@swc/wasm-1.3.57" = { + "@swc/wasm-1.3.59" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.57"; + version = "1.3.59"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.57.tgz"; - sha512 = "K5E9cD+ZRDCPZoUIcem6xOEqyb6XxEepv6qm8Ck6l9KgWmvnsPc2ijMWCnGQlUYKl1Ff1WcJ+c54EFgaBHDbwQ=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.59.tgz"; + sha512 = "HMC6y2rqtomrspvHwEZZuQb8kzw1GZSmaZ8fbbjSRvvvtOHLbIetuFWGVJ6dgthkt10YII21AMZcvxvrTC6H/Q=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -12703,15 +12586,6 @@ let sha512 = "G4yqdVlhr6YhzLXFKy5F7HtRBU8Y23+iWy7UKthMq/OSQnL1hbsoeXESQ2LY8zEDlknipDG3nRGhUC9tkwvy/w=="; }; }; - "@types/better-sqlite3-7.6.4" = { - name = "_at_types_slash_better-sqlite3"; - packageName = "@types/better-sqlite3"; - version = "7.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.6.4.tgz"; - sha512 = "dzrRZCYPXIXfSR1/surNbJ/grU3scTaygS0OMzjlGf71i9sc2fGyHPXXiXmEvNIoE0cGwsanEFMVJxPXmco9Eg=="; - }; - }; "@types/bn.js-5.1.1" = { name = "_at_types_slash_bn.js"; packageName = "@types/bn.js"; @@ -13045,13 +12919,13 @@ let sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q=="; }; }; - "@types/express-serve-static-core-4.17.34" = { + "@types/express-serve-static-core-4.17.35" = { name = "_at_types_slash_express-serve-static-core"; packageName = "@types/express-serve-static-core"; - version = "4.17.34"; + version = "4.17.35"; src = fetchurl { - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz"; - sha512 = "fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w=="; + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz"; + sha512 = "wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg=="; }; }; "@types/file-type-10.9.1" = { @@ -13531,13 +13405,13 @@ let sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg=="; }; }; - "@types/node-14.18.46" = { + "@types/node-14.18.47" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "14.18.46"; + version = "14.18.47"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.18.46.tgz"; - sha512 = "n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng=="; + url = "https://registry.npmjs.org/@types/node/-/node-14.18.47.tgz"; + sha512 = "OuJi8bIng4wYHHA3YpKauL58dZrPxro3d0tabPHyiNF8rKfGKuVfr83oFlPLmKri1cX+Z3cJP39GXmnqkP11Gw=="; }; }; "@types/node-15.14.9" = { @@ -13576,13 +13450,13 @@ let sha512 = "XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g=="; }; }; - "@types/node-16.18.29" = { + "@types/node-16.18.31" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.18.29"; + version = "16.18.31"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.18.29.tgz"; - sha512 = "cal+XTYF4JBwG82kw3m9ktTOyUj7GXcO9i2o+t49y/OF+3asYfpHqTROF1UbV91e71g/UB5wNeL5hfqPthzp8Q=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.18.31.tgz"; + sha512 = "KPXltf4z4g517OlVJO9XQ2357CYw7fvuJ3ZuBynjXC5Jos9i+K7LvFb7bUIwtJXSZj0vTp9Q6NJBSQpkwwO8Zw=="; }; }; "@types/node-16.9.1" = { @@ -13612,6 +13486,15 @@ let sha512 = "z6nr0TTEOBGkzLGmbypWOGnpSpSIBorEhC4L+4HeQ2iezKCi4f77kyslRwvHeNitymGQ+oFyIWGP96l/DPSV9w=="; }; }; + "@types/node-18.16.13" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "18.16.13"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-18.16.13.tgz"; + sha512 = "uZRomboV1vBL61EBXneL4j9/hEn+1Yqa4LQdpGrKmXFyJmVfWc9JV9+yb2AlnOnuaDnb2PDO3hC6/LKmzJxP1A=="; + }; + }; "@types/node-18.16.3" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -13621,22 +13504,22 @@ let sha512 = "OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q=="; }; }; - "@types/node-18.16.8" = { + "@types/node-20.1.2" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.16.8"; + version = "20.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.16.8.tgz"; - sha512 = "p0iAXcfWCOTCBbsExHIDFCfwsqFwBTgETJveKMT+Ci3LY9YqQCI91F5S+TB20+aRCXpcWfvx5Qr5EccnwCm2NA=="; + url = "https://registry.npmjs.org/@types/node/-/node-20.1.2.tgz"; + sha512 = "CTO/wa8x+rZU626cL2BlbCDzydgnFNgc19h4YvizpTO88MFQxab8wqisxaofQJ/9bLGugRdWIuX/TbIs6VVF6g=="; }; }; - "@types/node-20.1.3" = { + "@types/node-20.2.1" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "20.1.3"; + version = "20.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.1.3.tgz"; - sha512 = "NP2yfZpgmf2eDRPmgGq+fjGjSwFgYbihA8/gK+ey23qT9RkxsgNTZvGOEpXgzIGqesTYkElELLgtKoMQTys5vA=="; + url = "https://registry.npmjs.org/@types/node/-/node-20.2.1.tgz"; + sha512 = "DqJociPbZP1lbZ5SQPk4oag6W7AyaGMO6gSfRwq3PWl4PXTwJpRQJhDq4W0kzrg3w6tJ1SwlvGZ5uKFHY13LIg=="; }; }; "@types/node-6.14.13" = { @@ -13675,6 +13558,15 @@ let sha512 = "ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w=="; }; }; + "@types/node-fetch-2.6.4" = { + name = "_at_types_slash_node-fetch"; + packageName = "@types/node-fetch"; + version = "2.6.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz"; + sha512 = "1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg=="; + }; + }; "@types/normalize-package-data-2.4.1" = { name = "_at_types_slash_normalize-package-data"; packageName = "@types/normalize-package-data"; @@ -13981,15 +13873,6 @@ let sha512 = "8FHV/8Uzd7IwdHm5mvmF2Aif4aC/gjrt4axWD9SmfaxITnOjtOhCbOSTuqv/VbH1uq0QrwlaTj9aTz3gmR6u4w=="; }; }; - "@types/stack-trace-0.0.29" = { - name = "_at_types_slash_stack-trace"; - packageName = "@types/stack-trace"; - version = "0.0.29"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/stack-trace/-/stack-trace-0.0.29.tgz"; - sha512 = "TgfOX+mGY/NyNxJLIbDWrO9DjGoVSW9+aB8H2yy1fy32jsvxijhmyJI9fDFgvz3YP4lvJaq9DzdR/M1bOgVc9g=="; - }; - }; "@types/stack-utils-2.0.1" = { name = "_at_types_slash_stack-utils"; packageName = "@types/stack-utils"; @@ -14296,13 +14179,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.59.5" = { + "@typescript-eslint/eslint-plugin-5.59.6" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz"; - sha512 = "feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz"; + sha512 = "sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -14323,13 +14206,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.59.5" = { + "@typescript-eslint/parser-5.59.6" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz"; - sha512 = "NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz"; + sha512 = "7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -14341,22 +14224,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.59.5" = { + "@typescript-eslint/scope-manager-5.59.6" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz"; - sha512 = "jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz"; + sha512 = "gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ=="; }; }; - "@typescript-eslint/type-utils-5.59.5" = { + "@typescript-eslint/type-utils-5.59.6" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz"; - sha512 = "4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz"; + sha512 = "A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -14368,13 +14251,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.59.5" = { + "@typescript-eslint/types-5.59.6" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz"; - sha512 = "xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz"; + sha512 = "tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -14386,22 +14269,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.59.5" = { + "@typescript-eslint/typescript-estree-5.59.6" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz"; - sha512 = "+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz"; + sha512 = "vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA=="; }; }; - "@typescript-eslint/utils-5.59.5" = { + "@typescript-eslint/utils-5.59.6" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz"; - sha512 = "sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz"; + sha512 = "vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -14413,13 +14296,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.59.5" = { + "@typescript-eslint/visitor-keys-5.59.6" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.59.5"; + version = "5.59.6"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz"; - sha512 = "qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz"; + sha512 = "zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q=="; }; }; "@uphold/request-logger-2.0.0" = { @@ -14467,13 +14350,13 @@ let sha512 = "UGyyGAMXzop9C/fIoe7Ij63DkPSy1uMw2jipB5dnB8R3kl80za7LYzVnA1HvBEt2ZPWfMuwez/VGLOQ7XX4bTA=="; }; }; - "@vanilla-extract/babel-plugin-debug-ids-1.0.2" = { + "@vanilla-extract/babel-plugin-debug-ids-1.0.3" = { name = "_at_vanilla-extract_slash_babel-plugin-debug-ids"; packageName = "@vanilla-extract/babel-plugin-debug-ids"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.2.tgz"; - sha512 = "LjnbQWGeMwaydmovx8jWUR8BxLtLiPyq0xz5C8G5OvFhsuJxvavLdrBHNNizvr1dq7/3qZGlPv0znsvU4P44YA=="; + url = "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz"; + sha512 = "vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA=="; }; }; "@vanilla-extract/css-1.11.0" = { @@ -14503,13 +14386,13 @@ let sha512 = "17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ=="; }; }; - "@vercel/build-utils-6.7.2" = { + "@vercel/build-utils-6.7.3" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "6.7.2"; + version = "6.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.7.2.tgz"; - sha512 = "STSWs66rxX5pVKkhsYNeLx/Vlxjwe+dhy6PfXgBEJua7FXbWDjXjUyjzEyk63yUWysUflEBtLW9ckS/2V0QCZw=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.7.3.tgz"; + sha512 = "BCu5zX8MhzXAvd7X1Hn6b8blSTzKyY7JAEAdT5+FcB8e5fTs4bIQmYNc9JMeCqUgtisSpJvDAt69OLYP/aqEKw=="; }; }; "@vercel/error-utils-1.0.8" = { @@ -14530,13 +14413,13 @@ let sha512 = "v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-1.3.3" = { + "@vercel/gatsby-plugin-vercel-builder-1.3.5" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "1.3.3"; + version = "1.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.3.tgz"; - sha512 = "sjf+U2aHVl34mHvv9CFdIhO+Xs3pJNHYgxaJjyv+pihcOFi4B5uddE0xYM+o7fYwyBKgISVj69FvLcYuAe4Lsw=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.5.tgz"; + sha512 = "pZgLNDJTc7qxgzoMkalqFstWo0JVAd4i8MupajRbMQV+Ve5TZcUv3pGn3HcjrjQVZ3fjN5KWnJOiHdXTUCHHAQ=="; }; }; "@vercel/go-2.5.1" = { @@ -14557,13 +14440,13 @@ let sha512 = "1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw=="; }; }; - "@vercel/next-3.8.2" = { + "@vercel/next-3.8.5" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.8.2"; + version = "3.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.8.2.tgz"; - sha512 = "tTcfAC+C+3la1g2UJW0cm9lGEU1Mq5O0x73MLQPKWpoHOHqZYjbKBCUm5nAFKnaMSvWS1kFm9b0v1iKQk28mGA=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.8.5.tgz"; + sha512 = "ywD5cDytlCgcTdVTajamU1vpWJZbpDteC0sCxfCGFdlIdaMi3Nh8cv3G1SNWuXd7GbHsSFeQ6S4iVJxWVy84Yg=="; }; }; "@vercel/nft-0.22.5" = { @@ -14575,13 +14458,13 @@ let sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.14.2" = { + "@vercel/node-2.14.3" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.14.2"; + version = "2.14.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.14.2.tgz"; - sha512 = "BPuMVO5ocTic6rgFyFfDbhdRwBLOfnJ0OYTtfiPF+cY1MNuG86ADWtA+6b3vPhxHC3uumcWfrhwLd9OTSYNfKw=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.14.3.tgz"; + sha512 = "XEoMTQvqQC11hItfDsTegtBA66jTFXA7PTyI2QHASpoAQFMGcx91XI/sTPvxgK/1u+eXjxpiv6OU3l4/i27G4Q=="; }; }; "@vercel/python-3.1.60" = { @@ -14602,13 +14485,13 @@ let sha512 = "j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA=="; }; }; - "@vercel/remix-builder-1.8.8" = { + "@vercel/remix-builder-1.8.10" = { name = "_at_vercel_slash_remix-builder"; packageName = "@vercel/remix-builder"; - version = "1.8.8"; + version = "1.8.10"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.8.tgz"; - sha512 = "pXZ19gYVdrlLuxRlhrC5v1uYn53YdSLXSzbDlYgbWanE2dbMSRLIjhzq+GIow9TislkhZwJYEgaScho9dMQPDQ=="; + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.10.tgz"; + sha512 = "DXOjz/4HUawFojrbK9AQq1sjA2YxGbG8/bTTwSdqdYJZv0QgeK1vkOioxLmQP5qzZ7DQNK+LgSn9oMrX3Bq/lA=="; }; }; "@vercel/routing-utils-2.2.1" = { @@ -14629,13 +14512,13 @@ let sha512 = "J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ=="; }; }; - "@vercel/static-build-1.3.30" = { + "@vercel/static-build-1.3.32" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.3.30"; + version = "1.3.32"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.30.tgz"; - sha512 = "rjwZBX07v/SRIavECVO92+W++eWCIweEx4YnhSTqY4i0J9d+aggsH4+cIrXmvIoMvxTlF3aFPpyUgX4DJaCWXA=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.32.tgz"; + sha512 = "pFZ9dG/Ixm72o8ZGc5G78zUsgHUm5t9V6Ob/RI6KtDz+LP3iIXt7Mh0SLd4hWb553i2vgywe5T1KMPyuy3tOvw=="; }; }; "@vercel/static-config-2.0.17" = { @@ -14755,22 +14638,22 @@ let sha512 = "bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA=="; }; }; - "@volar/vue-language-core-1.6.4" = { + "@volar/vue-language-core-1.6.5" = { name = "_at_volar_slash_vue-language-core"; packageName = "@volar/vue-language-core"; - version = "1.6.4"; + version = "1.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/vue-language-core/-/vue-language-core-1.6.4.tgz"; - sha512 = "1o+cAtN2DIDNAX/HS8rkjZc8wTMTK+zCab/qtYbvEVlmokhZiDrQeoD9/l0Ug7YCNg+mVuMNHKNBY7pX8U2/Jw=="; + url = "https://registry.npmjs.org/@volar/vue-language-core/-/vue-language-core-1.6.5.tgz"; + sha512 = "IF2b6hW4QAxfsLd5mePmLgtkXzNi+YnH6ltCd80gb7+cbdpFMjM1I+w+nSg2kfBTyfu+W8useCZvW89kPTBpzg=="; }; }; - "@volar/vue-language-service-1.6.4" = { + "@volar/vue-language-service-1.6.5" = { name = "_at_volar_slash_vue-language-service"; packageName = "@volar/vue-language-service"; - version = "1.6.4"; + version = "1.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/vue-language-service/-/vue-language-service-1.6.4.tgz"; - sha512 = "zjzAmJ9t4PGT7apB1zOS6jNj0/WoHfQsHBIt6dJ9atA22rMA/G70Gr5K6MjZg+Vq3Uvmy6c0AQJxXbhlsdoVow=="; + url = "https://registry.npmjs.org/@volar/vue-language-service/-/vue-language-service-1.6.5.tgz"; + sha512 = "2uZPvDfo8Bspq9u+RaQhsdONFhu35HBS7/ZDXhhmhyMfcN327e1vnvAhHPDfOb8XNFg/Cj54rVKegANpKZJTOg=="; }; }; "@vscode/emmet-helper-2.8.8" = { @@ -14917,22 +14800,22 @@ let sha512 = "jNYQ+3z7HDZ3IR3Z3Dlo3yOPbHexpygkn2IJ7sjA62oGolnNWeF7kvpLwni18l8N5InhS66m9w31an1Fs5pCZA=="; }; }; - "@vue/compiler-core-3.3.2" = { + "@vue/compiler-core-3.3.4" = { name = "_at_vue_slash_compiler-core"; packageName = "@vue/compiler-core"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.2.tgz"; - sha512 = "CKZWo1dzsQYTNTft7whzjL0HsrEpMfiK7pjZ2WFE3bC1NA7caUjWioHSK+49y/LK7Bsm4poJZzAMnvZMQ7OTeg=="; + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz"; + sha512 = "cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g=="; }; }; - "@vue/compiler-dom-3.3.2" = { + "@vue/compiler-dom-3.3.4" = { name = "_at_vue_slash_compiler-dom"; packageName = "@vue/compiler-dom"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.2.tgz"; - sha512 = "6gS3auANuKXLw0XH6QxkWqyPYPunziS2xb6VRenM3JY7gVfZcJvkCBHkb5RuNY1FCbBO3lkIi0CdXUCW1c7SXw=="; + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz"; + sha512 = "wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w=="; }; }; "@vue/compiler-sfc-2.7.14" = { @@ -14944,22 +14827,22 @@ let sha512 = "aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA=="; }; }; - "@vue/compiler-sfc-3.3.2" = { + "@vue/compiler-sfc-3.3.4" = { name = "_at_vue_slash_compiler-sfc"; packageName = "@vue/compiler-sfc"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.2.tgz"; - sha512 = "jG4jQy28H4BqzEKsQqqW65BZgmo3vzdLHTBjF+35RwtDdlFE+Fk1VWJYUnDMMqkFBo6Ye1ltSKVOMPgkzYj7SQ=="; + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz"; + sha512 = "6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ=="; }; }; - "@vue/compiler-ssr-3.3.2" = { + "@vue/compiler-ssr-3.3.4" = { name = "_at_vue_slash_compiler-ssr"; packageName = "@vue/compiler-ssr"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.2.tgz"; - sha512 = "K8OfY5FQtZaSOJHHe8xhEfIfLrefL/Y9frv4k4NsyQL3+0lRKxr9QuJhfdBDjkl7Fhz8CzKh63mULvmOfx3l2w=="; + url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz"; + sha512 = "m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ=="; }; }; "@vue/component-compiler-utils-3.3.0" = { @@ -14998,31 +14881,31 @@ let sha512 = "LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ=="; }; }; - "@vue/reactivity-3.3.2" = { + "@vue/reactivity-3.3.4" = { name = "_at_vue_slash_reactivity"; packageName = "@vue/reactivity"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.2.tgz"; - sha512 = "yX8C4uTgg2Tdj+512EEMnMKbLveoITl7YdQX35AYgx8vBvQGszKiiCN46g4RY6/deeo/5DLbeUUGxCq1qWMf5g=="; + url = "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz"; + sha512 = "kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ=="; }; }; - "@vue/reactivity-transform-3.3.2" = { + "@vue/reactivity-transform-3.3.4" = { name = "_at_vue_slash_reactivity-transform"; packageName = "@vue/reactivity-transform"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.2.tgz"; - sha512 = "iu2WaQvlJHdnONrsyv4ibIEnSsuKF+aHFngGj/y1lwpHQtalpVhKg9wsKMoiKXS9zPNjG9mNKzJS9vudvjzvyg=="; + url = "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz"; + sha512 = "MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw=="; }; }; - "@vue/shared-3.3.2" = { + "@vue/shared-3.3.4" = { name = "_at_vue_slash_shared"; packageName = "@vue/shared"; - version = "3.3.2"; + version = "3.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.3.2.tgz"; - sha512 = "0rFu3h8JbclbnvvKrs7Fe5FNGV9/5X2rPD7KmOzhLSUAiQH5//Hq437Gv0fR5Mev3u/nbtvmLl8XgwCU20/ZfQ=="; + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz"; + sha512 = "7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ=="; }; }; "@vue/web-component-wrapper-1.3.0" = { @@ -16276,13 +16159,13 @@ let sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; }; }; - "@yarnpkg/parsers-3.0.0-rc.43" = { + "@yarnpkg/parsers-3.0.0-rc.44" = { name = "_at_yarnpkg_slash_parsers"; packageName = "@yarnpkg/parsers"; - version = "3.0.0-rc.43"; + version = "3.0.0-rc.44"; src = fetchurl { - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.43.tgz"; - sha512 = "AhFF3mIDfA+jEwQv2WMHmiYhOvmdbh2qhUkDVQfiqzQtUwS4BgoWwom5NpSPg4Ix5vOul+w1690Bt21CkVLpgg=="; + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.44.tgz"; + sha512 = "UVAt9Icc8zfGXioeYJ8XMoSTxOYVmlal2TRNxy9Uh91taS72kQFalK7LpIslcvEBKy4XtarmfIwcFIU3ZY64lw=="; }; }; "@zeit/schemas-2.29.0" = { @@ -16321,58 +16204,58 @@ let sha512 = "nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg=="; }; }; - "@zwave-js/cc-10.20.0" = { + "@zwave-js/cc-10.21.0" = { name = "_at_zwave-js_slash_cc"; packageName = "@zwave-js/cc"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.20.0.tgz"; - sha512 = "REcDIaxjLiiVyAwaYEtoa3sFU7TQ+hKJVs3MkkiJtajr4kFEuXQwygKq6z6WrE4pEqs+CryM06zG+ChtQcoMmQ=="; + url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.21.0.tgz"; + sha512 = "n9O78CgjORZl1EqzHww3QNfNC0RPZjv2fYG9r5CtFBCue7E5ponZ3fGucLU4zHdYRl6Mix1LZ0GTOWagZcnSxg=="; }; }; - "@zwave-js/config-10.20.0" = { + "@zwave-js/config-10.21.0" = { name = "_at_zwave-js_slash_config"; packageName = "@zwave-js/config"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.20.0.tgz"; - sha512 = "HD7Qsxq+mP9kDxD5oYQoGi8cXnrGPzvwNmAlWjZDPQh/H8BmaKhq/tsntUd+zm7B8wgnsfu5z8RHvk1BAco9MQ=="; + url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.21.0.tgz"; + sha512 = "FEakKUl2Cez4BOzQ2qw64S/P6B1ZjJkNE8osLa1ujqRn9/4TEOR7FbL6alJ1SDuK/WJyZZpBCM6BT2xL5BwzEg=="; }; }; - "@zwave-js/core-10.20.0" = { + "@zwave-js/core-10.21.0" = { name = "_at_zwave-js_slash_core"; packageName = "@zwave-js/core"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/core/-/core-10.20.0.tgz"; - sha512 = "LkoUyANaK6Vlk49ONRfTL2NImGVFy5WLXXhpgvrBA7baDZFTabFvlFumfdeyliJyA4Kz3VDO6JXGDv6Y0u4Hdw=="; + url = "https://registry.npmjs.org/@zwave-js/core/-/core-10.21.0.tgz"; + sha512 = "xS4D5Nt29xrctEYTdDG9T00SqIt0XW8cvL4t6B5pQjpKVvbk1v3mAar+nHSd3yvqVJmLP/bPJOw1XGvicWRypg=="; }; }; - "@zwave-js/host-10.20.0" = { + "@zwave-js/host-10.21.0" = { name = "_at_zwave-js_slash_host"; packageName = "@zwave-js/host"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.20.0.tgz"; - sha512 = "fZ75mP45g6I3apnxFKdSPsYw5utUMRZOqtJi/HFxYihnyZWvkpZ1sNC8hfbz8LN0nrg2ap9IgFQ9b8hi34CBVw=="; + url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.21.0.tgz"; + sha512 = "FQQUZuaj4arUY7WU4BZ9pzF9VcNzhA6xfXVsHGkX7XN5c6PTA9BJ0HzV7fMXb8F+cNmTHEmkHXc2k/0cVDx95Q=="; }; }; - "@zwave-js/nvmedit-10.20.0" = { + "@zwave-js/nvmedit-10.21.0" = { name = "_at_zwave-js_slash_nvmedit"; packageName = "@zwave-js/nvmedit"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-10.20.0.tgz"; - sha512 = "GHnO0GvjVRs1NXVqAedzFFu2jcmVhXTlENDHEgaqwDRNMLoH3nfmUtquA1GO33phjsUVSCHim2JEkHx4AnyHoA=="; + url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-10.21.0.tgz"; + sha512 = "N+9PdC6yFh/ub9JohI/qmZJhCeb6z6a6j3zShHOlgOYqXXdj8uDpAvASWl9fR/ff8HHGMSWWW9/6Plkw8x5YrA=="; }; }; - "@zwave-js/serial-10.20.0" = { + "@zwave-js/serial-10.21.0" = { name = "_at_zwave-js_slash_serial"; packageName = "@zwave-js/serial"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.20.0.tgz"; - sha512 = "k8siCGdpR0eQH2rjN5NAku6RFGkjyzy4mtkDgJsy/xv2wAA2LhT5kbzLSuEXRlnorFxNWAgWwiye6NOeGMT01g=="; + url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.21.0.tgz"; + sha512 = "jBfl/Tp/qfhwbamZc5qSrOHRRkYM+H4AHeUp6wsw9KUeGeg0c2gr2ciQ8MHPhEarVBnHiJyhKEfdDIEJVC+n5A=="; }; }; "@zwave-js/shared-10.17.0" = { @@ -16384,13 +16267,13 @@ let sha512 = "r9x8nNQwZ62sjKmDeJk4rHqYqR0cp++oU5TNzMlg8dj1qvufkbmQDMbcbIdkCnmMhojWZH2zAB2HqVC1Fu8fZA=="; }; }; - "@zwave-js/testing-10.20.0" = { + "@zwave-js/testing-10.21.0" = { name = "_at_zwave-js_slash_testing"; packageName = "@zwave-js/testing"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.20.0.tgz"; - sha512 = "ZnhZreuWB7Y8oxhX1dF8DCoPXanZRe0SHtrn23cU6iwGC7l3oLqb9aVpPkMA5F7S9X2aVCI3EBe+eOLGJcyoyA=="; + url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.21.0.tgz"; + sha512 = "9U5nzMCi4hqqqfPEdEOdmHcSG3HGzKiXuK7RG6hzhlkpfgVSS5ToP2BsScJw/fu3dh9nu/fdIoCVR5xnPEaQZg=="; }; }; "@zxing/text-encoding-0.9.0" = { @@ -16951,13 +16834,13 @@ let sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; }; }; - "agent-base-7.0.1" = { + "agent-base-7.0.2" = { name = "agent-base"; packageName = "agent-base"; - version = "7.0.1"; + version = "7.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/agent-base/-/agent-base-7.0.1.tgz"; - sha512 = "V9to8gr2GK7eA+xskWGAFUX/TLSQKuH2TI06c/jGLL6yLp3oEjtnqM7a5tPV9fC1rabLeAgThZeBwsYX+WWHpw=="; + url = "https://registry.npmjs.org/agent-base/-/agent-base-7.0.2.tgz"; + sha512 = "k2/tQ1+8Zf50dEUJWklUP80LcE/+Ph+OJ6cf2Ff2fD/c/TtCe6ofnCoNMz9UnyxOQYlaAALZtEWETzn+1JjfHg=="; }; }; "agentkeepalive-4.3.0" = { @@ -18913,13 +18796,13 @@ let sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; }; }; - "astring-1.8.4" = { + "astring-1.8.5" = { name = "astring"; packageName = "astring"; - version = "1.8.4"; + version = "1.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/astring/-/astring-1.8.4.tgz"; - sha512 = "97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw=="; + url = "https://registry.npmjs.org/astring/-/astring-1.8.5.tgz"; + sha512 = "TuBbdn7jWVzf8dmFGTaRpW8qgANtWLi1qJLnkfGO5uVf6jf9f/F4B1H35tnOI+qVYZo3p3i8WZlbZOuPAE0wEA=="; }; }; "async-0.1.22" = { @@ -19453,13 +19336,13 @@ let sha512 = "bSOfBCVPQ/0NWYpPl34MgqMbJf0eO6PsyVlmjbStlba+98hnE6X7z67tawBRot7S+qH3L49KW2u6dfJjvhDfdQ=="; }; }; - "aws-sdk-2.1377.0" = { + "aws-sdk-2.1381.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1377.0"; + version = "2.1381.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1377.0.tgz"; - sha512 = "59T3v/o40fk2I2zpgh2E0Z/BBK5awBQUva7VLjLHo9rsMvTM58mgya667hYTua00rHC1A3GJSCNORUhXvhomYQ=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1381.0.tgz"; + sha512 = "4dzE/zZZCG/MIYntKs61F0h0zJa3S5aXX90B2ZnNOf1zvPEJ/gMpv7u3C3FV7UMPyfg00JWAu3g9i+G2j8Wujw=="; }; }; "aws-sign2-0.6.0" = { @@ -19489,13 +19372,13 @@ let sha512 = "NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg=="; }; }; - "axe-core-4.7.0" = { + "axe-core-4.7.1" = { name = "axe-core"; packageName = "axe-core"; - version = "4.7.0"; + version = "4.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz"; - sha512 = "M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ=="; + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.7.1.tgz"; + sha512 = "sCXXUhA+cljomZ3ZAwb8i1p3oOlkABzPy08ZDAoGcYuvtBPlQ1Ytde129ArXyHWDhfeewq7rlx9F+cUx2SSlkg=="; }; }; "axios-0.19.2" = { @@ -19759,13 +19642,13 @@ let sha512 = "mZV3ycvtB4mfVhmScbU4CjMfBgoQAlsGu/vQw292juPSgvezTmBAke+V85ODAVNCM68r2Qa6dwu72Zcl4cTIbw=="; }; }; - "babel-plugin-styled-components-2.1.1" = { + "babel-plugin-styled-components-2.1.3" = { name = "babel-plugin-styled-components"; packageName = "babel-plugin-styled-components"; - version = "2.1.1"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.1.tgz"; - sha512 = "c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA=="; + url = "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.3.tgz"; + sha512 = "jBioLwBVHpOMU4NsueH/ADcHrjS0Y/WTpt2eGVmmuSFNEv2DF3XhcMncuZlbbjxQ4vzxg+yEr6E6TNjrIQbsJQ=="; }; }; "babel-plugin-syntax-jsx-6.18.0" = { @@ -20119,13 +20002,13 @@ let sha512 = "ZNB4525U7BxT6v9C8LEtywyCgB4Pjnm7/bh+ru/Z9Ecxvg3fDjaJ6z305z9a61orQdbB1zqYHh5JbUqx4s4K0g=="; }; }; - "bash-language-server-4.9.1" = { + "bash-language-server-4.9.2" = { name = "bash-language-server"; packageName = "bash-language-server"; - version = "4.9.1"; + version = "4.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.9.1.tgz"; - sha512 = "2W09QiXguGH5i9yvW6tYd28DnLlLIpf0FeUfN8yrYD0O0DDm6qwvqu7bfOmxkO2AnWeCJ/EY3lv6b+Zc7FQc1w=="; + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.9.2.tgz"; + sha512 = "WchUA3WdUbgocLSJddbmECbkfHxp7hNFbFh7rLaPbqVsL9506HZYumlOQq1fcPGss1iTshJtQYyPzNsPV3XZag=="; }; }; "basic-auth-1.1.0" = { @@ -21703,22 +21586,22 @@ let sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; }; }; - "browser-sync-client-2.29.1" = { + "browser-sync-client-2.29.3" = { name = "browser-sync-client"; packageName = "browser-sync-client"; - version = "2.29.1"; + version = "2.29.3"; src = fetchurl { - url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.29.1.tgz"; - sha512 = "aESnjt3rU7CZpzjyqzhIC2UJ3MVhzRis7cPKkGbyYWDf/wnbxyRa3fFenF3Qx9061/guY3HHhD67uiTVV26DVg=="; + url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.29.3.tgz"; + sha512 = "4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ=="; }; }; - "browser-sync-ui-2.29.1" = { + "browser-sync-ui-2.29.3" = { name = "browser-sync-ui"; packageName = "browser-sync-ui"; - version = "2.29.1"; + version = "2.29.3"; src = fetchurl { - url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.29.1.tgz"; - sha512 = "MB7SAiUgVUrhipO2xyO1sheC9H0+LKXPQ3L1tQWcZ3AgizBnUNKAqDZPSwe4grNSa8o8ImSAwJp7lMS6XYy1Dw=="; + url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.29.3.tgz"; + sha512 = "kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg=="; }; }; "browserify-16.5.2" = { @@ -21865,15 +21748,6 @@ let sha512 = "BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw=="; }; }; - "bs-snippet-injector-2.0.1" = { - name = "bs-snippet-injector"; - packageName = "bs-snippet-injector"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz"; - sha512 = "4u8IgB+L9L+S5hknOj3ddNSb42436gsnGm1AuM15B7CdbkpQTyVWgIM5/JUBiKiRwGOR86uo0Lu/OsX+SAlJmw=="; - }; - }; "bs32-0.1.6" = { name = "bs32"; packageName = "bs32"; @@ -22631,13 +22505,13 @@ let sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ=="; }; }; - "cacache-17.1.0" = { + "cacache-17.1.3" = { name = "cacache"; packageName = "cacache"; - version = "17.1.0"; + version = "17.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/cacache/-/cacache-17.1.0.tgz"; - sha512 = "hXpFU+Z3AfVmNuiLve1qxWHMq0RSIt5gjCKAHi/M6DktwFwDdAXAtunl1i4WSKaaVcU9IsRvXFg42jTHigcC6Q=="; + url = "https://registry.npmjs.org/cacache/-/cacache-17.1.3.tgz"; + sha512 = "jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg=="; }; }; "cache-base-1.0.1" = { @@ -23054,13 +22928,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001486" = { + "caniuse-lite-1.0.30001488" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001486"; + version = "1.0.30001488"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz"; - sha512 = "uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001488.tgz"; + sha512 = "NORIQuuL4xGpIy6iCCQGN4iFjlBXtfKWIenlUuyZJumLRIindLb7wXM+GO8erEhb7vXfcnf4BAg2PrSDN5TNLQ=="; }; }; "canvas-2.11.2" = { @@ -23090,6 +22964,15 @@ let sha512 = "ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A=="; }; }; + "capnp-ts-0.7.0" = { + name = "capnp-ts"; + packageName = "capnp-ts"; + version = "0.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/capnp-ts/-/capnp-ts-0.7.0.tgz"; + sha512 = "XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g=="; + }; + }; "capture-stack-trace-1.0.2" = { name = "capture-stack-trace"; packageName = "capture-stack-trace"; @@ -23207,6 +23090,15 @@ let sha512 = "DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg=="; }; }; + "cbor-9.0.0" = { + name = "cbor"; + packageName = "cbor"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cbor/-/cbor-9.0.0.tgz"; + sha512 = "87cFgOKxjUOnGpNeQMBVER4Mc/rZAk9xC+Ygfx5FLCAUt/tpVHphuZC5fJmp/KSDsEsBEDIPtEt0YbD/GFQw8Q=="; + }; + }; "ccount-1.1.0" = { name = "ccount"; packageName = "ccount"; @@ -23225,22 +23117,22 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.7.59" = { + "cdk8s-2.7.71" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.7.59"; + version = "2.7.71"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.59.tgz"; - sha512 = "I/8APn39bEQuCrULf19WOkRuKG52N0RUK0kwAz4oz+zRGBNr/4PWzMOGoFl/Gc17+F0Ntim1x1GGuwhQJlWyYg=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.7.71.tgz"; + sha512 = "Pc/+SHq6lvxJ0MQKDzTJyv7gkPFp7dO7MQd0ezTdj4rOheO5e7cu2A6a/z+OUKxWDzzoWJcuYFnd5QaZtc5Siw=="; }; }; - "cdk8s-plus-25-2.7.26" = { + "cdk8s-plus-25-2.7.34" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.7.26"; + version = "2.7.34"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.26.tgz"; - sha512 = "7iPhww4UsOCjbvQGEzBXXWrbUA9qlsXnkbcXep/T2GbwrVTOR5V1Rr9vO+FHedyJvcRfOR3DVfZiqECzy3mJnQ=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.7.34.tgz"; + sha512 = "G2Cq7p78wdEo7qPYuIzN8vJEfclmnwfOi4QNOhGjAAJC8p3g88B2pv5H6YfPwPo61MPCi1YRxpVrZXy6NXUMVg=="; }; }; "cdktf-0.16.1" = { @@ -26051,13 +25943,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.2.21" = { + "constructs-10.2.29" = { name = "constructs"; packageName = "constructs"; - version = "10.2.21"; + version = "10.2.29"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.2.21.tgz"; - sha512 = "NLtZRapYcROst0vxCx3SMUDNjCDWvXDv00WJeBysviGDwONeK2ELsxflnmjR08AI1ubpumADbxKwu+rOvXH+Pw=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.2.29.tgz"; + sha512 = "gsvKez1oWgUi+LJDEtmMrC9E1d0Kn0YXFcBJEYUzMznrzAUDWuaq0tG6PcmQ50+elH5RO3SMMLo4HzqLZ2XxFg=="; }; }; "consume-http-header-1.0.0" = { @@ -27006,13 +26898,13 @@ let sha512 = "gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw=="; }; }; - "create-gatsby-3.9.0" = { + "create-gatsby-3.10.0" = { name = "create-gatsby"; packageName = "create-gatsby"; - version = "3.9.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz"; - sha512 = "44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg=="; + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz"; + sha512 = "ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ=="; }; }; "create-graphback-1.0.1" = { @@ -27078,15 +26970,6 @@ let sha512 = "wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ=="; }; }; - "cron-schedule-3.0.6" = { - name = "cron-schedule"; - packageName = "cron-schedule"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cron-schedule/-/cron-schedule-3.0.6.tgz"; - sha512 = "izfGgKyzzIyLaeb1EtZ3KbglkS6AKp9cv7LxmiyoOu+fXfol1tQDC0Cof0enVZGNtudTHW+3lfuW9ZkLQss4Wg=="; - }; - }; "croner-4.1.97" = { name = "croner"; packageName = "croner"; @@ -27150,6 +27033,15 @@ let sha512 = "lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw=="; }; }; + "cross-fetch-3.1.6" = { + name = "cross-fetch"; + packageName = "cross-fetch"; + version = "3.1.6"; + src = fetchurl { + url = "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz"; + sha512 = "riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g=="; + }; + }; "cross-spawn-4.0.2" = { name = "cross-spawn"; packageName = "cross-spawn"; @@ -27510,13 +27402,13 @@ let sha512 = "M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ=="; }; }; - "css-loader-6.7.3" = { + "css-loader-6.7.4" = { name = "css-loader"; packageName = "css-loader"; - version = "6.7.3"; + version = "6.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz"; - sha512 = "qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ=="; + url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.4.tgz"; + sha512 = "0Y5uHtK5BswfaGJ+jrO+4pPg1msFBc0pwPIE1VqfpmVn6YbDfYfXMj8rfd7nt+4goAhJueO+H/I40VWJfcP1mQ=="; }; }; "css-minimizer-webpack-plugin-3.4.1" = { @@ -31488,13 +31380,13 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.392" = { + "electron-to-chromium-1.4.402" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.392"; + version = "1.4.402"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.392.tgz"; - sha512 = "TXQOMW9tnhIms3jGy/lJctLjICOgyueZFJ1KUtm6DTQ+QpxX3p7ZBwB6syuZ9KBuT5S4XX7bgY1ECPgfxKUdOg=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.402.tgz"; + sha512 = "gWYvJSkohOiBE6ecVYXkrDgNaUjo47QEKK0kQzmWyhkH+yoYiG44bwuicTGNSIQRG3WDMsWVZJLRnJnLNkbWvA=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -31832,15 +31724,6 @@ let sha512 = "Y53UaciUh2Rmx5MiogtMxOQcfh7pnemday+Bb4QDg0Wjmnvo/VTvuEyNGQgYmh8L7VOe8Je1QuiqjLNDelMqLA=="; }; }; - "engine.io-6.1.3" = { - name = "engine.io"; - packageName = "engine.io"; - version = "6.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-6.1.3.tgz"; - sha512 = "rqs60YwkvWTLLnfazqgZqLa/aKo+9cueVfEi/dZ8PyGyaf8TLOxj++4QMIgeG3Gn0AhrWiFXvghsoY9L9h25GA=="; - }; - }; "engine.io-6.2.1" = { name = "engine.io"; packageName = "engine.io"; @@ -32472,13 +32355,13 @@ let sha512 = "71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg=="; }; }; - "esbuild-0.17.18" = { + "esbuild-0.17.19" = { name = "esbuild"; packageName = "esbuild"; - version = "0.17.18"; + version = "0.17.19"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz"; - sha512 = "z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w=="; + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz"; + sha512 = "XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw=="; }; }; "esbuild-0.17.6" = { @@ -33057,13 +32940,13 @@ let sha512 = "Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw=="; }; }; - "eslint-8.40.0" = { + "eslint-8.41.0" = { name = "eslint"; packageName = "eslint"; - version = "8.40.0"; + version = "8.41.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.40.0.tgz"; - sha512 = "bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.41.0.tgz"; + sha512 = "WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q=="; }; }; "eslint-config-prettier-6.15.0" = { @@ -33246,13 +33129,13 @@ let sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; }; }; - "eslint-plugin-vue-9.12.0" = { + "eslint-plugin-vue-9.13.0" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; - version = "9.12.0"; + version = "9.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.12.0.tgz"; - sha512 = "xH8PgpDW2WwmFSmRfs/3iWogef1CJzQqX264I65zz77jDuxF2yLy7+GA2diUM8ZNATuSl1+UehMQkb5YEyau5w=="; + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.13.0.tgz"; + sha512 = "aBz9A8WB4wmpnVv0pYUt86cmH9EkcwWzgEwecBxMoRNhQjTL5i4sqadnwShv/hOdr8Hbl8XANGV7dtX9UQIAyA=="; }; }; "eslint-rule-docs-1.1.235" = { @@ -33885,6 +33768,15 @@ let sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; }; }; + "eventemitter3-5.0.1" = { + name = "eventemitter3"; + packageName = "eventemitter3"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz"; + sha512 = "GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA=="; + }; + }; "events-1.1.1" = { name = "events"; packageName = "events"; @@ -34083,15 +33975,6 @@ let sha512 = "m4wU9j4Z9nXXoqT8RSfl28JSwmMNLFF69OON8H/lL3NeU0tNpGz313bcOfYoBBHokB0dC2tMl3VUcKgHELhL2Q=="; }; }; - "execa-6.1.0" = { - name = "execa"; - packageName = "execa"; - version = "6.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/execa/-/execa-6.1.0.tgz"; - sha512 = "QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA=="; - }; - }; "execa-7.1.1" = { name = "execa"; packageName = "execa"; @@ -34245,13 +34128,13 @@ let sha512 = "/wSgNMxFusiYRy1rd19LT2SQlIXDppHpumpWo06wxjflD1OYxDLbl6rMVw+U3bxD5Nuhex4TKqv9Aem4D0lVzQ=="; }; }; - "expo-48.0.16" = { + "expo-48.0.17" = { name = "expo"; packageName = "expo"; - version = "48.0.16"; + version = "48.0.17"; src = fetchurl { - url = "https://registry.npmjs.org/expo/-/expo-48.0.16.tgz"; - sha512 = "3LOfO80FZn+K3NngaP80LC2KE4rQcuzF3hQB6k8877A3Y/UPF5jmr8H7jlRrfvWSaYlenwzHhMs6Lyhr3zwfGw=="; + url = "https://registry.npmjs.org/expo/-/expo-48.0.17.tgz"; + sha512 = "5T1CsMUlfI+xFB89GOU+/xtSSbSBBFVTqwgheAU0cQolfbs+YyJCMTKU5vN45N5OK+ym7p/LKPa6DQAxYPF8YQ=="; }; }; "expo-application-5.1.1" = { @@ -34947,13 +34830,13 @@ let sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; }; }; - "fast-diff-1.2.0" = { + "fast-diff-1.3.0" = { name = "fast-diff"; packageName = "fast-diff"; - version = "1.2.0"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz"; - sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz"; + sha512 = "VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw=="; }; }; "fast-equals-4.0.3" = { @@ -35109,13 +34992,13 @@ let sha512 = "xEHkLUEmStETI+15zhglJLO9TjXxNkkp2ldEfYVZdcqxFhM172EfGl1irI6mVlTxXspYKH1/kjevnt/XSsPeFA=="; }; }; - "fast-redact-3.1.2" = { + "fast-redact-3.2.0" = { name = "fast-redact"; packageName = "fast-redact"; - version = "3.1.2"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.1.2.tgz"; - sha512 = "+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw=="; + url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz"; + sha512 = "zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw=="; }; }; "fast-safe-stringify-2.1.1" = { @@ -37269,22 +37152,22 @@ let sha512 = "w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w=="; }; }; - "gatsby-core-utils-4.9.0" = { + "gatsby-core-utils-4.10.0" = { name = "gatsby-core-utils"; packageName = "gatsby-core-utils"; - version = "4.9.0"; + version = "4.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz"; - sha512 = "diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg=="; + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz"; + sha512 = "7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA=="; }; }; - "gatsby-telemetry-4.9.0" = { + "gatsby-telemetry-4.10.0" = { name = "gatsby-telemetry"; packageName = "gatsby-telemetry"; - version = "4.9.0"; + version = "4.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz"; - sha512 = "sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A=="; + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz"; + sha512 = "t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ=="; }; }; "gauge-1.2.7" = { @@ -37557,13 +37440,13 @@ let sha512 = "Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA=="; }; }; - "get-intrinsic-1.2.0" = { + "get-intrinsic-1.2.1" = { name = "get-intrinsic"; packageName = "get-intrinsic"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz"; - sha512 = "L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q=="; + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz"; + sha512 = "2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw=="; }; }; "get-package-info-1.0.0" = { @@ -38052,13 +37935,13 @@ let sha512 = "0YCjVpE3pS5XWlN3J4X7AiAx65+nqAI54LndtVFnQZB6G/FVLkZH8y8V6R3cIoOQR4pUdfwQGd1iwyoXHJ4Qfw=="; }; }; - "glob-10.2.3" = { + "glob-10.2.5" = { name = "glob"; packageName = "glob"; - version = "10.2.3"; + version = "10.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-10.2.3.tgz"; - sha512 = "Kb4rfmBVE3eQTAimgmeqc2LwSnN0wIOkkUL6HmxEFxNJ4fHghYHVbFba/HcGcRjE6s9KoMNK3rSOwkL4PioZjg=="; + url = "https://registry.npmjs.org/glob/-/glob-10.2.5.tgz"; + sha512 = "Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA=="; }; }; "glob-3.2.11" = { @@ -38791,15 +38674,6 @@ let sha512 = "yUhpEDLeuGiGJjRSzEq3kvt4zJtAcjKmhIiwNp/eUs75tRlXfWcHo5tcBaMQtnjHWC7nQYT5HkY/l0QOQTkVww=="; }; }; - "got-11.8.3" = { - name = "got"; - packageName = "got"; - version = "11.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-11.8.3.tgz"; - sha512 = "7gtQ5KiPh1RtGS9/Jbv1ofDpBFuq42gyfEib+ejaRBJuj/3tQFeR5+gw57e4ipaU8c/rCjvX6fkQz2lyDlGAOg=="; - }; - }; "got-11.8.5" = { name = "got"; packageName = "got"; @@ -38989,6 +38863,15 @@ let sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; }; }; + "graphemer-1.4.0" = { + name = "graphemer"; + packageName = "graphemer"; + version = "1.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz"; + sha512 = "EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="; + }; + }; "graphlib-2.1.8" = { name = "graphlib"; packageName = "graphlib"; @@ -40645,15 +40528,6 @@ let sha512 = "YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw=="; }; }; - "html-rewriter-wasm-0.4.1" = { - name = "html-rewriter-wasm"; - packageName = "html-rewriter-wasm"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/html-rewriter-wasm/-/html-rewriter-wasm-0.4.1.tgz"; - sha512 = "lNovG8CMCCmcVB1Q7xggMSf7tqPCijZXaH4gL6iE8BFghdQCbaY5Met9i1x2Ex8m/cZHDUtXK9H6/znKamRP8Q=="; - }; - }; "html-tags-1.2.0" = { name = "html-tags"; packageName = "html-tags"; @@ -42031,13 +41905,13 @@ let sha512 = "t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg=="; }; }; - "ini-4.1.0" = { + "ini-4.1.1" = { name = "ini"; packageName = "ini"; - version = "4.1.0"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-4.1.0.tgz"; - sha512 = "HLR38RSF2iulAzc3I/sma4CoYxQP844rPYCNfzGDOHqa/YqVlwuuZgBx6M50/X8dKgzk0cm1qRg3+47mK2N+cQ=="; + url = "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz"; + sha512 = "QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g=="; }; }; "init-package-json-2.0.5" = { @@ -42256,13 +42130,22 @@ let sha512 = "QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ=="; }; }; - "inquirer-9.2.2" = { + "inquirer-9.2.3" = { name = "inquirer"; packageName = "inquirer"; - version = "9.2.2"; + version = "9.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.2.tgz"; - sha512 = "VV2ZOZe4ilLlOgEo7drIdzbi+EYJcNty0leF2vJq49zOW8+IoK1miJ+V5FjZY/X21Io29j66T/AiqHvS4tPIrw=="; + url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.3.tgz"; + sha512 = "/Et0+d28D7hnTYaqeCQkp3FYuD/X5cc2qbM6BzFdC5zs30oByoU5W/pmLc493FVVMwYmAILKjPBEmwRKTtknSQ=="; + }; + }; + "inquirer-9.2.5" = { + name = "inquirer"; + packageName = "inquirer"; + version = "9.2.5"; + src = fetchurl { + url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.5.tgz"; + sha512 = "Vy3qZFUPKILCgfeg6eEfKSlv4QbwwfGmdoAYqXYGlPEhY4HH0jQv+ynHkEYYE4eBDCDMWKHs77ByfHcy1GyDfA=="; }; }; "inquirer-autocomplete-prompt-1.4.0" = { @@ -42607,15 +42490,6 @@ let sha512 = "igASwWWkDY757OutNcM6zTtdJf/eTZYkoe2ymsX2qpm5bKZLo74FJYjsCtMQOEdY7dRHLLEulCyFQwdN69GBCg=="; }; }; - "ioredis-4.28.5" = { - name = "ioredis"; - packageName = "ioredis"; - version = "4.28.5"; - src = fetchurl { - url = "https://registry.npmjs.org/ioredis/-/ioredis-4.28.5.tgz"; - sha512 = "3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A=="; - }; - }; "ioredis-5.3.2" = { name = "ioredis"; packageName = "ioredis"; @@ -42760,13 +42634,13 @@ let sha512 = "HtszKchBQTcqw1DC09uD7i7vvMayHGM1OCo6AHt5pkgZEyo99ClhHTMJdf+Ezc9ovuNNxcH89QfyclGthjZJOw=="; }; }; - "irc-framework-4.12.1" = { + "irc-framework-4.13.1" = { name = "irc-framework"; packageName = "irc-framework"; - version = "4.12.1"; + version = "4.13.1"; src = fetchurl { - url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.12.1.tgz"; - sha512 = "RQBQcn5y4jE/ksPHwM4yoKK/OTC7YSboyqHnX1g/W28HpEWbqdBdYTu6PwfM/2/CCrM6vceaYmCPBO345XY0yg=="; + url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.13.1.tgz"; + sha512 = "oUdNyc5CLwYjsp5AP479EgdMMTepwYK9kury7sWzMV6IeMyKc6fExk6tnhN/jTWpiDKsYtbPAb01wE7yVtLcsQ=="; }; }; "irc-framework-4.4.0" = { @@ -43111,13 +42985,13 @@ let sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; }; }; - "is-core-module-2.12.0" = { + "is-core-module-2.12.1" = { name = "is-core-module"; packageName = "is-core-module"; - version = "2.12.0"; + version = "2.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz"; - sha512 = "RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ=="; + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz"; + sha512 = "Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg=="; }; }; "is-core-module-2.9.0" = { @@ -44866,13 +44740,13 @@ let sha512 = "M0c7cKHmdyEUtjemnJyx/y9uX16XHocL46yQvyqDlPdvAcwPDbHrIbKjQdBqtiE4apQ/9dmr+ZLJYYPGnurgpw=="; }; }; - "jake-10.8.5" = { + "jake-10.8.6" = { name = "jake"; packageName = "jake"; - version = "10.8.5"; + version = "10.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz"; - sha512 = "sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw=="; + url = "https://registry.npmjs.org/jake/-/jake-10.8.6.tgz"; + sha512 = "G43Ub9IYEFfu72sua6rzooi8V8Gz2lkfk48rW20vEWCGizeaEPlKB1Kh8JIA84yQbiAEfqlPmSpGgCKKxH3rDA=="; }; }; "javascript-stringify-2.1.0" = { @@ -45389,13 +45263,13 @@ let sha512 = "wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q=="; }; }; - "jquery.terminal-2.35.3" = { + "jquery.terminal-2.36.0" = { name = "jquery.terminal"; packageName = "jquery.terminal"; - version = "2.35.3"; + version = "2.36.0"; src = fetchurl { - url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.35.3.tgz"; - sha512 = "McYaOivaUB2Gubn8IBhQY7zxjGWXg4ENSofL11rt7HACWUDjqncXxakShuqq7Ma0y+BwCcYdltPl1e+WpDJkeg=="; + url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.36.0.tgz"; + sha512 = "i7znDzcN1JS7gnTSTemATi7JmoV/oEZEBRGWNnxJ/FE2Dt1JtVSq6u6ffiQ32hArhRkhmTXgbuB9GrJzjtDUaQ=="; }; }; "js-base64-2.6.3" = { @@ -45785,13 +45659,13 @@ let sha512 = "m5BQlNJGHFFwxUxZwagSqqMCS1wbt/0fKeEr+j7WWsG1lhu3fUxANYukUAeQEPJAPWuv0kAbqMaxj/4HSgd5RA=="; }; }; - "jsii-5.0.7" = { + "jsii-5.0.8" = { name = "jsii"; packageName = "jsii"; - version = "5.0.7"; + version = "5.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.0.7.tgz"; - sha512 = "T1So9pQiWBtjq+ki6HrilEDbV/YSxiorY05TjzjHbQtHsIZ1lJlLEIdN1YW9JVD2CrCRZgIPqeBIHwNZazDRcA=="; + url = "https://registry.npmjs.org/jsii/-/jsii-5.0.8.tgz"; + sha512 = "FQlEQX1o/v1CnkYsap7iPQH/L0QRzo8zv00L28qdcfAYuUGNlBc35q8G7G5zmrQfionVxDdpz00l8l+Fj6I2hA=="; }; }; "jsii-pacmak-1.81.0" = { @@ -45821,22 +45695,22 @@ let sha512 = "eb93UzJapapW+h87C3EgykVNqpqjuVzaUSlB3xgtOGmSOJIuL9kCfABYPujV6MVAC2d415H5mIeW/y65iGFMyg=="; }; }; - "jsii-rosetta-5.0.7" = { + "jsii-rosetta-5.0.8" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "5.0.7"; + version = "5.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.0.7.tgz"; - sha512 = "cJGoILr4jNnOIDtNY3LLldsZujmtEILOzwX7yHFu+sVcqlpyeT8VYd34hQwIh3D9HA9DqJh30thTqoQbRMdN+A=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.0.8.tgz"; + sha512 = "atv37GB6lhFJv88eXJT31zH4/dJ10Ygb6fCB1yoYDgopU9W3pErDw39verbAFgHGg4BTO7Bti/b/ewdWMoc3Pg=="; }; }; - "jsii-srcmak-0.1.907" = { + "jsii-srcmak-0.1.908" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.907"; + version = "0.1.908"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.907.tgz"; - sha512 = "RKYZUEWgiUZjJfUx1QcCXi8eW9UZ1m6XtfyAFOrqGILFqCi1dcKb93yWk57Q3F1I1X/8PPNskoY3gEt4sehq+g=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.908.tgz"; + sha512 = "u+BXVGLx3IaUt2VnuWlt3S3czSjc+agzORfn4ac5n1yIJpx2cZ8HLbdDgX9xF1nL7WINDjuS7wxApZb2aaByEw=="; }; }; "json-bigint-1.0.0" = { @@ -46208,13 +46082,13 @@ let sha512 = "ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="; }; }; - "json2jsii-0.3.328" = { + "json2jsii-0.3.336" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.3.328"; + version = "0.3.336"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.328.tgz"; - sha512 = "h3g/SLI93pW3+7EmOYip4NmoW3gQTd2NZFLCOPQ/V7zStvD+itWigJjSMooAlc+EnF3k8Dsm8/FOwp11KuvKEw=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.336.tgz"; + sha512 = "0Ha1T+sUQJ7gCiIiYGQzVQ7tGPYD8aTnU7uSKXE3KzD1B4SiUODyW/HyNakBK4R+k9YftZF4io7fJkeWXE9/Zw=="; }; }; "json3-3.2.6" = { @@ -47864,13 +47738,13 @@ let sha512 = "yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw=="; }; }; - "lighthouse-logger-1.3.0" = { + "lighthouse-logger-1.4.2" = { name = "lighthouse-logger"; packageName = "lighthouse-logger"; - version = "1.3.0"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz"; - sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; + url = "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz"; + sha512 = "gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g=="; }; }; "lightning-7.0.3" = { @@ -47900,6 +47774,15 @@ let sha512 = "vkjo1vor1WNAEE/CkU9MDCj6soOszsBmLrpqBD+EN5YT+7B9twp+xkETulgFCPyF/Nb7ftA7ijiMH9Wq2UP4ew=="; }; }; + "lightning-9.3.1" = { + name = "lightning"; + packageName = "lightning"; + version = "9.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/lightning/-/lightning-9.3.1.tgz"; + sha512 = "OhCJkbyaNsGV/i62BVDIRO443ZtYVRslfavpRkQH1MPZDRQf2toFiL2qErswbi1EN48Q5NQJ5/pmpGlIOcTfGg=="; + }; + }; "lightningcss-1.20.0" = { name = "lightningcss"; packageName = "lightningcss"; @@ -48251,6 +48134,15 @@ let sha512 = "8OhCO8o3bzbMzd1fTBSH95YDhx8e9v0xv4MnAl1UIMLkWpMY8EubBwtbLGwKcXumMMdLMUDXsfkKjwnlvtTMRw=="; }; }; + "ln-service-56.3.1" = { + name = "ln-service"; + packageName = "ln-service"; + version = "56.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-56.3.1.tgz"; + sha512 = "BnOaNOPn/j1/FdLC151MnlbR58EkCawAKM9c/nXte+PYtbtqsVD/4OuScrcbEZvoYdiynx7Ju2ev3UazM1oxIQ=="; + }; + }; "ln-sync-4.2.0" = { name = "ln-sync"; packageName = "ln-sync"; @@ -51555,13 +51447,13 @@ let sha512 = "5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA=="; }; }; - "mdast-util-mdx-jsx-2.1.2" = { + "mdast-util-mdx-jsx-2.1.4" = { name = "mdast-util-mdx-jsx"; packageName = "mdast-util-mdx-jsx"; - version = "2.1.2"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz"; - sha512 = "o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA=="; + url = "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz"; + sha512 = "DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA=="; }; }; "mdast-util-mdxjs-esm-1.3.1" = { @@ -52266,13 +52158,13 @@ let sha512 = "oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A=="; }; }; - "micromark-extension-gfm-2.0.2" = { + "micromark-extension-gfm-2.0.3" = { name = "micromark-extension-gfm"; packageName = "micromark-extension-gfm"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.2.tgz"; - sha512 = "oMBh++llCWHYftkP1NmeoQDHHlj3nsRYL3HBhjwBqm+CjSQ4l/v05XiQMTWqmYh4MLEVbq473qEi6S1wonCxcA=="; + url = "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz"; + sha512 = "vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ=="; }; }; "micromark-extension-gfm-autolink-literal-0.5.7" = { @@ -52374,22 +52266,22 @@ let sha512 = "9XlIUUVnYXHsFF2HZ9jby4h3npfX10S1coXTnV035QGPgrtNYQq3J6IfIvcCIUAJrrqBVi5BqA/LmaOMJqPwMQ=="; }; }; - "micromark-extension-mdx-expression-1.0.4" = { + "micromark-extension-mdx-expression-1.0.5" = { name = "micromark-extension-mdx-expression"; packageName = "micromark-extension-mdx-expression"; - version = "1.0.4"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz"; - sha512 = "TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw=="; + url = "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.5.tgz"; + sha512 = "/ruJEj+Qpgar/P+b6z0firNIbY5VMHFdL3MJDvsnVVY+RnecmGNpN7YUZhb51NfBtk7iQnNCl5xeb4E5cWxXvw=="; }; }; - "micromark-extension-mdx-jsx-1.0.3" = { + "micromark-extension-mdx-jsx-1.0.4" = { name = "micromark-extension-mdx-jsx"; packageName = "micromark-extension-mdx-jsx"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz"; - sha512 = "VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA=="; + url = "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.4.tgz"; + sha512 = "Jq4O738s2PvxJJSMZhV+y/7uq+pGI/ugQvHJBQelWpE3ECYvJMtF2duwfHQoAuUnIKSvg8b0dU1D+EXTAYE5ww=="; }; }; "micromark-extension-mdx-md-1.0.1" = { @@ -52401,22 +52293,22 @@ let sha512 = "7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA=="; }; }; - "micromark-extension-mdxjs-1.0.0" = { + "micromark-extension-mdxjs-1.0.1" = { name = "micromark-extension-mdxjs"; packageName = "micromark-extension-mdxjs"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz"; - sha512 = "TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ=="; + url = "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz"; + sha512 = "7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q=="; }; }; - "micromark-extension-mdxjs-esm-1.0.3" = { + "micromark-extension-mdxjs-esm-1.0.4" = { name = "micromark-extension-mdxjs-esm"; packageName = "micromark-extension-mdxjs-esm"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz"; - sha512 = "2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A=="; + url = "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.4.tgz"; + sha512 = "mmyCf6baCbLf+OHTCZdj+f8lDY8GBae4qhbffrJDqM1KltghsZz2k3nbvRfEwm301G62nhrlom9M9OheQwrssg=="; }; }; "micromark-factory-destination-1.0.0" = { @@ -52437,13 +52329,13 @@ let sha512 = "CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg=="; }; }; - "micromark-factory-mdx-expression-1.0.7" = { + "micromark-factory-mdx-expression-1.0.8" = { name = "micromark-factory-mdx-expression"; packageName = "micromark-factory-mdx-expression"; - version = "1.0.7"; + version = "1.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz"; - sha512 = "QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ=="; + url = "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.8.tgz"; + sha512 = "/GWj6h6bDFCDCkxOCb/xXpgKGonhBXEqMnhTThVo0nlIN/i8z6L6YrmRq+N91oerxY97fEz7vHSCSIcW7fGFhQ=="; }; }; "micromark-factory-space-1.0.0" = { @@ -52536,13 +52428,13 @@ let sha512 = "U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA=="; }; }; - "micromark-util-events-to-acorn-1.2.1" = { + "micromark-util-events-to-acorn-1.2.3" = { name = "micromark-util-events-to-acorn"; packageName = "micromark-util-events-to-acorn"; - version = "1.2.1"; + version = "1.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz"; - sha512 = "mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg=="; + url = "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz"; + sha512 = "ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w=="; }; }; "micromark-util-html-tag-name-1.1.0" = { @@ -52932,13 +52824,13 @@ let sha512 = "lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A=="; }; }; - "mini-css-extract-plugin-2.7.5" = { + "mini-css-extract-plugin-2.7.6" = { name = "mini-css-extract-plugin"; packageName = "mini-css-extract-plugin"; - version = "2.7.5"; + version = "2.7.6"; src = fetchurl { - url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz"; - sha512 = "9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ=="; + url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz"; + sha512 = "Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw=="; }; }; "mini-svg-data-uri-1.4.4" = { @@ -52959,13 +52851,13 @@ let sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA=="; }; }; - "miniflare-2.13.0" = { + "miniflare-3.0.0" = { name = "miniflare"; packageName = "miniflare"; - version = "2.13.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/miniflare/-/miniflare-2.13.0.tgz"; - sha512 = "ayNhVa4a6bZiOuHtrPmOt4BCYcmW1fBQ/+qGL85smq1m2OBBm3aUs6f4ISf38xH8tk+qewgmAywetyVtn6KHPw=="; + url = "https://registry.npmjs.org/miniflare/-/miniflare-3.0.0.tgz"; + sha512 = "CW8yS00pQCbq2o4K8drePzJBkE0heL9cCY/O8DcYJOHd4M0RVutjrp+LqUP4hfzweZ+LqrLo8+Rzy4cORisQoQ=="; }; }; "minilog-3.1.0" = { @@ -53247,6 +53139,15 @@ let sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; }; }; + "minipass-6.0.2" = { + name = "minipass"; + packageName = "minipass"; + version = "6.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz"; + sha512 = "MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w=="; + }; + }; "minipass-collect-1.0.2" = { name = "minipass-collect"; packageName = "minipass-collect"; @@ -53913,13 +53814,13 @@ let sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg=="; }; }; - "msgpackr-1.9.1" = { + "msgpackr-1.9.2" = { name = "msgpackr"; packageName = "msgpackr"; - version = "1.9.1"; + version = "1.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.1.tgz"; - sha512 = "jJdrNH8tzfCtT0rjPFryBXjRDQE7rqfLkah4/8B4gYa7NNZYFBcGxqWBtfQpGC+oYyBwlkj3fARk4aooKNPHxg=="; + url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.2.tgz"; + sha512 = "xtDgI3Xv0AAiZWLRGDchyzBwU6aq0rwJ+W+5Y4CZhEWtkl/hJtFFLc+3JtGTw7nz1yquxs7nL8q/yA2aqpflIQ=="; }; }; "msgpackr-extract-3.0.2" = { @@ -56623,15 +56524,6 @@ let sha512 = "I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA=="; }; }; - "npx-import-1.1.4" = { - name = "npx-import"; - packageName = "npx-import"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/npx-import/-/npx-import-1.1.4.tgz"; - sha512 = "3ShymTWOgqGyNlh5lMJAejLuIv3W1K3fbI5Ewc6YErZU3Sp0PqsNs8UIU1O8z5+KVl/Du5ag56Gza9vdorGEoA=="; - }; - }; "nrf-intel-hex-1.3.0" = { name = "nrf-intel-hex"; packageName = "nrf-intel-hex"; @@ -57767,13 +57659,13 @@ let sha512 = "EFTQ61/OUVhCeq78Y3rBpdKSuvgb0lwkU8nN4QTdcv0afc5MT7e4IVuZwgkMsgE993dmhbIhkxHFP3iTVJXWmw=="; }; }; - "openpgp-5.8.0" = { + "openpgp-5.9.0" = { name = "openpgp"; packageName = "openpgp"; - version = "5.8.0"; + version = "5.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/openpgp/-/openpgp-5.8.0.tgz"; - sha512 = "hq4+4s/vpjuwGgZSjplGp4j5FzSz+KwiFRiqMx+ZXr7VCK3CvTkktYilMTZMrf2vHsFH8aQ0596Lmn07HeKRmQ=="; + url = "https://registry.npmjs.org/openpgp/-/openpgp-5.9.0.tgz"; + sha512 = "wEI6TAinCAq8ZLZA4oZ3ZtJ2BhhHj+CiPCd8TzE7zCicr0V8tvG5UF76OtddLLOJcK63w3Aj3KiRd+VLMScirQ=="; }; }; "opentracing-0.14.7" = { @@ -58010,13 +57902,13 @@ let sha512 = "5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="; }; }; - "ora-6.3.0" = { + "ora-6.3.1" = { name = "ora"; packageName = "ora"; - version = "6.3.0"; + version = "6.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/ora/-/ora-6.3.0.tgz"; - sha512 = "1/D8uRFY0ay2kgBpmAwmSA404w4OoPVhHMqRqtjvrcK/dnzcEZxMJ+V4DUbyICu8IIVRclHcOf5wlD1tMY4GUQ=="; + url = "https://registry.npmjs.org/ora/-/ora-6.3.1.tgz"; + sha512 = "ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ=="; }; }; "oracledb-5.5.0" = { @@ -58811,6 +58703,15 @@ let sha512 = "aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA=="; }; }; + "pacote-15.2.0" = { + name = "pacote"; + packageName = "pacote"; + version = "15.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/pacote/-/pacote-15.2.0.tgz"; + sha512 = "rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA=="; + }; + }; "pad-0.0.5" = { name = "pad"; packageName = "pad"; @@ -59189,15 +59090,6 @@ let sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="; }; }; - "parse-package-name-1.0.0" = { - name = "parse-package-name"; - packageName = "parse-package-name"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-package-name/-/parse-package-name-1.0.0.tgz"; - sha512 = "kBeTUtcj+SkyfaW4+KBe0HtsloBJ/mKTPoxpVdA57GZiPerREsUWJOhVj9anXweFiJkm5y8FG1sxFZkZ0SN6wg=="; - }; - }; "parse-passwd-1.0.0" = { name = "parse-passwd"; packageName = "parse-passwd"; @@ -59765,13 +59657,13 @@ let sha512 = "4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ=="; }; }; - "path-scurry-1.8.0" = { + "path-scurry-1.9.2" = { name = "path-scurry"; packageName = "path-scurry"; - version = "1.8.0"; + version = "1.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.8.0.tgz"; - sha512 = "IjTrKseM404/UAWA8bBbL3Qp6O2wXkanuIE3seCxBH7ctRuvH1QRawy1N3nVDHGkdeZsjOsSe/8AQBL/VQCy2g=="; + url = "https://registry.npmjs.org/path-scurry/-/path-scurry-1.9.2.tgz"; + sha512 = "qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg=="; }; }; "path-to-glob-pattern-1.0.2" = { @@ -60044,31 +59936,40 @@ let sha512 = "vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw=="; }; }; - "pg-8.10.0" = { + "pg-8.11.0" = { name = "pg"; packageName = "pg"; - version = "8.10.0"; + version = "8.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg/-/pg-8.10.0.tgz"; - sha512 = "ke7o7qSTMb47iwzOSaZMfeR7xToFdkE71ifIipOAAaLIM0DYzfOAXlgFFmYUIE2BcJtvnVlGCID84ZzCegE8CQ=="; + url = "https://registry.npmjs.org/pg/-/pg-8.11.0.tgz"; + sha512 = "meLUVPn2TWgJyLmy7el3fQQVwft4gU5NGyvV0XbD41iU9Jbg8lCH4zexhIkihDzVHJStlt6r088G6/fWeNjhXA=="; }; }; - "pg-connection-string-2.5.0" = { + "pg-cloudflare-1.1.0" = { + name = "pg-cloudflare"; + packageName = "pg-cloudflare"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.0.tgz"; + sha512 = "tGM8/s6frwuAIyRcJ6nWcIvd3+3NmUKIs6OjviIm1HPPFEt5MzQDOTBQyhPWg/m0kCl95M6gA1JaIXtS8KovOA=="; + }; + }; + "pg-connection-string-2.6.0" = { name = "pg-connection-string"; packageName = "pg-connection-string"; - version = "2.5.0"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz"; - sha512 = "r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ=="; + url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.0.tgz"; + sha512 = "x14ibktcwlHKoHxx9X3uTVW9zIGR41ZB6QNhHb21OPNdCCO3NaRnpJuwKIQSR4u+Yqjx4HCvy7Hh7VSy1U4dGg=="; }; }; - "pg-cursor-2.9.0" = { + "pg-cursor-2.10.0" = { name = "pg-cursor"; packageName = "pg-cursor"; - version = "2.9.0"; + version = "2.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.9.0.tgz"; - sha512 = "tNX0FbHX6+hlhZVNbxhSQPDMNMFF6mOWQvwDobPROAFpilmXrZo3FozawqaBQKonFKpBloZZyWUL3Kkf5rLn6A=="; + url = "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.10.0.tgz"; + sha512 = "azXIjeIGBwlv/icYyuki5xJYfVSXeirGn4+mvAmYTB8SY0gS1xhluc2CENnq1JrcVSA81lWZgtqc1GAAhH/UuQ=="; }; }; "pg-int8-1.0.1" = { @@ -60107,13 +60008,13 @@ let sha512 = "M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q=="; }; }; - "pg-query-stream-4.4.0" = { + "pg-query-stream-4.5.0" = { name = "pg-query-stream"; packageName = "pg-query-stream"; - version = "4.4.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.4.0.tgz"; - sha512 = "shmP973/ruBw3exSmIEBW9iubWvyyZMzp6oWfcHgvlqAe4LtaRyVqPGxgnuorbRqksK03mjOC9PU+Ohz3b0GkQ=="; + url = "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.5.0.tgz"; + sha512 = "9slxIXMssuqKUVyCtuVU5/pr2+RLTKva5VE90PFzi6Mi8o3crbyZQvReoWJimgm9c1zY2+Jv3lvYYsqvaKmQ4g=="; }; }; "pg-types-1.13.0" = { @@ -61376,13 +61277,13 @@ let sha512 = "e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw=="; }; }; - "postcss-modules-local-by-default-4.0.0" = { + "postcss-modules-local-by-default-4.0.1" = { name = "postcss-modules-local-by-default"; packageName = "postcss-modules-local-by-default"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz"; - sha512 = "sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ=="; + url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.1.tgz"; + sha512 = "Zr/dB+IlXaEqdoslLHhhqecwj73vc3rDmOpsBNBEVk7P2aqAlz+Ijy0fFbU5Ie9PtreDOIgGa9MsLWakVGl+fA=="; }; }; "postcss-modules-scope-1.1.0" = { @@ -61853,13 +61754,13 @@ let sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; }; }; - "postcss-selector-parser-6.0.12" = { + "postcss-selector-parser-6.0.13" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; - version = "6.0.12"; + version = "6.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz"; - sha512 = "NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg=="; + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz"; + sha512 = "EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ=="; }; }; "postcss-selector-parser-6.0.2" = { @@ -64364,13 +64265,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.308" = { + "pyright-1.1.309" = { name = "pyright"; packageName = "pyright"; - version = "1.1.308"; + version = "1.1.309"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.308.tgz"; - sha512 = "1jwmLizrz58BloqxVlZc6X2dnBL95hiVfmeJSMOVavy7MDJabFLtQ/JpRP6iOUWjVwJ7JAHn8nSBH/5971WYKg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.309.tgz"; + sha512 = "0v65Hmn8BL585D4gLFqot0sJEVK5Nrih/4RtOpHKAowA6I+Je2Pa8mzXbPyiyiAhg7qAoBs7uwQlmM1GU5h1og=="; }; }; "q-1.1.2" = { @@ -64508,13 +64409,13 @@ let sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; }; }; - "qs-6.11.1" = { + "qs-6.11.2" = { name = "qs"; packageName = "qs"; - version = "6.11.1"; + version = "6.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz"; - sha512 = "0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ=="; + url = "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz"; + sha512 = "tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA=="; }; }; "qs-6.3.3" = { @@ -64769,31 +64670,31 @@ let sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g=="; }; }; - "quicktype-core-23.0.30" = { + "quicktype-core-23.0.36" = { name = "quicktype-core"; packageName = "quicktype-core"; - version = "23.0.30"; + version = "23.0.36"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-23.0.30.tgz"; - sha512 = "OpUSZz84i1GUL/1AVbb7URr21polZ3775QAiHaSjull0AQe13Yh5Sc5zEiH15nDr3cgc0ik4Rq3F0EdIZxLJQQ=="; + url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-23.0.36.tgz"; + sha512 = "MIaxvB8Tr0Lj5LHFq8yGxuzUpsN1t7t8J5fq4yPFDLIbCW7Sg548qG5s64bsSdAT+HQOhzb0wMZDNPQxT8eDZw=="; }; }; - "quicktype-graphql-input-23.0.30" = { + "quicktype-graphql-input-23.0.36" = { name = "quicktype-graphql-input"; packageName = "quicktype-graphql-input"; - version = "23.0.30"; + version = "23.0.36"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-23.0.30.tgz"; - sha512 = "PVkoqVyz+8eUzf60yN5zlE5+GG6QMIHSsru2EmV0VIEbUulDXuwlQIFQ3MRPVTuMBp8wcGMMgVRViVgVUcYZrQ=="; + url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-23.0.36.tgz"; + sha512 = "c0stTym3BFgf96YsVufsNctspS4STn+sj8zdJDGf9UxOI87ImG8o8G8wp7yCChuaCsyv6g2z1PPFjvpvNGkomA=="; }; }; - "quicktype-typescript-input-23.0.30" = { + "quicktype-typescript-input-23.0.36" = { name = "quicktype-typescript-input"; packageName = "quicktype-typescript-input"; - version = "23.0.30"; + version = "23.0.36"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-23.0.30.tgz"; - sha512 = "s7rI5HlLRdFaQ/x30WtPnxANzVHUW/z/JSpvHc3JvuHo3GX0ltnxEnPSm7XXGYheX2OUfy8Uq6awruTdqX6JZg=="; + url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-23.0.36.tgz"; + sha512 = "VVUtShRqJAZSjr6wRDpmwYiFfQLSuyO1wwXFPlQiCusH2nKVZ8k1GSo14J0nweu7imljhXN0yuaAZc1h7CKwGg=="; }; }; "quotation-1.1.3" = { @@ -65237,13 +65138,13 @@ let sha512 = "/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ=="; }; }; - "react-devtools-core-4.27.7" = { + "react-devtools-core-4.27.8" = { name = "react-devtools-core"; packageName = "react-devtools-core"; - version = "4.27.7"; + version = "4.27.8"; src = fetchurl { - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.27.7.tgz"; - sha512 = "12N0HrhCPbD76Z7SkyJdGdXdPGouUsgV6tlEsbSpAnLDO06tjXZP+irht4wPdYwJAJRQ85DxL48eQoz7UmrSuQ=="; + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.27.8.tgz"; + sha512 = "KwoH8/wN/+m5wTItLnsgVraGNmFrcTWR3k1VimP1HjtMMw4CNF+F5vg4S/0tzTEKIdpCi2R7mPNTC+/dswZMgw=="; }; }; "react-dom-16.14.0" = { @@ -65282,13 +65183,13 @@ let sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew=="; }; }; - "react-fast-compare-3.2.1" = { + "react-fast-compare-3.2.2" = { name = "react-fast-compare"; packageName = "react-fast-compare"; - version = "3.2.1"; + version = "3.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz"; - sha512 = "xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg=="; + url = "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz"; + sha512 = "nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ=="; }; }; "react-helmet-6.1.0" = { @@ -67109,13 +67010,13 @@ let sha512 = "xKRWl1NTBOKed0oEtCd8BUfH5m4s8WXxFFSoo7uUwx6GW/qdCy4zov5LfPyw7emantDmhfWn5PdIZgcbVcWMDQ=="; }; }; - "remark-parse-10.0.1" = { + "remark-parse-10.0.2" = { name = "remark-parse"; packageName = "remark-parse"; - version = "10.0.1"; + version = "10.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz"; - sha512 = "1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw=="; + url = "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz"; + sha512 = "3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw=="; }; }; "remark-parse-8.0.3" = { @@ -68234,13 +68135,13 @@ let sha512 = "Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og=="; }; }; - "rimraf-5.0.0" = { + "rimraf-5.0.1" = { name = "rimraf"; packageName = "rimraf"; - version = "5.0.0"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz"; - sha512 = "Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g=="; + url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.1.tgz"; + sha512 = "OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg=="; }; }; "ripemd160-2.0.2" = { @@ -68324,13 +68225,13 @@ let sha512 = "uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw=="; }; }; - "rollup-3.21.6" = { + "rollup-3.22.0" = { name = "rollup"; packageName = "rollup"; - version = "3.21.6"; + version = "3.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.21.6.tgz"; - sha512 = "SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.22.0.tgz"; + sha512 = "imsigcWor5Y/dC0rz2q0bBt9PabcL3TORry2hAa6O6BuMvY71bqHyfReAz5qyAqiQATD1m70qdntqBfBQjVWpQ=="; }; }; "rollup-plugin-inject-3.0.2" = { @@ -68477,6 +68378,15 @@ let sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="; }; }; + "run-async-3.0.0" = { + name = "run-async"; + packageName = "run-async"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz"; + sha512 = "540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q=="; + }; + }; "run-con-1.2.11" = { name = "run-con"; packageName = "run-con"; @@ -69188,15 +69098,6 @@ let sha512 = "b/ptP11hETwYWpeilHXXQiV5UJNJl7ZWWooKRE5eBIYWoom6dZ0SluCIdCtKycsMtZgKWE01/qAw6jblw1YVhg=="; }; }; - "semiver-1.1.0" = { - name = "semiver"; - packageName = "semiver"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/semiver/-/semiver-1.1.0.tgz"; - sha512 = "QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg=="; - }; - }; "semver-4.3.6" = { name = "semver"; packageName = "semver"; @@ -69377,6 +69278,15 @@ let sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; }; }; + "semver-7.5.1" = { + name = "semver"; + packageName = "semver"; + version = "7.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz"; + sha512 = "Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw=="; + }; + }; "semver-compare-1.0.0" = { name = "semver-compare"; packageName = "semver-compare"; @@ -70232,13 +70142,13 @@ let sha512 = "abgDPg1106vuZZOvw7cFwdCABddfJRz5akcCcchzTbhyhYnsG31y4AlZEgp315T7W3nQq5P4xeOm186ZiPVFzw=="; }; }; - "sigstore-1.5.0" = { + "sigstore-1.5.2" = { name = "sigstore"; packageName = "sigstore"; - version = "1.5.0"; + version = "1.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/sigstore/-/sigstore-1.5.0.tgz"; - sha512 = "i3nhvdobiPj8XrXNIggjeur6+A5iAQ4f+r1bR5SGitFJBbthy/6c7Fz0h+kY70Wua1FSMdDr/UEhXSVRXNpynw=="; + url = "https://registry.npmjs.org/sigstore/-/sigstore-1.5.2.tgz"; + sha512 = "X95v6xAAooVpn7PaB94TDmFeSO5SBfCtB1R23fvzr36WTfjtkiiyOeei979nbTjc8nzh6FSLeltQZuODsm1EjQ=="; }; }; "simple-concat-1.0.1" = { @@ -70799,15 +70709,6 @@ let sha512 = "HC5w5Olv2XZ0XJ4gOLGzzHEuOCfj3G0SmoW3jLHYYh34EVsIr3EkW9h6kgfW+K3TFEcmYy8JcPWe//KUkBp5jA=="; }; }; - "socket.io-4.4.1" = { - name = "socket.io"; - packageName = "socket.io"; - version = "4.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz"; - sha512 = "s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg=="; - }; - }; "socket.io-4.5.4" = { name = "socket.io"; packageName = "socket.io"; @@ -71915,14 +71816,13 @@ let sha512 = "i0UlWAzPlzX3B5XP2cYuhWQJsTtlMD6obOa1PgeEQ4DHEXUuyJkgv50I3isqZAP5oFc2T8OFvakmDh2W6I+YpA=="; }; }; - "sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" = { + "sqlite3-5.1.6" = { name = "sqlite3"; packageName = "sqlite3"; - version = "5.0.2"; - src = fetchgit { - url = "https://github.com/mapbox/node-sqlite3.git"; - rev = "918052b538b0effe6c4a44c74a16b2749c08a0d2"; - sha256 = "6950459a4c59b28b1126d52e67e722a5d1150fbacfeedb7a9dfa46778a168a04"; + version = "5.1.6"; + src = fetchurl { + url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.6.tgz"; + sha512 = "olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw=="; }; }; "sqlstring-2.3.1" = { @@ -72096,13 +71996,13 @@ let sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung=="; }; }; - "ssb-db2-7.1.0" = { + "ssb-db2-7.1.1" = { name = "ssb-db2"; packageName = "ssb-db2"; - version = "7.1.0"; + version = "7.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-7.1.0.tgz"; - sha512 = "fkwtccGDgWBeGvHkgEvXogG6/ilKvUwYwmpGtIfT1sAv1uuzOLSH8HafQFjTMy3/38Ba7YRt+mYMWKhDi3nqpQ=="; + url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-7.1.1.tgz"; + sha512 = "mRnqDY2XTTdgT0ILsWPcOWL2/WdAPlYwBEhXYm1vtnPeS2da8RcTSMIOzBAp/bAcnfJWMgUOgRNupQnbiLjMCg=="; }; }; "ssb-ebt-5.6.7" = { @@ -73932,13 +73832,13 @@ let sha512 = "XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg=="; }; }; - "style-loader-3.3.2" = { + "style-loader-3.3.3" = { name = "style-loader"; packageName = "style-loader"; - version = "3.3.2"; + version = "3.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/style-loader/-/style-loader-3.3.2.tgz"; - sha512 = "RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw=="; + url = "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz"; + sha512 = "53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw=="; }; }; "style-search-0.1.0" = { @@ -74968,13 +74868,13 @@ let sha512 = "jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw=="; }; }; - "tar-6.1.14" = { + "tar-6.1.15" = { name = "tar"; packageName = "tar"; - version = "6.1.14"; + version = "6.1.15"; src = fetchurl { - url = "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz"; - sha512 = "piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw=="; + url = "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz"; + sha512 = "/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A=="; }; }; "tar-fs-1.16.3" = { @@ -75319,13 +75219,13 @@ let sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; }; }; - "terser-5.17.3" = { + "terser-5.17.4" = { name = "terser"; packageName = "terser"; - version = "5.17.3"; + version = "5.17.4"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.17.3.tgz"; - sha512 = "AudpAZKmZHkG9jueayypz4duuCFJMMNGRMwaPvQKWfxKedh8Z2x3OCoDqIIi1xx5+iwx1u6Au8XQcc9Lke65Yg=="; + url = "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz"; + sha512 = "jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw=="; }; }; "terser-webpack-plugin-1.4.5" = { @@ -75337,13 +75237,13 @@ let sha512 = "04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw=="; }; }; - "terser-webpack-plugin-5.3.8" = { + "terser-webpack-plugin-5.3.9" = { name = "terser-webpack-plugin"; packageName = "terser-webpack-plugin"; - version = "5.3.8"; + version = "5.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz"; - sha512 = "WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg=="; + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz"; + sha512 = "ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA=="; }; }; "test-exclude-6.0.0" = { @@ -75463,13 +75363,13 @@ let sha512 = "5hijX1V/4CrgrkqCqtwP32LSbLPSF/10nneI+2doPHKx7AdCgR52HqWZo0AQEPv4fvOqEOMLJ0c9pL6t/jUDwg=="; }; }; - "thelounge-4.3.1" = { + "thelounge-4.4.0" = { name = "thelounge"; packageName = "thelounge"; - version = "4.3.1"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge/-/thelounge-4.3.1.tgz"; - sha512 = "sWitbCj5+Jr+HY8nN2VE01OVeZSaTGyQK76whBgt2LyBih57yQBjZYR3BshPBiUgGb/GMbI+j112myKU9YUh/g=="; + url = "https://registry.npmjs.org/thelounge/-/thelounge-4.4.0.tgz"; + sha512 = "CmXgaESg3RXg3y/Zjyr2lSKWC6OtYwusGjxXDkUOHFmuFweqtAHKrHasH7u3flPuYNsdGHamdlj29UAgGlzgsg=="; }; }; "then-fs-2.0.0" = { @@ -77002,13 +76902,13 @@ let sha512 = "tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA=="; }; }; - "tslib-2.5.0" = { + "tslib-2.5.2" = { name = "tslib"; packageName = "tslib"; - version = "2.5.0"; + version = "2.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz"; - sha512 = "336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="; + url = "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz"; + sha512 = "5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA=="; }; }; "tslint-5.20.1" = { @@ -77443,6 +77343,15 @@ let sha512 = "hmAPf1datm+gt3c2mvu0sJyhFy6lTkIGf0GzyaZWxRLnabQfPUqg6tF95RPg6sLxKI7nFLGdFxBcf2/7+GXI+A=="; }; }; + "type-fest-3.11.0" = { + name = "type-fest"; + packageName = "type-fest"; + version = "3.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/type-fest/-/type-fest-3.11.0.tgz"; + sha512 = "JaPw5U9ixP0XcpUbQoVSbxSDcK/K4nww20C3kjm9yE6cDRRhptU28AH60VWf9ltXmCrIfIbtt9J+2OUk2Uqiaw=="; + }; + }; "type-fest-3.5.1" = { name = "type-fest"; packageName = "type-fest"; @@ -77659,13 +77568,13 @@ let sha512 = "cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw=="; }; }; - "typescript-5.1.0-dev.20230512" = { + "typescript-5.2.0-dev.20230520" = { name = "typescript"; packageName = "typescript"; - version = "5.1.0-dev.20230512"; + version = "5.2.0-dev.20230520"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.1.0-dev.20230512.tgz"; - sha512 = "b0Naij+j/zOXP1SQzlvqlOh60vHqwsGoifrXLOHZ4KSSnbi+0herOKPJ4TTp+tV2K7P/UddA3T67kyt870Y07A=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.2.0-dev.20230520.tgz"; + sha512 = "NW7cFujxqf68PzyiXhpvlSoemTKw/9sAYwW4OKtTZ1/LBKUse8L0sRNrt/4tqo4JqSjHsbHNBv6qUfn3ox1Dtw=="; }; }; "typescript-auto-import-cache-0.2.1" = { @@ -77785,13 +77694,13 @@ let sha512 = "veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g=="; }; }; - "ua-parser-js-1.0.2" = { + "ua-parser-js-1.0.33" = { name = "ua-parser-js"; packageName = "ua-parser-js"; - version = "1.0.2"; + version = "1.0.33"; src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.2.tgz"; - sha512 = "00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg=="; + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz"; + sha512 = "RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ=="; }; }; "ua-parser-js-1.0.35" = { @@ -78154,13 +78063,13 @@ let sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw=="; }; }; - "undici-5.20.0" = { + "undici-5.22.1" = { name = "undici"; packageName = "undici"; - version = "5.20.0"; + version = "5.22.1"; src = fetchurl { - url = "https://registry.npmjs.org/undici/-/undici-5.20.0.tgz"; - sha512 = "J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g=="; + url = "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz"; + sha512 = "Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw=="; }; }; "unfetch-3.0.0" = { @@ -79423,15 +79332,6 @@ let sha512 = "yIQdxJpgkPamPPAPuGdS7Q548rLhny42tg8d4vyTNzFqvOnwqrgHXvgehT09U7fwrzxi3RxCiXjoNUNnNOlQ8A=="; }; }; - "urlpattern-polyfill-4.0.3" = { - name = "urlpattern-polyfill"; - packageName = "urlpattern-polyfill"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-4.0.3.tgz"; - sha512 = "DOE84vZT2fEcl9gqCUTcnAw5ZY5Id55ikUcziSUntuEFL3pRvavg5kwDmTEUJkeCHInTlV/HexFomgYnzO5kdQ=="; - }; - }; "urlpattern-polyfill-8.0.2" = { name = "urlpattern-polyfill"; packageName = "urlpattern-polyfill"; @@ -80728,13 +80628,13 @@ let sha512 = "NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA=="; }; }; - "vite-4.3.5" = { + "vite-4.3.8" = { name = "vite"; packageName = "vite"; - version = "4.3.5"; + version = "4.3.8"; src = fetchurl { - url = "https://registry.npmjs.org/vite/-/vite-4.3.5.tgz"; - sha512 = "0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA=="; + url = "https://registry.npmjs.org/vite/-/vite-4.3.8.tgz"; + sha512 = "uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ=="; }; }; "vite-node-0.28.5" = { @@ -80791,13 +80691,13 @@ let sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="; }; }; - "vm2-3.9.17" = { + "vm2-3.9.19" = { name = "vm2"; packageName = "vm2"; - version = "3.9.17"; + version = "3.9.19"; src = fetchurl { - url = "https://registry.npmjs.org/vm2/-/vm2-3.9.17.tgz"; - sha512 = "AqwtCnZ/ERcX+AVj9vUsphY56YANXxRuqMb7GsDtAr0m0PcQX3u0Aj3KWiXM0YAHy7i6JEeHrwOnwXbGYgRpAw=="; + url = "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz"; + sha512 = "J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg=="; }; }; "voc-1.2.0" = { @@ -81421,22 +81321,22 @@ let sha512 = "DE+24W1d3oanGqq7yna4ddOKXmVzjECgku2ddMcm7OS9Bp9QOblMHT88PzKiCc7npGiHf5+mTfrEW1JVIBbA2A=="; }; }; - "vue-component-meta-1.6.4" = { + "vue-component-meta-1.6.5" = { name = "vue-component-meta"; packageName = "vue-component-meta"; - version = "1.6.4"; + version = "1.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/vue-component-meta/-/vue-component-meta-1.6.4.tgz"; - sha512 = "NITO336OMWzQXbR7B4Mjrl2CRubSEC/aIZr9d4KQxZQVcl3EKuTUzJgbHTynVO4Cue+/QQPp7QA8FiVRy2XZjA=="; + url = "https://registry.npmjs.org/vue-component-meta/-/vue-component-meta-1.6.5.tgz"; + sha512 = "pps5DTFz9JiqidXMrPCf/Qt8sngQYzkU73CB4zLh5dsPlAMSm742+/zOR4MgKxuaZSPAwDFazSRhRCkpkywmCw=="; }; }; - "vue-component-type-helpers-1.6.4" = { + "vue-component-type-helpers-1.6.5" = { name = "vue-component-type-helpers"; packageName = "vue-component-type-helpers"; - version = "1.6.4"; + version = "1.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/vue-component-type-helpers/-/vue-component-type-helpers-1.6.4.tgz"; - sha512 = "T0m+vtQIsAsKdy5H/2y5UQtDlpVBSw0EtEVb1Nqbm1Ni9NZlJMqIxtQCDX31+o6k9gnJWkNNP0YZ8USdIw14OQ=="; + url = "https://registry.npmjs.org/vue-component-type-helpers/-/vue-component-type-helpers-1.6.5.tgz"; + sha512 = "iGdlqtajmiqed8ptURKPJ/Olz0/mwripVZszg6tygfZSIL9kYFPJTNY6+Q6OjWGznl2L06vxG5HvNvAnWrnzbg=="; }; }; "vue-eslint-parser-2.0.3" = { @@ -81466,13 +81366,13 @@ let sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg=="; }; }; - "vue-eslint-parser-9.2.1" = { + "vue-eslint-parser-9.3.0" = { name = "vue-eslint-parser"; packageName = "vue-eslint-parser"; - version = "9.2.1"; + version = "9.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz"; - sha512 = "tPOex4n6jit4E7h68auOEbDMwE58XiP4dylfaVTCOVCouR45g+QFDBjgIdEU52EXJxKyjgh91dLfN2rxUcV0bQ=="; + url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz"; + sha512 = "48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ=="; }; }; "vue-hot-reload-api-2.3.4" = { @@ -81997,13 +81897,13 @@ let sha512 = "gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g=="; }; }; - "webpack-5.82.1" = { + "webpack-5.83.1" = { name = "webpack"; packageName = "webpack"; - version = "5.82.1"; + version = "5.83.1"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz"; - sha512 = "C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.83.1.tgz"; + sha512 = "TNsG9jDScbNuB+Lb/3+vYolPplCS3bbEaJf+Bj0Gw4DhP3ioAflBb1flcRt9zsWITyvOhM96wMQNRWlSX52DgA=="; }; }; "webpack-bundle-analyzer-3.9.0" = { @@ -82906,6 +82806,15 @@ let sha512 = "P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg=="; }; }; + "workerd-1.20230512.0" = { + name = "workerd"; + packageName = "workerd"; + version = "1.20230512.0"; + src = fetchurl { + url = "https://registry.npmjs.org/workerd/-/workerd-1.20230512.0.tgz"; + sha512 = "rueIsVxLTVlqWyaSVHlDKFZRLkDAMmUhxiKXE+guMR3fauwPPsuzs/VKWUqX2sqR2UKF+1JxrUtH9OvaIqoHhA=="; + }; + }; "workerpool-6.2.1" = { name = "workerpool"; packageName = "workerpool"; @@ -84401,22 +84310,22 @@ let sha512 = "9Ni+uXWeFix9+1t7s1q40zZdbcpdi/OwgD4N4cVaqI+bppPciOOXQ/RSggannwZu8m8zrSWELn6/93G7308jgg=="; }; }; - "yeoman-environment-3.16.2" = { + "yeoman-environment-3.18.3" = { name = "yeoman-environment"; packageName = "yeoman-environment"; - version = "3.16.2"; + version = "3.18.3"; src = fetchurl { - url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.16.2.tgz"; - sha512 = "QJuZhQmSBm0ZdTkk5TyafvJldZtFZWXj9/i+7yFpSxRGuQuTrJ1B8daXNCvQeVidVhcAxzGV9l57W/iWzP6+AQ=="; + url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.18.3.tgz"; + sha512 = "OF5C87D7QUDOe4Lo2QucPnqFz0V3dNvC7D5Up6kVxUZKrY3LtNM7JIFAb/rhfEp/lKlZ28Olrb/BYFTDHcJ2og=="; }; }; - "yeoman-generator-5.8.0" = { + "yeoman-generator-5.9.0" = { name = "yeoman-generator"; packageName = "yeoman-generator"; - version = "5.8.0"; + version = "5.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/yeoman-generator/-/yeoman-generator-5.8.0.tgz"; - sha512 = "dsrwFn9/c2/MOe80sa2nKfbZd/GaPTgmmehdgkFifs1VN/I7qPsW2xcBfvSkHNGK+PZly7uHyH8kaVYSFNUDhQ=="; + url = "https://registry.npmjs.org/yeoman-generator/-/yeoman-generator-5.9.0.tgz"; + sha512 = "sN1e01Db4fdd8P/n/yYvizfy77HdbwzvXmPxps9Gwz2D24slegrkSn+qyj+0nmZhtFwGX2i/cH29QDrvAFT9Aw=="; }; }; "ylru-1.3.2" = { @@ -84482,13 +84391,13 @@ let sha512 = "avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA=="; }; }; - "youch-2.2.2" = { + "youch-3.2.3" = { name = "youch"; packageName = "youch"; - version = "2.2.2"; + version = "3.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/youch/-/youch-2.2.2.tgz"; - sha512 = "/FaCeG3GkuJwaMR34GHVg0l8jCbafZLHiFowSjqLlqhC6OMyf2tPJBu8UirF7/NI9X/R5ai4QfEKUCOxMAGxZQ=="; + url = "https://registry.npmjs.org/youch/-/youch-3.2.3.tgz"; + sha512 = "ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw=="; }; }; "yurnalist-2.1.0" = { @@ -84617,13 +84526,13 @@ let sha512 = "m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw=="; }; }; - "zwave-js-10.20.0" = { + "zwave-js-10.21.0" = { name = "zwave-js"; packageName = "zwave-js"; - version = "10.20.0"; + version = "10.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.20.0.tgz"; - sha512 = "tDNfW483DShyDW/tq3CHfO+4MdZ8nCXxlLuthIcabqM3ZX3MTa7EbFTTrKn+YdAf3IhYloaZ1Y2rgzWRr2WlXA=="; + url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.21.0.tgz"; + sha512 = "K0+5RN1JJjZ25kiAlUBSZKWhRDypV3xB90lN2bxyxwpVFRz1Vl4rCePATCu3WeJDKR/QDvV8QG2zXbEE/tV40A=="; }; }; "zwitch-1.0.5" = { @@ -84659,15 +84568,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "16.0.1"; + version = "16.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-16.0.1.tgz"; - sha512 = "0vIAcq/S+3NXXN4/gBQFVGaxLUQ0zhRxxHQQuiT7GGII73UySuhwvaFB1BEhYG5HVJjRrP1F0ZYbvsvrmFzfXQ=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-16.0.2.tgz"; + sha512 = "D2LnNUSLFmfpOTIppGBxvA9kXvXUtoOtprQjwxE/LOtw9rmOZv0fNCbLG2m5GMxSsTs2qfGV04bTzme0Lp8HPQ=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1600.1" - sources."@angular-devkit/core-16.0.1" - sources."@angular-devkit/schematics-16.0.1" + sources."@angular-devkit/architect-0.1600.2" + sources."@angular-devkit/core-16.0.2" + sources."@angular-devkit/schematics-16.0.2" sources."@gar/promisify-1.1.3" (sources."@isaacs/cliui-8.0.2" // { dependencies = [ @@ -84688,7 +84597,7 @@ in sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.2" sources."@pkgjs/parseargs-0.11.0" - sources."@schematics/angular-16.0.1" + sources."@schematics/angular-16.0.2" sources."@sigstore/protobuf-specs-0.1.0" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" @@ -84720,11 +84629,11 @@ in sources."braces-3.0.2" sources."buffer-5.7.1" sources."builtins-5.0.1" - (sources."cacache-17.1.0" // { + (sources."cacache-17.1.3" // { dependencies = [ sources."@npmcli/fs-3.1.0" sources."brace-expansion-2.0.1" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."minimatch-9.0.0" sources."unique-filename-3.0.0" sources."unique-slug-4.0.0" @@ -84809,7 +84718,7 @@ in sources."inquirer-8.2.4" sources."ip-2.0.0" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -84913,7 +84822,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - (sources."path-scurry-1.8.0" // { + (sources."path-scurry-1.9.2" // { dependencies = [ sources."lru-cache-9.1.1" ]; @@ -84926,7 +84835,7 @@ in (sources."read-package-json-6.0.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."minimatch-9.0.0" ]; }) @@ -84952,7 +84861,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - (sources."sigstore-1.5.0" // { + (sources."sigstore-1.5.2" // { dependencies = [ sources."make-fetch-happen-11.1.1" sources."minipass-fetch-3.0.3" @@ -84975,7 +84884,7 @@ in sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."symbol-observable-4.0.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ (sources."fs-minipass-2.1.0" // { dependencies = [ @@ -84987,7 +84896,7 @@ in sources."through-2.3.8" sources."tmp-0.0.33" sources."to-regex-range-5.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" (sources."tuf-js-1.1.6" // { dependencies = [ sources."make-fetch-happen-11.1.1" @@ -85049,7 +84958,7 @@ in sha512 = "HG/9nWk+b9Ol9KgBz4Osg1iuq4DGI75GGF7Kvre0GT5rxksoGiJRK96Vd5NLyS7qOhAgX8SgXZ//5USF/fqsQA=="; }; dependencies = [ - sources."@astrojs/compiler-1.4.1" + sources."@astrojs/compiler-1.4.2" sources."@emmetio/abbreviation-2.3.3" sources."@emmetio/css-abbreviation-2.1.8" sources."@emmetio/scanner-1.0.4" @@ -85136,7 +85045,7 @@ in sources."synckit-0.8.5" sources."titleize-3.0.0" sources."to-regex-range-5.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."untildify-4.0.0" sources."vscode-css-languageservice-6.2.5" sources."vscode-html-languageservice-5.0.5" @@ -85215,7 +85124,7 @@ in (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -85258,7 +85167,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.30001486" + sources."caniuse-lite-1.0.30001488" sources."canvas-2.11.2" (sources."chalk-4.1.2" // { dependencies = [ @@ -85328,7 +85237,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -85359,12 +85268,13 @@ in sources."function-bind-1.1.1" sources."gauge-3.0.2" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."globals-11.12.0" sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -85486,7 +85396,7 @@ in sources."proper-lockfile-4.1.2" sources."psl-1.9.0" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."querystringify-2.2.0" (sources."raw-body-2.5.2" // { dependencies = [ @@ -85503,7 +85413,7 @@ in sources."run-async-2.4.1" (sources."rxjs-7.8.1" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) sources."safe-buffer-5.1.2" @@ -85533,7 +85443,7 @@ in sources."strip-ansi-6.0.1" sources."supports-color-5.5.0" sources."symbol-tree-3.2.4" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."mkdirp-1.0.4" sources."yallist-4.0.0" @@ -85634,25 +85544,25 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/minimist-1.2.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/normalize-package-data-2.4.1" sources."JSONStream-1.3.5" sources."acorn-8.8.2" @@ -85715,7 +85625,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" sources."is-plain-obj-1.1.0" @@ -85808,7 +85718,7 @@ in sources."through2-4.0.2" sources."trim-newlines-3.0.1" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-fest-0.18.1" sources."typescript-5.0.4" sources."universalify-2.0.0" @@ -85905,10 +85815,10 @@ in "@forge/cli" = nodeEnv.buildNodePackage { name = "_at_forge_slash_cli"; packageName = "@forge/cli"; - version = "6.9.1"; + version = "6.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli/-/cli-6.9.1.tgz"; - sha512 = "bJII4mR9TzvhbEuiEs0amAsIwx93os6qAR5MeOGXCwB6JyNSHmqJjfBIYff4fs1UCAXuQDx/DRAHP1D6teyY+A=="; + url = "https://registry.npmjs.org/@forge/cli/-/cli-6.10.0.tgz"; + sha512 = "N6GYlUC5rlQFwgFKnuW1lKaGFRM7lSLSipcZPfGMRjqJhpUBM0wXBrRzOH8zMLfTXYd5/XsAdvhjGMVAbzDBhw=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -85959,27 +85869,27 @@ in sources."@babel/types-7.21.5" sources."@colors/colors-1.5.0" sources."@discoveryjs/json-ext-0.5.7" - sources."@forge/api-2.15.2" + sources."@forge/api-2.15.3" (sources."@forge/auth-0.0.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) sources."@forge/babel-plugin-transform-ui-1.1.2" - sources."@forge/bundler-4.6.7" - sources."@forge/cli-shared-3.11.1" + sources."@forge/bundler-4.7.0" + sources."@forge/cli-shared-3.11.2" sources."@forge/csp-2.1.3" - (sources."@forge/egress-1.2.0" // { + (sources."@forge/egress-1.2.1" // { dependencies = [ sources."brace-expansion-2.0.1" sources."minimatch-5.1.6" ]; }) - sources."@forge/lint-3.3.1" - sources."@forge/manifest-4.11.0" - sources."@forge/runtime-4.3.3" - sources."@forge/storage-1.5.1" - sources."@forge/tunnel-3.3.6" + sources."@forge/lint-3.4.0" + sources."@forge/manifest-4.12.0" + sources."@forge/runtime-4.3.4" + sources."@forge/storage-1.5.2" + sources."@forge/tunnel-3.4.0" sources."@forge/util-1.2.3" sources."@jridgewell/gen-mapping-0.3.3" sources."@jridgewell/resolve-uri-3.1.0" @@ -85997,24 +85907,24 @@ 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-internal/tracing-7.51.2" // { + (sources."@sentry-internal/tracing-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/core-7.51.2" // { + (sources."@sentry/core-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.51.2" // { + (sources."@sentry/node-7.52.1" // { dependencies = [ sources."cookie-0.4.2" sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.51.2" - (sources."@sentry/utils-7.51.2" // { + sources."@sentry/types-7.52.1" + (sources."@sentry/utils-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -86030,15 +85940,15 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/express-4.17.17" - sources."@types/express-serve-static-core-4.17.34" + sources."@types/express-serve-static-core-4.17.35" sources."@types/html-minifier-terser-6.1.0" sources."@types/http-cache-semantics-4.0.1" sources."@types/http-proxy-1.17.11" sources."@types/json-schema-7.0.11" sources."@types/keyv-3.1.4" sources."@types/mime-1.3.2" - sources."@types/node-20.1.3" - sources."@types/node-fetch-2.6.3" + sources."@types/node-20.2.1" + sources."@types/node-fetch-2.6.4" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/responselike-1.0.0" @@ -86049,15 +85959,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.59.5" - (sources."@typescript-eslint/typescript-estree-5.59.5" // { + sources."@typescript-eslint/types-5.59.6" + (sources."@typescript-eslint/typescript-estree-5.59.6" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) - sources."@typescript-eslint/visitor-keys-5.59.5" + sources."@typescript-eslint/visitor-keys-5.59.6" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -86151,6 +86061,7 @@ in (sources."body-parser-1.20.1" // { dependencies = [ sources."debug-2.6.9" + sources."iconv-lite-0.4.24" sources."ms-2.0.0" sources."qs-6.11.0" ]; @@ -86189,7 +86100,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.30001486" + sources."caniuse-lite-1.0.30001488" sources."case-1.6.3" sources."chai-4.3.7" sources."chainsaw-0.1.0" @@ -86272,7 +86183,14 @@ in }) sources."create-hash-1.2.0" sources."create-hmac-1.1.7" - sources."cross-fetch-3.1.5" + (sources."cross-fetch-3.1.6" // { + dependencies = [ + sources."node-fetch-2.6.11" + sources."tr46-0.0.3" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" + ]; + }) sources."cross-spawn-7.0.3" sources."crypto-browserify-3.12.0" sources."css-select-4.3.0" @@ -86323,7 +86241,7 @@ in }) sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -86333,11 +86251,7 @@ in sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" - (sources."encoding-0.1.13" // { - dependencies = [ - sources."iconv-lite-0.6.3" - ]; - }) + sources."encoding-0.1.13" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.14.0" sources."entities-2.2.0" @@ -86390,6 +86304,7 @@ in }) (sources."external-editor-3.1.0" // { dependencies = [ + sources."iconv-lite-0.4.24" sources."tmp-0.0.33" ]; }) @@ -86437,7 +86352,7 @@ in sources."get-caller-file-2.0.5" sources."get-folder-size-2.0.1" sources."get-func-name-2.0.0" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" sources."get-symbol-description-1.0.0" sources."github-from-package-0.0.0" @@ -86507,7 +86422,7 @@ in sources."http2-wrapper-1.0.3" sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" - sources."iconv-lite-0.4.24" + sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."ignore-5.2.4" sources."ignore-walk-3.0.4" @@ -86533,7 +86448,7 @@ in sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" @@ -86684,7 +86599,7 @@ in (sources."node-abi-3.40.0" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -86821,7 +86736,7 @@ in }) sources."pump-3.0.0" sources."punycode-1.4.1" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."querystring-0.2.0" sources."querystring-browser-1.0.4" sources."querystringify-2.2.0" @@ -86830,7 +86745,11 @@ in sources."randombytes-2.1.0" sources."randomfill-1.0.4" sources."range-parser-1.2.1" - sources."raw-body-2.5.1" + (sources."raw-body-2.5.1" // { + dependencies = [ + sources."iconv-lite-0.4.24" + ]; + }) sources."rc-1.2.8" (sources."readable-stream-3.6.2" // { dependencies = [ @@ -86943,12 +86862,12 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.17.3" // { + (sources."terser-5.17.4" // { dependencies = [ sources."commander-2.20.3" ]; }) - (sources."terser-webpack-plugin-5.3.8" // { + (sources."terser-webpack-plugin-5.3.9" // { dependencies = [ sources."schema-utils-3.1.2" ]; @@ -86978,11 +86897,11 @@ in dependencies = [ sources."chalk-4.1.2" sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" (sources."tsutils-3.21.0" // { dependencies = [ sources."tslib-1.14.1" @@ -87145,7 +87064,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -87487,7 +87406,7 @@ in sources."ip-regex-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" @@ -88043,60 +87962,60 @@ in dependencies = [ (sources."@azure/abort-controller-1.1.0" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-auth-1.4.0" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-client-1.7.2" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-http-2.3.2" // { dependencies = [ sources."@azure/core-tracing-1.0.0-preview.13" sources."form-data-4.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-lro-2.5.3" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-paging-1.5.0" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-rest-pipeline-1.10.3" // { dependencies = [ sources."form-data-4.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-tracing-1.0.1" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/core-util-1.3.2" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/identity-2.1.0" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/logger-1.0.4" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@azure/msal-browser-2.37.0" // { @@ -88113,7 +88032,7 @@ in (sources."@azure/storage-blob-12.11.0" // { dependencies = [ sources."@azure/core-tracing-1.0.0-preview.13" - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) sources."@babel/code-frame-7.21.4" @@ -88194,29 +88113,29 @@ in sources."@types/lodash-4.14.194" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/node-fetch-2.6.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/tunnel-0.0.3" - (sources."@vue/compiler-core-3.3.2" // { + (sources."@vue/compiler-core-3.3.4" // { dependencies = [ sources."@babel/parser-7.21.8" ]; }) - sources."@vue/compiler-dom-3.3.2" - (sources."@vue/compiler-sfc-3.3.2" // { + sources."@vue/compiler-dom-3.3.4" + (sources."@vue/compiler-sfc-3.3.4" // { dependencies = [ sources."@babel/parser-7.21.8" ]; }) - sources."@vue/compiler-ssr-3.3.2" - (sources."@vue/reactivity-transform-3.3.2" // { + sources."@vue/compiler-ssr-3.3.4" + (sources."@vue/reactivity-transform-3.3.4" // { dependencies = [ sources."@babel/parser-7.21.8" ]; }) - sources."@vue/shared-3.3.2" + sources."@vue/shared-3.3.4" sources."@yarnpkg/lockfile-1.0.2" sources."@zkochan/cmd-shim-5.4.1" sources."agent-base-6.0.2" @@ -88448,7 +88367,7 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-2.1.0" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-es2016-keyword-1.0.0" sources."is-extglob-2.1.1" @@ -88756,7 +88675,7 @@ in sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -89012,24 +88931,24 @@ in sources."strip-ansi-7.0.1" sources."supports-color-7.2.0" sources."supports-hyperlinks-3.0.0" - sources."type-fest-3.10.0" + sources."type-fest-3.11.0" ]; }) sources."@shopify/plugin-did-you-mean-3.45.4" sources."@sindresorhus/is-5.3.0" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@szmarczak/http-timer-5.0.1" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -89040,7 +88959,7 @@ in sources."@types/glob-8.1.0" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-5.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/prop-types-15.7.5" sources."@types/react-18.2.6" sources."@types/scheduler-0.16.3" @@ -89128,9 +89047,9 @@ in sources."crc-32-1.2.2" sources."crc32-stream-4.0.2" sources."create-require-1.1.1" - (sources."cross-fetch-3.1.5" // { + (sources."cross-fetch-3.1.6" // { dependencies = [ - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.11" ]; }) (sources."cross-spawn-6.0.5" // { @@ -89259,7 +89178,7 @@ in dependencies = [ (sources."ansi-escapes-6.2.0" // { dependencies = [ - sources."type-fest-3.10.0" + sources."type-fest-3.11.0" ]; }) sources."ansi-regex-6.0.1" @@ -89291,7 +89210,7 @@ in sources."isarray-1.0.0" sources."iserror-0.0.2" sources."isexe-2.0.0" - sources."jake-10.8.5" + sources."jake-10.8.6" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."json-buffer-3.0.1" @@ -89409,7 +89328,7 @@ in sources."quick-lru-5.1.1" sources."rc-1.2.8" sources."react-18.2.0" - (sources."react-devtools-core-4.27.7" // { + (sources."react-devtools-core-4.27.8" // { dependencies = [ sources."utf-8-validate-5.0.10" sources."ws-7.5.9" @@ -89440,7 +89359,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."scheduler-0.23.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."semver-regex-4.0.5" sources."sentence-case-3.0.4" sources."shebang-command-1.2.0" @@ -89507,7 +89426,7 @@ in sources."tree-kill-1.2.2" sources."ts-error-1.0.6" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."type-fest-0.21.3" sources."typescript-5.0.4" @@ -89622,24 +89541,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -89678,7 +89597,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -89706,7 +89625,7 @@ in sources."postcss-js-4.0.1" sources."postcss-load-config-4.0.1" sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -89727,7 +89646,7 @@ in sources."arg-4.1.3" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -89764,24 +89683,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -89820,7 +89739,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -89849,7 +89768,7 @@ in sources."postcss-js-4.0.1" sources."postcss-load-config-4.0.1" sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -89870,7 +89789,7 @@ in sources."arg-4.1.3" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -89925,24 +89844,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -89981,7 +89900,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -90009,7 +89928,7 @@ in sources."postcss-js-4.0.1" sources."postcss-load-config-4.0.1" sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -90030,7 +89949,7 @@ in sources."arg-4.1.3" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -90067,24 +89986,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -90123,7 +90042,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -90155,7 +90074,7 @@ in sources."postcss-load-config-4.0.1" (sources."postcss-nested-6.0.1" // { dependencies = [ - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" ]; }) sources."postcss-selector-parser-6.0.10" @@ -90171,7 +90090,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."tailwindcss-3.3.2" // { dependencies = [ - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" ]; }) sources."thenify-3.3.1" @@ -90183,7 +90102,7 @@ in sources."arg-4.1.3" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -90221,7 +90140,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."accepts-1.3.8" sources."ansi-styles-4.3.0" @@ -90230,7 +90149,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1377.0" + sources."aws-sdk-2.1381.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -90315,7 +90234,7 @@ in sources."fresh-0.5.2" sources."function-bind-1.1.1" sources."generic-pool-3.8.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" sources."gopd-1.0.1" sources."got-11.8.6" @@ -90328,6 +90247,7 @@ in sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hash.js-1.1.7" @@ -90489,10 +90409,10 @@ in "@volar/vue-language-server" = nodeEnv.buildNodePackage { name = "_at_volar_slash_vue-language-server"; packageName = "@volar/vue-language-server"; - version = "1.6.4"; + version = "1.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/@volar/vue-language-server/-/vue-language-server-1.6.4.tgz"; - sha512 = "pbofkojt4ja8yrvwoEWLdcXaHapL0SVaX3hu/dHU9OPakwJJ5J3CnwO266x2+/EeD+FSRgX4ZRGCfXigcd9P+Q=="; + url = "https://registry.npmjs.org/@volar/vue-language-server/-/vue-language-server-1.6.5.tgz"; + sha512 = "+/kSxBAkZbeVBePoG2qRSvCkVIslk1dNlU5wQHAcbzOFTi7pEQR6C+kjoj94I+vGXVGMFfDwOYm07sPsd8dM6w=="; }; dependencies = [ sources."@babel/parser-7.21.8" @@ -90513,8 +90433,8 @@ in sources."@volar/language-server-1.4.1" sources."@volar/language-service-1.4.1" sources."@volar/source-map-1.4.1" - sources."@volar/vue-language-core-1.6.4" - sources."@volar/vue-language-service-1.6.4" + sources."@volar/vue-language-core-1.6.5" + sources."@volar/vue-language-service-1.6.5" (sources."@vscode/emmet-helper-2.8.8" // { dependencies = [ sources."jsonc-parser-2.3.1" @@ -90522,13 +90442,13 @@ in ]; }) sources."@vscode/l10n-0.0.11" - sources."@vue/compiler-core-3.3.2" - sources."@vue/compiler-dom-3.3.2" - sources."@vue/compiler-sfc-3.3.2" - sources."@vue/compiler-ssr-3.3.2" - sources."@vue/reactivity-3.3.2" - sources."@vue/reactivity-transform-3.3.2" - sources."@vue/shared-3.3.2" + sources."@vue/compiler-core-3.3.4" + sources."@vue/compiler-dom-3.3.4" + sources."@vue/compiler-sfc-3.3.4" + sources."@vue/compiler-ssr-3.3.4" + sources."@vue/reactivity-3.3.4" + sources."@vue/reactivity-transform-3.3.4" + sources."@vue/shared-3.3.4" sources."acorn-7.4.1" sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" @@ -90538,8 +90458,9 @@ in sources."emmet-2.4.4" sources."estree-walker-2.0.2" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."he-1.2.0" @@ -90558,7 +90479,7 @@ in sources."pug-lexer-5.0.1" sources."pug-parser-6.0.0" sources."request-light-0.7.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."source-map-js-1.0.2" sources."token-stream-1.0.0" sources."typesafe-path-0.2.2" @@ -90586,8 +90507,8 @@ in sources."vscode-languageserver-types-3.17.3" sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" - sources."vue-component-meta-1.6.4" - sources."vue-component-type-helpers-1.6.4" + sources."vue-component-meta-1.6.5" + sources."vue-component-type-helpers-1.6.5" sources."vue-template-compiler-2.7.14" sources."yallist-4.0.0" ]; @@ -90837,7 +90758,7 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -90851,10 +90772,10 @@ in }) sources."@vue/cli-ui-addon-webpack-5.0.8" sources."@vue/cli-ui-addon-widgets-5.0.8" - sources."@vue/compiler-core-3.3.2" - sources."@vue/compiler-dom-3.3.2" + sources."@vue/compiler-core-3.3.4" + sources."@vue/compiler-dom-3.3.4" sources."@vue/compiler-sfc-2.7.14" - sources."@vue/shared-3.3.2" + sources."@vue/shared-3.3.4" sources."accepts-1.3.8" sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" @@ -90946,7 +90867,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -91056,7 +90977,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -91186,7 +91107,7 @@ in sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-proxy-2.1.0" sources."get-stream-4.1.0" sources."get-value-2.0.6" @@ -91214,6 +91135,7 @@ in sources."growly-1.3.0" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" @@ -91247,7 +91169,7 @@ in sources."is-accessor-descriptor-1.0.0" sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-docker-2.2.1" @@ -91273,7 +91195,7 @@ in sources."isobject-3.0.1" sources."isurl-1.0.0" sources."iterall-1.3.0" - (sources."jake-10.8.5" // { + (sources."jake-10.8.6" // { dependencies = [ sources."async-3.2.4" ]; @@ -91513,7 +91435,7 @@ in sources."commander-2.20.3" ]; }) - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."send-0.18.0" // { dependencies = [ (sources."debug-2.6.9" // { @@ -91658,7 +91580,7 @@ in sources."toidentifier-1.0.1" sources."tr46-0.0.3" sources."trim-repeated-1.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."type-fest-0.6.0" sources."type-is-1.6.18" @@ -91961,10 +91883,10 @@ in sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" sources."@isaacs/cliui-8.0.2" - sources."@npmcli/config-6.1.6" + sources."@npmcli/config-6.1.7" (sources."@npmcli/map-workspaces-3.0.4" // { dependencies = [ - sources."glob-10.2.3" + sources."glob-10.2.5" sources."minimatch-9.0.0" ]; }) @@ -91991,7 +91913,7 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.0" - sources."@types/node-18.16.8" + sources."@types/node-18.16.13" sources."@types/normalize-package-data-2.4.1" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" @@ -92137,13 +92059,13 @@ in sources."indent-string-5.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-4.1.0" + sources."ini-4.1.1" sources."is-alphabetical-2.0.1" sources."is-alphanumerical-2.0.1" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" sources."is-ci-3.0.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-decimal-2.0.1" sources."is-empty-1.2.0" sources."is-fullwidth-code-point-3.0.0" @@ -92191,7 +92113,7 @@ in sources."mdast-util-gfm-task-list-item-1.0.2" sources."mdast-util-mdx-2.0.1" sources."mdast-util-mdx-expression-1.3.2" - sources."mdast-util-mdx-jsx-2.1.2" + sources."mdast-util-mdx-jsx-2.1.4" sources."mdast-util-mdxjs-esm-1.3.1" sources."mdast-util-phrasing-3.0.1" sources."mdast-util-to-markdown-1.5.0" @@ -92201,21 +92123,21 @@ in sources."micromark-3.1.0" sources."micromark-core-commonmark-1.0.6" sources."micromark-extension-frontmatter-1.1.0" - sources."micromark-extension-gfm-2.0.2" + sources."micromark-extension-gfm-2.0.3" sources."micromark-extension-gfm-autolink-literal-1.0.4" sources."micromark-extension-gfm-footnote-1.1.0" sources."micromark-extension-gfm-strikethrough-1.0.5" sources."micromark-extension-gfm-table-1.0.6" sources."micromark-extension-gfm-tagfilter-1.0.2" sources."micromark-extension-gfm-task-list-item-1.0.4" - sources."micromark-extension-mdx-expression-1.0.4" - sources."micromark-extension-mdx-jsx-1.0.3" + sources."micromark-extension-mdx-expression-1.0.5" + sources."micromark-extension-mdx-jsx-1.0.4" sources."micromark-extension-mdx-md-1.0.1" - sources."micromark-extension-mdxjs-1.0.0" - sources."micromark-extension-mdxjs-esm-1.0.3" + sources."micromark-extension-mdxjs-1.0.1" + sources."micromark-extension-mdxjs-esm-1.0.4" sources."micromark-factory-destination-1.0.0" sources."micromark-factory-label-1.0.2" - sources."micromark-factory-mdx-expression-1.0.7" + sources."micromark-factory-mdx-expression-1.0.8" sources."micromark-factory-space-1.0.0" sources."micromark-factory-title-1.0.2" sources."micromark-factory-whitespace-1.0.0" @@ -92226,7 +92148,7 @@ in sources."micromark-util-decode-numeric-character-reference-1.0.0" sources."micromark-util-decode-string-1.0.2" sources."micromark-util-encode-1.0.1" - sources."micromark-util-events-to-acorn-1.2.1" + sources."micromark-util-events-to-acorn-1.2.3" sources."micromark-util-html-tag-name-1.1.0" sources."micromark-util-normalize-identifier-1.0.0" sources."micromark-util-resolve-all-1.0.0" @@ -92239,7 +92161,7 @@ in sources."minimatch-5.1.6" sources."minimist-1.2.8" sources."minimist-options-4.1.0" - sources."minipass-5.0.0" + sources."minipass-6.0.2" sources."mri-1.2.0" sources."ms-2.1.2" sources."nlcst-is-literal-2.1.1" @@ -92272,7 +92194,7 @@ in sources."parse5-6.0.1" sources."path-exists-5.0.0" sources."path-key-3.1.1" - (sources."path-scurry-1.8.0" // { + (sources."path-scurry-1.9.2" // { dependencies = [ sources."lru-cache-9.1.1" ]; @@ -92321,7 +92243,7 @@ in sources."remark-gfm-3.0.1" sources."remark-mdx-2.0.0" sources."remark-message-control-7.1.1" - sources."remark-parse-10.0.1" + sources."remark-parse-10.0.2" sources."remark-retext-5.0.1" sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" @@ -92330,7 +92252,7 @@ in sources."retext-profanities-7.2.2" sources."sade-1.8.1" sources."safe-buffer-5.2.1" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -92387,10 +92309,9 @@ in sources."to-vfile-7.2.4" sources."trim-newlines-4.1.1" sources."trough-2.1.0" - sources."type-fest-3.10.0" + sources."type-fest-3.11.0" sources."typedarray-0.0.6" sources."typedarray-to-buffer-3.1.5" - sources."typescript-5.0.4" sources."unherit-3.0.1" (sources."unified-10.1.2" // { dependencies = [ @@ -92536,7 +92457,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -92546,7 +92467,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.392" + sources."electron-to-chromium-1.4.402" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -92577,10 +92498,10 @@ in sources."homedir-polyfill-1.0.3" sources."ini-1.3.8" sources."is-3.3.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-windows-1.0.2" sources."isexe-2.0.0" - (sources."jake-10.8.5" // { + (sources."jake-10.8.6" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -92849,7 +92770,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-5.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -92934,8 +92855,8 @@ in }; dependencies = [ sources."browserslist-4.21.5" - sources."caniuse-lite-1.0.30001486" - sources."electron-to-chromium-1.4.392" + sources."caniuse-lite-1.0.30001488" + sources."electron-to-chromium-1.4.402" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.6" @@ -92976,7 +92897,7 @@ in sources."node-fetch-2.6.11" sources."parse-github-url-1.0.2" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."source-map-0.6.1" sources."tr46-0.0.3" sources."uglify-js-3.17.4" @@ -93005,7 +92926,7 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/yauzl-2.10.0" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" @@ -93015,7 +92936,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.1377.0" // { + (sources."aws-sdk-2.1381.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -93096,7 +93017,7 @@ in ]; }) sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" sources."get-uri-3.0.2" sources."glob-7.2.3" @@ -93104,6 +93025,7 @@ in sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."htmlparser2-8.0.2" @@ -93196,7 +93118,7 @@ in sources."tmp-0.0.33" sources."toidentifier-1.0.1" sources."tr46-0.0.3" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-check-0.3.2" sources."type-fest-0.21.3" (sources."unbzip2-stream-1.4.3" // { @@ -93211,7 +93133,7 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."uuid-8.3.2" - sources."vm2-3.9.17" + sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -93239,10 +93161,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.79.1"; + version = "2.80.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.79.1.tgz"; - sha512 = "N6intzdRFqrHC+O3Apty34RiTev2+bzvRtUbehVd5IyAmTvLsgE/jlhPUIJV2POSAK+bKOV+ZWEp9qMOj1hq8A=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.80.0.tgz"; + sha512 = "SKMZ/sGlNmFV37Lk40HHe4QJ2hJZmD0PrkScBmkr33xzEqjyKhN3jIHC4PYqTUeUK/qYemq3Y5OpXKQuWTCoKA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -93393,7 +93315,7 @@ in sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-decimal-1.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -93453,7 +93375,7 @@ in sources."nice-try-1.0.5" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."normalize-url-4.5.1" @@ -93678,12 +93600,13 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "15.7.1"; + version = "15.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.7.1.tgz"; - sha512 = "nASej4av6+UoVx5M9YDgF2T/FWcjnVK/V8k/unLKq96vmC2WtxSozV/6v2t1IIps3CUaVHLY8p7XfpSKKk2+mw=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-15.8.1.tgz"; + sha512 = "9ZHZ5hz7xa3XMBLgZTTec8Yq6RS6zA3BiFw7PrdsvjrMM7PU9ewsJKsUwcFa9aY1pKJZWcdnh8o3NvSqyfEJ0w=="; }; dependencies = [ + sources."@alexbosworth/blockchain-1.2.1" (sources."@alexbosworth/caporal-1.4.4" // { dependencies = [ sources."colorette-1.4.0" @@ -93730,10 +93653,10 @@ in sources."@types/caseless-0.12.2" sources."@types/connect-3.4.35" sources."@types/express-4.17.17" - sources."@types/express-serve-static-core-4.17.34" + sources."@types/express-serve-static-core-4.17.35" sources."@types/long-4.0.2" sources."@types/mime-1.3.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/request-2.48.8" @@ -93744,7 +93667,7 @@ in sources."@types/ws-8.5.4" sources."abort-controller-3.0.0" sources."accepts-1.3.8" - (sources."agent-base-7.0.1" // { + (sources."agent-base-7.0.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -93792,7 +93715,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."cbor-8.1.0" + sources."cbor-9.0.0" (sources."chalk-1.1.3" // { dependencies = [ sources."ansi-regex-2.1.1" @@ -93873,9 +93796,10 @@ in sources."function-bind-1.1.1" sources."gauge-1.2.7" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" (sources."goldengate-12.0.5" // { dependencies = [ + sources."cbor-8.1.0" sources."colorette-2.0.19" sources."ln-service-54.10.5" sources."ln-sync-4.3.2" @@ -93894,6 +93818,7 @@ in ]; }) sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" (sources."hash-base-3.1.0" // { @@ -93908,11 +93833,10 @@ in sources."ieee754-1.2.1" sources."import-lazy-4.0.0" sources."inherits-2.0.4" - sources."ini-4.1.0" - (sources."inquirer-9.2.2" // { + sources."ini-4.1.1" + (sources."inquirer-9.2.3" // { dependencies = [ sources."ansi-escapes-4.3.2" - sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" sources."chalk-5.2.0" sources."cli-cursor-3.1.0" @@ -93925,15 +93849,10 @@ in sources."mute-stream-1.0.0" sources."onetime-5.1.2" sources."restore-cursor-3.1.0" - sources."strip-ansi-7.0.1" + sources."run-async-3.0.0" sources."tmp-0.0.33" sources."type-fest-0.21.3" - (sources."wrap-ansi-6.2.0" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."strip-ansi-6.0.1" - ]; - }) + sources."wrap-ansi-6.2.0" ]; }) sources."invoices-2.2.3" @@ -93963,18 +93882,42 @@ in sources."@grpc/grpc-js-1.8.12" sources."@grpc/proto-loader-0.7.5" sources."@types/node-18.15.0" + sources."cbor-8.1.0" ]; }) - sources."ln-accounting-7.0.1" - (sources."ln-service-56.3.0" // { + (sources."ln-accounting-7.0.1" // { dependencies = [ sources."@grpc/grpc-js-1.8.14" sources."@types/node-18.16.3" + sources."cbor-8.1.0" sources."lightning-9.3.0" + sources."ln-service-56.3.0" + sources."type-fest-3.9.0" + ]; + }) + (sources."ln-service-56.3.1" // { + dependencies = [ + sources."@grpc/grpc-js-1.8.14" + sources."@grpc/proto-loader-0.7.7" + sources."@types/node-20.1.2" + sources."cbor-8.1.0" + sources."cliui-8.0.1" + sources."lightning-9.3.1" + sources."type-fest-3.10.0" + sources."yargs-17.7.2" + sources."yargs-parser-21.1.1" + ]; + }) + (sources."ln-sync-5.2.0" // { + dependencies = [ + sources."@grpc/grpc-js-1.8.14" + sources."@types/node-18.16.3" + sources."cbor-8.1.0" + sources."lightning-9.3.0" + sources."ln-service-56.3.0" sources."type-fest-3.9.0" ]; }) - sources."ln-sync-5.2.0" (sources."ln-telegram-4.6.1" // { dependencies = [ sources."@grammyjs/types-2.12.1" @@ -93985,6 +93928,7 @@ in sources."@types/express-4.17.15" sources."@types/node-18.11.18" sources."body-parser-1.20.1" + sources."cbor-8.1.0" sources."colorette-2.0.19" sources."debug-4.3.4" (sources."goldengate-12.0.2" // { @@ -94087,7 +94031,16 @@ in sources."os-shim-0.1.3" sources."os-tmpdir-1.0.2" sources."p2tr-1.3.3" - sources."paid-services-5.0.4" + (sources."paid-services-5.0.4" // { + dependencies = [ + sources."@grpc/grpc-js-1.8.14" + sources."@types/node-18.16.3" + sources."cbor-8.1.0" + sources."lightning-9.3.0" + sources."ln-service-56.3.0" + sources."type-fest-3.9.0" + ]; + }) sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."pinkie-2.0.4" @@ -94099,6 +94052,7 @@ in sources."@types/express-4.17.15" sources."@types/node-18.11.18" sources."body-parser-1.20.1" + sources."cbor-8.1.0" sources."lightning-7.0.3" sources."ln-service-54.9.0" sources."raw-body-2.5.1" @@ -94187,13 +94141,14 @@ in sources."tr46-0.0.3" sources."triple-beam-1.3.0" sources."truncate-utf8-bytes-1.0.2" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tweetnacl-1.0.3" sources."tweetnacl-util-0.15.1" sources."type-fest-3.6.1" sources."type-is-1.6.18" sources."typedarray-0.0.6" sources."typeforce-1.18.0" + sources."typescript-5.0.4" sources."uint8array-tools-0.0.7" sources."unpipe-1.0.0" sources."uri-js-4.4.1" @@ -94243,10 +94198,10 @@ in bash-language-server = nodeEnv.buildNodePackage { name = "bash-language-server"; packageName = "bash-language-server"; - version = "4.9.1"; + version = "4.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.9.1.tgz"; - sha512 = "2W09QiXguGH5i9yvW6tYd28DnLlLIpf0FeUfN8yrYD0O0DDm6qwvqu7bfOmxkO2AnWeCJ/EY3lv6b+Zc7FQc1w=="; + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.9.2.tgz"; + sha512 = "WchUA3WdUbgocLSJddbmECbkfHxp7hNFbFh7rLaPbqVsL9506HZYumlOQq1fcPGss1iTshJtQYyPzNsPV3XZag=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -94266,7 +94221,7 @@ in sources."is-number-7.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."node-fetch-2.6.9" + sources."node-fetch-2.6.11" sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" sources."reusify-1.0.4" @@ -94377,7 +94332,7 @@ in sources."inherits-2.0.4" sources."intersect-1.0.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-finite-1.1.0" sources."is-plain-obj-1.1.0" sources."is-utf8-0.2.1" @@ -94553,10 +94508,11 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-assigned-identifiers-1.2.0" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."gopd-1.0.1" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."hash-base-3.1.0" // { @@ -94576,7 +94532,7 @@ in sources."is-arguments-1.1.1" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-generator-function-1.0.10" sources."is-typed-array-1.1.10" sources."isarray-1.0.0" @@ -94682,16 +94638,16 @@ in browser-sync = nodeEnv.buildNodePackage { name = "browser-sync"; packageName = "browser-sync"; - version = "2.29.1"; + version = "2.29.3"; src = fetchurl { - url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.29.1.tgz"; - sha512 = "WXy9HMJVQaNUTPjmai330E2fnDA6W84l/vBILGkYu9yHXIpWw1gJYjdQWDfEhLFljYUHNTN9jM3GCej2T55m+g=="; + url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.29.3.tgz"; + sha512 = "NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg=="; }; dependencies = [ sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -94705,13 +94661,11 @@ in sources."binary-extensions-2.2.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browser-sync-client-2.29.1" - sources."browser-sync-ui-2.29.1" + sources."browser-sync-client-2.29.3" + sources."browser-sync-ui-2.29.3" sources."bs-recipes-1.3.4" - sources."bs-snippet-injector-2.0.1" sources."bufferutil-4.0.7" sources."bytes-3.1.2" - sources."call-bind-1.0.2" sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."cliui-7.0.4" @@ -94755,14 +94709,10 @@ in sources."fresh-0.5.2" sources."fs-extra-3.0.1" sources."fsevents-2.3.2" - sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" sources."glob-parent-5.1.2" sources."graceful-fs-4.2.11" - sources."has-1.0.3" sources."has-flag-4.0.0" - sources."has-symbols-1.0.3" (sources."http-errors-2.0.0" // { dependencies = [ sources."statuses-2.0.1" @@ -94800,14 +94750,12 @@ in sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.3" sources."on-finished-2.3.0" sources."openurl-1.1.1" sources."opn-5.3.0" sources."parseurl-1.3.3" sources."picomatch-2.3.1" sources."portscanner-2.2.0" - sources."qs-6.11.1" sources."range-parser-1.2.1" sources."raw-body-2.5.2" sources."readdirp-3.6.0" @@ -94846,7 +94794,6 @@ in sources."serve-static-1.13.2" sources."server-destroy-1.0.1" sources."setprototypeof-1.2.0" - sources."side-channel-1.0.4" sources."socket.io-4.6.1" sources."socket.io-adapter-2.5.2" sources."socket.io-client-4.6.1" @@ -95078,7 +95025,7 @@ in sources."fresh-0.5.2" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."getpass-0.1.7" sources."glob-6.0.4" sources."har-schema-2.0.0" @@ -95086,6 +95033,7 @@ in sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."hash-base-3.1.0" // { @@ -95105,7 +95053,7 @@ in sources."ipaddr.js-1.9.1" sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-expression-4.0.0" sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-1.1.0" @@ -95253,7 +95201,7 @@ in sources."safe-buffer-5.1.2" sources."safe-json-stringify-1.2.0" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."send-0.18.0" // { dependencies = [ (sources."debug-2.6.9" // { @@ -95368,7 +95316,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -95511,7 +95459,7 @@ in sources."ip-set-1.0.2" sources."ipaddr.js-2.0.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-finite-1.1.0" sources."is-typedarray-1.0.0" sources."is-utf8-0.2.1" @@ -96018,7 +95966,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" sources."is-ci-1.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" @@ -96464,10 +96412,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.2.32"; + version = "2.2.38"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.32.tgz"; - sha512 = "6BK6DZhtg+vr9O8aBHHDJWVuwwE2Lt8+Rtd2UFAjYMNPMjTJSqAwWU8m4RsOWERg1EdV221l13mg2frHwUYXnA=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.2.38.tgz"; + sha512 = "wVvPDmbLJa6fZSP88P1WvrWyKd3w8LBqcoXDtldjDRQ0hz9WIzEPsAP3/JrVkCZ3pFF/zPO0ppTULMRkuhbTfA=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -96489,7 +96437,7 @@ in sources."@octokit/request-error-2.1.0" sources."@octokit/rest-18.12.0" sources."@octokit/types-6.41.0" - sources."@types/node-14.18.46" + sources."@types/node-16.18.31" sources."@types/triple-beam-1.3.2" sources."@xmldom/xmldom-0.8.7" sources."aggregate-error-3.1.0" @@ -96523,8 +96471,8 @@ in sources."buffer-5.7.1" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.7.59" - sources."cdk8s-plus-25-2.7.26" + sources."cdk8s-2.7.71" + sources."cdk8s-plus-25-2.7.34" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" @@ -96552,7 +96500,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.2.21" + sources."constructs-10.2.29" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -96570,6 +96518,11 @@ in sources."dir-glob-3.0.1" sources."dot-case-3.0.4" sources."dotenv-16.0.3" + (sources."downlevel-dts-0.11.0" // { + dependencies = [ + sources."typescript-5.2.0-dev.20230520" + ]; + }) sources."emoji-regex-8.0.0" sources."enabled-2.0.0" sources."encoding-0.1.13" @@ -96603,6 +96556,7 @@ in ]; }) sources."fs.realpath-1.0.0" + sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" sources."glob-7.2.3" sources."glob-parent-5.1.2" @@ -96610,6 +96564,7 @@ in sources."graceful-fs-4.2.11" sources."graphql-16.6.0" sources."graphql-tag-2.12.6" + sources."has-1.0.3" sources."has-flag-4.0.0" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" @@ -96618,7 +96573,9 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."inquirer-8.2.5" + sources."interpret-1.4.0" sources."is-arrayish-0.3.2" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -96652,14 +96609,22 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.907" // { + (sources."jsii-srcmak-0.1.908" // { dependencies = [ + sources."cliui-8.0.1" sources."fs-extra-9.1.0" + (sources."jsii-5.0.8" // { + dependencies = [ + sources."yargs-17.7.2" + ]; + }) + sources."typescript-5.0.4" + sources."yargs-parser-21.1.1" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.3.328" + sources."json2jsii-0.3.336" sources."jsonfile-6.1.0" sources."kuler-2.0.0" sources."locate-path-5.0.0" @@ -96700,14 +96665,17 @@ in sources."p-try-2.2.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" + sources."path-parse-1.0.7" sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."punycode-2.3.0" sources."queue-microtask-1.2.3" sources."readable-stream-3.6.2" + sources."rechoir-0.6.2" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" + sources."resolve-1.22.3" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rfdc-1.3.0" @@ -96719,13 +96687,14 @@ in sources."safe-json-stringify-1.2.0" sources."safe-stable-stringify-2.4.3" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."semver-intersect-1.4.0" // { dependencies = [ sources."semver-5.7.1" ]; }) sources."set-blocking-2.0.0" + sources."shelljs-0.8.5" sources."signal-exit-3.0.7" sources."simple-swizzle-0.2.2" sources."slash-3.0.0" @@ -96745,6 +96714,7 @@ in sources."strip-json-comments-3.1.1" sources."supports-color-7.2.0" sources."supports-hyperlinks-2.3.0" + sources."supports-preserve-symlinks-flag-1.0.0" sources."table-6.8.1" sources."terminal-link-2.1.1" sources."text-hex-1.0.0" @@ -96753,7 +96723,7 @@ in sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."triple-beam-1.3.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-fest-0.21.3" sources."typescript-3.9.10" sources."universal-user-agent-6.0.0" @@ -96945,21 +96915,21 @@ in ]; }) sources."@sinclair/typebox-0.25.24" - sources."@sinonjs/commons-2.0.0" - sources."@sinonjs/fake-timers-10.0.2" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@sinonjs/commons-3.0.0" + sources."@sinonjs/fake-timers-10.2.0" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" @@ -96972,7 +96942,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/prettier-2.7.2" sources."@types/prop-types-15.7.5" sources."@types/react-18.2.6" @@ -97017,7 +96987,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."case-1.6.3" sources."cdktf-0.16.1" (sources."chalk-4.1.2" // { @@ -97036,7 +97006,7 @@ in sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" sources."cli-truncate-2.1.0" - sources."cliui-7.0.4" + sources."cliui-6.0.0" sources."clone-2.1.2" sources."co-4.6.0" sources."code-excerpt-3.0.0" @@ -97054,7 +97024,7 @@ in sources."color-name-1.1.3" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.2.21" + sources."constructs-10.2.29" sources."convert-source-map-1.9.0" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" @@ -97077,10 +97047,10 @@ in sources."diff-sequences-29.4.3" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.1.0-dev.20230512" + sources."typescript-5.2.0-dev.20230520" ]; }) - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emittery-0.13.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -97115,7 +97085,7 @@ in sources."functions-have-names-1.2.3" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-package-type-0.1.0" sources."get-stream-6.0.1" sources."github-from-package-0.0.0" @@ -97135,6 +97105,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."html-escaper-2.0.2" @@ -97150,11 +97121,7 @@ in sources."ini-1.3.8" (sources."ink-3.2.0" // { dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" sources."type-fest-0.12.0" - sources."wrap-ansi-6.2.0" ]; }) sources."ink-select-input-4.2.2" @@ -97172,7 +97139,7 @@ in sources."ci-info-2.0.0" ]; }) - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" @@ -97263,13 +97230,13 @@ in sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."jsesc-2.5.2" - (sources."jsii-5.0.7" // { - dependencies = [ - sources."@jsii/check-node-1.80.0" - ]; - }) + sources."jsii-5.0.8" (sources."jsii-pacmak-1.81.0" // { dependencies = [ + sources."ansi-styles-4.3.0" + sources."cliui-7.0.4" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."escape-string-regexp-4.0.0" sources."fs-extra-10.1.0" sources."jsii-1.81.0" @@ -97277,48 +97244,35 @@ in sources."jsonfile-6.1.0" sources."typescript-3.9.10" sources."universalify-2.0.0" + sources."wrap-ansi-7.0.0" + sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" ]; }) (sources."jsii-reflect-1.81.0" // { dependencies = [ + sources."ansi-styles-4.3.0" + sources."cliui-7.0.4" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."fs-extra-10.1.0" sources."jsonfile-6.1.0" sources."universalify-2.0.0" + sources."wrap-ansi-7.0.0" + sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-rosetta-5.0.7" // { + sources."jsii-rosetta-5.0.8" + (sources."jsii-srcmak-0.1.908" // { dependencies = [ - sources."@jsii/check-node-1.80.0" - ]; - }) - (sources."jsii-srcmak-0.1.907" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" sources."fs-extra-9.1.0" - (sources."jsii-1.81.0" // { - dependencies = [ - sources."fs-extra-10.1.0" - sources."yargs-16.2.0" - ]; - }) sources."jsonfile-6.1.0" - sources."typescript-3.9.10" sources."universalify-2.0.0" - sources."wrap-ansi-6.2.0" - (sources."yargs-15.4.1" // { - dependencies = [ - sources."cliui-6.0.0" - sources."y18n-4.0.3" - sources."yargs-parser-18.1.3" - ]; - }) - sources."yargs-parser-20.2.9" + sources."yargs-15.4.1" + sources."yargs-parser-18.1.3" ]; }) sources."json-parse-even-better-errors-2.3.1" @@ -97389,10 +97343,10 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - (sources."path-scurry-1.8.0" // { + (sources."path-scurry-1.9.2" // { dependencies = [ sources."lru-cache-9.1.1" - sources."minipass-5.0.0" + sources."minipass-6.0.2" ]; }) sources."picocolors-1.0.0" @@ -97413,7 +97367,7 @@ in sources."queue-microtask-1.2.3" sources."rc-1.2.8" sources."react-17.0.2" - sources."react-devtools-core-4.27.7" + sources."react-devtools-core-4.27.8" sources."react-is-18.2.0" sources."react-reconciler-0.26.2" sources."readable-stream-3.6.2" @@ -97435,7 +97389,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."scheduler-0.20.2" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."semver-intersect-1.4.0" // { dependencies = [ sources."semver-5.7.1" @@ -97501,7 +97455,7 @@ in sources."tr46-0.0.3" sources."ts-jest-29.1.0" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."type-detect-4.0.8" sources."type-fest-0.21.3" @@ -97524,7 +97478,7 @@ in sources."which-typed-array-1.1.9" sources."widest-line-3.1.0" sources."workerpool-6.4.0" - (sources."wrap-ansi-7.0.0" // { + (sources."wrap-ansi-6.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" @@ -97537,11 +97491,16 @@ in sources."xml-js-1.6.11" sources."xmlbuilder-15.1.1" sources."xstate-4.37.2" - sources."y18n-5.0.8" + sources."y18n-4.0.3" sources."yallist-4.0.0" (sources."yargs-17.7.2" // { dependencies = [ + sources."ansi-styles-4.3.0" sources."cliui-8.0.1" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."wrap-ansi-7.0.0" + sources."y18n-5.0.8" ]; }) sources."yargs-parser-21.1.1" @@ -97654,7 +97613,7 @@ in sources."human-signals-2.1.0" sources."indent-string-5.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-plain-obj-1.1.0" sources."is-stream-2.0.1" @@ -97684,7 +97643,7 @@ in sources."read-pkg-6.0.0" sources."read-pkg-up-8.0.0" sources."redent-4.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -97865,7 +97824,7 @@ in sources."dockerfile-language-server-nodejs-0.9.0" sources."dockerfile-language-service-0.9.0" sources."dockerfile-utils-0.10.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" (sources."vscode-languageserver-protocol-3.17.3" // { @@ -97930,10 +97889,10 @@ in coc-explorer = nodeEnv.buildNodePackage { name = "coc-explorer"; packageName = "coc-explorer"; - version = "0.26.4"; + version = "0.26.5"; src = fetchurl { - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.4.tgz"; - sha512 = "V31svQPcKBMAyA+DaALTbcRP1zogl5u3kaBSXJn2/XQmmFJzZdOt1ZEEbBA4a8nxdRA9e5J430wNGJq/io4bgw=="; + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.5.tgz"; + sha512 = "018ohWL8bP6IdoBT0DtsBD12qCawlbw79la3kPBqHCwOIHqQDiHMaOgN314i4+RFWPsVf7WmbO6j1jXq0DcLwA=="; }; dependencies = [ sources."@sindresorhus/chunkify-0.2.0" @@ -98054,7 +98013,7 @@ in }; dependencies = [ sources."isexe-2.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-uri-3.0.7" sources."which-3.0.1" @@ -98319,7 +98278,7 @@ in sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."execa-1.0.0" - sources."fast-diff-1.2.0" + sources."fast-diff-1.3.0" sources."fb-watchman-2.0.2" sources."flatted-3.2.7" sources."follow-redirects-1.15.2" @@ -98341,7 +98300,7 @@ in sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."get-symbol-description-1.0.0" sources."glob-7.2.3" @@ -98440,7 +98399,7 @@ in sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.0" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."setimmediate-1.0.5" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" @@ -98458,10 +98417,10 @@ in }) sources."strip-eof-1.0.0" sources."strip-json-comments-2.0.1" - sources."tar-6.1.14" + sources."tar-6.1.15" sources."tr46-0.0.3" sources."traverse-0.3.9" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."universalify-0.1.2" @@ -98542,7 +98501,7 @@ in sha512 = "hmR9GVaQfQklEn2/uifLa1PS+kCtavmbihYEdTnJm1jcEjSAuFhrQV3grLMSM8HfTOFy4JeQrQPMq2LcugJRWw=="; }; dependencies = [ - sources."pyright-1.1.308" + sources."pyright-1.1.309" ]; buildInputs = globalBuildInputs; meta = { @@ -98643,7 +98602,7 @@ in 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.9.1" + sources."bash-language-server-4.9.2" sources."braces-3.0.2" sources."domino-2.1.6" sources."encoding-0.1.13" @@ -98658,7 +98617,7 @@ in sources."is-number-7.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."node-fetch-2.6.9" + sources."node-fetch-2.6.11" sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" sources."reusify-1.0.4" @@ -98666,7 +98625,7 @@ in sources."safer-buffer-2.1.2" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."turndown-7.1.2" sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" @@ -98952,7 +98911,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -98989,7 +98948,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -98998,7 +98957,7 @@ in sources."execall-2.0.0" sources."extend-3.0.2" sources."fast-deep-equal-3.1.3" - sources."fast-diff-1.2.0" + sources."fast-diff-1.3.0" sources."fast-glob-3.2.12" sources."fastest-levenshtein-1.0.16" sources."fastq-1.15.0" @@ -99046,7 +99005,7 @@ in sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-decimal-1.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -99094,7 +99053,7 @@ in (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -99127,7 +99086,7 @@ in sources."postcss-safe-parser-4.0.2" sources."postcss-sass-0.4.4" sources."postcss-scss-2.1.1" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-syntax-0.36.2" sources."postcss-value-parser-4.2.0" sources."punycode-2.3.0" @@ -99250,14 +99209,14 @@ in coc-sqlfluff = nodeEnv.buildNodePackage { name = "coc-sqlfluff"; packageName = "coc-sqlfluff"; - version = "0.11.3"; + version = "0.11.4"; src = fetchurl { - url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.11.3.tgz"; - sha512 = "xhiApzx8+7oQmeyBxhZYsRUFeMR/47KMXj/eYkSeWwp/mLAfJelxKYpUbz/f5D8AGVVQwPhDoFpW9YCsaDY00Q=="; + url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.11.4.tgz"; + sha512 = "0yKAPkIKoLJWksPefWXVvRcRQ+Ja3kc2Bx/tKL4tQwEOlAwc5qeUU+1FZRw+71Jp8HeC5Wo9YqtlgSIJlyic3g=="; }; dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; buildInputs = globalBuildInputs; @@ -99365,7 +99324,7 @@ in sources."has-flag-3.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."minimatch-3.1.2" @@ -99562,12 +99521,13 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."functional-red-black-tree-1.0.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."globals-13.20.0" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."ignore-4.0.6" @@ -99575,7 +99535,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-expression-4.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -99614,7 +99574,7 @@ in sources."resolve-1.22.3" sources."resolve-from-4.0.0" sources."rimraf-3.0.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" (sources."slice-ansi-4.0.0" // { @@ -100036,7 +99996,7 @@ in sources."strip-ansi-6.0.1" sources."supports-color-8.1.1" sources."tree-kill-1.2.2" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" sources."yargs-17.7.2" @@ -100199,7 +100159,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" sources."is-plain-obj-1.1.0" @@ -100253,7 +100213,7 @@ in sources."neo-async-2.6.2" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."p-limit-1.3.0" @@ -100568,7 +100528,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-2.7.4" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-6.0.1" sources."getpass-0.1.7" sources."glob-7.2.3" @@ -100585,6 +100545,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" @@ -100642,7 +100603,7 @@ in sources."ip-2.0.0" sources."ipaddr.js-1.9.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" @@ -100821,7 +100782,7 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.1.4" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -100865,7 +100826,7 @@ in sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."systeminformation-5.17.12" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -101008,7 +100969,7 @@ in sources."ignore-5.2.4" sources."indent-string-5.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -101034,7 +100995,7 @@ in sources."nested-error-stacks-2.1.1" (sources."normalize-package-data-3.0.3" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."p-event-4.2.0" @@ -101100,7 +101061,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -101153,12 +101114,13 @@ in sources."form-data-2.5.1" sources."formidable-1.2.6" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."globalthis-1.0.3" sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."iconv-lite-0.4.24" sources."inherits-2.0.4" @@ -101197,7 +101159,7 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.1" sources."pseudomap-1.0.2" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."quicktask-1.1.0" sources."raf-3.3.2" sources."readable-stream-2.3.8" @@ -101301,7 +101263,7 @@ in sources."readable-stream-1.1.14" sources."rimraf-2.7.1" sources."safe-buffer-5.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."sisteransi-1.0.5" @@ -101390,7 +101352,7 @@ in 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.10" + sources."@cspell/dict-companies-3.0.11" sources."@cspell/dict-cpp-5.0.3" sources."@cspell/dict-cryptocurrencies-3.0.1" sources."@cspell/dict-csharp-4.0.2" @@ -101402,7 +101364,7 @@ in sources."@cspell/dict-elixir-4.0.3" sources."@cspell/dict-en-common-misspellings-1.0.2" sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.3.2" + sources."@cspell/dict-en_us-4.3.3" sources."@cspell/dict-filetypes-3.0.0" sources."@cspell/dict-fonts-3.0.2" sources."@cspell/dict-fullstack-3.1.5" @@ -101422,12 +101384,12 @@ in sources."@cspell/dict-php-4.0.1" sources."@cspell/dict-powershell-5.0.1" sources."@cspell/dict-public-licenses-2.0.2" - sources."@cspell/dict-python-4.0.4" + sources."@cspell/dict-python-4.0.5" sources."@cspell/dict-r-2.0.1" sources."@cspell/dict-ruby-5.0.0" sources."@cspell/dict-rust-4.0.1" sources."@cspell/dict-scala-5.0.0" - sources."@cspell/dict-software-terms-3.1.8" + sources."@cspell/dict-software-terms-3.1.9" sources."@cspell/dict-sql-2.1.0" sources."@cspell/dict-svelte-1.0.2" sources."@cspell/dict-swift-2.0.1" @@ -101537,7 +101499,7 @@ in sources."rimraf-3.0.2" sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."signal-exit-3.0.7" sources."strip-ansi-6.0.1" sources."supports-color-7.2.0" @@ -102473,7 +102435,7 @@ in sources."@oclif/core-2.8.5" ]; }) - (sources."@oclif/plugin-update-3.1.14" // { + (sources."@oclif/plugin-update-3.1.15" // { dependencies = [ sources."@oclif/core-2.8.5" sources."cross-spawn-7.0.3" @@ -102483,31 +102445,31 @@ in sources."which-2.0.2" ]; }) - (sources."@oclif/plugin-warn-if-update-available-2.0.36" // { + (sources."@oclif/plugin-warn-if-update-available-2.0.37" // { dependencies = [ sources."@oclif/core-2.8.5" ]; }) sources."@oclif/screen-3.0.4" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/cli-progress-3.11.0" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."ansi-escapes-4.3.2" @@ -102612,7 +102574,7 @@ in sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."jake-10.8.5" + sources."jake-10.8.6" sources."js-yaml-3.14.1" sources."json-parse-better-errors-1.0.2" sources."jsonfile-6.1.0" @@ -102662,7 +102624,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.7" @@ -102683,7 +102645,7 @@ in sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."type-fest-0.21.3" sources."typescript-5.0.4" @@ -102721,7 +102683,7 @@ in sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" sources."@search-dump/jsonstream-1.5.0" - sources."@types/node-14.18.46" + sources."@types/node-14.18.47" sources."ajv-6.12.6" sources."asn1-0.2.6" sources."assert-plus-1.0.0" @@ -102757,12 +102719,13 @@ in sources."forever-agent-0.6.1" sources."form-data-2.3.3" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."getpass-0.1.7" sources."gopd-1.0.1" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."http-signature-1.2.0" @@ -102931,7 +102894,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."abbrev-1.1.1" @@ -103073,7 +103036,7 @@ in sources."gauge-4.0.4" sources."get-caller-file-2.0.5" sources."get-installed-path-2.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" (sources."get-package-info-1.0.0" // { dependencies = [ sources."debug-2.6.9" @@ -103096,6 +103059,7 @@ in sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."homedir-polyfill-1.0.3" @@ -103116,7 +103080,7 @@ in sources."interpret-3.1.1" sources."ip-2.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -103256,7 +103220,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -103289,7 +103253,7 @@ in sources."sumchecker-3.0.1" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -103298,7 +103262,7 @@ in sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."trim-repeated-1.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-fest-0.13.1" sources."unique-filename-2.0.1" sources."unique-slug-3.0.0" @@ -103344,10 +103308,10 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "3.12.0"; + version = "3.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.12.0.tgz"; - sha512 = "4xsFfPOVU+UhPEoY/OiKPsbUWmV48Yt4XlIfPD/jnce/KyVLyKC0pX/3nJUCuUKOVDI2JvXjQmhvD16xmzYw9Q=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.13.0.tgz"; + sha512 = "0KmlWIO2wWhBYSWuulbN93aRvjc5Vdn/sjsxsTxE/EKP++g8LQUVaw9kZbaTIpt74hvtu1CjU+sNLTiYirJI8Q=="; }; dependencies = [ sources."@babel/code-frame-7.10.4" @@ -103366,19 +103330,24 @@ in sources."@expo/code-signing-certificates-0.0.5" (sources."@expo/config-7.0.3" // { dependencies = [ + (sources."@expo/config-plugins-5.0.4" // { + dependencies = [ + sources."semver-7.5.1" + ]; + }) sources."@expo/json-file-8.2.36" + sources."@expo/plist-0.0.18" sources."semver-7.3.2" ]; }) - (sources."@expo/config-plugins-5.0.4" // { + (sources."@expo/config-plugins-6.0.2" // { dependencies = [ - sources."@expo/json-file-8.2.36" - sources."@expo/plist-0.0.18" + sources."@expo/config-types-48.0.0" ]; }) sources."@expo/config-types-47.0.0" - sources."@expo/eas-build-job-1.0.10" - (sources."@expo/eas-json-3.11.0" // { + sources."@expo/eas-build-job-1.0.13" + (sources."@expo/eas-json-3.13.0" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; @@ -103396,7 +103365,7 @@ in sources."json5-2.2.3" ]; }) - sources."@expo/logger-1.0.0" + sources."@expo/logger-1.0.13" sources."@expo/multipart-body-parser-1.1.0" sources."@expo/osascript-2.0.33" (sources."@expo/package-manager-0.0.57" // { @@ -103410,7 +103379,13 @@ in sources."@expo/plugin-warn-if-update-available-2.5.0" (sources."@expo/prebuild-config-5.0.7" // { dependencies = [ + (sources."@expo/config-plugins-5.0.4" // { + dependencies = [ + sources."semver-7.5.1" + ]; + }) sources."@expo/json-file-8.2.36" + sources."@expo/plist-0.0.18" sources."fs-extra-9.1.0" sources."semver-7.3.2" sources."universalify-2.0.0" @@ -103432,7 +103407,7 @@ in sources."which-2.0.2" ]; }) - sources."@expo/steps-1.0.11" + sources."@expo/steps-1.0.13" sources."@expo/timeago.js-1.0.0" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" @@ -103625,7 +103600,7 @@ in sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - (sources."jake-10.8.5" // { + (sources."jake-10.8.6" // { dependencies = [ sources."minimatch-3.1.2" ]; @@ -104012,7 +103987,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -104026,7 +104001,7 @@ in sources."concat-map-0.0.1" (sources."conf-7.1.2" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."convert-source-map-1.9.0" @@ -104042,7 +104017,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -104092,7 +104067,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" @@ -104168,7 +104143,7 @@ in sources."punycode-2.3.0" sources."quick-lru-4.0.1" sources."react-16.14.0" - sources."react-devtools-core-4.27.7" + sources."react-devtools-core-4.27.8" sources."react-is-16.13.1" (sources."react-reconciler-0.26.2" // { dependencies = [ @@ -104352,10 +104327,10 @@ in sources."@fluentui/foundation-legacy-8.2.37" sources."@fluentui/keyboard-key-0.4.9" sources."@fluentui/merge-styles-8.5.10" - sources."@fluentui/react-8.109.3" + sources."@fluentui/react-8.109.4" sources."@fluentui/react-focus-8.8.23" sources."@fluentui/react-hooks-8.6.24" - sources."@fluentui/react-portal-compat-context-9.0.5" + sources."@fluentui/react-portal-compat-context-9.0.6" sources."@fluentui/react-window-provider-2.2.13" sources."@fluentui/set-version-8.2.9" sources."@fluentui/style-utilities-8.9.10" @@ -104427,23 +104402,23 @@ in }) sources."@sindresorhus/is-0.14.0" sources."@sqltools/formatter-1.2.5" - (sources."@swc/core-1.3.57" // { + (sources."@swc/core-1.3.59" // { dependencies = [ sources."@swc/helpers-0.5.1" ]; }) - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.4.14" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@szmarczak/http-timer-1.1.2" sources."@tediousjs/connection-string-0.4.2" sources."@tokenizer/token-0.3.0" @@ -104461,7 +104436,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/express-4.17.13" - sources."@types/express-serve-static-core-4.17.34" + sources."@types/express-serve-static-core-4.17.35" sources."@types/file-type-10.9.1" sources."@types/js-yaml-4.0.4" sources."@types/json-schema-7.0.11" @@ -104696,7 +104671,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-3.0.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -104872,7 +104847,7 @@ in sources."eastasianwidth-0.2.0" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-9.2.2" sources."encodeurl-1.0.2" (sources."encoding-0.1.13" // { @@ -104997,7 +104972,7 @@ in }) sources."fancy-log-1.3.3" sources."fast-deep-equal-3.1.3" - sources."fast-diff-1.2.0" + sources."fast-diff-1.3.0" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" @@ -105071,12 +105046,12 @@ in sources."generate-function-2.3.1" sources."generic-pool-3.9.0" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" sources."github-from-package-0.0.0" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."glob-parent-5.1.2" (sources."glob-stream-6.1.0" // { dependencies = [ @@ -105286,7 +105261,7 @@ in sources."is-boolean-object-1.1.2" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.5" sources."is-descriptor-1.0.2" @@ -105436,7 +105411,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-9.0.0" sources."minimist-1.2.5" - sources."minipass-5.0.0" + sources."minipass-6.0.2" (sources."minipass-collect-1.0.2" // { dependencies = [ sources."minipass-3.3.6" @@ -105733,13 +105708,14 @@ in sources."path-parse-1.0.7" sources."path-root-0.1.1" sources."path-root-regex-0.1.2" - sources."path-scurry-1.8.0" + sources."path-scurry-1.9.2" sources."path-to-regexp-0.1.7" sources."path-type-4.0.0" sources."peek-readable-4.1.0" - sources."pg-8.10.0" - sources."pg-connection-string-2.5.0" - sources."pg-cursor-2.9.0" + sources."pg-8.11.0" + sources."pg-cloudflare-1.1.0" + sources."pg-connection-string-2.6.0" + sources."pg-cursor-2.10.0" sources."pg-int8-1.0.1" (sources."pg-native-3.0.1" // { dependencies = [ @@ -105751,7 +105727,7 @@ in }) sources."pg-pool-3.6.0" sources."pg-protocol-1.6.0" - sources."pg-query-stream-4.4.0" + sources."pg-query-stream-4.5.0" sources."pg-types-2.2.0" sources."pgpass-1.0.5" sources."picocolors-0.2.1" @@ -105882,7 +105858,7 @@ in sources."json-schema-traverse-0.4.1" ]; }) - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -106063,7 +106039,11 @@ in }) sources."tail-2.2.6" sources."tapable-2.2.1" - sources."tar-6.1.14" + (sources."tar-6.1.15" // { + dependencies = [ + sources."minipass-5.0.0" + ]; + }) (sources."tar-fs-2.1.1" // { dependencies = [ sources."chownr-1.1.4" @@ -106080,13 +106060,13 @@ in sources."sprintf-js-1.1.2" ]; }) - (sources."terser-5.17.3" // { + (sources."terser-5.17.4" // { dependencies = [ sources."acorn-8.8.2" sources."commander-2.20.3" ]; }) - sources."terser-webpack-plugin-5.3.8" + sources."terser-webpack-plugin-5.3.9" sources."text-table-0.2.0" sources."thenify-3.3.1" sources."thenify-all-1.6.0" @@ -106122,7 +106102,7 @@ in sources."acorn-8.8.2" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" (sources."tsutils-3.21.0" // { dependencies = [ sources."tslib-1.14.1" @@ -106208,7 +106188,7 @@ in }) sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - (sources."webpack-5.82.1" // { + (sources."webpack-5.83.1" // { dependencies = [ sources."acorn-8.8.2" ]; @@ -106345,7 +106325,7 @@ in sources."@types/connect-3.4.35" sources."@types/connect-history-api-fallback-1.5.0" sources."@types/express-4.17.17" - sources."@types/express-serve-static-core-4.17.34" + sources."@types/express-serve-static-core-4.17.35" sources."@types/glob-7.2.0" sources."@types/hls.js-0.13.3" sources."@types/http-proxy-1.17.11" @@ -106355,7 +106335,7 @@ in sources."@types/mime-1.3.2" sources."@types/minimatch-5.1.2" sources."@types/minimist-1.2.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" @@ -106495,10 +106475,10 @@ in sources."yallist-3.1.1" ]; }) - sources."@vue/compiler-core-3.3.2" - sources."@vue/compiler-dom-3.3.2" - sources."@vue/compiler-sfc-3.3.2" - sources."@vue/compiler-ssr-3.3.2" + sources."@vue/compiler-core-3.3.4" + sources."@vue/compiler-dom-3.3.4" + sources."@vue/compiler-sfc-3.3.4" + sources."@vue/compiler-ssr-3.3.4" (sources."@vue/component-compiler-utils-3.3.0" // { dependencies = [ sources."hash-sum-1.0.2" @@ -106512,8 +106492,8 @@ in sources."@vue/eslint-config-prettier-6.0.0" sources."@vue/eslint-config-typescript-7.0.0" sources."@vue/preload-webpack-plugin-1.1.2" - sources."@vue/reactivity-transform-3.3.2" - sources."@vue/shared-3.3.2" + sources."@vue/reactivity-transform-3.3.4" + sources."@vue/shared-3.3.4" sources."@vue/web-component-wrapper-1.3.0" sources."@webassemblyjs/ast-1.9.0" sources."@webassemblyjs/floating-point-hex-parser-1.9.0" @@ -106701,7 +106681,7 @@ in sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -106978,7 +106958,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.392" + sources."electron-to-chromium-1.4.402" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -107154,7 +107134,7 @@ in }) sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - sources."fast-diff-1.2.0" + sources."fast-diff-1.3.0" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" @@ -107239,7 +107219,7 @@ in }) sources."gaze-1.1.3" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stdin-6.0.0" sources."get-stream-4.1.0" sources."get-symbol-description-1.0.0" @@ -107410,7 +107390,7 @@ in sources."is-callable-1.2.7" sources."is-ci-1.2.1" sources."is-color-stop-1.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.5" sources."is-descriptor-1.0.2" @@ -107942,7 +107922,7 @@ in sources."source-map-0.6.1" ]; }) - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."picocolors-0.2.1" @@ -108102,7 +108082,7 @@ in }) sources."select-hose-2.0.0" sources."selfsigned-1.10.14" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."send-0.18.0" // { dependencies = [ (sources."debug-2.6.9" // { @@ -108283,7 +108263,7 @@ in sources."svgo-1.3.2" sources."table-5.4.6" sources."tapable-1.1.3" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."chownr-2.0.0" sources."minipass-5.0.0" @@ -108635,16 +108615,16 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "8.40.0"; + version = "8.41.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.40.0.tgz"; - sha512 = "bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.41.0.tgz"; + sha512 = "WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q=="; }; dependencies = [ sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.5.1" sources."@eslint/eslintrc-2.0.3" - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" sources."@humanwhocodes/config-array-0.11.8" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" @@ -108669,7 +108649,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.40.0" + sources."eslint-8.41.0" sources."eslint-scope-7.2.0" sources."eslint-visitor-keys-3.4.1" sources."espree-9.5.2" @@ -108689,7 +108669,7 @@ in sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.20.0" - sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-flag-4.0.0" sources."ignore-5.2.4" sources."import-fresh-3.3.0" @@ -108700,7 +108680,6 @@ in sources."is-glob-4.0.3" sources."is-path-inside-3.0.3" sources."isexe-2.0.0" - sources."js-sdsl-4.4.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" @@ -108761,7 +108740,7 @@ in sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.5.1" sources."@eslint/eslintrc-2.0.3" - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" sources."@humanwhocodes/config-array-0.11.8" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" @@ -108791,7 +108770,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.40.0" + sources."eslint-8.41.0" sources."eslint-scope-7.2.0" sources."eslint-visitor-keys-3.4.1" sources."espree-9.5.2" @@ -108811,7 +108790,7 @@ in sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.20.0" - sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-flag-4.0.0" sources."ignore-5.2.4" sources."import-fresh-3.3.0" @@ -108822,7 +108801,6 @@ in sources."is-glob-4.0.3" sources."is-path-inside-3.0.3" sources."isexe-2.0.0" - sources."js-sdsl-4.4.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" @@ -109069,16 +109047,16 @@ in dependencies = [ (sources."@expo/config-plugins-7.0.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."semver-7.3.2" ]; }) - (sources."@expo/config-plugins-6.0.1" // { + (sources."@expo/config-plugins-6.0.2" // { dependencies = [ sources."@expo/config-types-48.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@expo/config-types-49.0.0-alpha.1" @@ -109139,7 +109117,7 @@ in dependencies = [ sources."@expo/json-file-8.2.36" sources."@expo/plist-0.0.18" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@expo/config-types-45.0.0" @@ -109168,7 +109146,7 @@ in sources."@expo/config-8.0.4" sources."@expo/config-plugins-7.0.0" sources."@expo/config-types-49.0.0-alpha.1" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@expo/osascript-2.0.33" @@ -109200,7 +109178,7 @@ in sources."@expo/config-6.0.20" (sources."@expo/config-plugins-4.1.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@expo/config-types-44.0.0" @@ -109234,7 +109212,7 @@ in sources."@nodelib/fs.walk-1.2.8" (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."@npmcli/move-file-1.1.2" // { @@ -109260,7 +109238,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/express-4.17.17" - sources."@types/express-serve-static-core-4.17.34" + sources."@types/express-serve-static-core-4.17.35" sources."@types/glob-7.2.0" sources."@types/html-minifier-terser-6.1.0" sources."@types/http-cache-semantics-4.0.1" @@ -109272,7 +109250,7 @@ in sources."@types/keyv-3.1.4" sources."@types/mime-1.3.2" sources."@types/minimatch-5.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/responselike-1.0.0" @@ -109402,7 +109380,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -109480,11 +109458,7 @@ in }) sources."core-js-compat-3.30.2" sources."core-util-is-1.0.3" - (sources."cross-fetch-3.1.5" // { - dependencies = [ - sources."node-fetch-2.6.7" - ]; - }) + sources."cross-fetch-3.1.6" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -109493,9 +109467,9 @@ in sources."crypt-0.0.2" sources."crypto-random-string-1.0.0" sources."css-declaration-sorter-6.4.0" - (sources."css-loader-6.7.3" // { + (sources."css-loader-6.7.4" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."css-minimizer-webpack-plugin-3.4.1" // { @@ -109548,7 +109522,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.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -109585,7 +109559,7 @@ in sources."is-stream-1.1.0" ]; }) - (sources."expo-48.0.16" // { + (sources."expo-48.0.17" // { dependencies = [ sources."@babel/runtime-7.21.5" (sources."@expo/config-8.0.2" // { @@ -109593,12 +109567,12 @@ in sources."semver-7.3.2" ]; }) - sources."@expo/config-plugins-6.0.1" + sources."@expo/config-plugins-6.0.2" sources."@expo/config-types-48.0.0" sources."commander-7.2.0" sources."expo-modules-autolinking-1.2.0" sources."fs-extra-9.1.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."uuid-3.4.0" ]; }) @@ -109610,7 +109584,7 @@ in sources."@expo/config-types-49.0.0-alpha.1" sources."expo-constants-14.3.0" sources."expo-file-system-15.3.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."uuid-3.4.0" ]; }) @@ -109619,7 +109593,7 @@ in sources."@expo/config-8.0.4" sources."@expo/config-plugins-7.0.0" sources."@expo/config-types-49.0.0-alpha.1" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."uuid-3.4.0" ]; }) @@ -109712,7 +109686,7 @@ in sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-port-3.2.0" sources."get-stream-5.2.0" sources."getenv-1.0.0" @@ -109728,6 +109702,7 @@ in sources."handle-thing-2.0.1" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."hasbin-1.2.3" sources."hashids-1.1.4" @@ -109766,7 +109741,7 @@ in sources."ipaddr.js-1.9.1" sources."is-binary-path-2.1.0" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -109895,7 +109870,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.5" // { + (sources."mini-css-extract-plugin-2.7.6" // { dependencies = [ sources."ajv-keywords-5.1.0" sources."schema-utils-4.0.1" @@ -110060,7 +110035,7 @@ in sources."postcss-minify-params-5.1.4" sources."postcss-minify-selectors-5.2.1" sources."postcss-modules-extract-imports-3.0.0" - sources."postcss-modules-local-by-default-4.0.0" + sources."postcss-modules-local-by-default-4.0.1" sources."postcss-modules-scope-3.0.0" sources."postcss-modules-values-4.0.0" sources."postcss-normalize-charset-5.1.0" @@ -110075,7 +110050,7 @@ in sources."postcss-ordered-values-5.1.3" sources."postcss-reduce-initial-5.1.2" sources."postcss-reduce-transforms-5.1.0" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-svgo-5.1.0" sources."postcss-unique-selectors-5.1.1" sources."postcss-value-parser-4.2.0" @@ -110268,7 +110243,7 @@ in sources."strip-final-newline-2.0.0" sources."strip-json-comments-2.0.1" sources."structured-headers-0.4.1" - sources."style-loader-3.3.2" + sources."style-loader-3.3.3" sources."stylehacks-5.1.1" (sources."sucrase-3.32.0" // { dependencies = [ @@ -110290,7 +110265,7 @@ in ]; }) sources."tapable-2.2.1" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" sources."mkdirp-1.0.4" @@ -110305,13 +110280,13 @@ in ]; }) sources."terminal-link-2.1.1" - (sources."terser-5.17.3" // { + (sources."terser-5.17.4" // { dependencies = [ sources."commander-2.20.3" sources."source-map-support-0.5.21" ]; }) - (sources."terser-webpack-plugin-5.3.8" // { + (sources."terser-webpack-plugin-5.3.9" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -110332,7 +110307,7 @@ in sources."traverse-0.6.7" sources."tree-kill-1.2.2" sources."ts-interface-checker-0.1.13" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."turndown-7.0.0" sources."type-fest-0.12.0" sources."type-is-1.6.18" @@ -110370,7 +110345,7 @@ in sources."wbuf-1.7.3" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" - (sources."webpack-5.82.1" // { + (sources."webpack-5.83.1" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -110515,7 +110490,7 @@ in ]; }) sources."@types/minimist-1.2.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" sources."@types/react-18.2.6" @@ -110546,7 +110521,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -110572,7 +110547,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -110619,7 +110594,7 @@ in sources."ink-spinner-4.0.3" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-1.1.0" sources."js-tokens-4.0.0" @@ -110651,7 +110626,7 @@ in (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -110679,7 +110654,7 @@ in }) sources."quick-lru-4.0.1" sources."react-17.0.2" - sources."react-devtools-core-4.27.7" + sources."react-devtools-core-4.27.8" sources."react-reconciler-0.26.2" (sources."read-pkg-5.2.0" // { dependencies = [ @@ -110792,7 +110767,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.24" + sources."@oclif/command-1.8.25" sources."@oclif/config-1.18.8" sources."@oclif/errors-1.3.6" (sources."@oclif/help-1.0.5" // { @@ -110802,7 +110777,7 @@ in ]; }) sources."@oclif/linewrap-1.0.0" - sources."@oclif/parser-3.8.10" + sources."@oclif/parser-3.8.11" (sources."@oclif/plugin-autocomplete-0.1.5" // { dependencies = [ sources."ansi-styles-3.2.1" @@ -110902,11 +110877,7 @@ in sources."colors-1.0.3" sources."combined-stream-1.0.8" sources."core-util-is-1.0.3" - (sources."cross-fetch-3.1.5" // { - dependencies = [ - sources."node-fetch-2.6.7" - ]; - }) + sources."cross-fetch-3.1.6" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -110926,7 +110897,11 @@ in sources."duplexer3-0.1.5" sources."ecc-jsbn-0.1.2" sources."emoji-regex-8.0.0" - sources."encoding-0.1.13" + (sources."encoding-0.1.13" // { + dependencies = [ + sources."iconv-lite-0.6.3" + ]; + }) sources."escape-string-regexp-4.0.0" sources."escodegen-1.14.3" sources."esprima-4.0.1" @@ -110935,11 +110910,7 @@ in sources."execa-0.10.0" sources."exponential-backoff-3.1.1" sources."extend-3.0.2" - (sources."external-editor-3.1.0" // { - dependencies = [ - sources."iconv-lite-0.4.24" - ]; - }) + sources."external-editor-3.1.0" sources."extract-stack-1.0.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" @@ -110986,7 +110957,7 @@ in sources."http-cache-semantics-3.8.1" sources."http-signature-1.2.0" sources."hyperlinker-1.0.0" - sources."iconv-lite-0.6.3" + sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" sources."ignore-5.2.4" sources."indent-string-4.0.0" @@ -111096,7 +111067,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.7" @@ -111129,7 +111100,7 @@ in sources."tough-cookie-2.5.0" sources."tr46-0.0.3" sources."treeify-1.1.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" @@ -111167,10 +111138,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "12.0.0"; + version = "12.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-12.0.0.tgz"; - sha512 = "4d+GjyB0opAfuTuFEN8Zcw/0aX3nDZGkKfVo8PmpDIolEt67Q0u6gMER7Rus2wCr6dmyiMur/2LWuGMU765Xyg=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-12.1.0.tgz"; + sha512 = "nMZHbZCTgREf5yAKNkI47Qg1vY5bLwj4+8C8mfDKOZmCRbYFBmarE+7Pv4e2KZ6O2W+6SHuIW3afDJccnEOkBA=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.1.2" // { @@ -111186,7 +111157,7 @@ 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.5.2" // { + (sources."@google-cloud/pubsub-3.6.0" // { dependencies = [ sources."google-auth-library-8.8.0" ]; @@ -111197,7 +111168,7 @@ in sources."@jsdoc/salty-0.2.5" (sources."@npmcli/fs-2.1.2" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@npmcli/move-file-2.0.1" @@ -111229,7 +111200,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/rimraf-3.0.2" sources."@types/triple-beam-1.3.2" sources."abbrev-1.1.1" @@ -111450,7 +111421,7 @@ in dependencies = [ sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."exegesis-express-4.0.0" @@ -111515,7 +111486,7 @@ in sources."gaxios-5.1.0" sources."gcp-metadata-5.2.0" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" (sources."get-uri-3.0.2" // { dependencies = [ sources."fs-extra-8.1.0" @@ -111549,6 +111520,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" @@ -111619,7 +111591,7 @@ in dependencies = [ sources."jwa-1.4.1" sources."jws-3.2.2" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."jsprim-1.4.2" @@ -111673,7 +111645,7 @@ in dependencies = [ sources."ansi-escapes-6.2.0" sources."chalk-5.2.0" - sources."type-fest-3.10.0" + sources."type-fest-3.11.0" ]; }) sources."mdurl-1.0.1" @@ -111716,7 +111688,7 @@ in sources."node-forge-1.3.1" (sources."node-gyp-9.3.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" sources."which-2.0.2" ]; }) @@ -111777,7 +111749,7 @@ in dependencies = [ sources."glob-8.1.0" sources."minimatch-5.1.6" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."proxy-addr-2.0.7" @@ -111893,7 +111865,7 @@ in }) sources."supports-color-7.2.0" sources."supports-hyperlinks-2.3.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -111913,14 +111885,13 @@ in sources."toxic-1.0.1" sources."tr46-0.0.3" sources."triple-beam-1.3.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" sources."type-fest-0.21.3" sources."type-is-1.6.18" sources."typedarray-to-buffer-3.1.5" - sources."typescript-5.0.4" sources."uc.micro-1.0.6" sources."uglify-js-3.17.4" sources."underscore-1.13.6" @@ -111932,7 +111903,7 @@ in sources."unpipe-1.0.0" (sources."update-notifier-cjs-5.1.6" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."uri-js-4.4.1" @@ -111948,7 +111919,7 @@ in sources."core-util-is-1.0.2" ]; }) - sources."vm2-3.9.17" + sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-fetch-3.6.2" @@ -112132,7 +112103,7 @@ in ]; }) sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-4.0.0" sources."is-interactive-1.0.0" sources."is-plain-obj-1.1.0" @@ -112203,7 +112174,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -112226,7 +112197,7 @@ in sources."through-2.3.8" sources."tmp-0.0.33" sources."trim-newlines-4.1.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-fest-0.21.3" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" @@ -112267,7 +112238,7 @@ in sources."@types/atob-2.1.2" sources."@types/bn.js-5.1.1" sources."@types/inquirer-6.5.0" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -112653,7 +112624,7 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-value-2.0.6" sources."glob-7.2.3" (sources."glob-parent-3.1.0" // { @@ -112666,6 +112637,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -112978,7 +112950,7 @@ in sources."@trufflesuite/uws-js-unofficial-20.10.0-unofficial.2" sources."@types/bn.js-5.1.1" sources."@types/lru-cache-5.1.1" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/seedrandom-3.0.1" sources."abstract-level-1.0.3" (sources."abstract-leveldown-7.2.0" // { @@ -113018,10 +112990,10 @@ in gatsby-cli = nodeEnv.buildNodePackage { name = "gatsby-cli"; packageName = "gatsby-cli"; - version = "5.9.0"; + version = "5.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz"; - sha512 = "yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA=="; + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz"; + sha512 = "k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -113110,8 +113082,8 @@ 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-20.1.3" - sources."@types/node-fetch-2.6.3" + sources."@types/node-20.2.1" + sources."@types/node-fetch-2.6.4" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" sources."ansi-align-3.0.1" @@ -113137,7 +113109,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -113174,7 +113146,7 @@ in sources."configstore-5.0.1" sources."convert-hrtime-3.0.0" sources."convert-source-map-1.9.0" - sources."create-gatsby-3.9.0" + sources."create-gatsby-3.10.0" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -113198,7 +113170,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -113232,8 +113204,8 @@ in sources."fs-exists-cached-1.0.0" sources."fs-extra-11.1.1" sources."fs.realpath-1.0.0" - sources."gatsby-core-utils-4.9.0" - sources."gatsby-telemetry-4.9.0" + sources."gatsby-core-utils-4.10.0" + sources."gatsby-telemetry-4.10.0" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" sources."get-stream-4.1.0" @@ -113300,7 +113272,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."ms-2.1.2" - sources."msgpackr-1.9.1" + sources."msgpackr-1.9.2" (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" @@ -113365,7 +113337,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" sources."yallist-4.0.0" @@ -113466,31 +113438,177 @@ in ]; }) sources."@gar/promisify-1.1.3" + (sources."@isaacs/cliui-8.0.2" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + ]; + }) sources."@isaacs/string-locale-compare-1.1.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@npmcli/arborist-4.3.1" - sources."@npmcli/fs-1.1.1" - (sources."@npmcli/git-2.1.0" // { + (sources."@npmcli/arborist-4.3.1" // { dependencies = [ + sources."@npmcli/fs-1.1.1" + sources."@npmcli/git-2.1.0" + sources."@npmcli/installed-package-contents-1.0.7" + sources."@npmcli/move-file-1.1.2" + sources."@npmcli/node-gyp-1.0.3" + sources."@npmcli/promise-spawn-1.3.2" + sources."@npmcli/run-script-2.0.0" + sources."@tootallnate/once-1.1.2" + sources."brace-expansion-1.1.11" + sources."builtins-1.0.3" + sources."cacache-15.3.0" + sources."fs-minipass-2.1.0" + sources."glob-8.1.0" + sources."hosted-git-info-4.1.0" + sources."http-proxy-agent-4.0.1" + (sources."ignore-walk-4.0.1" // { + dependencies = [ + sources."minimatch-3.1.2" + ]; + }) + sources."json-parse-even-better-errors-2.3.1" + sources."lru-cache-6.0.0" + sources."make-fetch-happen-9.1.0" + sources."minimatch-5.1.6" + sources."minipass-3.3.6" + sources."minipass-fetch-1.4.1" + sources."node-gyp-8.4.1" + sources."nopt-5.0.0" + sources."npm-bundled-1.1.2" + sources."npm-install-checks-4.0.0" + sources."npm-normalize-package-bin-1.0.1" + sources."npm-package-arg-8.1.5" + (sources."npm-packlist-3.0.0" // { + dependencies = [ + sources."glob-7.2.3" + sources."minimatch-3.1.2" + ]; + }) + sources."npm-pick-manifest-6.1.1" + (sources."npm-registry-fetch-12.0.2" // { + dependencies = [ + sources."@npmcli/fs-2.1.2" + sources."@npmcli/move-file-2.0.1" + sources."@tootallnate/once-2.0.0" + sources."cacache-16.1.3" + sources."http-proxy-agent-5.0.0" + sources."lru-cache-7.18.3" + (sources."make-fetch-happen-10.2.1" // { + dependencies = [ + sources."minipass-fetch-2.1.2" + ]; + }) + sources."socks-proxy-agent-7.0.0" + sources."ssri-9.0.1" + sources."unique-filename-2.0.1" + sources."unique-slug-3.0.0" + ]; + }) + sources."pacote-12.0.3" + sources."proc-log-1.0.0" + sources."read-package-json-fast-2.0.3" + sources."socks-proxy-agent-6.2.1" + sources."ssri-8.0.1" + sources."unique-filename-1.1.1" + sources."unique-slug-2.0.2" + sources."validate-npm-package-name-3.0.0" sources."which-2.0.2" ]; }) - sources."@npmcli/installed-package-contents-1.0.7" + sources."@npmcli/fs-2.1.2" + sources."@npmcli/git-4.0.4" + sources."@npmcli/installed-package-contents-2.0.2" (sources."@npmcli/map-workspaces-2.0.4" // { dependencies = [ sources."glob-8.1.0" + sources."json-parse-even-better-errors-2.3.1" sources."minimatch-5.1.6" + sources."npm-normalize-package-bin-1.0.1" + sources."read-package-json-fast-2.0.3" ]; }) - sources."@npmcli/metavuln-calculator-2.0.0" - sources."@npmcli/move-file-1.1.2" + (sources."@npmcli/metavuln-calculator-2.0.0" // { + dependencies = [ + sources."@npmcli/fs-1.1.1" + sources."@npmcli/git-2.1.0" + sources."@npmcli/installed-package-contents-1.0.7" + sources."@npmcli/move-file-1.1.2" + sources."@npmcli/node-gyp-1.0.3" + sources."@npmcli/promise-spawn-1.3.2" + sources."@npmcli/run-script-2.0.0" + sources."@tootallnate/once-1.1.2" + sources."brace-expansion-1.1.11" + sources."builtins-1.0.3" + sources."cacache-15.3.0" + sources."fs-minipass-2.1.0" + (sources."glob-8.1.0" // { + dependencies = [ + sources."brace-expansion-2.0.1" + sources."minimatch-5.1.6" + ]; + }) + sources."hosted-git-info-4.1.0" + sources."http-proxy-agent-4.0.1" + sources."ignore-walk-4.0.1" + sources."json-parse-even-better-errors-2.3.1" + sources."lru-cache-6.0.0" + sources."make-fetch-happen-9.1.0" + sources."minimatch-3.1.2" + sources."minipass-3.3.6" + sources."minipass-fetch-1.4.1" + sources."node-gyp-8.4.1" + sources."nopt-5.0.0" + sources."npm-bundled-1.1.2" + sources."npm-install-checks-4.0.0" + sources."npm-normalize-package-bin-1.0.1" + sources."npm-package-arg-8.1.5" + sources."npm-packlist-3.0.0" + sources."npm-pick-manifest-6.1.1" + (sources."npm-registry-fetch-12.0.2" // { + dependencies = [ + sources."@npmcli/fs-2.1.2" + sources."@npmcli/move-file-2.0.1" + sources."@tootallnate/once-2.0.0" + sources."cacache-16.1.3" + sources."http-proxy-agent-5.0.0" + sources."lru-cache-7.18.3" + (sources."make-fetch-happen-10.2.1" // { + dependencies = [ + sources."minipass-fetch-2.1.2" + ]; + }) + sources."socks-proxy-agent-7.0.0" + sources."ssri-9.0.1" + sources."unique-filename-2.0.1" + sources."unique-slug-3.0.0" + ]; + }) + sources."pacote-12.0.3" + sources."read-package-json-fast-2.0.3" + sources."socks-proxy-agent-6.2.1" + sources."ssri-8.0.1" + sources."unique-filename-1.1.1" + sources."unique-slug-2.0.2" + sources."validate-npm-package-name-3.0.0" + sources."which-2.0.2" + ]; + }) + sources."@npmcli/move-file-2.0.1" sources."@npmcli/name-from-folder-1.0.1" - sources."@npmcli/node-gyp-1.0.3" - sources."@npmcli/package-json-1.0.1" - sources."@npmcli/promise-spawn-1.3.2" - sources."@npmcli/run-script-2.0.0" + sources."@npmcli/node-gyp-3.0.0" + (sources."@npmcli/package-json-1.0.1" // { + dependencies = [ + sources."json-parse-even-better-errors-2.3.1" + ]; + }) + sources."@npmcli/promise-spawn-6.0.2" + sources."@npmcli/run-script-6.0.2" sources."@octokit/auth-token-2.5.0" sources."@octokit/core-3.6.0" sources."@octokit/endpoint-6.0.12" @@ -113503,7 +113621,15 @@ in sources."@octokit/request-error-2.1.0" sources."@octokit/rest-18.12.0" sources."@octokit/types-6.41.0" - sources."@tootallnate/once-1.1.2" + sources."@pkgjs/parseargs-0.11.0" + sources."@sigstore/protobuf-specs-0.1.0" + sources."@tootallnate/once-2.0.0" + sources."@tufjs/canonical-json-1.0.0" + (sources."@tufjs/models-1.0.4" // { + dependencies = [ + sources."minimatch-9.0.0" + ]; + }) sources."@types/expect-1.20.4" sources."@types/minimatch-3.0.5" sources."@types/node-15.14.9" @@ -113521,7 +113647,7 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."aproba-2.0.0" - (sources."are-we-there-yet-2.0.0" // { + (sources."are-we-there-yet-3.0.1" // { dependencies = [ sources."readable-stream-3.6.2" ]; @@ -113549,8 +113675,16 @@ in sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."buffer-5.7.1" - sources."builtins-1.0.3" - sources."cacache-15.3.0" + sources."builtins-5.0.1" + (sources."cacache-17.1.3" // { + dependencies = [ + sources."@npmcli/fs-3.1.0" + sources."glob-10.2.5" + sources."minimatch-9.0.0" + sources."unique-filename-3.0.0" + sources."unique-slug-4.0.0" + ]; + }) sources."chalk-4.1.2" sources."chardet-0.7.0" sources."chownr-2.0.0" @@ -113597,6 +113731,7 @@ in sources."dezalgo-1.0.4" sources."diff-5.1.0" sources."dir-glob-3.0.1" + sources."eastasianwidth-0.2.0" sources."ejs-3.1.9" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -113626,7 +113761,12 @@ in sources."find-up-4.1.0" sources."find-yarn-workspace-root2-1.2.16" sources."first-chunk-stream-2.0.0" - sources."fs-minipass-2.1.0" + (sources."foreground-child-3.1.1" // { + dependencies = [ + sources."signal-exit-4.0.2" + ]; + }) + sources."fs-minipass-3.0.2" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-4.0.4" @@ -113651,19 +113791,18 @@ in }) sources."has-flag-4.0.0" sources."has-unicode-2.0.1" - sources."hosted-git-info-2.8.9" + sources."hosted-git-info-6.1.1" sources."http-cache-semantics-4.1.1" - sources."http-proxy-agent-4.0.1" + sources."http-proxy-agent-5.0.0" sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."ignore-5.2.4" - (sources."ignore-walk-4.0.1" // { + (sources."ignore-walk-6.0.3" // { dependencies = [ - sources."brace-expansion-1.1.11" - sources."minimatch-3.1.2" + sources."minimatch-9.0.0" ]; }) sources."imurmurhash-0.1.4" @@ -113671,11 +113810,15 @@ in sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."inquirer-8.2.5" + (sources."inquirer-8.2.5" // { + dependencies = [ + sources."wrap-ansi-7.0.0" + ]; + }) sources."interpret-1.4.0" sources."ip-2.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -113691,7 +113834,8 @@ in sources."isarray-1.0.0" sources."isbinaryfile-5.0.0" sources."isexe-2.0.0" - (sources."jake-10.8.5" // { + sources."jackspeak-2.2.0" + (sources."jake-10.8.6" // { dependencies = [ sources."brace-expansion-1.1.11" sources."minimatch-3.1.2" @@ -113699,7 +113843,7 @@ in }) sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" - sources."json-parse-even-better-errors-2.3.1" + sources."json-parse-even-better-errors-3.0.0" sources."json-stringify-nice-1.1.4" sources."jsonparse-1.3.1" sources."just-diff-5.2.0" @@ -113714,8 +113858,17 @@ in sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."log-symbols-4.1.0" - sources."lru-cache-6.0.0" - sources."make-fetch-happen-9.1.0" + sources."lru-cache-7.18.3" + (sources."make-fetch-happen-10.2.1" // { + dependencies = [ + sources."cacache-16.1.3" + sources."fs-minipass-2.1.0" + sources."glob-8.1.0" + sources."minimatch-5.1.6" + sources."minipass-3.3.6" + sources."ssri-9.0.1" + ]; + }) sources."mem-fs-2.3.0" sources."mem-fs-editor-9.7.0" sources."merge-stream-2.0.0" @@ -113724,14 +113877,42 @@ in sources."mimic-fn-2.1.0" sources."minimatch-7.4.6" sources."minimist-1.2.8" - sources."minipass-3.3.6" - sources."minipass-collect-1.0.2" - sources."minipass-fetch-1.4.1" - sources."minipass-flush-1.0.5" - sources."minipass-json-stream-1.0.1" - sources."minipass-pipeline-1.2.4" - sources."minipass-sized-1.0.3" - sources."minizlib-2.1.2" + sources."minipass-5.0.0" + (sources."minipass-collect-1.0.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-fetch-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-flush-1.0.5" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-json-stream-1.0.1" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-pipeline-1.2.4" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-sized-1.0.3" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minizlib-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."mkdirp-1.0.4" sources."mkdirp-infer-owner-2.0.0" sources."ms-2.1.2" @@ -113744,58 +113925,28 @@ in sources."mute-stream-0.0.8" sources."negotiator-0.6.3" sources."node-fetch-2.6.11" - (sources."node-gyp-8.4.1" // { + (sources."node-gyp-9.3.1" // { dependencies = [ - sources."are-we-there-yet-3.0.1" - sources."npmlog-6.0.2" - sources."readable-stream-3.6.2" sources."which-2.0.2" ]; }) - sources."nopt-5.0.0" - (sources."normalize-package-data-2.5.0" // { - dependencies = [ - sources."semver-5.7.1" - ]; - }) + sources."nopt-6.0.0" + sources."normalize-package-data-5.0.0" sources."normalize-path-3.0.0" - sources."npm-bundled-1.1.2" - sources."npm-install-checks-4.0.0" - sources."npm-normalize-package-bin-1.0.1" - (sources."npm-package-arg-8.1.5" // { + sources."npm-bundled-3.0.0" + sources."npm-install-checks-6.1.1" + sources."npm-normalize-package-bin-3.0.1" + sources."npm-package-arg-10.1.0" + sources."npm-packlist-7.0.4" + sources."npm-pick-manifest-8.0.1" + (sources."npm-registry-fetch-14.0.5" // { dependencies = [ - sources."hosted-git-info-4.1.0" - ]; - }) - sources."npm-packlist-3.0.0" - sources."npm-pick-manifest-6.1.1" - (sources."npm-registry-fetch-12.0.2" // { - dependencies = [ - sources."@npmcli/fs-2.1.2" - sources."@npmcli/move-file-2.0.1" - sources."@tootallnate/once-2.0.0" - sources."cacache-16.1.3" - sources."glob-8.1.0" - sources."http-proxy-agent-5.0.0" - sources."lru-cache-7.18.3" - (sources."make-fetch-happen-10.2.1" // { - dependencies = [ - sources."minipass-fetch-2.1.2" - ]; - }) - sources."minimatch-5.1.6" - sources."socks-proxy-agent-7.0.0" - sources."ssri-9.0.1" - sources."unique-filename-2.0.1" - sources."unique-slug-3.0.0" + sources."make-fetch-happen-11.1.1" + sources."minipass-fetch-3.0.3" ]; }) sources."npm-run-path-4.0.1" - (sources."npmlog-5.0.1" // { - dependencies = [ - sources."gauge-3.0.2" - ]; - }) + sources."npmlog-6.0.2" sources."number-is-nan-1.0.1" sources."object-assign-4.1.1" sources."once-1.4.0" @@ -113810,14 +113961,27 @@ in sources."p-timeout-3.2.0" sources."p-transform-1.3.0" sources."p-try-2.2.0" - sources."pacote-12.0.3" + sources."pacote-15.2.0" sources."pad-component-0.0.1" - sources."parse-conflict-json-2.0.2" - sources."parse-json-5.2.0" + (sources."parse-conflict-json-2.0.2" // { + dependencies = [ + sources."json-parse-even-better-errors-2.3.1" + ]; + }) + (sources."parse-json-5.2.0" // { + dependencies = [ + sources."json-parse-even-better-errors-2.3.1" + ]; + }) sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" + (sources."path-scurry-1.9.2" // { + dependencies = [ + sources."lru-cache-9.1.1" + ]; + }) sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" @@ -113831,7 +113995,7 @@ in ]; }) sources."pretty-bytes-5.6.0" - sources."proc-log-1.0.0" + sources."proc-log-3.0.0" sources."process-nextick-args-2.0.1" sources."promise-all-reject-late-1.0.1" sources."promise-call-limit-1.0.2" @@ -113839,9 +114003,18 @@ in sources."promise-retry-2.0.1" sources."queue-microtask-1.2.3" sources."read-cmd-shim-3.0.1" - sources."read-package-json-fast-2.0.3" + (sources."read-package-json-6.0.3" // { + dependencies = [ + sources."glob-10.2.5" + sources."minimatch-9.0.0" + ]; + }) + sources."read-package-json-fast-3.0.2" (sources."read-pkg-5.2.0" // { dependencies = [ + sources."hosted-git-info-2.8.9" + sources."normalize-package-data-2.5.0" + sources."semver-5.7.1" sources."type-fest-0.6.0" ]; }) @@ -113864,26 +114037,38 @@ in sources."safer-buffer-2.1.2" sources."sanitize-filename-1.6.3" sources."scoped-regex-2.1.0" - sources."semver-7.5.0" + (sources."semver-7.5.1" // { + dependencies = [ + sources."lru-cache-6.0.0" + ]; + }) sources."set-blocking-2.0.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shelljs-0.8.5" sources."signal-exit-3.0.7" + (sources."sigstore-1.5.2" // { + dependencies = [ + sources."make-fetch-happen-11.1.1" + sources."minipass-fetch-3.0.3" + ]; + }) sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" - sources."socks-proxy-agent-6.2.1" + sources."socks-proxy-agent-7.0.0" sources."sort-keys-4.2.0" 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.13" sources."sprintf-js-1.0.3" - sources."ssri-8.0.1" + sources."ssri-10.0.4" sources."string-width-4.2.3" + sources."string-width-cjs-4.2.3" sources."string_decoder-1.1.1" sources."strip-ansi-6.0.1" + sources."strip-ansi-cjs-6.0.1" sources."strip-bom-2.0.0" sources."strip-bom-buf-1.0.0" sources."strip-bom-stream-2.0.0" @@ -113891,9 +114076,13 @@ in sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."taketalk-1.0.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ - sources."minipass-5.0.0" + (sources."fs-minipass-2.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) ]; }) sources."text-table-0.2.0" @@ -113904,16 +114093,22 @@ in sources."tr46-0.0.3" sources."treeverse-1.0.4" sources."truncate-utf8-bytes-1.0.2" - sources."tslib-2.5.0" + sources."tslib-2.5.2" + (sources."tuf-js-1.1.6" // { + dependencies = [ + sources."make-fetch-happen-11.1.1" + sources."minipass-fetch-3.0.3" + ]; + }) sources."type-fest-0.8.1" - sources."unique-filename-1.1.1" - sources."unique-slug-2.0.2" + sources."unique-filename-2.0.1" + sources."unique-slug-3.0.0" sources."universal-user-agent-6.0.0" sources."untildify-4.0.0" sources."utf8-byte-length-1.0.4" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" - sources."validate-npm-package-name-3.0.0" + sources."validate-npm-package-name-5.0.0" sources."vinyl-2.2.1" sources."vinyl-file-3.0.0" sources."walk-up-path-1.0.0" @@ -113923,23 +114118,102 @@ in sources."which-3.0.1" sources."which-pm-2.0.0" sources."wide-align-1.1.5" - sources."wrap-ansi-7.0.0" + (sources."wrap-ansi-8.1.0" // { + dependencies = [ + sources."ansi-regex-6.0.1" + sources."ansi-styles-6.2.1" + sources."emoji-regex-9.2.2" + sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" + ]; + }) + sources."wrap-ansi-cjs-7.0.0" sources."wrappy-1.0.2" sources."write-file-atomic-4.0.2" sources."yallist-4.0.0" - (sources."yeoman-environment-3.16.2" // { + (sources."yeoman-environment-3.18.3" // { dependencies = [ + sources."@npmcli/fs-1.1.1" + sources."@npmcli/git-2.1.0" + sources."@npmcli/installed-package-contents-1.0.7" + sources."@npmcli/move-file-1.1.2" + sources."@npmcli/node-gyp-1.0.3" + sources."@npmcli/promise-spawn-1.3.2" + sources."@npmcli/run-script-2.0.0" + sources."@tootallnate/once-1.1.2" + sources."are-we-there-yet-2.0.0" sources."brace-expansion-1.1.11" + sources."builtins-1.0.3" + sources."cacache-15.3.0" sources."escape-string-regexp-4.0.0" sources."find-up-5.0.0" + sources."fs-minipass-2.1.0" + sources."gauge-3.0.2" + (sources."glob-8.1.0" // { + dependencies = [ + sources."brace-expansion-2.0.1" + sources."minimatch-5.1.6" + ]; + }) + sources."hosted-git-info-4.1.0" + sources."http-proxy-agent-4.0.1" + sources."ignore-walk-4.0.1" sources."isbinaryfile-4.0.10" + sources."json-parse-even-better-errors-2.3.1" sources."locate-path-6.0.0" + sources."lru-cache-6.0.0" + sources."make-fetch-happen-9.1.0" sources."minimatch-3.1.2" + sources."minipass-3.3.6" + sources."minipass-fetch-1.4.1" + (sources."node-gyp-8.4.1" // { + dependencies = [ + sources."are-we-there-yet-3.0.1" + sources."gauge-4.0.4" + sources."npmlog-6.0.2" + ]; + }) + sources."nopt-5.0.0" + sources."npm-bundled-1.1.2" + sources."npm-install-checks-4.0.0" + sources."npm-normalize-package-bin-1.0.1" + sources."npm-package-arg-8.1.5" + sources."npm-packlist-3.0.0" + sources."npm-pick-manifest-6.1.1" + (sources."npm-registry-fetch-12.0.2" // { + dependencies = [ + sources."@npmcli/fs-2.1.2" + sources."@npmcli/move-file-2.0.1" + sources."@tootallnate/once-2.0.0" + sources."cacache-16.1.3" + sources."http-proxy-agent-5.0.0" + sources."lru-cache-7.18.3" + (sources."make-fetch-happen-10.2.1" // { + dependencies = [ + sources."minipass-fetch-2.1.2" + ]; + }) + sources."socks-proxy-agent-7.0.0" + sources."ssri-9.0.1" + sources."unique-filename-2.0.1" + sources."unique-slug-3.0.0" + ]; + }) + sources."npmlog-5.0.1" sources."p-limit-3.1.0" sources."p-locate-5.0.0" + sources."pacote-12.0.3" + sources."read-package-json-fast-2.0.3" + sources."readable-stream-3.6.2" + sources."socks-proxy-agent-6.2.1" + sources."ssri-8.0.1" + sources."unique-filename-1.1.1" + sources."unique-slug-2.0.2" + sources."validate-npm-package-name-3.0.0" + sources."which-2.0.2" ]; }) - sources."yeoman-generator-5.8.0" + sources."yeoman-generator-5.9.0" sources."yocto-queue-0.1.0" (sources."yosay-2.0.2" // { dependencies = [ @@ -114264,27 +114538,28 @@ in "@gitbeaker/cli" = nodeEnv.buildNodePackage { name = "_at_gitbeaker_slash_cli"; packageName = "@gitbeaker/cli"; - version = "38.3.0"; + version = "38.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-38.3.0.tgz"; - sha512 = "mrHiz/X1oW9oTeh8Himb4CbqQPwnNRh3WONFKkC4KbEqy1eoAeME2YL6Ob8Pu7NjD+XdwLYHZ3jQqgjGgTkGgg=="; + url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-38.7.0.tgz"; + sha512 = "GcFt2VklJ/4x0FHv9cSOJEMeK6oS/sFBntL6V93mNBnwkbsPhtKTXYROfUozIyXW4VoN4PFEUF/viWAkez32NQ=="; }; dependencies = [ - sources."@gitbeaker/core-38.3.0" - sources."@gitbeaker/requester-utils-38.3.0" - sources."@gitbeaker/rest-38.3.0" + sources."@gitbeaker/core-38.7.0" + sources."@gitbeaker/requester-utils-38.7.0" + sources."@gitbeaker/rest-38.7.0" sources."ansi-styles-4.3.0" sources."call-bind-1.0.2" sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."object-inspect-1.12.3" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."side-channel-1.0.4" sources."supports-color-7.2.0" sources."sywac-1.3.0" @@ -114303,10 +114578,10 @@ in gitmoji-cli = nodeEnv.buildNodePackage { name = "gitmoji-cli"; packageName = "gitmoji-cli"; - version = "8.2.2"; + version = "8.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-8.2.2.tgz"; - sha512 = "/evkdtq5D8IBOAnEW6mQFptZwKg3qFDAHcNzowNonu/nYecsYtRGyCk2UVWFMEdjQwCHw075xiwHo1spzKKmZA=="; + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-8.2.3.tgz"; + sha512 = "4hMJQWKNRHTf6wwj9SyVmca1C1e5UonEt8k7iMTmZksdeehYg4d1UvKz808pRVwYfJx1HMts/Ie8mHmL2IxHJA=="; }; dependencies = [ sources."@babel/code-frame-7.21.4" @@ -114355,9 +114630,11 @@ in sources."bl-4.1.0" (sources."boxen-7.1.0" // { dependencies = [ + sources."ansi-regex-6.0.1" sources."ansi-styles-6.2.1" sources."emoji-regex-9.2.2" sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" sources."wrap-ansi-8.1.0" ]; }) @@ -114481,13 +114758,12 @@ in sources."indent-string-5.0.0" sources."inherits-2.0.4" sources."ini-2.0.0" - (sources."inquirer-9.2.2" // { + (sources."inquirer-9.2.5" // { dependencies = [ sources."is-unicode-supported-0.1.0" (sources."ora-5.4.1" // { dependencies = [ sources."chalk-4.1.2" - sources."strip-ansi-6.0.1" ]; }) ]; @@ -114495,13 +114771,14 @@ in (sources."inquirer-autocomplete-prompt-3.0.0" // { dependencies = [ sources."ansi-escapes-6.2.0" - sources."type-fest-3.10.0" + sources."run-async-2.4.1" + sources."type-fest-3.11.0" ]; }) sources."ip-1.1.8" sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-3.0.0" sources."is-installed-globally-0.4.0" sources."is-interactive-1.0.0" @@ -114539,7 +114816,7 @@ in sources."map-obj-4.3.0" (sources."meow-11.0.0" // { dependencies = [ - sources."type-fest-3.10.0" + sources."type-fest-3.11.0" ]; }) sources."merge-stream-2.0.0" @@ -114562,14 +114839,16 @@ in }) sources."onetime-6.0.0" sources."optionator-0.8.3" - (sources."ora-6.3.0" // { + (sources."ora-6.3.1" // { dependencies = [ + sources."ansi-regex-6.0.1" sources."cli-cursor-4.0.0" sources."is-interactive-2.0.0" sources."log-symbols-5.1.0" sources."mimic-fn-2.1.0" sources."onetime-5.1.2" sources."restore-cursor-4.0.0" + sources."strip-ansi-7.0.1" ]; }) sources."os-tmpdir-1.0.2" @@ -114621,11 +114900,11 @@ in sources."onetime-5.1.2" ]; }) - sources."run-async-2.4.1" + sources."run-async-3.0.0" sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."semver-diff-4.0.0" sources."setprototypeof-1.2.0" sources."shebang-command-2.0.0" @@ -114650,17 +114929,9 @@ in sources."buffer-6.0.3" ]; }) - (sources."string-width-4.2.3" // { - dependencies = [ - sources."strip-ansi-6.0.1" - ]; - }) + sources."string-width-4.2.3" sources."string_decoder-1.3.0" - (sources."strip-ansi-7.0.1" // { - dependencies = [ - sources."ansi-regex-6.0.1" - ]; - }) + sources."strip-ansi-6.0.1" sources."strip-final-newline-3.0.0" sources."strip-indent-4.0.0" sources."strip-json-comments-2.0.1" @@ -114670,11 +114941,10 @@ in sources."tmp-0.0.33" sources."toidentifier-1.0.1" sources."trim-newlines-4.1.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-check-0.3.2" sources."type-fest-2.19.0" sources."typedarray-to-buffer-3.1.5" - sources."typescript-5.0.4" sources."unique-string-3.0.0" sources."universalify-0.1.2" sources."unpipe-1.0.0" @@ -114683,23 +114953,21 @@ in sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" sources."validator-13.9.0" - sources."vm2-3.9.17" + sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."web-streams-polyfill-3.2.1" sources."when-exit-2.1.0" sources."which-2.0.2" (sources."widest-line-4.0.1" // { dependencies = [ + sources."ansi-regex-6.0.1" sources."emoji-regex-9.2.2" sources."string-width-5.1.2" + sources."strip-ansi-7.0.1" ]; }) sources."word-wrap-1.2.3" - (sources."wrap-ansi-6.2.0" // { - dependencies = [ - sources."strip-ansi-6.0.1" - ]; - }) + sources."wrap-ansi-6.2.0" sources."write-file-atomic-3.0.3" sources."xdg-basedir-5.1.0" sources."xregexp-2.0.0" @@ -114720,10 +114988,10 @@ in glob = nodeEnv.buildNodePackage { name = "glob"; packageName = "glob"; - version = "10.2.3"; + version = "10.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-10.2.3.tgz"; - sha512 = "Kb4rfmBVE3eQTAimgmeqc2LwSnN0wIOkkUL6HmxEFxNJ4fHghYHVbFba/HcGcRjE6s9KoMNK3rSOwkL4PioZjg=="; + url = "https://registry.npmjs.org/glob/-/glob-10.2.5.tgz"; + sha512 = "Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA=="; }; dependencies = [ sources."@isaacs/cliui-8.0.2" @@ -114743,9 +115011,9 @@ in sources."jackspeak-2.2.0" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" - sources."minipass-5.0.0" + sources."minipass-6.0.2" sources."path-key-3.1.1" - sources."path-scurry-1.8.0" + sources."path-scurry-1.9.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.0.2" @@ -115067,7 +115335,7 @@ in (sources."@graphql-tools/import-6.7.18" // { dependencies = [ sources."@graphql-tools/utils-9.2.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@graphql-tools/json-file-loader-6.2.6" // { @@ -115079,7 +115347,7 @@ in }) (sources."camel-case-4.1.2" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) ]; @@ -115095,7 +115363,7 @@ in dependencies = [ sources."@graphql-tools/merge-8.3.1" sources."@graphql-tools/utils-8.9.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) (sources."@graphql-tools/url-loader-6.10.1" // { @@ -115126,7 +115394,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -115258,7 +115526,7 @@ in sources."function-bind-1.1.1" sources."functions-have-names-1.2.3" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."getpass-0.1.7" sources."glob-7.2.3" @@ -115287,6 +115555,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."http-cache-semantics-4.1.1" @@ -115382,7 +115651,7 @@ in }) (sources."lower-case-2.0.2" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) sources."lowercase-keys-1.0.1" @@ -115409,7 +115678,7 @@ in sources."nice-try-1.0.5" (sources."no-case-3.0.4" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) sources."node-emoji-1.10.0" @@ -115468,7 +115737,7 @@ in sources."parse-json-5.2.0" (sources."pascal-case-3.1.2" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) sources."passwd-user-3.0.0" @@ -115639,15 +115908,15 @@ in sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.3" sources."@repeaterjs/repeater-3.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/parse-json-4.0.0" sources."@types/ws-8.5.4" - sources."@vue/compiler-core-3.3.2" - sources."@vue/compiler-dom-3.3.2" - sources."@vue/compiler-sfc-3.3.2" - sources."@vue/compiler-ssr-3.3.2" - sources."@vue/reactivity-transform-3.3.2" - sources."@vue/shared-3.3.2" + sources."@vue/compiler-core-3.3.4" + sources."@vue/compiler-dom-3.3.4" + sources."@vue/compiler-sfc-3.3.4" + sources."@vue/compiler-ssr-3.3.4" + sources."@vue/reactivity-transform-3.3.4" + sources."@vue/shared-3.3.4" sources."@whatwg-node/events-0.0.3" sources."@whatwg-node/fetch-0.8.8" sources."@whatwg-node/node-fetch-0.3.6" @@ -115771,7 +116040,7 @@ in sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."ts-node-9.1.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."unixify-1.0.0" sources."urlpattern-polyfill-8.0.2" @@ -115875,7 +116144,7 @@ in sources."@oclif/config-1.17.0" sources."@oclif/errors-1.3.4" sources."@oclif/linewrap-1.0.0" - (sources."@oclif/parser-3.8.10" // { + (sources."@oclif/parser-3.8.11" // { dependencies = [ sources."@oclif/errors-1.3.6" ]; @@ -115905,7 +116174,7 @@ in sources."@peculiar/webcrypto-1.4.3" sources."@repeaterjs/repeater-3.0.4" sources."@types/json-schema-7.0.9" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/ws-8.5.4" sources."@whatwg-node/events-0.0.3" sources."@whatwg-node/fetch-0.8.8" @@ -116132,7 +116401,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.1.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."send-0.16.2" // { dependencies = [ sources."debug-2.6.9" @@ -116174,7 +116443,7 @@ in sources."tr46-0.0.3" sources."tree-kit-0.7.4" sources."treeify-1.1.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-is-1.6.18" sources."uniq-1.0.1" sources."universalify-0.1.2" @@ -116243,7 +116512,7 @@ in sources."ini-1.3.8" sources."interpret-1.1.0" sources."is-absolute-1.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -116339,8 +116608,9 @@ in sources."forwarded-0.2.0" sources."fresh-0.5.2" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."http-errors-2.0.0" sources."iconv-lite-0.4.24" @@ -116514,8 +116784,7 @@ in }) sources."systeminformation-5.17.12" sources."term-canvas-0.0.5" - sources."type-fest-3.10.0" - sources."typescript-5.0.4" + sources."type-fest-3.11.0" sources."wordwrap-0.0.3" sources."x256-0.0.2" sources."xml2js-0.4.23" @@ -116715,7 +116984,7 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-value-2.0.6" sources."glob-7.2.3" (sources."glob-parent-3.1.0" // { @@ -116733,6 +117002,7 @@ in sources."gulplog-1.0.0" sources."has-1.0.3" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -116752,7 +117022,7 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" @@ -117126,7 +117396,7 @@ in sources."fragment-cache-0.2.1" sources."function-bind-1.1.1" sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-value-2.0.6" sources."global-modules-1.0.0" sources."global-prefix-1.0.2" @@ -117135,6 +117405,7 @@ in sources."gulplog-1.0.0" sources."has-1.0.3" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -117156,7 +117427,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -117497,9 +117768,10 @@ in sources."eventemitter3-4.0.7" sources."follow-redirects-1.15.2" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."he-1.2.0" sources."html-encoding-sniffer-3.0.0" @@ -117513,7 +117785,7 @@ in sources."object-inspect-1.12.3" sources."opener-1.5.2" sources."portfinder-1.0.32" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."requires-port-1.0.0" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" @@ -117724,7 +117996,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.46" + sources."@types/node-14.18.47" sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -117734,7 +118006,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1377.0" + sources."aws-sdk-2.1381.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."base64-js-1.5.1" @@ -117784,12 +118056,13 @@ in sources."form-data-2.3.3" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."getpass-0.1.7" sources."gopd-1.0.1" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."htmlparser2-3.10.1" @@ -118362,7 +118635,7 @@ in sources."is-wsl-2.2.0" sources."isexe-2.0.0" sources."jquery-3.7.0" - sources."jquery.terminal-2.35.3" + sources."jquery.terminal-2.36.0" sources."keyboardevent-key-polyfill-1.1.0" sources."line-reader-0.4.0" sources."nice-try-1.0.5" @@ -118435,8 +118708,8 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@selderee/plugin-htmlparser2-0.11.0" - sources."@types/node-20.1.3" - (sources."@types/node-fetch-2.6.3" // { + sources."@types/node-20.2.1" + (sources."@types/node-fetch-2.6.4" // { dependencies = [ sources."form-data-3.0.1" ]; @@ -118642,7 +118915,7 @@ in sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."yallist-4.0.0" ]; @@ -118650,7 +118923,7 @@ in sources."to-regex-range-5.0.1" sources."tough-cookie-4.1.2" sources."tr46-0.0.3" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-0.0.6" sources."tunnel-agent-0.6.0" sources."turndown-7.1.2" @@ -118734,7 +119007,7 @@ in sources."ansi-styles-3.2.1" (sources."ast-types-0.13.4" // { dependencies = [ - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; }) sources."astral-regex-2.0.0" @@ -118812,13 +119085,14 @@ in ]; }) sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."get-uri-3.0.2" sources."glob-7.2.3" sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" @@ -118918,7 +119192,7 @@ in sources."proxy-agent-4.0.1" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."raw-body-2.5.2" sources."readable-stream-3.6.2" sources."restore-cursor-2.0.0" @@ -119026,10 +119300,10 @@ in jake = nodeEnv.buildNodePackage { name = "jake"; packageName = "jake"; - version = "10.8.5"; + version = "10.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz"; - sha512 = "sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw=="; + url = "https://registry.npmjs.org/jake/-/jake-10.8.6.tgz"; + sha512 = "G43Ub9IYEFfu72sua6rzooi8V8Gz2lkfk48rW20vEWCGizeaEPlKB1Kh8JIA84yQbiAEfqlPmSpGgCKKxH3rDA=="; }; dependencies = [ sources."ansi-styles-4.3.0" @@ -119056,7 +119330,6 @@ in buildInputs = globalBuildInputs; meta = { description = "JavaScript build tool, similar to Make or Rake"; - homepage = "https://github.com/jakejs/jake#readme"; license = "Apache-2.0"; }; production = true; @@ -119339,13 +119612,13 @@ in sources."npmlog-5.0.1" sources."readable-stream-3.6.2" sources."rimraf-3.0.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."string-width-4.2.3" ]; }) (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."@npmcli/move-file-1.1.2" // { @@ -119356,7 +119629,7 @@ in }) sources."@tootallnate/once-2.0.0" sources."@types/nanoid-3.0.0" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/ws-8.5.4" sources."abab-2.0.6" sources."abbrev-1.1.1" @@ -119673,7 +119946,7 @@ in sources."fstream-1.0.12" sources."function-bind-1.1.1" sources."gauge-1.2.7" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-prototype-chain-1.0.1" sources."get-stdin-5.0.1" sources."getpass-0.1.7" @@ -119689,6 +119962,7 @@ in sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -119931,7 +120205,7 @@ in sources."no-case-2.3.2" (sources."node-abi-3.40.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."node-addon-api-4.3.0" @@ -119952,7 +120226,7 @@ in sources."npmlog-6.0.2" sources."readable-stream-3.6.2" sources."rimraf-3.0.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."string-width-4.2.3" sources."which-2.0.2" ]; @@ -119960,7 +120234,7 @@ in sources."node-gyp-build-4.6.0" (sources."node-notifier-10.0.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" sources."uuid-8.3.2" sources."which-2.0.2" ]; @@ -120074,7 +120348,7 @@ in sources."decompress-response-6.0.0" sources."mimic-response-3.1.0" sources."node-addon-api-5.1.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."simple-get-4.0.1" ]; }) @@ -120202,7 +120476,7 @@ in sources."tr46-3.0.0" sources."traverse-0.3.9" sources."tree-kit-0.7.4" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" @@ -120465,10 +120739,10 @@ in json-diff = nodeEnv.buildNodePackage { name = "json-diff"; packageName = "json-diff"; - version = "1.0.3"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/json-diff/-/json-diff-1.0.3.tgz"; - sha512 = "W0yk/xzjz7bag9v9eS4qthvPG4O07uxNeXwirhvcOqmX4w8HLtB/Pw76o5Z7Pblwvf4vpCi4+iHOlHDnmav/rA=="; + url = "https://registry.npmjs.org/json-diff/-/json-diff-1.0.6.tgz"; + sha512 = "tcFIPRdlc35YkYdGxcamJjllUhXWv4n2rK9oJ2RsAzV4FBkuV4ojKEDgcZ+kpKxDmJKv+PFK65+1tVVOnSeEqA=="; }; dependencies = [ sources."@ewoudenberg/difflib-0.1.0" @@ -120512,9 +120786,10 @@ in sources."form-data-4.0.0" sources."formidable-2.1.2" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."graphlib-2.1.8" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."hexoid-1.0.0" sources."inherits-2.0.4" @@ -120531,10 +120806,10 @@ in sources."once-1.4.0" sources."path-loader-1.0.12" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."side-channel-1.0.4" sources."slash-3.0.0" sources."sprintf-js-1.0.3" @@ -120572,7 +120847,7 @@ in sources."ms-2.1.2" ]; }) - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" (sources."@humanwhocodes/config-array-0.11.8" // { dependencies = [ sources."debug-4.3.4" @@ -120605,7 +120880,7 @@ in sources."brace-expansion-1.1.11" (sources."builtins-5.0.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."bytes-3.1.2" @@ -120651,7 +120926,7 @@ in sources."escalade-3.1.1" sources."escape-html-1.0.3" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.40.0" // { + (sources."eslint-8.41.0" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -120686,7 +120961,7 @@ in }) (sources."eslint-plugin-n-15.7.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."eslint-plugin-promise-6.1.1" @@ -120738,7 +121013,7 @@ in sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stdin-8.0.0" sources."get-symbol-description-1.0.0" sources."glob-7.2.3" @@ -120747,7 +121022,7 @@ in sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."graceful-fs-4.2.11" - sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-flag-4.0.0" @@ -120769,7 +121044,7 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -120787,7 +121062,6 @@ in sources."isarray-0.0.1" sources."isexe-2.0.0" sources."jju-1.4.0" - sources."js-sdsl-4.4.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-parse-better-errors-1.0.2" @@ -121135,7 +121409,7 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-value-2.0.6" sources."getpass-0.1.7" sources."glob-base-0.3.0" @@ -121146,6 +121420,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-ansi-2.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" (sources."has-value-1.0.0" // { dependencies = [ @@ -121179,7 +121454,7 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -121569,7 +121844,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.24" + sources."@oclif/command-1.8.25" sources."@oclif/config-1.18.8" sources."@oclif/errors-1.3.6" (sources."@oclif/help-1.0.5" // { @@ -121579,7 +121854,7 @@ in ]; }) sources."@oclif/linewrap-1.0.0" - sources."@oclif/parser-3.8.10" + sources."@oclif/parser-3.8.11" (sources."@oclif/plugin-help-3.3.1" // { dependencies = [ sources."@oclif/config-1.18.2" @@ -121592,7 +121867,7 @@ in ]; }) sources."@oclif/screen-1.0.4" - (sources."@putdotio/api-client-8.34.4" // { + (sources."@putdotio/api-client-8.36.1" // { dependencies = [ sources."axios-0.21.4" ]; @@ -121604,7 +121879,6 @@ in sources."ansicolors-0.3.2" sources."argparse-1.0.10" sources."array-union-2.1.0" - sources."asynckit-0.4.0" (sources."axios-0.19.2" // { dependencies = [ sources."debug-3.1.0" @@ -121628,7 +121902,6 @@ in sources."cli-width-3.0.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."combined-stream-1.0.8" (sources."conf-6.2.4" // { dependencies = [ sources."semver-6.3.0" @@ -121646,7 +121919,6 @@ in }) sources."debounce-fn-3.0.1" sources."debug-4.3.4" - sources."delayed-stream-1.0.0" sources."dir-glob-3.0.1" sources."dot-prop-5.3.0" sources."dotenv-8.6.0" @@ -121673,15 +121945,15 @@ in sources."fill-range-7.0.1" sources."find-up-3.0.0" sources."follow-redirects-1.15.2" - sources."form-data-3.0.1" sources."fs-extra-8.1.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-parent-5.1.2" sources."globby-11.1.0" sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."hyperlinker-1.0.0" sources."iconv-lite-0.4.24" @@ -121713,8 +121985,6 @@ in }) sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."mime-db-1.52.0" - sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" sources."moment-2.29.4" sources."ms-2.1.2" @@ -121741,7 +122011,7 @@ in sources."picomatch-2.3.1" sources."pkg-up-3.1.0" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."queue-microtask-1.2.3" sources."redeyed-2.1.1" sources."restore-cursor-3.1.0" @@ -121754,7 +122024,7 @@ in ]; }) sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" @@ -121768,14 +122038,13 @@ in sources."through-2.3.8" sources."tmp-0.0.33" sources."to-regex-range-5.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-2.7.2" sources."type-fest-0.21.3" sources."typedarray-to-buffer-3.1.5" sources."universalify-0.1.2" sources."uri-js-4.4.1" sources."urijs-1.19.11" - sources."uuid-8.3.2" sources."which-1.3.1" sources."widest-line-3.1.0" sources."wrap-ansi-7.0.0" @@ -121826,7 +122095,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-20.1.3" + sources."@types/node-20.2.1" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -121885,11 +122154,12 @@ in sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."graceful-fs-4.2.11" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."http-errors-2.0.0" sources."http-proxy-1.18.1" @@ -122050,7 +122320,7 @@ in sources."semver-6.3.0" ]; }) - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -122141,7 +122411,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."canvas-2.11.2" sources."chalk-2.4.2" sources."chardet-1.5.1" @@ -122201,7 +122471,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -122274,7 +122544,7 @@ in sources."gauge-3.0.2" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-symbol-description-1.0.0" sources."github-from-package-0.0.0" sources."glob-7.2.3" @@ -122396,7 +122666,7 @@ in (sources."node-abi-3.40.0" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -122406,7 +122676,7 @@ in (sources."node-notifier-10.0.1" // { dependencies = [ sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yallist-4.0.0" ]; }) @@ -122421,7 +122691,7 @@ in sources."object.getownpropertydescriptors-2.1.6" sources."on-finished-2.4.1" sources."once-1.4.0" - sources."openpgp-5.8.0" + sources."openpgp-5.9.0" sources."optionator-0.8.3" sources."p-is-promise-3.0.0" sources."p-limit-2.3.0" @@ -122461,7 +122731,7 @@ in sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."lru-cache-6.0.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."supports-color-7.2.0" sources."yallist-4.0.0" ]; @@ -122501,7 +122771,7 @@ in sources."requires-port-1.0.0" (sources."resolve-1.22.3" // { dependencies = [ - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" ]; }) sources."reusify-1.0.4" @@ -122562,7 +122832,7 @@ in sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."symbol-tree-3.2.4" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."yallist-4.0.0" ]; @@ -122578,7 +122848,7 @@ in sources."toidentifier-1.0.1" sources."tough-cookie-4.1.2" sources."tr46-0.0.3" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."type-check-0.3.2" sources."type-is-1.6.18" @@ -123290,7 +123560,7 @@ in }) sources."@npmcli/name-from-folder-2.0.0" sources."@npmcli/node-gyp-3.0.0" - sources."@npmcli/package-json-3.0.0" + sources."@npmcli/package-json-3.1.0" (sources."@npmcli/promise-spawn-6.0.2" // { dependencies = [ sources."which-3.0.1" @@ -123329,10 +123599,10 @@ in sources."@nrwl/nx-win32-x64-msvc-15.9.4" sources."@nrwl/tao-15.9.4" sources."@octokit/auth-token-3.0.3" - sources."@octokit/core-4.2.0" + sources."@octokit/core-4.2.1" sources."@octokit/endpoint-7.0.5" sources."@octokit/graphql-5.0.5" - sources."@octokit/openapi-types-17.1.2" + sources."@octokit/openapi-types-17.2.0" sources."@octokit/plugin-enterprise-rest-6.0.1" (sources."@octokit/plugin-paginate-rest-3.1.0" // { dependencies = [ @@ -123347,10 +123617,10 @@ in sources."@octokit/types-8.2.1" ]; }) - sources."@octokit/request-6.2.3" + sources."@octokit/request-6.2.5" sources."@octokit/request-error-3.0.3" sources."@octokit/rest-19.0.3" - sources."@octokit/types-9.2.2" + sources."@octokit/types-9.2.3" sources."@parcel/watcher-2.0.4" sources."@pkgjs/parseargs-0.11.0" sources."@sigstore/protobuf-specs-0.1.0" @@ -123358,17 +123628,17 @@ in sources."@swc-node/core-1.10.3" sources."@swc-node/register-1.6.5" sources."@swc-node/sourcemap-support-0.3.0" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" @@ -123382,7 +123652,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@yarnpkg/lockfile-1.1.0" - (sources."@yarnpkg/parsers-3.0.0-rc.43" // { + (sources."@yarnpkg/parsers-3.0.0-rc.44" // { dependencies = [ sources."argparse-1.0.10" sources."js-yaml-3.14.1" @@ -123434,7 +123704,7 @@ in sources."buffer-from-1.1.2" sources."builtins-5.0.1" sources."byte-size-7.0.0" - (sources."cacache-17.1.0" // { + (sources."cacache-17.1.3" // { dependencies = [ sources."minipass-5.0.0" sources."ssri-10.0.4" @@ -123476,7 +123746,13 @@ in sources."config-chain-1.1.12" sources."console-control-strings-1.1.0" sources."conventional-changelog-angular-5.0.12" - sources."conventional-changelog-core-4.2.4" + (sources."conventional-changelog-core-4.2.4" // { + dependencies = [ + sources."hosted-git-info-4.1.0" + sources."lru-cache-6.0.0" + sources."normalize-package-data-3.0.3" + ]; + }) sources."conventional-changelog-preset-loader-2.3.4" (sources."conventional-changelog-writer-5.0.1" // { dependencies = [ @@ -123610,10 +123886,10 @@ in sources."git-up-7.0.0" sources."git-url-parse-13.1.0" sources."gitconfiglocal-1.0.0" - (sources."glob-10.2.3" // { + (sources."glob-10.2.5" // { dependencies = [ sources."minimatch-9.0.0" - sources."minipass-5.0.0" + sources."minipass-6.0.2" ]; }) sources."glob-parent-5.1.2" @@ -123665,7 +123941,7 @@ in sources."ip-2.0.0" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -123687,7 +123963,12 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."jackspeak-2.2.0" - sources."jake-10.8.5" + (sources."jake-10.8.6" // { + dependencies = [ + sources."brace-expansion-1.1.11" + sources."minimatch-3.1.2" + ]; + }) sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-parse-better-errors-1.0.2" @@ -123730,7 +124011,6 @@ in dependencies = [ sources."ci-info-3.8.0" sources."minipass-5.0.0" - sources."normalize-package-data-5.0.0" sources."npm-package-arg-10.1.0" sources."ssri-10.0.4" sources."validate-npm-package-name-5.0.0" @@ -123763,12 +124043,15 @@ in (sources."meow-8.1.2" // { dependencies = [ sources."find-up-4.1.0" - sources."hosted-git-info-2.8.9" + sources."hosted-git-info-4.1.0" sources."locate-path-5.0.0" + sources."lru-cache-6.0.0" + sources."normalize-package-data-3.0.3" sources."p-limit-2.3.0" sources."p-locate-4.1.0" (sources."read-pkg-5.2.0" // { dependencies = [ + sources."hosted-git-info-2.8.9" sources."normalize-package-data-2.5.0" sources."type-fest-0.6.0" ]; @@ -123875,12 +124158,7 @@ in sources."abbrev-2.0.0" ]; }) - (sources."normalize-package-data-3.0.3" // { - dependencies = [ - sources."hosted-git-info-4.1.0" - sources."lru-cache-6.0.0" - ]; - }) + sources."normalize-package-data-5.0.0" sources."npm-bundled-3.0.0" sources."npm-install-checks-6.1.1" sources."npm-normalize-package-bin-3.0.1" @@ -123960,7 +124238,6 @@ in sources."@npmcli/run-script-6.0.2" sources."ignore-walk-6.0.3" sources."minimatch-9.0.0" - sources."normalize-package-data-5.0.0" sources."npm-package-arg-10.1.0" sources."npm-packlist-7.0.4" sources."read-package-json-6.0.3" @@ -123986,10 +124263,10 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - (sources."path-scurry-1.8.0" // { + (sources."path-scurry-1.9.2" // { dependencies = [ sources."lru-cache-9.1.1" - sources."minipass-5.0.0" + sources."minipass-6.0.2" ]; }) (sources."path-type-3.0.0" // { @@ -124008,7 +124285,7 @@ in sources."p-locate-4.1.0" ]; }) - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" (sources."pretty-format-29.4.3" // { dependencies = [ sources."ansi-styles-5.2.0" @@ -124082,7 +124359,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -124092,7 +124369,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.5.0" + sources."sigstore-1.5.2" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -124146,7 +124423,7 @@ in sources."treeverse-3.0.0" sources."trim-newlines-3.0.1" sources."tsconfig-paths-4.2.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tuf-js-1.1.6" sources."type-fest-0.21.3" sources."typedarray-0.0.6" @@ -124232,7 +124509,7 @@ in sources."sax-1.2.4" sources."semver-5.7.1" sources."source-map-0.6.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" ]; buildInputs = globalBuildInputs; meta = { @@ -124748,7 +125025,7 @@ in sources."fresh-0.5.2" sources."fsevents-1.2.13" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-value-2.0.6" sources."getpass-0.1.7" sources."github-slugger-1.5.0" @@ -124764,6 +125041,7 @@ in ]; }) sources."has-cors-1.1.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" (sources."has-value-1.0.0" // { dependencies = [ @@ -125191,7 +125469,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.5" sources."@types/get-stdin-5.0.1" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -125285,7 +125563,7 @@ in sources."entities-3.0.1" sources."foreground-child-3.1.1" sources."get-stdin-9.0.0" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."ignore-5.2.4" sources."ini-3.0.1" sources."is-fullwidth-code-point-3.0.0" @@ -125301,9 +125579,9 @@ in sources."mdurl-1.0.1" sources."minimatch-9.0.0" sources."minimist-1.2.8" - sources."minipass-5.0.0" + sources."minipass-6.0.2" sources."path-key-3.1.1" - sources."path-scurry-1.8.0" + sources."path-scurry-1.9.2" sources."run-con-1.2.11" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -125734,7 +126012,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -125821,7 +126099,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.392" + sources."electron-to-chromium-1.4.402" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -125945,7 +126223,7 @@ in sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" sources."glob-7.1.2" @@ -126017,7 +126295,7 @@ in sources."is-buffer-1.1.6" sources."is-callable-1.2.7" sources."is-ci-1.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.5" sources."is-descriptor-1.0.2" @@ -126723,7 +127001,7 @@ in sources."inherits-2.0.4" sources."inquirer-0.12.0" sources."interpret-1.4.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-1.0.0" sources."is-my-ip-valid-1.0.1" sources."is-my-json-valid-2.20.6" @@ -126946,7 +127224,7 @@ in ]; }) sources."@puppeteer/browsers-0.5.0" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-regex-5.0.1" @@ -127184,9 +127462,10 @@ in sources."form-data-4.0.0" sources."formidable-2.1.2" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."graphlib-2.1.8" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."hexoid-1.0.0" sources."inherits-2.0.4" @@ -127208,10 +127487,10 @@ in sources."once-1.4.0" sources."path-loader-1.0.12" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."side-channel-1.0.4" sources."slash-3.0.0" sources."sprintf-js-1.0.3" @@ -127377,7 +127656,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/stack-utils-2.0.1" sources."@types/yargs-16.0.5" sources."@types/yargs-parser-21.0.0" @@ -127595,7 +127874,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -127706,7 +127985,7 @@ in sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.3" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."simple-swizzle-0.2.2" sources."stack-trace-0.0.10" sources."string_decoder-1.3.0" @@ -127835,7 +128114,7 @@ in sources."rimraf-3.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -127849,7 +128128,7 @@ in sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" ]; @@ -127977,7 +128256,7 @@ in sources."fstream-ignore-1.0.5" sources."function-bind-1.1.1" sources."gauge-2.7.4" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stdin-4.0.1" (sources."getpass-0.1.7" // { dependencies = [ @@ -127989,6 +128268,7 @@ in sources."har-schema-1.0.5" sources."har-validator-4.2.1" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."hawk-3.1.3" @@ -128005,7 +128285,7 @@ in sources."invert-kv-1.0.0" sources."ipaddr.js-1.9.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-1.0.0" sources."is-typedarray-1.0.0" @@ -128321,7 +128601,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -128456,12 +128736,13 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-3.0.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" sources."glob-7.2.3" sources."got-11.8.5" sources."graceful-fs-4.2.11" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."hash-sum-2.0.0" @@ -128660,7 +128941,7 @@ in sources."toidentifier-1.0.1" sources."tough-cookie-4.0.0" sources."tr46-0.0.3" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-is-1.6.18" sources."typedarray-0.0.6" sources."uglify-js-3.16.3" @@ -128762,7 +129043,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-1.0.0" sources."is-typedarray-1.0.0" sources."isarray-1.0.0" @@ -128857,7 +129138,7 @@ in }) sources."strip-ansi-3.0.1" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."mkdirp-1.0.4" ]; @@ -128989,7 +129270,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -129161,7 +129442,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -129406,7 +129687,7 @@ in sources."rxjs-6.6.7" sources."safer-buffer-2.1.2" sources."scoped-regex-2.1.0" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -129483,10 +129764,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "9.6.6"; + version = "9.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-9.6.6.tgz"; - sha512 = "GIe+nCIw8EJIv52IXDVETSGnx7p9Ttg4VsaXNIeT4eaKZpIZ635rKC/uzQ6nnc4ibCUmESoK3PrXG0/puoqNcg=="; + url = "https://registry.npmjs.org/npm/-/npm-9.6.7.tgz"; + sha512 = "xwkU1hSZl6Qrkfw3fhxVmMfNWu0A67+aZZs5gz/LoehCeAPkVhQDB90Z2NFoPSI1KpfBWCJ6Bp28wXzv5U5/2g=="; }; buildInputs = globalBuildInputs; meta = { @@ -129570,10 +129851,10 @@ in sources."braces-3.0.2" sources."buffer-from-1.1.2" sources."builtins-5.0.1" - (sources."cacache-17.1.0" // { + (sources."cacache-17.1.3" // { dependencies = [ sources."@npmcli/fs-3.1.0" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."minipass-5.0.0" sources."unique-filename-3.0.0" sources."unique-slug-4.0.0" @@ -129683,10 +129964,10 @@ in sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-4.1.0" + sources."ini-4.1.1" sources."ip-2.0.0" sources."is-ci-3.0.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -129818,10 +130099,10 @@ in sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" - (sources."path-scurry-1.8.0" // { + (sources."path-scurry-1.9.2" // { dependencies = [ sources."lru-cache-9.1.1" - sources."minipass-5.0.0" + sources."minipass-6.0.2" ]; }) sources."path-type-4.0.0" @@ -129844,8 +130125,8 @@ in sources."rc-config-loader-4.1.2" (sources."read-package-json-6.0.3" // { dependencies = [ - sources."glob-10.2.3" - sources."minipass-5.0.0" + sources."glob-10.2.5" + sources."minipass-6.0.2" ]; }) sources."read-package-json-fast-3.0.2" @@ -129858,16 +130139,16 @@ in sources."responselike-3.0.0" sources."retry-0.12.0" sources."reusify-1.0.4" - (sources."rimraf-5.0.0" // { + (sources."rimraf-5.0.1" // { dependencies = [ - sources."glob-10.2.3" - sources."minipass-5.0.0" + sources."glob-10.2.5" + sources."minipass-6.0.2" ]; }) sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -129878,7 +130159,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - (sources."sigstore-1.5.0" // { + (sources."sigstore-1.5.2" // { dependencies = [ sources."make-fetch-happen-11.1.1" sources."minipass-5.0.0" @@ -129908,7 +130189,7 @@ in sources."strip-ansi-6.0.1" sources."strip-ansi-cjs-6.0.1" sources."strip-json-comments-5.0.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ (sources."fs-minipass-2.1.0" // { dependencies = [ @@ -130194,7 +130475,7 @@ in ]; }) sources."@stoplight/better-ajv-errors-1.0.3" - sources."@stoplight/json-3.20.2" + sources."@stoplight/json-3.20.3" (sources."@stoplight/json-ref-readers-1.2.2" // { dependencies = [ sources."tslib-1.14.1" @@ -130217,7 +130498,7 @@ in sources."@stoplight/spectral-functions-1.7.2" sources."@stoplight/spectral-parsers-1.0.2" sources."@stoplight/spectral-ref-resolver-1.0.2" - sources."@stoplight/spectral-ruleset-bundler-1.5.1" + sources."@stoplight/spectral-ruleset-bundler-1.5.2" sources."@stoplight/spectral-ruleset-migrator-1.9.3" sources."@stoplight/spectral-rulesets-1.16.0" (sources."@stoplight/spectral-runtime-1.1.2" // { @@ -130232,7 +130513,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.2" @@ -130251,7 +130532,7 @@ in sources."array-union-2.1.0" sources."as-table-1.0.55" sources."ast-types-0.14.2" - sources."astring-1.8.4" + sources."astring-1.8.5" sources."available-typed-arrays-1.0.5" sources."backslash-0.2.0" sources."balanced-match-1.0.2" @@ -130360,7 +130641,7 @@ in sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" (sources."get-source-2.0.12" // { dependencies = [ sources."data-uri-to-buffer-2.0.2" @@ -130408,7 +130689,7 @@ in sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -130571,7 +130852,7 @@ in sources."toidentifier-1.0.1" sources."tr46-0.0.3" sources."tsconfck-2.1.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-check-0.3.2" sources."typed-array-length-1.0.4" sources."typescript-5.0.4" @@ -130583,7 +130864,7 @@ in sources."utility-types-3.10.0" sources."validate-npm-package-name-3.0.0" sources."validator-13.9.0" - sources."vm2-3.9.17" + sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -130886,7 +131167,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -131019,7 +131300,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.392" + sources."electron-to-chromium-1.4.402" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -131082,7 +131363,7 @@ in sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-port-3.2.0" sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" @@ -131137,7 +131418,7 @@ in sources."acorn-8.8.2" sources."posthtml-0.15.2" sources."posthtml-parser-0.7.2" - sources."terser-5.17.3" + sources."terser-5.17.4" ]; }) (sources."htmlparser2-6.1.0" // { @@ -131172,7 +131453,7 @@ in sources."is-buffer-1.1.6" sources."is-callable-1.2.7" sources."is-color-stop-1.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -131398,7 +131679,7 @@ in sources."postcss-ordered-values-4.1.2" sources."postcss-reduce-initial-4.0.3" sources."postcss-reduce-transforms-4.0.2" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-svgo-4.0.3" sources."postcss-unique-selectors-4.0.1" sources."postcss-value-parser-3.3.1" @@ -131814,7 +132095,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -131864,7 +132145,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.392" + sources."electron-to-chromium-1.4.402" sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -131959,7 +132240,7 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."minimatch-5.1.6" - sources."msgpackr-1.9.1" + sources."msgpackr-1.9.2" (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" @@ -132012,7 +132293,7 @@ in sources."postcss-ordered-values-6.0.0" sources."postcss-reduce-initial-6.0.0" sources."postcss-reduce-transforms-6.0.0" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" (sources."postcss-svgo-6.0.0" // { dependencies = [ sources."svgo-3.0.2" @@ -132067,7 +132348,7 @@ in }) sources."symbol-tree-3.2.4" sources."term-size-2.2.1" - (sources."terser-5.17.3" // { + (sources."terser-5.17.4" // { dependencies = [ sources."commander-2.20.3" ]; @@ -132076,7 +132357,7 @@ in sources."to-regex-range-5.0.1" sources."tough-cookie-2.5.0" sources."tr46-1.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" @@ -132235,7 +132516,7 @@ in sources."gelf-stream-1.1.1" sources."gelfling-0.3.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."getpass-0.1.7" sources."glob-7.2.3" sources."graceful-fs-4.2.11" @@ -132244,6 +132525,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hat-0.0.3" @@ -132355,7 +132637,7 @@ in sources."serve-static-1.15.0" (sources."service-runner-2.9.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" sources."yargs-14.2.3" ]; }) @@ -132586,7 +132868,7 @@ in sources."function-bind-1.1.1" sources."functions-have-names-1.2.3" sources."get-browser-rtc-1.1.0" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stdin-4.0.1" sources."glob-7.2.3" sources."graceful-fs-4.2.11" @@ -132594,6 +132876,7 @@ in sources."has-ansi-2.0.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hat-0.0.3" @@ -132623,7 +132906,7 @@ in sources."ipaddr.js-2.0.1" sources."is-arguments-1.1.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-1.0.0" @@ -132953,7 +133236,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-browser-rtc-1.1.0" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."getpass-0.1.7" sources."glob-7.2.3" sources."graceful-fs-4.2.11" @@ -132966,6 +133249,7 @@ in ]; }) sources."has-cors-1.1.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."hat-0.0.3" sources."http-errors-2.0.0" @@ -133322,14 +133606,14 @@ in sources."require-directory-2.1.1" (sources."resolve-1.22.3" // { dependencies = [ - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" ]; }) sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shellwords-0.1.1" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" @@ -133500,7 +133784,7 @@ in sources."ini-1.3.8" sources."ip-1.1.8" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -133563,7 +133847,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."sax-1.2.4" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" sources."yallist-4.0.0" @@ -133589,7 +133873,7 @@ in sources."systeminformation-5.17.12" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tv4-1.3.0" sources."tx2-1.0.5" sources."type-check-0.3.2" @@ -133602,7 +133886,7 @@ in sources."async-2.6.4" ]; }) - sources."vm2-3.9.17" + sources."vm2-3.9.19" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."ws-7.4.6" @@ -133623,10 +133907,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "8.5.0"; + version = "8.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.5.0.tgz"; - sha512 = "eGki4/2GIMFivfbKHIDo1mP1vFvMi39Mh9TxcBHZcFWj09zGzCYD04e05j/60sUkJ1yyzSAszkchBxp9PSL7Ew=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.5.1.tgz"; + sha512 = "W6elL7Nww0a/MCICkzpkbxW6f99TQuX4DuJoDjWp39X08PKDkEpg4cgj3d6EtgYADcdQWl/eM8NdlLJVE3RgpA=="; }; buildInputs = globalBuildInputs; meta = { @@ -133705,24 +133989,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."ansi-regex-5.0.1" @@ -133789,7 +134073,7 @@ in sources."thenby-1.3.4" sources."to-regex-range-5.0.1" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."universalify-2.0.0" sources."v8-compile-cache-lib-3.0.1" @@ -133844,7 +134128,7 @@ in sources."rc-1.2.8" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."simple-concat-1.0.1" sources."simple-get-4.0.1" sources."string_decoder-1.3.0" @@ -133898,7 +134182,7 @@ in sources."function-bind-1.1.1" sources."has-1.0.3" sources."has-flag-4.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."minimist-1.2.8" sources."nanolru-1.0.0" sources."path-parse-1.0.7" @@ -133944,13 +134228,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "4.14.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-4.14.0.tgz"; - sha512 = "+5dMl1uxMQb4RepndY6AwR9xi1cDcaGFICu+ws6/Nmgt93mFPNj8tYxSfTdmfg+rkNrUId9rk/Ac2vTgLe/oXA=="; + url = "https://registry.npmjs.org/prisma/-/prisma-4.14.1.tgz"; + sha512 = "z6hxzTMYqT9SIKlzD08dhzsLUpxjFKKsLpp5/kBDnSqiOjtUyyl/dC5tzxLcOa3jkEHQ8+RpB/fE3w8bgNP51g=="; }; dependencies = [ - sources."@prisma/engines-4.14.0" + sources."@prisma/engines-4.14.1" ]; buildInputs = globalBuildInputs; meta = { @@ -133965,10 +134249,10 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "4.14.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.14.0.tgz"; - sha512 = "MgTc2WY4zdcy2a659kjXtotjL4YsATLMqDyYf95c9zRYmEX7mpFXRYVMUXQPwkdaWK446wCJltwOBcoO0Lky+A=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.14.1.tgz"; + sha512 = "I9VBVjyTBBEDuluVu+ZuvKyrWYltCzT/qGfeiDObCxWc69xJOYnAB65wKTQZpBD03ZHqThRnlhFtgljRjibYng=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" @@ -134017,7 +134301,7 @@ in sources."browserslist-4.21.5" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -134030,7 +134314,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.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -134334,7 +134618,7 @@ in ]; }) sources."is-buffer-1.1.6" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."json-stable-stringify-0.0.1" @@ -134591,11 +134875,12 @@ in sources."follow-redirects-1.15.2" sources."fs-extra-10.1.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."got-9.6.0" sources."graceful-fs-4.2.11" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."http-cache-semantics-4.1.1" sources."https-proxy-agent-5.0.1" @@ -134630,7 +134915,7 @@ in sources."prepend-http-2.0.0" sources."prompts-2.4.2" sources."pump-3.0.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."rc-1.2.8" sources."readline-sync-1.4.10" sources."register-protocol-win32-1.1.0" @@ -134663,10 +134948,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.308"; + version = "1.1.309"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.308.tgz"; - sha512 = "1jwmLizrz58BloqxVlZc6X2dnBL95hiVfmeJSMOVavy7MDJabFLtQ/JpRP6iOUWjVwJ7JAHn8nSBH/5971WYKg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.309.tgz"; + sha512 = "0v65Hmn8BL585D4gLFqot0sJEVK5Nrih/4RtOpHKAowA6I+Je2Pa8mzXbPyiyiAhg7qAoBs7uwQlmM1GU5h1og=="; }; buildInputs = globalBuildInputs; meta = { @@ -134681,10 +134966,10 @@ in quicktype = nodeEnv.buildNodePackage { name = "quicktype"; packageName = "quicktype"; - version = "23.0.30"; + version = "23.0.36"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype/-/quicktype-23.0.30.tgz"; - sha512 = "1EQPiFvqaLwKJ+ynhqXshud4Yqi1By9aLviylOmnXF8AYuEaFWyJ4zvtafKUhC7TDhIublYzG9uXeHhW3VnROQ=="; + url = "https://registry.npmjs.org/quicktype/-/quicktype-23.0.36.tgz"; + sha512 = "5SM84XTqL+OqbaUdt4b+YW86JCU2HRm1DUfbU54WvJoJxzotVDKRoWEeYz+pZZvju5ULxwnkywZOqmnqTbG6MQ=="; }; dependencies = [ (sources."@75lb/deep-merge-1.1.1" // { @@ -134693,7 +134978,7 @@ in ]; }) sources."@cspotcode/source-map-support-0.8.1" - sources."@glideapps/ts-necessities-2.1.2" + sources."@glideapps/ts-necessities-2.1.3" sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" @@ -134702,25 +134987,25 @@ in sources."typescript-4.9.4" ]; }) - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/json-schema-7.0.11" - sources."@types/node-16.18.29" + sources."@types/node-16.18.31" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.2" @@ -134749,7 +135034,7 @@ in }) sources."concat-map-0.0.1" sources."create-require-1.1.1" - sources."cross-fetch-3.1.5" + sources."cross-fetch-3.1.6" sources."diff-4.0.2" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" @@ -134776,20 +135061,21 @@ in sources."make-error-1.3.6" sources."minimatch-3.1.2" sources."moment-2.29.4" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.11" sources."once-1.4.0" sources."pako-1.0.11" sources."path-equal-1.2.5" sources."path-is-absolute-1.0.1" sources."pluralize-8.0.0" sources."process-0.11.10" - (sources."quicktype-core-23.0.30" // { + (sources."quicktype-core-23.0.36" // { dependencies = [ + sources."@glideapps/ts-necessities-2.1.2" sources."readable-stream-4.3.0" ]; }) - sources."quicktype-graphql-input-23.0.30" - sources."quicktype-typescript-input-23.0.30" + sources."quicktype-graphql-input-23.0.36" + sources."quicktype-typescript-input-23.0.36" sources."readable-stream-4.4.0" sources."require-directory-2.1.1" sources."safe-buffer-5.2.1" @@ -134816,7 +135102,7 @@ in sources."tiny-inflate-1.0.3" sources."tr46-0.0.3" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-4.9.5" sources."typical-4.0.0" sources."unicode-properties-1.4.1" @@ -134880,13 +135166,14 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."gopd-1.0.1" sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."i-0.3.7" @@ -135117,7 +135404,7 @@ in sources."@types/glob-7.2.0" sources."@types/json-schema-7.0.11" sources."@types/minimatch-5.1.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/parse-json-4.0.0" sources."@types/prop-types-15.7.5" sources."@types/q-1.5.5" @@ -135309,7 +135596,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -135530,7 +135817,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -135686,7 +135973,7 @@ in sources."functions-have-names-1.2.3" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-proxy-2.1.0" sources."get-stream-3.0.0" sources."get-symbol-description-1.0.0" @@ -135838,7 +136125,7 @@ in sources."is-buffer-1.1.6" sources."is-callable-1.2.7" sources."is-color-stop-1.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.5" sources."is-deflate-1.0.0" @@ -136201,7 +136488,7 @@ in sources."postcss-value-parser-3.3.1" ]; }) - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."postcss-value-parser-3.3.1" @@ -136252,7 +136539,7 @@ in sources."rc-1.2.8" sources."react-16.14.0" sources."react-dom-16.14.0" - sources."react-fast-compare-3.2.1" + sources."react-fast-compare-3.2.2" sources."react-helmet-6.1.0" (sources."react-hot-loader-4.13.1" // { dependencies = [ @@ -136963,7 +137250,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."saxes-5.0.1" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."set-blocking-2.0.0" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" @@ -136973,7 +137260,7 @@ in sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."symbol-tree-3.2.4" - sources."tar-6.1.14" + sources."tar-6.1.15" sources."tough-cookie-4.1.2" sources."tr46-3.0.0" sources."type-check-0.3.2" @@ -137060,7 +137347,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-14.18.46" + sources."@types/node-14.18.47" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -137101,7 +137388,7 @@ in sources."util-0.10.3" ]; }) - sources."babel-plugin-styled-components-2.1.1" + sources."babel-plugin-styled-components-2.1.3" sources."babel-plugin-syntax-jsx-6.18.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -137130,7 +137417,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" @@ -137167,7 +137454,7 @@ in }) sources."domain-browser-1.2.0" sources."dompurify-2.4.5" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -137349,7 +137636,7 @@ in sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - sources."style-loader-3.3.2" + sources."style-loader-3.3.3" (sources."styled-components-5.3.10" // { dependencies = [ sources."has-flag-3.0.0" @@ -137359,8 +137646,8 @@ in sources."supports-color-7.2.0" sources."swagger2openapi-7.0.8" sources."tapable-2.2.1" - sources."terser-5.17.3" - sources."terser-webpack-plugin-5.3.8" + sources."terser-5.17.4" + sources."terser-webpack-plugin-5.3.9" sources."timers-browserify-2.0.12" sources."to-arraybuffer-1.0.1" sources."to-fast-properties-2.0.0" @@ -137390,7 +137677,7 @@ in sources."vm-browserify-1.1.2" sources."watchpack-2.4.0" sources."webidl-conversions-3.0.1" - sources."webpack-5.82.1" + sources."webpack-5.83.1" sources."webpack-sources-3.2.3" sources."whatwg-url-5.0.0" sources."widest-line-3.1.0" @@ -137463,7 +137750,7 @@ in sources."ink-2.7.1" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-1.1.0" sources."js-tokens-4.0.0" @@ -137681,7 +137968,7 @@ in 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-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."glob-8.1.0" sources."glob-parent-5.1.2" @@ -137690,6 +137977,7 @@ in sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-yarn-2.1.0" sources."highlight.js-11.8.0" @@ -137809,7 +138097,7 @@ in }) sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -137887,10 +138175,10 @@ in rimraf = nodeEnv.buildNodePackage { name = "rimraf"; packageName = "rimraf"; - version = "5.0.0"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz"; - sha512 = "Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g=="; + url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.1.tgz"; + sha512 = "OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg=="; }; dependencies = [ sources."@isaacs/cliui-8.0.2" @@ -137905,15 +138193,15 @@ in sources."eastasianwidth-0.2.0" sources."emoji-regex-9.2.2" sources."foreground-child-3.1.1" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" sources."jackspeak-2.2.0" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" - sources."minipass-5.0.0" + sources."minipass-6.0.2" sources."path-key-3.1.1" - sources."path-scurry-1.8.0" + sources."path-scurry-1.9.2" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.0.2" @@ -137954,10 +138242,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.21.6"; + version = "3.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.21.6.tgz"; - sha512 = "SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.22.0.tgz"; + sha512 = "imsigcWor5Y/dC0rz2q0bBt9PabcL3TORry2hAa6O6BuMvY71bqHyfReAz5qyAqiQATD1m70qdntqBfBQjVWpQ=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -137986,7 +138274,7 @@ in sources."minimatch-3.1.2" ]; }) - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" sources."@hpcc-js/wasm-2.5.0" (sources."@humanwhocodes/config-array-0.11.8" // { dependencies = [ @@ -138004,14 +138292,14 @@ in sources."@types/node-16.11.68" sources."@types/semver-7.5.0" sources."@types/vscode-1.66.0" - sources."@typescript-eslint/eslint-plugin-5.59.5" - sources."@typescript-eslint/parser-5.59.5" - sources."@typescript-eslint/scope-manager-5.59.5" - sources."@typescript-eslint/type-utils-5.59.5" - sources."@typescript-eslint/types-5.59.5" - sources."@typescript-eslint/typescript-estree-5.59.5" - sources."@typescript-eslint/utils-5.59.5" - sources."@typescript-eslint/visitor-keys-5.59.5" + sources."@typescript-eslint/eslint-plugin-5.59.6" + sources."@typescript-eslint/parser-5.59.6" + sources."@typescript-eslint/scope-manager-5.59.6" + sources."@typescript-eslint/type-utils-5.59.6" + sources."@typescript-eslint/types-5.59.6" + sources."@typescript-eslint/typescript-estree-5.59.6" + sources."@typescript-eslint/utils-5.59.6" + sources."@typescript-eslint/visitor-keys-5.59.6" sources."@vscode/test-electron-2.3.2" sources."acorn-8.8.2" sources."acorn-jsx-5.3.2" @@ -138101,7 +138389,7 @@ in sources."entities-4.5.0" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.40.0" // { + (sources."eslint-8.41.0" // { dependencies = [ sources."brace-expansion-1.1.11" sources."eslint-scope-7.2.0" @@ -138143,7 +138431,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."github-from-package-0.0.0" (sources."glob-7.2.3" // { dependencies = [ @@ -138155,8 +138443,10 @@ in sources."globals-13.20.0" sources."globby-11.1.0" sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."hosted-git-info-4.1.0" sources."htmlparser2-8.0.2" @@ -138180,7 +138470,6 @@ in sources."is-path-inside-3.0.3" sources."isarray-1.0.0" sources."isexe-2.0.0" - sources."js-sdsl-4.4.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" @@ -138245,7 +138534,7 @@ in sources."process-nextick-args-2.0.1" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."queue-microtask-1.2.3" (sources."rc-1.2.8" // { dependencies = [ @@ -138264,7 +138553,7 @@ in sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."sax-1.2.4" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."setimmediate-1.0.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -138286,7 +138575,7 @@ in sources."text-table-0.2.0" sources."tmp-0.2.1" sources."to-regex-range-5.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" (sources."tsutils-3.21.0" // { dependencies = [ sources."tslib-1.14.1" @@ -138418,8 +138707,9 @@ in sources."formidable-1.0.11" sources."fresh-0.2.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."http-auth-2.0.7" sources."inherits-2.0.4" @@ -138438,7 +138728,7 @@ in sources."object-inspect-1.12.3" (sources."openid-2.0.10" // { dependencies = [ - sources."qs-6.11.1" + sources."qs-6.11.2" ]; }) sources."pause-0.0.1" @@ -138505,10 +138795,10 @@ in semver = nodeEnv.buildNodePackage { name = "semver"; packageName = "semver"; - version = "7.5.0"; + version = "7.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz"; - sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; + url = "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz"; + sha512 = "Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw=="; }; dependencies = [ sources."lru-cache-6.0.0" @@ -138655,10 +138945,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "3.30.1"; + version = "3.31.0"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-3.30.1.tgz"; - sha512 = "RDB+4Lrmmy9fXtAw21gUhdT9Q+IT4DrMfIZHRNMQZ6YYuUNrx6HXueFlsVP0WjX4Bhhqcks9H4hJ4/Jzn7y5WA=="; + url = "https://registry.npmjs.org/serverless/-/serverless-3.31.0.tgz"; + sha512 = "Cr2gEoPxxPFI1sLsLn5hzcsGMpsgzVEb7tiU0I/zcBe4Yug70bQrnZWReYw7N+DZlOMoWQ9ifCXD6yF1wWPQXg=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -138694,7 +138984,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/lodash-4.14.194" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.10" sources."agent-base-6.0.2" @@ -138722,7 +139012,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.1377.0" // { + (sources."aws-sdk-2.1381.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -138915,7 +139205,7 @@ in sources."fs2-0.3.9" sources."fsevents-2.3.2" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stdin-8.0.0" sources."get-stream-6.0.1" sources."glob-7.2.3" @@ -138927,6 +139217,7 @@ in sources."graphlib-2.1.8" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hexoid-1.0.0" @@ -139067,7 +139358,7 @@ in sources."promise-queue-2.2.5" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."querystring-0.2.1" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -139097,7 +139388,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.1" sources."seek-bzip-1.0.6" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."setimmediate-1.0.5" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" @@ -139132,7 +139423,7 @@ in sources."has-flag-4.0.0" ]; }) - sources."tar-6.1.14" + sources."tar-6.1.15" (sources."tar-stream-2.2.0" // { dependencies = [ sources."readable-stream-3.6.2" @@ -139148,7 +139439,7 @@ in sources."tr46-0.0.3" sources."traverse-0.6.7" sources."trim-repeated-1.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-2.7.2" sources."type-fest-0.21.3" sources."unbzip2-stream-1.4.3" @@ -139287,7 +139578,7 @@ in sources."fresh-0.5.2" sources."from-0.1.7" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."getpass-0.1.7" sources."global-https://github.com/component/global/archive/v2.0.1.tar.gz" sources."har-schema-2.0.0" @@ -139295,6 +139586,7 @@ in sources."has-1.0.3" sources."has-binary-data-0.1.1" sources."has-cors-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" (sources."htmlparser2-3.7.3" // { dependencies = [ @@ -139834,17 +140126,17 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1155.0"; + version = "1.1159.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1155.0.tgz"; - sha512 = "PIUoQHVknnJG3fyT9wPp0WNAflGUQ8cVmW4t9/2h3G3rXWHlOB2Hb1/pMVbGaiDai16izRegRSo9ymr7e6Yw6w=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1159.0.tgz"; + sha512 = "LPheHTd8fI8m76affxON9qO9J3ebVofLk712zoF4883aonZtPHoJvLYuAf11utn05ff9nNwV+QoA+OpnyF7e8A=="; }; dependencies = [ - sources."@sentry-internal/tracing-7.51.2" - sources."@sentry/core-7.51.2" - sources."@sentry/node-7.51.2" - sources."@sentry/types-7.51.2" - sources."@sentry/utils-7.51.2" + sources."@sentry-internal/tracing-7.52.1" + sources."@sentry/core-7.52.1" + sources."@sentry/node-7.52.1" + sources."@sentry/types-7.52.1" + sources."@sentry/utils-7.52.1" sources."agent-base-6.0.2" sources."boolean-3.2.0" sources."cookie-0.4.2" @@ -139854,11 +140146,12 @@ in 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."get-intrinsic-1.2.1" 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-proto-1.0.1" sources."has-symbols-1.0.3" sources."https-proxy-agent-5.0.1" sources."json-stringify-safe-5.0.1" @@ -139868,7 +140161,7 @@ in sources."ms-2.1.2" sources."object-keys-1.1.1" sources."roarr-2.15.4" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."semver-compare-1.0.0" sources."serialize-error-7.0.1" sources."sprintf-js-1.1.2" @@ -139898,7 +140191,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-20.1.3" + sources."@types/node-20.2.1" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.7" @@ -139996,7 +140289,7 @@ in sources."indent-string-5.0.0" sources."inherits-2.0.4" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-fullwidth-code-point-4.0.0" sources."is-interactive-2.0.0" sources."is-plain-obj-1.1.0" @@ -140021,7 +140314,7 @@ in sources."ms-2.0.0" sources."normalize-package-data-3.0.3" sources."onetime-5.1.2" - (sources."ora-6.3.0" // { + (sources."ora-6.3.1" // { dependencies = [ sources."chalk-5.2.0" ]; @@ -140039,7 +140332,7 @@ in sources."round-to-6.0.0" sources."safe-buffer-5.2.1" sources."sax-1.2.4" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."signal-exit-3.0.7" (sources."slice-ansi-5.0.0" // { dependencies = [ @@ -140374,7 +140667,7 @@ in sources."futoin-hkdf-1.5.2" sources."generate-function-2.3.1" sources."generate-object-property-1.2.0" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" sources."glob-6.0.4" @@ -140439,7 +140732,7 @@ in sources."is-buffer-zero-1.0.0" sources."is-callable-1.2.7" sources."is-canonical-base64-1.1.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -140923,7 +141216,7 @@ in ]; }) sources."ssb-db-19.2.0" - (sources."ssb-db2-7.1.0" // { + (sources."ssb-db2-7.1.1" // { dependencies = [ sources."abstract-leveldown-6.2.3" (sources."flumecodec-0.0.1" // { @@ -141204,7 +141497,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1377.0" // { + (sources."aws-sdk-2.1381.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -141415,7 +141708,7 @@ in sources."generate-function-2.3.1" sources."generate-object-property-1.2.0" sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" (sources."getpass-0.1.7" // { dependencies = [ @@ -141441,6 +141734,7 @@ in ]; }) sources."has-cors-1.1.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hawk-3.1.3" @@ -141473,7 +141767,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-expression-3.0.0" // { dependencies = [ sources."acorn-4.0.13" @@ -141615,7 +141909,7 @@ in sources."once-1.4.0" (sources."openid-2.0.10" // { dependencies = [ - sources."qs-6.11.1" + sources."qs-6.11.2" ]; }) sources."options-0.0.6" @@ -141826,10 +142120,10 @@ in sources."lru-cache-6.0.0" sources."mime-2.6.0" sources."ms-2.1.2" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."string_decoder-1.3.0" sources."yallist-4.0.0" ]; @@ -141843,7 +142137,7 @@ in sources."esprima-4.0.1" sources."js-yaml-3.14.1" sources."lodash-3.10.1" - sources."qs-6.11.1" + sources."qs-6.11.2" ]; }) sources."swagger-schema-official-2.0.0-bab6bed" @@ -142010,10 +142304,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "15.6.1"; + version = "15.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-15.6.1.tgz"; - sha512 = "d8icFBlVl93Elf3Z5ABQNOCe4nx69is3D/NZhDLAie1eyYnpxfeKe7pCfqzT5W4F8vxHCLSDfV8nKNJzogvV2Q=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-15.6.2.tgz"; + sha512 = "fjQWwcdUye4DU+0oIxNGwawIPC5DvG5kdObY5Sg4rc87untze3gC/5g/ikePqVjrAsBUZjwMN+pZsAYbDO6ArQ=="; }; dependencies = [ sources."@babel/code-frame-7.21.4" @@ -142100,7 +142394,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -142147,7 +142441,7 @@ in sources."postcss-media-query-parser-0.2.3" sources."postcss-resolve-nested-selector-0.1.1" sources."postcss-safe-parser-6.0.0" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-value-parser-4.2.0" sources."punycode-2.3.0" sources."queue-microtask-1.2.3" @@ -142172,7 +142466,7 @@ in sources."reusify-1.0.4" sources."rimraf-3.0.2" sources."run-parallel-1.2.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."signal-exit-4.0.2" sources."slash-3.0.0" (sources."slice-ansi-4.0.0" // { @@ -142405,24 +142699,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/pug-2.0.6" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" @@ -142441,7 +142735,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -142459,7 +142753,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -142471,13 +142765,14 @@ in sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."globals-11.12.0" sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."iconv-lite-0.6.3" @@ -142487,7 +142782,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-expression-4.0.0" // { dependencies = [ sources."acorn-7.4.1" @@ -142591,7 +142886,7 @@ in sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."update-browserslist-db-1.0.11" sources."v8-compile-cache-lib-3.0.1" @@ -142659,24 +142954,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/pug-2.0.6" (sources."@vscode/emmet-helper-2.8.8" // { dependencies = [ @@ -142700,7 +142995,7 @@ in sources."browserslist-4.21.5" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -142719,7 +143014,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emmet-2.4.4" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -142733,13 +143028,14 @@ in sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."globals-11.12.0" sources."graceful-fs-4.2.11" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."iconv-lite-0.6.3" @@ -142748,7 +143044,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-expression-4.0.0" // { dependencies = [ sources."acorn-7.4.1" @@ -142856,7 +143152,7 @@ in sources."to-regex-range-5.0.1" sources."token-stream-1.0.0" sources."ts-node-10.9.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."update-browserslist-db-1.0.11" sources."v8-compile-cache-lib-3.0.1" @@ -143129,7 +143425,7 @@ in sources."form-data-4.0.0" (sources."formidable-2.1.2" // { dependencies = [ - sources."qs-6.11.1" + sources."qs-6.11.2" ]; }) sources."fragment-cache-0.2.1" @@ -143138,7 +143434,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-1.2.13" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-3.0.0" sources."get-value-2.0.6" sources."glob-7.2.3" @@ -143165,6 +143461,7 @@ in sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -143354,9 +143651,9 @@ in sources."lru-cache-6.0.0" sources."mime-2.6.0" sources."ms-2.1.2" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."readable-stream-3.6.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."superagent-7.1.6" sources."yallist-4.0.0" ]; @@ -143612,24 +143909,24 @@ 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.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -143668,7 +143965,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -143696,7 +143993,7 @@ in sources."postcss-js-4.0.1" sources."postcss-load-config-4.0.1" sources."postcss-nested-6.0.1" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" @@ -143716,7 +144013,7 @@ in sources."arg-4.1.3" ]; }) - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."util-deprecate-1.0.2" sources."v8-compile-cache-lib-3.0.1" @@ -144062,10 +144359,10 @@ in terser = nodeEnv.buildNodePackage { name = "terser"; packageName = "terser"; - version = "5.17.3"; + version = "5.17.4"; src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.17.3.tgz"; - sha512 = "AudpAZKmZHkG9jueayypz4duuCFJMMNGRMwaPvQKWfxKedh8Z2x3OCoDqIIi1xx5+iwx1u6Au8XQcc9Lke65Yg=="; + url = "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz"; + sha512 = "jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" @@ -144173,7 +144470,7 @@ in sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-decimal-1.0.4" sources."is-file-1.0.0" sources."is-fullwidth-code-point-3.0.0" @@ -144342,9 +144639,10 @@ in sources."define-properties-1.2.0" sources."function-bind-1.1.1" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."has-1.0.3" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."match-index-1.0.3" sources."object-keys-1.1.1" @@ -144511,7 +144809,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-decimal-1.0.4" sources."is-empty-1.2.0" sources."is-fullwidth-code-point-3.0.0" @@ -145045,7 +145343,7 @@ in sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-symbol-description-1.0.0" sources."globalthis-1.0.3" sources."gopd-1.0.1" @@ -145112,7 +145410,7 @@ in sources."ms-2.1.2" ]; }) - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" (sources."@humanwhocodes/config-array-0.11.8" // { dependencies = [ sources."debug-4.3.4" @@ -145142,7 +145440,7 @@ in sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" sources."available-typed-arrays-1.0.5" - sources."axe-core-4.7.0" + sources."axe-core-4.7.1" sources."axobject-query-3.1.1" sources."balanced-match-1.0.2" sources."boundary-2.0.0" @@ -145169,7 +145467,7 @@ in sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.40.0" // { + (sources."eslint-8.41.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" @@ -145206,14 +145504,14 @@ in sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-symbol-description-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.20.0" sources."globalthis-1.0.3" sources."gopd-1.0.1" - sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-flag-4.0.0" @@ -145232,7 +145530,7 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" @@ -145251,7 +145549,6 @@ in sources."is-weakset-2.0.2" sources."isarray-2.0.5" sources."isexe-2.0.0" - sources."js-sdsl-4.4.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" @@ -145351,24 +145648,28 @@ in thelounge = nodeEnv.buildNodePackage { name = "thelounge"; packageName = "thelounge"; - version = "4.3.1"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge/-/thelounge-4.3.1.tgz"; - sha512 = "sWitbCj5+Jr+HY8nN2VE01OVeZSaTGyQK76whBgt2LyBih57yQBjZYR3BshPBiUgGb/GMbI+j112myKU9YUh/g=="; + url = "https://registry.npmjs.org/thelounge/-/thelounge-4.4.0.tgz"; + sha512 = "CmXgaESg3RXg3y/Zjyr2lSKWC6OtYwusGjxXDkUOHFmuFweqtAHKrHasH7u3flPuYNsdGHamdlj29UAgGlzgsg=="; }; dependencies = [ sources."@fastify/busboy-1.0.0" + sources."@gar/promisify-1.1.3" sources."@mapbox/node-pre-gyp-1.0.10" + sources."@npmcli/fs-1.1.1" + sources."@npmcli/move-file-1.1.2" sources."@sindresorhus/is-4.6.0" + sources."@socket.io/component-emitter-3.1.0" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" + sources."@tootallnate/once-1.1.2" sources."@types/cacheable-request-6.0.3" - sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -145379,7 +145680,14 @@ in sources."ms-2.1.2" ]; }) - sources."ajv-6.12.6" + (sources."agentkeepalive-4.3.0" // { + dependencies = [ + sources."debug-4.3.4" + sources."depd-2.0.0" + sources."ms-2.1.2" + ]; + }) + sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."aproba-2.0.0" @@ -145388,15 +145696,11 @@ in sources."asn1-0.2.6" sources."asn1.js-5.4.1" sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sign2-0.7.0" - sources."aws4-1.12.0" sources."backoff-2.5.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."base64id-2.0.0" - sources."bcrypt-pbkdf-1.0.2" sources."bcryptjs-2.4.3" sources."bn.js-4.12.0" sources."body-parser-1.19.2" @@ -145406,22 +145710,24 @@ in sources."buffer-equal-constant-time-1.0.1" sources."bufferutil-4.0.7" sources."bytes-3.1.2" + (sources."cacache-15.3.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."cacheable-lookup-5.0.4" sources."cacheable-request-7.0.2" sources."call-bind-1.0.2" - sources."caseless-0.12.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.10" sources."cheerio-select-1.6.0" sources."chownr-2.0.0" + sources."clean-stack-2.2.0" sources."clone-response-1.0.3" - sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."color-support-1.1.3" - sources."combined-stream-1.0.8" sources."commander-9.0.0" - sources."component-emitter-1.3.0" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."content-disposition-0.5.4" @@ -145433,7 +145739,6 @@ in sources."cors-2.8.5" sources."css-select-4.3.0" sources."css-what-6.1.0" - sources."dashdash-1.14.1" sources."debug-2.6.9" (sources."decompress-response-6.0.0" // { dependencies = [ @@ -145442,7 +145747,6 @@ in }) sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" - sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" @@ -145451,7 +145755,6 @@ in sources."domelementtype-2.3.0" sources."domhandler-4.3.1" sources."domutils-2.8.0" - sources."ecc-jsbn-0.1.2" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" @@ -145462,7 +145765,7 @@ in ]; }) sources."end-of-stream-1.4.4" - (sources."engine.io-6.1.3" // { + (sources."engine.io-6.4.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -145471,23 +145774,19 @@ in sources."engine.io-parser-5.0.6" sources."entities-2.2.0" sources."env-paths-2.2.1" + sources."err-code-2.0.3" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" sources."etag-1.8.1" - sources."eventemitter3-4.0.7" + sources."eventemitter3-5.0.1" sources."express-4.17.3" - sources."extend-3.0.2" sources."extsprintf-1.4.1" - sources."fast-deep-equal-3.1.3" - sources."fast-json-stable-stringify-2.1.0" sources."fast-text-encoding-1.0.6" - sources."file-type-16.5.3" + sources."file-type-16.5.4" sources."filename-reserved-regex-2.0.0" sources."filenamify-4.3.0" sources."finalhandler-1.1.2" sources."for-each-0.3.3" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" sources."forwarded-0.2.0" sources."fresh-0.5.2" (sources."fs-minipass-2.1.0" // { @@ -145498,25 +145797,28 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-3.0.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" - sources."getpass-0.1.7" sources."glob-7.2.3" sources."gopd-1.0.1" - sources."got-11.8.3" + sources."got-11.8.5" sources."graceful-fs-4.2.11" sources."grapheme-splitter-1.0.4" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.1" sources."http-errors-1.8.1" - sources."http-signature-1.2.0" + (sources."http-proxy-agent-4.0.1" // { + dependencies = [ + sources."debug-4.3.4" + sources."ms-2.1.2" + ]; + }) sources."http2-wrapper-1.0.3" sources."http_ece-1.1.0" (sources."https-proxy-agent-5.0.1" // { @@ -145525,14 +145827,18 @@ in sources."ms-2.1.2" ]; }) + sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" + sources."imurmurhash-0.1.4" + sources."indent-string-4.0.0" + sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" sources."ip-2.0.0" sources."ipaddr.js-1.9.1" - (sources."irc-framework-4.12.1" // { + (sources."irc-framework-4.13.1" // { dependencies = [ sources."iconv-lite-0.6.3" ]; @@ -145541,24 +145847,12 @@ in sources."is-callable-1.2.7" sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" + sources."is-lambda-1.0.1" sources."is-typed-array-1.1.10" - sources."is-typedarray-1.0.0" sources."is-utf8-0.2.1" - sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isomorphic-textencoder-1.0.1" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" sources."json-buffer-3.0.1" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - (sources."jsprim-1.4.2" // { - dependencies = [ - sources."extsprintf-1.3.0" - sources."verror-1.10.0" - ]; - }) sources."jwa-2.0.0" sources."jws-4.0.0" sources."keyv-4.5.2" @@ -145573,6 +145867,11 @@ in sources."semver-6.3.0" ]; }) + (sources."make-fetch-happen-9.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."media-typer-0.3.0" sources."merge-descriptors-1.0.1" sources."methods-1.1.2" @@ -145585,6 +145884,31 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.8" sources."minipass-5.0.0" + (sources."minipass-collect-1.0.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-fetch-1.4.1" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-flush-1.0.5" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-pipeline-1.2.4" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-sized-1.0.3" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) (sources."minizlib-2.1.2" // { dependencies = [ sources."minipass-3.3.6" @@ -145597,19 +145921,11 @@ in sources."node-addon-api-4.3.0" sources."node-fetch-2.6.11" sources."node-forge-1.3.0" - (sources."node-gyp-7.1.2" // { + (sources."node-gyp-8.4.1" // { dependencies = [ - sources."ansi-regex-2.1.1" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.7" - 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."are-we-there-yet-3.0.1" + sources."gauge-4.0.4" + sources."npmlog-6.0.2" ]; }) sources."node-gyp-build-4.6.0" @@ -145617,13 +145933,12 @@ in sources."normalize-url-6.1.0" sources."npmlog-5.0.1" sources."nth-check-2.1.1" - sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."on-finished-2.3.0" sources."once-1.4.0" sources."p-cancelable-2.1.1" sources."p-finally-1.0.0" + sources."p-map-4.0.0" sources."p-try-2.2.0" sources."package-json-7.0.0" sources."parse5-6.0.1" @@ -145632,14 +145947,12 @@ in sources."path-is-absolute-1.0.1" sources."path-to-regexp-0.1.7" sources."peek-readable-4.1.0" - sources."performance-now-2.1.0" sources."pify-4.0.1" sources."precond-0.2.3" - sources."process-nextick-args-2.0.1" + sources."promise-inflight-1.0.1" + sources."promise-retry-2.0.1" sources."proxy-addr-2.0.7" - sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.3.0" sources."qs-6.9.7" sources."quick-lru-5.1.1" sources."range-parser-1.2.1" @@ -145652,14 +145965,9 @@ in sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" - (sources."request-2.88.2" // { - dependencies = [ - sources."qs-6.5.3" - sources."uuid-3.4.0" - ]; - }) sources."resolve-alpn-1.2.1" sources."responselike-2.0.1" + sources."retry-0.12.0" sources."rimraf-3.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -145674,22 +145982,32 @@ in sources."setprototypeof-1.2.0" sources."signal-exit-3.0.7" sources."smart-buffer-4.2.0" - (sources."socket.io-4.4.1" // { + (sources."socket.io-4.6.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" ]; }) - sources."socket.io-adapter-2.3.3" - (sources."socket.io-parser-4.0.5" // { + sources."socket.io-adapter-2.5.2" + (sources."socket.io-parser-4.2.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" ]; }) sources."socks-2.7.1" - sources."sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" - sources."sshpk-1.17.0" + (sources."socks-proxy-agent-6.2.1" // { + dependencies = [ + sources."debug-4.3.4" + sources."ms-2.1.2" + ]; + }) + sources."sqlite3-5.1.6" + (sources."ssri-8.0.1" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."statuses-1.5.0" sources."stream-browserify-3.0.0" sources."string-width-4.2.3" @@ -145699,22 +146017,20 @@ in sources."strip-outer-1.0.1" sources."strtok3-6.3.0" sources."supports-color-7.2.0" - sources."tar-6.1.14" + sources."tar-6.1.15" sources."text-decoding-1.0.0" sources."tlds-1.228.0" sources."toidentifier-1.0.1" sources."token-types-4.2.1" - sources."tough-cookie-2.5.0" sources."tr46-0.0.3" sources."trim-repeated-1.0.0" - sources."tslib-2.5.0" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" + sources."tslib-2.5.2" sources."type-is-1.6.18" - sources."ua-parser-js-1.0.2" + sources."ua-parser-js-1.0.33" sources."uc.micro-1.0.6" + sources."unique-filename-1.1.1" + sources."unique-slug-2.0.2" sources."unpipe-1.0.0" - sources."uri-js-4.4.1" sources."urlsafe-base64-1.0.0" sources."utf-8-validate-5.0.10" sources."util-0.12.5" @@ -145736,7 +146052,7 @@ in sources."wide-align-1.1.5" sources."with-open-file-0.1.7" sources."wrappy-1.0.2" - sources."ws-8.2.3" + sources."ws-8.11.0" sources."yallist-4.0.0" sources."yarn-1.22.17" ]; @@ -145760,17 +146076,21 @@ in }; dependencies = [ sources."@fastify/busboy-1.0.0" + sources."@gar/promisify-1.1.3" sources."@mapbox/node-pre-gyp-1.0.10" + sources."@npmcli/fs-1.1.1" + sources."@npmcli/move-file-1.1.2" sources."@sindresorhus/is-4.6.0" + sources."@socket.io/component-emitter-3.1.0" sources."@szmarczak/http-timer-4.0.6" sources."@tokenizer/token-0.3.0" + sources."@tootallnate/once-1.1.2" sources."@types/cacheable-request-6.0.3" - sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -145781,7 +146101,14 @@ in sources."ms-2.1.2" ]; }) - sources."ajv-6.12.6" + (sources."agentkeepalive-4.3.0" // { + dependencies = [ + sources."debug-4.3.4" + sources."depd-2.0.0" + sources."ms-2.1.2" + ]; + }) + sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."aproba-2.0.0" @@ -145790,15 +146117,11 @@ in sources."asn1-0.2.6" sources."asn1.js-5.4.1" sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sign2-0.7.0" - sources."aws4-1.12.0" sources."backoff-2.5.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."base64id-2.0.0" - sources."bcrypt-pbkdf-1.0.2" sources."bcryptjs-2.4.3" sources."bn.js-4.12.0" sources."body-parser-1.19.2" @@ -145808,22 +146131,24 @@ in sources."buffer-equal-constant-time-1.0.1" sources."bufferutil-4.0.7" sources."bytes-3.1.2" + (sources."cacache-15.3.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."cacheable-lookup-5.0.4" sources."cacheable-request-7.0.2" sources."call-bind-1.0.2" - sources."caseless-0.12.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.10" sources."cheerio-select-1.6.0" sources."chownr-2.0.0" + sources."clean-stack-2.2.0" sources."clone-response-1.0.3" - sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."color-support-1.1.3" - sources."combined-stream-1.0.8" sources."commander-9.0.0" - sources."component-emitter-1.3.0" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."content-disposition-0.5.4" @@ -145835,7 +146160,6 @@ in sources."cors-2.8.5" sources."css-select-4.3.0" sources."css-what-6.1.0" - sources."dashdash-1.14.1" sources."debug-2.6.9" (sources."decompress-response-6.0.0" // { dependencies = [ @@ -145844,7 +146168,6 @@ in }) sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" - sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" @@ -145853,7 +146176,6 @@ in sources."domelementtype-2.3.0" sources."domhandler-4.3.1" sources."domutils-2.8.0" - sources."ecc-jsbn-0.1.2" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" @@ -145864,7 +146186,7 @@ in ]; }) sources."end-of-stream-1.4.4" - (sources."engine.io-6.1.3" // { + (sources."engine.io-6.4.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -145873,23 +146195,19 @@ in sources."engine.io-parser-5.0.6" sources."entities-2.2.0" sources."env-paths-2.2.1" + sources."err-code-2.0.3" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" sources."etag-1.8.1" - sources."eventemitter3-4.0.7" + sources."eventemitter3-5.0.1" sources."express-4.17.3" - sources."extend-3.0.2" sources."extsprintf-1.4.1" - sources."fast-deep-equal-3.1.3" - sources."fast-json-stable-stringify-2.1.0" sources."fast-text-encoding-1.0.6" - sources."file-type-16.5.3" + sources."file-type-16.5.4" sources."filename-reserved-regex-2.0.0" sources."filenamify-4.3.0" sources."finalhandler-1.1.2" sources."for-each-0.3.3" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" sources."forwarded-0.2.0" sources."fresh-0.5.2" (sources."fs-minipass-2.1.0" // { @@ -145900,25 +146218,28 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-3.0.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" - sources."getpass-0.1.7" sources."glob-7.2.3" sources."gopd-1.0.1" - sources."got-11.8.3" + sources."got-11.8.5" sources."graceful-fs-4.2.11" sources."grapheme-splitter-1.0.4" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" sources."htmlparser2-6.1.0" sources."http-cache-semantics-4.1.1" sources."http-errors-1.8.1" - sources."http-signature-1.2.0" + (sources."http-proxy-agent-4.0.1" // { + dependencies = [ + sources."debug-4.3.4" + sources."ms-2.1.2" + ]; + }) sources."http2-wrapper-1.0.3" sources."http_ece-1.1.0" (sources."https-proxy-agent-5.0.1" // { @@ -145927,14 +146248,18 @@ in sources."ms-2.1.2" ]; }) + sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" + sources."imurmurhash-0.1.4" + sources."indent-string-4.0.0" + sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" sources."ip-2.0.0" sources."ipaddr.js-1.9.1" - (sources."irc-framework-4.12.1" // { + (sources."irc-framework-4.13.1" // { dependencies = [ sources."iconv-lite-0.6.3" ]; @@ -145943,24 +146268,12 @@ in sources."is-callable-1.2.7" sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" + sources."is-lambda-1.0.1" sources."is-typed-array-1.1.10" - sources."is-typedarray-1.0.0" sources."is-utf8-0.2.1" - sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isomorphic-textencoder-1.0.1" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" sources."json-buffer-3.0.1" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - (sources."jsprim-1.4.2" // { - dependencies = [ - sources."extsprintf-1.3.0" - sources."verror-1.10.0" - ]; - }) sources."jwa-2.0.0" sources."jws-4.0.0" sources."keyv-4.5.2" @@ -145975,6 +146288,11 @@ in sources."semver-6.3.0" ]; }) + (sources."make-fetch-happen-9.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."media-typer-0.3.0" sources."merge-descriptors-1.0.1" sources."methods-1.1.2" @@ -145987,6 +146305,31 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.8" sources."minipass-5.0.0" + (sources."minipass-collect-1.0.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-fetch-1.4.1" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-flush-1.0.5" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-pipeline-1.2.4" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-sized-1.0.3" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) (sources."minizlib-2.1.2" // { dependencies = [ sources."minipass-3.3.6" @@ -145999,19 +146342,11 @@ in sources."node-addon-api-4.3.0" sources."node-fetch-2.6.11" sources."node-forge-1.3.0" - (sources."node-gyp-7.1.2" // { + (sources."node-gyp-8.4.1" // { dependencies = [ - sources."ansi-regex-2.1.1" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.7" - 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."are-we-there-yet-3.0.1" + sources."gauge-4.0.4" + sources."npmlog-6.0.2" ]; }) sources."node-gyp-build-4.6.0" @@ -146019,13 +146354,12 @@ in sources."normalize-url-6.1.0" sources."npmlog-5.0.1" sources."nth-check-2.1.1" - sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."on-finished-2.3.0" sources."once-1.4.0" sources."p-cancelable-2.1.1" sources."p-finally-1.0.0" + sources."p-map-4.0.0" sources."p-try-2.2.0" sources."package-json-7.0.0" sources."parse5-6.0.1" @@ -146034,14 +146368,12 @@ in sources."path-is-absolute-1.0.1" sources."path-to-regexp-0.1.7" sources."peek-readable-4.1.0" - sources."performance-now-2.1.0" sources."pify-4.0.1" sources."precond-0.2.3" - sources."process-nextick-args-2.0.1" + sources."promise-inflight-1.0.1" + sources."promise-retry-2.0.1" sources."proxy-addr-2.0.7" - sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.3.0" sources."qs-6.9.7" sources."quick-lru-5.1.1" sources."range-parser-1.2.1" @@ -146054,14 +146386,9 @@ in sources."regenerator-runtime-0.13.11" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" - (sources."request-2.88.2" // { - dependencies = [ - sources."qs-6.5.3" - sources."uuid-3.4.0" - ]; - }) sources."resolve-alpn-1.2.1" sources."responselike-2.0.1" + sources."retry-0.12.0" sources."rimraf-3.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -146076,22 +146403,32 @@ in sources."setprototypeof-1.2.0" sources."signal-exit-3.0.7" sources."smart-buffer-4.2.0" - (sources."socket.io-4.4.1" // { + (sources."socket.io-4.6.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" ]; }) - sources."socket.io-adapter-2.3.3" - (sources."socket.io-parser-4.0.5" // { + sources."socket.io-adapter-2.5.2" + (sources."socket.io-parser-4.2.2" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" ]; }) sources."socks-2.7.1" - sources."sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" - sources."sshpk-1.17.0" + (sources."socks-proxy-agent-6.2.1" // { + dependencies = [ + sources."debug-4.3.4" + sources."ms-2.1.2" + ]; + }) + sources."sqlite3-5.1.6" + (sources."ssri-8.0.1" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."statuses-1.5.0" sources."stream-browserify-3.0.0" sources."string-width-4.2.3" @@ -146101,23 +146438,21 @@ in sources."strip-outer-1.0.1" sources."strtok3-6.3.0" sources."supports-color-7.2.0" - sources."tar-6.1.14" + sources."tar-6.1.15" sources."text-decoding-1.0.0" - sources."thelounge-4.3.1" + sources."thelounge-4.4.0" sources."tlds-1.228.0" sources."toidentifier-1.0.1" sources."token-types-4.2.1" - sources."tough-cookie-2.5.0" sources."tr46-0.0.3" sources."trim-repeated-1.0.0" - sources."tslib-2.5.0" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" + sources."tslib-2.5.2" sources."type-is-1.6.18" - sources."ua-parser-js-1.0.2" + sources."ua-parser-js-1.0.33" sources."uc.micro-1.0.6" + sources."unique-filename-1.1.1" + sources."unique-slug-2.0.2" sources."unpipe-1.0.0" - sources."uri-js-4.4.1" sources."urlsafe-base64-1.0.0" sources."utf-8-validate-5.0.10" sources."util-0.12.5" @@ -146139,7 +146474,7 @@ in sources."wide-align-1.1.5" sources."with-open-file-0.1.7" sources."wrappy-1.0.2" - sources."ws-8.2.3" + sources."ws-8.11.0" sources."yallist-4.0.0" sources."yarn-1.22.17" ]; @@ -146326,7 +146661,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gauge-2.7.4" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-4.1.0" sources."getpass-0.1.7" sources."glob-7.2.3" @@ -146339,6 +146674,7 @@ in sources."has-binary2-1.0.3" sources."has-cors-1.1.0" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."htmlparser2-3.10.1" @@ -146466,7 +146802,7 @@ in sources."psl-1.9.0" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."qs-6.11.1" + sources."qs-6.11.2" sources."range-parser-1.2.1" sources."raw-body-2.4.0" sources."rc-1.2.8" @@ -146842,7 +147178,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -147310,7 +147646,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -148209,7 +148545,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/responselike-1.0.0" sources."@xmldom/xmldom-0.8.7" sources."ajv-6.12.6" @@ -148412,31 +148748,31 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."acorn-8.8.2" sources."acorn-walk-8.2.0" sources."arg-4.1.3" sources."create-require-1.1.1" sources."diff-4.0.2" sources."make-error-1.3.6" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."typescript-5.0.4" sources."v8-compile-cache-lib-3.0.1" sources."yn-3.1.1" @@ -148564,7 +148900,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.29" + sources."@types/node-16.18.31" sources."@types/triple-beam-1.3.2" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" @@ -148734,7 +149070,7 @@ in sources."function-bind-1.1.1" sources."get-assigned-identifiers-1.2.0" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-6.0.1" sources."getmac-5.20.0" sources."glob-7.2.3" @@ -148742,6 +149078,7 @@ in sources."got-12.6.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."hash-base-3.1.0" // { @@ -148775,7 +149112,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" @@ -149049,7 +149386,7 @@ in sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" sources."@isaacs/cliui-8.0.2" - sources."@npmcli/config-6.1.6" + sources."@npmcli/config-6.1.7" sources."@npmcli/map-workspaces-3.0.4" sources."@npmcli/name-from-folder-2.0.0" sources."@pkgjs/parseargs-0.11.0" @@ -149057,7 +149394,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.16.8" + sources."@types/node-18.16.13" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" sources."abbrev-2.0.0" @@ -149087,13 +149424,13 @@ in sources."foreground-child-3.1.1" sources."format-0.2.2" sources."fs.realpath-1.0.0" - sources."glob-10.2.3" + sources."glob-10.2.5" sources."has-flag-3.0.0" sources."ignore-5.2.4" sources."import-meta-resolve-2.2.2" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-4.1.0" + sources."ini-4.1.1" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" sources."is-empty-1.2.0" @@ -149108,7 +149445,7 @@ in sources."locate-path-7.2.0" sources."lru-cache-9.1.1" sources."minimatch-9.0.0" - sources."minipass-5.0.0" + sources."minipass-6.0.2" sources."ms-2.1.2" sources."nopt-7.1.0" sources."npm-normalize-package-bin-3.0.1" @@ -149122,12 +149459,12 @@ in }) sources."path-exists-5.0.0" sources."path-key-3.1.1" - sources."path-scurry-1.8.0" + sources."path-scurry-1.9.2" sources."proc-log-3.0.0" sources."read-package-json-fast-3.0.2" sources."readable-stream-3.6.2" sources."safe-buffer-5.2.1" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -149303,7 +149640,7 @@ in sources."rw-1.3.3" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."set-blocking-2.0.0" sources."signal-exit-3.0.7" sources."simple-concat-1.0.1" @@ -149311,7 +149648,7 @@ in sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - sources."tar-6.1.14" + sources."tar-6.1.15" (sources."topojson-client-3.1.0" // { dependencies = [ sources."commander-2.20.3" @@ -149376,10 +149713,10 @@ in vega-lite = nodeEnv.buildNodePackage { name = "vega-lite"; packageName = "vega-lite"; - version = "5.9.0"; + version = "5.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.9.0.tgz"; - sha512 = "VA3XDlF6nd/t46KDMfq8eNKOJKy9gpJuM+6CIl3jbWqS97jWXRWXp8DpUyDmbV+iq8n4hqNTaoPqDP/e03kifw=="; + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.9.3.tgz"; + sha512 = "S1B81aOkMC/iDU2skeS7ROaIaJuxvGx1PW1LO9ECe2dsrfsaDHk20SGsEhPSKZAgSxOghJ0+AuYdU0glRNjN1Q=="; }; dependencies = [ sources."@types/clone-2.1.1" @@ -149434,7 +149771,7 @@ in ]; }) sources."tr46-0.0.3" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."vega-5.25.0" sources."vega-canvas-1.2.7" sources."vega-crossfilter-4.1.1" @@ -149489,10 +149826,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "29.3.0"; + version = "29.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-29.3.0.tgz"; - sha512 = "6YKCh+okPVcAOqNq9V3mK1j8kdVgNm4F7PTweVrtupEAX1F1V0cntcbtGbLAdGaONTA6PHxmeik9LnplInSW0Q=="; + url = "https://registry.npmjs.org/vercel/-/vercel-29.3.6.tgz"; + sha512 = "fwld21d9WoCTUJcbyTWvq0c9VchUCJ2qs0kaczcYo9Vs8+ORnxC8FFgbysR2f7B4iwL2hUxTMEWkQGV2782LjQ=="; }; dependencies = [ sources."@adobe/css-tools-4.2.0" @@ -149677,7 +150014,7 @@ in sources."@jspm/core-2.0.1" (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@nodelib/fs.scandir-2.1.5" @@ -149685,12 +150022,12 @@ in sources."@nodelib/fs.walk-1.2.8" (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@npmcli/move-file-1.1.2" sources."@npmcli/package-json-2.0.0" - (sources."@remix-run/dev-1.16.0-patch.1" // { + (sources."@remix-run/dev-1.16.1" // { dependencies = [ sources."arg-5.0.2" sources."brace-expansion-2.0.1" @@ -149698,7 +150035,7 @@ in sources."fast-glob-3.2.11" sources."lru-cache-7.18.3" sources."minimatch-9.0.0" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -149707,15 +150044,15 @@ in sources."ws-7.5.9" ]; }) - sources."@remix-run/express-1.16.0" - (sources."@remix-run/node-1.16.0" // { + sources."@remix-run/express-1.16.1" + (sources."@remix-run/node-1.16.1" // { dependencies = [ sources."cookie-signature-1.2.1" ]; }) - sources."@remix-run/router-1.6.0" - sources."@remix-run/serve-1.16.0" - sources."@remix-run/server-runtime-1.16.0" + sources."@remix-run/router-1.6.2" + sources."@remix-run/serve-1.16.1" + sources."@remix-run/server-runtime-1.16.1" sources."@remix-run/web-blob-3.0.4" sources."@remix-run/web-fetch-4.3.4" sources."@remix-run/web-file-3.0.2" @@ -149724,19 +150061,19 @@ in sources."@rollup/pluginutils-4.2.1" sources."@sinclair/typebox-0.25.24" sources."@sindresorhus/is-4.6.0" - sources."@swc/core-1.3.57" - sources."@swc/core-darwin-arm64-1.3.57" - sources."@swc/core-darwin-x64-1.3.57" - sources."@swc/core-linux-arm-gnueabihf-1.3.57" - sources."@swc/core-linux-arm64-gnu-1.3.57" - sources."@swc/core-linux-arm64-musl-1.3.57" - sources."@swc/core-linux-x64-gnu-1.3.57" - sources."@swc/core-linux-x64-musl-1.3.57" - sources."@swc/core-win32-arm64-msvc-1.3.57" - sources."@swc/core-win32-ia32-msvc-1.3.57" - sources."@swc/core-win32-x64-msvc-1.3.57" + sources."@swc/core-1.3.59" + sources."@swc/core-darwin-arm64-1.3.59" + sources."@swc/core-darwin-x64-1.3.59" + sources."@swc/core-linux-arm-gnueabihf-1.3.59" + sources."@swc/core-linux-arm64-gnu-1.3.59" + sources."@swc/core-linux-arm64-musl-1.3.59" + sources."@swc/core-linux-x64-gnu-1.3.59" + sources."@swc/core-linux-x64-musl-1.3.59" + sources."@swc/core-win32-arm64-msvc-1.3.59" + sources."@swc/core-win32-ia32-msvc-1.3.59" + sources."@swc/core-win32-x64-msvc-1.3.59" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.57" + sources."@swc/wasm-1.3.59" sources."@szmarczak/http-timer-4.0.6" sources."@tootallnate/once-1.1.2" sources."@ts-morph/common-0.11.1" @@ -149762,7 +150099,7 @@ in sources."@types/node-fetch-2.6.3" sources."@types/responselike-1.0.0" sources."@types/unist-2.0.6" - sources."@vanilla-extract/babel-plugin-debug-ids-1.0.2" + sources."@vanilla-extract/babel-plugin-debug-ids-1.0.3" sources."@vanilla-extract/css-1.11.0" (sources."@vanilla-extract/integration-6.2.1" // { dependencies = [ @@ -149770,26 +150107,26 @@ in ]; }) sources."@vanilla-extract/private-1.0.3" - sources."@vercel/build-utils-6.7.2" + sources."@vercel/build-utils-6.7.3" sources."@vercel/error-utils-1.0.8" (sources."@vercel/gatsby-plugin-vercel-analytics-1.0.10" // { dependencies = [ sources."@babel/runtime-7.12.1" ]; }) - (sources."@vercel/gatsby-plugin-vercel-builder-1.3.3" // { + (sources."@vercel/gatsby-plugin-vercel-builder-1.3.5" // { dependencies = [ sources."fs-extra-11.1.0" ]; }) sources."@vercel/go-2.5.1" sources."@vercel/hydrogen-0.0.64" - sources."@vercel/next-3.8.2" + sources."@vercel/next-3.8.5" sources."@vercel/nft-0.22.5" - sources."@vercel/node-2.14.2" + sources."@vercel/node-2.14.3" sources."@vercel/python-3.1.60" sources."@vercel/redwood-1.1.15" - (sources."@vercel/remix-builder-1.8.8" // { + (sources."@vercel/remix-builder-1.8.10" // { dependencies = [ sources."semver-7.3.8" ]; @@ -149802,7 +150139,7 @@ in ]; }) sources."@vercel/ruby-1.3.76" - sources."@vercel/static-build-1.3.30" + sources."@vercel/static-build-1.3.32" sources."@vercel/static-config-2.0.17" sources."@web3-storage/multipart-parser-1.0.0" sources."@zxing/text-encoding-0.9.0" @@ -149827,7 +150164,7 @@ in sources."array-flatten-1.1.1" sources."array-union-2.1.0" sources."ast-types-0.13.4" - sources."astring-1.8.4" + sources."astring-1.8.5" sources."async-listen-3.0.0" sources."async-sema-3.1.1" sources."asynckit-0.4.0" @@ -149876,7 +150213,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -149972,7 +150309,7 @@ in ]; }) sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -150092,7 +150429,7 @@ in sources."gauge-3.0.2" sources."generic-names-4.0.0" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-port-5.1.1" sources."get-stream-6.0.1" (sources."get-uri-3.0.2" // { @@ -150114,6 +150451,7 @@ in sources."gunzip-maybe-1.4.2" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -150152,7 +150490,7 @@ in sources."is-binary-path-2.1.0" sources."is-buffer-2.0.5" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-decimal-2.0.1" sources."is-deflate-1.0.0" sources."is-extglob-2.1.1" @@ -150234,18 +150572,18 @@ in sources."micromark-3.1.0" sources."micromark-core-commonmark-1.0.6" sources."micromark-extension-frontmatter-1.1.0" - sources."micromark-extension-mdx-expression-1.0.4" - (sources."micromark-extension-mdx-jsx-1.0.3" // { + sources."micromark-extension-mdx-expression-1.0.5" + (sources."micromark-extension-mdx-jsx-1.0.4" // { dependencies = [ sources."estree-util-is-identifier-name-2.1.0" ]; }) sources."micromark-extension-mdx-md-1.0.1" - sources."micromark-extension-mdxjs-1.0.0" - sources."micromark-extension-mdxjs-esm-1.0.3" + sources."micromark-extension-mdxjs-1.0.1" + sources."micromark-extension-mdxjs-esm-1.0.4" sources."micromark-factory-destination-1.0.0" sources."micromark-factory-label-1.0.2" - sources."micromark-factory-mdx-expression-1.0.7" + sources."micromark-factory-mdx-expression-1.0.8" sources."micromark-factory-space-1.0.0" sources."micromark-factory-title-1.0.2" sources."micromark-factory-whitespace-1.0.0" @@ -150256,7 +150594,7 @@ in sources."micromark-util-decode-numeric-character-reference-1.0.0" sources."micromark-util-decode-string-1.0.2" sources."micromark-util-encode-1.0.1" - sources."micromark-util-events-to-acorn-1.2.1" + sources."micromark-util-events-to-acorn-1.2.3" sources."micromark-util-html-tag-name-1.1.0" sources."micromark-util-normalize-identifier-1.0.0" sources."micromark-util-resolve-all-1.0.0" @@ -150368,10 +150706,10 @@ in sources."postcss-load-config-4.0.1" sources."postcss-modules-6.0.0" sources."postcss-modules-extract-imports-3.0.0" - sources."postcss-modules-local-by-default-4.0.0" + sources."postcss-modules-local-by-default-4.0.1" sources."postcss-modules-scope-3.0.0" sources."postcss-modules-values-4.0.0" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."postcss-value-parser-4.2.0" sources."prelude-ls-1.1.2" sources."prettier-2.7.1" @@ -150422,7 +150760,7 @@ in }) sources."remark-frontmatter-4.0.1" sources."remark-mdx-frontmatter-1.1.1" - sources."remark-parse-10.0.1" + sources."remark-parse-10.0.2" sources."remark-rehype-9.1.0" sources."require-from-string-2.0.2" sources."require-like-0.1.2" @@ -150433,7 +150771,7 @@ in sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."rollup-3.21.6" + sources."rollup-3.22.0" sources."run-async-2.4.1" sources."run-parallel-1.2.0" sources."rxjs-7.8.1" @@ -150503,7 +150841,7 @@ in sources."sugarss-4.0.1" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."tar-6.1.14" + sources."tar-6.1.15" (sources."tar-fs-2.1.1" // { dependencies = [ sources."chownr-1.1.4" @@ -150511,7 +150849,7 @@ in ]; }) sources."tar-stream-2.2.0" - sources."terser-5.17.3" + sources."terser-5.17.4" sources."through-2.3.8" (sources."through2-2.0.5" // { dependencies = [ @@ -150532,7 +150870,7 @@ in sources."ts-node-10.9.1" sources."ts-toolbelt-6.15.5" sources."tsconfig-paths-4.2.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-check-0.3.2" sources."type-fest-0.21.3" sources."type-is-1.6.18" @@ -150570,33 +150908,32 @@ in sources."v8-compile-cache-lib-3.0.1" sources."vary-1.1.2" sources."vfile-5.3.7" - sources."vfile-location-4.1.0" sources."vfile-message-3.1.4" - (sources."vite-4.3.5" // { + (sources."vite-4.3.8" // { dependencies = [ - sources."@esbuild/android-arm-0.17.18" - sources."@esbuild/android-arm64-0.17.18" - sources."@esbuild/android-x64-0.17.18" - sources."@esbuild/darwin-arm64-0.17.18" - sources."@esbuild/darwin-x64-0.17.18" - sources."@esbuild/freebsd-arm64-0.17.18" - sources."@esbuild/freebsd-x64-0.17.18" - sources."@esbuild/linux-arm-0.17.18" - sources."@esbuild/linux-arm64-0.17.18" - sources."@esbuild/linux-ia32-0.17.18" - sources."@esbuild/linux-loong64-0.17.18" - sources."@esbuild/linux-mips64el-0.17.18" - sources."@esbuild/linux-ppc64-0.17.18" - sources."@esbuild/linux-riscv64-0.17.18" - sources."@esbuild/linux-s390x-0.17.18" - sources."@esbuild/linux-x64-0.17.18" - sources."@esbuild/netbsd-x64-0.17.18" - sources."@esbuild/openbsd-x64-0.17.18" - sources."@esbuild/sunos-x64-0.17.18" - sources."@esbuild/win32-arm64-0.17.18" - sources."@esbuild/win32-ia32-0.17.18" - sources."@esbuild/win32-x64-0.17.18" - sources."esbuild-0.17.18" + sources."@esbuild/android-arm-0.17.19" + sources."@esbuild/android-arm64-0.17.19" + sources."@esbuild/android-x64-0.17.19" + sources."@esbuild/darwin-arm64-0.17.19" + sources."@esbuild/darwin-x64-0.17.19" + sources."@esbuild/freebsd-arm64-0.17.19" + sources."@esbuild/freebsd-x64-0.17.19" + sources."@esbuild/linux-arm-0.17.19" + sources."@esbuild/linux-arm64-0.17.19" + sources."@esbuild/linux-ia32-0.17.19" + sources."@esbuild/linux-loong64-0.17.19" + sources."@esbuild/linux-mips64el-0.17.19" + sources."@esbuild/linux-ppc64-0.17.19" + sources."@esbuild/linux-riscv64-0.17.19" + sources."@esbuild/linux-s390x-0.17.19" + sources."@esbuild/linux-x64-0.17.19" + sources."@esbuild/netbsd-x64-0.17.19" + sources."@esbuild/openbsd-x64-0.17.19" + sources."@esbuild/sunos-x64-0.17.19" + sources."@esbuild/win32-arm64-0.17.19" + sources."@esbuild/win32-ia32-0.17.19" + sources."@esbuild/win32-x64-0.17.19" + sources."esbuild-0.17.19" ]; }) (sources."vite-node-0.28.5" // { @@ -150604,7 +150941,7 @@ in sources."source-map-0.6.1" ]; }) - sources."vm2-3.9.17" + sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."web-encoding-1.1.5" sources."web-streams-polyfill-3.2.1" @@ -150692,7 +151029,7 @@ in sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.5.1" sources."@eslint/eslintrc-2.0.3" - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" sources."@humanwhocodes/config-array-0.11.8" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" @@ -150724,8 +151061,8 @@ in sources."diff-4.0.2" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.40.0" - sources."eslint-plugin-vue-9.12.0" + sources."eslint-8.41.0" + sources."eslint-plugin-vue-9.13.0" sources."eslint-scope-7.2.0" sources."eslint-visitor-keys-3.4.1" sources."espree-9.5.2" @@ -150744,13 +151081,14 @@ in sources."flatted-3.2.7" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.20.0" - sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."ignore-5.2.4" @@ -150758,7 +151096,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" (sources."is-expression-4.0.0" // { dependencies = [ sources."acorn-7.4.1" @@ -150769,7 +151107,6 @@ in sources."is-path-inside-3.0.3" sources."is-regex-1.1.4" sources."isexe-2.0.0" - sources."js-sdsl-4.4.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" @@ -150795,7 +151132,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" - sources."postcss-selector-parser-6.0.12" + sources."postcss-selector-parser-6.0.13" sources."prelude-ls-1.2.1" sources."prettier-2.8.8" sources."pug-error-2.0.0" @@ -150807,7 +151144,7 @@ in sources."reusify-1.0.4" sources."rimraf-3.0.2" sources."run-parallel-1.2.0" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."sprintf-js-1.0.3" @@ -150837,7 +151174,7 @@ in sources."typescript-4.9.5" sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" - sources."vue-eslint-parser-9.2.1" + sources."vue-eslint-parser-9.3.0" sources."which-2.0.2" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" @@ -151365,7 +151702,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-20.1.3" + sources."@types/node-20.2.1" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -151728,7 +152065,7 @@ in sources."is-binary-path-2.1.0" sources."is-buffer-2.0.5" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-data-descriptor-1.0.0" sources."is-decimal-1.0.4" sources."is-descriptor-1.0.2" @@ -152519,7 +152856,7 @@ in sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-3.0.5" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/yauzl-2.10.0" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -152719,7 +153056,7 @@ in sources."fast-json-patch-3.1.1" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fast-redact-3.1.2" + sources."fast-redact-3.2.0" sources."fastq-1.15.0" sources."fd-slicer-1.1.0" sources."fetch-blob-3.2.0" @@ -152760,7 +153097,7 @@ in ]; }) sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" sources."getpass-0.1.7" (sources."glob-9.3.0" // { @@ -152791,6 +153128,7 @@ in }) sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-yarn-3.0.0" sources."htmlparser2-8.0.2" @@ -152866,7 +153204,7 @@ in sources."lcid-3.1.1" sources."levn-0.4.1" sources."lie-3.3.0" - (sources."lighthouse-logger-1.3.0" // { + (sources."lighthouse-logger-1.4.2" // { dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" @@ -152945,9 +153283,9 @@ in sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" - (sources."path-scurry-1.8.0" // { + (sources."path-scurry-1.9.2" // { dependencies = [ - sources."minipass-5.0.0" + sources."minipass-6.0.2" ]; }) sources."path-to-regexp-0.1.7" @@ -153166,10 +153504,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.82.1"; + version = "5.83.1"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz"; - sha512 = "C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.83.1.tgz"; + sha512 = "TNsG9jDScbNuB+Lb/3+vYolPplCS3bbEaJf+Bj0Gw4DhP3ioAflBb1flcRt9zsWITyvOhM96wMQNRWlSX52DgA=="; }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" @@ -153182,7 +153520,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -153206,10 +153544,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."enhanced-resolve-5.14.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -153245,12 +153583,12 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.17.3" - sources."terser-webpack-plugin-5.3.8" + sources."terser-5.17.4" + sources."terser-webpack-plugin-5.3.9" sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.82.1" + sources."webpack-5.83.1" sources."webpack-sources-3.2.3" ]; buildInputs = globalBuildInputs; @@ -153283,7 +153621,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -153310,13 +153648,13 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.20" sources."commander-10.0.1" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."enhanced-resolve-5.14.0" sources."envinfo-7.8.1" sources."es-module-lexer-1.2.1" @@ -153340,7 +153678,7 @@ in sources."has-flag-4.0.0" sources."import-local-3.1.0" sources."interpret-3.1.1" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-plain-object-2.0.4" sources."isexe-2.0.0" sources."isobject-3.0.1" @@ -153380,16 +153718,16 @@ in sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" - (sources."terser-5.17.3" // { + (sources."terser-5.17.4" // { dependencies = [ sources."commander-2.20.3" ]; }) - sources."terser-webpack-plugin-5.3.8" + sources."terser-webpack-plugin-5.3.9" sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - sources."webpack-5.82.1" + sources."webpack-5.83.1" sources."webpack-cli-5.1.1" sources."webpack-merge-5.8.0" sources."webpack-sources-3.2.3" @@ -153430,11 +153768,11 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/express-4.17.17" - sources."@types/express-serve-static-core-4.17.34" + sources."@types/express-serve-static-core-4.17.35" sources."@types/http-proxy-1.17.11" sources."@types/json-schema-7.0.11" sources."@types/mime-1.3.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.0" @@ -153485,7 +153823,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.20" @@ -153513,7 +153851,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.14.0" sources."es-module-lexer-1.2.1" @@ -153548,7 +153886,7 @@ in 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-intrinsic-1.2.1" sources."get-stream-6.0.1" sources."glob-7.2.3" sources."glob-parent-5.1.2" @@ -153557,6 +153895,7 @@ in sources."handle-thing-2.0.1" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" (sources."hpack.js-2.1.6" // { dependencies = [ @@ -153692,8 +154031,8 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.17.3" - (sources."terser-webpack-plugin-5.3.8" // { + sources."terser-5.17.4" + (sources."terser-webpack-plugin-5.3.9" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -153715,7 +154054,7 @@ in sources."vary-1.1.2" sources."watchpack-2.4.0" sources."wbuf-1.7.3" - (sources."webpack-5.82.1" // { + (sources."webpack-5.83.1" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -153763,7 +154102,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.11" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -153789,11 +154128,11 @@ in sources."braces-3.0.2" sources."browserslist-4.21.5" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001486" + sources."caniuse-lite-1.0.30001488" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.392" + sources."electron-to-chromium-1.4.402" sources."enhanced-resolve-5.14.0" sources."es-module-lexer-1.2.1" sources."escalade-3.1.1" @@ -153852,8 +154191,8 @@ in sources."source-map-support-0.5.21" sources."supports-color-8.1.1" sources."tapable-2.2.1" - sources."terser-5.17.3" - (sources."terser-webpack-plugin-5.3.8" // { + sources."terser-5.17.4" + (sources."terser-webpack-plugin-5.3.9" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -153865,7 +154204,7 @@ in sources."update-browserslist-db-1.0.11" sources."uri-js-4.4.1" sources."watchpack-2.4.0" - (sources."webpack-5.82.1" // { + (sources."webpack-5.83.1" // { dependencies = [ sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" @@ -153906,7 +154245,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-20.1.3" + sources."@types/node-20.2.1" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -154233,7 +154572,7 @@ in ]; }) sources."torrent-piece-2.0.1" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."type-fest-0.21.3" sources."typedarray-0.0.6" sources."uint64be-2.0.2" @@ -154341,7 +154680,7 @@ in sources."require-directory-2.1.1" sources."rimraf-3.0.2" sources."safer-buffer-2.1.2" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."sisteransi-1.0.5" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" @@ -154371,13 +154710,18 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.20.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.20.0.tgz"; - sha512 = "UdKJ2LD7qgDxDvll/GkR1HnRP+bcEdqi/HJjDI+7eF4lv9V940jmm3orxCkSEosGyE14q0q6dBRM95+fBI8tdQ=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-3.0.0.tgz"; + sha512 = "azppXJjEQeaVg3wxFZJOGDGtpR8e9clHr2aHuanGHOk9vX3gvesCv97BF/n8qh1Y1d7vDKOBdfQW3UOYZNFGNw=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" + sources."@cloudflare/workerd-darwin-64-1.20230512.0" + sources."@cloudflare/workerd-darwin-arm64-1.20230512.0" + sources."@cloudflare/workerd-linux-64-1.20230512.0" + sources."@cloudflare/workerd-linux-arm64-1.20230512.0" + sources."@cloudflare/workerd-windows-64-1.20230512.0" sources."@esbuild-plugins/node-globals-polyfill-0.1.1" sources."@esbuild-plugins/node-modules-polyfill-0.1.4" sources."@esbuild/android-arm-0.16.3" @@ -154402,105 +154746,89 @@ in sources."@esbuild/win32-arm64-0.16.3" sources."@esbuild/win32-ia32-0.16.3" sources."@esbuild/win32-x64-0.16.3" - sources."@iarna/toml-2.2.5" - sources."@miniflare/cache-2.13.0" - sources."@miniflare/cli-parser-2.13.0" - sources."@miniflare/core-2.13.0" - sources."@miniflare/d1-2.13.0" - sources."@miniflare/durable-objects-2.13.0" - sources."@miniflare/html-rewriter-2.13.0" - sources."@miniflare/http-server-2.13.0" - sources."@miniflare/kv-2.13.0" - sources."@miniflare/queues-2.13.0" - sources."@miniflare/r2-2.13.0" - sources."@miniflare/runner-vm-2.13.0" - sources."@miniflare/scheduler-2.13.0" - sources."@miniflare/shared-2.13.0" - sources."@miniflare/sites-2.13.0" - sources."@miniflare/storage-file-2.13.0" - sources."@miniflare/storage-memory-2.13.0" - sources."@miniflare/storage-redis-2.13.0" - sources."@miniflare/watcher-2.13.0" - sources."@miniflare/web-sockets-2.13.0" - sources."@types/better-sqlite3-7.6.4" - sources."@types/node-20.1.3" - sources."@types/stack-trace-0.0.29" + sources."acorn-8.8.2" + sources."acorn-walk-8.2.0" sources."anymatch-3.1.3" + sources."as-table-1.0.55" + sources."base64-js-1.5.1" + sources."better-sqlite3-8.3.0" sources."binary-extensions-2.2.0" + sources."bindings-1.5.0" + sources."bl-4.1.0" sources."blake3-wasm-2.1.5" sources."braces-3.0.2" + sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."bufferutil-4.0.7" - sources."builtins-5.0.1" sources."busboy-1.6.0" + sources."capnp-ts-0.7.0" sources."chokidar-3.5.3" - sources."cluster-key-slot-1.1.2" - sources."cookie-0.4.2" - sources."cron-schedule-3.0.6" - sources."cross-spawn-7.0.3" + sources."chownr-1.1.4" + sources."cookie-0.5.0" + sources."data-uri-to-buffer-2.0.2" sources."debug-4.3.4" - sources."denque-1.5.1" - sources."dotenv-10.0.0" + sources."decompress-response-6.0.0" + sources."deep-extend-0.6.0" + sources."detect-libc-2.0.1" + sources."end-of-stream-1.4.4" sources."esbuild-0.16.3" sources."escape-string-regexp-4.0.0" sources."estree-walker-0.6.1" - sources."execa-6.1.0" + sources."exit-hook-2.2.1" + sources."expand-template-2.0.3" + sources."file-uri-to-path-1.0.0" sources."fill-range-7.0.1" + sources."fs-constants-1.0.0" sources."fsevents-2.3.2" - sources."get-stream-6.0.1" + (sources."get-source-2.0.12" // { + dependencies = [ + sources."source-map-0.6.1" + ]; + }) + sources."github-from-package-0.0.0" sources."glob-parent-5.1.2" - sources."html-rewriter-wasm-0.4.1" + sources."glob-to-regexp-0.4.1" sources."http-cache-semantics-4.1.1" - sources."human-signals-3.0.1" - sources."ioredis-4.28.5" + sources."ieee754-1.2.1" + sources."inherits-2.0.4" + sources."ini-1.3.8" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."is-stream-3.0.0" - sources."isexe-2.0.0" sources."kleur-4.1.5" - sources."lodash.defaults-4.2.0" - sources."lodash.flatten-4.4.0" - sources."lodash.isarguments-3.1.0" sources."lru-cache-6.0.0" sources."magic-string-0.25.9" - sources."merge-stream-2.0.0" sources."mime-3.0.0" - sources."mimic-fn-4.0.0" - sources."miniflare-2.13.0" + sources."mimic-response-3.1.0" + sources."miniflare-3.0.0" + sources."minimist-1.2.8" + sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."mustache-4.2.0" sources."nanoid-3.3.6" + sources."napi-build-utils-1.0.2" + sources."node-abi-3.40.0" sources."node-forge-1.3.1" sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" - (sources."npm-run-path-5.1.0" // { - dependencies = [ - sources."path-key-4.0.0" - ]; - }) - sources."npx-import-1.1.4" - sources."onetime-6.0.0" - sources."p-map-2.1.0" - sources."parse-package-name-1.0.0" - sources."path-key-3.1.1" + sources."once-1.4.0" sources."path-to-regexp-6.2.1" sources."picomatch-2.3.1" + sources."prebuild-install-7.1.1" + sources."printable-characters-1.0.42" + sources."pump-3.0.0" + sources."rc-1.2.8" + sources."readable-stream-3.6.2" sources."readdirp-3.6.0" - sources."redis-commands-1.7.0" - sources."redis-errors-1.2.0" - sources."redis-parser-3.0.0" sources."rollup-plugin-inject-3.0.2" sources."rollup-plugin-node-polyfills-0.2.1" sources."rollup-pluginutils-2.8.2" + sources."safe-buffer-5.2.1" sources."selfsigned-2.1.1" - sources."semiver-1.1.0" - sources."semver-7.5.0" - sources."set-cookie-parser-2.6.0" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.7" + sources."semver-7.5.1" + sources."simple-concat-1.0.1" + sources."simple-get-4.0.1" sources."source-map-0.7.4" (sources."source-map-support-0.5.21" // { dependencies = [ @@ -154508,20 +154836,26 @@ in ]; }) sources."sourcemap-codec-1.4.8" - sources."stack-trace-0.0.10" - sources."standard-as-callback-2.1.0" + sources."stacktracey-2.1.8" + sources."stoppable-1.1.0" sources."streamsearch-1.1.0" - sources."strip-final-newline-3.0.0" + sources."string_decoder-1.3.0" + sources."strip-json-comments-2.0.1" + sources."tar-fs-2.1.1" + sources."tar-stream-2.2.0" sources."to-regex-range-5.0.1" - sources."undici-5.20.0" - sources."urlpattern-polyfill-4.0.3" + sources."tslib-2.5.2" + sources."tunnel-agent-0.6.0" + sources."undici-5.22.1" sources."utf-8-validate-6.0.3" - sources."validate-npm-package-name-4.0.0" - sources."which-2.0.2" + sources."util-deprecate-1.0.2" + sources."workerd-1.20230512.0" + sources."wrappy-1.0.2" sources."ws-8.13.0" sources."xxhash-wasm-1.0.2" sources."yallist-4.0.0" - sources."youch-2.2.2" + sources."youch-3.2.3" + sources."zod-3.21.4" ]; buildInputs = globalBuildInputs; meta = { @@ -154569,7 +154903,7 @@ in sources."ms-2.1.2" ]; }) - sources."@eslint/js-8.40.0" + sources."@eslint/js-8.41.0" (sources."@humanwhocodes/config-array-0.11.8" // { dependencies = [ sources."debug-4.3.4" @@ -154597,7 +154931,7 @@ in sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" sources."available-typed-arrays-1.0.5" - sources."axe-core-4.7.0" + sources."axe-core-4.7.1" sources."axobject-query-3.1.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" @@ -154623,7 +154957,7 @@ in sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.40.0" // { + (sources."eslint-8.41.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" @@ -154660,14 +154994,14 @@ in sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-symbol-description-1.0.0" sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.20.0" sources."globalthis-1.0.3" sources."gopd-1.0.1" - sources."grapheme-splitter-1.0.4" + sources."graphemer-1.4.0" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-flag-4.0.0" @@ -154686,7 +155020,7 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" @@ -154705,7 +155039,6 @@ in sources."is-weakset-2.0.2" sources."isarray-2.0.5" sources."isexe-2.0.0" - sources."js-sdsl-4.4.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" @@ -154799,10 +155132,10 @@ in "@yaegassy/coc-nginx" = nodeEnv.buildNodePackage { name = "_at_yaegassy_slash_coc-nginx"; packageName = "@yaegassy/coc-nginx"; - version = "0.4.0"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@yaegassy/coc-nginx/-/coc-nginx-0.4.0.tgz"; - sha512 = "RY4ygMb9lvhHfc7NJYpYuozYq0Tww1EfRcSP3eVQ15ai57bD5dC7FP/I4Yq3ENYn4tU3rKVM31REY6fLm9micQ=="; + url = "https://registry.npmjs.org/@yaegassy/coc-nginx/-/coc-nginx-0.4.1.tgz"; + sha512 = "GJeiQWiBDxKsWPowBLBjxnPzaRT50L9tLDtD9dZcKh8OQTdrOJGa7cqNz7T/xuqSq3r+AyD1mmeNSL7141HMsQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -154963,18 +155296,18 @@ in (sources."@npmcli/arborist-4.3.1" // { dependencies = [ sources."mkdirp-1.0.4" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."@npmcli/fs-1.1.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."@npmcli/git-2.1.0" // { dependencies = [ sources."mkdirp-1.0.4" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."@npmcli/installed-package-contents-1.0.7" @@ -154985,7 +155318,7 @@ in }) (sources."@npmcli/metavuln-calculator-2.0.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."@npmcli/move-file-1.1.2" // { @@ -155214,7 +155547,7 @@ in sources."fullname-4.0.1" sources."function-bind-1.1.1" sources."gauge-1.2.7" - sources."get-intrinsic-1.2.0" + sources."get-intrinsic-1.2.1" sources."get-stdin-4.0.1" sources."get-stream-4.1.0" (sources."glob-8.1.0" // { @@ -155225,7 +155558,7 @@ in sources."glob-parent-5.1.2" (sources."global-agent-3.0.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."global-dirs-3.0.1" // { @@ -155252,6 +155585,7 @@ in }) sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" @@ -155304,7 +155638,7 @@ in sources."ip-2.0.0" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.0" + sources."is-core-module-2.12.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -155334,7 +155668,7 @@ in sources."isbinaryfile-5.0.0" sources."isexe-2.0.0" sources."isurl-1.0.0" - (sources."jake-10.8.5" // { + (sources."jake-10.8.6" // { dependencies = [ sources."brace-expansion-1.1.11" sources."minimatch-3.1.2" @@ -155452,7 +155786,7 @@ in sources."minimatch-3.1.2" sources."npmlog-6.0.2" sources."readable-stream-3.6.2" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."nopt-5.0.0" @@ -155467,7 +155801,7 @@ in sources."npm-conf-1.1.3" (sources."npm-install-checks-4.0.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."npm-keyword-6.1.0" // { @@ -155486,7 +155820,7 @@ in (sources."npm-package-arg-8.1.5" // { dependencies = [ sources."hosted-git-info-4.1.0" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."npm-packlist-3.0.0" // { @@ -155498,7 +155832,7 @@ in }) (sources."npm-pick-manifest-6.1.1" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."npm-registry-fetch-12.0.2" // { @@ -155518,7 +155852,7 @@ in }) sources."mkdirp-1.0.4" sources."ms-2.1.2" - (sources."semver-7.5.0" // { + (sources."semver-7.5.1" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -155583,7 +155917,7 @@ in sources."mimic-response-3.1.0" sources."normalize-url-6.1.0" sources."responselike-2.0.1" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) (sources."pacote-12.0.3" // { @@ -155787,7 +156121,7 @@ in ]; }) sources."taketalk-1.0.0" - (sources."tar-6.1.14" // { + (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" sources."mkdirp-1.0.4" @@ -155803,7 +156137,7 @@ in sources."to-regex-range-5.0.1" sources."treeverse-1.0.4" sources."trim-newlines-2.0.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."tunnel-0.0.6" (sources."twig-1.16.0" // { dependencies = [ @@ -155821,7 +156155,7 @@ in sources."unzip-response-2.0.1" (sources."update-notifier-5.1.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."url-parse-lax-3.0.0" @@ -155873,7 +156207,7 @@ in sources."get-stream-3.0.0" (sources."global-agent-2.2.0" // { dependencies = [ - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."got-6.7.1" @@ -155889,7 +156223,7 @@ in sources."url-parse-lax-1.0.0" ]; }) - (sources."yeoman-environment-3.16.2" // { + (sources."yeoman-environment-3.18.3" // { dependencies = [ sources."are-we-there-yet-2.0.0" sources."brace-expansion-1.1.11" @@ -155910,7 +156244,7 @@ in sources."p-locate-5.0.0" sources."path-exists-4.0.0" sources."readable-stream-3.6.2" - sources."semver-7.5.0" + sources."semver-7.5.1" ]; }) sources."yocto-queue-0.1.0" @@ -155986,28 +156320,28 @@ in sources."@esm2cjs/p-timeout-5.1.0" sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.7" - (sources."@sentry-internal/tracing-7.51.2" // { + (sources."@sentry-internal/tracing-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/core-7.51.2" // { + (sources."@sentry/core-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/integrations-7.51.2" // { + (sources."@sentry/integrations-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.51.2" // { + (sources."@sentry/node-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.51.2" - (sources."@sentry/utils-7.51.2" // { + sources."@sentry/types-7.52.1" + (sources."@sentry/utils-7.52.1" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -156028,14 +156362,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.20.0" - sources."@zwave-js/config-10.20.0" - sources."@zwave-js/core-10.20.0" - sources."@zwave-js/host-10.20.0" - sources."@zwave-js/nvmedit-10.20.0" - sources."@zwave-js/serial-10.20.0" + sources."@zwave-js/cc-10.21.0" + sources."@zwave-js/config-10.21.0" + sources."@zwave-js/core-10.21.0" + sources."@zwave-js/host-10.21.0" + sources."@zwave-js/nvmedit-10.21.0" + sources."@zwave-js/serial-10.21.0" sources."@zwave-js/shared-10.17.0" - sources."@zwave-js/testing-10.20.0" + sources."@zwave-js/testing-10.21.0" sources."agent-base-6.0.2" sources."alcalzone-shared-4.0.8" sources."ansi-colors-4.1.3" @@ -156130,7 +156464,7 @@ in sources."retry-0.12.0" sources."safe-buffer-5.2.1" sources."safe-stable-stringify-2.4.3" - sources."semver-7.5.0" + sources."semver-7.5.1" sources."serialport-10.5.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -156146,7 +156480,7 @@ in sources."text-hex-1.0.0" sources."tiny-glob-0.2.9" sources."triple-beam-1.3.0" - sources."tslib-2.5.0" + sources."tslib-2.5.2" sources."universalify-2.0.0" sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" @@ -156161,7 +156495,7 @@ in sources."yallist-4.0.0" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" - sources."zwave-js-10.20.0" + sources."zwave-js-10.21.0" ]; buildInputs = globalBuildInputs; meta = { @@ -156188,7 +156522,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.16.8" + sources."@types/node-18.16.13" sources."@types/ps-tree-1.1.2" sources."@types/which-3.0.0" sources."braces-3.0.2" diff --git a/pkgs/development/php-packages/box/default.nix b/pkgs/development/php-packages/box/default.nix index 7ba5246d8a7..f4c48502dcf 100644 --- a/pkgs/development/php-packages/box/default.nix +++ b/pkgs/development/php-packages/box/default.nix @@ -30,6 +30,6 @@ mkDerivation { description = "An application for building and managing Phars"; license = licenses.mit; homepage = "https://github.com/box-project/box"; - maintainers = with maintainers; [ jtojnar ] ++ teams.php.members; + maintainers = with maintainers; [ ] ++ teams.php.members; }; } diff --git a/pkgs/development/php-packages/php-cs-fixer/default.nix b/pkgs/development/php-packages/php-cs-fixer/default.nix index c3a8d6cca75..3fc6b3a50fa 100644 --- a/pkgs/development/php-packages/php-cs-fixer/default.nix +++ b/pkgs/development/php-packages/php-cs-fixer/default.nix @@ -30,6 +30,6 @@ mkDerivation { description = "A tool to automatically fix PHP coding standards issues"; license = licenses.mit; homepage = "https://cs.symfony.com/"; - maintainers = with maintainers; [ jtojnar ] ++ teams.php.members; + maintainers = with maintainers; [ ] ++ teams.php.members; }; } diff --git a/pkgs/development/php-packages/php-parallel-lint/default.nix b/pkgs/development/php-packages/php-parallel-lint/default.nix index 406e58b7958..e4977490c51 100644 --- a/pkgs/development/php-packages/php-parallel-lint/default.nix +++ b/pkgs/development/php-packages/php-parallel-lint/default.nix @@ -43,6 +43,6 @@ mkDerivation { description = "Tool to check syntax of PHP files faster than serial check with fancier output"; license = licenses.bsd2; homepage = "https://github.com/php-parallel-lint/PHP-Parallel-Lint"; - maintainers = with maintainers; [ jtojnar ] ++ teams.php.members; + maintainers = with maintainers; [ ] ++ teams.php.members; }; } diff --git a/pkgs/development/python-modules/babelgladeextractor/default.nix b/pkgs/development/python-modules/babelgladeextractor/default.nix index bd6baccbde4..60978371eb9 100644 --- a/pkgs/development/python-modules/babelgladeextractor/default.nix +++ b/pkgs/development/python-modules/babelgladeextractor/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { homepage = "https://github.com/gnome-keysign/babel-glade"; description = "Babel Glade XML files translatable strings extractor"; license = licenses.bsd3; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/bayesian-optimization/default.nix b/pkgs/development/python-modules/bayesian-optimization/default.nix index 82b8738285b..dda52e8ebba 100644 --- a/pkgs/development/python-modules/bayesian-optimization/default.nix +++ b/pkgs/development/python-modules/bayesian-optimization/default.nix @@ -4,54 +4,42 @@ , fetchFromGitHub , scikit-learn , scipy +, colorama , pytestCheckHook -, isPy27 -, fetchpatch +, pythonOlder }: buildPythonPackage rec { pname = "bayesian-optimization"; - version = "1.2.0"; - disabled = isPy27; + version = "1.4.3"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { - owner = "fmfn"; + owner = "bayesian-optimization"; repo = "BayesianOptimization"; - rev = version; - sha256 = "01mg9npiqh1qmq5ldnbpjmr8qkiw827msiv3crpkhbj4bdzasbfm"; + rev = "refs/tags/v${version}"; + hash = "sha256-Bp/ZhVSW5lTGwnsd/doOXu++Gxw/51owCfMm96Qmgd4="; }; propagatedBuildInputs = [ scikit-learn scipy - ]; - - patches = [ - # TypeError with scipy >= 1.8 - # https://github.com/fmfn/BayesianOptimization/issues/300 - (fetchpatch { - url = "https://github.com/fmfn/BayesianOptimization/commit/b4e09a25842985a4a0acea0c0f5c8789b7be125e.patch"; - hash = "sha256-PfcifCFd4GRNTA+4+T+6A760QAgyZxhDCTyzNn2crdM="; - name = "scipy_18_fix.patch"; - }) + colorama ]; nativeCheckInputs = [ pytestCheckHook ]; - disabledTests = [ - # New sklearn broke one test - # https://github.com/fmfn/BayesianOptimization/issues/243 - "test_suggest_with_one_observation" - ]; - pythonImportsCheck = [ "bayes_opt" ]; meta = with lib; { - broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; + broken = stdenv.isLinux && stdenv.isAarch64; description = '' A Python implementation of global optimization with gaussian processes ''; - homepage = "https://github.com/fmfn/BayesianOptimization"; + homepage = "https://github.com/bayesian-optimization/BayesianOptimization"; + changelog = "https://github.com/bayesian-optimization/BayesianOptimization/releases/tag/v${version}"; license = licenses.mit; maintainers = [ maintainers.juliendehos ]; }; diff --git a/pkgs/development/python-modules/cffsubr/default.nix b/pkgs/development/python-modules/cffsubr/default.nix index 124c61b1a57..05d4c115085 100644 --- a/pkgs/development/python-modules/cffsubr/default.nix +++ b/pkgs/development/python-modules/cffsubr/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { description = "Standalone CFF subroutinizer based on AFDKO tx"; homepage = "https://github.com/adobe-type-tools/cffsubr"; license = licenses.asl20; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/click-configfile/default.nix b/pkgs/development/python-modules/click-configfile/default.nix index 5ddf2891f7f..c1b0a0f0923 100644 --- a/pkgs/development/python-modules/click-configfile/default.nix +++ b/pkgs/development/python-modules/click-configfile/default.nix @@ -46,6 +46,6 @@ buildPythonPackage rec { description = "Add support for commands that use configuration files to Click"; homepage = "https://github.com/click-contrib/click-configfile"; license = licenses.bsd3; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/click-spinner/default.nix b/pkgs/development/python-modules/click-spinner/default.nix index 7d28cfb2819..2cdd1f4800c 100644 --- a/pkgs/development/python-modules/click-spinner/default.nix +++ b/pkgs/development/python-modules/click-spinner/default.nix @@ -25,6 +25,6 @@ buildPythonPackage rec { description = "Add support for showwing that command line app is active to Click"; homepage = "https://github.com/click-contrib/click-spinner"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/cloudsmith-api/default.nix b/pkgs/development/python-modules/cloudsmith-api/default.nix index 7a708f32871..42282fc1783 100644 --- a/pkgs/development/python-modules/cloudsmith-api/default.nix +++ b/pkgs/development/python-modules/cloudsmith-api/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { description = "Cloudsmith API Client"; homepage = "https://github.com/cloudsmith-io/cloudsmith-api"; license = licenses.asl20; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/cohere/default.nix b/pkgs/development/python-modules/cohere/default.nix index 50ec4db9840..441cfb7723f 100644 --- a/pkgs/development/python-modules/cohere/default.nix +++ b/pkgs/development/python-modules/cohere/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "cohere"; - version = "4.3.1"; + version = "4.5.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-koIDk7JPKb8lhBkwaX/o76AuaNrFaeapVp54RRxEY9U="; + hash = "sha256-+/oeZpYyCrQava0lEt5uLlSc65XaBCyI/G/lwAxfBTA="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/compreffor/default.nix b/pkgs/development/python-modules/compreffor/default.nix index caf7a6fe22b..00f69b69497 100644 --- a/pkgs/development/python-modules/compreffor/default.nix +++ b/pkgs/development/python-modules/compreffor/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "CFF table subroutinizer for FontTools"; homepage = "https://github.com/googlefonts/compreffor"; license = licenses.asl20; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/dogtail/default.nix b/pkgs/development/python-modules/dogtail/default.nix index 2f8a02dc3ec..e25bc5d23ae 100644 --- a/pkgs/development/python-modules/dogtail/default.nix +++ b/pkgs/development/python-modules/dogtail/default.nix @@ -62,6 +62,6 @@ buildPythonPackage { description = "GUI test tool and automation framework that uses Accessibility technologies to communicate with desktop applications"; homepage = "https://gitlab.com/dogtail/dogtail"; license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ jtojnar ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/eth-hash/default.nix b/pkgs/development/python-modules/eth-hash/default.nix index 070fe454bda..f1b22597f2c 100644 --- a/pkgs/development/python-modules/eth-hash/default.nix +++ b/pkgs/development/python-modules/eth-hash/default.nix @@ -3,7 +3,6 @@ , buildPythonPackage , pythonOlder , pytest -, pysha3 , safe-pysha3 , pycryptodome }: @@ -32,7 +31,7 @@ buildPythonPackage rec { passthru.optional-dependencies = { pycryptodome = [ pycryptodome ]; - pysha3 = if pythonOlder "3.9" then [ pysha3 ] else [ safe-pysha3 ]; + pysha3 = [ safe-pysha3 ]; }; meta = with lib; { diff --git a/pkgs/development/python-modules/hg-git/default.nix b/pkgs/development/python-modules/hg-git/default.nix index 0be08bedff7..26f04edbc02 100644 --- a/pkgs/development/python-modules/hg-git/default.nix +++ b/pkgs/development/python-modules/hg-git/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchPypi +, setuptools-scm , dulwich , mercurial , pythonOlder @@ -8,16 +9,20 @@ buildPythonPackage rec { pname = "hg-git"; - version = "1.0.1"; - format = "setuptools"; + version = "1.0.2"; + format = "pyproject"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-P3Ng9bD16AX7DJac/Y168GSWLTIAD3I1aLblYIDQiyk="; + hash = "sha256-WoQOh6cKFcnB4GGWvD7VlV53LxHpsYA+iMDJ9VrwNBY="; }; + nativeBuildInputs = [ + setuptools-scm + ]; + propagatedBuildInputs = [ dulwich mercurial diff --git a/pkgs/development/python-modules/lml/default.nix b/pkgs/development/python-modules/lml/default.nix index 878edcf6bdb..e1d900ba657 100644 --- a/pkgs/development/python-modules/lml/default.nix +++ b/pkgs/development/python-modules/lml/default.nix @@ -26,6 +26,6 @@ buildPythonPackage rec { description = "Load me later. A lazy plugin management system for Python"; homepage = "http://lml.readthedocs.io/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jtojnar ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/moddb/default.nix b/pkgs/development/python-modules/moddb/default.nix new file mode 100644 index 00000000000..102410dc6bb --- /dev/null +++ b/pkgs/development/python-modules/moddb/default.nix @@ -0,0 +1,47 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pythonRelaxDepsHook +, beautifulsoup4 +, pyrate-limiter +, requests +, toolz +}: + +buildPythonPackage rec { + pname = "moddb"; + version = "0.8.1"; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "ClementJ18"; + repo = "moddb"; + rev = "v${version}"; + hash = "sha256-Pl/Wc0CL31+ZLFfy6yUfrZzsECifnEpWVGRHZVaFWG4="; + }; + + nativeBuildInputs = [ + pythonRelaxDepsHook + ]; + + propagatedBuildInputs = [ + beautifulsoup4 + pyrate-limiter + requests + toolz + ]; + + pythonRelaxDeps = true; + + pythonImportsCheck = [ "moddb" ]; + + doCheck = false; # Tests try to access the internet. + + + meta = with lib; { + description = "A Python scrapper to access ModDB mods, games and more as objects"; + homepage = "https://github.com/ClementJ18/moddb"; + license = licenses.mit; + maintainers = with maintainers; [ kranzes ]; + }; +} diff --git a/pkgs/development/python-modules/orderedset/default.nix b/pkgs/development/python-modules/orderedset/default.nix index 9910aefe1cb..4141d053ad4 100644 --- a/pkgs/development/python-modules/orderedset/default.nix +++ b/pkgs/development/python-modules/orderedset/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { description = "An Ordered Set implementation in Cython"; homepage = "https://pypi.python.org/pypi/orderedset"; license = licenses.bsd3; - maintainers = [ maintainers.jtojnar ]; + maintainers = [ ]; # No support for Python 3.9/3.10 # https://github.com/simonpercivall/orderedset/issues/36 broken = true; diff --git a/pkgs/development/python-modules/osc-lib/default.nix b/pkgs/development/python-modules/osc-lib/default.nix index f9cc5d0416e..2add2f7e98d 100644 --- a/pkgs/development/python-modules/osc-lib/default.nix +++ b/pkgs/development/python-modules/osc-lib/default.nix @@ -14,17 +14,17 @@ buildPythonPackage rec { pname = "osc-lib"; - version = "unstable-2022-03-09"; + version = "2.8.0"; src = fetchFromGitHub { owner = "openstack"; repo = "osc-lib"; - rev = "65c73fd5030276e34f3d52c03ddb9d27cd8ec6f5"; - hash = "sha256-CLE9lrMMlvVrihe+N4wvIKe8t9IZ1TpHHVdn2dnvAOI="; + rev = version; + hash = "sha256-ijL/m9BTAgDUjqy77nkl3rDppeUPBycmEqlL6uMruIA="; }; # fake version to make pbr.packaging happy and not reject it... - PBR_VERSION = "2.5.0"; + PBR_VERSION = version; nativeBuildInputs = [ pbr diff --git a/pkgs/development/python-modules/pydbus/default.nix b/pkgs/development/python-modules/pydbus/default.nix index f9a3e7f5ccb..e804b2c8599 100644 --- a/pkgs/development/python-modules/pydbus/default.nix +++ b/pkgs/development/python-modules/pydbus/default.nix @@ -1,9 +1,13 @@ -{ lib, buildPythonPackage, fetchPypi, pygobject3 }: +{ lib, buildPythonPackage, fetchPypi, pygobject3, pythonAtLeast }: buildPythonPackage rec { pname = "pydbus"; version = "0.6.0"; + # Python 3.11 changed the API of the `inspect` module and pydbus was never + # updated to adapt; last commit was in 2018. + disabled = pythonAtLeast "3.11"; + src = fetchPypi { inherit pname version; sha256 = "0b0gipvz7vcfa9ddmwq2jrx16d4apb0hdnl5q4i3h8jlzwp1c1s2"; diff --git a/pkgs/development/python-modules/pyexcel-io/default.nix b/pkgs/development/python-modules/pyexcel-io/default.nix index b0fc0a773ef..f20e44b1f8d 100644 --- a/pkgs/development/python-modules/pyexcel-io/default.nix +++ b/pkgs/development/python-modules/pyexcel-io/default.nix @@ -29,6 +29,6 @@ buildPythonPackage rec { description = "One interface to read and write the data in various excel formats, import the data into and export the data from databases"; homepage = "http://docs.pyexcel.org/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jtojnar ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/pyexcel-ods/default.nix b/pkgs/development/python-modules/pyexcel-ods/default.nix index b0f9028a70e..519d6b4fc0c 100644 --- a/pkgs/development/python-modules/pyexcel-ods/default.nix +++ b/pkgs/development/python-modules/pyexcel-ods/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "Plug-in to pyexcel providing the capbility to read, manipulate and write data in ods formats using odfpy"; homepage = "http://docs.pyexcel.org/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jtojnar ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/pyexcel-xls/default.nix b/pkgs/development/python-modules/pyexcel-xls/default.nix index 1699757bd29..314dca9d0ed 100644 --- a/pkgs/development/python-modules/pyexcel-xls/default.nix +++ b/pkgs/development/python-modules/pyexcel-xls/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "A wrapper library to read, manipulate and write data in xls using xlrd and xlwt"; homepage = "http://docs.pyexcel.org/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jtojnar ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/pyexcel/default.nix b/pkgs/development/python-modules/pyexcel/default.nix index 5efcb6d9364..5106df79a2d 100644 --- a/pkgs/development/python-modules/pyexcel/default.nix +++ b/pkgs/development/python-modules/pyexcel/default.nix @@ -38,6 +38,6 @@ buildPythonPackage rec { description = "Single API for reading, manipulating and writing data in csv, ods, xls, xlsx and xlsm files"; homepage = "http://docs.pyexcel.org/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jtojnar ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/pygpgme/default.nix b/pkgs/development/python-modules/pygpgme/default.nix index 29be02751bb..ea6364f1125 100644 --- a/pkgs/development/python-modules/pygpgme/default.nix +++ b/pkgs/development/python-modules/pygpgme/default.nix @@ -1,10 +1,18 @@ -{ lib, buildPythonPackage, fetchurl, isPyPy -, gpgme }: +{ lib +, buildPythonPackage +, fetchurl +, gpgme +, isPyPy +, pythonAtLeast +}: buildPythonPackage rec { version = "0.3"; pname = "pygpgme"; - disabled = isPyPy; + + # Native code doesn't compile against the C API of Python 3.11: + # https://bugs.launchpad.net/pygpgme/+bug/1996122 + disabled = isPyPy || pythonAtLeast "3.11"; src = fetchurl { url = "https://launchpad.net/pygpgme/trunk/${version}/+download/${pname}-${version}.tar.gz"; diff --git a/pkgs/development/python-modules/pyrate-limiter/default.nix b/pkgs/development/python-modules/pyrate-limiter/default.nix new file mode 100644 index 00000000000..3aa0d42e2d5 --- /dev/null +++ b/pkgs/development/python-modules/pyrate-limiter/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, poetry-core +}: + +buildPythonPackage rec { + pname = "pyrate-limiter"; + version = "2.10.0"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "vutran1710"; + repo = "PyrateLimiter"; + rev = "v${version}"; + hash = "sha256-CPusPeyTS+QyWiMHsU0ii9ZxPuizsqv0wQy3uicrDw0="; + }; + + nativeBuildInputs = [ + poetry-core + ]; + + pythonImportsCheck = [ + "pyrate_limiter" + ]; + + meta = with lib; { + description = "Python Rate-Limiter using Leaky-Bucket Algorimth Family"; + homepage = "https://github.com/vutran1710/PyrateLimiter"; + changelog = "https://github.com/vutran1710/PyrateLimiter/blob/${src.rev}/CHANGELOG.md"; + license = licenses.mit; + maintainers = with maintainers; [ kranzes ]; + }; +} diff --git a/pkgs/development/python-modules/pysha3/default.nix b/pkgs/development/python-modules/pysha3/default.nix deleted file mode 100644 index 8bdbb860195..00000000000 --- a/pkgs/development/python-modules/pysha3/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ lib, buildPythonPackage, fetchPypi, pythonOlder }: - -buildPythonPackage rec { - pname = "pysha3"; - version = "1.0.2"; - disabled = pythonOlder "2.7"; - - src = fetchPypi { - inherit pname version; - sha256 = "17kkjapv6sr906ib0r5wpldmzw7scza08kv241r98vffy9rqx67y"; - }; - - meta = { - description = "Backport of hashlib.sha3 for 2.7 to 3.5"; - homepage = "https://github.com/tiran/pysha3"; - license = lib.licenses.psfl; - }; -} diff --git a/pkgs/development/python-modules/python-ctags3/default.nix b/pkgs/development/python-modules/python-ctags3/default.nix index 6ef8a757093..4c987250e49 100644 --- a/pkgs/development/python-modules/python-ctags3/default.nix +++ b/pkgs/development/python-modules/python-ctags3/default.nix @@ -1,17 +1,28 @@ -{ lib, buildPythonPackage, fetchPypi }: +{ lib, buildPythonPackage, cython, fetchFromGitHub }: buildPythonPackage rec { pname = "python-ctags3"; version = "1.5.0"; - src = fetchPypi { - inherit pname version; - sha256 = "a2cb0b35f0d67bab47045d803dce8291a1500af11832b154f69b3785f2130daa"; + src = fetchFromGitHub { + owner = "universal-ctags"; + repo = pname; + rev = version; + hash = "sha256-XVsZckNVJ1H5q8FzqoVd1UWRw0zOygvRtb7arX9dwGE="; }; + nativeBuildInputs = [ + cython + ]; + + # Regenerating the bindings keeps later versions of Python happy + postPatch = '' + cython src/_readtags.pyx + ''; + meta = with lib; { + inherit (src.meta) homepage; description = "Ctags indexing python bindings"; - homepage = "https://github.com/jonashaag/python-ctags3"; license = licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/statmake/default.nix b/pkgs/development/python-modules/statmake/default.nix index f5fc9dd9c7d..b9d0a4425c4 100644 --- a/pkgs/development/python-modules/statmake/default.nix +++ b/pkgs/development/python-modules/statmake/default.nix @@ -65,6 +65,6 @@ buildPythonPackage rec { homepage = "https://github.com/daltonmaag/statmake"; changelog = "https://github.com/daltonmaag/statmake/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/ufo2ft/default.nix b/pkgs/development/python-modules/ufo2ft/default.nix index 8f3eb8c4853..9ed1ec78e1b 100644 --- a/pkgs/development/python-modules/ufo2ft/default.nix +++ b/pkgs/development/python-modules/ufo2ft/default.nix @@ -64,6 +64,6 @@ buildPythonPackage rec { description = "Bridge from UFOs to FontTools objects"; homepage = "https://github.com/googlefonts/ufo2ft"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/ufoLib2/default.nix b/pkgs/development/python-modules/ufoLib2/default.nix index 7a959147dea..eba49e474aa 100644 --- a/pkgs/development/python-modules/ufoLib2/default.nix +++ b/pkgs/development/python-modules/ufoLib2/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { description = "Library to deal with UFO font sources"; homepage = "https://github.com/fonttools/ufoLib2"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/uptime-kuma-api/default.nix b/pkgs/development/python-modules/uptime-kuma-api/default.nix index 03a5dccee99..48bbbf84aa1 100644 --- a/pkgs/development/python-modules/uptime-kuma-api/default.nix +++ b/pkgs/development/python-modules/uptime-kuma-api/default.nix @@ -7,14 +7,15 @@ buildPythonPackage rec { pname = "uptime-kuma-api"; - version = "0.10.0"; + version = "0.13.0"; + format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { pname = "uptime_kuma_api"; inherit version; - hash = "sha256-qBSXQyruLVGJ0QeihnEUXOqYpvVftdFM5ED3usHT0OQ="; + hash = "sha256-MoHE6Y7x1F1l70tuCHNIPt+vpqfJ00EUIMHnE4476Co="; }; propagatedBuildInputs = [ @@ -32,6 +33,7 @@ buildPythonPackage rec { meta = with lib; { description = "A Python wrapper for the Uptime Kuma Socket.IO API"; homepage = "https://github.com/lucasheld/uptime-kuma-api"; + changelog = "https://github.com/lucasheld/uptime-kuma-api/blob/${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ julienmalka ]; }; diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 5dba1c0cf09..4f70f9af751 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -27,7 +27,7 @@ , bison, flex, pango, python3, patchelf, binutils, freetds, wrapGAppsHook, atk , bundler, libsass, libexif, libselinux, libsepol, shared-mime-info, libthai, libdatrie , CoreServices, DarwinTools, cctools, libtool, discount, exiv2, libmaxminddb, libyaml -, autoSignDarwinBinariesHook +, autoSignDarwinBinariesHook, fetchpatch }@args: let @@ -530,6 +530,15 @@ in ovirt-engine-sdk = attrs: { buildInputs = [ curl libxml2 ]; + dontBuild = false; + patches = [ + # fix ruby 3.1 https://github.com/oVirt/ovirt-engine-sdk-ruby/pull/3 + (fetchpatch { + url = "https://github.com/oVirt/ovirt-engine-sdk-ruby/pull/3/commits/b596b919bc7857fdc0fc1c61a8cb7eab32cfc2db.patch"; + hash = "sha256-AzGTQaD/e6X4LOMuXhy/WhbayhWKYCGHXPFlzLRWyPM="; + stripLen = 1; + }) + ]; }; pango = attrs: { diff --git a/pkgs/development/tools/build-managers/meson/default.nix b/pkgs/development/tools/build-managers/meson/default.nix index 3cd5eceb512..402beff97e5 100644 --- a/pkgs/development/tools/build-managers/meson/default.nix +++ b/pkgs/development/tools/build-managers/meson/default.nix @@ -145,7 +145,7 @@ python3.pkgs.buildPythonApplication rec { code. ''; license = licenses.asl20; - maintainers = with maintainers; [ jtojnar mbe AndersonTorres ]; + maintainers = with maintainers; [ mbe AndersonTorres ]; inherit (python3.meta) platforms; }; } diff --git a/pkgs/development/tools/cloudsmith-cli/default.nix b/pkgs/development/tools/cloudsmith-cli/default.nix index f08d020f419..65e69c86ed4 100644 --- a/pkgs/development/tools/cloudsmith-cli/default.nix +++ b/pkgs/development/tools/cloudsmith-cli/default.nix @@ -40,7 +40,7 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://help.cloudsmith.io/docs/cli/"; description = "Cloudsmith Command Line Interface"; changelog = "https://github.com/cloudsmith-io/cloudsmith-cli/blob/v${version}/CHANGELOG.md"; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; license = licenses.asl20; platforms = with platforms; unix; }; diff --git a/pkgs/development/tools/database/vitess/default.nix b/pkgs/development/tools/database/vitess/default.nix index 9f30c1ea1cc..e5743e8e2e4 100644 --- a/pkgs/development/tools/database/vitess/default.nix +++ b/pkgs/development/tools/database/vitess/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "vitess"; - version = "16.0.1"; + version = "16.0.2"; src = fetchFromGitHub { owner = "vitessio"; repo = pname; rev = "v${version}"; - hash = "sha256-2iy80Ac8yh7lTiM53qXygVX/n3r2C/MmijoQRXIhoRk="; + hash = "sha256-8nFvNO+zb7Z0g2BMnlk+obDolCQrlfClOIg0mPW8gAU="; }; vendorHash = "sha256-hC0skrEDXn6SXjH75ur77I0pHnGSURErAy97lmVvqro="; diff --git a/pkgs/development/tools/flatpak-builder/default.nix b/pkgs/development/tools/flatpak-builder/default.nix index f11dd3994ac..c3c59f1b2ba 100644 --- a/pkgs/development/tools/flatpak-builder/default.nix +++ b/pkgs/development/tools/flatpak-builder/default.nix @@ -152,7 +152,7 @@ in stdenv.mkDerivation rec { description = "Tool to build flatpaks from source"; homepage = "https://github.com/flatpak/flatpak-builder"; license = licenses.lgpl21Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/tools/gosec/default.nix b/pkgs/development/tools/gosec/default.nix index 2bb15698e06..27a8c3bc653 100644 --- a/pkgs/development/tools/gosec/default.nix +++ b/pkgs/development/tools/gosec/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "gosec"; - version = "2.15.0"; + version = "2.16.0"; src = fetchFromGitHub { owner = "securego"; repo = pname; rev = "v${version}"; - sha256 = "sha256-GB+BAGIVPtyY2Bsm/yDTYjJixLGvGwsIoOLCyy/0AJk="; + sha256 = "sha256-ajaTXq1IIUjzEMwdsVCnA4G97dCFod/hKrngDi5piGY="; }; - vendorHash = "sha256-5LIIXf+8ZN7WcFSPzsJ5Tt+d40AgF5YI3O1oXms1WgI="; + vendorHash = "sha256-UTxBKjyWmGq7FhB3j1NdSgOHZRYn6fAtuKJb4UcbPno="; subPackages = [ "cmd/gosec" diff --git a/pkgs/development/tools/ofono-phonesim/default.nix b/pkgs/development/tools/ofono-phonesim/default.nix index faa7b3eae90..62d8667ffbd 100644 --- a/pkgs/development/tools/ofono-phonesim/default.nix +++ b/pkgs/development/tools/ofono-phonesim/default.nix @@ -34,7 +34,7 @@ mkDerivation { description = "Phone Simulator for modem testing"; homepage = "https://01.org/ofono"; license = licenses.gpl2; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/tools/revive/default.nix b/pkgs/development/tools/revive/default.nix index 8ce52abc2f7..a66a232eb06 100644 --- a/pkgs/development/tools/revive/default.nix +++ b/pkgs/development/tools/revive/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "revive"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "mgechev"; repo = pname; rev = "v${version}"; - sha256 = "sha256-Iqe3iFE9hTPUgIO6MoPHAkr+KU5mEJ3ZY4Oh9xhXido="; + sha256 = "sha256-zv9N5Sw23SalP2keII/WC71uhGU+nr+DG3GJcbUwonQ="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -18,7 +18,7 @@ buildGoModule rec { rm -rf $out/.git ''; }; - vendorHash = "sha256-FHm4TjsAYu4VM2WAHdd2xPP3/54YM6ei6cppHWF8LDc="; + vendorHash = "sha256-7VZcZR04JyNa1a4CpLbE7ig+orML3fhdeBOZGTNACKc="; ldflags = [ "-s" @@ -35,7 +35,7 @@ buildGoModule rec { # The following tests fail when built by nix: # - # $ nix log /nix/store/build-revive.1.3.1.drv | grep FAIL + # $ nix log /nix/store/build-revive.1.3.2.drv | grep FAIL # # --- FAIL: TestAll (0.01s) # --- FAIL: TestTimeEqual (0.00s) diff --git a/pkgs/development/tools/rust/cargo-tauri/default.nix b/pkgs/development/tools/rust/cargo-tauri/default.nix index 64bf3fccbc4..fa3e03d4151 100644 --- a/pkgs/development/tools/rust/cargo-tauri/default.nix +++ b/pkgs/development/tools/rust/cargo-tauri/default.nix @@ -2,6 +2,7 @@ , stdenv , rustPlatform , fetchFromGitHub +, openssl , pkg-config , glibc , libsoup @@ -16,22 +17,22 @@ let in rustPlatform.buildRustPackage rec { pname = "tauri"; - version = "1.2.4"; + version = "1.3.0"; src = fetchFromGitHub { owner = "tauri-apps"; repo = pname; rev = "tauri-v${version}"; - sha256 = "sha256-BzstYoRZuZTNAkVGqPGYrd/AiWEhoH6t/XezDaFdmVo="; + hash = "sha256-+Zez3dxLtcPFzrPdi+yGucr+55GDmMsaLlUZcyqprtc="; }; # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202 sourceRoot = "source/tooling/cli"; - cargoHash = "sha256-t5MlJpQOA5T/EwbPoSD95kATGReiZTmq+JkbDVbRj+0="; + cargoHash = "sha256-ErUzhmPA2M1H4B4SrEt4FRWHcWLA1UzQqVA1gkrmdJQ="; - buildInputs = lib.optionals stdenv.isLinux [ glibc libsoup cairo gtk3 webkitgtk ] + buildInputs = [ openssl ] ++ lib.optionals stdenv.isLinux [ glibc libsoup cairo gtk3 webkitgtk ] ++ lib.optionals stdenv.isDarwin [ CoreServices Security ]; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/development/tools/vendir/default.nix b/pkgs/development/tools/vendir/default.nix index 23c3b4a5c09..28b51f87e57 100644 --- a/pkgs/development/tools/vendir/default.nix +++ b/pkgs/development/tools/vendir/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "vendir"; - version = "0.32.1"; + version = "0.33.2"; src = fetchFromGitHub { owner = "vmware-tanzu"; repo = "carvel-vendir"; rev = "v${version}"; - sha256 = "sha256-IgPUqIR9xuLEglVqVHz2KvqqCHpCPYv8TX+Z6q5xCNA="; + sha256 = "sha256-jXPyOnGCyXe06pazppo6czJ4CpaeEscRbanchDnz2tw="; }; - vendorSha256 = null; + vendorHash = null; subPackages = [ "cmd/vendir" ]; diff --git a/pkgs/games/freedroidrpg/default.nix b/pkgs/games/freedroidrpg/default.nix index dcec52a3fa6..254d9b2ce6a 100644 --- a/pkgs/games/freedroidrpg/default.nix +++ b/pkgs/games/freedroidrpg/default.nix @@ -69,7 +69,7 @@ in stdenv.mkDerivation { license = licenses.gpl2Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; hydraPlatforms = platforms.linux; # sdl-config times out on darwin }; diff --git a/pkgs/games/gnome-hexgl/default.nix b/pkgs/games/gnome-hexgl/default.nix index c78bc69c26f..54d74ffa5fa 100644 --- a/pkgs/games/gnome-hexgl/default.nix +++ b/pkgs/games/gnome-hexgl/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { description = "Gthree port of HexGL"; homepage = "https://github.com/alexlarsson/gnome-hexgl"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/os-specific/linux/cryptodev/default.nix b/pkgs/os-specific/linux/cryptodev/default.nix index 2fe98f8b801..296e4b79b3e 100644 --- a/pkgs/os-specific/linux/cryptodev/default.nix +++ b/pkgs/os-specific/linux/cryptodev/default.nix @@ -1,14 +1,14 @@ { fetchFromGitHub, lib, stdenv, kernel ? false }: stdenv.mkDerivation rec { - pname = "cryptodev-linux-1.12"; + pname = "cryptodev-linux-1.13"; name = "${pname}-${kernel.version}"; src = fetchFromGitHub { owner = "cryptodev-linux"; repo = "cryptodev-linux"; rev = pname; - sha256 = "sha256-vJQ10rG5FGbeEOqCUmH/pZ0P77kAW/MtUarywbtIyHw="; + hash = "sha256-EzTPoKYa+XWOAa/Dk7ru02JmlymHeXVX7RMmEoJ1OT0="; }; nativeBuildInputs = kernel.moduleBuildDependencies; diff --git a/pkgs/os-specific/linux/power-profiles-daemon/default.nix b/pkgs/os-specific/linux/power-profiles-daemon/default.nix index 991c2ae0b50..ae08f59cc1a 100644 --- a/pkgs/os-specific/linux/power-profiles-daemon/default.nix +++ b/pkgs/os-specific/linux/power-profiles-daemon/default.nix @@ -128,6 +128,6 @@ stdenv.mkDerivation rec { description = "Makes user-selected power profiles handling available over D-Bus"; platforms = platforms.linux; license = licenses.gpl3Plus; - maintainers = with maintainers; [ jtojnar mvnetbiz ]; + maintainers = with maintainers; [ mvnetbiz ]; }; } diff --git a/pkgs/os-specific/linux/rdma-core/default.nix b/pkgs/os-specific/linux/rdma-core/default.nix index baf7ffdd921..d6d67d4d1d4 100644 --- a/pkgs/os-specific/linux/rdma-core/default.nix +++ b/pkgs/os-specific/linux/rdma-core/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "rdma-core"; - version = "45.0"; + version = "46.0"; src = fetchFromGitHub { owner = "linux-rdma"; repo = "rdma-core"; rev = "v${version}"; - sha256 = "sha256-GjR/gFC7fkcLyl8FwTWbQ+jpJTFRqjExjulXwrsRlDY="; + sha256 = "sha256-/mhaEACBAtKdjn5hIj7YnuzrwraiuA4sR9eHg3w0YZM="; }; strictDeps = true; diff --git a/pkgs/os-specific/linux/rtl8812au/default.nix b/pkgs/os-specific/linux/rtl8812au/default.nix index bd682ec5933..786bcab86c2 100644 --- a/pkgs/os-specific/linux/rtl8812au/default.nix +++ b/pkgs/os-specific/linux/rtl8812au/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "rtl8812au"; - version = "${kernel.version}-unstable-2023-01-17"; + version = "${kernel.version}-unstable-2023-05-11"; src = fetchFromGitHub { owner = "morrownr"; repo = "8812au-20210629"; - rev = "0a8bb3cec3ef91e6ef8cf549ca926016ba0a8acd"; - sha256 = "sha256-25NaMQq9H6mqVynNQJXpqISAslxfEVSt3ELzG7s4mV4="; + rev = "765d4e4bd5970f4c1c79e63bbe301667e5e029c9"; + hash = "sha256-FF2LVfOpITMJ5LiwsGAudrWStlkKsZUlHvzZs03gb9g="; }; nativeBuildInputs = [ bc nukeReferences ] ++ kernel.moduleBuildDependencies; diff --git a/pkgs/servers/headscale/default.nix b/pkgs/servers/headscale/default.nix index fc6fb315617..0c1847542b0 100644 --- a/pkgs/servers/headscale/default.nix +++ b/pkgs/servers/headscale/default.nix @@ -6,16 +6,16 @@ }: buildGoModule rec { pname = "headscale"; - version = "0.22.1"; + version = "0.22.3"; src = fetchFromGitHub { owner = "juanfont"; repo = "headscale"; rev = "v${version}"; - hash = "sha256-6T4wWuhikanoQGGjVvNJak5yvgcEfhGtOmfLc2xKmms="; + hash = "sha256-nqmTqe3F3Oh8rnJH0clwACD/0RpqmfOMXNubr3C8rEc="; }; - vendorHash = "sha256-+JxS4Q6rTpdBwms2nkVDY/Kluv2qu2T0BaOIjfeX85M="; + vendorHash = "sha256-IOkbbFtE6+tNKnglE/8ZuNxhPSnloqM2sLgTvagMmnc="; ldflags = ["-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.Version=v${version}"]; diff --git a/pkgs/servers/http/tomcat/default.nix b/pkgs/servers/http/tomcat/default.nix index eec573b72f6..d280c838c79 100644 --- a/pkgs/servers/http/tomcat/default.nix +++ b/pkgs/servers/http/tomcat/default.nix @@ -26,6 +26,7 @@ let platforms = platforms.all; maintainers = [ ]; license = [ licenses.asl20 ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; }); diff --git a/pkgs/servers/misc/oven-media-engine/default.nix b/pkgs/servers/misc/oven-media-engine/default.nix index 6df1a03764d..d383567a770 100644 --- a/pkgs/servers/misc/oven-media-engine/default.nix +++ b/pkgs/servers/misc/oven-media-engine/default.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "oven-media-engine"; - version = "0.15.10"; + version = "0.15.11"; src = fetchFromGitHub { owner = "AirenSoft"; repo = "OvenMediaEngine"; rev = "v${version}"; - sha256 = "sha256-gQ9Z8VMu5v4zEo4vtViNFG0QP5JooHsQxJPMOnZmVZM="; + sha256 = "sha256-PkdzxLIch0OObFs1zFE7gg6R7bwP2qwpqQqvY3SMnuY="; }; sourceRoot = "source/src"; @@ -60,6 +60,6 @@ stdenv.mkDerivation rec { homepage = "https://ovenmediaengine.com"; license = licenses.agpl3Only; maintainers = with maintainers; [ lukegb ]; - platforms = [ "x86_64-linux" ]; + platforms = platforms.linux; }; } diff --git a/pkgs/servers/monitoring/uptime-kuma/default.nix b/pkgs/servers/monitoring/uptime-kuma/default.nix index 18121f5ef61..705a9665b5e 100644 --- a/pkgs/servers/monitoring/uptime-kuma/default.nix +++ b/pkgs/servers/monitoring/uptime-kuma/default.nix @@ -2,16 +2,16 @@ buildNpmPackage rec { pname = "uptime-kuma"; - version = "1.21.2"; + version = "1.21.3"; src = fetchFromGitHub { owner = "louislam"; repo = "uptime-kuma"; rev = version; - sha256 = "sha256-Xu5mTerhLjOMnLXhjCdnw4yaznfta3h3D9VGk12JziE="; + sha256 = "sha256-hNtD8R8nDwO+uJ5WD8TxaCyYD7ESvBPmcv7iT7NAu6s="; }; - npmDepsHash = "sha256-J00sLDfUOIy/ZJTqKrMY1dAyE3HY9Cqm9vTEm2lmLoY="; + npmDepsHash = "sha256-yPUVLtqfowSuvrzp4Edcsussaxao5Ti1/sLsd9lmiSM="; patches = [ # Fixes the permissions of the database being not set correctly diff --git a/pkgs/servers/neard/default.nix b/pkgs/servers/neard/default.nix index 1115a74844e..a6274670096 100644 --- a/pkgs/servers/neard/default.nix +++ b/pkgs/servers/neard/default.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { description = "Near Field Communication manager"; homepage = "https://01.org/linux-nfc"; license = licenses.gpl2Only; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/servers/openvscode-server/default.nix b/pkgs/servers/openvscode-server/default.nix index f5c17fcaff6..046a68f9d03 100644 --- a/pkgs/servers/openvscode-server/default.nix +++ b/pkgs/servers/openvscode-server/default.nix @@ -1,12 +1,11 @@ { lib, stdenv, fetchFromGitHub, buildGoModule, makeWrapper , cacert, moreutils, jq, git, pkg-config, yarn, python3 -, esbuild, nodejs_16, libsecret, xorg, ripgrep +, esbuild, nodejs, libsecret, xorg, ripgrep , AppKit, Cocoa, Security, cctools, nixosTests }: let system = stdenv.hostPlatform.system; - nodejs = nodejs_16; yarn' = yarn.override { inherit nodejs; }; defaultYarnOpts = [ "frozen-lockfile" "non-interactive" "no-progress"]; @@ -108,9 +107,6 @@ in stdenv.mkDerivation rec { # set offline mirror to yarn cache we created in previous steps yarn --offline config set yarn-offline-mirror "${yarnCache}" - - # set nodedir, so we can build binaries later - npm config set nodedir "${nodejs}" ''; buildPhase = '' @@ -147,7 +143,7 @@ in stdenv.mkDerivation rec { # rebuild binaries, we use npm here, as yarn does not provide an alternative # that would not attempt to try to reinstall everything and break our # patching attempts - npm --prefix ./remote rebuild --build-from-source + npm --prefix ./remote rebuild --build-from-source --nodedir ${nodejs} # run postinstall scripts after patching find . -path "*node_modules" -prune -o \ diff --git a/pkgs/servers/openvscode-server/remove-node-download.patch b/pkgs/servers/openvscode-server/remove-node-download.patch index c53b79de019..f8df53770ac 100644 --- a/pkgs/servers/openvscode-server/remove-node-download.patch +++ b/pkgs/servers/openvscode-server/remove-node-download.patch @@ -1,27 +1,28 @@ diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js -index a44941a1e73..5fc924cb367 100644 +index 4630eaad3cc..96b165b0949 100644 --- a/build/gulpfile.reh.js +++ b/build/gulpfile.reh.js -@@ -265,8 +265,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa +@@ -271,9 +271,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa .pipe(util.stripSourceMappingURL()) .pipe(jsFilter.restore); - + - const nodePath = `.build/node/v${nodeVersion}/${platform}-${arch}`; - const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true }); - +- let web = []; if (type === 'reh-web') { -@@ -284,7 +282,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa + web = [ +@@ -290,7 +287,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa license, sources, deps, - node, ...web ); - -@@ -382,7 +379,6 @@ function tweakProductForServerWeb(product) { + +@@ -408,7 +404,6 @@ function tweakProductForServerWeb(product) { const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`; - + const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series( - gulp.task(`node-${platform}-${arch}`), util.rimraf(path.join(BUILD_ROOT, destinationFolderName)), diff --git a/pkgs/servers/rustypaste/default.nix b/pkgs/servers/rustypaste/default.nix index 2f9fc1a27e3..de2b16f35bd 100644 --- a/pkgs/servers/rustypaste/default.nix +++ b/pkgs/servers/rustypaste/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "rustypaste"; - version = "0.8.4"; + version = "0.9.0"; src = fetchFromGitHub{ owner = "orhun"; repo = pname; rev = "v${version}"; - sha256 = "sha256-tx2ipgvYDdCwcWFeZ/qgGXyKe+kHLuOgDAz/8vf2zEs="; + sha256 = "sha256-s0IpyybF0haTQu30QBaPDmCSFivpMeESt9S6a6NWfTM="; }; - cargoHash = "sha256-/zji2sFaOweBo666LqfNRpO/0vi1eAGgOReeuvQIaEQ="; + cargoHash = "sha256-87JxmZsjXZ7kf4LHgqrgrWbQtVj/XdZrf0G/6wP/ip8="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices diff --git a/pkgs/servers/sql/pgpool/darwin-strlcpy.patch b/pkgs/servers/sql/pgpool/darwin-strlcpy.patch new file mode 100644 index 00000000000..2d6924af48b --- /dev/null +++ b/pkgs/servers/sql/pgpool/darwin-strlcpy.patch @@ -0,0 +1,148 @@ +diff --git a/src/Makefile.in b/src/Makefile.in +index 3b19ca27..4d2e8e52 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -124,7 +124,7 @@ am_pgpool_OBJECTS = main/main.$(OBJEXT) main/pool_globals.$(OBJEXT) \ + context/pool_query_context.$(OBJEXT) \ + streaming_replication/pool_worker_child.$(OBJEXT) \ + rewrite/pool_timestamp.$(OBJEXT) rewrite/pool_lobj.$(OBJEXT) \ +- utils/pool_select_walker.$(OBJEXT) utils/strlcpy.$(OBJEXT) \ ++ utils/pool_select_walker.$(OBJEXT) \ + utils/psprintf.$(OBJEXT) utils/pool_params.$(OBJEXT) \ + utils/ps_status.$(OBJEXT) utils/pool_shmem.$(OBJEXT) \ + utils/pool_sema.$(OBJEXT) utils/pool_signal.$(OBJEXT) \ +@@ -469,7 +469,6 @@ pgpool_SOURCES = main/main.c \ + rewrite/pool_timestamp.c \ + rewrite/pool_lobj.c \ + utils/pool_select_walker.c \ +- utils/strlcpy.c \ + utils/psprintf.c \ + utils/pool_params.c \ + utils/ps_status.c \ +@@ -762,7 +761,6 @@ utils/$(am__dirstamp): + @$(MKDIR_P) utils + @: > utils/$(am__dirstamp) + utils/pool_select_walker.$(OBJEXT): utils/$(am__dirstamp) +-utils/strlcpy.$(OBJEXT): utils/$(am__dirstamp) + utils/psprintf.$(OBJEXT): utils/$(am__dirstamp) + utils/pool_params.$(OBJEXT): utils/$(am__dirstamp) + utils/ps_status.$(OBJEXT): utils/$(am__dirstamp) +diff --git a/src/libs/pcp/Makefile.in b/src/libs/pcp/Makefile.in +index 5ea3213a..5689fb33 100644 +--- a/src/libs/pcp/Makefile.in ++++ b/src/libs/pcp/Makefile.in +@@ -129,7 +129,7 @@ libpcp_la_LIBADD = + am__dirstamp = $(am__leading_dot)dirstamp + dist_libpcp_la_OBJECTS = pcp.lo ../../utils/pool_path.lo \ + ../../tools/fe_port.lo ../../tools/fe_memutils.lo \ +- ../../utils/strlcpy.lo ../../utils/pool_health_check_stats.lo ++ ../../utils/pool_health_check_stats.lo + nodist_libpcp_la_OBJECTS = pcp_stream.lo md5.lo json.lo + libpcp_la_OBJECTS = $(dist_libpcp_la_OBJECTS) \ + $(nodist_libpcp_la_OBJECTS) +@@ -347,7 +347,6 @@ dist_libpcp_la_SOURCES = pcp.c \ + ../../utils/pool_path.c \ + ../../tools/fe_port.c \ + ../../tools/fe_memutils.c \ +- ../../utils/strlcpy.c \ + ../../utils/pool_health_check_stats.c + + nodist_libpcp_la_SOURCES = pcp_stream.c \ +@@ -437,7 +436,6 @@ clean-libLTLIBRARIES: + @: > ../../tools/$(am__dirstamp) + ../../tools/fe_port.lo: ../../tools/$(am__dirstamp) + ../../tools/fe_memutils.lo: ../../tools/$(am__dirstamp) +-../../utils/strlcpy.lo: ../../utils/$(am__dirstamp) + ../../utils/pool_health_check_stats.lo: ../../utils/$(am__dirstamp) + + libpcp.la: $(libpcp_la_OBJECTS) $(libpcp_la_DEPENDENCIES) $(EXTRA_libpcp_la_DEPENDENCIES) +diff --git a/src/tools/pgenc/Makefile.in b/src/tools/pgenc/Makefile.in +index ad117a5e..5c5fc838 100644 +--- a/src/tools/pgenc/Makefile.in ++++ b/src/tools/pgenc/Makefile.in +@@ -101,7 +101,7 @@ PROGRAMS = $(bin_PROGRAMS) + am__dirstamp = $(am__leading_dot)dirstamp + dist_pg_enc_OBJECTS = pg_enc.$(OBJEXT) ../fe_port.$(OBJEXT) + nodist_pg_enc_OBJECTS = ssl_utils.$(OBJEXT) md5.$(OBJEXT) \ +- base64.$(OBJEXT) pool_passwd.$(OBJEXT) strlcpy.$(OBJEXT) \ ++ base64.$(OBJEXT) pool_passwd.$(OBJEXT) \ + regex_array.$(OBJEXT) pool_config_variables.$(OBJEXT) \ + pool_config.$(OBJEXT) fe_memutils.$(OBJEXT) \ + pool_path.$(OBJEXT) +@@ -320,7 +320,6 @@ nodist_pg_enc_SOURCES = ssl_utils.c \ + md5.c \ + base64.c \ + pool_passwd.c \ +- strlcpy.c \ + regex_array.c \ + pool_config_variables.c \ + pool_config.c \ +@@ -664,8 +663,6 @@ base64.h: ../../../src/include/utils/base64.h + rm -f $@ && ln -s $< . + ssl_utils.h: ../../../src/include/utils/ssl_utils.h + rm -f $@ && ln -s $< . +-strlcpy.c: ../../../src/utils/strlcpy.c +- rm -f $@ && ln -s $< . + regex_array.c: ../../../src/utils/regex_array.c + rm -f $@ && ln -s $< . + pool_config_variables.c: ../../../src/config/pool_config_variables.c +diff --git a/src/tools/pgmd5/Makefile.in b/src/tools/pgmd5/Makefile.in +index 275f39e5..d3af1e25 100644 +--- a/src/tools/pgmd5/Makefile.in ++++ b/src/tools/pgmd5/Makefile.in +@@ -101,7 +101,7 @@ PROGRAMS = $(bin_PROGRAMS) + am__dirstamp = $(am__leading_dot)dirstamp + dist_pg_md5_OBJECTS = pg_md5.$(OBJEXT) ../fe_port.$(OBJEXT) + nodist_pg_md5_OBJECTS = md5.$(OBJEXT) pool_passwd.$(OBJEXT) \ +- strlcpy.$(OBJEXT) regex_array.$(OBJEXT) \ ++ regex_array.$(OBJEXT) \ + pool_config_variables.$(OBJEXT) pool_config.$(OBJEXT) \ + fe_memutils.$(OBJEXT) pool_path.$(OBJEXT) + pg_md5_OBJECTS = $(dist_pg_md5_OBJECTS) $(nodist_pg_md5_OBJECTS) +@@ -317,7 +317,6 @@ dist_pg_md5_SOURCES = pg_md5.c \ + + nodist_pg_md5_SOURCES = md5.c \ + pool_passwd.c \ +- strlcpy.c \ + regex_array.c \ + pool_config_variables.c \ + pool_config.c \ +@@ -653,8 +652,6 @@ pool_passwd.c: ../../../src/auth/pool_passwd.c + rm -f $@ && ln -s $< . + pool_path.c: ../../../src/utils/pool_path.c + rm -f $@ && ln -s $< . +-strlcpy.c: ../../../src/utils/strlcpy.c +- rm -f $@ && ln -s $< . + regex_array.c: ../../../src/utils/regex_array.c + rm -f $@ && ln -s $< . + pool_config_variables.c: ../../../src/config/pool_config_variables.c +diff --git a/src/tools/watchdog/Makefile.in b/src/tools/watchdog/Makefile.in +index 3e578b44..c7fbce4e 100644 +--- a/src/tools/watchdog/Makefile.in ++++ b/src/tools/watchdog/Makefile.in +@@ -105,7 +105,7 @@ nodist_wd_cli_OBJECTS = ssl_utils.$(OBJEXT) wd_ipc_conn.$(OBJEXT) \ + wd_commands.$(OBJEXT) json_writer.$(OBJEXT) json.$(OBJEXT) \ + pool_config_variables.$(OBJEXT) pool_config.$(OBJEXT) \ + pool_path.$(OBJEXT) fe_memutils.$(OBJEXT) stringinfo.$(OBJEXT) \ +- strlcpy.$(OBJEXT) socket_stream.$(OBJEXT) \ ++ socket_stream.$(OBJEXT) \ + regex_array.$(OBJEXT) psprintf.$(OBJEXT) md5.$(OBJEXT) + wd_cli_OBJECTS = $(dist_wd_cli_OBJECTS) $(nodist_wd_cli_OBJECTS) + wd_cli_LDADD = $(LDADD) +@@ -359,7 +359,6 @@ nodist_wd_cli_SOURCES = ssl_utils.c \ + fe_memutils.c \ + stringinfo.h \ + stringinfo.c \ +- strlcpy.c \ + socket_stream.c \ + regex_array.c \ + psprintf.c \ +@@ -732,8 +731,6 @@ md5.h: ../../../src/include/auth/md5.h + rm -f $@ && ln -s $< . + socket_stream.c: ../../../src/utils/socket_stream.c + rm -f $@ && ln -s $< . +-strlcpy.c: ../../../src/utils/strlcpy.c +- rm -f $@ && ln -s $< . + regex_array.c: ../../../src/utils/regex_array.c + rm -f $@ && ln -s $< . + wd_ipc_conn.c: ../../../src/watchdog/wd_ipc_conn.c diff --git a/pkgs/servers/sql/pgpool/default.nix b/pkgs/servers/sql/pgpool/default.nix index ff277e06805..ce47b3f3f3f 100644 --- a/pkgs/servers/sql/pgpool/default.nix +++ b/pkgs/servers/sql/pgpool/default.nix @@ -34,6 +34,12 @@ stdenv.mkDerivation rec { "sysconfdir=\${out}/etc" ]; + patches = lib.optionals (stdenv.isDarwin) [ + # Build checks for strlcpy being available in the system, but doesn't + # actually exclude its own copy from being built + ./darwin-strlcpy.patch + ]; + enableParallelBuilding = true; meta = with lib; { diff --git a/pkgs/servers/web-apps/wordpress/default.nix b/pkgs/servers/web-apps/wordpress/default.nix index 9faf0af2f3f..fed815eb5cc 100644 --- a/pkgs/servers/web-apps/wordpress/default.nix +++ b/pkgs/servers/web-apps/wordpress/default.nix @@ -5,7 +5,7 @@ hash = "sha256-jGmOEmdj3n4bCoTJH/4DEsjTBiaEmaxBt1kA19HctU8="; }; wordpress6_1 = { - version = "6.1.1"; - hash = "sha256-IR6FSmm3Pd8cCHNQTH1oIaLYsEP1obVjr0bDJkD7H60="; + version = "6.1.2"; + hash = "sha256-ozpuCVeni71CUylmUBk8wVo5ygZAKY7IdZ12DKbpSrw="; }; } diff --git a/pkgs/shells/zsh/spaceship-prompt/default.nix b/pkgs/shells/zsh/spaceship-prompt/default.nix index f973e7125c4..41935f75bdd 100644 --- a/pkgs/shells/zsh/spaceship-prompt/default.nix +++ b/pkgs/shells/zsh/spaceship-prompt/default.nix @@ -2,13 +2,13 @@ stdenvNoCC.mkDerivation rec { pname = "spaceship-prompt"; - version = "4.13.3"; + version = "4.14.0"; src = fetchFromGitHub { owner = "denysdovhan"; repo = pname; rev = "v${version}"; - sha256 = "sha256-uFmGld5paCLNnE9yWgBLtthEBfwwMzlGCJFX6KqGJdw="; + sha256 = "sha256-aoifMAjJvv1WAlINNkMwCCop6znxyivoD3vQDo/ZbfQ="; }; strictDeps = true; diff --git a/pkgs/tools/admin/exoscale-cli/default.nix b/pkgs/tools/admin/exoscale-cli/default.nix index bb69242acf9..d873d0a47f6 100644 --- a/pkgs/tools/admin/exoscale-cli/default.nix +++ b/pkgs/tools/admin/exoscale-cli/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "exoscale-cli"; - version = "1.68.0"; + version = "1.69.0"; src = fetchFromGitHub { owner = "exoscale"; repo = "cli"; rev = "v${version}"; - sha256 = "sha256-GDnHwHKbe+8Qv2zxcKqHQ9s9dS9jvE6qNXe35FeQEKQ="; + sha256 = "sha256-TPsi03SKlcy6QJ91vtgpDwTD2YMfo2fPgKnbmkZG9NQ="; }; vendorHash = null; diff --git a/pkgs/tools/graphics/sanjuuni/default.nix b/pkgs/tools/graphics/sanjuuni/default.nix index a0b2accb6b0..71807b0db01 100644 --- a/pkgs/tools/graphics/sanjuuni/default.nix +++ b/pkgs/tools/graphics/sanjuuni/default.nix @@ -4,17 +4,19 @@ , pkg-config , ffmpeg , poco +, ocl-icd +, opencl-clhpp }: stdenv.mkDerivation rec { pname = "sanjuuni"; - version = "0.3"; + version = "0.4"; src = fetchFromGitHub { owner = "MCJack123"; repo = "sanjuuni"; rev = version; - sha256 = "sha256-8IbdLXWUtT2VN6Eu1b8x4DnyI8JOd/12t0XDa6o3N+A="; + sha256 = "sha256-wgtyrik4Z5AXd8MHkiMuxMpGh/xcEtNqivyhvL68aac="; }; nativeBuildInputs = [ @@ -24,6 +26,8 @@ stdenv.mkDerivation rec { buildInputs = [ ffmpeg poco + ocl-icd + opencl-clhpp ]; installPhase = '' diff --git a/pkgs/tools/inputmethods/fcitx5/default.nix b/pkgs/tools/inputmethods/fcitx5/default.nix index a4c5c645122..8dd13bbd167 100644 --- a/pkgs/tools/inputmethods/fcitx5/default.nix +++ b/pkgs/tools/inputmethods/fcitx5/default.nix @@ -31,6 +31,7 @@ , xcbutilwm , xcb-imdkit , libxkbfile +, nixosTests }: let enDictVer = "20121020"; @@ -89,7 +90,12 @@ stdenv.mkDerivation rec { libxkbfile ]; - passthru.updateScript = ./update.py; + passthru = { + updateScript = ./update.py; + tests = { + inherit (nixosTests) fcitx5; + }; + }; meta = with lib; { description = "Next generation of fcitx"; diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix index bf97cab6ef1..18facb5fb31 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix @@ -6,6 +6,7 @@ , gettext , fcitx5 , libhangul +, nixosTests }: stdenv.mkDerivation rec { @@ -30,6 +31,10 @@ stdenv.mkDerivation rec { libhangul ]; + passthru.tests = { + inherit (nixosTests) fcitx5; + }; + meta = with lib; { description = "Hangul wrapper for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-hangul"; diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix index 1a383a369c1..3c4bd06cb96 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix @@ -9,6 +9,7 @@ , m17n_db , gettext , fmt +, nixosTests }: stdenv.mkDerivation rec { @@ -36,6 +37,10 @@ stdenv.mkDerivation rec { fmt ]; + passthru.tests = { + inherit (nixosTests) fcitx5; + }; + meta = with lib; { description = "m17n support for Fcitx5"; homepage = "https://github.com/fcitx/fcitx5-m17n"; diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix index 92a0474ef19..dce5bd48592 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix @@ -1,6 +1,6 @@ { lib, clangStdenv, fetchFromGitHub, fetchurl, fetchpatch, fetchgit , python3Packages, ninja, pkg-config, protobuf, zinnia, qt5, fcitx5 -, jsoncpp, gtest, which, gtk2, unzip, abseil-cpp, breakpad }: +, jsoncpp, gtest, which, gtk2, unzip, abseil-cpp, breakpad, nixosTests }: let inherit (python3Packages) python gyp six; utdic = fetchurl { @@ -115,6 +115,10 @@ in clangStdenv.mkDerivation rec { wrapQtApp $out/lib/mozc/mozc_tool ''; + passthru.tests = { + inherit (nixosTests) fcitx5; + }; + meta = with lib; { description = "Fcitx5 Module of A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)"; homepage = "https://github.com/fcitx/mozc"; diff --git a/pkgs/tools/misc/markdown-anki-decks/default.nix b/pkgs/tools/misc/markdown-anki-decks/default.nix index d035c9db731..b2c67b7bf7f 100644 --- a/pkgs/tools/misc/markdown-anki-decks/default.nix +++ b/pkgs/tools/misc/markdown-anki-decks/default.nix @@ -40,7 +40,7 @@ python3.pkgs.buildPythonApplication rec { description = "Tool to convert Markdown files into Anki Decks"; homepage = "https://github.com/lukesmurray/markdown-anki-decks"; license = licenses.mit; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/networking/ofono/default.nix b/pkgs/tools/networking/ofono/default.nix index 2b8b09d174c..f17e96f0d74 100644 --- a/pkgs/tools/networking/ofono/default.nix +++ b/pkgs/tools/networking/ofono/default.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { homepage = "https://git.kernel.org/pub/scm/network/ofono/ofono.git"; changelog = "https://git.kernel.org/pub/scm/network/ofono/ofono.git/plain/ChangeLog?h=${version}"; license = licenses.gpl2Only; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/security/dontgo403/default.nix b/pkgs/tools/security/dontgo403/default.nix index 00573070a31..4588d6a2d94 100644 --- a/pkgs/tools/security/dontgo403/default.nix +++ b/pkgs/tools/security/dontgo403/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "dontgo403"; - version = "0.8.1"; + version = "0.9.1"; src = fetchFromGitHub { owner = "devploit"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-Gpr2L7iSdMBqwMzdYDtdzyZYu+Uwjn1wZvw4LTr8xWI="; + hash = "sha256-FmC+VEVZVpKEDV8IH8D+lt0oHulu2AOD8uUrHxno/Bk="; }; - vendorHash = "sha256-he/+M8NffvMLTdFQy5E2EnqLXkS/tK6eUGXTBKZSZCw="; + vendorHash = "sha256-WzTen78m/CZypdswwncuVzU3iChBDS26URWGSWQCdfk="; meta = with lib; { description = "Tool to bypass 40X response codes"; diff --git a/pkgs/tools/security/freeze/default.nix b/pkgs/tools/security/freeze/default.nix index dd658038233..a8a8dbb5934 100644 --- a/pkgs/tools/security/freeze/default.nix +++ b/pkgs/tools/security/freeze/default.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "freeze"; - version = "1.1"; + version = "1.3"; src = fetchFromGitHub { owner = "optiv"; repo = "Freeze"; rev = "v${version}"; - hash = "sha256-ySwd7xs9JdJuBvqKC4jI/qA6qVHbYPPUEG7k6joSkRk="; + hash = "sha256-BE5MvCU+NfEccauOdWNty/FwMiWwLttPh7eE9+UzEMY="; }; vendorHash = "sha256-R8kdFweMhAUjJ8zJ7HdF5+/vllbNmARdhU4hOw4etZo="; diff --git a/pkgs/tools/security/ghidra/default.nix b/pkgs/tools/security/ghidra/default.nix index 82809d03f30..4a7aacb59a3 100644 --- a/pkgs/tools/security/ghidra/default.nix +++ b/pkgs/tools/security/ghidra/default.nix @@ -24,12 +24,12 @@ let in stdenv.mkDerivation rec { pname = "ghidra"; - version = "10.2.2"; - versiondate = "20221115"; + version = "10.2.3"; + versiondate = "20230208"; src = fetchzip { url = "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_${version}_build/ghidra_${version}_PUBLIC_${versiondate}.zip"; - sha256 = "sha256-0OcSdCN8vWUgTgFdgNtiI0OfHmfa/WD9IoaJUl+llqI="; + hash = "sha256-0uDLS+fnUqLw+oqoR/Vs56vhzNmA54k0WBvhvDmlGKs="; }; nativeBuildInputs = [ diff --git a/pkgs/tools/security/kube-bench/default.nix b/pkgs/tools/security/kube-bench/default.nix index 83804b7fc30..a13b2013084 100644 --- a/pkgs/tools/security/kube-bench/default.nix +++ b/pkgs/tools/security/kube-bench/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "kube-bench"; - version = "0.6.13"; + version = "0.6.14"; src = fetchFromGitHub { owner = "aquasecurity"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-tr6QQAxFAejX05rv8/cx6LXAATlutXX6UmrIv7ru3gM="; + hash = "sha256-82yldHexXommX4Tb2ItYUdwe3qOalvQKNVosFPGhgYw="; }; - vendorHash = "sha256-kOY9cIkh272A8PJTpMfNVlVNkY9PqPTOVYw25rTwd84="; + vendorHash = "sha256-jPmF8uebdXsrsawHbdr4AgMXyCWUsI1GKoAoxCde9d4="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/security/mantra/default.nix b/pkgs/tools/security/mantra/default.nix new file mode 100644 index 00000000000..7453926a8bd --- /dev/null +++ b/pkgs/tools/security/mantra/default.nix @@ -0,0 +1,31 @@ +{ lib +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "mantra"; + version = "1.1"; + + src = fetchFromGitHub { + owner = "MrEmpy"; + repo = "Mantra"; + rev = "refs/tags/v.${version}"; + hash = "sha256-wIFZgxl6qULDvdUeq4yiuc5dPDudKsYvVUewSL0ITNM="; + }; + + vendorHash = null; + + ldflags = [ + "-s" + "-w" + ]; + + meta = with lib; { + description = "Tool used to hunt down API key leaks in JS files and pages"; + homepage = "https://github.com/MrEmpy/Mantra"; + changelog = "https://github.com/MrEmpy/Mantra/releases/tag/v.${version}"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/tools/text/gtranslator/default.nix b/pkgs/tools/text/gtranslator/default.nix index e15941b5fc8..d51ac05701d 100644 --- a/pkgs/tools/text/gtranslator/default.nix +++ b/pkgs/tools/text/gtranslator/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { description = "GNOME translation making program"; homepage = "https://wiki.gnome.org/Apps/Gtranslator"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ jtojnar ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd733cd1fc6..24fd7ba5d8d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1451,7 +1451,7 @@ with pkgs; akku = callPackage ../tools/package-management/akku { }; - albert = libsForQt5.callPackage ../applications/misc/albert { }; + albert = qt6Packages.callPackage ../applications/misc/albert { }; alice-lg = callPackage ../servers/alice-lg{ }; @@ -5357,6 +5357,8 @@ with pkgs; mandown = callPackage ../tools/misc/mandown { }; + mantra = callPackage ../tools/security/mantra { }; + mapcidr = callPackage ../tools/misc/mapcidr { }; maple-mono = (callPackage ../data/fonts/maple-font { }).Mono; @@ -6243,12 +6245,7 @@ with pkgs; crlfuzz = callPackage ../tools/security/crlfuzz { }; - hedgedoc = callPackage ../servers/web-apps/hedgedoc { - inherit (callPackage ../development/tools/yarn2nix-moretea/yarn2nix { - nodejs = nodejs_16; - }) mkYarnPackage; - nodejs = nodejs_16; - }; + hedgedoc = callPackage ../servers/web-apps/hedgedoc { }; colord = callPackage ../tools/misc/colord { }; @@ -34948,6 +34945,7 @@ with pkgs; vscodium-fhsWithPackages = vscodium.fhsWithPackages; openvscode-server = callPackage ../servers/openvscode-server { + nodejs = nodejs_18; inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Security; inherit (darwin) cctools; }; diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 69ca3146cda..1e84bbb2563 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -225,6 +225,7 @@ mapAliases ({ Pyro4 = pyro4; # added 2023-02-19 Pyro5 = pyro5; # added 2023-02-19 PyRSS2Gen = pyrss2gen; # added 2023-02-19 + pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20 pysmart-smartx = pysmart; # added 2021-10-22 pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28 pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 903001e5e75..7210c1a1a03 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6309,6 +6309,8 @@ self: super: with self; { mockupdb = callPackage ../development/python-modules/mockupdb { }; + moddb = callPackage ../development/python-modules/moddb { }; + modeled = callPackage ../development/python-modules/modeled { }; moderngl = callPackage ../development/python-modules/moderngl { }; @@ -9105,6 +9107,8 @@ self: super: with self; { pyramid_multiauth = callPackage ../development/python-modules/pyramid_multiauth { }; + pyrate-limiter = callPackage ../development/python-modules/pyrate-limiter { }; + pyreadstat = callPackage ../development/python-modules/pyreadstat { inherit (pkgs.darwin) libiconv; }; @@ -9215,8 +9219,6 @@ self: super: with self; { pysftp = callPackage ../development/python-modules/pysftp { }; - pysha3 = callPackage ../development/python-modules/pysha3 { }; - pyshp = callPackage ../development/python-modules/pyshp { }; pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {