Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 58eb7529 4831214b

+934 -570
+19 -6
nixos/tests/home-assistant.nix
··· 7 7 meta.maintainers = lib.teams.home-assistant.members; 8 8 9 9 nodes.hass = { pkgs, ... }: { 10 - environment.systemPackages = with pkgs; [ mosquitto ]; 11 - 12 10 services.postgresql = { 13 11 enable = true; 14 12 ensureDatabases = [ "hass" ]; ··· 108 106 # Cause a configuration change that requires a service restart as we added a new runtime dependency 109 107 specialisation.newFeature = { 110 108 inheritParentConfig = true; 111 - configuration.services.home-assistant.config.device_tracker = [ 112 - { platform = "bluetooth_tracker"; } 113 - ]; 109 + configuration.services.home-assistant.config.esphome = {}; 114 110 }; 115 111 }; 116 112 ··· 119 115 in 120 116 '' 121 117 import re 118 + import json 122 119 123 120 start_all() 124 121 ··· 131 128 assert match 132 129 package = match.group('path') 133 130 131 + 132 + def get_journal_cursor(host) -> str: 133 + exit, out = host.execute("journalctl -u home-assistant.service -n1 -o json-pretty --output-fields=__CURSOR") 134 + assert exit == 0 135 + return json.loads(out)["__CURSOR"] 136 + 137 + 138 + def wait_for_homeassistant(host, cursor): 139 + host.wait_until_succeeds(f"journalctl --after-cursor='{cursor}' -u home-assistant.service | grep -q 'Home Assistant initialized in'") 140 + 141 + 134 142 hass.wait_for_unit("home-assistant.service") 143 + cursor = get_journal_cursor(hass) 135 144 136 145 with subtest("Check that YAML configuration file is in place"): 137 146 hass.succeed("test -L ${configDir}/configuration.yaml") ··· 148 157 hass.succeed(f"grep -q 'wake_on_lan' {package}/extra_components") 149 158 150 159 with subtest("Check that Home Assistant's web interface and API can be reached"): 151 - hass.wait_until_succeeds("journalctl -u home-assistant.service | grep -q 'Home Assistant initialized in'") 160 + wait_for_homeassistant(hass, cursor) 152 161 hass.wait_for_open_port(8123) 153 162 hass.succeed("curl --fail http://localhost:8123/lovelace") 154 163 ··· 162 171 with subtest("Check service reloads when configuration changes"): 163 172 # store the old pid of the process 164 173 pid = hass.succeed("systemctl show --property=MainPID home-assistant.service") 174 + cursor = get_journal_cursor(hass) 165 175 hass.succeed("${system}/specialisation/differentName/bin/switch-to-configuration test") 166 176 new_pid = hass.succeed("systemctl show --property=MainPID home-assistant.service") 167 177 assert pid == new_pid, "The PID of the process should not change between process reloads" 178 + wait_for_homeassistant(hass, cursor) 168 179 169 180 with subtest("check service restarts when package changes"): 170 181 pid = new_pid 182 + cursor = get_journal_cursor(hass) 171 183 hass.succeed("${system}/specialisation/newFeature/bin/switch-to-configuration test") 172 184 new_pid = hass.succeed("systemctl show --property=MainPID home-assistant.service") 173 185 assert pid != new_pid, "The PID of the process shoudl change when the HA binary changes" 186 + wait_for_homeassistant(hass, cursor) 174 187 175 188 with subtest("Check that no errors were logged"): 176 189 output_log = hass.succeed("cat ${configDir}/home-assistant.log")
+4 -2
pkgs/applications/networking/browsers/firefox/packages.nix
··· 28 28 29 29 firefox-esr-102 = buildMozillaMach rec { 30 30 pname = "firefox-esr"; 31 - version = "102.0esr"; 31 + version = "102.0.1esr"; 32 32 applicationName = "Mozilla Firefox ESR"; 33 33 src = fetchurl { 34 34 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 35 - sha512 = "76494363ffdbd33b61912ac72b5cc15450e4b2936898c84fcf3980ccfa6d7ecc05524a63a60827d6caba999ada5cfd6f121e893ba0587778ce11654d0daf21d7"; 35 + sha512 = "ce804fa4e5dda3b8c4c7937f18994a184b0eb7d8fb9484dc924d04d3213ee3daf018141f91703daed6d060a99bfc5d915186db10a4ddcf220c2ea43e369e58df"; 36 36 }; 37 37 38 38 meta = { ··· 48 48 tests = [ nixosTests.firefox-esr-102 ]; 49 49 updateScript = callPackage ./update.nix { 50 50 attrPath = "firefox-esr-102-unwrapped"; 51 + versionPrefix = "102"; 51 52 versionSuffix = "esr"; 52 53 }; 53 54 }; ··· 74 75 tests = [ nixosTests.firefox-esr-91 ]; 75 76 updateScript = callPackage ./update.nix { 76 77 attrPath = "firefox-esr-91-unwrapped"; 78 + versionPrefix = "91"; 77 79 versionSuffix = "esr"; 78 80 }; 79 81 };
+2 -1
pkgs/applications/networking/browsers/firefox/update.nix
··· 10 10 , attrPath 11 11 , runtimeShell 12 12 , baseUrl ? "http://archive.mozilla.org/pub/firefox/releases/" 13 + , versionPrefix ? "" 13 14 , versionSuffix ? "" 14 15 , versionKey ? "version" 15 16 }: ··· 32 33 # - sorts everything with semver in mind 33 34 # - picks up latest release 34 35 version=`xidel -s $url --extract "//a" | \ 35 - grep "^[0-9.]*${versionSuffix}/$" | \ 36 + grep "^${versionPrefix}[0-9.]*${versionSuffix}/$" | \ 36 37 sed s/[/]$// | \ 37 38 sort --version-sort | \ 38 39 tail -n 1`
+2 -2
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 21 21 22 22 buildGoModule rec { 23 23 pname = "kubernetes"; 24 - version = "1.23.8"; 24 + version = "1.23.9"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "kubernetes"; 28 28 repo = "kubernetes"; 29 29 rev = "v${version}"; 30 - sha256 = "sha256-mu+jBSypoMNxOugLbS3foH4C4AqSZnlic4Bf1v9dYc8="; 30 + sha256 = "sha256-uuadINLKZ/hxewE9Qx5wBoGMWrpmTJPDgZh0djadAhc="; 31 31 }; 32 32 33 33 vendorSha256 = null;
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "signal-desktop"; 12 - version = "5.49.0"; # Please backport all updates to the stable channel. 12 + version = "5.50.0"; # Please backport all updates to the stable channel. 13 13 # All releases have a limited lifetime and "expire" 90 days after the release. 14 14 # When releases "expire" the application becomes unusable until an update is 15 15 # applied. The expiration date for the current release can be extracted with: ··· 19 19 20 20 src = fetchurl { 21 21 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 22 - sha256 = "sha256-rrDUaFcqslSuJwTYx1exEfvuHKKnPZKh+RYerOcKGG0="; 22 + sha256 = "sha256-3/a0+FTRSI7MdI/4mAhKl/KEBoEM1rqTUUWTpNFJTSA="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/applications/terminal-emulators/gnome-console/default.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "gnome-console"; 25 - version = "42.0"; 25 + version = "42.2"; 26 26 27 27 src = fetchurl { 28 28 url = "mirror://gnome/sources/gnome-console/${lib.versions.major version}/${pname}-${version}.tar.xz"; 29 - sha256 = "Fae8i72047ZZ//DFK2GdxilxkPhnRp2D4wOvSzibuaM="; 29 + sha256 = "fSbmwYdExXWnhykyY/YM7/YwEHCY6eWKd2WwCsdDcEk="; 30 30 }; 31 31 32 32 buildInputs = [
+2 -2
pkgs/development/interpreters/python/default.nix
··· 199 199 major = "3"; 200 200 minor = "11"; 201 201 patch = "0"; 202 - suffix = "b3"; 202 + suffix = "b4"; 203 203 }; 204 - sha256 = "sha256-ybmfUxXqMPjp/LzmgHo3Oeh1SA0pEk5tmUD2+ry3yQI="; 204 + sha256 = "sha256-HZO2EWB5A+CAQXwalWf1+79RJMxchvSvu6HI/TTF9vs="; 205 205 inherit (darwin) configd; 206 206 inherit passthruFun; 207 207 };
+2 -2
pkgs/development/python-modules/bellows/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "bellows"; 20 - version = "0.31.0"; 20 + version = "0.31.1"; 21 21 format = "setuptools"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "zigpy"; 25 25 repo = "bellows"; 26 26 rev = "refs/tags/${version}"; 27 - sha256 = "sha256-8pw139TNY7LE7x13JfgxcUVWFIXVj4FiEvqdUh+xcl8="; 27 + sha256 = "sha256-kjZL6N1VF3Rc26eB5fU1UEs9BEr4sfV4Hto6QdwqeqY="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/django/3.nix
··· 3 3 , buildPythonPackage 4 4 , fetchPypi 5 5 , substituteAll 6 - , geos 6 + , geos39 7 7 , gdal 8 8 , asgiref 9 9 , pytz ··· 27 27 patches = lib.optional withGdal 28 28 (substituteAll { 29 29 src = ./django_3_set_geos_gdal_lib.patch; 30 - inherit geos; 30 + inherit geos39; 31 31 inherit gdal; 32 32 extension = stdenv.hostPlatform.extensions.sharedLibrary; 33 33 });
+1 -1
pkgs/development/python-modules/django/django_3_set_geos_gdal_lib.patch
··· 18 18 lib_path = settings.GEOS_LIBRARY_PATH 19 19 except (AttributeError, ImportError, ImproperlyConfigured, OSError): 20 20 - lib_path = None 21 - + lib_path = "@geos@/lib/libgeos_c@extension@" 21 + + lib_path = "@geos39@/lib/libgeos_c@extension@" 22 22 23 23 # Setting the appropriate names for the GEOS-C library. 24 24 if lib_path:
+2 -2
pkgs/development/python-modules/levenshtein/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "levenshtein"; 15 - version = "0.19.1"; 15 + version = "0.19.2"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 21 21 owner = "maxbachmann"; 22 22 repo = "Levenshtein"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-2/m9vn3yHDt5sjE/hY3s3gBCkZnehbk25+VReLo2jn8="; 24 + hash = "sha256-tedoSeCwMWHwPlZ8qvzIMjVj5W9qJVoLAsT35hQBc/g="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/tools/database/sqlfluff/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "sqlfluff"; 8 - version = "1.1.0"; 8 + version = "1.2.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = pname; 13 13 rev = "refs/tags/${version}"; 14 - hash = "sha256-6nVNUVvTKwVAQ55y8IunJyEKHN1/pf1BxM3tBqvNFIc="; 14 + hash = "sha256-n5DprvSbli7wEV+oRA+U5UnaAGPit2Zd2gFb9fCgG8A="; 15 15 }; 16 16 17 17 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/development/web/nodejs/v18.nix
··· 7 7 in 8 8 buildNodejs { 9 9 inherit enableNpm; 10 - version = "18.5.0"; 11 - sha256 = "0c50y6c52pmbxc8x1zhkzq608bwvcma4fj39cd1mvc40wfa5d2rn"; 10 + version = "18.6.0"; 11 + sha256 = "0k05phvlpwf467sbaxcvdzr4ncclm9fpldml8fbfrjigl4rhr2sz"; 12 12 patches = [ 13 13 ./disable-darwin-v8-system-instrumentation.patch 14 14 ];
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2022.7.3"; 5 + version = "2022.7.4"; 6 6 components = { 7 7 "abode" = ps: with ps; [ 8 8 abodepy
+2 -15
pkgs/servers/home-assistant/default.nix
··· 85 85 }); 86 86 }) 87 87 88 - # Pinned due to API changes in pyruckus>0.12 89 - (self: super: { 90 - pyruckus = super.pyruckus.overridePythonAttrs (oldAttrs: rec { 91 - version = "0.12"; 92 - src = fetchFromGitHub { 93 - owner = "gabe565"; 94 - repo = "pyruckus"; 95 - rev = version; 96 - sha256 = "0ykv6r6blbj3fg9fplk9i7xclkv5d93rwvx0fm5s8ms9f2s9ih8z"; 97 - }; 98 - }); 99 - }) 100 - 101 88 # Pinned due to API changes in 0.1.0 102 89 (mkOverride "poolsense" "0.0.8" "sha256-17MHrYRmqkH+1QLtgq2d6zaRtqvb9ju9dvPt9gB2xCc=") 103 90 ··· 190 177 extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs); 191 178 192 179 # Don't forget to run parse-requirements.py after updating 193 - hassVersion = "2022.7.3"; 180 + hassVersion = "2022.7.4"; 194 181 195 182 in python.pkgs.buildPythonApplication rec { 196 183 pname = "homeassistant"; ··· 208 195 owner = "home-assistant"; 209 196 repo = "core"; 210 197 rev = version; 211 - hash = "sha256-e0vu3QUalFncWloNum92YLvMWkeuFF74vrNdfmsfEw0="; 198 + hash = "sha256-TQsIChMoIlTd8+gN4bxiWFId6V2wB1j3XfhXYpYMw9M="; 212 199 }; 213 200 214 201 # leave this in, so users don't have to constantly update their downstream patch handling
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 3 package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package; 4 4 in 5 5 package.override rec { 6 - version = "1.25.2"; 6 + version = "1.26.0"; 7 7 reconstructLock = true; 8 8 9 9 src = pkgs.fetchFromGitHub { 10 10 owner = "Koenkk"; 11 11 repo = "zigbee2mqtt"; 12 12 rev = version; 13 - sha256 = "E7D2lAXEgi0Vy9sVUzsLxY6G06hnUQxergCAOcSvDng="; 13 + sha256 = "eK1Hk+P4pVfv5tk5Nl9GvUjGfcrYO+6mipkqFd8uA74="; 14 14 }; 15 15 16 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+803 -442
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 31 31 sha512 = "GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw=="; 32 32 }; 33 33 }; 34 - "@babel/core-7.18.2" = { 34 + "@babel/core-7.18.5" = { 35 35 name = "_at_babel_slash_core"; 36 36 packageName = "@babel/core"; 37 - version = "7.18.2"; 37 + version = "7.18.5"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.18.2.tgz"; 40 - sha512 = "A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ=="; 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.18.5.tgz"; 40 + sha512 = "MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ=="; 41 41 }; 42 42 }; 43 43 "@babel/generator-7.18.2" = { ··· 274 274 sha512 = "7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="; 275 275 }; 276 276 }; 277 - "@babel/parser-7.18.3" = { 277 + "@babel/parser-7.18.5" = { 278 278 name = "_at_babel_slash_parser"; 279 279 packageName = "@babel/parser"; 280 - version = "7.18.3"; 280 + version = "7.18.5"; 281 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.3.tgz"; 283 - sha512 = "rL50YcEuHbbauAFAysNsJA4/f89fGTOBRNs9P81sniKnKAr4xULe5AecolcsKbi88xu0ByWYDj/S1AJ3FSFuSQ=="; 282 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz"; 283 + sha512 = "YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw=="; 284 284 }; 285 285 }; 286 286 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" = { ··· 958 958 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 959 959 }; 960 960 }; 961 - "@babel/traverse-7.18.2" = { 961 + "@babel/traverse-7.18.5" = { 962 962 name = "_at_babel_slash_traverse"; 963 963 packageName = "@babel/traverse"; 964 - version = "7.18.2"; 964 + version = "7.18.5"; 965 965 src = fetchurl { 966 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz"; 967 - sha512 = "9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA=="; 966 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz"; 967 + sha512 = "aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA=="; 968 968 }; 969 969 }; 970 - "@babel/types-7.18.2" = { 970 + "@babel/types-7.18.4" = { 971 971 name = "_at_babel_slash_types"; 972 972 packageName = "@babel/types"; 973 - version = "7.18.2"; 973 + version = "7.18.4"; 974 974 src = fetchurl { 975 - url = "https://registry.npmjs.org/@babel/types/-/types-7.18.2.tgz"; 976 - sha512 = "0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q=="; 975 + url = "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz"; 976 + sha512 = "ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="; 977 977 }; 978 978 }; 979 979 "@bcoe/v8-coverage-0.2.3" = { ··· 1048 1048 sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 1049 1049 }; 1050 1050 }; 1051 - "@jest/console-28.1.0" = { 1051 + "@jest/console-28.1.1" = { 1052 1052 name = "_at_jest_slash_console"; 1053 1053 packageName = "@jest/console"; 1054 - version = "28.1.0"; 1054 + version = "28.1.1"; 1055 1055 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@jest/console/-/console-28.1.0.tgz"; 1057 - sha512 = "tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA=="; 1056 + url = "https://registry.npmjs.org/@jest/console/-/console-28.1.1.tgz"; 1057 + sha512 = "0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA=="; 1058 1058 }; 1059 1059 }; 1060 - "@jest/core-28.1.0" = { 1060 + "@jest/core-28.1.1" = { 1061 1061 name = "_at_jest_slash_core"; 1062 1062 packageName = "@jest/core"; 1063 - version = "28.1.0"; 1063 + version = "28.1.1"; 1064 1064 src = fetchurl { 1065 - url = "https://registry.npmjs.org/@jest/core/-/core-28.1.0.tgz"; 1066 - sha512 = "/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g=="; 1065 + url = "https://registry.npmjs.org/@jest/core/-/core-28.1.1.tgz"; 1066 + sha512 = "3pYsBoZZ42tXMdlcFeCc/0j9kOlK7MYuXs2B1QbvDgMoW1K9NJ4G/VYvIbMb26iqlkTfPHo7SC2JgjDOk/mxXw=="; 1067 1067 }; 1068 1068 }; 1069 - "@jest/environment-28.1.0" = { 1069 + "@jest/environment-28.1.1" = { 1070 1070 name = "_at_jest_slash_environment"; 1071 1071 packageName = "@jest/environment"; 1072 - version = "28.1.0"; 1072 + version = "28.1.1"; 1073 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@jest/environment/-/environment-28.1.0.tgz"; 1075 - sha512 = "S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA=="; 1074 + url = "https://registry.npmjs.org/@jest/environment/-/environment-28.1.1.tgz"; 1075 + sha512 = "9auVQ2GzQ7nrU+lAr8KyY838YahElTX9HVjbQPPS2XjlxQ+na18G113OoBhyBGBtD6ZnO/SrUy5WR8EzOj1/Uw=="; 1076 1076 }; 1077 1077 }; 1078 - "@jest/expect-28.1.0" = { 1078 + "@jest/expect-28.1.1" = { 1079 1079 name = "_at_jest_slash_expect"; 1080 1080 packageName = "@jest/expect"; 1081 - version = "28.1.0"; 1081 + version = "28.1.1"; 1082 1082 src = fetchurl { 1083 - url = "https://registry.npmjs.org/@jest/expect/-/expect-28.1.0.tgz"; 1084 - sha512 = "be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA=="; 1083 + url = "https://registry.npmjs.org/@jest/expect/-/expect-28.1.1.tgz"; 1084 + sha512 = "/+tQprrFoT6lfkMj4mW/mUIfAmmk/+iQPmg7mLDIFOf2lyf7EBHaS+x3RbeR0VZVMe55IvX7QRoT/2aK3AuUXg=="; 1085 1085 }; 1086 1086 }; 1087 - "@jest/expect-utils-28.1.0" = { 1087 + "@jest/expect-utils-28.1.1" = { 1088 1088 name = "_at_jest_slash_expect-utils"; 1089 1089 packageName = "@jest/expect-utils"; 1090 - version = "28.1.0"; 1090 + version = "28.1.1"; 1091 1091 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.0.tgz"; 1093 - sha512 = "5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw=="; 1092 + url = "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.1.tgz"; 1093 + sha512 = "n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw=="; 1094 1094 }; 1095 1095 }; 1096 - "@jest/fake-timers-28.1.0" = { 1096 + "@jest/fake-timers-28.1.1" = { 1097 1097 name = "_at_jest_slash_fake-timers"; 1098 1098 packageName = "@jest/fake-timers"; 1099 - version = "28.1.0"; 1099 + version = "28.1.1"; 1100 1100 src = fetchurl { 1101 - url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.0.tgz"; 1102 - sha512 = "Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg=="; 1101 + url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.1.tgz"; 1102 + sha512 = "BY/3+TyLs5+q87rGWrGUY5f8e8uC3LsVHS9Diz8+FV3ARXL4sNnkLlIB8dvDvRrp+LUCGM+DLqlsYubizGUjIA=="; 1103 1103 }; 1104 1104 }; 1105 - "@jest/globals-28.1.0" = { 1105 + "@jest/globals-28.1.1" = { 1106 1106 name = "_at_jest_slash_globals"; 1107 1107 packageName = "@jest/globals"; 1108 - version = "28.1.0"; 1108 + version = "28.1.1"; 1109 1109 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@jest/globals/-/globals-28.1.0.tgz"; 1111 - sha512 = "3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw=="; 1110 + url = "https://registry.npmjs.org/@jest/globals/-/globals-28.1.1.tgz"; 1111 + sha512 = "dEgl/6v7ToB4vXItdvcltJBgny0xBE6xy6IYQrPJAJggdEinGxCDMivNv7sFzPcTITGquXD6UJwYxfJ/5ZwDSg=="; 1112 1112 }; 1113 1113 }; 1114 - "@jest/reporters-28.1.0" = { 1114 + "@jest/reporters-28.1.1" = { 1115 1115 name = "_at_jest_slash_reporters"; 1116 1116 packageName = "@jest/reporters"; 1117 - version = "28.1.0"; 1117 + version = "28.1.1"; 1118 1118 src = fetchurl { 1119 - url = "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.0.tgz"; 1120 - sha512 = "qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA=="; 1119 + url = "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.1.tgz"; 1120 + sha512 = "597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg=="; 1121 1121 }; 1122 1122 }; 1123 1123 "@jest/schemas-28.0.2" = { ··· 1138 1138 sha512 = "Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw=="; 1139 1139 }; 1140 1140 }; 1141 - "@jest/test-result-28.1.0" = { 1141 + "@jest/test-result-28.1.1" = { 1142 1142 name = "_at_jest_slash_test-result"; 1143 1143 packageName = "@jest/test-result"; 1144 - version = "28.1.0"; 1144 + version = "28.1.1"; 1145 1145 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.0.tgz"; 1147 - sha512 = "sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ=="; 1146 + url = "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.1.tgz"; 1147 + sha512 = "hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ=="; 1148 1148 }; 1149 1149 }; 1150 - "@jest/test-sequencer-28.1.0" = { 1150 + "@jest/test-sequencer-28.1.1" = { 1151 1151 name = "_at_jest_slash_test-sequencer"; 1152 1152 packageName = "@jest/test-sequencer"; 1153 - version = "28.1.0"; 1153 + version = "28.1.1"; 1154 1154 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.0.tgz"; 1156 - sha512 = "tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ=="; 1155 + url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.1.tgz"; 1156 + sha512 = "nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA=="; 1157 1157 }; 1158 1158 }; 1159 - "@jest/transform-28.1.0" = { 1159 + "@jest/transform-28.1.1" = { 1160 1160 name = "_at_jest_slash_transform"; 1161 1161 packageName = "@jest/transform"; 1162 - version = "28.1.0"; 1162 + version = "28.1.1"; 1163 1163 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@jest/transform/-/transform-28.1.0.tgz"; 1165 - sha512 = "omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA=="; 1164 + url = "https://registry.npmjs.org/@jest/transform/-/transform-28.1.1.tgz"; 1165 + sha512 = "PkfaTUuvjUarl1EDr5ZQcCA++oXkFCP9QFUkG0yVKVmNObjhrqDy0kbMpMebfHWm3CCDHjYNem9eUSH8suVNHQ=="; 1166 1166 }; 1167 1167 }; 1168 - "@jest/types-28.1.0" = { 1168 + "@jest/types-28.1.1" = { 1169 1169 name = "_at_jest_slash_types"; 1170 1170 packageName = "@jest/types"; 1171 - version = "28.1.0"; 1171 + version = "28.1.1"; 1172 1172 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@jest/types/-/types-28.1.0.tgz"; 1174 - sha512 = "xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA=="; 1173 + url = "https://registry.npmjs.org/@jest/types/-/types-28.1.1.tgz"; 1174 + sha512 = "vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw=="; 1175 1175 }; 1176 1176 }; 1177 1177 "@jridgewell/gen-mapping-0.1.1" = { ··· 1255 1255 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1256 1256 }; 1257 1257 }; 1258 + "@popperjs/core-2.11.5" = { 1259 + name = "_at_popperjs_slash_core"; 1260 + packageName = "@popperjs/core"; 1261 + version = "2.11.5"; 1262 + src = fetchurl { 1263 + url = "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz"; 1264 + sha512 = "9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw=="; 1265 + }; 1266 + }; 1267 + "@react-aria/ssr-3.2.0" = { 1268 + name = "_at_react-aria_slash_ssr"; 1269 + packageName = "@react-aria/ssr"; 1270 + version = "3.2.0"; 1271 + src = fetchurl { 1272 + url = "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.2.0.tgz"; 1273 + sha512 = "wwJFdkl+Q8NU5yJ4NvdAOqx5LM3QtUVoSjuK7Ey8jZ4WS4bB0EqT3Kr3IInBs257HzZ5nXCiKXKE4NGXXuIRWA=="; 1274 + }; 1275 + }; 1276 + "@restart/hooks-0.4.7" = { 1277 + name = "_at_restart_slash_hooks"; 1278 + packageName = "@restart/hooks"; 1279 + version = "0.4.7"; 1280 + src = fetchurl { 1281 + url = "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.7.tgz"; 1282 + sha512 = "ZbjlEHcG+FQtpDPHd7i4FzNNvJf2enAwZfJbpM8CW7BhmOAbsHpZe3tsHwfQUrBuyrxWqPYp2x5UMnilWcY22A=="; 1283 + }; 1284 + }; 1285 + "@restart/ui-1.2.0" = { 1286 + name = "_at_restart_slash_ui"; 1287 + packageName = "@restart/ui"; 1288 + version = "1.2.0"; 1289 + src = fetchurl { 1290 + url = "https://registry.npmjs.org/@restart/ui/-/ui-1.2.0.tgz"; 1291 + sha512 = "oIh2t3tG8drZtZ9SlaV5CY6wGsUViHk8ZajjhcI+74IQHyWy+AnxDv8rJR5wVgsgcgrPBUvGNkC1AEdcGNPaLQ=="; 1292 + }; 1293 + }; 1294 + "@rjsf/bootstrap-5-https://github.com/nurikk/fileshare/blob/main/rjsf-bootstrap-5-4.2.0.tgz?raw=true" = { 1295 + name = "_at_rjsf_slash_bootstrap-5"; 1296 + packageName = "@rjsf/bootstrap-5"; 1297 + version = 1; 1298 + src = fetchurl { 1299 + name = "bootstrap-5-1.tar.gz"; 1300 + url = "https://github.com/nurikk/fileshare/blob/main/rjsf-bootstrap-5-4.2.0.tgz?raw=true"; 1301 + sha512 = "gHwtGSeteSl3LiSOk+rIENiVjI7yaMTYcxqroXZxErstz/5WcZV5Wme+8XCYBB7yLhMiWPvNlDS9Nr4urADIdQ=="; 1302 + }; 1303 + }; 1304 + "@rjsf/core-4.2.0" = { 1305 + name = "_at_rjsf_slash_core"; 1306 + packageName = "@rjsf/core"; 1307 + version = "4.2.0"; 1308 + src = fetchurl { 1309 + url = "https://registry.npmjs.org/@rjsf/core/-/core-4.2.0.tgz"; 1310 + sha512 = "bGWWCZjXHhBCkzag1Yh6F7a15/D6AqKRyks1szYWdCe+4jwWU3maC3apUxHJlHFRz3V1aBW6j6i/UB6zHmFXLQ=="; 1311 + }; 1312 + }; 1258 1313 "@serialport/binding-abstract-9.2.3" = { 1259 1314 name = "_at_serialport_slash_binding-abstract"; 1260 1315 packageName = "@serialport/binding-abstract"; ··· 1489 1544 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 1490 1545 }; 1491 1546 }; 1492 - "@types/jest-27.5.1" = { 1547 + "@types/jest-28.1.3" = { 1493 1548 name = "_at_types_slash_jest"; 1494 1549 packageName = "@types/jest"; 1495 - version = "27.5.1"; 1550 + version = "28.1.3"; 1496 1551 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@types/jest/-/jest-27.5.1.tgz"; 1498 - sha512 = "fUy7YRpT+rHXto1YlL+J9rs0uLGyiqVt3ZOTQR+4ROc47yNl8WLdVLgUloBRhOxP1PZvguHl44T3H0wAWxahYQ=="; 1552 + url = "https://registry.npmjs.org/@types/jest/-/jest-28.1.3.tgz"; 1553 + sha512 = "Tsbjk8Y2hkBaY/gJsataeb4q9Mubw9EOz7+4RjPkzD5KjTvHHs7cpws22InaoXxAVAhF5HfFbzJjo6oKWqSZLw=="; 1499 1554 }; 1500 1555 }; 1501 1556 "@types/js-yaml-4.0.5" = { ··· 1552 1607 sha512 = "ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg=="; 1553 1608 }; 1554 1609 }; 1610 + "@types/prop-types-15.7.5" = { 1611 + name = "_at_types_slash_prop-types"; 1612 + packageName = "@types/prop-types"; 1613 + version = "15.7.5"; 1614 + src = fetchurl { 1615 + url = "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"; 1616 + sha512 = "JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="; 1617 + }; 1618 + }; 1619 + "@types/react-18.0.14" = { 1620 + name = "_at_types_slash_react"; 1621 + packageName = "@types/react"; 1622 + version = "18.0.14"; 1623 + src = fetchurl { 1624 + url = "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz"; 1625 + sha512 = "x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q=="; 1626 + }; 1627 + }; 1628 + "@types/react-transition-group-4.4.4" = { 1629 + name = "_at_types_slash_react-transition-group"; 1630 + packageName = "@types/react-transition-group"; 1631 + version = "4.4.4"; 1632 + src = fetchurl { 1633 + url = "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.4.tgz"; 1634 + sha512 = "7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug=="; 1635 + }; 1636 + }; 1555 1637 "@types/rimraf-3.0.2" = { 1556 1638 name = "_at_types_slash_rimraf"; 1557 1639 packageName = "@types/rimraf"; ··· 1561 1643 sha512 = "F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ=="; 1562 1644 }; 1563 1645 }; 1646 + "@types/scheduler-0.16.2" = { 1647 + name = "_at_types_slash_scheduler"; 1648 + packageName = "@types/scheduler"; 1649 + version = "0.16.2"; 1650 + src = fetchurl { 1651 + url = "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz"; 1652 + sha512 = "hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="; 1653 + }; 1654 + }; 1564 1655 "@types/stack-utils-2.0.1" = { 1565 1656 name = "_at_types_slash_stack-utils"; 1566 1657 packageName = "@types/stack-utils"; ··· 1570 1661 sha512 = "Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="; 1571 1662 }; 1572 1663 }; 1664 + "@types/warning-3.0.0" = { 1665 + name = "_at_types_slash_warning"; 1666 + packageName = "@types/warning"; 1667 + version = "3.0.0"; 1668 + src = fetchurl { 1669 + url = "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz"; 1670 + sha512 = "t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA=="; 1671 + }; 1672 + }; 1573 1673 "@types/ws-8.5.3" = { 1574 1674 name = "_at_types_slash_ws"; 1575 1675 packageName = "@types/ws"; ··· 1597 1697 sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 1598 1698 }; 1599 1699 }; 1600 - "@typescript-eslint/eslint-plugin-5.26.0" = { 1700 + "@typescript-eslint/eslint-plugin-5.29.0" = { 1601 1701 name = "_at_typescript-eslint_slash_eslint-plugin"; 1602 1702 packageName = "@typescript-eslint/eslint-plugin"; 1603 - version = "5.26.0"; 1703 + version = "5.29.0"; 1604 1704 src = fetchurl { 1605 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.26.0.tgz"; 1606 - sha512 = "oGCmo0PqnRZZndr+KwvvAUvD3kNE4AfyoGCwOZpoCncSh4MVD06JTE8XQa2u9u+NX5CsyZMBTEc2C72zx38eYA=="; 1705 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.29.0.tgz"; 1706 + sha512 = "kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w=="; 1607 1707 }; 1608 1708 }; 1609 - "@typescript-eslint/parser-5.26.0" = { 1709 + "@typescript-eslint/parser-5.29.0" = { 1610 1710 name = "_at_typescript-eslint_slash_parser"; 1611 1711 packageName = "@typescript-eslint/parser"; 1612 - version = "5.26.0"; 1712 + version = "5.29.0"; 1613 1713 src = fetchurl { 1614 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.26.0.tgz"; 1615 - sha512 = "n/IzU87ttzIdnAH5vQ4BBDnLPly7rC5VnjN3m0xBG82HK6rhRxnCb3w/GyWbNDghPd+NktJqB/wl6+YkzZ5T5Q=="; 1714 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.29.0.tgz"; 1715 + sha512 = "ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw=="; 1616 1716 }; 1617 1717 }; 1618 - "@typescript-eslint/scope-manager-5.26.0" = { 1718 + "@typescript-eslint/scope-manager-5.29.0" = { 1619 1719 name = "_at_typescript-eslint_slash_scope-manager"; 1620 1720 packageName = "@typescript-eslint/scope-manager"; 1621 - version = "5.26.0"; 1721 + version = "5.29.0"; 1622 1722 src = fetchurl { 1623 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.26.0.tgz"; 1624 - sha512 = "gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw=="; 1723 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz"; 1724 + sha512 = "etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA=="; 1625 1725 }; 1626 1726 }; 1627 - "@typescript-eslint/type-utils-5.26.0" = { 1727 + "@typescript-eslint/type-utils-5.29.0" = { 1628 1728 name = "_at_typescript-eslint_slash_type-utils"; 1629 1729 packageName = "@typescript-eslint/type-utils"; 1630 - version = "5.26.0"; 1730 + version = "5.29.0"; 1631 1731 src = fetchurl { 1632 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.26.0.tgz"; 1633 - sha512 = "7ccbUVWGLmcRDSA1+ADkDBl5fP87EJt0fnijsMFTVHXKGduYMgienC/i3QwoVhDADUAPoytgjbZbCOMj4TY55A=="; 1732 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.29.0.tgz"; 1733 + sha512 = "JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg=="; 1634 1734 }; 1635 1735 }; 1636 - "@typescript-eslint/types-5.26.0" = { 1736 + "@typescript-eslint/types-5.29.0" = { 1637 1737 name = "_at_typescript-eslint_slash_types"; 1638 1738 packageName = "@typescript-eslint/types"; 1639 - version = "5.26.0"; 1739 + version = "5.29.0"; 1640 1740 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.26.0.tgz"; 1642 - sha512 = "8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA=="; 1741 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.29.0.tgz"; 1742 + sha512 = "X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg=="; 1643 1743 }; 1644 1744 }; 1645 - "@typescript-eslint/typescript-estree-5.26.0" = { 1745 + "@typescript-eslint/typescript-estree-5.29.0" = { 1646 1746 name = "_at_typescript-eslint_slash_typescript-estree"; 1647 1747 packageName = "@typescript-eslint/typescript-estree"; 1648 - version = "5.26.0"; 1748 + version = "5.29.0"; 1649 1749 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.26.0.tgz"; 1651 - sha512 = "EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w=="; 1750 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz"; 1751 + sha512 = "mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ=="; 1652 1752 }; 1653 1753 }; 1654 - "@typescript-eslint/utils-5.26.0" = { 1754 + "@typescript-eslint/utils-5.29.0" = { 1655 1755 name = "_at_typescript-eslint_slash_utils"; 1656 1756 packageName = "@typescript-eslint/utils"; 1657 - version = "5.26.0"; 1757 + version = "5.29.0"; 1658 1758 src = fetchurl { 1659 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.26.0.tgz"; 1660 - sha512 = "PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg=="; 1759 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.29.0.tgz"; 1760 + sha512 = "3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A=="; 1661 1761 }; 1662 1762 }; 1663 - "@typescript-eslint/visitor-keys-5.26.0" = { 1763 + "@typescript-eslint/visitor-keys-5.29.0" = { 1664 1764 name = "_at_typescript-eslint_slash_visitor-keys"; 1665 1765 packageName = "@typescript-eslint/visitor-keys"; 1666 - version = "5.26.0"; 1766 + version = "5.29.0"; 1667 1767 src = fetchurl { 1668 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.26.0.tgz"; 1669 - sha512 = "wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q=="; 1768 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz"; 1769 + sha512 = "Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ=="; 1670 1770 }; 1671 1771 }; 1672 1772 "acorn-8.7.1" = { ··· 1858 1958 sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; 1859 1959 }; 1860 1960 }; 1861 - "babel-jest-28.1.0" = { 1961 + "babel-jest-28.1.1" = { 1862 1962 name = "babel-jest"; 1863 1963 packageName = "babel-jest"; 1864 - version = "28.1.0"; 1964 + version = "28.1.1"; 1865 1965 src = fetchurl { 1866 - url = "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.0.tgz"; 1867 - sha512 = "zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w=="; 1966 + url = "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.1.tgz"; 1967 + sha512 = "MEt0263viUdAkTq5D7upHPNxvt4n9uLUGa6pPz3WviNBMtOmStb1lIXS3QobnoqM+qnH+vr4EKlvhe8QcmxIYw=="; 1868 1968 }; 1869 1969 }; 1870 1970 "babel-plugin-dynamic-import-node-2.3.3" = { ··· 1885 1985 sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; 1886 1986 }; 1887 1987 }; 1888 - "babel-plugin-jest-hoist-28.0.2" = { 1988 + "babel-plugin-jest-hoist-28.1.1" = { 1889 1989 name = "babel-plugin-jest-hoist"; 1890 1990 packageName = "babel-plugin-jest-hoist"; 1891 - version = "28.0.2"; 1991 + version = "28.1.1"; 1892 1992 src = fetchurl { 1893 - url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.0.2.tgz"; 1894 - sha512 = "Kizhn/ZL+68ZQHxSnHyuvJv8IchXD62KQxV77TBDV/xoBFBOfgRAk97GNs6hXdTTCiVES9nB2I6+7MXXrk5llQ=="; 1993 + url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.1.tgz"; 1994 + sha512 = "NovGCy5Hn25uMJSAU8FaHqzs13cFoOI4lhIujiepssjCKRsAo3TA734RDWSGxuFTsUJXerYOqQQodlxgmtqbzw=="; 1895 1995 }; 1896 1996 }; 1897 1997 "babel-plugin-polyfill-corejs2-0.3.1" = { ··· 1930 2030 sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; 1931 2031 }; 1932 2032 }; 1933 - "babel-preset-jest-28.0.2" = { 2033 + "babel-preset-jest-28.1.1" = { 1934 2034 name = "babel-preset-jest"; 1935 2035 packageName = "babel-preset-jest"; 1936 - version = "28.0.2"; 2036 + version = "28.1.1"; 1937 2037 src = fetchurl { 1938 - url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.0.2.tgz"; 1939 - sha512 = "sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ=="; 2038 + url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.1.tgz"; 2039 + sha512 = "FCq9Oud0ReTeWtcneYf/48981aTfXYuB9gbU4rBNNJVBSQ6ssv7E6v/qvbBxtOWwZFXjLZwpg+W3q7J6vhH25g=="; 1940 2040 }; 1941 2041 }; 1942 2042 "balanced-match-1.0.2" = { ··· 2155 2255 sha512 = "cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="; 2156 2256 }; 2157 2257 }; 2258 + "classnames-2.3.1" = { 2259 + name = "classnames"; 2260 + packageName = "classnames"; 2261 + version = "2.3.1"; 2262 + src = fetchurl { 2263 + url = "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz"; 2264 + sha512 = "OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="; 2265 + }; 2266 + }; 2158 2267 "cliui-7.0.4" = { 2159 2268 name = "cliui"; 2160 2269 packageName = "cliui"; ··· 2270 2379 src = fetchurl { 2271 2380 url = "https://registry.npmjs.org/commist/-/commist-1.1.0.tgz"; 2272 2381 sha512 = "rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg=="; 2382 + }; 2383 + }; 2384 + "compute-gcd-1.2.1" = { 2385 + name = "compute-gcd"; 2386 + packageName = "compute-gcd"; 2387 + version = "1.2.1"; 2388 + src = fetchurl { 2389 + url = "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz"; 2390 + sha512 = "TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg=="; 2391 + }; 2392 + }; 2393 + "compute-lcm-1.1.2" = { 2394 + name = "compute-lcm"; 2395 + packageName = "compute-lcm"; 2396 + version = "1.1.2"; 2397 + src = fetchurl { 2398 + url = "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz"; 2399 + sha512 = "OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ=="; 2273 2400 }; 2274 2401 }; 2275 2402 "concat-map-0.0.1" = { ··· 2317 2444 sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2318 2445 }; 2319 2446 }; 2320 - "core-js-3.22.7" = { 2447 + "core-js-3.23.3" = { 2321 2448 name = "core-js"; 2322 2449 packageName = "core-js"; 2323 - version = "3.22.7"; 2450 + version = "3.23.3"; 2324 2451 src = fetchurl { 2325 - url = "https://registry.npmjs.org/core-js/-/core-js-3.22.7.tgz"; 2326 - sha512 = "Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg=="; 2452 + url = "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz"; 2453 + sha512 = "oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q=="; 2327 2454 }; 2328 2455 }; 2329 2456 "core-js-compat-3.22.7" = { ··· 2335 2462 sha512 = "uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA=="; 2336 2463 }; 2337 2464 }; 2465 + "core-js-pure-3.23.1" = { 2466 + name = "core-js-pure"; 2467 + packageName = "core-js-pure"; 2468 + version = "3.23.1"; 2469 + src = fetchurl { 2470 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.1.tgz"; 2471 + sha512 = "3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg=="; 2472 + }; 2473 + }; 2338 2474 "core-util-is-1.0.3" = { 2339 2475 name = "core-util-is"; 2340 2476 packageName = "core-util-is"; ··· 2351 2487 src = fetchurl { 2352 2488 url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"; 2353 2489 sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 2490 + }; 2491 + }; 2492 + "csstype-3.1.0" = { 2493 + name = "csstype"; 2494 + packageName = "csstype"; 2495 + version = "3.1.0"; 2496 + src = fetchurl { 2497 + url = "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz"; 2498 + sha512 = "uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA=="; 2354 2499 }; 2355 2500 }; 2356 2501 "debounce-1.2.1" = { ··· 2470 2615 sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 2471 2616 }; 2472 2617 }; 2618 + "dequal-2.0.2" = { 2619 + name = "dequal"; 2620 + packageName = "dequal"; 2621 + version = "2.0.2"; 2622 + src = fetchurl { 2623 + url = "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz"; 2624 + sha512 = "q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug=="; 2625 + }; 2626 + }; 2473 2627 "destroy-1.2.0" = { 2474 2628 name = "destroy"; 2475 2629 packageName = "destroy"; ··· 2497 2651 sha512 = "TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="; 2498 2652 }; 2499 2653 }; 2500 - "diff-sequences-27.5.1" = { 2501 - name = "diff-sequences"; 2502 - packageName = "diff-sequences"; 2503 - version = "27.5.1"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz"; 2506 - sha512 = "k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ=="; 2507 - }; 2508 - }; 2509 - "diff-sequences-28.0.2" = { 2654 + "diff-sequences-28.1.1" = { 2510 2655 name = "diff-sequences"; 2511 2656 packageName = "diff-sequences"; 2512 - version = "28.0.2"; 2657 + version = "28.1.1"; 2513 2658 src = fetchurl { 2514 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.0.2.tgz"; 2515 - sha512 = "YtEoNynLDFCRznv/XDalsKGSZDoj0U5kLnXvY0JSq3nBboRrZXjD81+eSiwi+nzcZDwedMmcowcxNwwgFW23mQ=="; 2659 + url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz"; 2660 + sha512 = "FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw=="; 2516 2661 }; 2517 2662 }; 2518 2663 "dir-glob-3.0.1" = { ··· 2533 2678 sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 2534 2679 }; 2535 2680 }; 2681 + "dom-helpers-5.2.1" = { 2682 + name = "dom-helpers"; 2683 + packageName = "dom-helpers"; 2684 + version = "5.2.1"; 2685 + src = fetchurl { 2686 + url = "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz"; 2687 + sha512 = "nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="; 2688 + }; 2689 + }; 2536 2690 "duplexify-4.1.2" = { 2537 2691 name = "duplexify"; 2538 2692 packageName = "duplexify"; ··· 2659 2813 sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 2660 2814 }; 2661 2815 }; 2662 - "eslint-8.16.0" = { 2816 + "eslint-8.18.0" = { 2663 2817 name = "eslint"; 2664 2818 packageName = "eslint"; 2665 - version = "8.16.0"; 2819 + version = "8.18.0"; 2666 2820 src = fetchurl { 2667 - url = "https://registry.npmjs.org/eslint/-/eslint-8.16.0.tgz"; 2668 - sha512 = "MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA=="; 2821 + url = "https://registry.npmjs.org/eslint/-/eslint-8.18.0.tgz"; 2822 + sha512 = "As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA=="; 2669 2823 }; 2670 2824 }; 2671 2825 "eslint-config-google-0.14.0" = { ··· 2677 2831 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 2678 2832 }; 2679 2833 }; 2680 - "eslint-plugin-jest-26.4.2" = { 2834 + "eslint-plugin-jest-26.5.3" = { 2681 2835 name = "eslint-plugin-jest"; 2682 2836 packageName = "eslint-plugin-jest"; 2683 - version = "26.4.2"; 2837 + version = "26.5.3"; 2684 2838 src = fetchurl { 2685 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.4.2.tgz"; 2686 - sha512 = "0g7bl2j1zS58qIzSQmx1RABjiWgVKWSMRgr2bEUymyYNf5NX9TQqprvdmVbZh/3gfnmOrkQtZSIc1R4XKQGppA=="; 2839 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.5.3.tgz"; 2840 + sha512 = "sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ=="; 2687 2841 }; 2688 2842 }; 2689 2843 "eslint-scope-5.1.1" = { ··· 2830 2984 sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 2831 2985 }; 2832 2986 }; 2833 - "expect-28.1.0" = { 2987 + "expect-28.1.1" = { 2834 2988 name = "expect"; 2835 2989 packageName = "expect"; 2836 - version = "28.1.0"; 2990 + version = "28.1.1"; 2837 2991 src = fetchurl { 2838 - url = "https://registry.npmjs.org/expect/-/expect-28.1.0.tgz"; 2839 - sha512 = "qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw=="; 2992 + url = "https://registry.npmjs.org/expect/-/expect-28.1.1.tgz"; 2993 + sha512 = "/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w=="; 2840 2994 }; 2841 2995 }; 2842 2996 "fast-deep-equal-3.1.3" = { ··· 3325 3479 sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; 3326 3480 }; 3327 3481 }; 3482 + "immediate-3.0.6" = { 3483 + name = "immediate"; 3484 + packageName = "immediate"; 3485 + version = "3.0.6"; 3486 + src = fetchurl { 3487 + url = "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz"; 3488 + sha512 = "XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="; 3489 + }; 3490 + }; 3328 3491 "import-fresh-3.3.0" = { 3329 3492 name = "import-fresh"; 3330 3493 packageName = "import-fresh"; ··· 3379 3542 sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 3380 3543 }; 3381 3544 }; 3545 + "invariant-2.2.4" = { 3546 + name = "invariant"; 3547 + packageName = "invariant"; 3548 + version = "2.2.4"; 3549 + src = fetchurl { 3550 + url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"; 3551 + sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="; 3552 + }; 3553 + }; 3382 3554 "is-arrayish-0.2.1" = { 3383 3555 name = "is-arrayish"; 3384 3556 packageName = "is-arrayish"; 3385 3557 version = "0.2.1"; 3386 3558 src = fetchurl { 3387 3559 url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; 3388 - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 3560 + sha512 = "zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="; 3389 3561 }; 3390 3562 }; 3391 3563 "is-arrayish-0.3.2" = { ··· 3532 3704 sha512 = "r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw=="; 3533 3705 }; 3534 3706 }; 3535 - "jest-28.1.0" = { 3707 + "jest-28.1.1" = { 3536 3708 name = "jest"; 3537 3709 packageName = "jest"; 3538 - version = "28.1.0"; 3710 + version = "28.1.1"; 3539 3711 src = fetchurl { 3540 - url = "https://registry.npmjs.org/jest/-/jest-28.1.0.tgz"; 3541 - sha512 = "TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg=="; 3712 + url = "https://registry.npmjs.org/jest/-/jest-28.1.1.tgz"; 3713 + sha512 = "qw9YHBnjt6TCbIDMPMpJZqf9E12rh6869iZaN08/vpOGgHJSAaLLUn6H8W3IAEuy34Ls3rct064mZLETkxJ2XA=="; 3542 3714 }; 3543 3715 }; 3544 3716 "jest-changed-files-28.0.2" = { ··· 3550 3722 sha512 = "QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA=="; 3551 3723 }; 3552 3724 }; 3553 - "jest-circus-28.1.0" = { 3725 + "jest-circus-28.1.1" = { 3554 3726 name = "jest-circus"; 3555 3727 packageName = "jest-circus"; 3556 - version = "28.1.0"; 3728 + version = "28.1.1"; 3557 3729 src = fetchurl { 3558 - url = "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.0.tgz"; 3559 - sha512 = "rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ=="; 3730 + url = "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.1.tgz"; 3731 + sha512 = "75+BBVTsL4+p2w198DQpCeyh1RdaS2lhEG87HkaFX/UG0gJExVq2skG2pT7XZEGBubNj2CytcWSPan4QEPNosw=="; 3560 3732 }; 3561 3733 }; 3562 - "jest-cli-28.1.0" = { 3734 + "jest-cli-28.1.1" = { 3563 3735 name = "jest-cli"; 3564 3736 packageName = "jest-cli"; 3565 - version = "28.1.0"; 3737 + version = "28.1.1"; 3566 3738 src = fetchurl { 3567 - url = "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.0.tgz"; 3568 - sha512 = "fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ=="; 3739 + url = "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.1.tgz"; 3740 + sha512 = "+sUfVbJqb1OjBZ0OdBbI6OWfYM1i7bSfzYy6gze1F1w3OKWq8ZTEKkZ8a7ZQPq6G/G1qMh/uKqpdWhgl11NFQQ=="; 3569 3741 }; 3570 3742 }; 3571 - "jest-config-28.1.0" = { 3743 + "jest-config-28.1.1" = { 3572 3744 name = "jest-config"; 3573 3745 packageName = "jest-config"; 3574 - version = "28.1.0"; 3746 + version = "28.1.1"; 3575 3747 src = fetchurl { 3576 - url = "https://registry.npmjs.org/jest-config/-/jest-config-28.1.0.tgz"; 3577 - sha512 = "aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA=="; 3748 + url = "https://registry.npmjs.org/jest-config/-/jest-config-28.1.1.tgz"; 3749 + sha512 = "tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA=="; 3578 3750 }; 3579 3751 }; 3580 - "jest-diff-27.5.1" = { 3752 + "jest-diff-28.1.1" = { 3581 3753 name = "jest-diff"; 3582 3754 packageName = "jest-diff"; 3583 - version = "27.5.1"; 3755 + version = "28.1.1"; 3584 3756 src = fetchurl { 3585 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz"; 3586 - sha512 = "m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw=="; 3757 + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.1.tgz"; 3758 + sha512 = "/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg=="; 3587 3759 }; 3588 3760 }; 3589 - "jest-diff-28.1.0" = { 3590 - name = "jest-diff"; 3591 - packageName = "jest-diff"; 3592 - version = "28.1.0"; 3593 - src = fetchurl { 3594 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.0.tgz"; 3595 - sha512 = "8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA=="; 3596 - }; 3597 - }; 3598 - "jest-docblock-28.0.2" = { 3761 + "jest-docblock-28.1.1" = { 3599 3762 name = "jest-docblock"; 3600 3763 packageName = "jest-docblock"; 3601 - version = "28.0.2"; 3764 + version = "28.1.1"; 3602 3765 src = fetchurl { 3603 - url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.0.2.tgz"; 3604 - sha512 = "FH10WWw5NxLoeSdQlJwu+MTiv60aXV/t8KEwIRGEv74WARE1cXIqh1vGdy2CraHuWOOrnzTWj/azQKqW4fO7xg=="; 3766 + url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz"; 3767 + sha512 = "3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA=="; 3605 3768 }; 3606 3769 }; 3607 - "jest-each-28.1.0" = { 3770 + "jest-each-28.1.1" = { 3608 3771 name = "jest-each"; 3609 3772 packageName = "jest-each"; 3610 - version = "28.1.0"; 3773 + version = "28.1.1"; 3611 3774 src = fetchurl { 3612 - url = "https://registry.npmjs.org/jest-each/-/jest-each-28.1.0.tgz"; 3613 - sha512 = "a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg=="; 3775 + url = "https://registry.npmjs.org/jest-each/-/jest-each-28.1.1.tgz"; 3776 + sha512 = "A042rqh17ZvEhRceDMi784ppoXR7MWGDEKTXEZXb4svt0eShMZvijGxzKsx+yIjeE8QYmHPrnHiTSQVhN4nqaw=="; 3614 3777 }; 3615 3778 }; 3616 - "jest-environment-node-28.1.0" = { 3779 + "jest-environment-node-28.1.1" = { 3617 3780 name = "jest-environment-node"; 3618 3781 packageName = "jest-environment-node"; 3619 - version = "28.1.0"; 3782 + version = "28.1.1"; 3620 3783 src = fetchurl { 3621 - url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.0.tgz"; 3622 - sha512 = "gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ=="; 3623 - }; 3624 - }; 3625 - "jest-get-type-27.5.1" = { 3626 - name = "jest-get-type"; 3627 - packageName = "jest-get-type"; 3628 - version = "27.5.1"; 3629 - src = fetchurl { 3630 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz"; 3631 - sha512 = "2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="; 3784 + url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.1.tgz"; 3785 + sha512 = "2aV/eeY/WNgUUJrrkDJ3cFEigjC5fqT1+fCclrY6paqJ5zVPoM//sHmfgUUp7WLYxIdbPwMiVIzejpN56MxnNA=="; 3632 3786 }; 3633 3787 }; 3634 3788 "jest-get-type-28.0.2" = { ··· 3640 3794 sha512 = "ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA=="; 3641 3795 }; 3642 3796 }; 3643 - "jest-haste-map-28.1.0" = { 3797 + "jest-haste-map-28.1.1" = { 3644 3798 name = "jest-haste-map"; 3645 3799 packageName = "jest-haste-map"; 3646 - version = "28.1.0"; 3800 + version = "28.1.1"; 3647 3801 src = fetchurl { 3648 - url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.0.tgz"; 3649 - sha512 = "xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw=="; 3802 + url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.1.tgz"; 3803 + sha512 = "ZrRSE2o3Ezh7sb1KmeLEZRZ4mgufbrMwolcFHNRSjKZhpLa8TdooXOOFlSwoUzlbVs1t0l7upVRW2K7RWGHzbQ=="; 3650 3804 }; 3651 3805 }; 3652 - "jest-leak-detector-28.1.0" = { 3806 + "jest-leak-detector-28.1.1" = { 3653 3807 name = "jest-leak-detector"; 3654 3808 packageName = "jest-leak-detector"; 3655 - version = "28.1.0"; 3809 + version = "28.1.1"; 3656 3810 src = fetchurl { 3657 - url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.0.tgz"; 3658 - sha512 = "uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA=="; 3811 + url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.1.tgz"; 3812 + sha512 = "4jvs8V8kLbAaotE+wFR7vfUGf603cwYtFf1/PYEsyX2BAjSzj8hQSVTP6OWzseTl0xL6dyHuKs2JAks7Pfubmw=="; 3659 3813 }; 3660 3814 }; 3661 - "jest-matcher-utils-27.5.1" = { 3815 + "jest-matcher-utils-28.1.1" = { 3662 3816 name = "jest-matcher-utils"; 3663 3817 packageName = "jest-matcher-utils"; 3664 - version = "27.5.1"; 3818 + version = "28.1.1"; 3665 3819 src = fetchurl { 3666 - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz"; 3667 - sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="; 3820 + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.1.tgz"; 3821 + sha512 = "NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw=="; 3668 3822 }; 3669 3823 }; 3670 - "jest-matcher-utils-28.1.0" = { 3671 - name = "jest-matcher-utils"; 3672 - packageName = "jest-matcher-utils"; 3673 - version = "28.1.0"; 3674 - src = fetchurl { 3675 - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.0.tgz"; 3676 - sha512 = "onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ=="; 3677 - }; 3678 - }; 3679 - "jest-message-util-28.1.0" = { 3824 + "jest-message-util-28.1.1" = { 3680 3825 name = "jest-message-util"; 3681 3826 packageName = "jest-message-util"; 3682 - version = "28.1.0"; 3827 + version = "28.1.1"; 3683 3828 src = fetchurl { 3684 - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.0.tgz"; 3685 - sha512 = "RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw=="; 3829 + url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.1.tgz"; 3830 + sha512 = "xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ=="; 3686 3831 }; 3687 3832 }; 3688 - "jest-mock-28.1.0" = { 3833 + "jest-mock-28.1.1" = { 3689 3834 name = "jest-mock"; 3690 3835 packageName = "jest-mock"; 3691 - version = "28.1.0"; 3836 + version = "28.1.1"; 3692 3837 src = fetchurl { 3693 - url = "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.0.tgz"; 3694 - sha512 = "H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw=="; 3838 + url = "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.1.tgz"; 3839 + sha512 = "bDCb0FjfsmKweAvE09dZT59IMkzgN0fYBH6t5S45NoJfd2DHkS3ySG2K+hucortryhO3fVuXdlxWcbtIuV/Skw=="; 3695 3840 }; 3696 3841 }; 3697 3842 "jest-pnp-resolver-1.2.2" = { ··· 3712 3857 sha512 = "4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw=="; 3713 3858 }; 3714 3859 }; 3715 - "jest-resolve-28.1.0" = { 3860 + "jest-resolve-28.1.1" = { 3716 3861 name = "jest-resolve"; 3717 3862 packageName = "jest-resolve"; 3718 - version = "28.1.0"; 3863 + version = "28.1.1"; 3719 3864 src = fetchurl { 3720 - url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.0.tgz"; 3721 - sha512 = "vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw=="; 3865 + url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.1.tgz"; 3866 + sha512 = "/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA=="; 3722 3867 }; 3723 3868 }; 3724 - "jest-resolve-dependencies-28.1.0" = { 3869 + "jest-resolve-dependencies-28.1.1" = { 3725 3870 name = "jest-resolve-dependencies"; 3726 3871 packageName = "jest-resolve-dependencies"; 3727 - version = "28.1.0"; 3872 + version = "28.1.1"; 3728 3873 src = fetchurl { 3729 - url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.0.tgz"; 3730 - sha512 = "Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g=="; 3874 + url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.1.tgz"; 3875 + sha512 = "p8Y150xYJth4EXhOuB8FzmS9r8IGLEioiaetgdNGb9VHka4fl0zqWlVe4v7mSkYOuEUg2uB61iE+zySDgrOmgQ=="; 3731 3876 }; 3732 3877 }; 3733 - "jest-runner-28.1.0" = { 3878 + "jest-runner-28.1.1" = { 3734 3879 name = "jest-runner"; 3735 3880 packageName = "jest-runner"; 3736 - version = "28.1.0"; 3881 + version = "28.1.1"; 3737 3882 src = fetchurl { 3738 - url = "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.0.tgz"; 3739 - sha512 = "FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w=="; 3883 + url = "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.1.tgz"; 3884 + sha512 = "W5oFUiDBgTsCloTAj6q95wEvYDB0pxIhY6bc5F26OucnwBN+K58xGTGbliSMI4ChQal5eANDF+xvELaYkJxTmA=="; 3740 3885 }; 3741 3886 }; 3742 - "jest-runtime-28.1.0" = { 3887 + "jest-runtime-28.1.1" = { 3743 3888 name = "jest-runtime"; 3744 3889 packageName = "jest-runtime"; 3745 - version = "28.1.0"; 3890 + version = "28.1.1"; 3746 3891 src = fetchurl { 3747 - url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.0.tgz"; 3748 - sha512 = "wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg=="; 3892 + url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.1.tgz"; 3893 + sha512 = "J89qEJWW0leOsqyi0D9zHpFEYHwwafFdS9xgvhFHtIdRghbadodI0eA+DrthK/1PebBv3Px8mFSMGKrtaVnleg=="; 3749 3894 }; 3750 3895 }; 3751 - "jest-snapshot-28.1.0" = { 3896 + "jest-snapshot-28.1.1" = { 3752 3897 name = "jest-snapshot"; 3753 3898 packageName = "jest-snapshot"; 3754 - version = "28.1.0"; 3899 + version = "28.1.1"; 3755 3900 src = fetchurl { 3756 - url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.0.tgz"; 3757 - sha512 = "ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw=="; 3901 + url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.1.tgz"; 3902 + sha512 = "1KjqHJ98adRcbIdMizjF5DipwZFbvxym/kFO4g4fVZCZRxH/dqV8TiBFCa6rqic3p0karsy8RWS1y4E07b7P0A=="; 3758 3903 }; 3759 3904 }; 3760 - "jest-util-28.1.0" = { 3905 + "jest-util-28.1.1" = { 3761 3906 name = "jest-util"; 3762 3907 packageName = "jest-util"; 3763 - version = "28.1.0"; 3908 + version = "28.1.1"; 3764 3909 src = fetchurl { 3765 - url = "https://registry.npmjs.org/jest-util/-/jest-util-28.1.0.tgz"; 3766 - sha512 = "qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA=="; 3910 + url = "https://registry.npmjs.org/jest-util/-/jest-util-28.1.1.tgz"; 3911 + sha512 = "FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw=="; 3767 3912 }; 3768 3913 }; 3769 - "jest-validate-28.1.0" = { 3914 + "jest-validate-28.1.1" = { 3770 3915 name = "jest-validate"; 3771 3916 packageName = "jest-validate"; 3772 - version = "28.1.0"; 3917 + version = "28.1.1"; 3773 3918 src = fetchurl { 3774 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.0.tgz"; 3775 - sha512 = "Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ=="; 3919 + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.1.tgz"; 3920 + sha512 = "Kpf6gcClqFCIZ4ti5++XemYJWUPCFUW+N2gknn+KgnDf549iLul3cBuKVe1YcWRlaF8tZV8eJCap0eECOEE3Ug=="; 3776 3921 }; 3777 3922 }; 3778 - "jest-watcher-28.1.0" = { 3923 + "jest-watcher-28.1.1" = { 3779 3924 name = "jest-watcher"; 3780 3925 packageName = "jest-watcher"; 3781 - version = "28.1.0"; 3926 + version = "28.1.1"; 3782 3927 src = fetchurl { 3783 - url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.0.tgz"; 3784 - sha512 = "tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA=="; 3928 + url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.1.tgz"; 3929 + sha512 = "RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug=="; 3785 3930 }; 3786 3931 }; 3787 - "jest-worker-28.1.0" = { 3932 + "jest-worker-28.1.1" = { 3788 3933 name = "jest-worker"; 3789 3934 packageName = "jest-worker"; 3790 - version = "28.1.0"; 3935 + version = "28.1.1"; 3791 3936 src = fetchurl { 3792 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.0.tgz"; 3793 - sha512 = "ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A=="; 3937 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz"; 3938 + sha512 = "Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ=="; 3794 3939 }; 3795 3940 }; 3796 3941 "js-sdsl-2.1.4" = { ··· 3856 4001 sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; 3857 4002 }; 3858 4003 }; 4004 + "json-schema-compare-0.2.2" = { 4005 + name = "json-schema-compare"; 4006 + packageName = "json-schema-compare"; 4007 + version = "0.2.2"; 4008 + src = fetchurl { 4009 + url = "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz"; 4010 + sha512 = "c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ=="; 4011 + }; 4012 + }; 4013 + "json-schema-merge-allof-0.6.0" = { 4014 + name = "json-schema-merge-allof"; 4015 + packageName = "json-schema-merge-allof"; 4016 + version = "0.6.0"; 4017 + src = fetchurl { 4018 + url = "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.6.0.tgz"; 4019 + sha512 = "LEw4VMQVRceOPLuGRWcxW5orTTiR9ZAtqTAe4rQUjNADTeR81bezBVFa0MqIwp0YmHIM1KkhSjZM7o+IQhaPbQ=="; 4020 + }; 4021 + }; 3859 4022 "json-schema-traverse-0.4.1" = { 3860 4023 name = "json-schema-traverse"; 3861 4024 packageName = "json-schema-traverse"; ··· 3892 4055 sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 3893 4056 }; 3894 4057 }; 4058 + "jsonpointer-5.0.0" = { 4059 + name = "jsonpointer"; 4060 + packageName = "jsonpointer"; 4061 + version = "5.0.0"; 4062 + src = fetchurl { 4063 + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz"; 4064 + sha512 = "PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg=="; 4065 + }; 4066 + }; 4067 + "jszip-3.10.0" = { 4068 + name = "jszip"; 4069 + packageName = "jszip"; 4070 + version = "3.10.0"; 4071 + src = fetchurl { 4072 + url = "https://registry.npmjs.org/jszip/-/jszip-3.10.0.tgz"; 4073 + sha512 = "LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q=="; 4074 + }; 4075 + }; 3895 4076 "kleur-3.0.3" = { 3896 4077 name = "kleur"; 3897 4078 packageName = "kleur"; ··· 3937 4118 sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 3938 4119 }; 3939 4120 }; 4121 + "lie-3.3.0" = { 4122 + name = "lie"; 4123 + packageName = "lie"; 4124 + version = "3.3.0"; 4125 + src = fetchurl { 4126 + url = "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz"; 4127 + sha512 = "UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ=="; 4128 + }; 4129 + }; 3940 4130 "lines-and-columns-1.2.4" = { 3941 4131 name = "lines-and-columns"; 3942 4132 packageName = "lines-and-columns"; ··· 3955 4145 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 3956 4146 }; 3957 4147 }; 4148 + "lodash-4.17.21" = { 4149 + name = "lodash"; 4150 + packageName = "lodash"; 4151 + version = "4.17.21"; 4152 + src = fetchurl { 4153 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 4154 + sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 4155 + }; 4156 + }; 3958 4157 "lodash.debounce-4.0.8" = { 3959 4158 name = "lodash.debounce"; 3960 4159 packageName = "lodash.debounce"; ··· 3982 4181 sha512 = "CPSJw4ftjf517EhXZGGvTHHkYobo7ZCc0kvwUoOYcjfR2UVrI66RHj8MCrfAdEitdmFqbu2BYdYs8FHHZSb6iw=="; 3983 4182 }; 3984 4183 }; 4184 + "loose-envify-1.4.0" = { 4185 + name = "loose-envify"; 4186 + packageName = "loose-envify"; 4187 + version = "1.4.0"; 4188 + src = fetchurl { 4189 + url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"; 4190 + sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 4191 + }; 4192 + }; 3985 4193 "lru-cache-6.0.0" = { 3986 4194 name = "lru-cache"; 3987 4195 packageName = "lru-cache"; ··· 4198 4406 sha512 = "UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="; 4199 4407 }; 4200 4408 }; 4409 + "nanoid-3.3.4" = { 4410 + name = "nanoid"; 4411 + packageName = "nanoid"; 4412 + version = "3.3.4"; 4413 + src = fetchurl { 4414 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"; 4415 + sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; 4416 + }; 4417 + }; 4201 4418 "napi-build-utils-1.0.2" = { 4202 4419 name = "napi-build-utils"; 4203 4420 packageName = "napi-build-utils"; ··· 4231 4448 version = "0.4.0"; 4232 4449 src = fetchurl { 4233 4450 url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"; 4234 - sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b"; 4451 + sha512 = "O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="; 4235 4452 }; 4236 4453 }; 4237 4454 "node-releases-2.0.5" = { ··· 4396 4613 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 4397 4614 }; 4398 4615 }; 4616 + "pako-1.0.11" = { 4617 + name = "pako"; 4618 + packageName = "pako"; 4619 + version = "1.0.11"; 4620 + src = fetchurl { 4621 + url = "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz"; 4622 + sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="; 4623 + }; 4624 + }; 4399 4625 "parent-module-1.0.1" = { 4400 4626 name = "parent-module"; 4401 4627 packageName = "parent-module"; ··· 4522 4748 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 4523 4749 }; 4524 4750 }; 4525 - "pretty-format-27.5.1" = { 4751 + "pretty-format-28.1.1" = { 4526 4752 name = "pretty-format"; 4527 4753 packageName = "pretty-format"; 4528 - version = "27.5.1"; 4754 + version = "28.1.1"; 4529 4755 src = fetchurl { 4530 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz"; 4531 - sha512 = "Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="; 4532 - }; 4533 - }; 4534 - "pretty-format-28.1.0" = { 4535 - name = "pretty-format"; 4536 - packageName = "pretty-format"; 4537 - version = "28.1.0"; 4538 - src = fetchurl { 4539 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.0.tgz"; 4540 - sha512 = "79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q=="; 4756 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.1.tgz"; 4757 + sha512 = "wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw=="; 4541 4758 }; 4542 4759 }; 4543 4760 "process-nextick-args-2.0.1" = { ··· 4556 4773 src = fetchurl { 4557 4774 url = "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz"; 4558 4775 sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="; 4776 + }; 4777 + }; 4778 + "prop-types-15.8.1" = { 4779 + name = "prop-types"; 4780 + packageName = "prop-types"; 4781 + version = "15.8.1"; 4782 + src = fetchurl { 4783 + url = "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"; 4784 + sha512 = "oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="; 4785 + }; 4786 + }; 4787 + "prop-types-extra-1.1.1" = { 4788 + name = "prop-types-extra"; 4789 + packageName = "prop-types-extra"; 4790 + version = "1.1.1"; 4791 + src = fetchurl { 4792 + url = "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz"; 4793 + sha512 = "59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew=="; 4559 4794 }; 4560 4795 }; 4561 4796 "pump-3.0.0" = { ··· 4603 4838 sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 4604 4839 }; 4605 4840 }; 4606 - "react-is-17.0.2" = { 4841 + "react-18.2.0" = { 4842 + name = "react"; 4843 + packageName = "react"; 4844 + version = "18.2.0"; 4845 + src = fetchurl { 4846 + url = "https://registry.npmjs.org/react/-/react-18.2.0.tgz"; 4847 + sha512 = "/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ=="; 4848 + }; 4849 + }; 4850 + "react-bootstrap-2.4.0" = { 4851 + name = "react-bootstrap"; 4852 + packageName = "react-bootstrap"; 4853 + version = "2.4.0"; 4854 + src = fetchurl { 4855 + url = "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.4.0.tgz"; 4856 + sha512 = "dn599jNK1Fg5GGjJH+lQQDwELVzigh/MdusKpB/0el+sCjsO5MZDH5gRMmBjRhC+vb7VlCDr6OXffPIDSkNMLw=="; 4857 + }; 4858 + }; 4859 + "react-dom-18.2.0" = { 4860 + name = "react-dom"; 4861 + packageName = "react-dom"; 4862 + version = "18.2.0"; 4863 + src = fetchurl { 4864 + url = "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz"; 4865 + sha512 = "6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g=="; 4866 + }; 4867 + }; 4868 + "react-icons-4.4.0" = { 4869 + name = "react-icons"; 4870 + packageName = "react-icons"; 4871 + version = "4.4.0"; 4872 + src = fetchurl { 4873 + url = "https://registry.npmjs.org/react-icons/-/react-icons-4.4.0.tgz"; 4874 + sha512 = "fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg=="; 4875 + }; 4876 + }; 4877 + "react-is-16.13.1" = { 4607 4878 name = "react-is"; 4608 4879 packageName = "react-is"; 4609 - version = "17.0.2"; 4880 + version = "16.13.1"; 4610 4881 src = fetchurl { 4611 - url = "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"; 4612 - sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="; 4882 + url = "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"; 4883 + sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; 4613 4884 }; 4614 4885 }; 4615 - "react-is-18.1.0" = { 4886 + "react-is-18.2.0" = { 4616 4887 name = "react-is"; 4617 4888 packageName = "react-is"; 4618 - version = "18.1.0"; 4889 + version = "18.2.0"; 4890 + src = fetchurl { 4891 + url = "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz"; 4892 + sha512 = "xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="; 4893 + }; 4894 + }; 4895 + "react-lifecycles-compat-3.0.4" = { 4896 + name = "react-lifecycles-compat"; 4897 + packageName = "react-lifecycles-compat"; 4898 + version = "3.0.4"; 4899 + src = fetchurl { 4900 + url = "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz"; 4901 + sha512 = "fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="; 4902 + }; 4903 + }; 4904 + "react-transition-group-4.4.2" = { 4905 + name = "react-transition-group"; 4906 + packageName = "react-transition-group"; 4907 + version = "4.4.2"; 4619 4908 src = fetchurl { 4620 - url = "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz"; 4621 - sha512 = "Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg=="; 4909 + url = "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz"; 4910 + sha512 = "/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg=="; 4622 4911 }; 4623 4912 }; 4624 4913 "readable-stream-2.3.7" = { ··· 4726 5015 version = "2.1.1"; 4727 5016 src = fetchurl { 4728 5017 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 4729 - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 5018 + sha512 = "fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="; 4730 5019 }; 4731 5020 }; 4732 5021 "require-from-string-2.0.2" = { ··· 4846 5135 sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="; 4847 5136 }; 4848 5137 }; 5138 + "scheduler-0.23.0" = { 5139 + name = "scheduler"; 5140 + packageName = "scheduler"; 5141 + version = "0.23.0"; 5142 + src = fetchurl { 5143 + url = "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz"; 5144 + sha512 = "CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw=="; 5145 + }; 5146 + }; 4849 5147 "semver-6.3.0" = { 4850 5148 name = "semver"; 4851 5149 packageName = "semver"; ··· 4907 5205 src = fetchurl { 4908 5206 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 4909 5207 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 5208 + }; 5209 + }; 5210 + "setimmediate-1.0.5" = { 5211 + name = "setimmediate"; 5212 + packageName = "setimmediate"; 5213 + version = "1.0.5"; 5214 + src = fetchurl { 5215 + url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"; 5216 + sha512 = "MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="; 4910 5217 }; 4911 5218 }; 4912 5219 "setprototypeof-1.2.0" = { ··· 5440 5747 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 5441 5748 }; 5442 5749 }; 5443 - "typescript-4.7.2" = { 5750 + "typescript-4.7.4" = { 5444 5751 name = "typescript"; 5445 5752 packageName = "typescript"; 5446 - version = "4.7.2"; 5753 + version = "4.7.4"; 5754 + src = fetchurl { 5755 + url = "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz"; 5756 + sha512 = "C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ=="; 5757 + }; 5758 + }; 5759 + "uncontrollable-7.2.1" = { 5760 + name = "uncontrollable"; 5761 + packageName = "uncontrollable"; 5762 + version = "7.2.1"; 5447 5763 src = fetchurl { 5448 - url = "https://registry.npmjs.org/typescript/-/typescript-4.7.2.tgz"; 5449 - sha512 = "Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A=="; 5764 + url = "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz"; 5765 + sha512 = "svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ=="; 5450 5766 }; 5451 5767 }; 5452 5768 "unicode-canonical-property-names-ecmascript-2.0.0" = { ··· 5539 5855 sha512 = "HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw=="; 5540 5856 }; 5541 5857 }; 5858 + "validate.io-array-1.0.6" = { 5859 + name = "validate.io-array"; 5860 + packageName = "validate.io-array"; 5861 + version = "1.0.6"; 5862 + src = fetchurl { 5863 + url = "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz"; 5864 + sha512 = "DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg=="; 5865 + }; 5866 + }; 5867 + "validate.io-function-1.0.2" = { 5868 + name = "validate.io-function"; 5869 + packageName = "validate.io-function"; 5870 + version = "1.0.2"; 5871 + src = fetchurl { 5872 + url = "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz"; 5873 + sha512 = "LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ=="; 5874 + }; 5875 + }; 5876 + "validate.io-integer-1.0.5" = { 5877 + name = "validate.io-integer"; 5878 + packageName = "validate.io-integer"; 5879 + version = "1.0.5"; 5880 + src = fetchurl { 5881 + url = "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz"; 5882 + sha512 = "22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ=="; 5883 + }; 5884 + }; 5885 + "validate.io-integer-array-1.0.0" = { 5886 + name = "validate.io-integer-array"; 5887 + packageName = "validate.io-integer-array"; 5888 + version = "1.0.0"; 5889 + src = fetchurl { 5890 + url = "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz"; 5891 + sha512 = "mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA=="; 5892 + }; 5893 + }; 5894 + "validate.io-number-1.0.3" = { 5895 + name = "validate.io-number"; 5896 + packageName = "validate.io-number"; 5897 + version = "1.0.3"; 5898 + src = fetchurl { 5899 + url = "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz"; 5900 + sha512 = "kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg=="; 5901 + }; 5902 + }; 5542 5903 "walker-1.0.8" = { 5543 5904 name = "walker"; 5544 5905 packageName = "walker"; ··· 5548 5909 sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; 5549 5910 }; 5550 5911 }; 5912 + "warning-4.0.3" = { 5913 + name = "warning"; 5914 + packageName = "warning"; 5915 + version = "4.0.3"; 5916 + src = fetchurl { 5917 + url = "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz"; 5918 + sha512 = "rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w=="; 5919 + }; 5920 + }; 5551 5921 "which-2.0.2" = { 5552 5922 name = "which"; 5553 5923 packageName = "which"; ··· 5566 5936 sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 5567 5937 }; 5568 5938 }; 5569 - "winston-3.7.2" = { 5939 + "winston-3.8.0" = { 5570 5940 name = "winston"; 5571 5941 packageName = "winston"; 5572 - version = "3.7.2"; 5942 + version = "3.8.0"; 5573 5943 src = fetchurl { 5574 - url = "https://registry.npmjs.org/winston/-/winston-3.7.2.tgz"; 5575 - sha512 = "QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng=="; 5944 + url = "https://registry.npmjs.org/winston/-/winston-3.8.0.tgz"; 5945 + sha512 = "Iix1w8rIq2kBDkGvclO0db2CVOHYVamCIkVWcUbs567G9i2pdB+gvqLgDgxx4B4HXHYD6U4Zybh6ojepUOqcFQ=="; 5576 5946 }; 5577 5947 }; 5578 5948 "winston-syslog-2.5.0" = { ··· 5638 6008 sha512 = "ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw=="; 5639 6009 }; 5640 6010 }; 5641 - "ws-8.7.0" = { 6011 + "ws-8.8.0" = { 5642 6012 name = "ws"; 5643 6013 packageName = "ws"; 5644 - version = "8.7.0"; 6014 + version = "8.8.0"; 5645 6015 src = fetchurl { 5646 - url = "https://registry.npmjs.org/ws/-/ws-8.7.0.tgz"; 5647 - sha512 = "c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg=="; 6016 + url = "https://registry.npmjs.org/ws/-/ws-8.8.0.tgz"; 6017 + sha512 = "JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ=="; 5648 6018 }; 5649 6019 }; 5650 6020 "xtend-4.0.2" = { ··· 5692 6062 sha512 = "9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg=="; 5693 6063 }; 5694 6064 }; 5695 - "zigbee-herdsman-0.14.34" = { 6065 + "zigbee-herdsman-0.14.40" = { 5696 6066 name = "zigbee-herdsman"; 5697 6067 packageName = "zigbee-herdsman"; 5698 - version = "0.14.34"; 6068 + version = "0.14.40"; 5699 6069 src = fetchurl { 5700 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.34.tgz"; 5701 - sha512 = "ZUoIxfDeQzPIdYzEwYWiEH3ZwD3yRyddFmZCMPOAW5NXIK0lZU4UvfqSmHRUyRXTxtJWk6FTFsomwNBSwkk58Q=="; 6070 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.40.tgz"; 6071 + sha512 = "3ubz5awyiHSTCGlb5WXk5uNefa9xEhRcAWbKqXnQTfDlJpIIquOa08t0g3reUq+u4WM3GWOmFOcqIwe5hrTUrw=="; 5702 6072 }; 5703 6073 }; 5704 - "zigbee-herdsman-converters-14.0.533" = { 6074 + "zigbee-herdsman-converters-14.0.559" = { 5705 6075 name = "zigbee-herdsman-converters"; 5706 6076 packageName = "zigbee-herdsman-converters"; 5707 - version = "14.0.533"; 6077 + version = "14.0.559"; 5708 6078 src = fetchurl { 5709 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.533.tgz"; 5710 - sha512 = "3qUvAGX+MB0YjEiKPhq8ol6bWQpmixiOLAJ1hHu/ge5EfaoiyTR02LOFRV2zEBL6TCno1fP9ihPYQy37AfbKUg=="; 6079 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.559.tgz"; 6080 + sha512 = "MJhsKZBXtzwenleFWI7UUydHWflSm5DA/+lKxYw26UAdXpsZ3V9Jw0aUpFdu1KNbKNvFei/DafTICy7Y6oPYTQ=="; 5711 6081 }; 5712 6082 }; 5713 - "zigbee2mqtt-frontend-0.6.97" = { 6083 + "zigbee2mqtt-frontend-0.6.103" = { 5714 6084 name = "zigbee2mqtt-frontend"; 5715 6085 packageName = "zigbee2mqtt-frontend"; 5716 - version = "0.6.97"; 6086 + version = "0.6.103"; 5717 6087 src = fetchurl { 5718 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.97.tgz"; 5719 - sha512 = "cxbcyzrLMIFAS5w40vQuWDGGh4KJjXk8GovTsd5oO6/sNxXiJ3NQj9eBKwVPP14XoONMOSOyqf4YGjLJOfRiuQ=="; 6088 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.103.tgz"; 6089 + sha512 = "HQcZcfBUgGYbiyOkabumqa6rg60T3IGFiJRT4qI8m/XhohFTrn31NQY8b0eSWJn/udXTztkDZZ1l95Dx1Ldlaw=="; 5720 6090 }; 5721 6091 }; 5722 6092 }; 5723 6093 args = { 5724 6094 name = "zigbee2mqtt"; 5725 6095 packageName = "zigbee2mqtt"; 5726 - version = "1.25.2"; 6096 + version = "1.26.0"; 5727 6097 src = ./.; 5728 6098 dependencies = [ 5729 6099 sources."@ampproject/remapping-2.2.0" 5730 6100 sources."@babel/code-frame-7.16.7" 5731 6101 sources."@babel/compat-data-7.17.10" 5732 - (sources."@babel/core-7.18.2" // { 6102 + (sources."@babel/core-7.18.5" // { 5733 6103 dependencies = [ 5734 6104 sources."semver-6.3.0" 5735 6105 ]; ··· 5772 6142 sources."@babel/helper-wrap-function-7.16.8" 5773 6143 sources."@babel/helpers-7.18.2" 5774 6144 sources."@babel/highlight-7.17.12" 5775 - sources."@babel/parser-7.18.3" 6145 + sources."@babel/parser-7.18.5" 5776 6146 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" 5777 6147 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12" 5778 6148 sources."@babel/plugin-proposal-async-generator-functions-7.17.12" ··· 5852 6222 sources."@babel/preset-typescript-7.17.12" 5853 6223 sources."@babel/runtime-7.18.3" 5854 6224 sources."@babel/template-7.16.7" 5855 - sources."@babel/traverse-7.18.2" 5856 - sources."@babel/types-7.18.2" 6225 + sources."@babel/traverse-7.18.5" 6226 + sources."@babel/types-7.18.4" 5857 6227 sources."@bcoe/v8-coverage-0.2.3" 5858 6228 sources."@colors/colors-1.5.0" 5859 6229 sources."@dabh/diagnostics-2.0.3" ··· 5874 6244 ]; 5875 6245 }) 5876 6246 sources."@istanbuljs/schema-0.1.3" 5877 - (sources."@jest/console-28.1.0" // { 6247 + (sources."@jest/console-28.1.1" // { 5878 6248 dependencies = [ 5879 6249 sources."ansi-styles-4.3.0" 5880 6250 sources."chalk-4.1.2" ··· 5884 6254 sources."supports-color-7.2.0" 5885 6255 ]; 5886 6256 }) 5887 - (sources."@jest/core-28.1.0" // { 6257 + (sources."@jest/core-28.1.1" // { 5888 6258 dependencies = [ 5889 6259 sources."ansi-styles-4.3.0" 5890 6260 sources."chalk-4.1.2" 5891 6261 sources."color-convert-2.0.1" 5892 6262 sources."color-name-1.1.4" 5893 6263 sources."has-flag-4.0.0" 5894 - (sources."pretty-format-28.1.0" // { 5895 - dependencies = [ 5896 - sources."ansi-styles-5.2.0" 5897 - ]; 5898 - }) 5899 - sources."react-is-18.1.0" 5900 6264 sources."supports-color-7.2.0" 5901 6265 ]; 5902 6266 }) 5903 - sources."@jest/environment-28.1.0" 5904 - sources."@jest/expect-28.1.0" 5905 - sources."@jest/expect-utils-28.1.0" 5906 - sources."@jest/fake-timers-28.1.0" 5907 - sources."@jest/globals-28.1.0" 5908 - (sources."@jest/reporters-28.1.0" // { 6267 + sources."@jest/environment-28.1.1" 6268 + sources."@jest/expect-28.1.1" 6269 + sources."@jest/expect-utils-28.1.1" 6270 + sources."@jest/fake-timers-28.1.1" 6271 + sources."@jest/globals-28.1.1" 6272 + (sources."@jest/reporters-28.1.1" // { 5909 6273 dependencies = [ 5910 6274 sources."ansi-styles-4.3.0" 5911 6275 sources."chalk-4.1.2" ··· 5917 6281 }) 5918 6282 sources."@jest/schemas-28.0.2" 5919 6283 sources."@jest/source-map-28.0.2" 5920 - sources."@jest/test-result-28.1.0" 5921 - sources."@jest/test-sequencer-28.1.0" 5922 - (sources."@jest/transform-28.1.0" // { 6284 + sources."@jest/test-result-28.1.1" 6285 + sources."@jest/test-sequencer-28.1.1" 6286 + (sources."@jest/transform-28.1.1" // { 5923 6287 dependencies = [ 5924 6288 sources."ansi-styles-4.3.0" 5925 6289 sources."chalk-4.1.2" ··· 5929 6293 sources."supports-color-7.2.0" 5930 6294 ]; 5931 6295 }) 5932 - (sources."@jest/types-28.1.0" // { 6296 + (sources."@jest/types-28.1.1" // { 5933 6297 dependencies = [ 5934 6298 sources."ansi-styles-4.3.0" 5935 6299 sources."chalk-4.1.2" ··· 5947 6311 sources."@nodelib/fs.scandir-2.1.5" 5948 6312 sources."@nodelib/fs.stat-2.0.5" 5949 6313 sources."@nodelib/fs.walk-1.2.8" 6314 + sources."@popperjs/core-2.11.5" 6315 + sources."@react-aria/ssr-3.2.0" 6316 + sources."@restart/hooks-0.4.7" 6317 + sources."@restart/ui-1.2.0" 6318 + sources."@rjsf/bootstrap-5-https://github.com/nurikk/fileshare/blob/main/rjsf-bootstrap-5-4.2.0.tgz?raw=true" 6319 + (sources."@rjsf/core-4.2.0" // { 6320 + dependencies = [ 6321 + sources."ajv-6.12.6" 6322 + sources."json-schema-traverse-0.4.1" 6323 + sources."react-is-16.13.1" 6324 + ]; 6325 + }) 5950 6326 sources."@serialport/binding-abstract-9.2.3" 5951 6327 sources."@serialport/binding-mock-9.2.4" 5952 6328 sources."@serialport/bindings-9.2.8" ··· 5973 6349 sources."@types/istanbul-lib-coverage-2.0.4" 5974 6350 sources."@types/istanbul-lib-report-3.0.0" 5975 6351 sources."@types/istanbul-reports-3.0.1" 5976 - sources."@types/jest-27.5.1" 6352 + sources."@types/jest-28.1.3" 5977 6353 sources."@types/js-yaml-4.0.5" 5978 6354 sources."@types/json-schema-7.0.11" 5979 6355 sources."@types/minimatch-3.0.5" 5980 6356 sources."@types/node-17.0.36" 5981 6357 sources."@types/object-assign-deep-0.4.0" 5982 6358 sources."@types/prettier-2.6.3" 6359 + sources."@types/prop-types-15.7.5" 6360 + sources."@types/react-18.0.14" 6361 + sources."@types/react-transition-group-4.4.4" 5983 6362 sources."@types/rimraf-3.0.2" 6363 + sources."@types/scheduler-0.16.2" 5984 6364 sources."@types/stack-utils-2.0.1" 6365 + sources."@types/warning-3.0.0" 5985 6366 sources."@types/ws-8.5.3" 5986 6367 sources."@types/yargs-17.0.10" 5987 6368 sources."@types/yargs-parser-21.0.0" 5988 - sources."@typescript-eslint/eslint-plugin-5.26.0" 5989 - sources."@typescript-eslint/parser-5.26.0" 5990 - sources."@typescript-eslint/scope-manager-5.26.0" 5991 - sources."@typescript-eslint/type-utils-5.26.0" 5992 - sources."@typescript-eslint/types-5.26.0" 5993 - sources."@typescript-eslint/typescript-estree-5.26.0" 5994 - sources."@typescript-eslint/utils-5.26.0" 5995 - sources."@typescript-eslint/visitor-keys-5.26.0" 6369 + sources."@typescript-eslint/eslint-plugin-5.29.0" 6370 + sources."@typescript-eslint/parser-5.29.0" 6371 + sources."@typescript-eslint/scope-manager-5.29.0" 6372 + sources."@typescript-eslint/type-utils-5.29.0" 6373 + sources."@typescript-eslint/types-5.29.0" 6374 + sources."@typescript-eslint/typescript-estree-5.29.0" 6375 + sources."@typescript-eslint/utils-5.29.0" 6376 + sources."@typescript-eslint/visitor-keys-5.29.0" 5996 6377 sources."acorn-8.7.1" 5997 6378 sources."acorn-jsx-5.3.2" 5998 6379 sources."agent-base-6.0.2" ··· 6014 6395 sources."async-3.2.3" 6015 6396 sources."asynckit-0.4.0" 6016 6397 sources."axios-0.27.2" 6017 - (sources."babel-jest-28.1.0" // { 6398 + (sources."babel-jest-28.1.1" // { 6018 6399 dependencies = [ 6019 6400 sources."ansi-styles-4.3.0" 6020 6401 sources."chalk-4.1.2" ··· 6026 6407 }) 6027 6408 sources."babel-plugin-dynamic-import-node-2.3.3" 6028 6409 sources."babel-plugin-istanbul-6.1.1" 6029 - sources."babel-plugin-jest-hoist-28.0.2" 6410 + sources."babel-plugin-jest-hoist-28.1.1" 6030 6411 (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 6031 6412 dependencies = [ 6032 6413 sources."semver-6.3.0" ··· 6035 6416 sources."babel-plugin-polyfill-corejs3-0.5.2" 6036 6417 sources."babel-plugin-polyfill-regenerator-0.3.1" 6037 6418 sources."babel-preset-current-node-syntax-1.0.1" 6038 - sources."babel-preset-jest-28.0.2" 6419 + sources."babel-preset-jest-28.1.1" 6039 6420 sources."balanced-match-1.0.2" 6040 6421 sources."base64-js-1.5.1" 6041 6422 sources."bind-decorator-1.0.11" ··· 6058 6439 sources."chownr-1.1.4" 6059 6440 sources."ci-info-3.3.1" 6060 6441 sources."cjs-module-lexer-1.2.2" 6442 + sources."classnames-2.3.1" 6061 6443 sources."cliui-7.0.4" 6062 6444 sources."co-4.6.0" 6063 6445 sources."code-point-at-1.1.0" ··· 6073 6455 sources."leven-2.1.0" 6074 6456 ]; 6075 6457 }) 6458 + sources."compute-gcd-1.2.1" 6459 + sources."compute-lcm-1.1.2" 6076 6460 sources."concat-map-0.0.1" 6077 6461 sources."concat-stream-2.0.0" 6078 6462 (sources."connect-gzip-static-2.1.1" // { ··· 6083 6467 }) 6084 6468 sources."console-control-strings-1.1.0" 6085 6469 sources."convert-source-map-1.8.0" 6086 - sources."core-js-3.22.7" 6470 + sources."core-js-3.23.3" 6087 6471 (sources."core-js-compat-3.22.7" // { 6088 6472 dependencies = [ 6089 6473 sources."semver-7.0.0" 6090 6474 ]; 6091 6475 }) 6476 + sources."core-js-pure-3.23.1" 6092 6477 sources."core-util-is-1.0.3" 6093 6478 sources."cross-spawn-7.0.3" 6479 + sources."csstype-3.1.0" 6094 6480 sources."debounce-1.2.1" 6095 6481 sources."debug-4.3.4" 6096 6482 sources."decompress-response-6.0.0" ··· 6103 6489 sources."delayed-stream-1.0.0" 6104 6490 sources."delegates-1.0.0" 6105 6491 sources."depd-2.0.0" 6492 + sources."dequal-2.0.2" 6106 6493 sources."destroy-1.2.0" 6107 6494 sources."detect-libc-2.0.1" 6108 6495 sources."detect-newline-3.1.0" 6109 - sources."diff-sequences-27.5.1" 6496 + sources."diff-sequences-28.1.1" 6110 6497 sources."dir-glob-3.0.1" 6111 6498 sources."doctrine-3.0.0" 6499 + sources."dom-helpers-5.2.1" 6112 6500 sources."duplexify-4.1.2" 6113 6501 sources."ee-first-1.1.1" 6114 6502 sources."electron-to-chromium-1.4.141" ··· 6121 6509 sources."escalade-3.1.1" 6122 6510 sources."escape-html-1.0.3" 6123 6511 sources."escape-string-regexp-1.0.5" 6124 - (sources."eslint-8.16.0" // { 6512 + (sources."eslint-8.18.0" // { 6125 6513 dependencies = [ 6126 6514 sources."ajv-6.12.6" 6127 6515 sources."ansi-styles-4.3.0" ··· 6139 6527 ]; 6140 6528 }) 6141 6529 sources."eslint-config-google-0.14.0" 6142 - sources."eslint-plugin-jest-26.4.2" 6530 + sources."eslint-plugin-jest-26.5.3" 6143 6531 sources."eslint-scope-5.1.1" 6144 6532 (sources."eslint-utils-3.0.0" // { 6145 6533 dependencies = [ ··· 6165 6553 sources."execa-5.1.1" 6166 6554 sources."exit-0.1.2" 6167 6555 sources."expand-template-2.0.3" 6168 - (sources."expect-28.1.0" // { 6169 - dependencies = [ 6170 - sources."ansi-styles-4.3.0" 6171 - sources."chalk-4.1.2" 6172 - sources."color-convert-2.0.1" 6173 - sources."color-name-1.1.4" 6174 - sources."diff-sequences-28.0.2" 6175 - sources."has-flag-4.0.0" 6176 - sources."jest-diff-28.1.0" 6177 - sources."jest-matcher-utils-28.1.0" 6178 - (sources."pretty-format-28.1.0" // { 6179 - dependencies = [ 6180 - sources."ansi-styles-5.2.0" 6181 - ]; 6182 - }) 6183 - sources."react-is-18.1.0" 6184 - sources."supports-color-7.2.0" 6185 - ]; 6186 - }) 6556 + sources."expect-28.1.1" 6187 6557 sources."fast-deep-equal-3.1.3" 6188 6558 (sources."fast-glob-3.2.11" // { 6189 6559 dependencies = [ ··· 6251 6621 sources."humanize-duration-3.27.2" 6252 6622 sources."ieee754-1.2.1" 6253 6623 sources."ignore-5.2.0" 6624 + sources."immediate-3.0.6" 6254 6625 (sources."import-fresh-3.3.0" // { 6255 6626 dependencies = [ 6256 6627 sources."resolve-from-4.0.0" ··· 6261 6632 sources."inflight-1.0.6" 6262 6633 sources."inherits-2.0.4" 6263 6634 sources."ini-1.3.8" 6635 + sources."invariant-2.2.4" 6264 6636 sources."is-arrayish-0.2.1" 6265 6637 sources."is-core-module-2.9.0" 6266 6638 sources."is-extglob-2.1.1" ··· 6285 6657 }) 6286 6658 sources."istanbul-lib-source-maps-4.0.1" 6287 6659 sources."istanbul-reports-3.1.4" 6288 - sources."jest-28.1.0" 6660 + sources."jest-28.1.1" 6289 6661 sources."jest-changed-files-28.0.2" 6290 - (sources."jest-circus-28.1.0" // { 6662 + (sources."jest-circus-28.1.1" // { 6291 6663 dependencies = [ 6292 6664 sources."ansi-styles-4.3.0" 6293 6665 sources."chalk-4.1.2" 6294 6666 sources."color-convert-2.0.1" 6295 6667 sources."color-name-1.1.4" 6296 - sources."diff-sequences-28.0.2" 6297 6668 sources."has-flag-4.0.0" 6298 - sources."jest-diff-28.1.0" 6299 - sources."jest-matcher-utils-28.1.0" 6300 - (sources."pretty-format-28.1.0" // { 6301 - dependencies = [ 6302 - sources."ansi-styles-5.2.0" 6303 - ]; 6304 - }) 6305 - sources."react-is-18.1.0" 6306 6669 sources."supports-color-7.2.0" 6307 6670 ]; 6308 6671 }) 6309 - (sources."jest-cli-28.1.0" // { 6672 + (sources."jest-cli-28.1.1" // { 6310 6673 dependencies = [ 6311 6674 sources."ansi-styles-4.3.0" 6312 6675 sources."chalk-4.1.2" ··· 6316 6679 sources."supports-color-7.2.0" 6317 6680 ]; 6318 6681 }) 6319 - (sources."jest-config-28.1.0" // { 6682 + (sources."jest-config-28.1.1" // { 6320 6683 dependencies = [ 6321 6684 sources."ansi-styles-4.3.0" 6322 6685 sources."chalk-4.1.2" 6323 6686 sources."color-convert-2.0.1" 6324 6687 sources."color-name-1.1.4" 6325 6688 sources."has-flag-4.0.0" 6326 - (sources."pretty-format-28.1.0" // { 6327 - dependencies = [ 6328 - sources."ansi-styles-5.2.0" 6329 - ]; 6330 - }) 6331 - sources."react-is-18.1.0" 6332 6689 sources."supports-color-7.2.0" 6333 6690 ]; 6334 6691 }) 6335 - (sources."jest-diff-27.5.1" // { 6692 + (sources."jest-diff-28.1.1" // { 6336 6693 dependencies = [ 6337 6694 sources."ansi-styles-4.3.0" 6338 6695 sources."chalk-4.1.2" 6339 6696 sources."color-convert-2.0.1" 6340 6697 sources."color-name-1.1.4" 6341 6698 sources."has-flag-4.0.0" 6342 - sources."jest-get-type-27.5.1" 6343 6699 sources."supports-color-7.2.0" 6344 6700 ]; 6345 6701 }) 6346 - sources."jest-docblock-28.0.2" 6347 - (sources."jest-each-28.1.0" // { 6702 + sources."jest-docblock-28.1.1" 6703 + (sources."jest-each-28.1.1" // { 6348 6704 dependencies = [ 6349 6705 sources."ansi-styles-4.3.0" 6350 6706 sources."chalk-4.1.2" 6351 6707 sources."color-convert-2.0.1" 6352 6708 sources."color-name-1.1.4" 6353 6709 sources."has-flag-4.0.0" 6354 - (sources."pretty-format-28.1.0" // { 6355 - dependencies = [ 6356 - sources."ansi-styles-5.2.0" 6357 - ]; 6358 - }) 6359 - sources."react-is-18.1.0" 6360 6710 sources."supports-color-7.2.0" 6361 6711 ]; 6362 6712 }) 6363 - sources."jest-environment-node-28.1.0" 6713 + sources."jest-environment-node-28.1.1" 6364 6714 sources."jest-get-type-28.0.2" 6365 - sources."jest-haste-map-28.1.0" 6366 - (sources."jest-leak-detector-28.1.0" // { 6367 - dependencies = [ 6368 - sources."ansi-styles-5.2.0" 6369 - sources."pretty-format-28.1.0" 6370 - sources."react-is-18.1.0" 6371 - ]; 6372 - }) 6373 - (sources."jest-matcher-utils-27.5.1" // { 6715 + sources."jest-haste-map-28.1.1" 6716 + sources."jest-leak-detector-28.1.1" 6717 + (sources."jest-matcher-utils-28.1.1" // { 6374 6718 dependencies = [ 6375 6719 sources."ansi-styles-4.3.0" 6376 6720 sources."chalk-4.1.2" 6377 6721 sources."color-convert-2.0.1" 6378 6722 sources."color-name-1.1.4" 6379 6723 sources."has-flag-4.0.0" 6380 - sources."jest-get-type-27.5.1" 6381 6724 sources."supports-color-7.2.0" 6382 6725 ]; 6383 6726 }) 6384 - (sources."jest-message-util-28.1.0" // { 6727 + (sources."jest-message-util-28.1.1" // { 6385 6728 dependencies = [ 6386 6729 sources."ansi-styles-4.3.0" 6387 6730 sources."chalk-4.1.2" 6388 6731 sources."color-convert-2.0.1" 6389 6732 sources."color-name-1.1.4" 6390 6733 sources."has-flag-4.0.0" 6391 - (sources."pretty-format-28.1.0" // { 6392 - dependencies = [ 6393 - sources."ansi-styles-5.2.0" 6394 - ]; 6395 - }) 6396 - sources."react-is-18.1.0" 6397 6734 sources."supports-color-7.2.0" 6398 6735 ]; 6399 6736 }) 6400 - sources."jest-mock-28.1.0" 6737 + sources."jest-mock-28.1.1" 6401 6738 sources."jest-pnp-resolver-1.2.2" 6402 6739 sources."jest-regex-util-28.0.2" 6403 - (sources."jest-resolve-28.1.0" // { 6740 + (sources."jest-resolve-28.1.1" // { 6404 6741 dependencies = [ 6405 6742 sources."ansi-styles-4.3.0" 6406 6743 sources."chalk-4.1.2" ··· 6410 6747 sources."supports-color-7.2.0" 6411 6748 ]; 6412 6749 }) 6413 - sources."jest-resolve-dependencies-28.1.0" 6414 - (sources."jest-runner-28.1.0" // { 6750 + sources."jest-resolve-dependencies-28.1.1" 6751 + (sources."jest-runner-28.1.1" // { 6415 6752 dependencies = [ 6416 6753 sources."ansi-styles-4.3.0" 6417 6754 sources."chalk-4.1.2" ··· 6422 6759 sources."supports-color-7.2.0" 6423 6760 ]; 6424 6761 }) 6425 - (sources."jest-runtime-28.1.0" // { 6762 + (sources."jest-runtime-28.1.1" // { 6426 6763 dependencies = [ 6427 6764 sources."ansi-styles-4.3.0" 6428 6765 sources."chalk-4.1.2" ··· 6432 6769 sources."supports-color-7.2.0" 6433 6770 ]; 6434 6771 }) 6435 - (sources."jest-snapshot-28.1.0" // { 6772 + (sources."jest-snapshot-28.1.1" // { 6436 6773 dependencies = [ 6437 6774 sources."ansi-styles-4.3.0" 6438 6775 sources."chalk-4.1.2" 6439 6776 sources."color-convert-2.0.1" 6440 6777 sources."color-name-1.1.4" 6441 - sources."diff-sequences-28.0.2" 6442 6778 sources."has-flag-4.0.0" 6443 - sources."jest-diff-28.1.0" 6444 - sources."jest-matcher-utils-28.1.0" 6445 - (sources."pretty-format-28.1.0" // { 6446 - dependencies = [ 6447 - sources."ansi-styles-5.2.0" 6448 - ]; 6449 - }) 6450 - sources."react-is-18.1.0" 6451 6779 sources."supports-color-7.2.0" 6452 6780 ]; 6453 6781 }) 6454 - (sources."jest-util-28.1.0" // { 6782 + (sources."jest-util-28.1.1" // { 6455 6783 dependencies = [ 6456 6784 sources."ansi-styles-4.3.0" 6457 6785 sources."chalk-4.1.2" ··· 6461 6789 sources."supports-color-7.2.0" 6462 6790 ]; 6463 6791 }) 6464 - (sources."jest-validate-28.1.0" // { 6792 + (sources."jest-validate-28.1.1" // { 6465 6793 dependencies = [ 6466 6794 sources."ansi-styles-4.3.0" 6467 6795 sources."camelcase-6.3.0" ··· 6469 6797 sources."color-convert-2.0.1" 6470 6798 sources."color-name-1.1.4" 6471 6799 sources."has-flag-4.0.0" 6472 - (sources."pretty-format-28.1.0" // { 6473 - dependencies = [ 6474 - sources."ansi-styles-5.2.0" 6475 - ]; 6476 - }) 6477 - sources."react-is-18.1.0" 6478 6800 sources."supports-color-7.2.0" 6479 6801 ]; 6480 6802 }) 6481 - (sources."jest-watcher-28.1.0" // { 6803 + (sources."jest-watcher-28.1.1" // { 6482 6804 dependencies = [ 6483 6805 sources."ansi-styles-4.3.0" 6484 6806 sources."chalk-4.1.2" ··· 6488 6810 sources."supports-color-7.2.0" 6489 6811 ]; 6490 6812 }) 6491 - (sources."jest-worker-28.1.0" // { 6813 + (sources."jest-worker-28.1.1" // { 6492 6814 dependencies = [ 6493 6815 sources."has-flag-4.0.0" 6494 6816 sources."supports-color-8.1.1" ··· 6499 6821 sources."js-yaml-4.1.0" 6500 6822 sources."jsesc-2.5.2" 6501 6823 sources."json-parse-even-better-errors-2.3.1" 6824 + sources."json-schema-compare-0.2.2" 6825 + sources."json-schema-merge-allof-0.6.0" 6502 6826 sources."json-schema-traverse-1.0.0" 6503 6827 sources."json-stable-stringify-without-jsonify-1.0.1" 6504 6828 sources."json5-2.2.1" 6829 + sources."jsonpointer-5.0.0" 6830 + (sources."jszip-3.10.0" // { 6831 + dependencies = [ 6832 + sources."readable-stream-2.3.7" 6833 + sources."string_decoder-1.1.1" 6834 + ]; 6835 + }) 6505 6836 sources."kleur-3.0.3" 6506 6837 sources."kuler-2.0.0" 6507 6838 sources."leven-3.1.0" 6508 6839 sources."levn-0.4.1" 6840 + sources."lie-3.3.0" 6509 6841 sources."lines-and-columns-1.2.4" 6510 6842 sources."locate-path-5.0.0" 6843 + sources."lodash-4.17.21" 6511 6844 sources."lodash.debounce-4.0.8" 6512 6845 sources."lodash.merge-4.6.2" 6513 6846 sources."logform-2.4.0" 6847 + sources."loose-envify-1.4.0" 6514 6848 sources."lru-cache-6.0.0" 6515 6849 (sources."make-dir-3.1.0" // { 6516 6850 dependencies = [ ··· 6541 6875 sources."ms-2.1.2" 6542 6876 sources."mz-2.7.0" 6543 6877 sources."nan-2.16.0" 6878 + sources."nanoid-3.3.4" 6544 6879 sources."napi-build-utils-1.0.2" 6545 6880 sources."natural-compare-1.4.0" 6546 6881 sources."node-abi-3.22.0" ··· 6563 6898 sources."p-limit-2.3.0" 6564 6899 sources."p-locate-4.1.0" 6565 6900 sources."p-try-2.2.0" 6901 + sources."pako-1.0.11" 6566 6902 sources."parent-module-1.0.1" 6567 6903 sources."parse-json-5.2.0" 6568 6904 sources."parseurl-1.3.3" ··· 6577 6913 sources."pkg-dir-4.2.0" 6578 6914 sources."prebuild-install-7.1.0" 6579 6915 sources."prelude-ls-1.2.1" 6580 - (sources."pretty-format-27.5.1" // { 6916 + (sources."pretty-format-28.1.1" // { 6581 6917 dependencies = [ 6582 6918 sources."ansi-styles-5.2.0" 6583 6919 ]; 6584 6920 }) 6585 6921 sources."process-nextick-args-2.0.1" 6586 6922 sources."prompts-2.4.2" 6923 + (sources."prop-types-15.8.1" // { 6924 + dependencies = [ 6925 + sources."react-is-16.13.1" 6926 + ]; 6927 + }) 6928 + (sources."prop-types-extra-1.1.1" // { 6929 + dependencies = [ 6930 + sources."react-is-16.13.1" 6931 + ]; 6932 + }) 6587 6933 sources."pump-3.0.0" 6588 6934 sources."punycode-2.1.1" 6589 6935 sources."queue-microtask-1.2.3" ··· 6593 6939 sources."strip-json-comments-2.0.1" 6594 6940 ]; 6595 6941 }) 6596 - sources."react-is-17.0.2" 6942 + sources."react-18.2.0" 6943 + sources."react-bootstrap-2.4.0" 6944 + sources."react-dom-18.2.0" 6945 + sources."react-icons-4.4.0" 6946 + sources."react-is-18.2.0" 6947 + sources."react-lifecycles-compat-3.0.4" 6948 + sources."react-transition-group-4.4.2" 6597 6949 sources."readable-stream-3.6.0" 6598 6950 sources."regenerate-1.4.2" 6599 6951 sources."regenerate-unicode-properties-10.0.1" ··· 6620 6972 sources."run-parallel-1.2.0" 6621 6973 sources."safe-buffer-5.1.2" 6622 6974 sources."safe-stable-stringify-2.3.1" 6975 + sources."scheduler-0.23.0" 6623 6976 sources."semver-7.3.7" 6624 6977 (sources."send-0.18.0" // { 6625 6978 dependencies = [ ··· 6634 6987 sources."serialport-9.2.8" 6635 6988 sources."serve-static-1.15.0" 6636 6989 sources."set-blocking-2.0.0" 6990 + sources."setimmediate-1.0.5" 6637 6991 sources."setprototypeof-1.2.0" 6638 6992 sources."shebang-command-2.0.0" 6639 6993 sources."shebang-regex-3.0.0" ··· 6702 7056 sources."type-detect-4.0.8" 6703 7057 sources."type-fest-0.21.3" 6704 7058 sources."typedarray-0.0.6" 6705 - sources."typescript-4.7.2" 7059 + sources."typescript-4.7.4" 7060 + sources."uncontrollable-7.2.1" 6706 7061 sources."unicode-canonical-property-names-ecmascript-2.0.0" 6707 7062 sources."unicode-match-property-ecmascript-2.0.0" 6708 7063 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 6713 7068 sources."util-deprecate-1.0.2" 6714 7069 sources."v8-compile-cache-2.3.0" 6715 7070 sources."v8-to-istanbul-9.0.0" 7071 + sources."validate.io-array-1.0.6" 7072 + sources."validate.io-function-1.0.2" 7073 + sources."validate.io-integer-1.0.5" 7074 + sources."validate.io-integer-array-1.0.0" 7075 + sources."validate.io-number-1.0.3" 6716 7076 sources."walker-1.0.8" 7077 + sources."warning-4.0.3" 6717 7078 sources."which-2.0.2" 6718 7079 sources."wide-align-1.1.5" 6719 - sources."winston-3.7.2" 7080 + sources."winston-3.8.0" 6720 7081 sources."winston-syslog-2.5.0" 6721 7082 sources."winston-transport-4.5.0" 6722 7083 sources."word-wrap-1.2.3" ··· 6729 7090 }) 6730 7091 sources."wrappy-1.0.2" 6731 7092 sources."write-file-atomic-4.0.1" 6732 - sources."ws-8.7.0" 7093 + sources."ws-8.8.0" 6733 7094 sources."xtend-4.0.2" 6734 7095 sources."y18n-5.0.8" 6735 7096 sources."yallist-4.0.0" 6736 7097 sources."yargs-17.5.1" 6737 7098 sources."yargs-parser-21.0.1" 6738 - sources."zigbee-herdsman-0.14.34" 6739 - sources."zigbee-herdsman-converters-14.0.533" 6740 - sources."zigbee2mqtt-frontend-0.6.97" 7099 + sources."zigbee-herdsman-0.14.40" 7100 + sources."zigbee-herdsman-converters-14.0.559" 7101 + sources."zigbee2mqtt-frontend-0.6.103" 6741 7102 ]; 6742 7103 buildInputs = globalBuildInputs; 6743 7104 meta = {
+3 -3
pkgs/servers/zigbee2mqtt/update.sh
··· 13 13 14 14 ZIGBEE2MQTT=https://github.com/Koenkk/zigbee2mqtt/raw/$TARGET_VERSION 15 15 curl -LO $ZIGBEE2MQTT/package.json 16 - curl -LO $ZIGBEE2MQTT/npm-shrinkwrap.json 16 + curl -LO $ZIGBEE2MQTT/package-lock.json 17 17 18 18 node2nix \ 19 19 --composition node.nix \ 20 - --lock npm-shrinkwrap.json \ 20 + --lock package-lock.json \ 21 21 --development \ 22 22 --no-copy-node-env \ 23 23 --node-env ../../development/node-packages/node-env.nix \ 24 24 --nodejs-14 \ 25 25 --output node-packages.nix 26 26 27 - rm package.json npm-shrinkwrap.json 27 + rm package.json package-lock.json 28 28 29 29 ( 30 30 cd ../../../
+2 -2
pkgs/tools/networking/godns/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "godns"; 5 - version = "2.8.3"; 5 + version = "2.8.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "TimothyYe"; 9 9 repo = "godns"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-EQ296oFb6C/xA9Ww45PbPyvQQjWxxd/9aDDcfZ4uFcw="; 11 + sha256 = "sha256-P3jmpyk53+N/7BhPfLmCiXOoGJv35eZcvrxGqejYin8="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-PGqknRGtN0XRGPnAsWzQrlJZG5BzQIhlSysGefkxysE=";
+3 -3
pkgs/tools/nix/alejandra/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "alejandra"; 10 - version = "1.5.0"; 10 + version = "2.0.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "kamadorueda"; 14 14 repo = "alejandra"; 15 15 rev = version; 16 - sha256 = "sha256-A0ruEdPeKIzGYxyXNACnzaKtQUVc30s2ExTUzdFTcWM="; 16 + sha256 = "sha256-imWi48JxT7l/1toc7NElP1/CBEbChTQ3n0gjBz6L7so="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-BmpFyVF2fxV3rExI7rpOQlVwHEJNlof44dnUshaO/no="; 19 + cargoSha256 = "sha256-pcNU7Wk98LQuRg/ItsJ+dxXcSdYROJVYifF74jIrqEo="; 20 20 21 21 passthru.tests = { 22 22 version = testers.testVersion { package = alejandra; };
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.2.4" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.2.6"
+30 -30
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: ed772a23efa7e2a7d7ae6417939e900c66950fd9 4 - ref: refs/tags/6.2.4 3 + revision: cb251272d8937b0b5bc92c5194a3617392b50625 4 + ref: refs/tags/6.2.6 5 5 specs: 6 - metasploit-framework (6.2.4) 6 + metasploit-framework (6.2.6) 7 7 actionpack (~> 6.0) 8 8 activerecord (~> 6.0) 9 9 activesupport (~> 6.0) ··· 100 100 remote: https://rubygems.org/ 101 101 specs: 102 102 Ascii85 (1.1.0) 103 - actionpack (6.1.6) 104 - actionview (= 6.1.6) 105 - activesupport (= 6.1.6) 103 + actionpack (6.1.6.1) 104 + actionview (= 6.1.6.1) 105 + activesupport (= 6.1.6.1) 106 106 rack (~> 2.0, >= 2.0.9) 107 107 rack-test (>= 0.6.3) 108 108 rails-dom-testing (~> 2.0) 109 109 rails-html-sanitizer (~> 1.0, >= 1.2.0) 110 - actionview (6.1.6) 111 - activesupport (= 6.1.6) 110 + actionview (6.1.6.1) 111 + activesupport (= 6.1.6.1) 112 112 builder (~> 3.1) 113 113 erubi (~> 1.4) 114 114 rails-dom-testing (~> 2.0) 115 115 rails-html-sanitizer (~> 1.1, >= 1.2.0) 116 - activemodel (6.1.6) 117 - activesupport (= 6.1.6) 118 - activerecord (6.1.6) 119 - activemodel (= 6.1.6) 120 - activesupport (= 6.1.6) 121 - activesupport (6.1.6) 116 + activemodel (6.1.6.1) 117 + activesupport (= 6.1.6.1) 118 + activerecord (6.1.6.1) 119 + activemodel (= 6.1.6.1) 120 + activesupport (= 6.1.6.1) 121 + activesupport (6.1.6.1) 122 122 concurrent-ruby (~> 1.0, >= 1.0.2) 123 123 i18n (>= 1.6, < 2) 124 124 minitest (>= 5.1) ··· 130 130 arel-helpers (2.14.0) 131 131 activerecord (>= 3.1.0, < 8) 132 132 aws-eventstream (1.2.0) 133 - aws-partitions (1.601.0) 133 + aws-partitions (1.605.0) 134 134 aws-sdk-core (3.131.2) 135 135 aws-eventstream (~> 1, >= 1.0.2) 136 136 aws-partitions (~> 1, >= 1.525.0) 137 137 aws-sigv4 (~> 1.1) 138 138 jmespath (~> 1, >= 1.6.1) 139 - aws-sdk-ec2 (1.319.0) 139 + aws-sdk-ec2 (1.321.0) 140 140 aws-sdk-core (~> 3, >= 3.127.0) 141 141 aws-sigv4 (~> 1.1) 142 142 aws-sdk-iam (1.69.0) ··· 203 203 domain_name (~> 0.5) 204 204 http_parser.rb (0.8.0) 205 205 httpclient (2.8.3) 206 - i18n (1.10.0) 206 + i18n (1.12.0) 207 207 concurrent-ruby (~> 1.0) 208 208 io-console (0.5.11) 209 209 irb (1.3.6) ··· 252 252 metasploit_payloads-mettle (1.0.18) 253 253 method_source (1.0.0) 254 254 mini_portile2 (2.8.0) 255 - minitest (5.16.1) 255 + minitest (5.16.2) 256 256 mqtt (0.5.0) 257 - msgpack (1.5.2) 257 + msgpack (1.5.3) 258 258 multi_json (1.15.0) 259 259 mustermann (1.1.1) 260 260 ruby2_keywords (~> 0.0.1) ··· 266 266 digest 267 267 net-protocol 268 268 timeout 269 - net-ssh (6.1.0) 269 + net-ssh (7.0.1) 270 270 network_interface (0.0.2) 271 271 nexpose (7.3.0) 272 272 nio4r (2.5.8) 273 - nokogiri (1.13.6) 273 + nokogiri (1.13.7) 274 274 mini_portile2 (~> 2.8.0) 275 275 racc (~> 1.4) 276 276 nori (2.6.0) 277 - octokit (4.25.0) 277 + octokit (5.1.0) 278 278 faraday (>= 1, < 3) 279 279 sawyer (~> 0.9) 280 280 openssl-ccm (1.2.2) ··· 295 295 puma (5.6.4) 296 296 nio4r (~> 2.0) 297 297 racc (1.6.0) 298 - rack (2.2.3.1) 298 + rack (2.2.4) 299 299 rack-protection (2.2.0) 300 300 rack 301 - rack-test (2.0.0) 301 + rack-test (2.0.2) 302 302 rack (>= 1.3) 303 303 rails-dom-testing (2.0.3) 304 304 activesupport (>= 4.2.0) 305 305 nokogiri (>= 1.6) 306 306 rails-html-sanitizer (1.4.3) 307 307 loofah (~> 2.3) 308 - railties (6.1.6) 309 - actionpack (= 6.1.6) 310 - activesupport (= 6.1.6) 308 + railties (6.1.6.1) 309 + actionpack (= 6.1.6.1) 310 + activesupport (= 6.1.6.1) 311 311 method_source 312 312 rake (>= 12.2) 313 313 thor (~> 1.0) ··· 331 331 metasm 332 332 rex-arch 333 333 rex-text 334 - rex-exploitation (0.1.30) 334 + rex-exploitation (0.1.32) 335 335 jsobfu 336 336 metasm 337 337 rex-arch ··· 363 363 rex-socket 364 364 rex-text 365 365 rex-struct2 (0.1.3) 366 - rex-text (0.2.37) 366 + rex-text (0.2.38) 367 367 rex-zip (0.1.4) 368 368 rex-text 369 369 rexml (3.2.5) ··· 371 371 ruby-macho (3.0.0) 372 372 ruby-rc4 (0.1.5) 373 373 ruby2_keywords (0.0.5) 374 - ruby_smb (3.1.4) 374 + ruby_smb (3.1.6) 375 375 bindata 376 376 openssl-ccm 377 377 openssl-cmac
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 15 15 }; 16 16 in stdenv.mkDerivation rec { 17 17 pname = "metasploit-framework"; 18 - version = "6.2.4"; 18 + version = "6.2.6"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "rapid7"; 22 22 repo = "metasploit-framework"; 23 23 rev = version; 24 - sha256 = "sha256-9JzavB6VMEM7UFa30WlHdZ/hajOly+JX75I+3DECOqM="; 24 + sha256 = "sha256-GppCjA35d4cvCuGE29czAu4JVCq3l2CHIRFkKWNSNH0="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ makeWrapper ];
+41 -41
pkgs/tools/security/metasploit/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "1walbq04v4qvgnz39cbfhz9bzhsf14q1h7gd0kgjy3frld6ysrhb"; 7 + sha256 = "1m5x42s72mik9xkrgbway4ra139k71p2dfxcvg5gwdmac8maiq7k"; 8 8 type = "gem"; 9 9 }; 10 - version = "6.1.6"; 10 + version = "6.1.6.1"; 11 11 }; 12 12 actionview = { 13 13 groups = ["default"]; 14 14 platforms = []; 15 15 source = { 16 16 remotes = ["https://rubygems.org"]; 17 - sha256 = "05r0h7pvc0szqmgnra0j3j8ap7dmiyw9s6qksx41v5cxknmfi0h3"; 17 + sha256 = "0syh8jwih5qvv87zfyzl37rz6sc1prhy6gia95bn76zyqk9cfzx8"; 18 18 type = "gem"; 19 19 }; 20 - version = "6.1.6"; 20 + version = "6.1.6.1"; 21 21 }; 22 22 activemodel = { 23 23 groups = ["default"]; 24 24 platforms = []; 25 25 source = { 26 26 remotes = ["https://rubygems.org"]; 27 - sha256 = "1f0ai51icvvx5q0jd1l89k0dlwzpsrkqlj6x43f8qc4bd1ya9glx"; 27 + sha256 = "1qm3whcaiv5kkgp6plyxi6xa6n3sap18m6w1lfwvr93xb8v57693"; 28 28 type = "gem"; 29 29 }; 30 - version = "6.1.6"; 30 + version = "6.1.6.1"; 31 31 }; 32 32 activerecord = { 33 33 groups = ["default"]; 34 34 platforms = []; 35 35 source = { 36 36 remotes = ["https://rubygems.org"]; 37 - sha256 = "0khjnkvmiyap1g3rvw9hp16mzai4smqcg5hxhq28pll25ljzxdbp"; 37 + sha256 = "1c6hcy2affwkkggd49v1g1j6ahijikbcxrcksngm9silmc24ixw2"; 38 38 type = "gem"; 39 39 }; 40 - version = "6.1.6"; 40 + version = "6.1.6.1"; 41 41 }; 42 42 activesupport = { 43 43 groups = ["default"]; 44 44 platforms = []; 45 45 source = { 46 46 remotes = ["https://rubygems.org"]; 47 - sha256 = "08wzpwgdm03vzb8gqr8bvfdarb89g5ah0skvwqk6qv87p55xqkyw"; 47 + sha256 = "0vb0xi7yvgfqky9h4clyncb886mr1wvz9amk7d9ffmgpwrpzvjaz"; 48 48 type = "gem"; 49 49 }; 50 - version = "6.1.6"; 50 + version = "6.1.6.1"; 51 51 }; 52 52 addressable = { 53 53 groups = ["default"]; ··· 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "0ydlikjhhsiqk7v8k7q1f036fd7yrmimasw40rnwcj3f1747lygd"; 107 + sha256 = "15ff3d8ijqh7har1cgwv2aiq77gkp8jyb8km15vz4kbckf7jps2m"; 108 108 type = "gem"; 109 109 }; 110 - version = "1.601.0"; 110 + version = "1.605.0"; 111 111 }; 112 112 aws-sdk-core = { 113 113 groups = ["default"]; ··· 124 124 platforms = []; 125 125 source = { 126 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "0b42j6hdw62qz02j1llqp4c4y0dx39x3wfk1nprxwl27sdvy1mgk"; 127 + sha256 = "0a4j83p1a8x9zdrmlnvqr9g53wmrf1dcf7i5glyamsj4lmqxlnv1"; 128 128 type = "gem"; 129 129 }; 130 - version = "1.319.0"; 130 + version = "1.321.0"; 131 131 }; 132 132 aws-sdk-iam = { 133 133 groups = ["default"]; ··· 494 494 platforms = []; 495 495 source = { 496 496 remotes = ["https://rubygems.org"]; 497 - sha256 = "0b2qyvnk4yynlg17ymkq4g5xgr275637fhl1mjh0valw3cb1fhhg"; 497 + sha256 = "1vdcchz7jli1p0gnc669a7bj3q1fv09y9ppf0y3k0vb1jwdwrqwi"; 498 498 type = "gem"; 499 499 }; 500 - version = "1.10.0"; 500 + version = "1.12.0"; 501 501 }; 502 502 io-console = { 503 503 groups = ["default"]; ··· 614 614 platforms = []; 615 615 source = { 616 616 fetchSubmodules = false; 617 - rev = "ed772a23efa7e2a7d7ae6417939e900c66950fd9"; 618 - sha256 = "18rs08qxqgljxxby5jx56dmf37vm8xlx3dsna0xl6c4m3sydm77l"; 617 + rev = "cb251272d8937b0b5bc92c5194a3617392b50625"; 618 + sha256 = "0z9la9ijjr0i463n15xp59a0kvh26gbxp17118pqfxzr1n6456hs"; 619 619 type = "git"; 620 620 url = "https://github.com/rapid7/metasploit-framework"; 621 621 }; 622 - version = "6.2.4"; 622 + version = "6.2.6"; 623 623 }; 624 624 metasploit-model = { 625 625 groups = ["default"]; ··· 686 686 platforms = []; 687 687 source = { 688 688 remotes = ["https://rubygems.org"]; 689 - sha256 = "08z6rgs1jgbc032843mwg3fayvzn4hihz8bl2gp87pf7z02kw5f3"; 689 + sha256 = "14a9ign0hj3z3j4cpfplj2djaskx3skzyx4fl3x53d7saxmhrgn1"; 690 690 type = "gem"; 691 691 }; 692 - version = "5.16.1"; 692 + version = "5.16.2"; 693 693 }; 694 694 mqtt = { 695 695 groups = ["default"]; ··· 706 706 platforms = []; 707 707 source = { 708 708 remotes = ["https://rubygems.org"]; 709 - sha256 = "1hpj9mm31a5aw5qys2kglfl8jv74bkwkc5pfrpp3als89hgkznqy"; 709 + sha256 = "0bqf9yp0kvcmqskixzhg66w922z280bkyfq41id6kk5nixlnmwg7"; 710 710 type = "gem"; 711 711 }; 712 - version = "1.5.2"; 712 + version = "1.5.3"; 713 713 }; 714 714 multi_json = { 715 715 groups = ["default"]; ··· 776 776 platforms = []; 777 777 source = { 778 778 remotes = ["https://rubygems.org"]; 779 - sha256 = "0jp3jgcn8cij407xx9ldb5h9c6jv13jc4cf6kk2idclz43ww21c9"; 779 + sha256 = "1qp3i8bi7ji1np0530bp2p9zrrn6galvmbsivxwpkjdpjdyn19sr"; 780 780 type = "gem"; 781 781 }; 782 - version = "6.1.0"; 782 + version = "7.0.1"; 783 783 }; 784 784 network_interface = { 785 785 groups = ["default"]; ··· 817 817 platforms = []; 818 818 source = { 819 819 remotes = ["https://rubygems.org"]; 820 - sha256 = "11w59ga9324yx6339dgsflz3dsqq2mky1qqdwcg6wi5s1bf2yldi"; 820 + sha256 = "0lhhnqch8r9n1835p6pvmg4m2r4hb98nkfxrpr4yf6246d9xg8bc"; 821 821 type = "gem"; 822 822 }; 823 - version = "1.13.6"; 823 + version = "1.13.7"; 824 824 }; 825 825 nori = { 826 826 groups = ["default"]; ··· 837 837 platforms = []; 838 838 source = { 839 839 remotes = ["https://rubygems.org"]; 840 - sha256 = "0yqs5cn07lwh7nhc6zh92rymk0aran90zfjgcbvpgsr2mjsyq8rc"; 840 + sha256 = "1jxx0pxm46vyrc3zp684m5b7xvw12ca2gnhnwizyvh15d65aribm"; 841 841 type = "gem"; 842 842 }; 843 - version = "4.25.0"; 843 + version = "5.1.0"; 844 844 }; 845 845 openssl-ccm = { 846 846 groups = ["default"]; ··· 957 957 platforms = []; 958 958 source = { 959 959 remotes = ["https://rubygems.org"]; 960 - sha256 = "1b1qsg0yfargdhmpapp2d3mlxj82wyygs9nj74w0r03diyi8swlc"; 960 + sha256 = "0axc6w0rs4yj0pksfll1hjgw1k6a5q0xi2lckh91knfb72v348pa"; 961 961 type = "gem"; 962 962 }; 963 - version = "2.2.3.1"; 963 + version = "2.2.4"; 964 964 }; 965 965 rack-protection = { 966 966 groups = ["default"]; ··· 977 977 platforms = []; 978 978 source = { 979 979 remotes = ["https://rubygems.org"]; 980 - sha256 = "01igqmm7xqw6vg6x28phivl044n2crq0bcfjrxr4979kzxydgh8h"; 980 + sha256 = "0rjl709krgf499dhjdapg580l2qaj9d91pwzk8ck8fpnazlx1bdd"; 981 981 type = "gem"; 982 982 }; 983 - version = "2.0.0"; 983 + version = "2.0.2"; 984 984 }; 985 985 rails-dom-testing = { 986 986 groups = ["default"]; ··· 1007 1007 platforms = []; 1008 1008 source = { 1009 1009 remotes = ["https://rubygems.org"]; 1010 - sha256 = "16dyjmy42v51acmx1ba2xxncvx368ss5rww6bsf1lwgyk4vqn41h"; 1010 + sha256 = "0cwpjj9inak65cvs9wyhpjdsx1xajzbiy25p397a8kmyvkrcvzms"; 1011 1011 type = "gem"; 1012 1012 }; 1013 - version = "6.1.6"; 1013 + version = "6.1.6.1"; 1014 1014 }; 1015 1015 rake = { 1016 1016 groups = ["default"]; ··· 1107 1107 platforms = []; 1108 1108 source = { 1109 1109 remotes = ["https://rubygems.org"]; 1110 - sha256 = "0x1gqdqvsgll1r5x6cz4ica24nb3ph8y36mf3hwabgb1a6y3s0zr"; 1110 + sha256 = "0646y7nbc54ljgw28gmlsqbmwxs1hs5v3h24arj4jrnvqrq9bw71"; 1111 1111 type = "gem"; 1112 1112 }; 1113 - version = "0.1.30"; 1113 + version = "0.1.32"; 1114 1114 }; 1115 1115 rex-java = { 1116 1116 groups = ["default"]; ··· 1227 1227 platforms = []; 1228 1228 source = { 1229 1229 remotes = ["https://rubygems.org"]; 1230 - sha256 = "0xzym86blrah88qyi1m9f7pc53m6ssmr4d1znc8izbh90z38y51y"; 1230 + sha256 = "10jxl3p3ndhb5cfj5y5qbiv82d3zn9wn0sr8q32cqlib4wnwx254"; 1231 1231 type = "gem"; 1232 1232 }; 1233 - version = "0.2.37"; 1233 + version = "0.2.38"; 1234 1234 }; 1235 1235 rex-zip = { 1236 1236 groups = ["default"]; ··· 1297 1297 platforms = []; 1298 1298 source = { 1299 1299 remotes = ["https://rubygems.org"]; 1300 - sha256 = "0cvavqvgwq2gcrg0gh8fdzyn9zzpkyh9g07jz6cn7zzxzgwxfn9v"; 1300 + sha256 = "0yvm8qg4i6qgdgqh5j4k3vw5hz9zl8w06jxhmwx69l7gvjxqi2fr"; 1301 1301 type = "gem"; 1302 1302 }; 1303 - version = "3.1.4"; 1303 + version = "3.1.6"; 1304 1304 }; 1305 1305 rubyntlm = { 1306 1306 groups = ["default"];