Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
abd82bc5 c319d8ae

+3576 -5717
+1 -1
.github/ISSUE_TEMPLATE/missing_documentation.md
··· 1 1 --- 2 2 name: Missing or incorrect documentation 3 - about: 3 + about: Help us improve the Nixpkgs and NixOS reference manuals 4 4 title: '' 5 5 labels: '9.needs: documentation' 6 6 assignees: ''
+53
lib/tests/misc.nix
··· 1206 1206 expr = strings.levenshteinAtMost 3 "hello" "Holla"; 1207 1207 expected = true; 1208 1208 }; 1209 + 1210 + testTypeDescriptionInt = { 1211 + expr = (with types; int).description; 1212 + expected = "signed integer"; 1213 + }; 1214 + testTypeDescriptionListOfInt = { 1215 + expr = (with types; listOf int).description; 1216 + expected = "list of signed integer"; 1217 + }; 1218 + testTypeDescriptionListOfListOfInt = { 1219 + expr = (with types; listOf (listOf int)).description; 1220 + expected = "list of list of signed integer"; 1221 + }; 1222 + testTypeDescriptionListOfEitherStrOrBool = { 1223 + expr = (with types; listOf (either str bool)).description; 1224 + expected = "list of (string or boolean)"; 1225 + }; 1226 + testTypeDescriptionEitherListOfStrOrBool = { 1227 + expr = (with types; either (listOf bool) str).description; 1228 + expected = "(list of boolean) or string"; 1229 + }; 1230 + testTypeDescriptionEitherStrOrListOfBool = { 1231 + expr = (with types; either str (listOf bool)).description; 1232 + expected = "string or list of boolean"; 1233 + }; 1234 + testTypeDescriptionOneOfListOfStrOrBool = { 1235 + expr = (with types; oneOf [ (listOf bool) str ]).description; 1236 + expected = "(list of boolean) or string"; 1237 + }; 1238 + testTypeDescriptionOneOfListOfStrOrBoolOrNumber = { 1239 + expr = (with types; oneOf [ (listOf bool) str number ]).description; 1240 + expected = "(list of boolean) or string or signed integer or floating point number"; 1241 + }; 1242 + testTypeDescriptionEitherListOfBoolOrEitherStringOrNumber = { 1243 + expr = (with types; either (listOf bool) (either str number)).description; 1244 + expected = "(list of boolean) or string or signed integer or floating point number"; 1245 + }; 1246 + testTypeDescriptionEitherEitherListOfBoolOrStringOrNumber = { 1247 + expr = (with types; either (either (listOf bool) str) number).description; 1248 + expected = "(list of boolean) or string or signed integer or floating point number"; 1249 + }; 1250 + testTypeDescriptionEitherNullOrBoolOrString = { 1251 + expr = (with types; either (nullOr bool) str).description; 1252 + expected = "null or boolean or string"; 1253 + }; 1254 + testTypeDescriptionEitherListOfEitherBoolOrStrOrInt = { 1255 + expr = (with types; either (listOf (either bool str)) int).description; 1256 + expected = "(list of (boolean or string)) or signed integer"; 1257 + }; 1258 + testTypeDescriptionEitherIntOrListOrEitherBoolOrStr = { 1259 + expr = (with types; either int (listOf (either bool str))).description; 1260 + expected = "signed integer or list of (boolean or string)"; 1261 + }; 1209 1262 }
+69 -13
lib/types.nix
··· 113 113 name 114 114 , # Description of the type, defined recursively by embedding the wrapped type if any. 115 115 description ? null 116 + # A hint for whether or not this description needs parentheses. Possible values: 117 + # - "noun": a simple noun phrase such as "positive integer" 118 + # - "conjunction": a phrase with a potentially ambiguous "or" connective. 119 + # - "composite": a phrase with an "of" connective 120 + # See the `optionDescriptionPhrase` function. 121 + , descriptionClass ? null 116 122 , # Function applied to each definition that should return true if 117 123 # its type-correct, false otherwise. 118 124 check ? (x: true) ··· 158 164 nestedTypes ? {} 159 165 }: 160 166 { _type = "option-type"; 161 - inherit name check merge emptyValue getSubOptions getSubModules substSubModules typeMerge functor deprecationMessage nestedTypes; 167 + inherit 168 + name check merge emptyValue getSubOptions getSubModules substSubModules 169 + typeMerge functor deprecationMessage nestedTypes descriptionClass; 162 170 description = if description == null then name else description; 163 171 }; 164 172 173 + # optionDescriptionPhrase :: (str -> bool) -> optionType -> str 174 + # 175 + # Helper function for producing unambiguous but readable natural language 176 + # descriptions of types. 177 + # 178 + # Parameters 179 + # 180 + # optionDescriptionPhase unparenthesize optionType 181 + # 182 + # `unparenthesize`: A function from descriptionClass string to boolean. 183 + # It must return true when the class of phrase will fit unambiguously into 184 + # the description of the caller. 185 + # 186 + # `optionType`: The option type to parenthesize or not. 187 + # The option whose description we're returning. 188 + # 189 + # Return value 190 + # 191 + # The description of the `optionType`, with parentheses if there may be an 192 + # ambiguity. 193 + optionDescriptionPhrase = unparenthesize: t: 194 + if unparenthesize (t.descriptionClass or null) 195 + then t.description 196 + else "(${t.description})"; 165 197 166 198 # When adding new types don't forget to document them in 167 199 # nixos/doc/manual/development/option-types.xml! ··· 170 202 raw = mkOptionType rec { 171 203 name = "raw"; 172 204 description = "raw value"; 205 + descriptionClass = "noun"; 173 206 check = value: true; 174 207 merge = mergeOneOption; 175 208 }; ··· 177 210 anything = mkOptionType { 178 211 name = "anything"; 179 212 description = "anything"; 213 + descriptionClass = "noun"; 180 214 check = value: true; 181 215 merge = loc: defs: 182 216 let ··· 216 250 }; 217 251 218 252 unspecified = mkOptionType { 219 - name = "unspecified"; 253 + name = "unspecified value"; 254 + descriptionClass = "noun"; 220 255 }; 221 256 222 257 bool = mkOptionType { 223 258 name = "bool"; 224 259 description = "boolean"; 260 + descriptionClass = "noun"; 225 261 check = isBool; 226 262 merge = mergeEqualOption; 227 263 }; ··· 229 265 int = mkOptionType { 230 266 name = "int"; 231 267 description = "signed integer"; 268 + descriptionClass = "noun"; 232 269 check = isInt; 233 270 merge = mergeEqualOption; 234 271 }; ··· 294 331 float = mkOptionType { 295 332 name = "float"; 296 333 description = "floating point number"; 334 + descriptionClass = "noun"; 297 335 check = isFloat; 298 336 merge = mergeEqualOption; 299 337 }; ··· 325 363 str = mkOptionType { 326 364 name = "str"; 327 365 description = "string"; 366 + descriptionClass = "noun"; 328 367 check = isString; 329 368 merge = mergeEqualOption; 330 369 }; ··· 332 371 nonEmptyStr = mkOptionType { 333 372 name = "nonEmptyStr"; 334 373 description = "non-empty string"; 374 + descriptionClass = "noun"; 335 375 check = x: str.check x && builtins.match "[ \t\n]*" x == null; 336 376 inherit (str) merge; 337 377 }; ··· 344 384 mkOptionType { 345 385 name = "singleLineStr"; 346 386 description = "(optionally newline-terminated) single-line string"; 387 + descriptionClass = "noun"; 347 388 inherit check; 348 389 merge = loc: defs: 349 390 lib.removeSuffix "\n" (merge loc defs); ··· 352 393 strMatching = pattern: mkOptionType { 353 394 name = "strMatching ${escapeNixString pattern}"; 354 395 description = "string matching the pattern ${pattern}"; 396 + descriptionClass = "noun"; 355 397 check = x: str.check x && builtins.match pattern x != null; 356 398 inherit (str) merge; 357 399 }; ··· 364 406 then "Concatenated string" # for types.string. 365 407 else "strings concatenated with ${builtins.toJSON sep}" 366 408 ; 409 + descriptionClass = "noun"; 367 410 check = isString; 368 411 merge = loc: defs: concatStringsSep sep (getValues defs); 369 412 functor = (defaultFunctor name) // { ··· 387 430 388 431 passwdEntry = entryType: addCheck entryType (str: !(hasInfix ":" str || hasInfix "\n" str)) // { 389 432 name = "passwdEntry ${entryType.name}"; 390 - description = "${entryType.description}, not containing newlines or colons"; 433 + description = "${optionDescriptionPhrase (class: class == "noun") entryType}, not containing newlines or colons"; 391 434 }; 392 435 393 436 attrs = mkOptionType { ··· 407 450 # ("/nix/store/hash-foo"). These get a context added to them using builtins.storePath. 408 451 package = mkOptionType { 409 452 name = "package"; 453 + descriptionClass = "noun"; 410 454 check = x: isDerivation x || isStorePath x; 411 455 merge = loc: defs: 412 456 let res = mergeOneOption loc defs; ··· 427 471 428 472 listOf = elemType: mkOptionType rec { 429 473 name = "listOf"; 430 - description = "list of ${elemType.description}"; 474 + description = "list of ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}"; 475 + descriptionClass = "composite"; 431 476 check = isList; 432 477 merge = loc: defs: 433 478 map (x: x.value) (filter (x: x ? value) (concatLists (imap1 (n: def: ··· 450 495 nonEmptyListOf = elemType: 451 496 let list = addCheck (types.listOf elemType) (l: l != []); 452 497 in list // { 453 - description = "non-empty " + list.description; 498 + description = "non-empty ${optionDescriptionPhrase (class: class == "noun") list}"; 454 499 emptyValue = { }; # no .value attr, meaning unset 455 500 }; 456 501 457 502 attrsOf = elemType: mkOptionType rec { 458 503 name = "attrsOf"; 459 - description = "attribute set of ${elemType.description}"; 504 + description = "attribute set of ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}"; 505 + descriptionClass = "composite"; 460 506 check = isAttrs; 461 507 merge = loc: defs: 462 508 mapAttrs (n: v: v.value) (filterAttrs (n: v: v ? value) (zipAttrsWith (name: defs: ··· 479 525 # error that it's not defined. Use only if conditional definitions don't make sense. 480 526 lazyAttrsOf = elemType: mkOptionType rec { 481 527 name = "lazyAttrsOf"; 482 - description = "lazy attribute set of ${elemType.description}"; 528 + description = "lazy attribute set of ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}"; 529 + descriptionClass = "composite"; 483 530 check = isAttrs; 484 531 merge = loc: defs: 485 532 zipAttrsWith (name: defs: ··· 509 556 # Value of given type but with no merging (i.e. `uniq list`s are not concatenated). 510 557 uniq = elemType: mkOptionType rec { 511 558 name = "uniq"; 512 - inherit (elemType) description check; 559 + inherit (elemType) description descriptionClass check; 513 560 merge = mergeOneOption; 514 561 emptyValue = elemType.emptyValue; 515 562 getSubOptions = elemType.getSubOptions; ··· 521 568 522 569 unique = { message }: type: mkOptionType rec { 523 570 name = "unique"; 524 - inherit (type) description check; 571 + inherit (type) description descriptionClass check; 525 572 merge = mergeUniqueOption { inherit message; }; 526 573 emptyValue = type.emptyValue; 527 574 getSubOptions = type.getSubOptions; ··· 534 581 # Null or value of ... 535 582 nullOr = elemType: mkOptionType rec { 536 583 name = "nullOr"; 537 - description = "null or ${elemType.description}"; 584 + description = "null or ${optionDescriptionPhrase (class: class == "noun" || class == "conjunction") elemType}"; 585 + descriptionClass = "conjunction"; 538 586 check = x: x == null || elemType.check x; 539 587 merge = loc: defs: 540 588 let nrNulls = count (def: def.value == null) defs; in ··· 552 600 553 601 functionTo = elemType: mkOptionType { 554 602 name = "functionTo"; 555 - description = "function that evaluates to a(n) ${elemType.description}"; 603 + description = "function that evaluates to a(n) ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}"; 604 + descriptionClass = "composite"; 556 605 check = isFunction; 557 606 merge = loc: defs: 558 607 fnArgs: (mergeDefinitions (loc ++ [ "[function body]" ]) elemType (map (fn: { inherit (fn) file; value = fn.value fnArgs; }) defs)).mergedValue; ··· 578 627 deferredModuleWith = attrs@{ staticModules ? [] }: mkOptionType { 579 628 name = "deferredModule"; 580 629 description = "module"; 630 + descriptionClass = "noun"; 581 631 check = x: isAttrs x || isFunction x || path.check x; 582 632 merge = loc: defs: { 583 633 imports = staticModules ++ map (def: lib.setDefaultModuleLocation "${def.file}, via option ${showOption loc}" def.value) defs; ··· 603 653 optionType = mkOptionType { 604 654 name = "optionType"; 605 655 description = "optionType"; 656 + descriptionClass = "noun"; 606 657 check = value: value._type or null == "option-type"; 607 658 merge = loc: defs: 608 659 if length defs == 1 ··· 749 800 "value ${show (builtins.head values)} (singular enum)" 750 801 else 751 802 "one of ${concatMapStringsSep ", " show values}"; 803 + descriptionClass = 804 + if builtins.length values < 2 805 + then "noun" 806 + else "conjunction"; 752 807 check = flip elem values; 753 808 merge = mergeEqualOption; 754 809 functor = (defaultFunctor name) // { payload = values; binOp = a: b: unique (a ++ b); }; ··· 757 812 # Either value of type `t1` or `t2`. 758 813 either = t1: t2: mkOptionType rec { 759 814 name = "either"; 760 - description = "${t1.description} or ${t2.description}"; 815 + description = "${optionDescriptionPhrase (class: class == "noun" || class == "conjunction") t1} or ${optionDescriptionPhrase (class: class == "noun" || class == "conjunction" || class == "composite") t2}"; 816 + descriptionClass = "conjunction"; 761 817 check = x: t1.check x || t2.check x; 762 818 merge = loc: defs: 763 819 let ··· 795 851 coercedType.description})"; 796 852 mkOptionType rec { 797 853 name = "coercedTo"; 798 - description = "${finalType.description} or ${coercedType.description} convertible to it"; 854 + description = "${optionDescriptionPhrase (class: class == "noun") finalType} or ${optionDescriptionPhrase (class: class == "noun") coercedType} convertible to it"; 799 855 check = x: (coercedType.check x && finalType.check (coerceFunc x)) || finalType.check x; 800 856 merge = loc: defs: 801 857 let
+9 -4
maintainers/maintainer-list.nix
··· 15369 15369 githubId = 31394095; 15370 15370 }; 15371 15371 cafkafk = { 15372 - email = "cafkafk@cafkafk.com"; 15372 + email = "christina@cafkafk.com"; 15373 15373 matrix = "@cafkafk:matrix.cafkafk.com"; 15374 15374 name = "Christina Sørensen"; 15375 15375 github = "cafkafk"; 15376 15376 githubId = 89321978; 15377 - keys = [{ 15378 - fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8"; 15379 - }]; 15377 + keys = [ 15378 + { 15379 + fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8"; 15380 + } 15381 + { 15382 + fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED"; 15383 + } 15384 + ]; 15380 15385 }; 15381 15386 rb = { 15382 15387 email = "maintainers@cloudposse.com";
+8
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 486 486 </listitem> 487 487 <listitem> 488 488 <para> 489 + lemmy module option 490 + <literal>services.lemmy.settings.database.createLocally</literal> 491 + moved to 492 + <literal>services.lemmy.database.createLocally</literal>. 493 + </para> 494 + </listitem> 495 + <listitem> 496 + <para> 489 497 virtlyst package and <literal>services.virtlyst</literal> 490 498 module removed, due to lack of maintainers. 491 499 </para>
+3
nixos/doc/manual/release-notes/rl-2211.section.md
··· 166 166 167 167 - dd-agent package removed along with the `services.dd-agent` module, due to the project being deprecated in favor of `datadog-agent`, which is available via the `services.datadog-agent` module. 168 168 169 + - lemmy module option `services.lemmy.settings.database.createLocally` 170 + moved to `services.lemmy.database.createLocally`. 171 + 169 172 - virtlyst package and `services.virtlyst` module removed, due to lack of maintainers. 170 173 171 174 - The `services.graphite.api` and `services.graphite.beacon` NixOS options, and
-4
nixos/modules/services/hardware/usbrelayd.nix
··· 34 34 35 35 services.udev.packages = [ pkgs.usbrelayd ]; 36 36 systemd.packages = [ pkgs.usbrelayd ]; 37 - users.users.usbrelay = { 38 - isSystemUser = true; 39 - group = "usbrelay"; 40 - }; 41 37 users.groups.usbrelay = { }; 42 38 }; 43 39
+6 -7
nixos/modules/services/web-apps/lemmy.nix
··· 28 28 29 29 caddy.enable = mkEnableOption (lib.mdDoc "exposing lemmy with the caddy reverse proxy"); 30 30 31 + database.createLocally = mkEnableOption (lib.mdDoc "creation of database on the instance"); 32 + 31 33 settings = mkOption { 32 34 default = { }; 33 35 description = lib.mdDoc "Lemmy configuration"; ··· 63 65 description = lib.mdDoc "The difficultly of the captcha to solve."; 64 66 }; 65 67 }; 66 - 67 - options.database.createLocally = mkEnableOption (lib.mdDoc "creation of database on the instance"); 68 - 69 68 }; 70 69 }; 71 70 ··· 142 141 }; 143 142 144 143 assertions = [{ 145 - assertion = cfg.settings.database.createLocally -> localPostgres; 144 + assertion = cfg.database.createLocally -> localPostgres; 146 145 message = "if you want to create the database locally, you need to use a local database"; 147 146 }]; 148 147 ··· 163 162 164 163 wantedBy = [ "multi-user.target" ]; 165 164 166 - after = [ "pict-rs.service" ] ++ lib.optionals cfg.settings.database.createLocally [ "lemmy-postgresql.service" ]; 165 + after = [ "pict-rs.service" ] ++ lib.optionals cfg.database.createLocally [ "lemmy-postgresql.service" ]; 167 166 168 - requires = lib.optionals cfg.settings.database.createLocally [ "lemmy-postgresql.service" ]; 167 + requires = lib.optionals cfg.database.createLocally [ "lemmy-postgresql.service" ]; 169 168 170 169 serviceConfig = { 171 170 DynamicUser = true; ··· 203 202 }; 204 203 }; 205 204 206 - systemd.services.lemmy-postgresql = mkIf cfg.settings.database.createLocally { 205 + systemd.services.lemmy-postgresql = mkIf cfg.database.createLocally { 207 206 description = "Lemmy postgresql db"; 208 207 after = [ "postgresql.service" ]; 209 208 partOf = [ "lemmy.service" ];
+1 -1
nixos/modules/system/boot/systemd.nix
··· 121 121 "final.target" 122 122 "kexec.target" 123 123 "systemd-kexec.service" 124 - ] ++ lib.optional (cfg.package.withUtmp or true) "systemd-update-utmp.service" ++ [ 124 + ] ++ lib.optional cfg.package.withUtmp "systemd-update-utmp.service" ++ [ 125 125 126 126 # Password entry. 127 127 "systemd-ask-password-console.path"
+1 -1
nixos/tests/lemmy.nix
··· 15 15 services.lemmy = { 16 16 enable = true; 17 17 ui.port = uiPort; 18 + database.createLocally = true; 18 19 settings = { 19 20 hostname = "http://${lemmyNodeName}"; 20 21 port = backendPort; 21 - database.createLocally = true; 22 22 # Without setup, the /feeds/* and /nodeinfo/* API endpoints won't return 200 23 23 setup = { 24 24 admin_username = "mightyiam";
+2 -2
pkgs/applications/audio/pyradio/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "pyradio"; 5 - version = "0.8.9.26"; 5 + version = "0.8.9.27"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "coderholic"; 9 9 repo = pname; 10 10 rev = "refs/tags/${version}"; 11 - sha256 = "sha256-RuQAbmzB8s+YmJLSbzJTQtpiYLr1oFtrxKF8P+MlHeU="; 11 + sha256 = "sha256-KqSpyDiRhp7DdbFsPor+munMQg+0vv0qF2VI3gkR04Y="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles ];
+2 -2
pkgs/applications/editors/cudatext/default.nix
··· 38 38 in 39 39 stdenv.mkDerivation rec { 40 40 pname = "cudatext"; 41 - version = "1.170.5"; 41 + version = "1.171.0"; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "Alexey-T"; 45 45 repo = "CudaText"; 46 46 rev = version; 47 - hash = "sha256-B7t8Vg318ZMcodYEV/DpKEer4AsmAonHbE7cbK34kp0="; 47 + hash = "sha256-+NTxZ5UkmaFDcTYliNi/5c8xGztVu6P8C7Ga99MHSFM="; 48 48 }; 49 49 50 50 postPatch = ''
+8 -8
pkgs/applications/editors/cudatext/deps.json
··· 11 11 }, 12 12 "ATFlatControls": { 13 13 "owner": "Alexey-T", 14 - "rev": "2022.09.03", 15 - "hash": "sha256-YxGCV6oIWZ0a7rRyCq1YjOfyO17mHcxJXgBJ2esvm1U=" 14 + "rev": "2022.09.18", 15 + "hash": "sha256-4d27eW4gpJHwGlRZ4iPzuKIw/o/J4utxXbEhglk31Bw=" 16 16 }, 17 17 "ATSynEdit": { 18 18 "owner": "Alexey-T", 19 - "rev": "2022.09.11", 20 - "hash": "sha256-lzGOcYRfaHernLGMTOe8BazpMYa41p42bjjNEmuxU/c=" 19 + "rev": "2022.09.18", 20 + "hash": "sha256-HjW4V7MctQoHbDYIlMv7VS0nS7FFG6Qir0sCju+isI0=" 21 21 }, 22 22 "ATSynEdit_Cmp": { 23 23 "owner": "Alexey-T", 24 - "rev": "2022.09.01", 25 - "hash": "sha256-Xnh6hWzy4lTDxlNvEOsGl2YalzKgt51bDrUcMVOvtTg=" 24 + "rev": "2022.09.18", 25 + "hash": "sha256-yIbIRo4hpwbCdH+3fIhjnQPtdvuFmfJSqloKjWqKEuY=" 26 26 }, 27 27 "EControl": { 28 28 "owner": "Alexey-T", ··· 41 41 }, 42 42 "Emmet-Pascal": { 43 43 "owner": "Alexey-T", 44 - "rev": "2022.08.28", 45 - "hash": "sha256-u8+qUagpy2tKppkjTrEVvXAHQkF8AGDDNtWCNJHnKbs=" 44 + "rev": "2022.09.18", 45 + "hash": "sha256-Kutl4Jh/+KptGbqakzPJnIYlFtytXVlzKWulKt4Z+/g=" 46 46 }, 47 47 "CudaText-lexers": { 48 48 "owner": "Alexey-T",
+6 -6
pkgs/applications/editors/rstudio/clang-location.patch
··· 1 - diff --git a/src/cpp/core/libclang/LibClang.cpp b/src/cpp/core/libclang/LibClang.cpp 2 - index 1186f3a..58e8cc7 100644 3 1 --- a/src/cpp/core/libclang/LibClang.cpp 4 2 +++ b/src/cpp/core/libclang/LibClang.cpp 5 - @@ -58,7 +58,7 @@ std::vector<std::string> defaultCompileArgs(LibraryVersion version) 3 + @@ -62,7 +62,7 @@ 6 4 7 5 // we need to add in the associated libclang headers as 8 6 // they are not discovered / used by default during compilation ··· 11 9 boost::format fmt("%1%/lib/clang/%2%/include"); 12 10 fmt % llvmPath.getAbsolutePath() % version.asString(); 13 11 std::string includePath = fmt.str(); 14 - @@ -70,46 +70,7 @@ std::vector<std::string> defaultCompileArgs(LibraryVersion version) 12 + @@ -74,47 +74,7 @@ 15 13 16 14 std::vector<std::string> systemClangVersions() 17 15 { ··· 55 53 - } 56 54 -#endif 57 55 - 58 - + std::vector<std::string> clangVersions = { "@libclang.so@" }; 59 - return clangVersions; 56 + - return clangVersions; 57 + + return std::vector<std::string> { "@libclang.so@" }; 60 58 } 59 + 60 + 61 61
+7 -6
pkgs/applications/editors/rstudio/default.nix
··· 39 39 40 40 let 41 41 pname = "RStudio"; 42 - version = "2022.02.3+492"; 42 + version = "2022.07.1+554"; 43 43 RSTUDIO_VERSION_MAJOR = "2022"; 44 - RSTUDIO_VERSION_MINOR = "02"; 45 - RSTUDIO_VERSION_PATCH = "3"; 46 - RSTUDIO_VERSION_SUFFIX = "+492"; 44 + RSTUDIO_VERSION_MINOR = "07"; 45 + RSTUDIO_VERSION_PATCH = "1"; 46 + RSTUDIO_VERSION_SUFFIX = "+554"; 47 47 48 48 src = fetchFromGitHub { 49 49 owner = "rstudio"; 50 50 repo = "rstudio"; 51 51 rev = "v${version}"; 52 - sha256 = "1pgbk5rpy47h9ihdrplbfhfc49hrc6242j9099bclq7rqif049wi"; 52 + sha256 = "0rmdqxizxqg2vgr3lv066cjmlpjrxjlgi0m97wbh6iyhkfm2rrj1"; 53 53 }; 54 54 55 55 mathJaxSrc = fetchurl { ··· 129 129 ./use-system-node.patch 130 130 ./fix-resources-path.patch 131 131 ./pandoc-nix-path.patch 132 + ./remove-quarto-from-generator.patch 133 + ./do-not-install-pandoc.patch 132 134 ]; 133 135 134 136 postPatch = '' ··· 196 198 done 197 199 198 200 rm -r $out/lib/rstudio/{INSTALL,COPYING,NOTICE,README.md,SOURCE,VERSION} 199 - rm -r $out/lib/rstudio/bin/{pandoc/pandoc,pandoc} 200 201 ''; 201 202 202 203 meta = with lib; {
+13
pkgs/applications/editors/rstudio/do-not-install-pandoc.patch
··· 1 + --- a/src/cpp/session/CMakeLists.txt 2 + +++ b/src/cpp/session/CMakeLists.txt 3 + @@ -60,8 +60,7 @@ 4 + 5 + # validate our dependencies exist 6 + foreach(VAR RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR 7 + - RSTUDIO_DEPENDENCIES_MATHJAX_DIR 8 + - RSTUDIO_DEPENDENCIES_PANDOC_DIR) 9 + + RSTUDIO_DEPENDENCIES_MATHJAX_DIR) 10 + 11 + # validate existence 12 + if(NOT EXISTS "${${VAR}}") 13 +
+32
pkgs/applications/editors/rstudio/remove-quarto-from-generator.patch
··· 1 + --- a/src/cpp/session/CMakeLists.txt 2 + +++ b/src/cpp/session/CMakeLists.txt 3 + @@ -43,12 +43,6 @@ 4 + set(RSTUDIO_DEPENDENCIES_MATHJAX_DIR "${RSTUDIO_DEPENDENCIES_DIR}/mathjax-27") 5 + endif() 6 + 7 + - if(EXISTS "${RSTUDIO_TOOLS_ROOT}/quarto") 8 + - set(RSTUDIO_DEPENDENCIES_QUARTO_DIR "${RSTUDIO_TOOLS_ROOT}/quarto") 9 + - else() 10 + - set(RSTUDIO_DEPENDENCIES_QUARTO_DIR "${RSTUDIO_DEPENDENCIES_DIR}/quarto") 11 + - endif() 12 + - 13 + endif() 14 + 15 + 16 + @@ -67,14 +61,7 @@ 17 + # validate our dependencies exist 18 + foreach(VAR RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR 19 + RSTUDIO_DEPENDENCIES_MATHJAX_DIR 20 + - RSTUDIO_DEPENDENCIES_PANDOC_DIR 21 + - RSTUDIO_DEPENDENCIES_QUARTO_DIR) 22 + - 23 + - 24 + - # skip quarto if not enabled 25 + - if("${VAR}" STREQUAL "RSTUDIO_DEPENDENCIES_QUARTO_DIR" AND NOT QUARTO_ENABLED) 26 + - continue() 27 + - endif() 28 + + RSTUDIO_DEPENDENCIES_PANDOC_DIR) 29 + 30 + # validate existence 31 + if(NOT EXISTS "${${VAR}}") 32 +
+7 -6
pkgs/applications/editors/rstudio/use-system-node.patch
··· 1 1 --- a/src/gwt/build.xml 2 2 +++ b/src/gwt/build.xml 3 - @@ -84,23 +84,7 @@ 3 + @@ -83,24 +83,7 @@ 4 + <echo>Concatenated acesupport files to 'acesupport.js'</echo> 4 5 </target> 5 - 6 - <!-- panmirror typescript library --> 6 + 7 + - <!-- panmirror typescript library --> 7 8 - <!-- ensure version matches RSTUDIO_NODE_VERSION --> 8 - - <property name="node.version" value="14.17.5"/> 9 + - <property name="node.version" value="16.14.0"/> 9 10 - <property name="node.dir" value="../../dependencies/common/node/${node.version}"/> 10 11 - <condition property="node.bin" value="../../../${node.dir}/bin/node"> 11 12 - <not> ··· 21 22 - property="node.bin" 22 23 - value="/opt/rstudio-tools/dependencies/common/node/${node.version}/bin/node" 23 24 - file="/opt/rstudio-tools/dependencies/common/node/${node.version}/bin/node"/> 24 - + <property name="node.bin" value="@node@/bin/node"/> 25 - 25 + + <property name="node.bin" value="@node@/bin/node"/> 26 + 26 27 <property name="panmirror.dir" value="./panmirror/src/editor"/> 27 28 <property name="panmirror.build.dir" value="./www/js/panmirror"/> 28 29
+2 -2
pkgs/applications/emulators/sameboy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sameboy"; 5 - version = "0.15.5"; 5 + version = "0.15.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "LIJI32"; 9 9 repo = "SameBoy"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-R93ZIc1Ics3diJJDdGUBCEGRDW25YnC1ZY0DyJjpyVM="; 11 + sha256 = "sha256-WsZuOKq/Dfk2zgYFXSwZPUuPrJQJ3y3mJHL6s61mTig="; 12 12 }; 13 13 14 14 enableParallelBuilding = true;
+1 -1
pkgs/applications/misc/dbeaver/default.nix
··· 32 32 sha256 = "sha256-T2S5qoOqjqJGf7M4h+IFO+bBER3aNcbxC7CY1fJFqpg="; 33 33 }; 34 34 35 - mvnSha256 = "KVE+AYYEWN9bjAWop4mpiPq8yU3GdSGqOTmLG4pdflQ="; 35 + mvnSha256 = "HdIhENml6W4U+gM7ODxXinbex5o1X4YhWGTct5rpL5c="; 36 36 mvnParameters = "-P desktop,all-platforms"; 37 37 38 38 nativeBuildInputs = [
+24
pkgs/applications/misc/grb/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "grb"; 5 + version = "unstable-2022-07-02"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "LukeSmithxyz"; 9 + repo = pname; 10 + rev = "35a5353ab147b930c39e1ccd369791cc4c27f0df"; 11 + sha256 = "sha256-hQ21DXnkBJVCgGXQKDR+DjaDC3RXS2pNmSLDoHvHA4E="; 12 + }; 13 + 14 + makeFlags = [ 15 + "PREFIX=${placeholder "out"}" 16 + ]; 17 + 18 + meta = with lib; { 19 + description = "A cli-accessible Greek Bible with the Septuagint, SBL and Apocrypha"; 20 + homepage = "https://github.com/LukeSmithxyz/grb"; 21 + license = licenses.publicDomain; 22 + maintainers = [ maintainers.cafkafk ]; 23 + }; 24 + }
+1 -1
pkgs/applications/misc/kjv/default.nix
··· 35 35 description = "The Bible, King James Version"; 36 36 homepage = "https://github.com/bontibon/kjv"; 37 37 license = licenses.unlicense; 38 - maintainers = with maintainers; [ jtobin ]; 38 + maintainers = with maintainers; [ jtobin cafkafk ]; 39 39 mainProgram = "kjv"; 40 40 }; 41 41 }
+21 -14
pkgs/applications/misc/madonctl/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, madonctl }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "madonctl"; 5 - version = "1.1.0"; 6 - 7 - goPackagePath = "github.com/McKael/madonctl"; 5 + version = "2.3.2"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "McKael"; 11 9 repo = "madonctl"; 12 - rev = "v${version}"; 13 - sha256 = "1dnc1xaafhwhhf5afhb0wc2wbqq0s1r7qzj5k0xzc58my541gadc"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-mo185EKjLkiujAKcAFM1XqkXWvcfYbnv+r3dF9ywaf8="; 14 12 }; 15 13 16 - # How to update: 17 - # go get -u github.com/McKael/madonctl 18 - # cd $GOPATH/src/github.com/McKael/madonctl 19 - # git checkout v<version-number> 20 - # go2nix save 14 + vendorSha256 = null; 15 + 16 + nativeBuildInputs = [ installShellFiles ]; 17 + 18 + ldflags = [ "-s" "-w" ]; 19 + 20 + postInstall = '' 21 + installShellCompletion --cmd madonctl \ 22 + --bash <($out/bin/madonctl completion bash) \ 23 + --zsh <($out/bin/madonctl completion zsh) 24 + ''; 21 25 22 - goDeps = ./deps.nix; 26 + passthru.tests.version = testers.testVersion { 27 + package = madonctl; 28 + command = "madonctl version"; 29 + }; 23 30 24 31 meta = with lib; { 25 32 description = "CLI for the Mastodon social network API"; 26 33 homepage = "https://github.com/McKael/madonctl"; 27 34 license = licenses.mit; 28 35 platforms = platforms.unix; 29 - maintainers = with maintainers; [ ]; 36 + maintainers = with maintainers; [ aaronjheng ]; 30 37 }; 31 38 }
-228
pkgs/applications/misc/madonctl/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.0 2 - [ 3 - { 4 - goPackagePath = "github.com/McKael/madon"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/McKael/madon"; 8 - rev = "e580cd41ac42bbb0b2ea5b3843b3f1f854db357c"; 9 - sha256 = "0jvvfkf3wlzisvcq54xv3jxncx178ks5wxd6cx8k8215437b3hra"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/fsnotify/fsnotify"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/fsnotify/fsnotify"; 17 - rev = "4da3e2cfbabc9f751898f250b49f2439785783a1"; 18 - sha256 = "1y2l9jaf99j6gidcfdgq3hifxyiwv4f7awpll80p170ixdbqxvl3"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/ghodss/yaml"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/ghodss/yaml"; 26 - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7"; 27 - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/gorilla/websocket"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/gorilla/websocket"; 35 - rev = "a91eba7f97777409bc2c443f5534d41dd20c5720"; 36 - sha256 = "13cg6wwkk2ddqbm0nh9fpx4mq7f6qym12ch4lvs53n028ycdgw87"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "github.com/hashicorp/hcl"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://github.com/hashicorp/hcl"; 44 - rev = "392dba7d905ed5d04a5794ba89f558b27e2ba1ca"; 45 - sha256 = "1rfm67kma2hpakabf7hxlj196jags4rpjpcirwg4kan4g9b6j0kb"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "github.com/kr/text"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://github.com/kr/text"; 53 - rev = "7cafcd837844e784b526369c9bce262804aebc60"; 54 - sha256 = "0br693pf6vdr1sfvzdz6zxq7hjpdgci0il4wj0v636r8lyy21vsx"; 55 - }; 56 - } 57 - { 58 - goPackagePath = "github.com/m0t0k1ch1/gomif"; 59 - fetch = { 60 - type = "git"; 61 - url = "https://github.com/m0t0k1ch1/gomif"; 62 - rev = "f5864f63e1ed5a138f015cc2cb71a2e99c148d21"; 63 - sha256 = "0djg8chax1g0m02xz84ic19758jzv5m50b7vpwjkpjk3181j5z9k"; 64 - }; 65 - } 66 - { 67 - goPackagePath = "github.com/magiconair/properties"; 68 - fetch = { 69 - type = "git"; 70 - url = "https://github.com/magiconair/properties"; 71 - rev = "51463bfca2576e06c62a8504b5c0f06d61312647"; 72 - sha256 = "0d7hr78y8gg2mrm5z4jjgm2w3awkznz383b7wvyzk3l33jw6i288"; 73 - }; 74 - } 75 - { 76 - goPackagePath = "github.com/mattn/go-isatty"; 77 - fetch = { 78 - type = "git"; 79 - url = "https://github.com/mattn/go-isatty"; 80 - rev = "fc9e8d8ef48496124e79ae0df75490096eccf6fe"; 81 - sha256 = "1r5f9gkavkb1w6sr0qs5kj16706xirl3qnlq3hqpszkw9w27x65a"; 82 - }; 83 - } 84 - { 85 - goPackagePath = "github.com/mitchellh/mapstructure"; 86 - fetch = { 87 - type = "git"; 88 - url = "https://github.com/mitchellh/mapstructure"; 89 - rev = "cc8532a8e9a55ea36402aa21efdf403a60d34096"; 90 - sha256 = "0705c0hq7b993sabnjy65yymvpy9w1j84bg9bjczh5607z16nw86"; 91 - }; 92 - } 93 - { 94 - goPackagePath = "github.com/pelletier/go-buffruneio"; 95 - fetch = { 96 - type = "git"; 97 - url = "https://github.com/pelletier/go-buffruneio"; 98 - rev = "c37440a7cf42ac63b919c752ca73a85067e05992"; 99 - sha256 = "0l83p1gg6g5mmhmxjisrhfimhbm71lwn1r2w7d6siwwqm9q08sd2"; 100 - }; 101 - } 102 - { 103 - goPackagePath = "github.com/pelletier/go-toml"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://github.com/pelletier/go-toml"; 107 - rev = "5c26a6ff6fd178719e15decac1c8196da0d7d6d1"; 108 - sha256 = "0f4l7mq0nb2p2vjfjqx251s6jzkl646n1vw45chykwvv1sbad8nq"; 109 - }; 110 - } 111 - { 112 - goPackagePath = "github.com/pkg/errors"; 113 - fetch = { 114 - type = "git"; 115 - url = "https://github.com/pkg/errors"; 116 - rev = "c605e284fe17294bda444b34710735b29d1a9d90"; 117 - sha256 = "1izjk4msnc6wn1mclg0ypa6i31zfwb1r3032k8q4jfbd57hp0bz6"; 118 - }; 119 - } 120 - { 121 - goPackagePath = "github.com/sendgrid/rest"; 122 - fetch = { 123 - type = "git"; 124 - url = "https://github.com/sendgrid/rest"; 125 - rev = "14de1ac72d9ae5c3c0d7c02164c52ebd3b951a4e"; 126 - sha256 = "0wrggvgnqdmhscim52hvhg77jhksprxp52sc4ipd69kasd32b5dm"; 127 - }; 128 - } 129 - { 130 - goPackagePath = "github.com/spf13/afero"; 131 - fetch = { 132 - type = "git"; 133 - url = "https://github.com/spf13/afero"; 134 - rev = "9be650865eab0c12963d8753212f4f9c66cdcf12"; 135 - sha256 = "12dhh6d07304lsjv7c4p95hkip0hnshqhwivdw39pbypgg0p8y34"; 136 - }; 137 - } 138 - { 139 - goPackagePath = "github.com/spf13/cast"; 140 - fetch = { 141 - type = "git"; 142 - url = "https://github.com/spf13/cast"; 143 - rev = "acbeb36b902d72a7a4c18e8f3241075e7ab763e4"; 144 - sha256 = "0w25s6gjbbwv47b9208hysyqqphd6pib3d2phg24mjy4wigkm050"; 145 - }; 146 - } 147 - { 148 - goPackagePath = "github.com/spf13/cobra"; 149 - fetch = { 150 - type = "git"; 151 - url = "https://github.com/spf13/cobra"; 152 - rev = "ca5710c94eabe15aa1f74490b8e5976dc652e8c6"; 153 - sha256 = "1z5fxh9akwn95av6ra8p6804nhyxjc63m0s6abxi3l424n30b08i"; 154 - }; 155 - } 156 - { 157 - goPackagePath = "github.com/spf13/jwalterweatherman"; 158 - fetch = { 159 - type = "git"; 160 - url = "https://github.com/spf13/jwalterweatherman"; 161 - rev = "8f07c835e5cc1450c082fe3a439cf87b0cbb2d99"; 162 - sha256 = "1dhl6kdbyczhnsgiyc8mcb7kmxd9garx8gy3q2gx5mmv96xxzxx7"; 163 - }; 164 - } 165 - { 166 - goPackagePath = "github.com/spf13/pflag"; 167 - fetch = { 168 - type = "git"; 169 - url = "https://github.com/spf13/pflag"; 170 - rev = "e57e3eeb33f795204c1ca35f56c44f83227c6e66"; 171 - sha256 = "13mhx4i913jil32j295m3a36jzvq1y64xig0naadiz7q9ja011r2"; 172 - }; 173 - } 174 - { 175 - goPackagePath = "github.com/spf13/viper"; 176 - fetch = { 177 - type = "git"; 178 - url = "https://github.com/spf13/viper"; 179 - rev = "0967fc9aceab2ce9da34061253ac10fb99bba5b2"; 180 - sha256 = "016syis0rvccp2indjqi1vnz3wk7c9dhkvkgam0j79sb019kl80f"; 181 - }; 182 - } 183 - { 184 - goPackagePath = "golang.org/x/net"; 185 - fetch = { 186 - type = "git"; 187 - url = "https://go.googlesource.com/net"; 188 - rev = "513929065c19401a1c7b76ecd942f9f86a0c061b"; 189 - sha256 = "19ziin0k3n45nccjbk094f61hr198wzqnas93cmcxdja8f8fz27q"; 190 - }; 191 - } 192 - { 193 - goPackagePath = "golang.org/x/oauth2"; 194 - fetch = { 195 - type = "git"; 196 - url = "https://go.googlesource.com/oauth2"; 197 - rev = "f047394b6d14284165300fd82dad67edb3a4d7f6"; 198 - sha256 = "1l1a2iz1nmfmzzbjj1h8066prag4jvjqh13iv1jdlh05fgv6769i"; 199 - }; 200 - } 201 - { 202 - goPackagePath = "golang.org/x/sys"; 203 - fetch = { 204 - type = "git"; 205 - url = "https://go.googlesource.com/sys"; 206 - rev = "a2e06a18b0d52d8cb2010e04b372a1965d8e3439"; 207 - sha256 = "0m0r2w2qk8jkdk21h52n66g4yqckmzpx3mph73cilkhvdfgwfd21"; 208 - }; 209 - } 210 - { 211 - goPackagePath = "golang.org/x/text"; 212 - fetch = { 213 - type = "git"; 214 - url = "https://go.googlesource.com/text"; 215 - rev = "19e51611da83d6be54ddafce4a4af510cb3e9ea4"; 216 - sha256 = "09pcfzx7nrma0gjv93jx57c28farf8m1qm4x07vk5505wlcgvvfl"; 217 - }; 218 - } 219 - { 220 - goPackagePath = "gopkg.in/yaml.v2"; 221 - fetch = { 222 - type = "git"; 223 - url = "https://gopkg.in/yaml.v2"; 224 - rev = "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b"; 225 - sha256 = "1hj2ag9knxflpjibck0n90jrhsrqz7qvad4qnif7jddyapi9bqzl"; 226 - }; 227 - } 228 - ]
+4 -4
pkgs/applications/misc/vul/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "vul"; 5 - version = "unstable-2020-02-15"; 5 + version = "unstable-2022-07-02"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "LukeSmithxyz"; 9 9 repo = pname; 10 - rev = "f6ebd8f6b6fb8a111e7b59470d6748fcbe71c559"; 11 - sha256 = "aUl4f82sGOWkEvTDNILDszj5hztDRvYpHVovFl4oOCc="; 10 + rev = "97efaedb79c9de62b6a19b04649fd8c00b85973f"; 11 + sha256 = "sha256-NwRUx7WVvexrCdPtckq4Szf5ISy7NVBHX8uAsRtbE+0="; 12 12 }; 13 13 14 14 makeFlags = [ ··· 19 19 description = "Latin Vulgate Bible on the Command Line"; 20 20 homepage = "https://github.com/LukeSmithxyz/vul"; 21 21 license = licenses.publicDomain; 22 - maintainers = [ maintainers.j0hax ]; 22 + maintainers = [ maintainers.j0hax maintainers.cafkafk ]; 23 23 }; 24 24 }
-2722
pkgs/applications/misc/zine/Cargo.lock.patch
··· 1 - +++ a/Cargo.lock 2022-08-05 16:01:20.004065609 +0530 2 - +++ b/Cargo.lock 2022-08-05 16:01:20.004065609 +0530 3 - @@ -0,0 +1,2719 @@ 4 - +# This file is automatically @generated by Cargo. 5 - +# It is not intended for manual editing. 6 - +version = 3 7 - + 8 - +[[package]] 9 - +name = "addr2line" 10 - +version = "0.17.0" 11 - +source = "registry+https://github.com/rust-lang/crates.io-index" 12 - +checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 13 - +dependencies = [ 14 - + "gimli", 15 - +] 16 - + 17 - +[[package]] 18 - +name = "adler" 19 - +version = "1.0.2" 20 - +source = "registry+https://github.com/rust-lang/crates.io-index" 21 - +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 22 - + 23 - +[[package]] 24 - +name = "ahash" 25 - +version = "0.7.6" 26 - +source = "registry+https://github.com/rust-lang/crates.io-index" 27 - +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 28 - +dependencies = [ 29 - + "getrandom 0.2.7", 30 - + "once_cell", 31 - + "version_check", 32 - +] 33 - + 34 - +[[package]] 35 - +name = "aho-corasick" 36 - +version = "0.7.18" 37 - +source = "registry+https://github.com/rust-lang/crates.io-index" 38 - +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 39 - +dependencies = [ 40 - + "memchr", 41 - +] 42 - + 43 - +[[package]] 44 - +name = "anyhow" 45 - +version = "1.0.59" 46 - +source = "registry+https://github.com/rust-lang/crates.io-index" 47 - +checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" 48 - +dependencies = [ 49 - + "backtrace", 50 - +] 51 - + 52 - +[[package]] 53 - +name = "autocfg" 54 - +version = "1.1.0" 55 - +source = "registry+https://github.com/rust-lang/crates.io-index" 56 - +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 57 - + 58 - +[[package]] 59 - +name = "backtrace" 60 - +version = "0.3.66" 61 - +source = "registry+https://github.com/rust-lang/crates.io-index" 62 - +checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 63 - +dependencies = [ 64 - + "addr2line", 65 - + "cc", 66 - + "cfg-if 1.0.0", 67 - + "libc", 68 - + "miniz_oxide", 69 - + "object", 70 - + "rustc-demangle", 71 - +] 72 - + 73 - +[[package]] 74 - +name = "base64" 75 - +version = "0.13.0" 76 - +source = "registry+https://github.com/rust-lang/crates.io-index" 77 - +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 78 - + 79 - +[[package]] 80 - +name = "bincode" 81 - +version = "1.3.3" 82 - +source = "registry+https://github.com/rust-lang/crates.io-index" 83 - +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 84 - +dependencies = [ 85 - + "serde", 86 - +] 87 - + 88 - +[[package]] 89 - +name = "bit-set" 90 - +version = "0.5.3" 91 - +source = "registry+https://github.com/rust-lang/crates.io-index" 92 - +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 93 - +dependencies = [ 94 - + "bit-vec", 95 - +] 96 - + 97 - +[[package]] 98 - +name = "bit-vec" 99 - +version = "0.6.3" 100 - +source = "registry+https://github.com/rust-lang/crates.io-index" 101 - +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 102 - + 103 - +[[package]] 104 - +name = "bitflags" 105 - +version = "1.3.2" 106 - +source = "registry+https://github.com/rust-lang/crates.io-index" 107 - +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 108 - + 109 - +[[package]] 110 - +name = "block-buffer" 111 - +version = "0.10.2" 112 - +source = "registry+https://github.com/rust-lang/crates.io-index" 113 - +checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 114 - +dependencies = [ 115 - + "generic-array", 116 - +] 117 - + 118 - +[[package]] 119 - +name = "bstr" 120 - +version = "0.2.17" 121 - +source = "registry+https://github.com/rust-lang/crates.io-index" 122 - +checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 123 - +dependencies = [ 124 - + "memchr", 125 - +] 126 - + 127 - +[[package]] 128 - +name = "bumpalo" 129 - +version = "3.10.0" 130 - +source = "registry+https://github.com/rust-lang/crates.io-index" 131 - +checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 132 - + 133 - +[[package]] 134 - +name = "byteorder" 135 - +version = "1.4.3" 136 - +source = "registry+https://github.com/rust-lang/crates.io-index" 137 - +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 138 - + 139 - +[[package]] 140 - +name = "bytes" 141 - +version = "1.2.1" 142 - +source = "registry+https://github.com/rust-lang/crates.io-index" 143 - +checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 144 - + 145 - +[[package]] 146 - +name = "cc" 147 - +version = "1.0.73" 148 - +source = "registry+https://github.com/rust-lang/crates.io-index" 149 - +checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 150 - + 151 - +[[package]] 152 - +name = "cfg-if" 153 - +version = "0.1.10" 154 - +source = "registry+https://github.com/rust-lang/crates.io-index" 155 - +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 156 - + 157 - +[[package]] 158 - +name = "cfg-if" 159 - +version = "1.0.0" 160 - +source = "registry+https://github.com/rust-lang/crates.io-index" 161 - +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 162 - + 163 - +[[package]] 164 - +name = "chrono" 165 - +version = "0.4.20" 166 - +source = "registry+https://github.com/rust-lang/crates.io-index" 167 - +checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" 168 - +dependencies = [ 169 - + "js-sys", 170 - + "num-integer", 171 - + "num-traits", 172 - + "wasm-bindgen", 173 - + "winapi 0.3.9", 174 - +] 175 - + 176 - +[[package]] 177 - +name = "chrono-tz" 178 - +version = "0.6.3" 179 - +source = "registry+https://github.com/rust-lang/crates.io-index" 180 - +checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde" 181 - +dependencies = [ 182 - + "chrono", 183 - + "chrono-tz-build", 184 - + "phf 0.11.0", 185 - +] 186 - + 187 - +[[package]] 188 - +name = "chrono-tz-build" 189 - +version = "0.0.3" 190 - +source = "registry+https://github.com/rust-lang/crates.io-index" 191 - +checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c" 192 - +dependencies = [ 193 - + "parse-zoneinfo", 194 - + "phf 0.11.0", 195 - + "phf_codegen 0.11.0", 196 - +] 197 - + 198 - +[[package]] 199 - +name = "clap" 200 - +version = "3.2.16" 201 - +source = "registry+https://github.com/rust-lang/crates.io-index" 202 - +checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9" 203 - +dependencies = [ 204 - + "bitflags", 205 - + "clap_derive", 206 - + "clap_lex", 207 - + "indexmap", 208 - + "once_cell", 209 - + "textwrap", 210 - +] 211 - + 212 - +[[package]] 213 - +name = "clap_derive" 214 - +version = "3.2.15" 215 - +source = "registry+https://github.com/rust-lang/crates.io-index" 216 - +checksum = "9ba52acd3b0a5c33aeada5cdaa3267cdc7c594a98731d4268cdc1532f4264cb4" 217 - +dependencies = [ 218 - + "heck", 219 - + "proc-macro-error", 220 - + "proc-macro2", 221 - + "quote", 222 - + "syn", 223 - +] 224 - + 225 - +[[package]] 226 - +name = "clap_lex" 227 - +version = "0.2.4" 228 - +source = "registry+https://github.com/rust-lang/crates.io-index" 229 - +checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 230 - +dependencies = [ 231 - + "os_str_bytes", 232 - +] 233 - + 234 - +[[package]] 235 - +name = "convert_case" 236 - +version = "0.4.0" 237 - +source = "registry+https://github.com/rust-lang/crates.io-index" 238 - +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 239 - + 240 - +[[package]] 241 - +name = "core-foundation" 242 - +version = "0.9.3" 243 - +source = "registry+https://github.com/rust-lang/crates.io-index" 244 - +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 245 - +dependencies = [ 246 - + "core-foundation-sys", 247 - + "libc", 248 - +] 249 - + 250 - +[[package]] 251 - +name = "core-foundation-sys" 252 - +version = "0.8.3" 253 - +source = "registry+https://github.com/rust-lang/crates.io-index" 254 - +checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 255 - + 256 - +[[package]] 257 - +name = "cpufeatures" 258 - +version = "0.2.2" 259 - +source = "registry+https://github.com/rust-lang/crates.io-index" 260 - +checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 261 - +dependencies = [ 262 - + "libc", 263 - +] 264 - + 265 - +[[package]] 266 - +name = "crc32fast" 267 - +version = "1.3.2" 268 - +source = "registry+https://github.com/rust-lang/crates.io-index" 269 - +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 270 - +dependencies = [ 271 - + "cfg-if 1.0.0", 272 - +] 273 - + 274 - +[[package]] 275 - +name = "crossbeam-channel" 276 - +version = "0.5.6" 277 - +source = "registry+https://github.com/rust-lang/crates.io-index" 278 - +checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 279 - +dependencies = [ 280 - + "cfg-if 1.0.0", 281 - + "crossbeam-utils", 282 - +] 283 - + 284 - +[[package]] 285 - +name = "crossbeam-deque" 286 - +version = "0.8.2" 287 - +source = "registry+https://github.com/rust-lang/crates.io-index" 288 - +checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 289 - +dependencies = [ 290 - + "cfg-if 1.0.0", 291 - + "crossbeam-epoch", 292 - + "crossbeam-utils", 293 - +] 294 - + 295 - +[[package]] 296 - +name = "crossbeam-epoch" 297 - +version = "0.9.10" 298 - +source = "registry+https://github.com/rust-lang/crates.io-index" 299 - +checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1" 300 - +dependencies = [ 301 - + "autocfg", 302 - + "cfg-if 1.0.0", 303 - + "crossbeam-utils", 304 - + "memoffset", 305 - + "once_cell", 306 - + "scopeguard", 307 - +] 308 - + 309 - +[[package]] 310 - +name = "crossbeam-utils" 311 - +version = "0.8.11" 312 - +source = "registry+https://github.com/rust-lang/crates.io-index" 313 - +checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 314 - +dependencies = [ 315 - + "cfg-if 1.0.0", 316 - + "once_cell", 317 - +] 318 - + 319 - +[[package]] 320 - +name = "crypto-common" 321 - +version = "0.1.6" 322 - +source = "registry+https://github.com/rust-lang/crates.io-index" 323 - +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 324 - +dependencies = [ 325 - + "generic-array", 326 - + "typenum", 327 - +] 328 - + 329 - +[[package]] 330 - +name = "cssparser" 331 - +version = "0.27.2" 332 - +source = "registry+https://github.com/rust-lang/crates.io-index" 333 - +checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 334 - +dependencies = [ 335 - + "cssparser-macros", 336 - + "dtoa-short", 337 - + "itoa 0.4.8", 338 - + "matches", 339 - + "phf 0.8.0", 340 - + "proc-macro2", 341 - + "quote", 342 - + "smallvec", 343 - + "syn", 344 - +] 345 - + 346 - +[[package]] 347 - +name = "cssparser-macros" 348 - +version = "0.6.0" 349 - +source = "registry+https://github.com/rust-lang/crates.io-index" 350 - +checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 351 - +dependencies = [ 352 - + "quote", 353 - + "syn", 354 - +] 355 - + 356 - +[[package]] 357 - +name = "derive_more" 358 - +version = "0.99.17" 359 - +source = "registry+https://github.com/rust-lang/crates.io-index" 360 - +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 361 - +dependencies = [ 362 - + "convert_case", 363 - + "proc-macro2", 364 - + "quote", 365 - + "rustc_version", 366 - + "syn", 367 - +] 368 - + 369 - +[[package]] 370 - +name = "deunicode" 371 - +version = "0.4.3" 372 - +source = "registry+https://github.com/rust-lang/crates.io-index" 373 - +checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690" 374 - + 375 - +[[package]] 376 - +name = "digest" 377 - +version = "0.10.3" 378 - +source = "registry+https://github.com/rust-lang/crates.io-index" 379 - +checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 380 - +dependencies = [ 381 - + "block-buffer", 382 - + "crypto-common", 383 - +] 384 - + 385 - +[[package]] 386 - +name = "dtoa" 387 - +version = "0.4.8" 388 - +source = "registry+https://github.com/rust-lang/crates.io-index" 389 - +checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 390 - + 391 - +[[package]] 392 - +name = "dtoa-short" 393 - +version = "0.3.3" 394 - +source = "registry+https://github.com/rust-lang/crates.io-index" 395 - +checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 396 - +dependencies = [ 397 - + "dtoa", 398 - +] 399 - + 400 - +[[package]] 401 - +name = "either" 402 - +version = "1.7.0" 403 - +source = "registry+https://github.com/rust-lang/crates.io-index" 404 - +checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be" 405 - + 406 - +[[package]] 407 - +name = "encoding_rs" 408 - +version = "0.8.31" 409 - +source = "registry+https://github.com/rust-lang/crates.io-index" 410 - +checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 411 - +dependencies = [ 412 - + "cfg-if 1.0.0", 413 - +] 414 - + 415 - +[[package]] 416 - +name = "fancy-regex" 417 - +version = "0.7.1" 418 - +source = "registry+https://github.com/rust-lang/crates.io-index" 419 - +checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf" 420 - +dependencies = [ 421 - + "bit-set", 422 - + "regex", 423 - +] 424 - + 425 - +[[package]] 426 - +name = "fastrand" 427 - +version = "1.8.0" 428 - +source = "registry+https://github.com/rust-lang/crates.io-index" 429 - +checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 430 - +dependencies = [ 431 - + "instant", 432 - +] 433 - + 434 - +[[package]] 435 - +name = "filetime" 436 - +version = "0.2.17" 437 - +source = "registry+https://github.com/rust-lang/crates.io-index" 438 - +checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 439 - +dependencies = [ 440 - + "cfg-if 1.0.0", 441 - + "libc", 442 - + "redox_syscall", 443 - + "windows-sys", 444 - +] 445 - + 446 - +[[package]] 447 - +name = "flate2" 448 - +version = "1.0.24" 449 - +source = "registry+https://github.com/rust-lang/crates.io-index" 450 - +checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 451 - +dependencies = [ 452 - + "crc32fast", 453 - + "miniz_oxide", 454 - +] 455 - + 456 - +[[package]] 457 - +name = "fluent" 458 - +version = "0.16.0" 459 - +source = "registry+https://github.com/rust-lang/crates.io-index" 460 - +checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 461 - +dependencies = [ 462 - + "fluent-bundle", 463 - + "unic-langid", 464 - +] 465 - + 466 - +[[package]] 467 - +name = "fluent-bundle" 468 - +version = "0.15.2" 469 - +source = "registry+https://github.com/rust-lang/crates.io-index" 470 - +checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 471 - +dependencies = [ 472 - + "fluent-langneg", 473 - + "fluent-syntax", 474 - + "intl-memoizer", 475 - + "intl_pluralrules", 476 - + "rustc-hash", 477 - + "self_cell", 478 - + "smallvec", 479 - + "unic-langid", 480 - +] 481 - + 482 - +[[package]] 483 - +name = "fluent-langneg" 484 - +version = "0.13.0" 485 - +source = "registry+https://github.com/rust-lang/crates.io-index" 486 - +checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" 487 - +dependencies = [ 488 - + "unic-langid", 489 - +] 490 - + 491 - +[[package]] 492 - +name = "fluent-syntax" 493 - +version = "0.11.0" 494 - +source = "registry+https://github.com/rust-lang/crates.io-index" 495 - +checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 496 - +dependencies = [ 497 - + "thiserror", 498 - +] 499 - + 500 - +[[package]] 501 - +name = "fnv" 502 - +version = "1.0.7" 503 - +source = "registry+https://github.com/rust-lang/crates.io-index" 504 - +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 505 - + 506 - +[[package]] 507 - +name = "foreign-types" 508 - +version = "0.3.2" 509 - +source = "registry+https://github.com/rust-lang/crates.io-index" 510 - +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 511 - +dependencies = [ 512 - + "foreign-types-shared", 513 - +] 514 - + 515 - +[[package]] 516 - +name = "foreign-types-shared" 517 - +version = "0.1.1" 518 - +source = "registry+https://github.com/rust-lang/crates.io-index" 519 - +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 520 - + 521 - +[[package]] 522 - +name = "fsevent" 523 - +version = "0.4.0" 524 - +source = "registry+https://github.com/rust-lang/crates.io-index" 525 - +checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" 526 - +dependencies = [ 527 - + "bitflags", 528 - + "fsevent-sys", 529 - +] 530 - + 531 - +[[package]] 532 - +name = "fsevent-sys" 533 - +version = "2.0.1" 534 - +source = "registry+https://github.com/rust-lang/crates.io-index" 535 - +checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" 536 - +dependencies = [ 537 - + "libc", 538 - +] 539 - + 540 - +[[package]] 541 - +name = "fuchsia-zircon" 542 - +version = "0.3.3" 543 - +source = "registry+https://github.com/rust-lang/crates.io-index" 544 - +checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 545 - +dependencies = [ 546 - + "bitflags", 547 - + "fuchsia-zircon-sys", 548 - +] 549 - + 550 - +[[package]] 551 - +name = "fuchsia-zircon-sys" 552 - +version = "0.3.3" 553 - +source = "registry+https://github.com/rust-lang/crates.io-index" 554 - +checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 555 - + 556 - +[[package]] 557 - +name = "futf" 558 - +version = "0.1.5" 559 - +source = "registry+https://github.com/rust-lang/crates.io-index" 560 - +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 561 - +dependencies = [ 562 - + "mac", 563 - + "new_debug_unreachable", 564 - +] 565 - + 566 - +[[package]] 567 - +name = "futures-channel" 568 - +version = "0.3.21" 569 - +source = "registry+https://github.com/rust-lang/crates.io-index" 570 - +checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 571 - +dependencies = [ 572 - + "futures-core", 573 - +] 574 - + 575 - +[[package]] 576 - +name = "futures-core" 577 - +version = "0.3.21" 578 - +source = "registry+https://github.com/rust-lang/crates.io-index" 579 - +checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 580 - + 581 - +[[package]] 582 - +name = "futures-sink" 583 - +version = "0.3.21" 584 - +source = "registry+https://github.com/rust-lang/crates.io-index" 585 - +checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 586 - + 587 - +[[package]] 588 - +name = "futures-task" 589 - +version = "0.3.21" 590 - +source = "registry+https://github.com/rust-lang/crates.io-index" 591 - +checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 592 - + 593 - +[[package]] 594 - +name = "futures-util" 595 - +version = "0.3.21" 596 - +source = "registry+https://github.com/rust-lang/crates.io-index" 597 - +checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 598 - +dependencies = [ 599 - + "futures-core", 600 - + "futures-task", 601 - + "pin-project-lite", 602 - + "pin-utils", 603 - +] 604 - + 605 - +[[package]] 606 - +name = "fxhash" 607 - +version = "0.2.1" 608 - +source = "registry+https://github.com/rust-lang/crates.io-index" 609 - +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 610 - +dependencies = [ 611 - + "byteorder", 612 - +] 613 - + 614 - +[[package]] 615 - +name = "generic-array" 616 - +version = "0.14.6" 617 - +source = "registry+https://github.com/rust-lang/crates.io-index" 618 - +checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 619 - +dependencies = [ 620 - + "typenum", 621 - + "version_check", 622 - +] 623 - + 624 - +[[package]] 625 - +name = "getopts" 626 - +version = "0.2.21" 627 - +source = "registry+https://github.com/rust-lang/crates.io-index" 628 - +checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 629 - +dependencies = [ 630 - + "unicode-width", 631 - +] 632 - + 633 - +[[package]] 634 - +name = "getrandom" 635 - +version = "0.1.16" 636 - +source = "registry+https://github.com/rust-lang/crates.io-index" 637 - +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 638 - +dependencies = [ 639 - + "cfg-if 1.0.0", 640 - + "libc", 641 - + "wasi 0.9.0+wasi-snapshot-preview1", 642 - +] 643 - + 644 - +[[package]] 645 - +name = "getrandom" 646 - +version = "0.2.7" 647 - +source = "registry+https://github.com/rust-lang/crates.io-index" 648 - +checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 649 - +dependencies = [ 650 - + "cfg-if 1.0.0", 651 - + "libc", 652 - + "wasi 0.11.0+wasi-snapshot-preview1", 653 - +] 654 - + 655 - +[[package]] 656 - +name = "gimli" 657 - +version = "0.26.2" 658 - +source = "registry+https://github.com/rust-lang/crates.io-index" 659 - +checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 660 - + 661 - +[[package]] 662 - +name = "globset" 663 - +version = "0.4.9" 664 - +source = "registry+https://github.com/rust-lang/crates.io-index" 665 - +checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 666 - +dependencies = [ 667 - + "aho-corasick", 668 - + "bstr", 669 - + "fnv", 670 - + "log", 671 - + "regex", 672 - +] 673 - + 674 - +[[package]] 675 - +name = "globwalk" 676 - +version = "0.8.1" 677 - +source = "registry+https://github.com/rust-lang/crates.io-index" 678 - +checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc" 679 - +dependencies = [ 680 - + "bitflags", 681 - + "ignore", 682 - + "walkdir", 683 - +] 684 - + 685 - +[[package]] 686 - +name = "hashbrown" 687 - +version = "0.12.3" 688 - +source = "registry+https://github.com/rust-lang/crates.io-index" 689 - +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 690 - +dependencies = [ 691 - + "ahash", 692 - +] 693 - + 694 - +[[package]] 695 - +name = "heck" 696 - +version = "0.4.0" 697 - +source = "registry+https://github.com/rust-lang/crates.io-index" 698 - +checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 699 - + 700 - +[[package]] 701 - +name = "hermit-abi" 702 - +version = "0.1.19" 703 - +source = "registry+https://github.com/rust-lang/crates.io-index" 704 - +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 705 - +dependencies = [ 706 - + "libc", 707 - +] 708 - + 709 - +[[package]] 710 - +name = "html5ever" 711 - +version = "0.25.2" 712 - +source = "registry+https://github.com/rust-lang/crates.io-index" 713 - +checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 714 - +dependencies = [ 715 - + "log", 716 - + "mac", 717 - + "markup5ever", 718 - + "proc-macro2", 719 - + "quote", 720 - + "syn", 721 - +] 722 - + 723 - +[[package]] 724 - +name = "http" 725 - +version = "0.2.8" 726 - +source = "registry+https://github.com/rust-lang/crates.io-index" 727 - +checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 728 - +dependencies = [ 729 - + "bytes", 730 - + "fnv", 731 - + "itoa 1.0.3", 732 - +] 733 - + 734 - +[[package]] 735 - +name = "http-body" 736 - +version = "0.4.5" 737 - +source = "registry+https://github.com/rust-lang/crates.io-index" 738 - +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 739 - +dependencies = [ 740 - + "bytes", 741 - + "http", 742 - + "pin-project-lite", 743 - +] 744 - + 745 - +[[package]] 746 - +name = "http-range-header" 747 - +version = "0.3.0" 748 - +source = "registry+https://github.com/rust-lang/crates.io-index" 749 - +checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 750 - + 751 - +[[package]] 752 - +name = "httparse" 753 - +version = "1.7.1" 754 - +source = "registry+https://github.com/rust-lang/crates.io-index" 755 - +checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 756 - + 757 - +[[package]] 758 - +name = "httpdate" 759 - +version = "1.0.2" 760 - +source = "registry+https://github.com/rust-lang/crates.io-index" 761 - +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 762 - + 763 - +[[package]] 764 - +name = "humansize" 765 - +version = "1.1.1" 766 - +source = "registry+https://github.com/rust-lang/crates.io-index" 767 - +checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026" 768 - + 769 - +[[package]] 770 - +name = "hyper" 771 - +version = "0.14.20" 772 - +source = "registry+https://github.com/rust-lang/crates.io-index" 773 - +checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" 774 - +dependencies = [ 775 - + "bytes", 776 - + "futures-channel", 777 - + "futures-core", 778 - + "futures-util", 779 - + "http", 780 - + "http-body", 781 - + "httparse", 782 - + "httpdate", 783 - + "itoa 1.0.3", 784 - + "pin-project-lite", 785 - + "socket2", 786 - + "tokio", 787 - + "tower-service", 788 - + "tracing", 789 - + "want", 790 - +] 791 - + 792 - +[[package]] 793 - +name = "hyper-tls" 794 - +version = "0.5.0" 795 - +source = "registry+https://github.com/rust-lang/crates.io-index" 796 - +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 797 - +dependencies = [ 798 - + "bytes", 799 - + "hyper", 800 - + "native-tls", 801 - + "tokio", 802 - + "tokio-native-tls", 803 - +] 804 - + 805 - +[[package]] 806 - +name = "ignore" 807 - +version = "0.4.18" 808 - +source = "registry+https://github.com/rust-lang/crates.io-index" 809 - +checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 810 - +dependencies = [ 811 - + "crossbeam-utils", 812 - + "globset", 813 - + "lazy_static", 814 - + "log", 815 - + "memchr", 816 - + "regex", 817 - + "same-file", 818 - + "thread_local", 819 - + "walkdir", 820 - + "winapi-util", 821 - +] 822 - + 823 - +[[package]] 824 - +name = "include_dir" 825 - +version = "0.7.2" 826 - +source = "registry+https://github.com/rust-lang/crates.io-index" 827 - +checksum = "482a2e29200b7eed25d7fdbd14423326760b7f6658d21a4cf12d55a50713c69f" 828 - +dependencies = [ 829 - + "include_dir_macros", 830 - +] 831 - + 832 - +[[package]] 833 - +name = "include_dir_macros" 834 - +version = "0.7.2" 835 - +source = "registry+https://github.com/rust-lang/crates.io-index" 836 - +checksum = "5e074c19deab2501407c91ba1860fa3d6820bfde307db6d8cb851b55a10be89b" 837 - +dependencies = [ 838 - + "proc-macro2", 839 - + "quote", 840 - +] 841 - + 842 - +[[package]] 843 - +name = "indexmap" 844 - +version = "1.9.1" 845 - +source = "registry+https://github.com/rust-lang/crates.io-index" 846 - +checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 847 - +dependencies = [ 848 - + "autocfg", 849 - + "hashbrown", 850 - +] 851 - + 852 - +[[package]] 853 - +name = "inotify" 854 - +version = "0.7.1" 855 - +source = "registry+https://github.com/rust-lang/crates.io-index" 856 - +checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f" 857 - +dependencies = [ 858 - + "bitflags", 859 - + "inotify-sys", 860 - + "libc", 861 - +] 862 - + 863 - +[[package]] 864 - +name = "inotify-sys" 865 - +version = "0.1.5" 866 - +source = "registry+https://github.com/rust-lang/crates.io-index" 867 - +checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 868 - +dependencies = [ 869 - + "libc", 870 - +] 871 - + 872 - +[[package]] 873 - +name = "instant" 874 - +version = "0.1.12" 875 - +source = "registry+https://github.com/rust-lang/crates.io-index" 876 - +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 877 - +dependencies = [ 878 - + "cfg-if 1.0.0", 879 - +] 880 - + 881 - +[[package]] 882 - +name = "intl-memoizer" 883 - +version = "0.5.1" 884 - +source = "registry+https://github.com/rust-lang/crates.io-index" 885 - +checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 886 - +dependencies = [ 887 - + "type-map", 888 - + "unic-langid", 889 - +] 890 - + 891 - +[[package]] 892 - +name = "intl_pluralrules" 893 - +version = "7.0.1" 894 - +source = "registry+https://github.com/rust-lang/crates.io-index" 895 - +checksum = "b18f988384267d7066cc2be425e6faf352900652c046b6971d2e228d3b1c5ecf" 896 - +dependencies = [ 897 - + "tinystr", 898 - + "unic-langid", 899 - +] 900 - + 901 - +[[package]] 902 - +name = "iovec" 903 - +version = "0.1.4" 904 - +source = "registry+https://github.com/rust-lang/crates.io-index" 905 - +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 906 - +dependencies = [ 907 - + "libc", 908 - +] 909 - + 910 - +[[package]] 911 - +name = "itoa" 912 - +version = "0.4.8" 913 - +source = "registry+https://github.com/rust-lang/crates.io-index" 914 - +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 915 - + 916 - +[[package]] 917 - +name = "itoa" 918 - +version = "1.0.3" 919 - +source = "registry+https://github.com/rust-lang/crates.io-index" 920 - +checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 921 - + 922 - +[[package]] 923 - +name = "js-sys" 924 - +version = "0.3.59" 925 - +source = "registry+https://github.com/rust-lang/crates.io-index" 926 - +checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 927 - +dependencies = [ 928 - + "wasm-bindgen", 929 - +] 930 - + 931 - +[[package]] 932 - +name = "kernel32-sys" 933 - +version = "0.2.2" 934 - +source = "registry+https://github.com/rust-lang/crates.io-index" 935 - +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 936 - +dependencies = [ 937 - + "winapi 0.2.8", 938 - + "winapi-build", 939 - +] 940 - + 941 - +[[package]] 942 - +name = "lazy_static" 943 - +version = "1.4.0" 944 - +source = "registry+https://github.com/rust-lang/crates.io-index" 945 - +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 946 - + 947 - +[[package]] 948 - +name = "lazycell" 949 - +version = "1.3.0" 950 - +source = "registry+https://github.com/rust-lang/crates.io-index" 951 - +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 952 - + 953 - +[[package]] 954 - +name = "libc" 955 - +version = "0.2.127" 956 - +source = "registry+https://github.com/rust-lang/crates.io-index" 957 - +checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b" 958 - + 959 - +[[package]] 960 - +name = "line-wrap" 961 - +version = "0.1.1" 962 - +source = "registry+https://github.com/rust-lang/crates.io-index" 963 - +checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 964 - +dependencies = [ 965 - + "safemem", 966 - +] 967 - + 968 - +[[package]] 969 - +name = "linked-hash-map" 970 - +version = "0.5.6" 971 - +source = "registry+https://github.com/rust-lang/crates.io-index" 972 - +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 973 - + 974 - +[[package]] 975 - +name = "lock_api" 976 - +version = "0.4.7" 977 - +source = "registry+https://github.com/rust-lang/crates.io-index" 978 - +checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 979 - +dependencies = [ 980 - + "autocfg", 981 - + "scopeguard", 982 - +] 983 - + 984 - +[[package]] 985 - +name = "log" 986 - +version = "0.4.17" 987 - +source = "registry+https://github.com/rust-lang/crates.io-index" 988 - +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 989 - +dependencies = [ 990 - + "cfg-if 1.0.0", 991 - +] 992 - + 993 - +[[package]] 994 - +name = "lol_html" 995 - +version = "0.3.1" 996 - +source = "registry+https://github.com/rust-lang/crates.io-index" 997 - +checksum = "09ff2adf9c54f4de7d66a9177ea7d27d5b8108503bb03d5b719869b8f4bc2ab2" 998 - +dependencies = [ 999 - + "bitflags", 1000 - + "cfg-if 1.0.0", 1001 - + "cssparser", 1002 - + "encoding_rs", 1003 - + "hashbrown", 1004 - + "lazy_static", 1005 - + "lazycell", 1006 - + "memchr", 1007 - + "safemem", 1008 - + "selectors", 1009 - + "thiserror", 1010 - +] 1011 - + 1012 - +[[package]] 1013 - +name = "mac" 1014 - +version = "0.1.1" 1015 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1016 - +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1017 - + 1018 - +[[package]] 1019 - +name = "markup5ever" 1020 - +version = "0.10.1" 1021 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1022 - +checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1023 - +dependencies = [ 1024 - + "log", 1025 - + "phf 0.8.0", 1026 - + "phf_codegen 0.8.0", 1027 - + "string_cache", 1028 - + "string_cache_codegen", 1029 - + "tendril", 1030 - +] 1031 - + 1032 - +[[package]] 1033 - +name = "markup5ever_rcdom" 1034 - +version = "0.1.0" 1035 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - +checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b" 1037 - +dependencies = [ 1038 - + "html5ever", 1039 - + "markup5ever", 1040 - + "tendril", 1041 - + "xml5ever", 1042 - +] 1043 - + 1044 - +[[package]] 1045 - +name = "matches" 1046 - +version = "0.1.9" 1047 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - +checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1049 - + 1050 - +[[package]] 1051 - +name = "memchr" 1052 - +version = "2.5.0" 1053 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1055 - + 1056 - +[[package]] 1057 - +name = "memoffset" 1058 - +version = "0.6.5" 1059 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1061 - +dependencies = [ 1062 - + "autocfg", 1063 - +] 1064 - + 1065 - +[[package]] 1066 - +name = "mime" 1067 - +version = "0.3.16" 1068 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1069 - +checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1070 - + 1071 - +[[package]] 1072 - +name = "mime_guess" 1073 - +version = "2.0.4" 1074 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1075 - +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1076 - +dependencies = [ 1077 - + "mime", 1078 - + "unicase", 1079 - +] 1080 - + 1081 - +[[package]] 1082 - +name = "miniz_oxide" 1083 - +version = "0.5.3" 1084 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1085 - +checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1086 - +dependencies = [ 1087 - + "adler", 1088 - +] 1089 - + 1090 - +[[package]] 1091 - +name = "mio" 1092 - +version = "0.6.23" 1093 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - +checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 1095 - +dependencies = [ 1096 - + "cfg-if 0.1.10", 1097 - + "fuchsia-zircon", 1098 - + "fuchsia-zircon-sys", 1099 - + "iovec", 1100 - + "kernel32-sys", 1101 - + "libc", 1102 - + "log", 1103 - + "miow", 1104 - + "net2", 1105 - + "slab", 1106 - + "winapi 0.2.8", 1107 - +] 1108 - + 1109 - +[[package]] 1110 - +name = "mio" 1111 - +version = "0.8.4" 1112 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - +checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" 1114 - +dependencies = [ 1115 - + "libc", 1116 - + "log", 1117 - + "wasi 0.11.0+wasi-snapshot-preview1", 1118 - + "windows-sys", 1119 - +] 1120 - + 1121 - +[[package]] 1122 - +name = "mio-extras" 1123 - +version = "2.0.6" 1124 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1125 - +checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" 1126 - +dependencies = [ 1127 - + "lazycell", 1128 - + "log", 1129 - + "mio 0.6.23", 1130 - + "slab", 1131 - +] 1132 - + 1133 - +[[package]] 1134 - +name = "miow" 1135 - +version = "0.2.2" 1136 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1137 - +checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 1138 - +dependencies = [ 1139 - + "kernel32-sys", 1140 - + "net2", 1141 - + "winapi 0.2.8", 1142 - + "ws2_32-sys", 1143 - +] 1144 - + 1145 - +[[package]] 1146 - +name = "native-tls" 1147 - +version = "0.2.10" 1148 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - +checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1150 - +dependencies = [ 1151 - + "lazy_static", 1152 - + "libc", 1153 - + "log", 1154 - + "openssl", 1155 - + "openssl-probe", 1156 - + "openssl-sys", 1157 - + "schannel", 1158 - + "security-framework", 1159 - + "security-framework-sys", 1160 - + "tempfile", 1161 - +] 1162 - + 1163 - +[[package]] 1164 - +name = "net2" 1165 - +version = "0.2.37" 1166 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - +checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" 1168 - +dependencies = [ 1169 - + "cfg-if 0.1.10", 1170 - + "libc", 1171 - + "winapi 0.3.9", 1172 - +] 1173 - + 1174 - +[[package]] 1175 - +name = "new_debug_unreachable" 1176 - +version = "1.0.4" 1177 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - +checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1179 - + 1180 - +[[package]] 1181 - +name = "nodrop" 1182 - +version = "0.1.14" 1183 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1184 - +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1185 - + 1186 - +[[package]] 1187 - +name = "notify" 1188 - +version = "4.0.17" 1189 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - +checksum = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257" 1191 - +dependencies = [ 1192 - + "bitflags", 1193 - + "filetime", 1194 - + "fsevent", 1195 - + "fsevent-sys", 1196 - + "inotify", 1197 - + "libc", 1198 - + "mio 0.6.23", 1199 - + "mio-extras", 1200 - + "walkdir", 1201 - + "winapi 0.3.9", 1202 - +] 1203 - + 1204 - +[[package]] 1205 - +name = "num-integer" 1206 - +version = "0.1.45" 1207 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1208 - +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1209 - +dependencies = [ 1210 - + "autocfg", 1211 - + "num-traits", 1212 - +] 1213 - + 1214 - +[[package]] 1215 - +name = "num-traits" 1216 - +version = "0.2.15" 1217 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1218 - +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1219 - +dependencies = [ 1220 - + "autocfg", 1221 - +] 1222 - + 1223 - +[[package]] 1224 - +name = "num_cpus" 1225 - +version = "1.13.1" 1226 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1227 - +checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1228 - +dependencies = [ 1229 - + "hermit-abi", 1230 - + "libc", 1231 - +] 1232 - + 1233 - +[[package]] 1234 - +name = "num_threads" 1235 - +version = "0.1.6" 1236 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1237 - +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1238 - +dependencies = [ 1239 - + "libc", 1240 - +] 1241 - + 1242 - +[[package]] 1243 - +name = "object" 1244 - +version = "0.29.0" 1245 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - +checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 1247 - +dependencies = [ 1248 - + "memchr", 1249 - +] 1250 - + 1251 - +[[package]] 1252 - +name = "once_cell" 1253 - +version = "1.13.0" 1254 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1255 - +checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 1256 - + 1257 - +[[package]] 1258 - +name = "openssl" 1259 - +version = "0.10.41" 1260 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1261 - +checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" 1262 - +dependencies = [ 1263 - + "bitflags", 1264 - + "cfg-if 1.0.0", 1265 - + "foreign-types", 1266 - + "libc", 1267 - + "once_cell", 1268 - + "openssl-macros", 1269 - + "openssl-sys", 1270 - +] 1271 - + 1272 - +[[package]] 1273 - +name = "openssl-macros" 1274 - +version = "0.1.0" 1275 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1276 - +checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1277 - +dependencies = [ 1278 - + "proc-macro2", 1279 - + "quote", 1280 - + "syn", 1281 - +] 1282 - + 1283 - +[[package]] 1284 - +name = "openssl-probe" 1285 - +version = "0.1.5" 1286 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1287 - +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1288 - + 1289 - +[[package]] 1290 - +name = "openssl-src" 1291 - +version = "111.22.0+1.1.1q" 1292 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1293 - +checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853" 1294 - +dependencies = [ 1295 - + "cc", 1296 - +] 1297 - + 1298 - +[[package]] 1299 - +name = "openssl-sys" 1300 - +version = "0.9.75" 1301 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1302 - +checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" 1303 - +dependencies = [ 1304 - + "autocfg", 1305 - + "cc", 1306 - + "libc", 1307 - + "openssl-src", 1308 - + "pkg-config", 1309 - + "vcpkg", 1310 - +] 1311 - + 1312 - +[[package]] 1313 - +name = "os_str_bytes" 1314 - +version = "6.2.0" 1315 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1316 - +checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4" 1317 - + 1318 - +[[package]] 1319 - +name = "parking_lot" 1320 - +version = "0.12.1" 1321 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1322 - +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1323 - +dependencies = [ 1324 - + "lock_api", 1325 - + "parking_lot_core", 1326 - +] 1327 - + 1328 - +[[package]] 1329 - +name = "parking_lot_core" 1330 - +version = "0.9.3" 1331 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1332 - +checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1333 - +dependencies = [ 1334 - + "cfg-if 1.0.0", 1335 - + "libc", 1336 - + "redox_syscall", 1337 - + "smallvec", 1338 - + "windows-sys", 1339 - +] 1340 - + 1341 - +[[package]] 1342 - +name = "parse-zoneinfo" 1343 - +version = "0.3.0" 1344 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - +checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41" 1346 - +dependencies = [ 1347 - + "regex", 1348 - +] 1349 - + 1350 - +[[package]] 1351 - +name = "percent-encoding" 1352 - +version = "2.1.0" 1353 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1354 - +checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1355 - + 1356 - +[[package]] 1357 - +name = "pest" 1358 - +version = "2.2.1" 1359 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1360 - +checksum = "69486e2b8c2d2aeb9762db7b4e00b0331156393555cff467f4163ff06821eef8" 1361 - +dependencies = [ 1362 - + "thiserror", 1363 - + "ucd-trie", 1364 - +] 1365 - + 1366 - +[[package]] 1367 - +name = "pest_derive" 1368 - +version = "2.2.1" 1369 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1370 - +checksum = "b13570633aff33c6d22ce47dd566b10a3b9122c2fe9d8e7501895905be532b91" 1371 - +dependencies = [ 1372 - + "pest", 1373 - + "pest_generator", 1374 - +] 1375 - + 1376 - +[[package]] 1377 - +name = "pest_generator" 1378 - +version = "2.2.1" 1379 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - +checksum = "b3c567e5702efdc79fb18859ea74c3eb36e14c43da7b8c1f098a4ed6514ec7a0" 1381 - +dependencies = [ 1382 - + "pest", 1383 - + "pest_meta", 1384 - + "proc-macro2", 1385 - + "quote", 1386 - + "syn", 1387 - +] 1388 - + 1389 - +[[package]] 1390 - +name = "pest_meta" 1391 - +version = "2.2.1" 1392 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1393 - +checksum = "5eb32be5ee3bbdafa8c7a18b0a8a8d962b66cfa2ceee4037f49267a50ee821fe" 1394 - +dependencies = [ 1395 - + "once_cell", 1396 - + "pest", 1397 - + "sha-1", 1398 - +] 1399 - + 1400 - +[[package]] 1401 - +name = "phf" 1402 - +version = "0.8.0" 1403 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1405 - +dependencies = [ 1406 - + "phf_macros", 1407 - + "phf_shared 0.8.0", 1408 - + "proc-macro-hack", 1409 - +] 1410 - + 1411 - +[[package]] 1412 - +name = "phf" 1413 - +version = "0.11.0" 1414 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1415 - +checksum = "4724fa946c8d1e7cd881bd3dbee63ce32fc1e9e191e35786b3dc1320a3f68131" 1416 - +dependencies = [ 1417 - + "phf_shared 0.11.0", 1418 - +] 1419 - + 1420 - +[[package]] 1421 - +name = "phf_codegen" 1422 - +version = "0.8.0" 1423 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1424 - +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1425 - +dependencies = [ 1426 - + "phf_generator 0.8.0", 1427 - + "phf_shared 0.8.0", 1428 - +] 1429 - + 1430 - +[[package]] 1431 - +name = "phf_codegen" 1432 - +version = "0.11.0" 1433 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - +checksum = "32ba0c43d7a1b6492b2924a62290cfd83987828af037b0743b38e6ab092aee58" 1435 - +dependencies = [ 1436 - + "phf_generator 0.11.0", 1437 - + "phf_shared 0.11.0", 1438 - +] 1439 - + 1440 - +[[package]] 1441 - +name = "phf_generator" 1442 - +version = "0.8.0" 1443 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1445 - +dependencies = [ 1446 - + "phf_shared 0.8.0", 1447 - + "rand 0.7.3", 1448 - +] 1449 - + 1450 - +[[package]] 1451 - +name = "phf_generator" 1452 - +version = "0.10.0" 1453 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1455 - +dependencies = [ 1456 - + "phf_shared 0.10.0", 1457 - + "rand 0.8.5", 1458 - +] 1459 - + 1460 - +[[package]] 1461 - +name = "phf_generator" 1462 - +version = "0.11.0" 1463 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1464 - +checksum = "5b450720b6f75cfbfabc195814bd3765f337a4f9a83186f8537297cac12f6705" 1465 - +dependencies = [ 1466 - + "phf_shared 0.11.0", 1467 - + "rand 0.8.5", 1468 - +] 1469 - + 1470 - +[[package]] 1471 - +name = "phf_macros" 1472 - +version = "0.8.0" 1473 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1474 - +checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1475 - +dependencies = [ 1476 - + "phf_generator 0.8.0", 1477 - + "phf_shared 0.8.0", 1478 - + "proc-macro-hack", 1479 - + "proc-macro2", 1480 - + "quote", 1481 - + "syn", 1482 - +] 1483 - + 1484 - +[[package]] 1485 - +name = "phf_shared" 1486 - +version = "0.8.0" 1487 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1488 - +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1489 - +dependencies = [ 1490 - + "siphasher", 1491 - +] 1492 - + 1493 - +[[package]] 1494 - +name = "phf_shared" 1495 - +version = "0.10.0" 1496 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1498 - +dependencies = [ 1499 - + "siphasher", 1500 - +] 1501 - + 1502 - +[[package]] 1503 - +name = "phf_shared" 1504 - +version = "0.11.0" 1505 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - +checksum = "9dd5609d4b2df87167f908a32e1b146ce309c16cf35df76bc11f440b756048e4" 1507 - +dependencies = [ 1508 - + "siphasher", 1509 - + "uncased", 1510 - +] 1511 - + 1512 - +[[package]] 1513 - +name = "pin-project" 1514 - +version = "1.0.11" 1515 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - +checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260" 1517 - +dependencies = [ 1518 - + "pin-project-internal", 1519 - +] 1520 - + 1521 - +[[package]] 1522 - +name = "pin-project-internal" 1523 - +version = "1.0.11" 1524 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - +checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74" 1526 - +dependencies = [ 1527 - + "proc-macro2", 1528 - + "quote", 1529 - + "syn", 1530 - +] 1531 - + 1532 - +[[package]] 1533 - +name = "pin-project-lite" 1534 - +version = "0.2.9" 1535 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1536 - +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1537 - + 1538 - +[[package]] 1539 - +name = "pin-utils" 1540 - +version = "0.1.0" 1541 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1543 - + 1544 - +[[package]] 1545 - +name = "pkg-config" 1546 - +version = "0.3.25" 1547 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - +checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1549 - + 1550 - +[[package]] 1551 - +name = "plist" 1552 - +version = "1.3.1" 1553 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1554 - +checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" 1555 - +dependencies = [ 1556 - + "base64", 1557 - + "indexmap", 1558 - + "line-wrap", 1559 - + "serde", 1560 - + "time 0.3.12", 1561 - + "xml-rs", 1562 - +] 1563 - + 1564 - +[[package]] 1565 - +name = "ppv-lite86" 1566 - +version = "0.2.16" 1567 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1568 - +checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1569 - + 1570 - +[[package]] 1571 - +name = "precomputed-hash" 1572 - +version = "0.1.1" 1573 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1575 - + 1576 - +[[package]] 1577 - +name = "proc-macro-error" 1578 - +version = "1.0.4" 1579 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1581 - +dependencies = [ 1582 - + "proc-macro-error-attr", 1583 - + "proc-macro2", 1584 - + "quote", 1585 - + "syn", 1586 - + "version_check", 1587 - +] 1588 - + 1589 - +[[package]] 1590 - +name = "proc-macro-error-attr" 1591 - +version = "1.0.4" 1592 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1593 - +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1594 - +dependencies = [ 1595 - + "proc-macro2", 1596 - + "quote", 1597 - + "version_check", 1598 - +] 1599 - + 1600 - +[[package]] 1601 - +name = "proc-macro-hack" 1602 - +version = "0.5.19" 1603 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1604 - +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 1605 - + 1606 - +[[package]] 1607 - +name = "proc-macro2" 1608 - +version = "1.0.43" 1609 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1610 - +checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" 1611 - +dependencies = [ 1612 - + "unicode-ident", 1613 - +] 1614 - + 1615 - +[[package]] 1616 - +name = "pulldown-cmark" 1617 - +version = "0.9.2" 1618 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1619 - +checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" 1620 - +dependencies = [ 1621 - + "bitflags", 1622 - + "getopts", 1623 - + "memchr", 1624 - + "unicase", 1625 - +] 1626 - + 1627 - +[[package]] 1628 - +name = "quote" 1629 - +version = "1.0.21" 1630 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1631 - +checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 1632 - +dependencies = [ 1633 - + "proc-macro2", 1634 - +] 1635 - + 1636 - +[[package]] 1637 - +name = "rand" 1638 - +version = "0.7.3" 1639 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1640 - +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1641 - +dependencies = [ 1642 - + "getrandom 0.1.16", 1643 - + "libc", 1644 - + "rand_chacha 0.2.2", 1645 - + "rand_core 0.5.1", 1646 - + "rand_hc", 1647 - + "rand_pcg", 1648 - +] 1649 - + 1650 - +[[package]] 1651 - +name = "rand" 1652 - +version = "0.8.5" 1653 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1655 - +dependencies = [ 1656 - + "libc", 1657 - + "rand_chacha 0.3.1", 1658 - + "rand_core 0.6.3", 1659 - +] 1660 - + 1661 - +[[package]] 1662 - +name = "rand_chacha" 1663 - +version = "0.2.2" 1664 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1665 - +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1666 - +dependencies = [ 1667 - + "ppv-lite86", 1668 - + "rand_core 0.5.1", 1669 - +] 1670 - + 1671 - +[[package]] 1672 - +name = "rand_chacha" 1673 - +version = "0.3.1" 1674 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1675 - +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1676 - +dependencies = [ 1677 - + "ppv-lite86", 1678 - + "rand_core 0.6.3", 1679 - +] 1680 - + 1681 - +[[package]] 1682 - +name = "rand_core" 1683 - +version = "0.5.1" 1684 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1685 - +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1686 - +dependencies = [ 1687 - + "getrandom 0.1.16", 1688 - +] 1689 - + 1690 - +[[package]] 1691 - +name = "rand_core" 1692 - +version = "0.6.3" 1693 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1694 - +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 1695 - +dependencies = [ 1696 - + "getrandom 0.2.7", 1697 - +] 1698 - + 1699 - +[[package]] 1700 - +name = "rand_hc" 1701 - +version = "0.2.0" 1702 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1704 - +dependencies = [ 1705 - + "rand_core 0.5.1", 1706 - +] 1707 - + 1708 - +[[package]] 1709 - +name = "rand_pcg" 1710 - +version = "0.2.1" 1711 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1712 - +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 1713 - +dependencies = [ 1714 - + "rand_core 0.5.1", 1715 - +] 1716 - + 1717 - +[[package]] 1718 - +name = "rayon" 1719 - +version = "1.5.3" 1720 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - +checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" 1722 - +dependencies = [ 1723 - + "autocfg", 1724 - + "crossbeam-deque", 1725 - + "either", 1726 - + "rayon-core", 1727 - +] 1728 - + 1729 - +[[package]] 1730 - +name = "rayon-core" 1731 - +version = "1.9.3" 1732 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - +checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" 1734 - +dependencies = [ 1735 - + "crossbeam-channel", 1736 - + "crossbeam-deque", 1737 - + "crossbeam-utils", 1738 - + "num_cpus", 1739 - +] 1740 - + 1741 - +[[package]] 1742 - +name = "redox_syscall" 1743 - +version = "0.2.16" 1744 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1745 - +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1746 - +dependencies = [ 1747 - + "bitflags", 1748 - +] 1749 - + 1750 - +[[package]] 1751 - +name = "regex" 1752 - +version = "1.6.0" 1753 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - +checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 1755 - +dependencies = [ 1756 - + "aho-corasick", 1757 - + "memchr", 1758 - + "regex-syntax", 1759 - +] 1760 - + 1761 - +[[package]] 1762 - +name = "regex-syntax" 1763 - +version = "0.6.27" 1764 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - +checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 1766 - + 1767 - +[[package]] 1768 - +name = "remove_dir_all" 1769 - +version = "0.5.3" 1770 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1771 - +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1772 - +dependencies = [ 1773 - + "winapi 0.3.9", 1774 - +] 1775 - + 1776 - +[[package]] 1777 - +name = "rustc-demangle" 1778 - +version = "0.1.21" 1779 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1780 - +checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 1781 - + 1782 - +[[package]] 1783 - +name = "rustc-hash" 1784 - +version = "1.1.0" 1785 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1786 - +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1787 - + 1788 - +[[package]] 1789 - +name = "rustc_version" 1790 - +version = "0.4.0" 1791 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1792 - +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1793 - +dependencies = [ 1794 - + "semver", 1795 - +] 1796 - + 1797 - +[[package]] 1798 - +name = "ryu" 1799 - +version = "1.0.11" 1800 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - +checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 1802 - + 1803 - +[[package]] 1804 - +name = "safemem" 1805 - +version = "0.3.3" 1806 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - +checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1808 - + 1809 - +[[package]] 1810 - +name = "same-file" 1811 - +version = "1.0.6" 1812 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1813 - +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1814 - +dependencies = [ 1815 - + "winapi-util", 1816 - +] 1817 - + 1818 - +[[package]] 1819 - +name = "schannel" 1820 - +version = "0.1.20" 1821 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1822 - +checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 1823 - +dependencies = [ 1824 - + "lazy_static", 1825 - + "windows-sys", 1826 - +] 1827 - + 1828 - +[[package]] 1829 - +name = "scopeguard" 1830 - +version = "1.1.0" 1831 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1832 - +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1833 - + 1834 - +[[package]] 1835 - +name = "security-framework" 1836 - +version = "2.6.1" 1837 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1838 - +checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 1839 - +dependencies = [ 1840 - + "bitflags", 1841 - + "core-foundation", 1842 - + "core-foundation-sys", 1843 - + "libc", 1844 - + "security-framework-sys", 1845 - +] 1846 - + 1847 - +[[package]] 1848 - +name = "security-framework-sys" 1849 - +version = "2.6.1" 1850 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1851 - +checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 1852 - +dependencies = [ 1853 - + "core-foundation-sys", 1854 - + "libc", 1855 - +] 1856 - + 1857 - +[[package]] 1858 - +name = "selectors" 1859 - +version = "0.22.0" 1860 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1861 - +checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 1862 - +dependencies = [ 1863 - + "bitflags", 1864 - + "cssparser", 1865 - + "derive_more", 1866 - + "fxhash", 1867 - + "log", 1868 - + "matches", 1869 - + "phf 0.8.0", 1870 - + "phf_codegen 0.8.0", 1871 - + "precomputed-hash", 1872 - + "servo_arc", 1873 - + "smallvec", 1874 - + "thin-slice", 1875 - +] 1876 - + 1877 - +[[package]] 1878 - +name = "self_cell" 1879 - +version = "0.10.2" 1880 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1881 - +checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 1882 - + 1883 - +[[package]] 1884 - +name = "semver" 1885 - +version = "1.0.13" 1886 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1887 - +checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" 1888 - + 1889 - +[[package]] 1890 - +name = "serde" 1891 - +version = "1.0.142" 1892 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - +checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" 1894 - +dependencies = [ 1895 - + "serde_derive", 1896 - +] 1897 - + 1898 - +[[package]] 1899 - +name = "serde_derive" 1900 - +version = "1.0.142" 1901 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1902 - +checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" 1903 - +dependencies = [ 1904 - + "proc-macro2", 1905 - + "quote", 1906 - + "syn", 1907 - +] 1908 - + 1909 - +[[package]] 1910 - +name = "serde_json" 1911 - +version = "1.0.83" 1912 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1913 - +checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" 1914 - +dependencies = [ 1915 - + "itoa 1.0.3", 1916 - + "ryu", 1917 - + "serde", 1918 - +] 1919 - + 1920 - +[[package]] 1921 - +name = "servo_arc" 1922 - +version = "0.1.1" 1923 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1924 - +checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 1925 - +dependencies = [ 1926 - + "nodrop", 1927 - + "stable_deref_trait", 1928 - +] 1929 - + 1930 - +[[package]] 1931 - +name = "sha-1" 1932 - +version = "0.10.0" 1933 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1934 - +checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 1935 - +dependencies = [ 1936 - + "cfg-if 1.0.0", 1937 - + "cpufeatures", 1938 - + "digest", 1939 - +] 1940 - + 1941 - +[[package]] 1942 - +name = "signal-hook-registry" 1943 - +version = "1.4.0" 1944 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1945 - +checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 1946 - +dependencies = [ 1947 - + "libc", 1948 - +] 1949 - + 1950 - +[[package]] 1951 - +name = "siphasher" 1952 - +version = "0.3.10" 1953 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - +checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 1955 - + 1956 - +[[package]] 1957 - +name = "slab" 1958 - +version = "0.4.7" 1959 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1960 - +checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 1961 - +dependencies = [ 1962 - + "autocfg", 1963 - +] 1964 - + 1965 - +[[package]] 1966 - +name = "slug" 1967 - +version = "0.1.4" 1968 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1969 - +checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" 1970 - +dependencies = [ 1971 - + "deunicode", 1972 - +] 1973 - + 1974 - +[[package]] 1975 - +name = "smallvec" 1976 - +version = "1.9.0" 1977 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - +checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 1979 - + 1980 - +[[package]] 1981 - +name = "socket2" 1982 - +version = "0.4.4" 1983 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1984 - +checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 1985 - +dependencies = [ 1986 - + "libc", 1987 - + "winapi 0.3.9", 1988 - +] 1989 - + 1990 - +[[package]] 1991 - +name = "stable_deref_trait" 1992 - +version = "1.2.0" 1993 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1994 - +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1995 - + 1996 - +[[package]] 1997 - +name = "string_cache" 1998 - +version = "0.8.4" 1999 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - +checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2001 - +dependencies = [ 2002 - + "new_debug_unreachable", 2003 - + "once_cell", 2004 - + "parking_lot", 2005 - + "phf_shared 0.10.0", 2006 - + "precomputed-hash", 2007 - + "serde", 2008 - +] 2009 - + 2010 - +[[package]] 2011 - +name = "string_cache_codegen" 2012 - +version = "0.5.2" 2013 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2014 - +checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2015 - +dependencies = [ 2016 - + "phf_generator 0.10.0", 2017 - + "phf_shared 0.10.0", 2018 - + "proc-macro2", 2019 - + "quote", 2020 - +] 2021 - + 2022 - +[[package]] 2023 - +name = "syn" 2024 - +version = "1.0.99" 2025 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2026 - +checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 2027 - +dependencies = [ 2028 - + "proc-macro2", 2029 - + "quote", 2030 - + "unicode-ident", 2031 - +] 2032 - + 2033 - +[[package]] 2034 - +name = "syntect" 2035 - +version = "4.6.0" 2036 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2037 - +checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031" 2038 - +dependencies = [ 2039 - + "bincode", 2040 - + "bitflags", 2041 - + "fancy-regex", 2042 - + "flate2", 2043 - + "fnv", 2044 - + "lazy_static", 2045 - + "lazycell", 2046 - + "plist", 2047 - + "regex-syntax", 2048 - + "serde", 2049 - + "serde_derive", 2050 - + "serde_json", 2051 - + "walkdir", 2052 - + "yaml-rust", 2053 - +] 2054 - + 2055 - +[[package]] 2056 - +name = "tempfile" 2057 - +version = "3.3.0" 2058 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2059 - +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2060 - +dependencies = [ 2061 - + "cfg-if 1.0.0", 2062 - + "fastrand", 2063 - + "libc", 2064 - + "redox_syscall", 2065 - + "remove_dir_all", 2066 - + "winapi 0.3.9", 2067 - +] 2068 - + 2069 - +[[package]] 2070 - +name = "tendril" 2071 - +version = "0.4.3" 2072 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2073 - +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2074 - +dependencies = [ 2075 - + "futf", 2076 - + "mac", 2077 - + "utf-8", 2078 - +] 2079 - + 2080 - +[[package]] 2081 - +name = "tera" 2082 - +version = "1.16.0" 2083 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2084 - +checksum = "7c9783d6ff395ae80cf17ed9a25360e7ba37742a79fa8fddabb073c5c7c8856d" 2085 - +dependencies = [ 2086 - + "chrono", 2087 - + "chrono-tz", 2088 - + "globwalk", 2089 - + "humansize", 2090 - + "lazy_static", 2091 - + "percent-encoding", 2092 - + "pest", 2093 - + "pest_derive", 2094 - + "rand 0.8.5", 2095 - + "regex", 2096 - + "serde", 2097 - + "serde_json", 2098 - + "slug", 2099 - + "unic-segment", 2100 - +] 2101 - + 2102 - +[[package]] 2103 - +name = "test-case" 2104 - +version = "2.2.1" 2105 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2106 - +checksum = "07aea929e9488998b64adc414c29fe5620398f01c2e3f58164122b17e567a6d5" 2107 - +dependencies = [ 2108 - + "test-case-macros", 2109 - +] 2110 - + 2111 - +[[package]] 2112 - +name = "test-case-macros" 2113 - +version = "2.2.1" 2114 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2115 - +checksum = "c95968eedc6fc4f5c21920e0f4264f78ec5e4c56bb394f319becc1a5830b3e54" 2116 - +dependencies = [ 2117 - + "cfg-if 1.0.0", 2118 - + "proc-macro-error", 2119 - + "proc-macro2", 2120 - + "quote", 2121 - + "syn", 2122 - +] 2123 - + 2124 - +[[package]] 2125 - +name = "textwrap" 2126 - +version = "0.15.0" 2127 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2128 - +checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 2129 - + 2130 - +[[package]] 2131 - +name = "thin-slice" 2132 - +version = "0.1.1" 2133 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2134 - +checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2135 - + 2136 - +[[package]] 2137 - +name = "thiserror" 2138 - +version = "1.0.32" 2139 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2140 - +checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" 2141 - +dependencies = [ 2142 - + "thiserror-impl", 2143 - +] 2144 - + 2145 - +[[package]] 2146 - +name = "thiserror-impl" 2147 - +version = "1.0.32" 2148 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2149 - +checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" 2150 - +dependencies = [ 2151 - + "proc-macro2", 2152 - + "quote", 2153 - + "syn", 2154 - +] 2155 - + 2156 - +[[package]] 2157 - +name = "thread_local" 2158 - +version = "1.1.4" 2159 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - +checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2161 - +dependencies = [ 2162 - + "once_cell", 2163 - +] 2164 - + 2165 - +[[package]] 2166 - +name = "time" 2167 - +version = "0.1.44" 2168 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2169 - +checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 2170 - +dependencies = [ 2171 - + "libc", 2172 - + "wasi 0.10.0+wasi-snapshot-preview1", 2173 - + "winapi 0.3.9", 2174 - +] 2175 - + 2176 - +[[package]] 2177 - +name = "time" 2178 - +version = "0.3.12" 2179 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2180 - +checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f" 2181 - +dependencies = [ 2182 - + "itoa 1.0.3", 2183 - + "js-sys", 2184 - + "libc", 2185 - + "num_threads", 2186 - + "serde", 2187 - +] 2188 - + 2189 - +[[package]] 2190 - +name = "tinystr" 2191 - +version = "0.3.4" 2192 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - +checksum = "29738eedb4388d9ea620eeab9384884fc3f06f586a2eddb56bedc5885126c7c1" 2194 - + 2195 - +[[package]] 2196 - +name = "tokio" 2197 - +version = "1.20.1" 2198 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2199 - +checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 2200 - +dependencies = [ 2201 - + "autocfg", 2202 - + "bytes", 2203 - + "libc", 2204 - + "memchr", 2205 - + "mio 0.8.4", 2206 - + "num_cpus", 2207 - + "once_cell", 2208 - + "pin-project-lite", 2209 - + "signal-hook-registry", 2210 - + "socket2", 2211 - + "tokio-macros", 2212 - + "winapi 0.3.9", 2213 - +] 2214 - + 2215 - +[[package]] 2216 - +name = "tokio-macros" 2217 - +version = "1.8.0" 2218 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2219 - +checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 2220 - +dependencies = [ 2221 - + "proc-macro2", 2222 - + "quote", 2223 - + "syn", 2224 - +] 2225 - + 2226 - +[[package]] 2227 - +name = "tokio-native-tls" 2228 - +version = "0.3.0" 2229 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2230 - +checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 2231 - +dependencies = [ 2232 - + "native-tls", 2233 - + "tokio", 2234 - +] 2235 - + 2236 - +[[package]] 2237 - +name = "tokio-util" 2238 - +version = "0.7.3" 2239 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2240 - +checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 2241 - +dependencies = [ 2242 - + "bytes", 2243 - + "futures-core", 2244 - + "futures-sink", 2245 - + "pin-project-lite", 2246 - + "tokio", 2247 - +] 2248 - + 2249 - +[[package]] 2250 - +name = "toml" 2251 - +version = "0.5.9" 2252 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2253 - +checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2254 - +dependencies = [ 2255 - + "serde", 2256 - +] 2257 - + 2258 - +[[package]] 2259 - +name = "tower" 2260 - +version = "0.4.13" 2261 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2262 - +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 2263 - +dependencies = [ 2264 - + "futures-core", 2265 - + "futures-util", 2266 - + "pin-project", 2267 - + "pin-project-lite", 2268 - + "tokio", 2269 - + "tower-layer", 2270 - + "tower-service", 2271 - + "tracing", 2272 - +] 2273 - + 2274 - +[[package]] 2275 - +name = "tower-http" 2276 - +version = "0.2.5" 2277 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2278 - +checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8" 2279 - +dependencies = [ 2280 - + "bitflags", 2281 - + "bytes", 2282 - + "futures-core", 2283 - + "futures-util", 2284 - + "http", 2285 - + "http-body", 2286 - + "http-range-header", 2287 - + "httpdate", 2288 - + "mime", 2289 - + "mime_guess", 2290 - + "percent-encoding", 2291 - + "pin-project-lite", 2292 - + "tokio", 2293 - + "tokio-util", 2294 - + "tower-layer", 2295 - + "tower-service", 2296 - +] 2297 - + 2298 - +[[package]] 2299 - +name = "tower-layer" 2300 - +version = "0.3.1" 2301 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2302 - +checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62" 2303 - + 2304 - +[[package]] 2305 - +name = "tower-service" 2306 - +version = "0.3.2" 2307 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2308 - +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2309 - + 2310 - +[[package]] 2311 - +name = "tracing" 2312 - +version = "0.1.36" 2313 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2314 - +checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 2315 - +dependencies = [ 2316 - + "cfg-if 1.0.0", 2317 - + "log", 2318 - + "pin-project-lite", 2319 - + "tracing-core", 2320 - +] 2321 - + 2322 - +[[package]] 2323 - +name = "tracing-core" 2324 - +version = "0.1.29" 2325 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2326 - +checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 2327 - +dependencies = [ 2328 - + "once_cell", 2329 - +] 2330 - + 2331 - +[[package]] 2332 - +name = "try-lock" 2333 - +version = "0.2.3" 2334 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - +checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 2336 - + 2337 - +[[package]] 2338 - +name = "type-map" 2339 - +version = "0.4.0" 2340 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2341 - +checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 2342 - +dependencies = [ 2343 - + "rustc-hash", 2344 - +] 2345 - + 2346 - +[[package]] 2347 - +name = "typenum" 2348 - +version = "1.15.0" 2349 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2350 - +checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 2351 - + 2352 - +[[package]] 2353 - +name = "ucd-trie" 2354 - +version = "0.1.4" 2355 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2356 - +checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c" 2357 - + 2358 - +[[package]] 2359 - +name = "uncased" 2360 - +version = "0.9.7" 2361 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2362 - +checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622" 2363 - +dependencies = [ 2364 - + "version_check", 2365 - +] 2366 - + 2367 - +[[package]] 2368 - +name = "unic-char-property" 2369 - +version = "0.9.0" 2370 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2371 - +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 2372 - +dependencies = [ 2373 - + "unic-char-range", 2374 - +] 2375 - + 2376 - +[[package]] 2377 - +name = "unic-char-range" 2378 - +version = "0.9.0" 2379 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2380 - +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 2381 - + 2382 - +[[package]] 2383 - +name = "unic-common" 2384 - +version = "0.9.0" 2385 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2386 - +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 2387 - + 2388 - +[[package]] 2389 - +name = "unic-langid" 2390 - +version = "0.9.0" 2391 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2392 - +checksum = "73328fcd730a030bdb19ddf23e192187a6b01cd98be6d3140622a89129459ce5" 2393 - +dependencies = [ 2394 - + "unic-langid-impl", 2395 - +] 2396 - + 2397 - +[[package]] 2398 - +name = "unic-langid-impl" 2399 - +version = "0.9.0" 2400 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - +checksum = "1a4a8eeaf0494862c1404c95ec2f4c33a2acff5076f64314b465e3ddae1b934d" 2402 - +dependencies = [ 2403 - + "tinystr", 2404 - +] 2405 - + 2406 - +[[package]] 2407 - +name = "unic-segment" 2408 - +version = "0.9.0" 2409 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2410 - +checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23" 2411 - +dependencies = [ 2412 - + "unic-ucd-segment", 2413 - +] 2414 - + 2415 - +[[package]] 2416 - +name = "unic-ucd-segment" 2417 - +version = "0.9.0" 2418 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2419 - +checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700" 2420 - +dependencies = [ 2421 - + "unic-char-property", 2422 - + "unic-char-range", 2423 - + "unic-ucd-version", 2424 - +] 2425 - + 2426 - +[[package]] 2427 - +name = "unic-ucd-version" 2428 - +version = "0.9.0" 2429 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2430 - +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 2431 - +dependencies = [ 2432 - + "unic-common", 2433 - +] 2434 - + 2435 - +[[package]] 2436 - +name = "unicase" 2437 - +version = "2.6.0" 2438 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2439 - +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 2440 - +dependencies = [ 2441 - + "version_check", 2442 - +] 2443 - + 2444 - +[[package]] 2445 - +name = "unicode-ident" 2446 - +version = "1.0.3" 2447 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2448 - +checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 2449 - + 2450 - +[[package]] 2451 - +name = "unicode-width" 2452 - +version = "0.1.9" 2453 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2454 - +checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 2455 - + 2456 - +[[package]] 2457 - +name = "utf-8" 2458 - +version = "0.7.6" 2459 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2460 - +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2461 - + 2462 - +[[package]] 2463 - +name = "vcpkg" 2464 - +version = "0.2.15" 2465 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2466 - +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2467 - + 2468 - +[[package]] 2469 - +name = "version_check" 2470 - +version = "0.9.4" 2471 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2472 - +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2473 - + 2474 - +[[package]] 2475 - +name = "walkdir" 2476 - +version = "2.3.2" 2477 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2478 - +checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2479 - +dependencies = [ 2480 - + "same-file", 2481 - + "winapi 0.3.9", 2482 - + "winapi-util", 2483 - +] 2484 - + 2485 - +[[package]] 2486 - +name = "want" 2487 - +version = "0.3.0" 2488 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - +checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2490 - +dependencies = [ 2491 - + "log", 2492 - + "try-lock", 2493 - +] 2494 - + 2495 - +[[package]] 2496 - +name = "wasi" 2497 - +version = "0.9.0+wasi-snapshot-preview1" 2498 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2499 - +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 2500 - + 2501 - +[[package]] 2502 - +name = "wasi" 2503 - +version = "0.10.0+wasi-snapshot-preview1" 2504 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2505 - +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2506 - + 2507 - +[[package]] 2508 - +name = "wasi" 2509 - +version = "0.11.0+wasi-snapshot-preview1" 2510 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2511 - +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2512 - + 2513 - +[[package]] 2514 - +name = "wasm-bindgen" 2515 - +version = "0.2.82" 2516 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - +checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 2518 - +dependencies = [ 2519 - + "cfg-if 1.0.0", 2520 - + "wasm-bindgen-macro", 2521 - +] 2522 - + 2523 - +[[package]] 2524 - +name = "wasm-bindgen-backend" 2525 - +version = "0.2.82" 2526 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2527 - +checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 2528 - +dependencies = [ 2529 - + "bumpalo", 2530 - + "log", 2531 - + "once_cell", 2532 - + "proc-macro2", 2533 - + "quote", 2534 - + "syn", 2535 - + "wasm-bindgen-shared", 2536 - +] 2537 - + 2538 - +[[package]] 2539 - +name = "wasm-bindgen-macro" 2540 - +version = "0.2.82" 2541 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2542 - +checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 2543 - +dependencies = [ 2544 - + "quote", 2545 - + "wasm-bindgen-macro-support", 2546 - +] 2547 - + 2548 - +[[package]] 2549 - +name = "wasm-bindgen-macro-support" 2550 - +version = "0.2.82" 2551 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - +checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 2553 - +dependencies = [ 2554 - + "proc-macro2", 2555 - + "quote", 2556 - + "syn", 2557 - + "wasm-bindgen-backend", 2558 - + "wasm-bindgen-shared", 2559 - +] 2560 - + 2561 - +[[package]] 2562 - +name = "wasm-bindgen-shared" 2563 - +version = "0.2.82" 2564 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2565 - +checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 2566 - + 2567 - +[[package]] 2568 - +name = "winapi" 2569 - +version = "0.2.8" 2570 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2571 - +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2572 - + 2573 - +[[package]] 2574 - +name = "winapi" 2575 - +version = "0.3.9" 2576 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2577 - +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2578 - +dependencies = [ 2579 - + "winapi-i686-pc-windows-gnu", 2580 - + "winapi-x86_64-pc-windows-gnu", 2581 - +] 2582 - + 2583 - +[[package]] 2584 - +name = "winapi-build" 2585 - +version = "0.1.1" 2586 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2587 - +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 2588 - + 2589 - +[[package]] 2590 - +name = "winapi-i686-pc-windows-gnu" 2591 - +version = "0.4.0" 2592 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2593 - +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2594 - + 2595 - +[[package]] 2596 - +name = "winapi-util" 2597 - +version = "0.1.5" 2598 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2600 - +dependencies = [ 2601 - + "winapi 0.3.9", 2602 - +] 2603 - + 2604 - +[[package]] 2605 - +name = "winapi-x86_64-pc-windows-gnu" 2606 - +version = "0.4.0" 2607 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2608 - +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2609 - + 2610 - +[[package]] 2611 - +name = "windows-sys" 2612 - +version = "0.36.1" 2613 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2614 - +checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 2615 - +dependencies = [ 2616 - + "windows_aarch64_msvc", 2617 - + "windows_i686_gnu", 2618 - + "windows_i686_msvc", 2619 - + "windows_x86_64_gnu", 2620 - + "windows_x86_64_msvc", 2621 - +] 2622 - + 2623 - +[[package]] 2624 - +name = "windows_aarch64_msvc" 2625 - +version = "0.36.1" 2626 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2627 - +checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 2628 - + 2629 - +[[package]] 2630 - +name = "windows_i686_gnu" 2631 - +version = "0.36.1" 2632 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2633 - +checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 2634 - + 2635 - +[[package]] 2636 - +name = "windows_i686_msvc" 2637 - +version = "0.36.1" 2638 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2639 - +checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 2640 - + 2641 - +[[package]] 2642 - +name = "windows_x86_64_gnu" 2643 - +version = "0.36.1" 2644 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - +checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 2646 - + 2647 - +[[package]] 2648 - +name = "windows_x86_64_msvc" 2649 - +version = "0.36.1" 2650 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2651 - +checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 2652 - + 2653 - +[[package]] 2654 - +name = "ws2_32-sys" 2655 - +version = "0.2.1" 2656 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2657 - +checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 2658 - +dependencies = [ 2659 - + "winapi 0.2.8", 2660 - + "winapi-build", 2661 - +] 2662 - + 2663 - +[[package]] 2664 - +name = "xml-rs" 2665 - +version = "0.8.4" 2666 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2667 - +checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 2668 - + 2669 - +[[package]] 2670 - +name = "xml5ever" 2671 - +version = "0.16.2" 2672 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2673 - +checksum = "9234163818fd8e2418fcde330655e757900d4236acd8cc70fef345ef91f6d865" 2674 - +dependencies = [ 2675 - + "log", 2676 - + "mac", 2677 - + "markup5ever", 2678 - + "time 0.1.44", 2679 - +] 2680 - + 2681 - +[[package]] 2682 - +name = "yaml-rust" 2683 - +version = "0.4.5" 2684 - +source = "registry+https://github.com/rust-lang/crates.io-index" 2685 - +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 2686 - +dependencies = [ 2687 - + "linked-hash-map", 2688 - +] 2689 - + 2690 - +[[package]] 2691 - +name = "zine" 2692 - +version = "0.6.0" 2693 - +dependencies = [ 2694 - + "anyhow", 2695 - + "clap", 2696 - + "fluent", 2697 - + "html5ever", 2698 - + "http-body", 2699 - + "hyper", 2700 - + "hyper-tls", 2701 - + "include_dir", 2702 - + "intl-memoizer", 2703 - + "lol_html", 2704 - + "markup5ever_rcdom", 2705 - + "notify", 2706 - + "once_cell", 2707 - + "parking_lot", 2708 - + "pulldown-cmark", 2709 - + "rayon", 2710 - + "regex", 2711 - + "serde", 2712 - + "serde_json", 2713 - + "syntect", 2714 - + "tera", 2715 - + "test-case", 2716 - + "time 0.3.12", 2717 - + "tokio", 2718 - + "toml", 2719 - + "tower", 2720 - + "tower-http", 2721 - + "walkdir", 2722 - +]
+8 -11
pkgs/applications/misc/zine/default.nix
··· 1 1 { lib 2 - , stdenv 3 - , fetchFromGitHub 4 2 , rustPlatform 3 + , fetchCrate 5 4 , pkg-config 5 + , stdenv 6 6 , openssl 7 7 , CoreServices 8 8 , Security 9 9 }: 10 + 10 11 rustPlatform.buildRustPackage rec { 11 12 pname = "zine"; 12 13 version = "0.6.0"; 13 14 14 - src = fetchFromGitHub { 15 - owner = "zineland"; 16 - repo = pname; 17 - rev = "v${version}"; 18 - sha256 = "sha256-Pd/UAg6O9bOvrdvbY46Vf8cxFzjonEwcwPaaW59vH6E="; 15 + src = fetchCrate { 16 + inherit pname version; 17 + sha256 = "sha256-savwRdIO48gCwqW2Wz/nWZuI1TxW/F0OR9jhNzHF+us="; 19 18 }; 20 19 21 - cargoPatches = [ ./Cargo.lock.patch ]; # Repo does not provide Cargo.lock 22 - 23 - cargoSha256 = "sha256-qpzBDyNSZblmdimnnL4T/wS+6EXpduJ1U2+bfxM7piM="; 20 + cargoSha256 = "sha256-U+pzT3V4rHiU+Hrax1EUXGQgdjrdfd3G07luaDSam3g="; 24 21 25 22 nativeBuildInputs = [ 26 23 pkg-config ··· 33 30 description = "A simple and opinionated tool to build your own magazine"; 34 31 homepage = "https://github.com/zineland/zine"; 35 32 license = licenses.asl20; 36 - maintainers = with maintainers; [ dit7ya ]; 33 + maintainers = with maintainers; [ dit7ya figsoda ]; 37 34 }; 38 35 }
+2 -2
pkgs/applications/networking/cluster/werf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "werf"; 13 - version = "1.2.173"; 13 + version = "1.2.174"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "werf"; 17 17 repo = "werf"; 18 18 rev = "v${version}"; 19 - hash = "sha256-jbV2pQSFq/E++eOyQwB0ssG2R9mm3sprlm5mFfHJsBA="; 19 + hash = "sha256-8TuAreXWKCXThyiWwiSi5kDVHJKeMB8lpltWbVqGY34="; 20 20 }; 21 21 22 22 vendorHash = "sha256-NHRPl38/R7yS8Hht118mBc+OBPwfYiHOaGIwryNK8Mo=";
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 5 5 6 6 python3Packages.buildPythonApplication rec { 7 7 pname = "flexget"; 8 - version = "3.3.26"; 8 + version = "3.3.27"; 9 9 10 10 # Fetch from GitHub in order to use `requirements.in` 11 11 src = fetchFromGitHub { 12 12 owner = "flexget"; 13 13 repo = "flexget"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-5THgUOQv9gPUh9emWiBs/tSNsOX4ZVh+jvKEpWsy05w="; 15 + hash = "sha256-0FHhYsm2Uwag0e2i7ip32EWjS4Fx6vA9eW1ojSBB5Hc="; 16 16 }; 17 17 18 18 postPatch = ''
+3 -3
pkgs/applications/networking/gmailctl/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gmailctl"; 9 - version = "0.10.4"; 9 + version = "0.10.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mbrt"; 13 13 repo = "gmailctl"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-tAYFuxB8LSyFHraAQxCj8Q09mS/9RYcinVm5whpRh04="; 15 + sha256 = "sha256-H1Nuu/T55e5zWUmofKoyVSA4TaJBdK+JeZtw+G/sC54="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-IFxKczPrqCM9NOoOJayfbrsJIMf3eoI9zXSFns0/i8o="; 18 + vendorSha256 = "sha256-ivkTtcvoH+i58iQM9T0xio0YUeMhNzDcmrCSuGFljEI="; 19 19 20 20 nativeBuildInputs = [ 21 21 installShellFiles
+2 -2
pkgs/applications/networking/instant-messengers/bluejeans/default.nix
··· 44 44 45 45 stdenv.mkDerivation rec { 46 46 pname = "bluejeans"; 47 - version = "2.30.0.89"; 47 + version = "2.30.1.18"; 48 48 49 49 src = fetchurl { 50 50 url = "https://swdl.bluejeans.com/desktop-app/linux/${getFirst 3 version}/BlueJeans_${version}.rpm"; 51 - sha256 = "sha256-ALydB6bTxaYsBk0BrTKG8Yan4n/jvxT8T7fSMFel+CQ="; 51 + sha256 = "sha256-V/3nmindkuTmUsuAuc0UxldAQe7jfeXWSZWPTXTyLq8="; 52 52 }; 53 53 54 54 nativeBuildInputs = [ rpmextract makeWrapper ];
+6 -2
pkgs/applications/networking/instant-messengers/discord/darwin.nix
··· 1 - { pname, version, src, openasar, meta, stdenv, binaryName, desktopName, lib, undmg, withOpenASAR ? false }: 1 + { pname, version, src, openasar, meta, stdenv, binaryName, desktopName, lib, undmg, makeWrapper, withOpenASAR ? false }: 2 2 3 3 stdenv.mkDerivation { 4 4 inherit pname version src meta; 5 5 6 - nativeBuildInputs = [ undmg ]; 6 + nativeBuildInputs = [ undmg makeWrapper ]; 7 7 8 8 sourceRoot = "."; 9 9 ··· 12 12 13 13 mkdir -p $out/Applications 14 14 cp -r "${desktopName}.app" $out/Applications 15 + 16 + # wrap executable to $out/bin 17 + mkdir -p $out/bin 18 + makeWrapper "$out/Applications/${desktopName}.app/Contents/MacOS/${binaryName}" "$out/bin/${binaryName}" 15 19 16 20 runHook postInstall 17 21 '';
+2 -2
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 80 80 }; 81 81 ptb = rec { 82 82 pname = "discord-ptb"; 83 - binaryName = "DiscordPTB"; 83 + binaryName = if stdenv.isLinux then "DiscordPTB" else desktopName; 84 84 desktopName = "Discord PTB"; 85 85 }; 86 86 canary = rec { 87 87 pname = "discord-canary"; 88 - binaryName = "DiscordCanary"; 88 + binaryName = if stdenv.isLinux then "DiscordCanary" else desktopName; 89 89 desktopName = "Discord Canary"; 90 90 }; 91 91 }
+1 -1
pkgs/applications/networking/irc/srain/default.nix
··· 52 52 53 53 meta = with lib; { 54 54 description = "Modern IRC client written in GTK"; 55 - homepage = "https://srain.im"; 55 + homepage = "https://srain.silverrainz.me"; 56 56 license = licenses.gpl3Plus; 57 57 platforms = platforms.linux; 58 58 maintainers = with maintainers; [ rewine ];
+308 -289
pkgs/applications/networking/n8n/node-packages.nix
··· 40 40 sha512 = "mZ1MSKhZBYoV8GAWceA+PEJFWV2VpdNSpxxcj1wjIAOi00ykRuIQChT99xlQGZWLY3/NApWhSImlFwsmCEs4vA=="; 41 41 }; 42 42 }; 43 - "@azure/core-http-2.2.6" = { 43 + "@azure/core-http-2.2.7" = { 44 44 name = "_at_azure_slash_core-http"; 45 45 packageName = "@azure/core-http"; 46 - version = "2.2.6"; 46 + version = "2.2.7"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.6.tgz"; 49 - sha512 = "Lx7A3k2JIXpIbixfUaOOG79WNSo/Y7dhZ0LaLhaayyZ6PwQdVsEQXAR+oIPqPSfgPzv7RtwPSVviJ2APrsQKvQ=="; 48 + url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.7.tgz"; 49 + sha512 = "TyGMeDm90mkRS8XzSQbSMD+TqnWL1XKGCh0x0QVGMD8COH2yU0q5SaHm/IBEBkzcq0u73NhS/p57T3KVSgUFqQ=="; 50 50 }; 51 51 }; 52 52 "@azure/core-http-compat-1.3.0" = { ··· 58 58 sha512 = "ZN9avruqbQ5TxopzG3ih3KRy52n8OAbitX3fnZT5go4hzu0J+KVPSzkL+Wt3hpJpdG8WIfg1sBD1tWkgUdEpBA=="; 59 59 }; 60 60 }; 61 - "@azure/core-lro-2.2.5" = { 61 + "@azure/core-lro-2.3.1" = { 62 62 name = "_at_azure_slash_core-lro"; 63 63 packageName = "@azure/core-lro"; 64 - version = "2.2.5"; 64 + version = "2.3.1"; 65 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.2.5.tgz"; 67 - sha512 = "/7LKDHNd2Q6gGCrg7zV4va/N90w250pE4vaQUfFt+hTd/dyycgJWCqQ6EljQr8hrIFiH93C8Apk97tsnl7Czkg=="; 66 + url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.3.1.tgz"; 67 + sha512 = "nQ+Xnm9g1EWcmbqgxJGmkNHfOHRUmrbYIlRT4KjluzhHQooaGO55m/h6wCX0ho3Jte2ZNBzZPJRmi6yBWeb3yA=="; 68 68 }; 69 69 }; 70 70 "@azure/core-paging-1.3.0" = { ··· 76 76 sha512 = "H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg=="; 77 77 }; 78 78 }; 79 - "@azure/core-rest-pipeline-1.9.1" = { 79 + "@azure/core-rest-pipeline-1.9.2" = { 80 80 name = "_at_azure_slash_core-rest-pipeline"; 81 81 packageName = "@azure/core-rest-pipeline"; 82 - version = "1.9.1"; 82 + version = "1.9.2"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.9.1.tgz"; 85 - sha512 = "OVtt0LP0K5ktsKTmh6/695P0mPFmngjdCJPr4V0uvrkhHTkARSQ3VYRnxRc0LC9g3mHcH90C+8a6iF7ApMAZKg=="; 84 + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.9.2.tgz"; 85 + sha512 = "8rXI6ircjenaLp+PkOFpo37tQ1PQfztZkfVj97BIF3RPxHAsoVSgkJtu3IK/bUEWcb7HzXSoyBe06M7ODRkRyw=="; 86 86 }; 87 87 }; 88 88 "@azure/core-tracing-1.0.0-preview.13" = { ··· 103 103 sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw=="; 104 104 }; 105 105 }; 106 - "@azure/core-util-1.0.0" = { 106 + "@azure/core-util-1.1.0" = { 107 107 name = "_at_azure_slash_core-util"; 108 108 packageName = "@azure/core-util"; 109 - version = "1.0.0"; 109 + version = "1.1.0"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.0.0.tgz"; 112 - sha512 = "yWshY9cdPthlebnb3Zuz/j0Lv4kjU6u7PR5sW7A9FF7EX+0irMRJAtyTq5TPiDHJfjH8gTSlnIYFj9m7Ed76IQ=="; 111 + url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.1.0.tgz"; 112 + sha512 = "+i93lNJNA3Pl3KSuC6xKP2jTL4YFeDfO6VNOaYdk0cppZcLCxt811gS878VsqsCisaltdhl9lhMzK5kbxCiF4w=="; 113 113 }; 114 114 }; 115 115 "@azure/identity-2.1.0" = { ··· 139 139 sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; 140 140 }; 141 141 }; 142 - "@azure/msal-browser-2.28.1" = { 142 + "@azure/msal-browser-2.28.3" = { 143 143 name = "_at_azure_slash_msal-browser"; 144 144 packageName = "@azure/msal-browser"; 145 - version = "2.28.1"; 145 + version = "2.28.3"; 146 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.28.1.tgz"; 148 - sha512 = "5uAfwpNGBSRzBGTSS+5l4Zw6msPV7bEmq99n0U3n/N++iTcha+nIp1QujxTPuOLHmTNCeySdMx9qzGqWuy22zQ=="; 147 + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.28.3.tgz"; 148 + sha512 = "2SdyH2el3s8BzPURf9RK17BvvXvaMEGpLc3D9WilZcmjJqP4nStVH7Ogwr/SNTuGV48FUhqEkP0RxDvzuFJSIw=="; 149 149 }; 150 150 }; 151 - "@azure/msal-common-7.3.0" = { 151 + "@azure/msal-common-7.4.1" = { 152 152 name = "_at_azure_slash_msal-common"; 153 153 packageName = "@azure/msal-common"; 154 - version = "7.3.0"; 154 + version = "7.4.1"; 155 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.3.0.tgz"; 157 - sha512 = "revxB3z+QLjwAtU1d04nC1voFr+i3LfqTpUfgrWZVqKh/sSgg0mZZUvw4vKVWB57qtL95sul06G+TfdFZny1Xw=="; 156 + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.4.1.tgz"; 157 + sha512 = "zxcxg9pRdgGTS5mrRJeQvwA8aIjD8qSGzaAiz5SeTVkyhtjB0AeFnAcvBOKHv/TkswWNfYKpERxsXOAKXkXk0w=="; 158 158 }; 159 159 }; 160 - "@azure/msal-node-1.12.1" = { 160 + "@azure/msal-node-1.14.0" = { 161 161 name = "_at_azure_slash_msal-node"; 162 162 packageName = "@azure/msal-node"; 163 - version = "1.12.1"; 163 + version = "1.14.0"; 164 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.12.1.tgz"; 166 - sha512 = "m909lX9C8Ty01DBxbjr4KfAKWibohgRvY7hrdDo13U1ztlH+0Nbt7cPF1vrWonW/CRT4H4xtUa4LCNmivghggw=="; 165 + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.0.tgz"; 166 + sha512 = "3XB7FuHLhmGBjw7bxuz1LCHOXQgmNIO3J56tlbOjuJcyJtd4aBCgnYIXNKLed3uRcQNHEO0mlg24I4iGxAV/UA=="; 167 167 }; 168 168 }; 169 169 "@azure/storage-blob-12.11.0" = { ··· 175 175 sha512 = "na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg=="; 176 176 }; 177 177 }; 178 - "@babel/parser-7.18.13" = { 178 + "@babel/parser-7.19.1" = { 179 179 name = "_at_babel_slash_parser"; 180 180 packageName = "@babel/parser"; 181 - version = "7.18.13"; 181 + version = "7.19.1"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz"; 184 - sha512 = "dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg=="; 183 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz"; 184 + sha512 = "h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A=="; 185 185 }; 186 186 }; 187 - "@babel/runtime-7.18.9" = { 187 + "@babel/runtime-7.19.0" = { 188 188 name = "_at_babel_slash_runtime"; 189 189 packageName = "@babel/runtime"; 190 - version = "7.18.9"; 190 + version = "7.19.0"; 191 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz"; 193 - sha512 = "lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw=="; 192 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz"; 193 + sha512 = "eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA=="; 194 194 }; 195 195 }; 196 196 "@colors/colors-1.5.0" = { ··· 292 292 sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="; 293 293 }; 294 294 }; 295 - "@mapbox/node-pre-gyp-1.0.9" = { 295 + "@mapbox/node-pre-gyp-1.0.10" = { 296 296 name = "_at_mapbox_slash_node-pre-gyp"; 297 297 packageName = "@mapbox/node-pre-gyp"; 298 - version = "1.0.9"; 298 + version = "1.0.10"; 299 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz"; 301 - sha512 = "aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw=="; 300 + url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz"; 301 + sha512 = "4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA=="; 302 302 }; 303 303 }; 304 304 "@n8n_io/riot-tmpl-1.0.1" = { ··· 364 364 sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA=="; 365 365 }; 366 366 }; 367 - "@oclif/core-1.16.0" = { 367 + "@oclif/core-1.16.3" = { 368 368 name = "_at_oclif_slash_core"; 369 369 packageName = "@oclif/core"; 370 - version = "1.16.0"; 370 + version = "1.16.3"; 371 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@oclif/core/-/core-1.16.0.tgz"; 373 - sha512 = "xtqhAbjQHBcz+xQpEHJ3eJEVfRQ4zl41Yw5gw/N+D1jgaIUrHTxCY/sfTvhw93LAQo7B++ozHzSb7DISFXsQFQ=="; 372 + url = "https://registry.npmjs.org/@oclif/core/-/core-1.16.3.tgz"; 373 + sha512 = "SWrU/eGgN5kLyuZ+TqtKz2z2HTSrgaNEwkawNj4B31VXDrPv7aULS3ntVCboAKRldX/6J+Af+70BV07Rr5c5oA=="; 374 374 }; 375 375 }; 376 376 "@oclif/errors-1.3.5" = { ··· 490 490 sha512 = "d/keJiNKfpHo+GmSB8QcsAwBx8h+V1UbdozA5TD+eSLXprNY53JAYub47J9evsSKWDdNG5uVj0FiMozLKuzowQ=="; 491 491 }; 492 492 }; 493 - "@tokenizer/token-0.1.1" = { 494 - name = "_at_tokenizer_slash_token"; 495 - packageName = "@tokenizer/token"; 496 - version = "0.1.1"; 497 - src = fetchurl { 498 - url = "https://registry.npmjs.org/@tokenizer/token/-/token-0.1.1.tgz"; 499 - sha512 = "XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w=="; 500 - }; 501 - }; 502 493 "@tokenizer/token-0.3.0" = { 503 494 name = "_at_tokenizer_slash_token"; 504 495 packageName = "@tokenizer/token"; ··· 553 544 sha512 = "erqUpFXksaeR2kejKnhnjZjbFxUpGZx4Z7ydNL9ie8tEhXPiZTsLeUDJ6aR1F8j5wWUAtOAQWUqkc7givBJbBA=="; 554 545 }; 555 546 }; 556 - "@types/express-4.17.13" = { 547 + "@types/express-4.17.14" = { 557 548 name = "_at_types_slash_express"; 558 549 packageName = "@types/express"; 559 - version = "4.17.13"; 550 + version = "4.17.14"; 560 551 src = fetchurl { 561 - url = "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz"; 562 - sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; 552 + url = "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz"; 553 + sha512 = "TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg=="; 563 554 }; 564 555 }; 565 556 "@types/express-jwt-0.0.42" = { ··· 571 562 sha512 = "WszgUddvM1t5dPpJ3LhWNH8kfNN8GPIBrAGxgIYXVCEGx6Bx4A036aAuf/r5WH9DIEdlmp7gHOYvSM6U87B0ag=="; 572 563 }; 573 564 }; 574 - "@types/express-serve-static-core-4.17.30" = { 565 + "@types/express-serve-static-core-4.17.31" = { 575 566 name = "_at_types_slash_express-serve-static-core"; 576 567 packageName = "@types/express-serve-static-core"; 577 - version = "4.17.30"; 568 + version = "4.17.31"; 578 569 src = fetchurl { 579 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz"; 580 - sha512 = "gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ=="; 570 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz"; 571 + sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q=="; 581 572 }; 582 573 }; 583 574 "@types/express-unless-0.5.3" = { ··· 598 589 sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="; 599 590 }; 600 591 }; 601 - "@types/lodash-4.14.184" = { 592 + "@types/lodash-4.14.185" = { 602 593 name = "_at_types_slash_lodash"; 603 594 packageName = "@types/lodash"; 604 - version = "4.14.184"; 595 + version = "4.14.185"; 605 596 src = fetchurl { 606 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.184.tgz"; 607 - sha512 = "RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q=="; 597 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz"; 598 + sha512 = "evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA=="; 608 599 }; 609 600 }; 610 601 "@types/mime-3.0.1" = { ··· 625 616 sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA=="; 626 617 }; 627 618 }; 628 - "@types/node-18.7.14" = { 619 + "@types/node-18.7.18" = { 629 620 name = "_at_types_slash_node"; 630 621 packageName = "@types/node"; 631 - version = "18.7.14"; 622 + version = "18.7.18"; 632 623 src = fetchurl { 633 - url = "https://registry.npmjs.org/@types/node/-/node-18.7.14.tgz"; 634 - sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA=="; 624 + url = "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz"; 625 + sha512 = "m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg=="; 635 626 }; 636 627 }; 637 628 "@types/node-fetch-2.6.2" = { ··· 688 679 sha512 = "sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA=="; 689 680 }; 690 681 }; 682 + "@types/webidl-conversions-7.0.0" = { 683 + name = "_at_types_slash_webidl-conversions"; 684 + packageName = "@types/webidl-conversions"; 685 + version = "7.0.0"; 686 + src = fetchurl { 687 + url = "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz"; 688 + sha512 = "xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog=="; 689 + }; 690 + }; 691 + "@types/whatwg-url-8.2.2" = { 692 + name = "_at_types_slash_whatwg-url"; 693 + packageName = "@types/whatwg-url"; 694 + version = "8.2.2"; 695 + src = fetchurl { 696 + url = "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz"; 697 + sha512 = "FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA=="; 698 + }; 699 + }; 691 700 "@vue/compiler-sfc-2.7.10" = { 692 701 name = "_at_vue_slash_compiler-sfc"; 693 702 packageName = "@vue/compiler-sfc"; ··· 742 751 sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 743 752 }; 744 753 }; 745 - "address-1.2.0" = { 754 + "address-1.2.1" = { 746 755 name = "address"; 747 756 packageName = "address"; 748 - version = "1.2.0"; 757 + version = "1.2.1"; 749 758 src = fetchurl { 750 - url = "https://registry.npmjs.org/address/-/address-1.2.0.tgz"; 751 - sha512 = "tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig=="; 759 + url = "https://registry.npmjs.org/address/-/address-1.2.1.tgz"; 760 + sha512 = "B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA=="; 752 761 }; 753 762 }; 754 763 "adler-32-1.2.0" = { ··· 1084 1093 sha512 = "vkyt1+sj6qaD9oMtqqLE2pZ2IcHI66kFx8lpnVuXp55SnNPjKghfOhVfZpaDwDPpY0oVWP3Qu1uHZWxF3E856A=="; 1085 1094 }; 1086 1095 }; 1087 - "aws-sdk-2.1207.0" = { 1096 + "aws-sdk-2.1218.0" = { 1088 1097 name = "aws-sdk"; 1089 1098 packageName = "aws-sdk"; 1090 - version = "2.1207.0"; 1099 + version = "2.1218.0"; 1091 1100 src = fetchurl { 1092 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1207.0.tgz"; 1093 - sha512 = "UDNYNeWw9ATbz+pH4lI3AUQgnmK3RwowCrXmW+lVV0bZYo+efiB/LEWQKe0nZK9K2h1LxZYihIih9dOvaGme/w=="; 1101 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1218.0.tgz"; 1102 + sha512 = "oreF2jKfUZ8VKnIKh8TrOOOsdSfv87jHGtWQNAHdvfeyrYK5FrnvGkHUZ3bu6g6u1gHwu5FhTPiRMbgS8Re+NA=="; 1094 1103 }; 1095 1104 }; 1096 1105 "aws-sign2-0.7.0" = { ··· 1264 1273 sha512 = "ikAdCnrloKmFOugAfxWws89/fPc+nw0OOG1IzIE72uSOg/A3cYptKCjSUhDTuj7fhsJtzkzlv7l3b8PzRHLN0Q=="; 1265 1274 }; 1266 1275 }; 1267 - "bl-2.2.1" = { 1268 - name = "bl"; 1269 - packageName = "bl"; 1270 - version = "2.2.1"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz"; 1273 - sha512 = "6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g=="; 1274 - }; 1275 - }; 1276 1276 "bl-4.1.0" = { 1277 1277 name = "bl"; 1278 1278 packageName = "bl"; ··· 1381 1381 sha512 = "YyNI4qJJ+piQG6MMEuo7J3Bzaqssufx04zpEKYfSrl/1Op59HWali9zMtBpXnkmqMcOuWJPZvudrm9wISmnCbg=="; 1382 1382 }; 1383 1383 }; 1384 - "bson-1.1.6" = { 1384 + "bson-4.7.0" = { 1385 1385 name = "bson"; 1386 1386 packageName = "bson"; 1387 - version = "1.1.6"; 1387 + version = "4.7.0"; 1388 1388 src = fetchurl { 1389 - url = "https://registry.npmjs.org/bson/-/bson-1.1.6.tgz"; 1390 - sha512 = "EvVNVeGo4tHxwi8L6bPj3y3itEvStdwvvlojVxxbyYfoaxJ6keLgrTuKdyfEAszFK+H3olzBuafE0yoh0D1gdg=="; 1389 + url = "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz"; 1390 + sha512 = "VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA=="; 1391 1391 }; 1392 1392 }; 1393 1393 "buffer-4.9.2" = { ··· 2047 2047 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2048 2048 }; 2049 2049 }; 2050 - "core-js-3.25.0" = { 2050 + "core-js-3.25.2" = { 2051 2051 name = "core-js"; 2052 2052 packageName = "core-js"; 2053 - version = "3.25.0"; 2053 + version = "3.25.2"; 2054 2054 src = fetchurl { 2055 - url = "https://registry.npmjs.org/core-js/-/core-js-3.25.0.tgz"; 2056 - sha512 = "CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA=="; 2055 + url = "https://registry.npmjs.org/core-js/-/core-js-3.25.2.tgz"; 2056 + sha512 = "YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A=="; 2057 2057 }; 2058 2058 }; 2059 2059 "core-util-is-1.0.2" = { ··· 2173 2173 sha512 = "FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw=="; 2174 2174 }; 2175 2175 }; 2176 - "csstype-3.1.0" = { 2176 + "csstype-3.1.1" = { 2177 2177 name = "csstype"; 2178 2178 packageName = "csstype"; 2179 - version = "3.1.0"; 2179 + version = "3.1.1"; 2180 2180 src = fetchurl { 2181 - url = "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz"; 2182 - sha512 = "uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA=="; 2181 + url = "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz"; 2182 + sha512 = "DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="; 2183 2183 }; 2184 2184 }; 2185 2185 "dashdash-1.14.1" = { ··· 2524 2524 sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 2525 2525 }; 2526 2526 }; 2527 - "element-ui-2.15.9" = { 2527 + "element-ui-2.15.10" = { 2528 2528 name = "element-ui"; 2529 2529 packageName = "element-ui"; 2530 - version = "2.15.9"; 2530 + version = "2.15.10"; 2531 2531 src = fetchurl { 2532 - url = "https://registry.npmjs.org/element-ui/-/element-ui-2.15.9.tgz"; 2533 - sha512 = "dx45nQLt4Hn87/Z9eRr3ex6KFZbxlFAwEU3QoW3wA5EsYftvHTyL9Pq7VnXXD7hu1Eiaup2jcs6kp+/VSFmXuA=="; 2532 + url = "https://registry.npmjs.org/element-ui/-/element-ui-2.15.10.tgz"; 2533 + sha512 = "jmD++mU2wKXbisvx4fxOl2mHaU+HWHTAq/3Wf8x9Bwyu4GdDZPLABb+CGi3DWN6fPqdgRcd74aX39DO+YHObLw=="; 2534 2534 }; 2535 2535 }; 2536 2536 "emoji-regex-8.0.0" = { ··· 2614 2614 sha512 = "2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="; 2615 2615 }; 2616 2616 }; 2617 - "es-abstract-1.20.1" = { 2617 + "es-abstract-1.20.2" = { 2618 2618 name = "es-abstract"; 2619 2619 packageName = "es-abstract"; 2620 - version = "1.20.1"; 2620 + version = "1.20.2"; 2621 2621 src = fetchurl { 2622 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz"; 2623 - sha512 = "WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA=="; 2622 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz"; 2623 + sha512 = "XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ=="; 2624 2624 }; 2625 2625 }; 2626 2626 "es-aggregate-error-1.0.8" = { ··· 2857 2857 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 2858 2858 }; 2859 2859 }; 2860 - "fast-glob-3.2.11" = { 2860 + "fast-glob-3.2.12" = { 2861 2861 name = "fast-glob"; 2862 2862 packageName = "fast-glob"; 2863 - version = "3.2.11"; 2863 + version = "3.2.12"; 2864 2864 src = fetchurl { 2865 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz"; 2866 - sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="; 2865 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"; 2866 + sha512 = "DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="; 2867 2867 }; 2868 2868 }; 2869 2869 "fast-json-stable-stringify-2.1.0" = { ··· 2920 2920 sha512 = "yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="; 2921 2921 }; 2922 2922 }; 2923 - "file-type-14.7.1" = { 2923 + "file-type-16.5.4" = { 2924 2924 name = "file-type"; 2925 2925 packageName = "file-type"; 2926 - version = "14.7.1"; 2926 + version = "16.5.4"; 2927 2927 src = fetchurl { 2928 - url = "https://registry.npmjs.org/file-type/-/file-type-14.7.1.tgz"; 2929 - sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA=="; 2928 + url = "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz"; 2929 + sha512 = "/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw=="; 2930 2930 }; 2931 2931 }; 2932 2932 "file-uri-to-path-2.0.0" = { ··· 2983 2983 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 2984 2984 }; 2985 2985 }; 2986 - "follow-redirects-1.15.1" = { 2986 + "follow-redirects-1.15.2" = { 2987 2987 name = "follow-redirects"; 2988 2988 packageName = "follow-redirects"; 2989 - version = "1.15.1"; 2989 + version = "1.15.2"; 2990 2990 src = fetchurl { 2991 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz"; 2992 - sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA=="; 2991 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 2992 + sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 2993 2993 }; 2994 2994 }; 2995 2995 "for-each-0.3.3" = { ··· 3172 3172 sha512 = "eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ=="; 3173 3173 }; 3174 3174 }; 3175 - "generic-pool-3.8.2" = { 3175 + "generic-pool-3.9.0" = { 3176 3176 name = "generic-pool"; 3177 3177 packageName = "generic-pool"; 3178 - version = "3.8.2"; 3178 + version = "3.9.0"; 3179 3179 src = fetchurl { 3180 - url = "https://registry.npmjs.org/generic-pool/-/generic-pool-3.8.2.tgz"; 3181 - sha512 = "nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg=="; 3180 + url = "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz"; 3181 + sha512 = "hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g=="; 3182 3182 }; 3183 3183 }; 3184 3184 "get-caller-file-1.0.3" = { ··· 3199 3199 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3200 3200 }; 3201 3201 }; 3202 - "get-intrinsic-1.1.2" = { 3202 + "get-intrinsic-1.1.3" = { 3203 3203 name = "get-intrinsic"; 3204 3204 packageName = "get-intrinsic"; 3205 - version = "1.1.2"; 3205 + version = "1.1.3"; 3206 3206 src = fetchurl { 3207 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz"; 3208 - sha512 = "Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA=="; 3207 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"; 3208 + sha512 = "QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="; 3209 3209 }; 3210 3210 }; 3211 3211 "get-package-type-0.1.0" = { ··· 3316 3316 sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 3317 3317 }; 3318 3318 }; 3319 - "gm-1.23.1" = { 3319 + "gm-1.24.0" = { 3320 3320 name = "gm"; 3321 3321 packageName = "gm"; 3322 - version = "1.23.1"; 3322 + version = "1.24.0"; 3323 3323 src = fetchurl { 3324 - url = "https://registry.npmjs.org/gm/-/gm-1.23.1.tgz"; 3325 - sha512 = "wYGVAa8/sh9ggF5qWoOs6eArcAgwEPkDNvf637jHRHkMUznvs7m/Q2vrc0KLN6B8px3nnRJqJcXK4mTK6lLFmg=="; 3324 + url = "https://registry.npmjs.org/gm/-/gm-1.24.0.tgz"; 3325 + sha512 = "HsB94GIi6D4KklPrcRtq85CUuQhgi292N7vOx00pBH95sKuuy9LfenL9UtqXV4XFU8AmP5EaIhYcCxYp9zjiGQ=="; 3326 3326 }; 3327 3327 }; 3328 3328 "google-timezones-json-1.0.2" = { ··· 3802 3802 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 3803 3803 }; 3804 3804 }; 3805 - "is-callable-1.2.4" = { 3805 + "is-callable-1.2.6" = { 3806 3806 name = "is-callable"; 3807 3807 packageName = "is-callable"; 3808 - version = "1.2.4"; 3808 + version = "1.2.6"; 3809 3809 src = fetchurl { 3810 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"; 3811 - sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; 3810 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz"; 3811 + sha512 = "krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q=="; 3812 3812 }; 3813 3813 }; 3814 3814 "is-core-module-2.10.0" = { ··· 4099 4099 sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 4100 4100 }; 4101 4101 }; 4102 - "isbot-3.5.2" = { 4102 + "isbot-3.5.3" = { 4103 4103 name = "isbot"; 4104 4104 packageName = "isbot"; 4105 - version = "3.5.2"; 4105 + version = "3.5.3"; 4106 4106 src = fetchurl { 4107 - url = "https://registry.npmjs.org/isbot/-/isbot-3.5.2.tgz"; 4108 - sha512 = "7iXQPDK1GBKvWS9N71bNnQ2KMcqwlMhdLkPma/EBn+8ZRkCbhun3yqqS1hmRqysTwJLGvJrUTmRIHibLWrXQQA=="; 4107 + url = "https://registry.npmjs.org/isbot/-/isbot-3.5.3.tgz"; 4108 + sha512 = "mMLxdBl0hB6UEDibl/nXPSmF+kjX9cOKEJw1YeiKBGr6AdZq/LQUsk7UlDfr/D3gU+PdR6hf8o72BLOxzgw6EA=="; 4109 4109 }; 4110 4110 }; 4111 4111 "isexe-2.0.0" = { ··· 5062 5062 sha512 = "B/y4+b2O5G2gjuxIFtCE2EkM17R2NM7/3F8x0qcPsqy4V83bitJTIO4TIeZpYlzu/xy6INiY/+84BEm6+7Cmzg=="; 5063 5063 }; 5064 5064 }; 5065 - "mongodb-3.7.3" = { 5065 + "mongodb-4.9.1" = { 5066 5066 name = "mongodb"; 5067 5067 packageName = "mongodb"; 5068 - version = "3.7.3"; 5068 + version = "4.9.1"; 5069 + src = fetchurl { 5070 + url = "https://registry.npmjs.org/mongodb/-/mongodb-4.9.1.tgz"; 5071 + sha512 = "ZhgI/qBf84fD7sI4waZBoLBNJYPQN5IOC++SBCiPiyhzpNKOxN/fi0tBHvH2dEC42HXtNEbFB0zmNz4+oVtorQ=="; 5072 + }; 5073 + }; 5074 + "mongodb-connection-string-url-2.5.3" = { 5075 + name = "mongodb-connection-string-url"; 5076 + packageName = "mongodb-connection-string-url"; 5077 + version = "2.5.3"; 5069 5078 src = fetchurl { 5070 - url = "https://registry.npmjs.org/mongodb/-/mongodb-3.7.3.tgz"; 5071 - sha512 = "Psm+g3/wHXhjBEktkxXsFMZvd3nemI0r3IPsE0bU+4//PnvNWKkzhZcEsbPcYiWqe8XqXJJEg4Tgtr7Raw67Yw=="; 5079 + url = "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.3.tgz"; 5080 + sha512 = "f+/WsED+xF4B74l3k9V/XkTVj5/fxFH2o5ToKXd8Iyi5UhM+sO9u0Ape17Mvl/GkZaFtM0HQnzAG5OTmhKw+tQ=="; 5072 5081 }; 5073 5082 }; 5074 5083 "moo-0.5.1" = { ··· 5170 5179 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 5171 5180 }; 5172 5181 }; 5173 - "n8n-core-0.133.1" = { 5182 + "n8n-core-0.134.0" = { 5174 5183 name = "n8n-core"; 5175 5184 packageName = "n8n-core"; 5176 - version = "0.133.1"; 5185 + version = "0.134.0"; 5177 5186 src = fetchurl { 5178 - url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.133.1.tgz"; 5179 - sha512 = "PB5tpo9I44FbSoYIkqplXuhTQGLg7WSJBM7V/wDtuO3l2mQT2L8DCSFz1G0UrKa8ykV7BN+lM1UfWqAx6dgHMg=="; 5187 + url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.134.0.tgz"; 5188 + sha512 = "9NejfRS1FvD7vHn7Oz1465mBNZNAmZ01epxF1NFTjvqx4kNWEYWmKssYE30RINegFAt6He+KJCGzj0AMdtm2iw=="; 5180 5189 }; 5181 5190 }; 5182 - "n8n-design-system-0.33.0" = { 5191 + "n8n-design-system-0.34.0" = { 5183 5192 name = "n8n-design-system"; 5184 5193 packageName = "n8n-design-system"; 5185 - version = "0.33.0"; 5194 + version = "0.34.0"; 5186 5195 src = fetchurl { 5187 - url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.33.0.tgz"; 5188 - sha512 = "JykV5I33Qy9Y7e/wrRX6rYPvtw+bwzg0Lw+fahAL1wZPYNej4UsBvcvQTLouHOys0r6jnnvfTJXBah0menOWGQ=="; 5196 + url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.34.0.tgz"; 5197 + sha512 = "4baEVsmgp+9bvwK0oecuzzq9d99ymfFD7rhL4wWlSyF1sC/4Ug7BJ1aoxS3LMOAwZxAZu3eeumXArHLYT7temw=="; 5189 5198 }; 5190 5199 }; 5191 - "n8n-editor-ui-0.159.2" = { 5200 + "n8n-editor-ui-0.160.0" = { 5192 5201 name = "n8n-editor-ui"; 5193 5202 packageName = "n8n-editor-ui"; 5194 - version = "0.159.2"; 5203 + version = "0.160.0"; 5195 5204 src = fetchurl { 5196 - url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.159.2.tgz"; 5197 - sha512 = "/1IpLjHT9J42gPwMXj7sh6INM85cg3eFRMeT19WsQOcLwfam5hlP0kTB3qqayRBfni79UFASPBGBW5+p753uYw=="; 5205 + url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.160.0.tgz"; 5206 + sha512 = "ys0InljStAlGA9AHH/RutOvkmkDgnC4onkRlSDFZTy9YCSNr5k0sCmhjfQiPe+zrnJUH200kQupcsZQN06AiQA=="; 5198 5207 }; 5199 5208 }; 5200 - "n8n-nodes-base-0.191.1" = { 5209 + "n8n-nodes-base-0.192.0" = { 5201 5210 name = "n8n-nodes-base"; 5202 5211 packageName = "n8n-nodes-base"; 5203 - version = "0.191.1"; 5212 + version = "0.192.0"; 5204 5213 src = fetchurl { 5205 - url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.191.1.tgz"; 5206 - sha512 = "5ZBnz98Q+w4jl9sm5c4qSqVeshOnavCauqR1sJm0uAhxZq67i+xiW3nyBxoHp4uQLKFAlwBQNFQ+atc+uBjoaA=="; 5214 + url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.192.0.tgz"; 5215 + sha512 = "k+xYWdjyM1wCXYfE8ak3lHbqiJrn4NPI2XiEM9oTdYIB9qDItlOSLLnGOVsypksJ71FJfSQVxkZfwpxVzTGbyg=="; 5207 5216 }; 5208 5217 }; 5209 - "n8n-workflow-0.115.0" = { 5218 + "n8n-workflow-0.116.0" = { 5210 5219 name = "n8n-workflow"; 5211 5220 packageName = "n8n-workflow"; 5212 - version = "0.115.0"; 5221 + version = "0.116.0"; 5213 5222 src = fetchurl { 5214 - url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.115.0.tgz"; 5215 - sha512 = "EWASemkbwDxzcqlEUPuyctV/dbxgMq/epeYHgqe9Wk0sijPSF9MWqYGdntANKYMfMuGN9GlyRxeFDZ9Nj5rFrg=="; 5223 + url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.116.0.tgz"; 5224 + sha512 = "i+5fcN6a4m4sn9awGuKHDrsAXLNyFNrgSPffxcP4Vj5R9nRg9zjocWNse05WzcRgzBCvujCOZo7O1ispX0MLCg=="; 5216 5225 }; 5217 5226 }; 5218 5227 "named-placeholders-1.1.2" = { ··· 5620 5629 sha512 = "d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA=="; 5621 5630 }; 5622 5631 }; 5623 - "optional-require-1.1.8" = { 5624 - name = "optional-require"; 5625 - packageName = "optional-require"; 5626 - version = "1.1.8"; 5627 - src = fetchurl { 5628 - url = "https://registry.npmjs.org/optional-require/-/optional-require-1.1.8.tgz"; 5629 - sha512 = "jq83qaUb0wNg9Krv1c5OQ+58EK+vHde6aBPzLvPPqJm89UQWsvSuFy9X/OSNJnFeSOKo7btE0n8Nl2+nE+z5nA=="; 5630 - }; 5631 - }; 5632 5632 "optionator-0.8.3" = { 5633 5633 name = "optionator"; 5634 5634 packageName = "optionator"; ··· 5827 5827 sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g=="; 5828 5828 }; 5829 5829 }; 5830 - "passport-0.5.3" = { 5830 + "passport-0.6.0" = { 5831 5831 name = "passport"; 5832 5832 packageName = "passport"; 5833 - version = "0.5.3"; 5833 + version = "0.6.0"; 5834 5834 src = fetchurl { 5835 - url = "https://registry.npmjs.org/passport/-/passport-0.5.3.tgz"; 5836 - sha512 = "gGc+70h4gGdBWNsR3FuV3byLDY6KBTJAIExGFXTpQaYfbbcHCBlRRKx7RBQSpqEqc5Hh2qVzRs7ssvSfOpkUEA=="; 5835 + url = "https://registry.npmjs.org/passport/-/passport-0.6.0.tgz"; 5836 + sha512 = "0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug=="; 5837 5837 }; 5838 5838 }; 5839 5839 "passport-cookie-1.0.9" = { ··· 6538 6538 sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 6539 6539 }; 6540 6540 }; 6541 - "readable-web-to-node-stream-2.0.0" = { 6541 + "readable-web-to-node-stream-3.0.2" = { 6542 6542 name = "readable-web-to-node-stream"; 6543 6543 packageName = "readable-web-to-node-stream"; 6544 - version = "2.0.0"; 6544 + version = "3.0.2"; 6545 6545 src = fetchurl { 6546 - url = "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz"; 6547 - sha512 = "+oZJurc4hXpaaqsN68GoZGQAQIA3qr09Or4fqEsargABnbe5Aau8hFn6ISVleT3cpY/0n/8drn7huyyEvTbghA=="; 6546 + url = "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz"; 6547 + sha512 = "ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw=="; 6548 6548 }; 6549 6549 }; 6550 6550 "readdirp-3.6.0" = { ··· 6700 6700 sha512 = "wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g=="; 6701 6701 }; 6702 6702 }; 6703 - "require-at-1.0.6" = { 6704 - name = "require-at"; 6705 - packageName = "require-at"; 6706 - version = "1.0.6"; 6707 - src = fetchurl { 6708 - url = "https://registry.npmjs.org/require-at/-/require-at-1.0.6.tgz"; 6709 - sha512 = "7i1auJbMUrXEAZCOQ0VNJgmcT2VOKPRl2YGJwgpHpC9CE91Mv4/4UYIUm4chGJaI381ZDq1JUicFii64Hapd8g=="; 6710 - }; 6711 - }; 6712 6703 "require-directory-2.1.1" = { 6713 6704 name = "require-directory"; 6714 6705 packageName = "require-directory"; ··· 6871 6862 sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 6872 6863 }; 6873 6864 }; 6874 - "safe-stable-stringify-2.3.1" = { 6865 + "safe-stable-stringify-2.4.0" = { 6875 6866 name = "safe-stable-stringify"; 6876 6867 packageName = "safe-stable-stringify"; 6877 - version = "2.3.1"; 6868 + version = "2.4.0"; 6878 6869 src = fetchurl { 6879 - url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz"; 6880 - sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="; 6870 + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.0.tgz"; 6871 + sha512 = "eehKHKpab6E741ud7ZIMcXhKcP6TSIezPkNZhy5U8xC6+VvrRdUA2tMgxGxaGl4cz7c2Ew5+mg5+wNB16KQqrA=="; 6881 6872 }; 6882 6873 }; 6883 6874 "safer-buffer-2.1.2" = { ··· 7132 7123 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 7133 7124 }; 7134 7125 }; 7135 - "simple-git-3.13.0" = { 7126 + "simple-git-3.14.1" = { 7136 7127 name = "simple-git"; 7137 7128 packageName = "simple-git"; 7138 - version = "3.13.0"; 7129 + version = "3.14.1"; 7139 7130 src = fetchurl { 7140 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.13.0.tgz"; 7141 - sha512 = "VYrs3joeHvWGcN3K135RpGpPjm4AHYeOrclwew6LlfHgq6ozQYIW2yMnmjf4PCgVOuSYCbXkdUjyiFawuJz8MA=="; 7131 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.1.tgz"; 7132 + sha512 = "1ThF4PamK9wBORVGMK9HK5si4zoGS2GpRO7tkAFObA4FZv6dKaCVHLQT+8zlgiBm6K2h+wEU9yOaFCu/SR3OyA=="; 7142 7133 }; 7143 7134 }; 7144 7135 "simple-lru-cache-0.0.2" = { ··· 7276 7267 sha512 = "VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug=="; 7277 7268 }; 7278 7269 }; 7279 - "sqlite3-5.0.11" = { 7270 + "sqlite3-5.1.1" = { 7280 7271 name = "sqlite3"; 7281 7272 packageName = "sqlite3"; 7282 - version = "5.0.11"; 7273 + version = "5.1.1"; 7283 7274 src = fetchurl { 7284 - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.11.tgz"; 7285 - sha512 = "4akFOr7u9lJEeAWLJxmwiV43DJcGV7w3ab7SjQFAFaTVyknY3rZjvXTKIVtWqUoY4xwhjwoHKYs2HDW2SoHVsA=="; 7275 + url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.1.tgz"; 7276 + sha512 = "mMinkrQr/LKJqFiFF+AF7imPSzRCCpTCreusZO3D/ssJHVjZOrbu2Caz+zPH5KTmGGXBxXMGSRDssL+44CLxvg=="; 7286 7277 }; 7287 7278 }; 7288 7279 "sqlstring-2.3.3" = { ··· 7501 7492 sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 7502 7493 }; 7503 7494 }; 7504 - "supports-hyperlinks-2.2.0" = { 7495 + "supports-hyperlinks-2.3.0" = { 7505 7496 name = "supports-hyperlinks"; 7506 7497 packageName = "supports-hyperlinks"; 7507 - version = "2.2.0"; 7498 + version = "2.3.0"; 7508 7499 src = fetchurl { 7509 - url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"; 7510 - sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; 7500 + url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz"; 7501 + sha512 = "RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA=="; 7511 7502 }; 7512 7503 }; 7513 7504 "supports-preserve-symlinks-flag-1.0.0" = { ··· 7735 7726 sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; 7736 7727 }; 7737 7728 }; 7738 - "token-types-2.1.1" = { 7729 + "token-types-4.2.1" = { 7739 7730 name = "token-types"; 7740 7731 packageName = "token-types"; 7741 - version = "2.1.1"; 7732 + version = "4.2.1"; 7742 7733 src = fetchurl { 7743 - url = "https://registry.npmjs.org/token-types/-/token-types-2.1.1.tgz"; 7744 - sha512 = "wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q=="; 7734 + url = "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz"; 7735 + sha512 = "6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ=="; 7745 7736 }; 7746 7737 }; 7747 7738 "toposort-2.0.2" = { ··· 7789 7780 sha512 = "N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="; 7790 7781 }; 7791 7782 }; 7783 + "tr46-3.0.0" = { 7784 + name = "tr46"; 7785 + packageName = "tr46"; 7786 + version = "3.0.0"; 7787 + src = fetchurl { 7788 + url = "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz"; 7789 + sha512 = "l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA=="; 7790 + }; 7791 + }; 7792 7792 "triple-beam-1.3.0" = { 7793 7793 name = "triple-beam"; 7794 7794 packageName = "triple-beam"; ··· 7895 7895 src = fetchurl { 7896 7896 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; 7897 7897 sha512 = "/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="; 7898 - }; 7899 - }; 7900 - "typedarray-to-buffer-3.1.5" = { 7901 - name = "typedarray-to-buffer"; 7902 - packageName = "typedarray-to-buffer"; 7903 - version = "3.1.5"; 7904 - src = fetchurl { 7905 - url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; 7906 - sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7907 7898 }; 7908 7899 }; 7909 7900 "typeorm-0.2.45" = { ··· 8275 8266 sha512 = "2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="; 8276 8267 }; 8277 8268 }; 8269 + "webidl-conversions-7.0.0" = { 8270 + name = "webidl-conversions"; 8271 + packageName = "webidl-conversions"; 8272 + version = "7.0.0"; 8273 + src = fetchurl { 8274 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz"; 8275 + sha512 = "VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g=="; 8276 + }; 8277 + }; 8278 + "whatwg-url-11.0.0" = { 8279 + name = "whatwg-url"; 8280 + packageName = "whatwg-url"; 8281 + version = "11.0.0"; 8282 + src = fetchurl { 8283 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz"; 8284 + sha512 = "RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ=="; 8285 + }; 8286 + }; 8278 8287 "whatwg-url-5.0.0" = { 8279 8288 name = "whatwg-url"; 8280 8289 packageName = "whatwg-url"; ··· 8338 8347 sha512 = "iCRnKVvGxOQdsKhcQId2PXV1vV3J/sDPXKA4Oe9+Eti2nb2ESEsYHRYls/UjoUW3bIc5ZDO8dTH50A/5iVN+bw=="; 8339 8348 }; 8340 8349 }; 8341 - "winston-3.8.1" = { 8350 + "winston-3.8.2" = { 8342 8351 name = "winston"; 8343 8352 packageName = "winston"; 8344 - version = "3.8.1"; 8353 + version = "3.8.2"; 8345 8354 src = fetchurl { 8346 - url = "https://registry.npmjs.org/winston/-/winston-3.8.1.tgz"; 8347 - sha512 = "r+6YAiCR4uI3N8eQNOg8k3P3PqwAm20cLKlzVD9E66Ch39+LZC+VH1UKf9JemQj2B3QoUHfKD7Poewn0Pr3Y1w=="; 8355 + url = "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz"; 8356 + sha512 = "MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew=="; 8348 8357 }; 8349 8358 }; 8350 8359 "winston-transport-4.5.0" = { ··· 8605 8614 n8n = nodeEnv.buildNodePackage { 8606 8615 name = "n8n"; 8607 8616 packageName = "n8n"; 8608 - version = "0.193.3"; 8617 + version = "0.194.0"; 8609 8618 src = fetchurl { 8610 - url = "https://registry.npmjs.org/n8n/-/n8n-0.193.3.tgz"; 8611 - sha512 = "iJA+ofjbTSEoxxSnA7iwdoJB3/PjgrDN5lZ0bXrBV+WOmoaBjKbdoxkhJJnUPQRnxQ/5ePEf5qgh7tVG9cEMKA=="; 8619 + url = "https://registry.npmjs.org/n8n/-/n8n-0.194.0.tgz"; 8620 + sha512 = "xbOMzq5AuP7EbvFJQ8VNE3mQYySH1yRS/Eb2ZyBe4ae33FQyZokLEwxGXFLzV2Caf+lX7xv/7d+6cU/m1jliSQ=="; 8612 8621 }; 8613 8622 dependencies = [ 8614 8623 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 8632 8641 sources."tslib-2.4.0" 8633 8642 ]; 8634 8643 }) 8635 - (sources."@azure/core-http-2.2.6" // { 8644 + (sources."@azure/core-http-2.2.7" // { 8636 8645 dependencies = [ 8637 8646 sources."@azure/core-tracing-1.0.0-preview.13" 8638 8647 sources."tough-cookie-4.1.2" ··· 8641 8650 ]; 8642 8651 }) 8643 8652 sources."@azure/core-http-compat-1.3.0" 8644 - (sources."@azure/core-lro-2.2.5" // { 8653 + (sources."@azure/core-lro-2.3.1" // { 8645 8654 dependencies = [ 8646 8655 sources."tslib-2.4.0" 8647 8656 ]; ··· 8651 8660 sources."tslib-2.4.0" 8652 8661 ]; 8653 8662 }) 8654 - (sources."@azure/core-rest-pipeline-1.9.1" // { 8663 + (sources."@azure/core-rest-pipeline-1.9.2" // { 8655 8664 dependencies = [ 8656 8665 sources."@tootallnate/once-2.0.0" 8657 8666 sources."http-proxy-agent-5.0.0" ··· 8663 8672 sources."tslib-2.4.0" 8664 8673 ]; 8665 8674 }) 8666 - (sources."@azure/core-util-1.0.0" // { 8675 + (sources."@azure/core-util-1.1.0" // { 8667 8676 dependencies = [ 8668 8677 sources."tslib-2.4.0" 8669 8678 ]; ··· 8686 8695 sources."tslib-2.4.0" 8687 8696 ]; 8688 8697 }) 8689 - sources."@azure/msal-browser-2.28.1" 8690 - sources."@azure/msal-common-7.3.0" 8691 - sources."@azure/msal-node-1.12.1" 8698 + sources."@azure/msal-browser-2.28.3" 8699 + sources."@azure/msal-common-7.4.1" 8700 + sources."@azure/msal-node-1.14.0" 8692 8701 (sources."@azure/storage-blob-12.11.0" // { 8693 8702 dependencies = [ 8694 8703 sources."@azure/core-tracing-1.0.0-preview.13" 8695 8704 sources."tslib-2.4.0" 8696 8705 ]; 8697 8706 }) 8698 - sources."@babel/parser-7.18.13" 8699 - sources."@babel/runtime-7.18.9" 8707 + sources."@babel/parser-7.19.1" 8708 + sources."@babel/runtime-7.19.0" 8700 8709 sources."@colors/colors-1.5.0" 8701 8710 (sources."@dabh/diagnostics-2.0.3" // { 8702 8711 dependencies = [ ··· 8719 8728 sources."@kafkajs/confluent-schema-registry-1.0.6" 8720 8729 sources."@kwsites/file-exists-1.1.1" 8721 8730 sources."@kwsites/promise-deferred-1.1.1" 8722 - sources."@mapbox/node-pre-gyp-1.0.9" 8731 + sources."@mapbox/node-pre-gyp-1.0.10" 8723 8732 sources."@n8n_io/riot-tmpl-1.0.1" 8724 8733 sources."@nodelib/fs.scandir-2.1.5" 8725 8734 sources."@nodelib/fs.stat-2.0.5" ··· 8730 8739 sources."tslib-2.4.0" 8731 8740 ]; 8732 8741 }) 8733 - (sources."@oclif/core-1.16.0" // { 8742 + (sources."@oclif/core-1.16.3" // { 8734 8743 dependencies = [ 8735 8744 sources."supports-color-8.1.1" 8736 8745 sources."tslib-2.4.0" ··· 8771 8780 sources."@types/body-parser-1.19.2" 8772 8781 sources."@types/connect-3.4.35" 8773 8782 sources."@types/es-aggregate-error-1.0.2" 8774 - sources."@types/express-4.17.13" 8783 + sources."@types/express-4.17.14" 8775 8784 sources."@types/express-jwt-0.0.42" 8776 - sources."@types/express-serve-static-core-4.17.30" 8785 + sources."@types/express-serve-static-core-4.17.31" 8777 8786 sources."@types/express-unless-0.5.3" 8778 8787 sources."@types/json-schema-7.0.11" 8779 - sources."@types/lodash-4.14.184" 8788 + sources."@types/lodash-4.14.185" 8780 8789 sources."@types/mime-3.0.1" 8781 8790 sources."@types/multer-1.4.7" 8782 - sources."@types/node-18.7.14" 8791 + sources."@types/node-18.7.18" 8783 8792 (sources."@types/node-fetch-2.6.2" // { 8784 8793 dependencies = [ 8785 8794 sources."form-data-3.0.1" ··· 8790 8799 sources."@types/serve-static-1.15.0" 8791 8800 sources."@types/tough-cookie-2.3.8" 8792 8801 sources."@types/tunnel-0.0.3" 8802 + sources."@types/webidl-conversions-7.0.0" 8803 + sources."@types/whatwg-url-8.2.2" 8793 8804 sources."@vue/compiler-sfc-2.7.10" 8794 8805 sources."abbrev-1.1.1" 8795 8806 sources."accepts-1.3.8" 8796 8807 sources."access-control-1.0.1" 8797 8808 sources."acorn-8.8.0" 8798 8809 sources."acorn-walk-8.2.0" 8799 - sources."address-1.2.0" 8810 + sources."address-1.2.1" 8800 8811 sources."adler-32-1.2.0" 8801 8812 sources."agent-base-6.0.2" 8802 8813 sources."ajv-6.12.6" ··· 8849 8860 }) 8850 8861 sources."available-typed-arrays-1.0.5" 8851 8862 sources."avsc-5.7.5" 8852 - (sources."aws-sdk-2.1207.0" // { 8863 + (sources."aws-sdk-2.1218.0" // { 8853 8864 dependencies = [ 8854 8865 sources."buffer-4.9.2" 8855 8866 sources."events-1.1.1" ··· 8892 8903 sources."safe-buffer-5.1.2" 8893 8904 ]; 8894 8905 }) 8895 - sources."bl-2.2.1" 8906 + (sources."bl-4.1.0" // { 8907 + dependencies = [ 8908 + sources."readable-stream-3.6.0" 8909 + ]; 8910 + }) 8896 8911 sources."bluebird-3.7.2" 8897 8912 sources."bn.js-4.12.0" 8898 8913 (sources."body-parser-1.20.0" // { ··· 8906 8921 sources."brace-expansion-2.0.1" 8907 8922 sources."braces-3.0.2" 8908 8923 sources."browser-request-0.3.3" 8909 - sources."bson-1.1.6" 8924 + sources."bson-4.7.0" 8910 8925 sources."buffer-5.7.1" 8911 8926 sources."buffer-equal-constant-time-1.0.1" 8912 8927 sources."buffer-from-1.1.2" ··· 9011 9026 sources."cookie-parser-1.4.6" 9012 9027 sources."cookie-signature-1.0.6" 9013 9028 sources."copy-to-2.0.1" 9014 - sources."core-js-3.25.0" 9029 + sources."core-js-3.25.2" 9015 9030 sources."core-util-is-1.0.3" 9016 9031 sources."crc-32-1.2.2" 9017 9032 sources."cron-1.7.2" ··· 9027 9042 sources."css-select-4.3.0" 9028 9043 sources."css-what-6.1.0" 9029 9044 sources."cssfilter-0.0.10" 9030 - sources."csstype-3.1.0" 9045 + sources."csstype-3.1.1" 9031 9046 sources."dashdash-1.14.1" 9032 9047 sources."data-uri-to-buffer-3.0.1" 9033 9048 sources."debug-4.3.4" ··· 9069 9084 sources."ecdsa-sig-formatter-1.0.11" 9070 9085 sources."ee-first-1.1.1" 9071 9086 sources."ejs-3.1.8" 9072 - sources."element-ui-2.15.9" 9087 + sources."element-ui-2.15.10" 9073 9088 sources."emoji-regex-8.0.0" 9074 9089 sources."enabled-1.0.2" 9075 9090 sources."encodeurl-1.0.2" ··· 9078 9093 sources."entities-2.2.0" 9079 9094 sources."env-variable-0.0.6" 9080 9095 sources."err-code-2.0.3" 9081 - sources."es-abstract-1.20.1" 9096 + sources."es-abstract-1.20.2" 9082 9097 sources."es-aggregate-error-1.0.8" 9083 9098 sources."es-array-method-boxes-properly-1.0.0" 9084 9099 sources."es-to-primitive-1.2.1" ··· 9114 9129 sources."external-editor-3.1.0" 9115 9130 sources."extsprintf-1.3.0" 9116 9131 sources."fast-deep-equal-3.1.3" 9117 - sources."fast-glob-3.2.11" 9132 + sources."fast-glob-3.2.12" 9118 9133 sources."fast-json-stable-stringify-2.1.0" 9119 9134 sources."fast-levenshtein-2.0.6" 9120 9135 sources."fastq-1.13.0" ··· 9125 9140 sources."escape-string-regexp-1.0.5" 9126 9141 ]; 9127 9142 }) 9128 - sources."file-type-14.7.1" 9143 + sources."file-type-16.5.4" 9129 9144 sources."file-uri-to-path-2.0.0" 9130 9145 (sources."filelist-1.0.4" // { 9131 9146 dependencies = [ ··· 9141 9156 }) 9142 9157 sources."flatted-3.2.7" 9143 9158 sources."fn.name-1.1.0" 9144 - sources."follow-redirects-1.15.1" 9159 + sources."follow-redirects-1.15.2" 9145 9160 sources."for-each-0.3.3" 9146 9161 sources."forever-agent-0.6.1" 9147 9162 sources."form-data-4.0.0" ··· 9169 9184 sources."functions-have-names-1.2.3" 9170 9185 sources."gauge-3.0.2" 9171 9186 sources."generate-function-2.3.1" 9172 - sources."generic-pool-3.8.2" 9187 + sources."generic-pool-3.9.0" 9173 9188 sources."get-caller-file-2.0.5" 9174 - sources."get-intrinsic-1.1.2" 9189 + sources."get-intrinsic-1.1.3" 9175 9190 sources."get-package-type-0.1.0" 9176 9191 sources."get-port-5.1.1" 9177 9192 sources."get-symbol-description-1.0.0" ··· 9194 9209 }) 9195 9210 sources."globalthis-1.0.3" 9196 9211 sources."globby-11.1.0" 9197 - (sources."gm-1.23.1" // { 9212 + (sources."gm-1.24.0" // { 9198 9213 dependencies = [ 9199 9214 sources."cross-spawn-4.0.2" 9200 9215 sources."debug-3.2.7" ··· 9255 9270 sources."internal-slot-1.0.3" 9256 9271 sources."interpret-1.4.0" 9257 9272 sources."ioredis-4.28.5" 9258 - sources."ip-1.1.8" 9273 + sources."ip-2.0.0" 9259 9274 sources."ip-regex-2.1.0" 9260 9275 sources."ipaddr.js-1.9.1" 9261 9276 sources."is-absolute-1.0.0" ··· 9265 9280 sources."is-binary-path-2.1.0" 9266 9281 sources."is-boolean-object-1.1.2" 9267 9282 sources."is-buffer-1.1.6" 9268 - sources."is-callable-1.2.4" 9283 + sources."is-callable-1.2.6" 9269 9284 sources."is-core-module-2.10.0" 9270 9285 sources."is-date-object-1.0.5" 9271 9286 sources."is-docker-2.2.1" ··· 9296 9311 sources."is-windows-1.0.2" 9297 9312 sources."is-wsl-2.2.0" 9298 9313 sources."isarray-1.0.0" 9299 - sources."isbot-3.5.2" 9314 + sources."isbot-3.5.3" 9300 9315 sources."isexe-2.0.0" 9301 9316 sources."iso-639-1-2.1.15" 9302 9317 sources."isstream-0.1.2" ··· 9430 9445 sources."moment-2.29.4" 9431 9446 sources."moment-timezone-0.5.37" 9432 9447 sources."monaco-editor-0.30.1" 9433 - sources."mongodb-3.7.3" 9448 + (sources."mongodb-4.9.1" // { 9449 + dependencies = [ 9450 + sources."denque-2.1.0" 9451 + ]; 9452 + }) 9453 + (sources."mongodb-connection-string-url-2.5.3" // { 9454 + dependencies = [ 9455 + sources."tr46-3.0.0" 9456 + sources."webidl-conversions-7.0.0" 9457 + sources."whatwg-url-11.0.0" 9458 + ]; 9459 + }) 9434 9460 sources."moo-0.5.1" 9435 9461 (sources."mqtt-4.2.6" // { 9436 9462 dependencies = [ ··· 9438 9464 sources."readable-stream-3.6.0" 9439 9465 ]; 9440 9466 }) 9441 - (sources."mqtt-packet-6.10.0" // { 9442 - dependencies = [ 9443 - sources."bl-4.1.0" 9444 - sources."readable-stream-3.6.0" 9445 - ]; 9446 - }) 9467 + sources."mqtt-packet-6.10.0" 9447 9468 sources."ms-2.1.2" 9448 9469 (sources."mssql-8.1.4" // { 9449 9470 dependencies = [ ··· 9459 9480 ]; 9460 9481 }) 9461 9482 sources."mz-2.7.0" 9462 - sources."n8n-core-0.133.1" 9463 - sources."n8n-design-system-0.33.0" 9464 - sources."n8n-editor-ui-0.159.2" 9465 - (sources."n8n-nodes-base-0.191.1" // { 9483 + sources."n8n-core-0.134.0" 9484 + sources."n8n-design-system-0.34.0" 9485 + sources."n8n-editor-ui-0.160.0" 9486 + (sources."n8n-nodes-base-0.192.0" // { 9466 9487 dependencies = [ 9467 9488 sources."iconv-lite-0.6.3" 9468 9489 ]; 9469 9490 }) 9470 - sources."n8n-workflow-0.115.0" 9491 + sources."n8n-workflow-0.116.0" 9471 9492 (sources."named-placeholders-1.1.2" // { 9472 9493 dependencies = [ 9473 9494 sources."lru-cache-4.1.5" ··· 9523 9544 sources."open-7.4.2" 9524 9545 sources."openapi-types-10.0.0" 9525 9546 sources."openurl-1.1.1" 9526 - sources."optional-require-1.1.8" 9527 9547 sources."optionator-0.8.3" 9528 9548 sources."ordered-read-streams-1.0.1" 9529 9549 sources."os-name-1.0.3" ··· 9534 9554 sources."p-map-2.1.0" 9535 9555 sources."p-timeout-3.2.0" 9536 9556 sources."pac-proxy-agent-5.0.0" 9537 - sources."pac-resolver-5.0.1" 9557 + (sources."pac-resolver-5.0.1" // { 9558 + dependencies = [ 9559 + sources."ip-1.1.8" 9560 + ]; 9561 + }) 9538 9562 sources."packet-reader-1.0.0" 9539 9563 (sources."param-case-3.0.4" // { 9540 9564 dependencies = [ ··· 9553 9577 sources."tslib-2.4.0" 9554 9578 ]; 9555 9579 }) 9556 - sources."passport-0.5.3" 9580 + sources."passport-0.6.0" 9557 9581 sources."passport-cookie-1.0.9" 9558 9582 sources."passport-jwt-4.0.0" 9559 9583 sources."passport-strategy-1.0.0" ··· 9664 9688 sources."safe-buffer-5.1.2" 9665 9689 ]; 9666 9690 }) 9667 - sources."readable-web-to-node-stream-2.0.0" 9691 + (sources."readable-web-to-node-stream-3.0.2" // { 9692 + dependencies = [ 9693 + sources."readable-stream-3.6.0" 9694 + ]; 9695 + }) 9668 9696 sources."readdirp-3.6.0" 9669 9697 sources."rechoir-0.6.2" 9670 9698 sources."redeyed-2.1.1" ··· 9692 9720 sources."tough-cookie-2.5.0" 9693 9721 ]; 9694 9722 }) 9695 - sources."require-at-1.0.6" 9696 9723 sources."require-directory-2.1.1" 9697 9724 sources."requires-port-1.0.0" 9698 9725 sources."resize-observer-polyfill-1.5.1" ··· 9714 9741 sources."run-parallel-1.2.0" 9715 9742 sources."rxjs-6.6.7" 9716 9743 sources."safe-buffer-5.2.1" 9717 - sources."safe-stable-stringify-2.3.1" 9744 + sources."safe-stable-stringify-2.4.0" 9718 9745 sources."safer-buffer-2.1.2" 9719 9746 (sources."sanitize-html-2.7.0" // { 9720 9747 dependencies = [ ··· 9760 9787 }) 9761 9788 sources."side-channel-1.0.4" 9762 9789 sources."signal-exit-3.0.7" 9763 - sources."simple-git-3.13.0" 9790 + sources."simple-git-3.14.1" 9764 9791 sources."simple-lru-cache-0.0.2" 9765 9792 sources."simple-swizzle-0.2.2" 9766 9793 sources."slash-3.0.0" ··· 9779 9806 sources."uuid-3.4.0" 9780 9807 ]; 9781 9808 }) 9782 - (sources."socks-2.7.0" // { 9783 - dependencies = [ 9784 - sources."ip-2.0.0" 9785 - ]; 9786 - }) 9809 + sources."socks-2.7.0" 9787 9810 sources."socks-proxy-agent-5.0.1" 9788 9811 sources."source-map-0.6.1" 9789 9812 sources."source-map-js-1.0.2" ··· 9794 9817 ]; 9795 9818 }) 9796 9819 sources."sprintf-js-1.0.3" 9797 - sources."sqlite3-5.0.11" 9820 + sources."sqlite3-5.1.1" 9798 9821 sources."sqlstring-2.3.3" 9799 9822 sources."sse-channel-3.1.1" 9800 9823 sources."ssf-0.11.2" ··· 9825 9848 sources."strip-ansi-6.0.1" 9826 9849 sources."strtok3-6.3.0" 9827 9850 sources."supports-color-7.2.0" 9828 - sources."supports-hyperlinks-2.2.0" 9851 + sources."supports-hyperlinks-2.3.0" 9829 9852 sources."supports-preserve-symlinks-flag-1.0.0" 9830 9853 sources."swagger-ui-dist-4.14.0" 9831 9854 sources."swagger-ui-express-4.5.0" ··· 9866 9889 sources."to-absolute-glob-2.0.2" 9867 9890 sources."to-regex-range-5.0.1" 9868 9891 sources."toidentifier-1.0.1" 9869 - (sources."token-types-2.1.1" // { 9870 - dependencies = [ 9871 - sources."@tokenizer/token-0.1.1" 9872 - ]; 9873 - }) 9892 + sources."token-types-4.2.1" 9874 9893 sources."toposort-2.0.2" 9875 9894 sources."tough-cookie-3.0.1" 9876 9895 sources."tr46-0.0.3" ··· 9885 9904 sources."type-fest-0.21.3" 9886 9905 sources."type-is-1.6.18" 9887 9906 sources."typedarray-0.0.6" 9888 - sources."typedarray-to-buffer-3.1.5" 9889 9907 (sources."typeorm-0.2.45" // { 9890 9908 dependencies = [ 9891 9909 sources."argparse-2.0.1" ··· 9923 9941 (sources."urllib-2.38.1" // { 9924 9942 dependencies = [ 9925 9943 sources."debug-2.6.9" 9944 + sources."ip-1.1.8" 9926 9945 sources."ms-2.0.0" 9927 9946 sources."statuses-1.5.0" 9928 9947 ]; ··· 9967 9986 sources."semver-5.7.1" 9968 9987 ]; 9969 9988 }) 9970 - (sources."winston-3.8.1" // { 9989 + (sources."winston-3.8.2" // { 9971 9990 dependencies = [ 9972 9991 sources."readable-stream-3.6.0" 9973 9992 ];
+35 -8
pkgs/applications/networking/soju/default.nix
··· 1 - { lib, buildGoModule, fetchFromSourcehut, installShellFiles, scdoc }: 1 + { lib 2 + , buildGoModule 3 + , fetchFromSourcehut 4 + , installShellFiles 5 + , scdoc 6 + }: 2 7 3 8 buildGoModule rec { 4 9 pname = "soju"; 5 - version = "0.4.0"; 10 + version = "0.5.2"; 6 11 7 12 src = fetchFromSourcehut { 8 13 owner = "~emersion"; 9 14 repo = "soju"; 10 15 rev = "v${version}"; 11 - sha256 = "sha256-4ixPEnSa1m52Hu1dzxMG8c0bkqGN04vRlIzvdZ/ES4A="; 16 + hash = "sha256-lpLWqaSFx/RJg73n5XNN/qUXHfZsBkbABoYcgxpK3rU="; 12 17 }; 13 18 14 - vendorSha256 = "sha256-UVFi/QK2zwzhBkPXEJLYc5WSu3OOvWTVVGkMhrrufyc="; 19 + vendorHash = "sha256-n1wwi7I2hDLOe08RkJOiopDUGI6uhipNpBdeOLARIoU="; 15 20 16 21 subPackages = [ 17 22 "cmd/soju" 18 23 "cmd/sojuctl" 19 - "contrib/znc-import.go" 24 + "contrib/migrate-db" 25 + "contrib/znc-import" 20 26 ]; 21 27 22 28 nativeBuildInputs = [ 29 + installShellFiles 23 30 scdoc 24 - installShellFiles 25 31 ]; 26 32 33 + ldflags = [ "-s" "-w" ]; 34 + 35 + postBuild = '' 36 + make doc/soju.1 37 + ''; 38 + 27 39 postInstall = '' 28 - scdoc < doc/soju.1.scd > doc/soju.1 29 40 installManPage doc/soju.1 41 + ''; 42 + 43 + preCheck = '' 44 + # Test all targets. 45 + unset subPackages 46 + 47 + # Disable a test that requires an additional service. 48 + rm database/postgres_test.go 30 49 ''; 31 50 32 51 meta = with lib; { 33 52 description = "A user-friendly IRC bouncer"; 53 + longDescription = '' 54 + soju is a user-friendly IRC bouncer. soju connects to upstream IRC servers 55 + on behalf of the user to provide extra functionality. soju supports many 56 + features such as multiple users, numerous IRCv3 extensions, chat history 57 + playback and detached channels. It is well-suited for both small and large 58 + deployments. 59 + ''; 34 60 homepage = "https://soju.im"; 61 + changelog = "https://git.sr.ht/~emersion/soju/refs/${src.rev}"; 35 62 license = licenses.agpl3Only; 36 - maintainers = with maintainers; [ malvo ]; 63 + maintainers = with maintainers; [ azahi malvo ]; 37 64 }; 38 65 }
+2 -2
pkgs/applications/science/robotics/mavproxy/default.nix
··· 4 4 5 5 buildPythonApplication rec { 6 6 pname = "MAVProxy"; 7 - version = "1.8.55"; 7 + version = "1.8.56"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "sha256-RS3/U52n1Gs3cJtlZeE5z5q1EmC8NrPFt0mHhvIWVTA="; 11 + sha256 = "sha256-wyY9oYWABkXNhlZW4RFuyZy/HEnv7cGFVbXVoEnIF1Q="; 12 12 }; 13 13 14 14 postPatch = ''
+2 -2
pkgs/applications/version-management/yadm/default.nix
··· 29 29 30 30 resholve.mkDerivation rec { 31 31 pname = "yadm"; 32 - version = "3.1.1"; 32 + version = "3.2.1"; 33 33 34 34 nativeBuildInputs = [ installShellFiles ]; 35 35 ··· 37 37 owner = "TheLocehiliosan"; 38 38 repo = "yadm"; 39 39 rev = version; 40 - hash = "sha256-bgiRBlqEjDq0gQ0+aUWpFDeE2piFX3Gy2gEAXgChAOk="; 40 + hash = "sha256:0h3gxhdf32g21xx9si0lv0sa4ipb1k0n5qpln0w2vipvfgakn5mn"; 41 41 }; 42 42 43 43 dontConfigure = true;
+2
pkgs/build-support/build-bazel-package/default.nix
··· 90 90 BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \ 91 91 USER=homeless-shelter \ 92 92 bazel \ 93 + --batch \ 93 94 --output_base="$bazelOut" \ 94 95 --output_user_root="$bazelUserRoot" \ 95 96 ${if fetchConfigured then "build --nobuild" else "fetch"} \ ··· 211 212 BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \ 212 213 USER=homeless-shelter \ 213 214 bazel \ 215 + --batch \ 214 216 --output_base="$bazelOut" \ 215 217 --output_user_root="$bazelUserRoot" \ 216 218 build \
+3 -3
pkgs/data/fonts/unifont/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "unifont"; 7 - version = "14.0.04"; 7 + version = "15.0.01"; 8 8 9 9 ttf = fetchurl { 10 10 url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.ttf"; 11 - hash = "sha256-IR0d3dxWZRHbJUx0bYPfd7ShubJUnN/+Cj6QHkbu/qg="; 11 + hash = "sha256-KZRZvDTpFbHBjdOGd3OfQdCyptebk/SAzRV+8k2mdas="; 12 12 }; 13 13 14 14 pcf = fetchurl { 15 15 url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.pcf.gz"; 16 - hash = "sha256-Q5lR7hX4+P+Q9fVDjw9GtLGqUIslsKOWnn8je85fH+0="; 16 + hash = "sha256-77rkcU0YajAVugWHnGscaFvcFTgWm+1WPLknQZvTjN0="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ];
+2 -2
pkgs/data/fonts/unifont_upper/default.nix
··· 1 1 { lib, fetchurl }: 2 2 3 3 let 4 - version = "14.0.04"; 4 + version = "15.0.01"; 5 5 in fetchurl rec { 6 6 name = "unifont_upper-${version}"; 7 7 ··· 13 13 14 14 postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf"; 15 15 16 - hash = "sha256-cNw+3Y/6h2TD6ZSaGO32NNyiTwCUSJsA3Q5W5/m+eLE="; 16 + hash = "sha256-cGX9umTGRfrQT3gwPgNqxPHB7Un3ZT3b7hPy4IP45Fk="; 17 17 18 18 meta = with lib; { 19 19 description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
+2 -2
pkgs/data/misc/unicode-character-database/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "unicode-character-database"; 8 - version = "14.0.0"; 8 + version = "15.0.0"; 9 9 10 10 src = fetchurl { 11 11 url = "https://www.unicode.org/Public/zipped/${version}/UCD.zip"; 12 - sha256 = "sha256-AzpSdrXXr4hEWJ+ONILzl3qDhecdEH03UFVGUXjCNgA="; 12 + sha256 = "sha256-X73kAPPmh9JcybCo0w12GedssvTD6Fup347BMSy2cYw="; 13 13 }; 14 14 15 15 nativeBuildInputs = [
+4 -4
pkgs/data/misc/unicode-emoji/default.nix
··· 4 4 }: 5 5 6 6 let 7 - version = "14.0"; 7 + version = "15.0"; 8 8 9 9 fetchData = { file, sha256 }: fetchurl { 10 10 url = "https://www.unicode.org/Public/emoji/${version}/${file}"; ··· 21 21 srcs = { 22 22 emoji-sequences = fetchData { 23 23 file = "emoji-sequences.txt"; 24 - sha256 = "sha256-4helD/0oe+UmNIuVxPx/P0R9V10EY/RccewdeemeGxE="; 24 + sha256 = "sha256-vRpXHAcdY3arTnFwBH3WUW3DOh8B3L9+sRcecLHZ2lg="; 25 25 }; 26 26 emoji-test = fetchData { 27 27 file = "emoji-test.txt"; 28 - sha256 = "sha256-DDOVhnFzfvowINzBZ7dGYMZnL4khyRWVzrLL95djsUg="; 28 + sha256 = "sha256-3Rega6+ZJ5jXRhLFL/i/12V5IypEo5FaGG6Wf9Bj0UU="; 29 29 }; 30 30 emoji-zwj-sequences = fetchData { 31 31 file = "emoji-zwj-sequences.txt"; 32 - sha256 = "sha256-owlGLICFkyEsIHz/DUZucxjBmgVO40A69BCJPbIYDA0="; 32 + sha256 = "sha256-9AqrpyUCiBcR/fafa4VaH0pT5o1YzEZDVySsX4ja1u8="; 33 33 }; 34 34 }; 35 35 in
+2 -2
pkgs/data/misc/unihan-database/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "unihan-database"; 8 - version = "14.0.0"; 8 + version = "15.0.0"; 9 9 10 10 src = fetchurl { 11 11 url = "https://www.unicode.org/Public/zipped/${version}/Unihan.zip"; 12 - hash = "sha256-KuRRmyuCzU0VN5wX5Xv7EsM8D1TaSXfeA7KwS88RhS0="; 12 + hash = "sha256-JLFUaR/JfLRCZ7kl1iBkKXCGs/iWtXqBgce21CcCoCY="; 13 13 }; 14 14 15 15 nativeBuildInputs = [
+2 -2
pkgs/desktops/gnome/core/gucharmap/default.nix
··· 45 45 }; 46 46 in stdenv.mkDerivation rec { 47 47 pname = "gucharmap"; 48 - version = "14.0.3"; 48 + version = "15.0.0"; 49 49 50 50 outputs = [ "out" "lib" "dev" "devdoc" ]; 51 51 ··· 54 54 owner = "GNOME"; 55 55 repo = pname; 56 56 rev = version; 57 - sha256 = "sha256-xO34CR+SWxtHuP6G8m0jla0rivVp3ddrsODNo50MhHw="; 57 + sha256 = "sha256-ymEtiOKdmQ1XWrGk40csX5O5BiwxH3aCPboVekcUukQ="; 58 58 }; 59 59 60 60 nativeBuildInputs = [
+30
pkgs/desktops/pantheon/apps/elementary-music/default.nix
··· 9 9 , python3 10 10 , vala 11 11 , wrapGAppsHook4 12 + , elementary-gtk-theme 13 + , elementary-icon-theme 12 14 , glib 13 15 , granite7 14 16 , gst_all_1 ··· 33 35 url = "https://github.com/elementary/music/commit/97a437edc7652e0b85b7d3c6fd87089c14ec02e2.patch"; 34 36 sha256 = "sha256-VmK5dKfSKWAIxfaKXsC8tjg6Pqq1XSGxJDQOZWJX92w="; 35 37 }) 38 + # Skip invalid files instead of stopping playback 39 + # https://github.com/elementary/music/pull/711 40 + (fetchpatch { 41 + url = "https://github.com/elementary/music/commit/88f332197d2131daeff3306ec2a484a28fa4db21.patch"; 42 + sha256 = "sha256-Zga0UmL1PAq4P58IjOuEiXGGn187a0/LHbXXze4sSpY="; 43 + }) 44 + # Enable the NEXT button if repeat mode is set to ALL or ONE 45 + # https://github.com/elementary/music/pull/712 46 + (fetchpatch { 47 + url = "https://github.com/elementary/music/commit/3249e3ca247dfd5ff6b14f4feeeeed63b435bcb8.patch"; 48 + sha256 = "sha256-nx/nlSSRxu4wy8QG5yYBi0BdRoUmnyry7mwzuk5NJxU="; 49 + }) 50 + # Hard code GTK styles 51 + # https://github.com/elementary/music/pull/723 52 + (fetchpatch { 53 + url = "https://github.com/elementary/music/commit/4e22268d38574e56eb3b42ae201c99cc98b510db.patch"; 54 + sha256 = "sha256-DZds7pg0vYL9vga+tP7KJHcjQTmdKHS+D+q/2aYfMmk="; 55 + }) 36 56 ]; 37 57 38 58 nativeBuildInputs = [ ··· 45 65 ]; 46 66 47 67 buildInputs = [ 68 + elementary-icon-theme 48 69 glib 49 70 granite7 50 71 gtk4 ··· 59 80 postPatch = '' 60 81 chmod +x meson/post_install.py 61 82 patchShebangs meson/post_install.py 83 + ''; 84 + 85 + preFixup = '' 86 + gappsWrapperArgs+=( 87 + # The GTK theme is hardcoded. 88 + --prefix XDG_DATA_DIRS : "${elementary-gtk-theme}/share" 89 + # The icon theme is hardcoded. 90 + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS" 91 + ) 62 92 ''; 63 93 64 94 passthru = {
+2 -2
pkgs/development/compilers/gavrasm/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "gavrasm"; 7 - version = "5.1"; 7 + version = "5.4"; 8 8 flatVersion = lib.strings.replaceStrings ["."] [""] version; 9 9 10 10 src = fetchzip { 11 11 url = "http://www.avr-asm-tutorial.net/gavrasm/v${flatVersion}/gavrasm_sources_lin_${flatVersion}.zip"; 12 - sha256 = "0k94f8k4980wvhx3dpl1savpx4wqv9r5090l0skg2k8vlhsv58gf"; 12 + sha256 = "sha256-uTalb8Wzn2RAoUKZx9RZFCX+V9HUEtUnJ4eSltFumh0="; 13 13 stripRoot=false; 14 14 }; 15 15
+17 -6
pkgs/development/compilers/jetbrains-jdk/default.nix
··· 1 - { lib, openjdk11, fetchFromGitHub, jetbrains }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , jetbrains 5 + , openjdk17 6 + }: 2 7 3 - openjdk11.overrideAttrs (oldAttrs: rec { 8 + openjdk17.overrideAttrs (oldAttrs: rec { 4 9 pname = "jetbrains-jdk"; 5 - version = "11_0_13-b1751.25"; 10 + version = "17.0.3-b469.37"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "JetBrains"; 9 14 repo = "JetBrainsRuntime"; 10 15 rev = "jb${version}"; 11 - sha256 = "sha256-TPNYZUkAoiZfp7Ci3fslKnRNGY1lnyIhXYUt6J31lwI="; 16 + hash = 17 + # Upstream issue: https://github.com/JetBrains/JetBrainsRuntime/issues/163 18 + if stdenv.isDarwin then "sha256-ExRvjs53rIuhUx4oCgAqu1Av3CNAgmE1ZlN0srEh3XM=" 19 + else "sha256-O+OIDRJcIsb/vhO2+SYuYdUYWYTGkBcQ9cHTExLIFDE="; 12 20 }; 13 - patches = []; 21 + 14 22 meta = with lib; { 15 23 description = "An OpenJDK fork to better support Jetbrains's products."; 16 24 longDescription = '' ··· 25 33 your own risk. 26 34 ''; 27 35 homepage = "https://confluence.jetbrains.com/display/JBR/JetBrains+Runtime"; 28 - inherit (openjdk11.meta) license platforms mainProgram; 36 + inherit (openjdk17.meta) license platforms mainProgram; 29 37 maintainers = with maintainers; [ edwtjo ]; 38 + 39 + broken = stdenv.isDarwin; 30 40 }; 41 + 31 42 passthru = oldAttrs.passthru // { 32 43 home = "${jetbrains.jdk}/lib/openjdk"; 33 44 };
+6 -2
pkgs/development/compilers/julia/1.8-bin.nix
··· 9 9 url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; 10 10 sha256 = "sha256-MwVO5kfuik+1T8BREOB+C1PgRZH+U9Cky0x+16BekfE="; 11 11 }; 12 + aarch64-linux = fetchurl { 13 + url = "https://julialang-s3.julialang.org/bin/linux/aarch64/${lib.versions.majorMinor version}/julia-${version}-linux-aarch64.tar.gz"; 14 + sha256 = "sha256-ugaDesKJlUe7t5mYnxFGT+zWeCImhxw7ekhhlIEEJnk="; 15 + }; 12 16 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 13 17 14 18 postPatch = '' ··· 53 57 homepage = "https://julialang.org"; 54 58 # Bundled and linked with various GPL code, although Julia itself is MIT. 55 59 license = lib.licenses.gpl2Plus; 56 - maintainers = with lib.maintainers; [ ninjin raskin ]; 57 - platforms = [ "x86_64-linux" ]; 60 + maintainers = with lib.maintainers; [ ninjin raskin nickcao ]; 61 + platforms = [ "x86_64-linux" "aarch64-linux" ]; 58 62 mainProgram = "julia"; 59 63 }; 60 64 }
+1 -1
pkgs/development/compilers/lingua-franca/default.nix
··· 16 16 postPatch = '' 17 17 substituteInPlace bin/lfc \ 18 18 --replace 'base=`dirname $(dirname ''${abs_path})`' "base='$out'" \ 19 - --replace "run_lfc_with_args" "${jdk17_headless}/bin/java -jar $out/lib/jars/org.lflang.lfc-${version}-SNAPSHOT-all.jar" 19 + --replace "run_lfc_with_args" "${jdk17_headless}/bin/java -jar $out/lib/jars/org.lflang.lfc-${version}-all.jar" 20 20 ''; 21 21 22 22 installPhase = ''
+2 -1
pkgs/development/compilers/llvm/14/compiler-rt/default.nix
··· 41 41 "-DCOMPILER_RT_BUILD_SANITIZERS=OFF" 42 42 "-DCOMPILER_RT_BUILD_XRAY=OFF" 43 43 "-DCOMPILER_RT_BUILD_LIBFUZZER=OFF" 44 - "-DCOMPILER_RT_BUILD_PROFILE=OFF" 45 44 "-DCOMPILER_RT_BUILD_MEMPROF=OFF" 46 45 "-DCOMPILER_RT_BUILD_ORC=OFF" # may be possible to build with musl if necessary 46 + ] ++ lib.optionals (useLLVM || bareMetal) [ 47 + "-DCOMPILER_RT_BUILD_PROFILE=OFF" 47 48 ] ++ lib.optionals ((useLLVM && !haveLibc) || bareMetal) [ 48 49 "-DCMAKE_C_COMPILER_WORKS=ON" 49 50 "-DCMAKE_CXX_COMPILER_WORKS=ON"
+1
pkgs/development/compilers/llvm/14/lld/default.nix
··· 37 37 cmakeFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 38 38 "-DLLVM_TABLEGEN_EXE=${buildLlvmTools.llvm}/bin/llvm-tblgen" 39 39 ]; 40 + LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-Wl,-z,stack-size=2097152"; 40 41 41 42 outputs = [ "out" "lib" "dev" ]; 42 43
+2 -1
pkgs/development/coq-modules/QuickChick/default.nix
··· 6 6 owner = "QuickChick"; 7 7 inherit version; 8 8 defaultVersion = with lib; with versions; lib.switch [ coq.coq-version ssreflect.version ] [ 9 - { cases = [ (range "8.13" "8.15") pred.true ]; out = "1.6.2"; } 9 + { cases = [ (range "8.13" "8.16") pred.true ]; out = "1.6.4"; } 10 10 { cases = [ "8.13" pred.true ]; out = "1.5.0"; } 11 11 { cases = [ "8.12" pred.true ]; out = "1.4.0"; } 12 12 { cases = [ "8.11" pred.true ]; out = "1.3.2"; } ··· 17 17 { cases = [ "8.6" pred.true ]; out = "20171102"; } 18 18 { cases = [ "8.5" pred.true ]; out = "20170512"; } 19 19 ] null; 20 + release."1.6.4".sha256 = "sha256-C1060wPSU33yZAFLxGmZlAMXASnx98qz3oSLO8DO+mM="; 20 21 release."1.6.2".sha256 = "0g5q9zw3xd4zndihq96nxkq4w3dh05418wzlwdk1nnn3b6vbx6z0"; 21 22 release."1.5.0".sha256 = "1lq8x86vd3vqqh2yq6hvyagpnhfq5wmk5pg2z0xq7b7dcw7hyfkw"; 22 23 release."1.4.0".sha256 = "068p48pm5yxjc3yv8qwzp25bp9kddvxj81l31mjkyx3sdrsw3kyc";
+3 -3
pkgs/development/embedded/arduino/arduino-cli/default.nix
··· 4 4 5 5 pkg = buildGoModule rec { 6 6 pname = "arduino-cli"; 7 - version = "0.25.1"; 7 + version = "0.27.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "arduino"; 11 11 repo = pname; 12 12 rev = version; 13 - sha256 = "sha256-NuYPqJ/Fvt1P6KFXTIQaAvXYJgTwWrMspPags0Q06cE="; 13 + sha256 = "sha256-lwLzMUMHwheZHrjPttdk6TFsjt8SymHkBMtXTbr/nYE="; 14 14 }; 15 15 16 16 subPackages = [ "." ]; 17 17 18 - vendorSha256 = "sha256-u5YCwnciXlWgqQd9CXfXNipLLlNE3p8+bL6WaTvOkVA="; 18 + vendorSha256 = "sha256-kEM6eCWTI+XKs58cVhNfjJsIwC3r1ATy1sFbjtorgGY="; 19 19 20 20 doCheck = false; 21 21
-20
pkgs/development/interpreters/janet/darwin-remove-net-test.patch
··· 1 - diff --git a/test/suite0009.janet b/test/suite0009.janet 2 - index 6095bc60..25360d60 100644 3 - --- a/test/suite0009.janet 4 - +++ b/test/suite0009.janet 5 - @@ -174,15 +174,6 @@ 6 - (defer (:close stream) 7 - (check-matching-names stream))) 8 - 9 - -# Test localname and peername 10 - -(repeat 20 11 - - (with [s (net/server "127.0.0.1" "8000" names-handler)] 12 - - (defn test-names [] 13 - - (with [conn (net/connect "127.0.0.1" "8000")] 14 - - (check-matching-names conn))) 15 - - (repeat 20 (test-names))) 16 - - (gccollect)) 17 - - 18 - # Create pipe 19 - 20 - (var pipe-counter 0)
+1 -7
pkgs/development/interpreters/janet/default.nix
··· 11 11 sha256 = "sha256-uGbaoWJAWbSQ7QkocU7gFZUiWb0GD8mtuO7V0sUXTv0="; 12 12 }; 13 13 14 - # This release fails the test suite on darwin, remove when debugged. 15 - # See https://github.com/NixOS/nixpkgs/pull/150618 for discussion. 16 - patches = lib.optionals stdenv.isDarwin ./darwin-remove-net-test.patch; 17 - 18 14 postPatch = '' 19 15 substituteInPlace janet.1 \ 20 16 --replace /usr/local/ $out/ ··· 29 25 doInstallCheck = true; 30 26 31 27 installCheckPhase = '' 32 - $out/bin/janet --help 28 + $out/bin/janet -e '(+ 1 2 3)' 33 29 ''; 34 30 35 31 meta = with lib; { ··· 38 34 license = licenses.mit; 39 35 maintainers = with maintainers; [ andrewchambers peterhoeg ]; 40 36 platforms = platforms.all; 41 - # Marked as broken when patch is applied, see comment above patch. 42 - broken = stdenv.isDarwin; 43 37 }; 44 38 }
+6 -2
pkgs/development/interpreters/python/hooks/default.nix
··· 92 92 pythonCatchConflictsHook = callPackage ({ setuptools }: 93 93 makeSetupHook { 94 94 name = "python-catch-conflicts-hook"; 95 - deps = [ setuptools ]; 96 95 substitutions = { 97 - inherit pythonInterpreter; 96 + inherit pythonInterpreter pythonSitePackages setuptools; 98 97 catchConflicts=../catch_conflicts/catch_conflicts.py; 99 98 }; 100 99 } ./python-catch-conflicts-hook.sh) {}; ··· 114 113 inherit pythonSitePackages findutils; 115 114 }; 116 115 } ./python-namespaces-hook.sh) {}; 116 + 117 + pythonOutputDistHook = callPackage ({ }: 118 + makeSetupHook { 119 + name = "python-output-dist-hook"; 120 + } ./python-output-dist-hook.sh ) {}; 117 121 118 122 pythonRecompileBytecodeHook = callPackage ({ }: 119 123 makeSetupHook {
+1 -1
pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
··· 2 2 echo "Sourcing python-catch-conflicts-hook.sh" 3 3 4 4 pythonCatchConflictsPhase() { 5 - @pythonInterpreter@ @catchConflicts@ 5 + PYTHONPATH="@setuptools@/@pythonSitePackages@:$PYTHONPATH" @pythonInterpreter@ @catchConflicts@ 6 6 } 7 7 8 8 if [ -z "${dontUsePythonCatchConflicts-}" ]; then
+10
pkgs/development/interpreters/python/hooks/python-output-dist-hook.sh
··· 1 + # Setup hook for storing dist folder (wheels/sdists) in a separate output 2 + echo "Sourcing python-catch-conflicts-hook.sh" 3 + 4 + pythonOutputDistPhase() { 5 + echo "Executing pythonOutputDistPhase" 6 + mv "dist" "$dist" 7 + echo "Finished executing pythonOutputDistPhase" 8 + } 9 + 10 + preFixupPhases+=" pythonOutputDistPhase"
+11 -2
pkgs/development/interpreters/python/mk-python-derivation.nix
··· 17 17 , pythonCatchConflictsHook 18 18 , pythonImportsCheckHook 19 19 , pythonNamespacesHook 20 + , pythonOutputDistHook 20 21 , pythonRemoveBinBytecodeHook 21 22 , pythonRemoveTestsDirHook 22 23 , setuptoolsBuildHook ··· 48 49 49 50 # Enabled to detect some (native)BuildInputs mistakes 50 51 , strictDeps ? true 52 + 53 + , outputs ? [ "out" ] 51 54 52 55 # used to disable derivation, useful for specific python versions 53 56 , disabled ? false ··· 106 109 let 107 110 inherit (python) stdenv; 108 111 112 + withDistOutput = lib.elem format ["pyproject" "setuptools" "flit"]; 113 + 109 114 name_ = name; 110 115 111 116 self = toPythonModule (stdenv.mkDerivation ((builtins.removeAttrs attrs [ 112 117 "disabled" "checkPhase" "checkInputs" "doCheck" "doInstallCheck" "dontWrapPythonPrograms" "catchConflicts" "format" 113 - "disabledTestPaths" 118 + "disabledTestPaths" "outputs" 114 119 ]) // { 115 120 116 121 name = namePrefix + name_; ··· 121 126 ensureNewerSourcesForZipFilesHook # move to wheel installer (pip) or builder (setuptools, flit, ...)? 122 127 pythonRemoveTestsDirHook 123 128 ] ++ lib.optionals catchConflicts [ 124 - setuptools pythonCatchConflictsHook 129 + pythonCatchConflictsHook 125 130 ] ++ lib.optionals removeBinBytecode [ 126 131 pythonRemoveBinBytecodeHook 127 132 ] ++ lib.optionals (lib.hasSuffix "zip" (attrs.src.name or "")) [ ··· 144 149 ] ++ lib.optionals (python.pythonAtLeast "3.3") [ 145 150 # Optionally enforce PEP420 for python3 146 151 pythonNamespacesHook 152 + ] ++ lib.optionals withDistOutput [ 153 + pythonOutputDistHook 147 154 ] ++ nativeBuildInputs; 148 155 149 156 buildInputs = buildInputs ++ pythonPath; ··· 176 183 177 184 # Python packages built through cross-compilation are always for the host platform. 178 185 disallowedReferences = lib.optionals (python.stdenv.hostPlatform != python.stdenv.buildPlatform) [ python.pythonForBuild ]; 186 + 187 + outputs = outputs ++ lib.optional withDistOutput "dist"; 179 188 180 189 meta = { 181 190 # default to python's platforms
+3 -3
pkgs/development/libraries/aqbanking/sources.nix
··· 15 15 16 16 # https://www.aquamaniac.de/rdm/projects/aqbanking/files 17 17 aqbanking = { 18 - version = "6.5.0"; 19 - hash = "sha256-TS076ghulq2ntoGSBtTrQWjOt+Mtzppo3Gxuq8yetj4="; 20 - releaseId = "435"; 18 + version = "6.5.3"; 19 + hash = "sha256-bGK/JqpC5psh4Yi1T2pdgl1to03hoUy8O2fYWpcFE24="; 20 + releaseId = "467"; 21 21 }; 22 22 }
+4 -4
pkgs/development/libraries/cmark-gfm/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "cmark-gfm"; 4 - version = "0.29.0.gfm.5"; 4 + version = "0.29.0.gfm.6"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "github"; 8 8 repo = "cmark-gfm"; 9 9 rev = version; 10 - sha256 = "sha256-HNFxp62xBNo2GbWiiYXco2NMgoOXsnZNdbXgTK1i1JU="; 10 + sha256 = "sha256-ekHY5EGSrJrQwlXNjKpyj7k0Bzq1dYPacRsfNZ8K+lk="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ cmake ]; 14 - # tests load the library dynamically which for unknown reason failed 15 - doCheck = false; 14 + 15 + doCheck = true; 16 16 17 17 # remove when https://github.com/github/cmark-gfm/pull/248 merged and released 18 18 postInstall = ''
+28
pkgs/development/libraries/freexl/default.nix
··· 1 + { lib, stdenv, fetchurl, validatePkgConfig, libiconv }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "freexl"; 5 + version = "1.0.6"; 6 + 7 + src = fetchurl { 8 + url = "https://www.gaia-gis.it/gaia-sins/freexl-${version}.tar.gz"; 9 + hash = "sha256-Pei1ej0TDLKIHqUtOqnOH+7bG1e32qTrN/dRQE+Q/CI="; 10 + }; 11 + 12 + nativeBuildInputs = [ validatePkgConfig ]; 13 + 14 + buildInputs = lib.optional stdenv.isDarwin libiconv; 15 + 16 + enableParallelBuilding = true; 17 + 18 + doCheck = true; 19 + 20 + meta = with lib; { 21 + description = "A library to extract valid data from within an Excel (.xls) spreadsheet"; 22 + homepage = "https://www.gaia-gis.it/fossil/freexl"; 23 + # They allow any of these 24 + license = with licenses; [ gpl2Plus lgpl21Plus mpl11 ]; 25 + platforms = platforms.unix; 26 + maintainers = with maintainers; [ sikmir ]; 27 + }; 28 + }
+2 -2
pkgs/development/libraries/intel-gmmlib/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "intel-gmmlib"; 9 - version = "22.1.8"; 9 + version = "22.2.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "intel"; 13 13 repo = "gmmlib"; 14 14 rev = "intel-gmmlib-${version}"; 15 - sha256 = "sha256-l6FCFYdHQrH00phcncmeCGrFDs5lmyTRjQXH13nWZwg="; 15 + sha256 = "sha256-Wy2OroZI4bo+3OdKaa0e5N+QNKKgWVOJrK1Cdda8yDI="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libheif/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "libheif"; 6 - version = "1.12.0"; 6 + version = "1.13.0"; 7 7 8 8 outputs = [ "bin" "out" "dev" "man" ]; 9 9 ··· 11 11 owner = "strukturag"; 12 12 repo = "libheif"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-RjGLaDSBO8T7ijRb5a16aUlkCy5vdFPs4O9caIJo4jI="; 14 + sha256 = "sha256-/w/I6dgyiAscUqVpPjw2z6LbZJ6IBTeE5lawLg0awTM="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ autoreconfHook pkg-config ];
+9 -1
pkgs/development/libraries/librttopo/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitea 4 4 , autoreconfHook 5 + , validatePkgConfig 5 6 , geos 6 7 }: 7 8 ··· 19 20 sha256 = "0h7lzlkn9g4xky6h81ndy0aa6dxz8wb6rnl8v3987jy1i6pr072p"; 20 21 }; 21 22 22 - nativeBuildInputs = [ autoreconfHook ]; 23 + nativeBuildInputs = [ 24 + autoreconfHook 25 + validatePkgConfig 26 + geos # for geos-config 27 + ]; 23 28 24 29 buildInputs = [ geos ]; 30 + 31 + enableParallelBuilding = true; 25 32 26 33 meta = with lib; { 27 34 description = "RT Topology Library"; 28 35 homepage = "https://git.osgeo.org/gitea/rttopo/librttopo"; 29 36 license = licenses.gpl2Plus; 30 37 maintainers = with maintainers; [ dotlambda ]; 38 + platforms = platforms.unix; 31 39 }; 32 40 }
+20 -5
pkgs/development/libraries/libspatialite/default.nix
··· 2 2 , stdenv 3 3 , fetchurl 4 4 , pkg-config 5 + , validatePkgConfig 6 + , freexl 5 7 , geos 6 8 , librttopo 7 9 , libxml2 ··· 18 20 outputs = [ "out" "dev" ]; 19 21 20 22 src = fetchurl { 21 - url = "https://www.gaia-gis.it/gaia-sins/libspatialite-sources/${pname}-${version}.tar.gz"; 22 - sha256 = "sha256-7svJQxHHgBLQWevA+uhupe9u7LEzA+boKzdTwbNAnpg="; 23 + url = "https://www.gaia-gis.it/gaia-sins/libspatialite-${version}.tar.gz"; 24 + hash = "sha256-7svJQxHHgBLQWevA+uhupe9u7LEzA+boKzdTwbNAnpg="; 23 25 }; 24 26 25 - nativeBuildInputs = [ pkg-config ]; 27 + nativeBuildInputs = [ 28 + pkg-config 29 + validatePkgConfig 30 + geos # for geos-config 31 + ]; 26 32 27 33 buildInputs = [ 34 + freexl 28 35 geos 29 36 librttopo 30 37 libxml2 ··· 35 42 libiconv 36 43 ]; 37 44 38 - configureFlags = [ "--disable-freexl" ]; 39 - 40 45 enableParallelBuilding = true; 41 46 42 47 postInstall = lib.optionalString stdenv.isDarwin '' 43 48 ln -s $out/lib/mod_spatialite.{so,dylib} 49 + ''; 50 + 51 + # Failed tests (linux & darwin): 52 + # - check_virtualtable6 53 + # - check_drop_rename 54 + doCheck = false; 55 + 56 + preCheck = '' 57 + export LD_LIBRARY_PATH=$(pwd)/src/.libs 58 + export DYLD_LIBRARY_PATH=$(pwd)/src/.libs 44 59 ''; 45 60 46 61 meta = with lib; {
+8 -3
pkgs/development/libraries/liquid-dsp/default.nix
··· 1 - {lib, stdenv, fetchFromGitHub, autoreconfHook }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , cctools 6 + }: 2 7 3 8 stdenv.mkDerivation rec { 4 9 pname = "liquid-dsp"; ··· 11 16 sha256 = "0mr86z37yycrqwbrmsiayi1vqrgpjq0pn1c3p1qrngipkw45jnn0"; 12 17 }; 13 18 14 - nativeBuildInputs = [ autoreconfHook ]; 19 + configureFlags = lib.optionals stdenv.isDarwin [ "LIBTOOL=${cctools}/bin/libtool" ]; 20 + nativeBuildInputs = [ autoreconfHook ] ++ lib.optionals stdenv.isDarwin [ cctools ]; 15 21 16 22 meta = { 17 - broken = stdenv.isDarwin; 18 23 homepage = "https://liquidsdr.org/"; 19 24 description = "Digital signal processing library for software-defined radios"; 20 25 license = lib.licenses.mit;
+2 -2
pkgs/development/libraries/nss/latest.nix
··· 5 5 # Example: nix-shell ./maintainers/scripts/update.nix --argstr package cacert 6 6 7 7 import ./generic.nix { 8 - version = "3.82"; 9 - hash = "sha256-Mr9nO3LC+ZU+07THAzq/WmytMChUokrliMV1plZ8FXM="; 8 + version = "3.83"; 9 + hash = "sha256-qyPqZ/lkCQuLc8gKZ0CCVxw25fTrqSBXrGSMnB3vASg="; 10 10 }
+2 -2
pkgs/development/libraries/physics/geant4/default.nix
··· 47 47 lib.warnIf (enableQT != false) "geant4: enableQT is deprecated, please use enableQt" 48 48 49 49 stdenv.mkDerivation rec { 50 - version = "11.0.2"; 50 + version = "11.0.3"; 51 51 pname = "geant4"; 52 52 53 53 src = fetchurl{ 54 54 url = "https://cern.ch/geant4-data/releases/geant4-v${version}.tar.gz"; 55 - hash = "sha256-/AONuDcxL3Tj+O/RC108qHqZnUg9TYlZxguKdJIh7GE="; 55 + hash = "sha256-cvi2h1EtbmMNxsZMXEG6cRIgRoVAEymZ0A5PzhkIrkg="; 56 56 }; 57 57 58 58 cmakeFlags = [
+1
pkgs/development/libraries/protobuf/generic-v3-cmake.nix
··· 101 101 platforms = lib.platforms.unix; 102 102 homepage = "https://developers.google.com/protocol-buffers/"; 103 103 maintainers = with lib.maintainers; [ jonringer ]; 104 + mainProgram = "protoc"; 104 105 }; 105 106 }; 106 107 in
+10 -8
pkgs/development/libraries/readosm/default.nix
··· 1 - { lib, stdenv, fetchurl, expat, zlib, geos, libspatialite }: 1 + { lib, stdenv, fetchurl, expat, zlib, validatePkgConfig }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "readosm"; 5 5 version = "1.1.0a"; 6 6 7 7 src = fetchurl { 8 - url = "https://www.gaia-gis.it/gaia-sins/readosm-sources/${pname}-${version}.tar.gz"; 9 - sha256 = "0igif2bxf4dr82glxz9gyx5mmni0r2dsnx9p9k6pxv3c4lfhaz6v"; 8 + url = "https://www.gaia-gis.it/gaia-sins/readosm-${version}.tar.gz"; 9 + hash = "sha256-23wFHSVs7H7NTDd1q5vIINpaS/cv/U6fQLkR15dw8UU="; 10 10 }; 11 11 12 - buildInputs = [ expat zlib geos libspatialite ]; 12 + nativeBuildInputs = [ validatePkgConfig ]; 13 13 14 - configureFlags = [ "--disable-freexl" ]; 14 + buildInputs = [ expat zlib ]; 15 15 16 16 enableParallelBuilding = true; 17 17 18 - meta = { 18 + doCheck = true; 19 + 20 + meta = with lib; { 19 21 description = "An open source library to extract valid data from within an Open Street Map input file"; 20 22 homepage = "https://www.gaia-gis.it/fossil/readosm"; 21 - license = with lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 22 - platforms = lib.platforms.linux; 23 + license = with licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 24 + platforms = platforms.unix; 23 25 }; 24 26 }
+13 -6
pkgs/development/libraries/spatialite-tools/default.nix pkgs/applications/gis/spatialite-tools/default.nix
··· 2 2 , stdenv 3 3 , fetchurl 4 4 , pkg-config 5 + , freexl 5 6 , geos 6 7 , expat 7 8 , librttopo ··· 11 12 , proj 12 13 , readosm 13 14 , sqlite 15 + , testers 16 + , spatialite_tools 14 17 }: 15 18 16 19 stdenv.mkDerivation rec { ··· 18 21 version = "5.0.1"; 19 22 20 23 src = fetchurl { 21 - url = "https://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/${pname}-${version}.tar.gz"; 22 - sha256 = "sha256-lgTCBeh/A3eJvFIwLGbM0TccPpjHTo7E4psHUt41Fxw="; 24 + url = "https://www.gaia-gis.it/gaia-sins/spatialite-tools-${version}.tar.gz"; 25 + hash = "sha256-lgTCBeh/A3eJvFIwLGbM0TccPpjHTo7E4psHUt41Fxw="; 23 26 }; 24 27 25 28 nativeBuildInputs = [ pkg-config ]; 26 29 27 30 buildInputs = [ 28 31 expat 32 + freexl 29 33 geos 30 34 librttopo 31 35 libspatialite ··· 35 39 readosm 36 40 sqlite 37 41 ]; 38 - 39 - configureFlags = [ "--disable-freexl" ]; 40 42 41 43 enableParallelBuilding = true; 42 44 43 - NIX_LDFLAGS = "-lsqlite3"; 45 + passthru.tests.version = testers.testVersion { 46 + package = spatialite_tools; 47 + command = "! spatialite_tool --version"; 48 + version = "${libspatialite.version}"; 49 + }; 44 50 45 51 meta = with lib; { 46 52 description = "A complete sqlite3-compatible CLI front-end for libspatialite"; 47 53 homepage = "https://www.gaia-gis.it/fossil/spatialite-tools"; 48 54 license = with licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 49 - platforms = platforms.linux; 55 + platforms = platforms.unix; 50 56 maintainers = with maintainers; [ dotlambda ]; 57 + mainProgram = "spatialite_tool"; 51 58 }; 52 59 }
+2 -2
pkgs/development/libraries/sqlitecpp/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sqlitecpp"; 5 - version = "3.1.1"; 5 + version = "3.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "SRombauts"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "1c2yyipiqswi5sf9xmpsgw6l1illzmcpkjm56agk6kl2hay23lgr"; 11 + sha256 = "sha256-Z1c2lQZ0UltcIf9dTnumZPhke4uEmsjg/Ygppvx3kxY="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/vapoursynth/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "vapoursynth"; 9 - version = "59"; 9 + version = "60"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "vapoursynth"; 13 13 repo = "vapoursynth"; 14 14 rev = "R${version}"; 15 - sha256 = "sha256-6w7GSC5ZNIhLpulni4sKq0OvuxHlTJRilBFGH5PQW8U="; 15 + sha256 = "sha256-E1uHNcGxBrwg00tNnY3qH6BpvXtBEGkX7QFy0aMLSnA="; 16 16 }; 17 17 18 18 patches = [
+5 -2
pkgs/development/libraries/wolfssl/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "wolfssl"; 10 - version = "5.4.0"; 10 + version = "5.5.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "wolfSSL"; 14 14 repo = "wolfssl"; 15 15 rev = "v${version}-stable"; 16 - sha256 = "sha256-5a83Mi+S+mASdZ6O2+0I+qulsF6yNUe80a3qZvWmXHw="; 16 + sha256 = "sha256-PqxwWPK5eBcS5d6e0CL4uZHybDye1K8pxniKU99YSAE="; 17 17 }; 18 18 19 19 postPatch = '' 20 20 patchShebangs ./scripts 21 21 # ocsp tests require network access 22 22 sed -i -e '/ocsp\.test/d' -e '/ocsp-stapling\.test/d' scripts/include.am 23 + # ensure test detects musl-based systems too 24 + substituteInPlace scripts/ocsp-stapling2.test \ 25 + --replace '"linux-gnu"' '"linux-"' 23 26 ''; 24 27 25 28 # Almost same as Debian but for now using --enable-all --enable-reproducible-build instead of --enable-distro to ensure options.h gets installed
+1
pkgs/development/node-packages/main-programs.nix
··· 9 9 coffee-script = "coffee"; 10 10 typescript = "tsc"; 11 11 vue-cli = "vue"; 12 + "@withgraphite/graphite-cli" = "gt"; 12 13 13 14 # Packages that provide a single executable whose name differs from the package's `name`. 14 15 "@angular/cli" = "ng";
+1
pkgs/development/node-packages/node-packages.json
··· 387 387 , "webpack-dev-server" 388 388 , "copy-webpack-plugin" 389 389 , "webtorrent-cli" 390 + , "@withgraphite/graphite-cli" 390 391 , "wrangler" 391 392 , "wring" 392 393 , "write-good"
+2080 -1932
pkgs/development/node-packages/node-packages.nix
··· 112 112 sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 113 113 }; 114 114 }; 115 - "@angular-devkit/architect-0.1402.2" = { 115 + "@angular-devkit/architect-0.1402.3" = { 116 116 name = "_at_angular-devkit_slash_architect"; 117 117 packageName = "@angular-devkit/architect"; 118 - version = "0.1402.2"; 118 + version = "0.1402.3"; 119 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.2.tgz"; 121 - sha512 = "ICcK7OKViMhLkj4btnH/8nv0wjxuKchT/LDN6jfb9gUYUuoon190q0/L/U6ORDwvmjD6sUTurStzOxjuiS0KIg=="; 120 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.3.tgz"; 121 + sha512 = "vU5j0WhSYxux5RzhuZ3VY3B4XbRJuEtVqSoW5j9ew3Oc78tkR6RNXgT97PPr0GfRA1fOEhVoReR7NbsKU3uIkQ=="; 122 122 }; 123 123 }; 124 124 "@angular-devkit/core-14.2.1" = { ··· 139 139 sha512 = "ofDhTmJqoAkmkJP0duwUaCxDBMxPlc+AWYwgs3rKKZeJBb0d+tchEXHXevD5bYbbRfXtnwM+Vye2XYHhA4nWAA=="; 140 140 }; 141 141 }; 142 + "@angular-devkit/core-14.2.3" = { 143 + name = "_at_angular-devkit_slash_core"; 144 + packageName = "@angular-devkit/core"; 145 + version = "14.2.3"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.3.tgz"; 148 + sha512 = "E8bnC6F0xNni4IIKAnIDBDkbi6cOePm4Q/Y9IrTk3wquGTfsiMlQpdnRA0nr+FTN/LT3N08O5dEw2Gd4ff4tGA=="; 149 + }; 150 + }; 142 151 "@angular-devkit/schematics-14.2.1" = { 143 152 name = "_at_angular-devkit_slash_schematics"; 144 153 packageName = "@angular-devkit/schematics"; ··· 155 164 src = fetchurl { 156 165 url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.2.tgz"; 157 166 sha512 = "90hseNg1yQ2AR+lVr/NByZRHnYAlzCL6hr9p9q1KPHxA3Owo04yX6n6dvR/xf27hCopXInXKPsasR59XCx5ZOQ=="; 167 + }; 168 + }; 169 + "@angular-devkit/schematics-14.2.3" = { 170 + name = "_at_angular-devkit_slash_schematics"; 171 + packageName = "@angular-devkit/schematics"; 172 + version = "14.2.3"; 173 + src = fetchurl { 174 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.3.tgz"; 175 + sha512 = "98ldx+To7xW1BH/DqIToQwHVscPZhXnZP01SeoiUnFlJE5FnXx8Lv7qHAQtE96M+cfE5NR1NKBgfCH3S3rnmFA=="; 158 176 }; 159 177 }; 160 178 "@angular-devkit/schematics-cli-14.2.2" = { ··· 571 589 sha512 = "Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA=="; 572 590 }; 573 591 }; 574 - "@aws-sdk/abort-controller-3.168.0" = { 592 + "@aws-sdk/abort-controller-3.171.0" = { 575 593 name = "_at_aws-sdk_slash_abort-controller"; 576 594 packageName = "@aws-sdk/abort-controller"; 577 - version = "3.168.0"; 595 + version = "3.171.0"; 578 596 src = fetchurl { 579 - url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.168.0.tgz"; 580 - sha512 = "mvFXmdoIVV3cUmPuwzzHLB1YNjxzm7sHk99zE0zvT653kc7slThLMfO5Kc1WtblXAKbE6eqPDMcA0zg6eRM1cw=="; 597 + url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.171.0.tgz"; 598 + sha512 = "D3ShqAdCSFvKN3pGGn0KwK6lece4nqKY0hrxMIaYvDwewGjoIgEMBPGhCK1kNoBo6lJ93Fu1u4DheV+8abSmjQ=="; 581 599 }; 582 600 }; 583 - "@aws-sdk/chunked-blob-reader-3.168.0" = { 601 + "@aws-sdk/chunked-blob-reader-3.170.0" = { 584 602 name = "_at_aws-sdk_slash_chunked-blob-reader"; 585 603 packageName = "@aws-sdk/chunked-blob-reader"; 586 - version = "3.168.0"; 604 + version = "3.170.0"; 587 605 src = fetchurl { 588 - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.168.0.tgz"; 589 - sha512 = "tnqA5NQrVaJtJpriYzfq9GC5WghyHntxka5ctiK2ow9ln/lfchxdY+kRgo+JROfWKbW8PurI+oEFUpscpLOrww=="; 606 + url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.170.0.tgz"; 607 + sha512 = "73Fy1u9zR9ZMC59QobuCWg3LoYfcrFsrP8569vvqtlGqPuQUW+RW3gfx0omIDmxaSg8qq8REPLJFrAGfeL7VtQ=="; 590 608 }; 591 609 }; 592 - "@aws-sdk/chunked-blob-reader-native-3.168.0" = { 610 + "@aws-sdk/chunked-blob-reader-native-3.170.0" = { 593 611 name = "_at_aws-sdk_slash_chunked-blob-reader-native"; 594 612 packageName = "@aws-sdk/chunked-blob-reader-native"; 595 - version = "3.168.0"; 613 + version = "3.170.0"; 596 614 src = fetchurl { 597 - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.168.0.tgz"; 598 - sha512 = "SXmf1oMtnccLd3aKYPG3WteS+yYTmG5uPGx9Zq7H/y1eZCUe2j6aGorePo3hSPho/hgZeAjrxl/kiQieOIoX8A=="; 615 + url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.170.0.tgz"; 616 + sha512 = "haJ7fdWaOgAM4trw2LBd1VIvRFzMMPz2jy9mu4rE+z1uHbPZHNMGytBo1FJO2DShzUCmJZi3t3CD/7aE3H38+w=="; 599 617 }; 600 618 }; 601 - "@aws-sdk/client-s3-3.169.0" = { 619 + "@aws-sdk/client-s3-3.171.0" = { 602 620 name = "_at_aws-sdk_slash_client-s3"; 603 621 packageName = "@aws-sdk/client-s3"; 604 - version = "3.169.0"; 622 + version = "3.171.0"; 605 623 src = fetchurl { 606 - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.169.0.tgz"; 607 - sha512 = "0DvQFUnk4P1v3tYna0i+yfiOlcZRF5wed6hJvwGtG2CnnvQry+OupKGxEXv5nvW9qGrPgLz8HqyIfU67zB2lxw=="; 624 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.171.0.tgz"; 625 + sha512 = "UFPnf9xG7H6Mku9tfVH7oSXq65oH0mb8vvfeUWsi+KKedvMdww7fVWmXtcgnsB9nmXLF2PfrQrdaz2uid4rpgQ=="; 608 626 }; 609 627 }; 610 - "@aws-sdk/client-sso-3.169.0" = { 628 + "@aws-sdk/client-sso-3.171.0" = { 611 629 name = "_at_aws-sdk_slash_client-sso"; 612 630 packageName = "@aws-sdk/client-sso"; 613 - version = "3.169.0"; 631 + version = "3.171.0"; 614 632 src = fetchurl { 615 - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.169.0.tgz"; 616 - sha512 = "FeV4X7iP2mXr3+KSRfsQsHIDdGpOXZALC7huFYvC27CGjZgI6lYkQZqY4LjPd+1zi4MF77A8RgjwdNsmBTt6rg=="; 633 + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.171.0.tgz"; 634 + sha512 = "iOJxoxHFlyuGfXKVz8Z7xVgYkdnqw6beDpIO852aDL6DYFO0ZA6vYjWXsMgdY6S6zJOR2K2uRhvPpbPiFF5PtA=="; 617 635 }; 618 636 }; 619 - "@aws-sdk/client-sts-3.169.0" = { 637 + "@aws-sdk/client-sts-3.171.0" = { 620 638 name = "_at_aws-sdk_slash_client-sts"; 621 639 packageName = "@aws-sdk/client-sts"; 622 - version = "3.169.0"; 640 + version = "3.171.0"; 623 641 src = fetchurl { 624 - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.169.0.tgz"; 625 - sha512 = "nvrUDz4SNYt0cDjFRKJd6ewi5yEYJfmxZXY76AOoRUmzKsxq6YRWyu7of8Qn0ldlasx+RO8+/QKCZo0UllVMPw=="; 642 + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.171.0.tgz"; 643 + sha512 = "CozT5qq/Wtdn4CDz5PdXtdyGnzHbuLqOYcTgaYpDks2EPfRSSFT2WYE+Y76Ccdz5n7vWR3yJuNjDXnVL28U8gQ=="; 626 644 }; 627 645 }; 628 - "@aws-sdk/config-resolver-3.168.0" = { 646 + "@aws-sdk/config-resolver-3.171.0" = { 629 647 name = "_at_aws-sdk_slash_config-resolver"; 630 648 packageName = "@aws-sdk/config-resolver"; 631 - version = "3.168.0"; 649 + version = "3.171.0"; 632 650 src = fetchurl { 633 - url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.168.0.tgz"; 634 - sha512 = "eSGHsa5kDIpBtBr1HhM9n0Deb+uSyr5pvk39WPFf5CTGvIqe52Fg9s1/Jz54rDwlgsfPzufX7TrCXgUhMwb8+w=="; 651 + url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.171.0.tgz"; 652 + sha512 = "qxuquXxy2Uu96Vmm5lm3b72wx8g+7XkWf5pGeQPPgXT4Zrw6UQdtqvNhsoFpKLp/Op1yu/CIDd7lG2l1Xgs5HQ=="; 635 653 }; 636 654 }; 637 - "@aws-sdk/credential-provider-env-3.168.0" = { 655 + "@aws-sdk/credential-provider-env-3.171.0" = { 638 656 name = "_at_aws-sdk_slash_credential-provider-env"; 639 657 packageName = "@aws-sdk/credential-provider-env"; 640 - version = "3.168.0"; 658 + version = "3.171.0"; 641 659 src = fetchurl { 642 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.168.0.tgz"; 643 - sha512 = "dzblFOkmH0FzYuckCJYVH/d+HEGO814B0gVt0HnaIvsS5skDSDBXD+/S9AX6BAKTNBWP8BVcn7+u+oS5l7GBkQ=="; 660 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.171.0.tgz"; 661 + sha512 = "Btm7mu+2RsOQxplGhHMKat+CgaOHwpqt1j3aU2EQtad5Fb5NSZRD85mqD/BGCCLTmfqIWl39YQv9758gciRjCw=="; 644 662 }; 645 663 }; 646 - "@aws-sdk/credential-provider-imds-3.168.0" = { 664 + "@aws-sdk/credential-provider-imds-3.171.0" = { 647 665 name = "_at_aws-sdk_slash_credential-provider-imds"; 648 666 packageName = "@aws-sdk/credential-provider-imds"; 649 - version = "3.168.0"; 667 + version = "3.171.0"; 650 668 src = fetchurl { 651 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.168.0.tgz"; 652 - sha512 = "Ua2zTmo0eep/fGh3SL9W0ERlGRkEAiP2IEC63QbRZKK+5Xg6RIgqij7hQHvKLY78zBDd7exnU9W1AMnt9lOd1A=="; 669 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.171.0.tgz"; 670 + sha512 = "lm5uuJ3YK6qui7G6Zr5farUuHn10kMtkb+CFr4gtDsYxF8CscciBmQNMCxo2oiVzlsjOpFGtpLTAvjb7nn12CA=="; 653 671 }; 654 672 }; 655 - "@aws-sdk/credential-provider-ini-3.169.0" = { 673 + "@aws-sdk/credential-provider-ini-3.171.0" = { 656 674 name = "_at_aws-sdk_slash_credential-provider-ini"; 657 675 packageName = "@aws-sdk/credential-provider-ini"; 658 - version = "3.169.0"; 676 + version = "3.171.0"; 659 677 src = fetchurl { 660 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.169.0.tgz"; 661 - sha512 = "bJb/dJY0Sk23smbwjhDUDuCMneMwom0eBjkMrJrabh64Ysvzpf/RnMr9n1VJTpgoy4hRbWWIikyWhicc9BeSrA=="; 678 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.171.0.tgz"; 679 + sha512 = "MF6fYCvezreZBI+hjI4oEuZdIKgfhbe6jzbTpNrDwBzw8lBkq1UY214dp2ecJtnj3FKjFg9A+goQRa/CViNgGQ=="; 662 680 }; 663 681 }; 664 - "@aws-sdk/credential-provider-node-3.169.0" = { 682 + "@aws-sdk/credential-provider-node-3.171.0" = { 665 683 name = "_at_aws-sdk_slash_credential-provider-node"; 666 684 packageName = "@aws-sdk/credential-provider-node"; 667 - version = "3.169.0"; 685 + version = "3.171.0"; 668 686 src = fetchurl { 669 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.169.0.tgz"; 670 - sha512 = "oMZLrZZpkcR+Z4795oDdwb9iXyqnwhNc8loBi2YGjZ9Uav+gGaZB9hjN/TMP4VkQNvt4mhDtfu/KMciFVSaHLw=="; 687 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.171.0.tgz"; 688 + sha512 = "zUdgr9THjzLb99Qmb1qOqsSYtX4/PCCzXgDolfYS/+bLfoMD1iqA49l6lw4zJV29f6WNjaA5MxmDpbrPXkI1Cw=="; 671 689 }; 672 690 }; 673 - "@aws-sdk/credential-provider-process-3.168.0" = { 691 + "@aws-sdk/credential-provider-process-3.171.0" = { 674 692 name = "_at_aws-sdk_slash_credential-provider-process"; 675 693 packageName = "@aws-sdk/credential-provider-process"; 676 - version = "3.168.0"; 694 + version = "3.171.0"; 677 695 src = fetchurl { 678 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.168.0.tgz"; 679 - sha512 = "Yni2S+yHLkUvDI30ZNkEOao2hSBj1eeQvWBUEJsgCFvHdlFDwOYwIueDmrBggqUISUgCLb6y/eylqeMvjN3Eyw=="; 696 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.171.0.tgz"; 697 + sha512 = "wTrtftwepuW+yJG2mz+HDwQ/L70rwBPkeyy32X+Pfm1jh4B5lL3qMmxR7uLPMgA4BQfXCazPeOiW50b9wRyZYg=="; 680 698 }; 681 699 }; 682 - "@aws-sdk/credential-provider-sso-3.169.0" = { 700 + "@aws-sdk/credential-provider-sso-3.171.0" = { 683 701 name = "_at_aws-sdk_slash_credential-provider-sso"; 684 702 packageName = "@aws-sdk/credential-provider-sso"; 685 - version = "3.169.0"; 703 + version = "3.171.0"; 686 704 src = fetchurl { 687 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.169.0.tgz"; 688 - sha512 = "8SlgQGRwSobLXZnizmBg1mo03yfm6Ub0vYPX+6u706XAVs8eJHT+Ia1B/j53ZrB2RSg0wjR47l+khKJtHhcJJg=="; 705 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.171.0.tgz"; 706 + sha512 = "D1zyKiYL9jrzJz5VOKynAAxqyQZ5gjweRPNrIomrYG2BQSMz82CZzL/sn/Q2KNmuSWgfPc4bF2JDPeTdPXsFKA=="; 689 707 }; 690 708 }; 691 - "@aws-sdk/credential-provider-web-identity-3.168.0" = { 709 + "@aws-sdk/credential-provider-web-identity-3.171.0" = { 692 710 name = "_at_aws-sdk_slash_credential-provider-web-identity"; 693 711 packageName = "@aws-sdk/credential-provider-web-identity"; 694 - version = "3.168.0"; 712 + version = "3.171.0"; 695 713 src = fetchurl { 696 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.168.0.tgz"; 697 - sha512 = "hz7wj8htY6s3/TubzH/YOd6f4bxO26GYupCTvKZlWdErLUmZ8h3hG/9xO/5kWOakD40T3MXT7HIo2rvEWg1GWw=="; 714 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.171.0.tgz"; 715 + sha512 = "yeQC+n3Xiw/tOaMP67pBNLsddPb8hHjsEIPircS2z4VvwhOY+5ZaaiaRmw5u5pvIMctbGZU75Ms1hBSfOEdDhQ=="; 698 716 }; 699 717 }; 700 - "@aws-sdk/eventstream-codec-3.168.0" = { 718 + "@aws-sdk/eventstream-codec-3.171.0" = { 701 719 name = "_at_aws-sdk_slash_eventstream-codec"; 702 720 packageName = "@aws-sdk/eventstream-codec"; 703 - version = "3.168.0"; 721 + version = "3.171.0"; 704 722 src = fetchurl { 705 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.168.0.tgz"; 706 - sha512 = "5A6IPpGNc9Edj4Ega1QpFYtlHJV8MeX8xg9aPHqUCAf9WUo6vdDy4ry4sXTTgdP4TYS+KIOQtyc4TQUjs672yg=="; 723 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.171.0.tgz"; 724 + sha512 = "3lCnPlydbZ/R6fAD+4xLX8Ua+kFGUzsPcgLP0lH5LO39jtnN1wEQj5fWM139Re9LuD0NoEBhC0AuROIM6CbzVA=="; 707 725 }; 708 726 }; 709 - "@aws-sdk/eventstream-serde-browser-3.168.0" = { 727 + "@aws-sdk/eventstream-serde-browser-3.171.0" = { 710 728 name = "_at_aws-sdk_slash_eventstream-serde-browser"; 711 729 packageName = "@aws-sdk/eventstream-serde-browser"; 712 - version = "3.168.0"; 730 + version = "3.171.0"; 713 731 src = fetchurl { 714 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.168.0.tgz"; 715 - sha512 = "fQaLmbG95twbf+IZyudeCZ8mrakPxvpcP2DQHVHJgQzOzWM+ScnHlr13gtcXDrk0gLCW+cVl1CZzGwYJ4TI3Ug=="; 732 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.171.0.tgz"; 733 + sha512 = "ydjENlRoX49odSCWsOUo2lP2yE/4dR/GKE1yz3QvNZJ+6wRULbg6f55riyQokvAGMRW5BJigkMQLrg58WWridg=="; 716 734 }; 717 735 }; 718 - "@aws-sdk/eventstream-serde-config-resolver-3.168.0" = { 736 + "@aws-sdk/eventstream-serde-config-resolver-3.171.0" = { 719 737 name = "_at_aws-sdk_slash_eventstream-serde-config-resolver"; 720 738 packageName = "@aws-sdk/eventstream-serde-config-resolver"; 721 - version = "3.168.0"; 739 + version = "3.171.0"; 722 740 src = fetchurl { 723 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.168.0.tgz"; 724 - sha512 = "LuOTGZeG0rnwa4B0rEK4pMsghudDP05ve6U0Y7moMq+u9U79Cje73XHwRKDOS48M8PtBbIRHOtka1unrnY+gBg=="; 741 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.171.0.tgz"; 742 + sha512 = "cg+Xzl1lB7iIcER+Pv/06VaBvlC/dZxs3i5Kw3PYUaYICDwGytGRZbEC2H/6aBDEYYLfwUbnkq0Dp40faJfdAw=="; 725 743 }; 726 744 }; 727 - "@aws-sdk/eventstream-serde-node-3.168.0" = { 745 + "@aws-sdk/eventstream-serde-node-3.171.0" = { 728 746 name = "_at_aws-sdk_slash_eventstream-serde-node"; 729 747 packageName = "@aws-sdk/eventstream-serde-node"; 730 - version = "3.168.0"; 748 + version = "3.171.0"; 731 749 src = fetchurl { 732 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.168.0.tgz"; 733 - sha512 = "IkMQrja0gv2gWIBa9SHvBOkSSFsOGX7GknGPPFO4/Squ4936jFfFVnMurm/r6QCN/MzLgVNvMS2VYPig9gITBw=="; 750 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.171.0.tgz"; 751 + sha512 = "psOYj2RUJsI14jHCw1FQdSTljaf0yE9svg5NY9mGFD1ifj5+XEZmxhADMA6wtnDjWS2MzyJQQUGdfqIv1FeHEQ=="; 734 752 }; 735 753 }; 736 - "@aws-sdk/eventstream-serde-universal-3.168.0" = { 754 + "@aws-sdk/eventstream-serde-universal-3.171.0" = { 737 755 name = "_at_aws-sdk_slash_eventstream-serde-universal"; 738 756 packageName = "@aws-sdk/eventstream-serde-universal"; 739 - version = "3.168.0"; 757 + version = "3.171.0"; 740 758 src = fetchurl { 741 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.168.0.tgz"; 742 - sha512 = "Ui+F6qvrzfXQuP58Dka98XquDnNZG5oTcU7l0Sst3lCSqIBYaO9gt5AC3z2WBnzOFzHPAqVbyBfnsCK5xRuWUw=="; 759 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.171.0.tgz"; 760 + sha512 = "aItTLL+WDHgwvl0biGZ+9phUOH93RW/v4uZgvjmrGSUx6try2/+L1rQeLU9n7JYfGcu8CKNePxpvrfSXpgJ7FA=="; 743 761 }; 744 762 }; 745 - "@aws-sdk/fetch-http-handler-3.168.0" = { 763 + "@aws-sdk/fetch-http-handler-3.171.0" = { 746 764 name = "_at_aws-sdk_slash_fetch-http-handler"; 747 765 packageName = "@aws-sdk/fetch-http-handler"; 748 - version = "3.168.0"; 766 + version = "3.171.0"; 749 767 src = fetchurl { 750 - url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.168.0.tgz"; 751 - sha512 = "D4vN6zbF/RA7czw34gFhjsfOD5fkkLxLvmW8zbrJSsrex79Ju96NFuNBs7TtaV2btfXC7SkhhI/z+E81BxqRpg=="; 768 + url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.171.0.tgz"; 769 + sha512 = "jxlY0WFBrd5QzXnPNmzq8LbcIN3iY4Di+b9nDlUkQ6yCp/PxBEO3iZiNk4DeMH4A6rHrksnbsDDJzzZyGw/TLg=="; 752 770 }; 753 771 }; 754 - "@aws-sdk/hash-blob-browser-3.168.0" = { 772 + "@aws-sdk/hash-blob-browser-3.171.0" = { 755 773 name = "_at_aws-sdk_slash_hash-blob-browser"; 756 774 packageName = "@aws-sdk/hash-blob-browser"; 757 - version = "3.168.0"; 775 + version = "3.171.0"; 758 776 src = fetchurl { 759 - url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.168.0.tgz"; 760 - sha512 = "RiPU48qZD5IPA+gEzGJregfrO0zh+RrddRmZxSfX5TM8GlfcL0xThpd9wK03mM3aPiZ3iDhwIulftEBbmcPdZA=="; 777 + url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.171.0.tgz"; 778 + sha512 = "Orwm8OiVNlVaQFEn+mWkue4U2bYytuAi5nmv9Co41hXDR8qF4pvwPWVV70OsndGcgqlFfvkJ4KahCO8Mta4I3w=="; 761 779 }; 762 780 }; 763 - "@aws-sdk/hash-node-3.168.0" = { 781 + "@aws-sdk/hash-node-3.171.0" = { 764 782 name = "_at_aws-sdk_slash_hash-node"; 765 783 packageName = "@aws-sdk/hash-node"; 766 - version = "3.168.0"; 784 + version = "3.171.0"; 767 785 src = fetchurl { 768 - url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.168.0.tgz"; 769 - sha512 = "W2kMIuMric2Q2D4787DGubHz3Pw5fWDndM2gMjs/MB1psC/N74/ggRUIlUmsjSBFUHY1BYMfjsxe8DS9dSj77A=="; 786 + url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.171.0.tgz"; 787 + sha512 = "eTn8iExc6KjMo3OLz29zkADq9hXsA1jO2ghQfQ4BNdGXvhMtKcIO2hdhyzaOhtoLAeL44gbFR9oFjwG0U8ak/Q=="; 770 788 }; 771 789 }; 772 - "@aws-sdk/hash-stream-node-3.168.0" = { 790 + "@aws-sdk/hash-stream-node-3.171.0" = { 773 791 name = "_at_aws-sdk_slash_hash-stream-node"; 774 792 packageName = "@aws-sdk/hash-stream-node"; 775 - version = "3.168.0"; 793 + version = "3.171.0"; 776 794 src = fetchurl { 777 - url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.168.0.tgz"; 778 - sha512 = "EoNmFKOFeZXDJ3KNEPXOvb61Qqpw2pIH8VoiyaA3gurUQJ7IISlN3qCMRVjZ82hosheCp/ATYQvK3hCLtXcG4Q=="; 795 + url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.171.0.tgz"; 796 + sha512 = "22yrj3Gx09n6esypHWSqqGTdKoMb/ORi55U4OtdCHufUtPVahwetNqKVBP73pHiT2VEmLQ8cyWff1WwpRFdeFw=="; 779 797 }; 780 798 }; 781 - "@aws-sdk/invalid-dependency-3.168.0" = { 799 + "@aws-sdk/invalid-dependency-3.171.0" = { 782 800 name = "_at_aws-sdk_slash_invalid-dependency"; 783 801 packageName = "@aws-sdk/invalid-dependency"; 784 - version = "3.168.0"; 802 + version = "3.171.0"; 785 803 src = fetchurl { 786 - url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.168.0.tgz"; 787 - sha512 = "KuDn4e1XsxBQi+dAoRfSOExICq+Gt5zGA7/dI2jnfqejBNHVmJ8ksOnV/HmilFscPxdJx5POECQosf3p/N4t9w=="; 804 + url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.171.0.tgz"; 805 + sha512 = "UrjQnhRv2B6ZgQfZjRbsaD6Sm5aIjH9YPtjT5oTbSgq3uHnj+s2ubUYd2nR8+lV2j1XL/Zfn/zUQ+6W3Fxk+UA=="; 788 806 }; 789 807 }; 790 - "@aws-sdk/is-array-buffer-3.168.0" = { 808 + "@aws-sdk/is-array-buffer-3.170.0" = { 791 809 name = "_at_aws-sdk_slash_is-array-buffer"; 792 810 packageName = "@aws-sdk/is-array-buffer"; 793 - version = "3.168.0"; 811 + version = "3.170.0"; 794 812 src = fetchurl { 795 - url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.168.0.tgz"; 796 - sha512 = "Zvt8a/g1UfvwmhxOnt/hDrFprC3+DQivFQGnzwBpv+ZyM1BfdgAruAkUZF+GtXI22DXZUumBrposCH1CcgjeIA=="; 813 + url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.170.0.tgz"; 814 + sha512 = "yYXqgp8rilBckIvNRs22yAXHKcXb86/g+F+hsTZl38OJintTsLQB//O5v6EQTYhSW7T3wMe1NHDrjZ+hFjAy4Q=="; 797 815 }; 798 816 }; 799 - "@aws-sdk/md5-js-3.168.0" = { 817 + "@aws-sdk/md5-js-3.171.0" = { 800 818 name = "_at_aws-sdk_slash_md5-js"; 801 819 packageName = "@aws-sdk/md5-js"; 802 - version = "3.168.0"; 820 + version = "3.171.0"; 803 821 src = fetchurl { 804 - url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.168.0.tgz"; 805 - sha512 = "+vVtmJlLl3j4ph9elp1vy8scjDI0YZWPLYtNvhjXCYXqEvnax+5PFGfcrpnEkBmLrW/LpZ4mrIj5cxCdXSAUCg=="; 822 + url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.171.0.tgz"; 823 + sha512 = "ZHuK7NvRY44WasjRjHnTNTGfdWuZTND4CCRC78Fmf3tk+zeCEnDZ81cVVtMqVn1wIf02U35Bwbunfx8i89VoSg=="; 806 824 }; 807 825 }; 808 - "@aws-sdk/middleware-bucket-endpoint-3.168.0" = { 826 + "@aws-sdk/middleware-bucket-endpoint-3.171.0" = { 809 827 name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; 810 828 packageName = "@aws-sdk/middleware-bucket-endpoint"; 811 - version = "3.168.0"; 829 + version = "3.171.0"; 812 830 src = fetchurl { 813 - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.168.0.tgz"; 814 - sha512 = "qHrR43zPgT2QlR2ttNvmNS6EGo5JehxaYTetb6vzZOvz7JjQLiaaKiSZrA3PKiF65eF7s0/+V5G0VI4wX6ZPQQ=="; 831 + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.171.0.tgz"; 832 + sha512 = "mRARZ8+WSoEfy4v5Gp084O2kxKwjoVozKQ0QN0BGYU//HKWwPRQ5qnv8Sty5oEA6J3rjYrqeIuFd6I8J/MxYZg=="; 815 833 }; 816 834 }; 817 - "@aws-sdk/middleware-content-length-3.168.0" = { 835 + "@aws-sdk/middleware-content-length-3.171.0" = { 818 836 name = "_at_aws-sdk_slash_middleware-content-length"; 819 837 packageName = "@aws-sdk/middleware-content-length"; 820 - version = "3.168.0"; 838 + version = "3.171.0"; 821 839 src = fetchurl { 822 - url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.168.0.tgz"; 823 - sha512 = "PHvoNIuXkLkBZ/0OSmFlCmA1o+RdqkNWwNm7/rIMe9cV+ZgtP9kQs+e4itibQb82veHTwG37+B7OAGa0DGqIvg=="; 840 + url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.171.0.tgz"; 841 + sha512 = "zvhCvoR36fxjygDA8yN3AAVFnL0i6ubLRvzq6gf6gHVJH2P7/IWkXOBwu461qpuHPG87QwdqB/W+qY3KfNu/mA=="; 824 842 }; 825 843 }; 826 - "@aws-sdk/middleware-expect-continue-3.168.0" = { 844 + "@aws-sdk/middleware-expect-continue-3.171.0" = { 827 845 name = "_at_aws-sdk_slash_middleware-expect-continue"; 828 846 packageName = "@aws-sdk/middleware-expect-continue"; 829 - version = "3.168.0"; 847 + version = "3.171.0"; 830 848 src = fetchurl { 831 - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.168.0.tgz"; 832 - sha512 = "Dt9ydWGCA+8zliKiX+CDGEsNZmjOQ1+zb4tvY6ry1IlsU3oaQtLrKHquQHZtw/UA/v9KLOblhvOLEXPOMDinKg=="; 849 + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.171.0.tgz"; 850 + sha512 = "Sc4onadPMH0JRfAT1CXf405aGUGktgCM+UyyX5f85rT/5J5omwt2d31vu0ri4CmU89QI5T7xeq4DN6mNQu2jfw=="; 833 851 }; 834 852 }; 835 - "@aws-sdk/middleware-flexible-checksums-3.168.0" = { 853 + "@aws-sdk/middleware-flexible-checksums-3.171.0" = { 836 854 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 837 855 packageName = "@aws-sdk/middleware-flexible-checksums"; 838 - version = "3.168.0"; 856 + version = "3.171.0"; 839 857 src = fetchurl { 840 - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.168.0.tgz"; 841 - sha512 = "cd6HwhisefvCDpelBNRXac0peM6w1d8mEm77f3RGHmXd8j4Hqa6in8rS+2v3/7/+OvWZ5VmXRHgheRyEh3K9vg=="; 858 + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.171.0.tgz"; 859 + sha512 = "91GvgWCG/cugmxXlOWCKmynMoKsKzmdOBj01k7Vx0oZAeR8/3i74mpGQ6DRaaTOENNgFrcHzxnlxJDZEY44MOw=="; 842 860 }; 843 861 }; 844 - "@aws-sdk/middleware-host-header-3.168.0" = { 862 + "@aws-sdk/middleware-host-header-3.171.0" = { 845 863 name = "_at_aws-sdk_slash_middleware-host-header"; 846 864 packageName = "@aws-sdk/middleware-host-header"; 847 - version = "3.168.0"; 865 + version = "3.171.0"; 848 866 src = fetchurl { 849 - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.168.0.tgz"; 850 - sha512 = "420rWpd/fsoPzRnMkyUFW1in6jpa1kbVCuewY5cqoH9uQcthrNJ0l9IgePDEMdymIMxGBfwiQERvUYogUadxrw=="; 867 + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.171.0.tgz"; 868 + sha512 = "WM3NEq1RcBOBXp2ItZCnK9RJPBztdUdaQrgtTkBWekgc9yxCiRBDhdZ4GLuWKyzApO2xqI/kfZQa4Wf44lWl8g=="; 851 869 }; 852 870 }; 853 - "@aws-sdk/middleware-location-constraint-3.168.0" = { 871 + "@aws-sdk/middleware-location-constraint-3.171.0" = { 854 872 name = "_at_aws-sdk_slash_middleware-location-constraint"; 855 873 packageName = "@aws-sdk/middleware-location-constraint"; 856 - version = "3.168.0"; 874 + version = "3.171.0"; 857 875 src = fetchurl { 858 - url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.168.0.tgz"; 859 - sha512 = "0+GZI5T2HDijKHqdIED658nq/rTBMWvac2nMCVEaFlNk5irbVRKvXmSZLkf63y7tbwDO6P9/ND8WPNowjeCipw=="; 876 + url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.171.0.tgz"; 877 + sha512 = "fj/LH3mLVpK4lwB1DGcYflzfFllcXcYb+ZyGIVdZ0ZeXBOeG8sOG59C4ZdDK3XONnE+Ccv/s7l6MlXK6c9PDew=="; 860 878 }; 861 879 }; 862 - "@aws-sdk/middleware-logger-3.168.0" = { 880 + "@aws-sdk/middleware-logger-3.171.0" = { 863 881 name = "_at_aws-sdk_slash_middleware-logger"; 864 882 packageName = "@aws-sdk/middleware-logger"; 865 - version = "3.168.0"; 883 + version = "3.171.0"; 866 884 src = fetchurl { 867 - url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.168.0.tgz"; 868 - sha512 = "5xeBlHQz/iWVor04eZLTfygj5T9zvLsngrUVb8FkHDzzNqT9+QwoA0iZoT8Vq5khfZK7UE7SWm2Hi/13t9T9+w=="; 885 + url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.171.0.tgz"; 886 + sha512 = "/wn0+pV0AGcDGlcKY+2ylvp+FLXJdmvYLbPlo93OOQbyCOy7Xa7Z8+RZYFHv8xrqhlQI0iw6TSYbL6fQ1v5IZw=="; 869 887 }; 870 888 }; 871 - "@aws-sdk/middleware-recursion-detection-3.168.0" = { 889 + "@aws-sdk/middleware-recursion-detection-3.171.0" = { 872 890 name = "_at_aws-sdk_slash_middleware-recursion-detection"; 873 891 packageName = "@aws-sdk/middleware-recursion-detection"; 874 - version = "3.168.0"; 892 + version = "3.171.0"; 875 893 src = fetchurl { 876 - url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.168.0.tgz"; 877 - sha512 = "4sr3E37PUDQSpE205d+kGcaJmZj7kE/I50qyf39U0jphk121AZXdKCWDs/T7g/d4LVJLoe6N+zzZIg4ZWVUUZw=="; 894 + url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.171.0.tgz"; 895 + sha512 = "aNDRypFz9V52hC8lzZo28Zq9pS7W2MchjLAa2mPTFTd09aer6j9jmLY5o4NwoAAaEGV1JFHgpIZdymQRAcvSjw=="; 878 896 }; 879 897 }; 880 - "@aws-sdk/middleware-retry-3.169.0" = { 898 + "@aws-sdk/middleware-retry-3.171.0" = { 881 899 name = "_at_aws-sdk_slash_middleware-retry"; 882 900 packageName = "@aws-sdk/middleware-retry"; 883 - version = "3.169.0"; 901 + version = "3.171.0"; 884 902 src = fetchurl { 885 - url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.169.0.tgz"; 886 - sha512 = "XGAPxJpHEdqbZwaga3H40hQKqftOshvwhOLHLgCQQeOp/ftB6ohzM/pRfutSRCmK4+XPJGILzLZPSRyoME//mw=="; 903 + url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.171.0.tgz"; 904 + sha512 = "E+TTJZngDZ91/pdlNSrYSKn2cjD0aL/Xe6VFKbhpt9k5EF/KK6gJUEitIFL3Db2bRqupgADQudUI+MZvNc7Bnw=="; 887 905 }; 888 906 }; 889 - "@aws-sdk/middleware-sdk-s3-3.168.0" = { 907 + "@aws-sdk/middleware-sdk-s3-3.171.0" = { 890 908 name = "_at_aws-sdk_slash_middleware-sdk-s3"; 891 909 packageName = "@aws-sdk/middleware-sdk-s3"; 892 - version = "3.168.0"; 910 + version = "3.171.0"; 893 911 src = fetchurl { 894 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.168.0.tgz"; 895 - sha512 = "Ztl4kSuW6ar8t6CXO/kwc8/wpKo+OW6pDaaH9JSYioz0JTtyWbWBxB4ZgkSRpOCzhGL4SFWI6A0QU5GaaHSm5Q=="; 912 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.171.0.tgz"; 913 + sha512 = "Mmd2MqJQJnYXrtOL01PgTXtH0MvubzGJ1uYAm0CLK2fubhLEp2usNACXFvUcdwd3dt5QktkLjWuw3xwFoIYGMg=="; 896 914 }; 897 915 }; 898 - "@aws-sdk/middleware-sdk-sts-3.168.0" = { 916 + "@aws-sdk/middleware-sdk-sts-3.171.0" = { 899 917 name = "_at_aws-sdk_slash_middleware-sdk-sts"; 900 918 packageName = "@aws-sdk/middleware-sdk-sts"; 901 - version = "3.168.0"; 919 + version = "3.171.0"; 902 920 src = fetchurl { 903 - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.168.0.tgz"; 904 - sha512 = "uE5VYczEkoCG/G63Whp4dGKFouDjx0Jj4vZj7Z4oEQSv/eynBm1+AQAtWA4zJQfYO60lFKOSiBykv/c1hk09Mg=="; 921 + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.171.0.tgz"; 922 + sha512 = "DLvoz7TfExbJ1p+FGehbu83D/KggohQNZMzsIojVbzu3E0pO606aZnbEPC7pUNXG3iXoQOScMMrhUNuRQEYgLQ=="; 905 923 }; 906 924 }; 907 - "@aws-sdk/middleware-serde-3.168.0" = { 925 + "@aws-sdk/middleware-serde-3.171.0" = { 908 926 name = "_at_aws-sdk_slash_middleware-serde"; 909 927 packageName = "@aws-sdk/middleware-serde"; 910 - version = "3.168.0"; 928 + version = "3.171.0"; 911 929 src = fetchurl { 912 - url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.168.0.tgz"; 913 - sha512 = "6z3iySqCjhV5NVEF3o++TgvK1XOBauYdZFCZk4foMxyh/wZ4MB+uIQ/D2AeHExzFGyrPjx0S0gZb4z8st6q9mA=="; 930 + url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.171.0.tgz"; 931 + sha512 = "eqgJPzzkha02Ca7clKWLOVOa7OuFunEPWfx00IUy5sxKFbgUSAeu6Kl5SC5Z3J9dIvefw3vX19x3334SZcwE1Q=="; 914 932 }; 915 933 }; 916 - "@aws-sdk/middleware-signing-3.168.0" = { 934 + "@aws-sdk/middleware-signing-3.171.0" = { 917 935 name = "_at_aws-sdk_slash_middleware-signing"; 918 936 packageName = "@aws-sdk/middleware-signing"; 919 - version = "3.168.0"; 937 + version = "3.171.0"; 920 938 src = fetchurl { 921 - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.168.0.tgz"; 922 - sha512 = "yQme9D4bNRdrPQH50a3oJfbf+54Dm1MkW4yjwIwpRoGkxAs2T7sjc3/u/Wo/Jy3g5yzM1Ven3KU+nlKOMNOpAw=="; 939 + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.171.0.tgz"; 940 + sha512 = "eEykO86etIqfWdUvvCcvYsHg+lXRE1Bo6+2mtXIcUXXC0LlqUoWsM1Ky/5jbjXVeWu2vWv++vG/WpJtNKkG13Q=="; 923 941 }; 924 942 }; 925 - "@aws-sdk/middleware-ssec-3.168.0" = { 943 + "@aws-sdk/middleware-ssec-3.171.0" = { 926 944 name = "_at_aws-sdk_slash_middleware-ssec"; 927 945 packageName = "@aws-sdk/middleware-ssec"; 928 - version = "3.168.0"; 946 + version = "3.171.0"; 929 947 src = fetchurl { 930 - url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.168.0.tgz"; 931 - sha512 = "+/R9iAETMO+uQ3lNY3dpsjL5aaiPYOmmcwD2xd6hwV5oGP5sysH59dnVg2U7hw8VZF1akK3rKgc3eGY9/ezo3g=="; 948 + url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.171.0.tgz"; 949 + sha512 = "lYf8gxe09owOUuvIil1G6TXQjUwIh7yuqeqj+Ix1aLbEZyloiryXkWjCPfeTEybVukWM0HPqU28AMhjgTOal6g=="; 932 950 }; 933 951 }; 934 - "@aws-sdk/middleware-stack-3.168.0" = { 952 + "@aws-sdk/middleware-stack-3.171.0" = { 935 953 name = "_at_aws-sdk_slash_middleware-stack"; 936 954 packageName = "@aws-sdk/middleware-stack"; 937 - version = "3.168.0"; 955 + version = "3.171.0"; 938 956 src = fetchurl { 939 - url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.168.0.tgz"; 940 - sha512 = "tUMa6gQFqyRC9xRy1cfQAX/K84LkFC+NAyENoDn4cbLvTJpH6tLPINFktaXLkKl2bdzGGWLHefxriBjTqZB+rg=="; 957 + url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.171.0.tgz"; 958 + sha512 = "0EbZin5J6EsHD/agE8s/TJktLh9aRZe80ZrCBv5ces420NaYNjvbvvsnt0tQw0Q8qv+1H6KFOUcZ5iXzadBy2A=="; 941 959 }; 942 960 }; 943 - "@aws-sdk/middleware-user-agent-3.168.0" = { 961 + "@aws-sdk/middleware-user-agent-3.171.0" = { 944 962 name = "_at_aws-sdk_slash_middleware-user-agent"; 945 963 packageName = "@aws-sdk/middleware-user-agent"; 946 - version = "3.168.0"; 964 + version = "3.171.0"; 947 965 src = fetchurl { 948 - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.168.0.tgz"; 949 - sha512 = "nwcWN1tz39s4IWyx1lxak/W9LdLnusQEdb+0pnJFWTCNhba3BvlAnt1sZFDwbFRmRUbU3x+hhpNB+Xub2hFttg=="; 966 + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.171.0.tgz"; 967 + sha512 = "GXw4LB6OqmPNwizY8KHdP7sC+d3gVTeeTbMhLPdZ62+PTj18faSoiBtQbnQmB/+c87VBlYbXex2ObfB6J0K2rg=="; 950 968 }; 951 969 }; 952 - "@aws-sdk/node-config-provider-3.168.0" = { 970 + "@aws-sdk/node-config-provider-3.171.0" = { 953 971 name = "_at_aws-sdk_slash_node-config-provider"; 954 972 packageName = "@aws-sdk/node-config-provider"; 955 - version = "3.168.0"; 973 + version = "3.171.0"; 956 974 src = fetchurl { 957 - url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.168.0.tgz"; 958 - sha512 = "8su32ifopNLb835NudTdxyv4fQ+7Eie17MjbqnvOeWmjFAgzJyIVJjyvMI+N8Gu3dDCTxSbBh3hl++VOzL+oXg=="; 975 + url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.171.0.tgz"; 976 + sha512 = "kFJbdJpqV8qCrs0h5Yo1r9TgezzGlua8NYf80gx8gH49gDZ4hl+0gP7rWEnA19dZufrfveyTQ/kY+ntk5AyI8A=="; 959 977 }; 960 978 }; 961 - "@aws-sdk/node-http-handler-3.168.0" = { 979 + "@aws-sdk/node-http-handler-3.171.0" = { 962 980 name = "_at_aws-sdk_slash_node-http-handler"; 963 981 packageName = "@aws-sdk/node-http-handler"; 964 - version = "3.168.0"; 982 + version = "3.171.0"; 965 983 src = fetchurl { 966 - url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.168.0.tgz"; 967 - sha512 = "yO68M12LUJa/bhuljSRCtLbmWvnS0eopoE3P2+xzV2JzkIg5r+bJmh/VtpDz8D2PxZhRALwBchjq8h+Po6rhcQ=="; 984 + url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.171.0.tgz"; 985 + sha512 = "hQY1hqgVcNC9KvRqV3Kxn2jCjIgMWwK3u90g2kNU27vZWIApz5hP4Y/TiyFO3+fGGNczcNHZp8aaggEO9tnctQ=="; 968 986 }; 969 987 }; 970 - "@aws-sdk/property-provider-3.168.0" = { 988 + "@aws-sdk/property-provider-3.171.0" = { 971 989 name = "_at_aws-sdk_slash_property-provider"; 972 990 packageName = "@aws-sdk/property-provider"; 973 - version = "3.168.0"; 991 + version = "3.171.0"; 974 992 src = fetchurl { 975 - url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.168.0.tgz"; 976 - sha512 = "syvXTexP2t9HQY3dsfpPgUP5GjFcpBVzPfxd8GjLWFRcqBCQ5frdetkAfvnhPpytL/stauXuT1xv6jcN1vBAZQ=="; 993 + url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.171.0.tgz"; 994 + sha512 = "dtF9TfEuvYQCqyp5EbGLzwhGmxljDG95901STIRtOCbBi0EXQ2oShKz1T95kjaSrBQsI2YOmDTl+uPGkkOx5oA=="; 977 995 }; 978 996 }; 979 - "@aws-sdk/protocol-http-3.168.0" = { 997 + "@aws-sdk/protocol-http-3.171.0" = { 980 998 name = "_at_aws-sdk_slash_protocol-http"; 981 999 packageName = "@aws-sdk/protocol-http"; 982 - version = "3.168.0"; 1000 + version = "3.171.0"; 983 1001 src = fetchurl { 984 - url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.168.0.tgz"; 985 - sha512 = "5g7T5WqeU1W/TShfOYiczZFOK5svsQajjSGs1drB2DBQlbepF5YSmVbFGrfX6003h4TV9hpA6CqOjbgd59NgGA=="; 1002 + url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.171.0.tgz"; 1003 + sha512 = "J5iZr5epH3nhPEeEme3w0l1tz+re1l9TdKjfaoczEmZyoChtHr++x/QX2KPxIn5NVSe7QxN7yTJV373NrnMMfg=="; 986 1004 }; 987 1005 }; 988 - "@aws-sdk/querystring-builder-3.168.0" = { 1006 + "@aws-sdk/querystring-builder-3.171.0" = { 989 1007 name = "_at_aws-sdk_slash_querystring-builder"; 990 1008 packageName = "@aws-sdk/querystring-builder"; 991 - version = "3.168.0"; 1009 + version = "3.171.0"; 992 1010 src = fetchurl { 993 - url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.168.0.tgz"; 994 - sha512 = "cCjdmRKf+zVc/Whc9fP3DqB6QTBz0MsJ2uGqYCWG8kqBr4W8nDZVNRVj4Q1zZjQzipU7+77xJAE8NSIl+RsubA=="; 1011 + url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.171.0.tgz"; 1012 + sha512 = "qiDk3BlYH77QtJS6vSZlCGYjaW1Qq7JnxiAHPZc+wsl0kY59JPVuM5HTTZ+yjTu+hmSeiI0Wp5IHDiY+YOxi4w=="; 995 1013 }; 996 1014 }; 997 - "@aws-sdk/querystring-parser-3.168.0" = { 1015 + "@aws-sdk/querystring-parser-3.171.0" = { 998 1016 name = "_at_aws-sdk_slash_querystring-parser"; 999 1017 packageName = "@aws-sdk/querystring-parser"; 1000 - version = "3.168.0"; 1018 + version = "3.171.0"; 1001 1019 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.168.0.tgz"; 1003 - sha512 = "O82vxPyoLRuqcCFxAQYuvDwOdMOaQ/hqlaC8Tw6qNE3wpJ1296M51Zgb7lPfIlSxzAc96H//Q+d1t5MViK2SFg=="; 1020 + url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.171.0.tgz"; 1021 + sha512 = "wYM4HVlmi0NaRxJXmOPwQ4L6LPwUvRNMg+33z2Vvs9Ij23AzTCI2JRtaAwz/or3h6+nMlCOVsLZ7PAoLhkrgmg=="; 1004 1022 }; 1005 1023 }; 1006 - "@aws-sdk/s3-request-presigner-3.169.0" = { 1024 + "@aws-sdk/s3-request-presigner-3.173.0" = { 1007 1025 name = "_at_aws-sdk_slash_s3-request-presigner"; 1008 1026 packageName = "@aws-sdk/s3-request-presigner"; 1009 - version = "3.169.0"; 1027 + version = "3.173.0"; 1010 1028 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.169.0.tgz"; 1012 - sha512 = "GjK+E0Ie6xK1jPE1YPcBpv48o+eXWwPhYUaQeGGPrzoIwsgP5oDIxVEdW6DhWxHra8O7wzZZGM5V6SgJE9v+uA=="; 1029 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.173.0.tgz"; 1030 + sha512 = "s2SttAY4dViBMPcXcLb/jgIM+4nPA0ZUvoWxOB/cNZTSPA070QJB/0yuzMbbhjOv5J5pXbMM4KOgfNDQbiWZtQ=="; 1013 1031 }; 1014 1032 }; 1015 - "@aws-sdk/service-error-classification-3.168.0" = { 1033 + "@aws-sdk/service-error-classification-3.171.0" = { 1016 1034 name = "_at_aws-sdk_slash_service-error-classification"; 1017 1035 packageName = "@aws-sdk/service-error-classification"; 1018 - version = "3.168.0"; 1036 + version = "3.171.0"; 1019 1037 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.168.0.tgz"; 1021 - sha512 = "cW1U3YMMRLukx5/Fl7NpCsaFgcDkOOZVUaW2qLghJOakt1dc6OwgtPlS7toC9A7zjMIovqYwcksHO5mCyqrPlA=="; 1038 + url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.171.0.tgz"; 1039 + sha512 = "OrVFyPh3fFACRvplp8YvSdKNIXNx8xNYsHK+WhJFVOwnLC6OkwMyjck1xjfu4gvQ/PZlLqn7qTTURKcI2rUbMw=="; 1022 1040 }; 1023 1041 }; 1024 - "@aws-sdk/shared-ini-file-loader-3.168.0" = { 1042 + "@aws-sdk/shared-ini-file-loader-3.171.0" = { 1025 1043 name = "_at_aws-sdk_slash_shared-ini-file-loader"; 1026 1044 packageName = "@aws-sdk/shared-ini-file-loader"; 1027 - version = "3.168.0"; 1045 + version = "3.171.0"; 1028 1046 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.168.0.tgz"; 1030 - sha512 = "K97HWEySV6HJC4CLyimVuqit4FILW4BtTU62jCaEwoPvg1XPAolCzzWfLClJ0GWfyf32+o30wJj8SgHuIuN2Qw=="; 1047 + url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.171.0.tgz"; 1048 + sha512 = "tilea/YDqszMqXn3pOaBBZVSA/29MegV0QBhKlrJoYzhZxZ1ZrlkyuTUVz6RjktRUYnty9D3MlgrmaiBxAOdrg=="; 1031 1049 }; 1032 1050 }; 1033 - "@aws-sdk/signature-v4-3.168.0" = { 1051 + "@aws-sdk/signature-v4-3.171.0" = { 1034 1052 name = "_at_aws-sdk_slash_signature-v4"; 1035 1053 packageName = "@aws-sdk/signature-v4"; 1036 - version = "3.168.0"; 1054 + version = "3.171.0"; 1037 1055 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.168.0.tgz"; 1039 - sha512 = "jb98UrZ4d07Wr1mUVDY1HRlbEOVoPFZ38e4k20AUEXybxhsvlQhfAfaDITFg3UwMO978m4VAsjpzw8h8WGsNQw=="; 1056 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.171.0.tgz"; 1057 + sha512 = "tun1PIN/zW2y3h6uYuGhDLaMQmT52KK3KZyq+UM2XLYPz8j7G2TEFyJVn5Wk+QbHirCmOh8dCkaa5yFO6vfEFw=="; 1040 1058 }; 1041 1059 }; 1042 - "@aws-sdk/signature-v4-multi-region-3.168.0" = { 1060 + "@aws-sdk/signature-v4-multi-region-3.171.0" = { 1043 1061 name = "_at_aws-sdk_slash_signature-v4-multi-region"; 1044 1062 packageName = "@aws-sdk/signature-v4-multi-region"; 1045 - version = "3.168.0"; 1063 + version = "3.171.0"; 1046 1064 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.168.0.tgz"; 1048 - sha512 = "uWcVm3e0UPueltQPevWmeKC/OL4E+2qwXx16LteHTAxrEDRJ0E7lxuBwhrNRwbyhtqaEVy36tUeyrWP8+oEYNw=="; 1065 + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.171.0.tgz"; 1066 + sha512 = "ga149Xf8uQ+e29gC+mRfdvDy4aOJidRE86YkZ0D6/XMBpmMl7dU9sKioKCKhPeUr10L7w4I3WRA1G3Vjq5j43Q=="; 1049 1067 }; 1050 1068 }; 1051 - "@aws-sdk/smithy-client-3.168.0" = { 1069 + "@aws-sdk/smithy-client-3.171.0" = { 1052 1070 name = "_at_aws-sdk_slash_smithy-client"; 1053 1071 packageName = "@aws-sdk/smithy-client"; 1054 - version = "3.168.0"; 1072 + version = "3.171.0"; 1055 1073 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.168.0.tgz"; 1057 - sha512 = "B2wuTg5ymTYA7eVkt73bdRlWNWvdWNRY3QQizTWn0Ch3nOZXyVZSdH4mGmuWcpiQXEX/YYGmTLY7nCKWrk1E6Q=="; 1074 + url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.171.0.tgz"; 1075 + sha512 = "Q4fYE8uWxDh1Pd9Flo7/Cns1eEg0PmPrMsgHv0za1S3TgVHA6jRq3KZaD6Jcm0H12NPbWv67Cu+O0sMei8oaxA=="; 1058 1076 }; 1059 1077 }; 1060 - "@aws-sdk/types-3.168.0" = { 1078 + "@aws-sdk/types-3.171.0" = { 1061 1079 name = "_at_aws-sdk_slash_types"; 1062 1080 packageName = "@aws-sdk/types"; 1063 - version = "3.168.0"; 1081 + version = "3.171.0"; 1064 1082 src = fetchurl { 1065 - url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.168.0.tgz"; 1066 - sha512 = "J9VmQAakmqrdYKt3N0T/zQR6ZkfvQ7Y3WufjEWRTdslYcQ9f7UyI93Q21baCHvgcp3E5c4w62x18o6mEA/cHPQ=="; 1083 + url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.171.0.tgz"; 1084 + sha512 = "Yv5Wn/pbjMBST2jPHWPczmVbOLq8yFQVRyy1zGfsg1ETn25nGPvGBwqOkWcuz229KAcdUvFdRV9xaQCN3Lbo+Q=="; 1067 1085 }; 1068 1086 }; 1069 - "@aws-sdk/url-parser-3.168.0" = { 1087 + "@aws-sdk/url-parser-3.171.0" = { 1070 1088 name = "_at_aws-sdk_slash_url-parser"; 1071 1089 packageName = "@aws-sdk/url-parser"; 1072 - version = "3.168.0"; 1090 + version = "3.171.0"; 1073 1091 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.168.0.tgz"; 1075 - sha512 = "spFHA6NpsmAF3NCYyljjvl7uavHRvFDCNN32ce9RuRUXXuK8emAtwzXW95OUqtgCcyyKIA5p5p+gujrT7Npmeg=="; 1092 + url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.171.0.tgz"; 1093 + sha512 = "EF4ecSTmW9yG1faCXpTvySIpaPhK+6ebVxT6Zlt7IwIb9K+0zWlNb6VjDzq5Xg+nK7Y1p7RGmwhictWbOtbo9g=="; 1076 1094 }; 1077 1095 }; 1078 - "@aws-sdk/util-arn-parser-3.168.0" = { 1096 + "@aws-sdk/util-arn-parser-3.170.0" = { 1079 1097 name = "_at_aws-sdk_slash_util-arn-parser"; 1080 1098 packageName = "@aws-sdk/util-arn-parser"; 1081 - version = "3.168.0"; 1099 + version = "3.170.0"; 1082 1100 src = fetchurl { 1083 - url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.168.0.tgz"; 1084 - sha512 = "DV8jeygCMTod3g2swt020F4+mEfWUC6wgok49tXghoGwKVHjwPM+Lz8ENXY9Pu9sa3OJnz70PjPG4lztijfiqQ=="; 1101 + url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.170.0.tgz"; 1102 + sha512 = "2ivABL9GNsucfMMkgGjVdFidbDogtSr4FBVW12D4ltijOL82CAynGrnxHAczRGnmi5/1/Ir4ipkr9pAdRMGiGw=="; 1085 1103 }; 1086 1104 }; 1087 - "@aws-sdk/util-base64-browser-3.168.0" = { 1105 + "@aws-sdk/util-base64-browser-3.170.0" = { 1088 1106 name = "_at_aws-sdk_slash_util-base64-browser"; 1089 1107 packageName = "@aws-sdk/util-base64-browser"; 1090 - version = "3.168.0"; 1108 + version = "3.170.0"; 1091 1109 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.168.0.tgz"; 1093 - sha512 = "awyUvPXWbV5SrpUY8vTA58RTdTnDFJJmVlCXGB8JCtWYVuAQ5FfKA/K0ZD6p+AP6AsCgHSvXCuZm8vFyZldJ2Q=="; 1110 + url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.170.0.tgz"; 1111 + sha512 = "uLP9Kp74+jc+UWI392LSWIaUj9eXZBhkAiSm8dXAyrr+5GFOKvmEdidFoZKKcFcZ2v3RMonDgFVcDBiZ33w7BQ=="; 1094 1112 }; 1095 1113 }; 1096 - "@aws-sdk/util-base64-node-3.168.0" = { 1114 + "@aws-sdk/util-base64-node-3.170.0" = { 1097 1115 name = "_at_aws-sdk_slash_util-base64-node"; 1098 1116 packageName = "@aws-sdk/util-base64-node"; 1099 - version = "3.168.0"; 1117 + version = "3.170.0"; 1100 1118 src = fetchurl { 1101 - url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.168.0.tgz"; 1102 - sha512 = "NqU7t3Fes0QngHwAZoIKeXyUZOoszEwGuerj1wZk6+Jd6X4L5NdBcBg8AA2VMyRdSFhCP+irgVRZrYSn0Ii66g=="; 1119 + url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.170.0.tgz"; 1120 + sha512 = "sjpOmfyW0RWCLXU8Du0ZtwgFoxIuKQIyVygXJ4qxByoa3jIUJXf4U33uSRMy47V3JoogdZuKSpND9hiNk2wU4w=="; 1103 1121 }; 1104 1122 }; 1105 - "@aws-sdk/util-body-length-browser-3.168.0" = { 1123 + "@aws-sdk/util-body-length-browser-3.170.0" = { 1106 1124 name = "_at_aws-sdk_slash_util-body-length-browser"; 1107 1125 packageName = "@aws-sdk/util-body-length-browser"; 1108 - version = "3.168.0"; 1126 + version = "3.170.0"; 1109 1127 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.168.0.tgz"; 1111 - sha512 = "s51E8ctLKCoLqcj4a1YsIVX1sMLwf1f9lNfhnE8H7U85BeqTAtjAifdejDdFtxS4ECF95cupzN6PgqFmgdrzpQ=="; 1128 + url = "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.170.0.tgz"; 1129 + sha512 = "SqSWA++gsZgHw6tlcEXx9K6R6cVKNYzOq6bca+NR7jXvy1hfqiv9Gx5TZrG4oL4JziP8QA0fTklmI1uQJ4HBRA=="; 1112 1130 }; 1113 1131 }; 1114 - "@aws-sdk/util-body-length-node-3.168.0" = { 1132 + "@aws-sdk/util-body-length-node-3.170.0" = { 1115 1133 name = "_at_aws-sdk_slash_util-body-length-node"; 1116 1134 packageName = "@aws-sdk/util-body-length-node"; 1117 - version = "3.168.0"; 1135 + version = "3.170.0"; 1118 1136 src = fetchurl { 1119 - url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.168.0.tgz"; 1120 - sha512 = "vKG9iylTshwzHsVsRpx3oLDMtBvG47b3TIMGQFSuCDPEwD91+s1ORe3r+RxJIWDYJtmw5Y5ZPveYib4p4rWSUQ=="; 1137 + url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.170.0.tgz"; 1138 + sha512 = "sFb85ngsgfpamwDn22LC/+FkbDTNiddbMHptkajw+CAD2Rb4SJDp2PfXZ6k883BueJWhmxZ9+lApHZqYtgPdzw=="; 1121 1139 }; 1122 1140 }; 1123 - "@aws-sdk/util-buffer-from-3.168.0" = { 1141 + "@aws-sdk/util-buffer-from-3.170.0" = { 1124 1142 name = "_at_aws-sdk_slash_util-buffer-from"; 1125 1143 packageName = "@aws-sdk/util-buffer-from"; 1126 - version = "3.168.0"; 1144 + version = "3.170.0"; 1127 1145 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.168.0.tgz"; 1129 - sha512 = "NDQIBdJfK95N/zewOcEJC9NqNVRXzWHrgKJTdCTW4UuRBADg3YTeDmqmNA2TUaWydQZa0ubpX3JyaKz4l3DDZw=="; 1146 + url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.170.0.tgz"; 1147 + sha512 = "3ClE3wgN/Zw0ahfVAY5KQ/y3K2c+SYHwVUQaGSuVQlPOCDInGYjE/XEFwCeGJzncRPHIKDRPEsHCpm1uwgwEqQ=="; 1130 1148 }; 1131 1149 }; 1132 - "@aws-sdk/util-config-provider-3.168.0" = { 1150 + "@aws-sdk/util-config-provider-3.170.0" = { 1133 1151 name = "_at_aws-sdk_slash_util-config-provider"; 1134 1152 packageName = "@aws-sdk/util-config-provider"; 1135 - version = "3.168.0"; 1153 + version = "3.170.0"; 1136 1154 src = fetchurl { 1137 - url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.168.0.tgz"; 1138 - sha512 = "4AyBOlV2w8fqQ1Os9khnjrsAogBN7ou0bRS1Q34Y9zwtFL+T+xhHO0pp9+Yfw+E6s2Uy3DZWbq8PWyBZze6nuw=="; 1155 + url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.170.0.tgz"; 1156 + sha512 = "VV6lfss6Go00TF2hRVJnN8Uf2FOwC++1e8glaeU7fMWluYCBjwl+116mPOPFaxvkJCg0dui2tFroXioslM/rvQ=="; 1139 1157 }; 1140 1158 }; 1141 - "@aws-sdk/util-create-request-3.168.0" = { 1159 + "@aws-sdk/util-create-request-3.171.0" = { 1142 1160 name = "_at_aws-sdk_slash_util-create-request"; 1143 1161 packageName = "@aws-sdk/util-create-request"; 1144 - version = "3.168.0"; 1162 + version = "3.171.0"; 1145 1163 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.168.0.tgz"; 1147 - sha512 = "OOb1rHykoVyXz9Zt82ZhQVGspn0wVz2PExFLBYIb8825GK9ovQ788FpwKCKKVjRmKZr5OLFpdm4S52un7ZgOJQ=="; 1164 + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.171.0.tgz"; 1165 + sha512 = "E+d9qgv8nx+abrGkabRBFRes411Z/6xrwtX1BTuIEJGK5WhrzR+nnYC6Uh2zFNjbXcu9RQWu2wICD064f9MOHw=="; 1148 1166 }; 1149 1167 }; 1150 - "@aws-sdk/util-defaults-mode-browser-3.168.0" = { 1168 + "@aws-sdk/util-defaults-mode-browser-3.171.0" = { 1151 1169 name = "_at_aws-sdk_slash_util-defaults-mode-browser"; 1152 1170 packageName = "@aws-sdk/util-defaults-mode-browser"; 1153 - version = "3.168.0"; 1171 + version = "3.171.0"; 1154 1172 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.168.0.tgz"; 1156 - sha512 = "5lB9eDMkaittKbdugurzJx32quGrQar+ki3oebjJQZl4/gsDVRqOT9qwz95RVeXdEIUdA4U3T/1OgSNUT9aMyA=="; 1173 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.171.0.tgz"; 1174 + sha512 = "ZZwtpm2XHTOx5TW7gQrpY+IOtriI506ab5t0DVgdOA7G8BVkC0I6Tm+0NJFSfsl/G4QzI0fNSbDG/6wAFZmPAQ=="; 1157 1175 }; 1158 1176 }; 1159 - "@aws-sdk/util-defaults-mode-node-3.168.0" = { 1177 + "@aws-sdk/util-defaults-mode-node-3.171.0" = { 1160 1178 name = "_at_aws-sdk_slash_util-defaults-mode-node"; 1161 1179 packageName = "@aws-sdk/util-defaults-mode-node"; 1162 - version = "3.168.0"; 1180 + version = "3.171.0"; 1163 1181 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.168.0.tgz"; 1165 - sha512 = "462U5waEl495rP0WaKHXS6rrKHusMMBYvHzMzD3/gpSEwMZti0ZWLzhHNRcWp7d3uRVVdAsjF4UM6QwhJrScmA=="; 1182 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.171.0.tgz"; 1183 + sha512 = "3zbtGGRfygZRIh6BtGm6S+qGPPF3l/kUH4FKY4zpfLFamv+8SpcAlqH5BmbayA77vHdtiGEo5PhnuEr6QRABkw=="; 1166 1184 }; 1167 1185 }; 1168 - "@aws-sdk/util-format-url-3.168.0" = { 1186 + "@aws-sdk/util-format-url-3.171.0" = { 1169 1187 name = "_at_aws-sdk_slash_util-format-url"; 1170 1188 packageName = "@aws-sdk/util-format-url"; 1171 - version = "3.168.0"; 1189 + version = "3.171.0"; 1172 1190 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.168.0.tgz"; 1174 - sha512 = "2cpv3mkl7LXqFG4G42e82GWI/BUCjEAyetppl61TtQ1UpzXQk/pQtDbEADSIhsgJ8RKSpubrGrczEK9S/pKE3w=="; 1191 + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.171.0.tgz"; 1192 + sha512 = "xR2XQvLeZjHxg1JeWmen+GiTPDyPAjc6W4857BBjBRK05n5RWsQp28FQcKUUzRGZdq1isja6sxhfUGRDeycFqQ=="; 1175 1193 }; 1176 1194 }; 1177 - "@aws-sdk/util-hex-encoding-3.168.0" = { 1195 + "@aws-sdk/util-hex-encoding-3.170.0" = { 1178 1196 name = "_at_aws-sdk_slash_util-hex-encoding"; 1179 1197 packageName = "@aws-sdk/util-hex-encoding"; 1180 - version = "3.168.0"; 1198 + version = "3.170.0"; 1181 1199 src = fetchurl { 1182 - url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.168.0.tgz"; 1183 - sha512 = "KmJkd0eKXGd2z5h2N0yV6WUBqulwumq2eppv6pYrVfyQc0bBwSOYRG0NcXDvQB7rd+spbQjgbeqrHnsk34fQbQ=="; 1200 + url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.170.0.tgz"; 1201 + sha512 = "BDYyMqaxX4/N7rYOIYlqgpZaBuHw3kNXKgOkWtJdzndIZbQX8HnyJ+rF0Pr1aVsOpVDM+fY1prERleFh/ZRTCg=="; 1184 1202 }; 1185 1203 }; 1186 - "@aws-sdk/util-locate-window-3.168.0" = { 1204 + "@aws-sdk/util-locate-window-3.170.0" = { 1187 1205 name = "_at_aws-sdk_slash_util-locate-window"; 1188 1206 packageName = "@aws-sdk/util-locate-window"; 1189 - version = "3.168.0"; 1207 + version = "3.170.0"; 1190 1208 src = fetchurl { 1191 - url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.168.0.tgz"; 1192 - sha512 = "bCKN6rbTTA41cqm7TYuiSkXR8peSXR/t8GioeEOExPESNgR7kuwVU4pQ2LZYjnD1HqLtz3FKKKddvBJhmqpG8Q=="; 1209 + url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.170.0.tgz"; 1210 + sha512 = "uQvn3ZaAokWcNSY+tNR71RGXPPncv5ejrpGa/MGOCioeBjkU5n5OJp7BdaTGouZu4fffeVpdZJ/ZNld8LWMgLw=="; 1193 1211 }; 1194 1212 }; 1195 - "@aws-sdk/util-middleware-3.168.0" = { 1213 + "@aws-sdk/util-middleware-3.171.0" = { 1196 1214 name = "_at_aws-sdk_slash_util-middleware"; 1197 1215 packageName = "@aws-sdk/util-middleware"; 1198 - version = "3.168.0"; 1216 + version = "3.171.0"; 1199 1217 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.168.0.tgz"; 1201 - sha512 = "PInwsmxfXj4HhZytF5kZP6BYJ3mVW2QTzxSnKobkIfRnZHwBEGL74voaArfbbAfqvxzptDY6x4vo4N5Mo7M4hA=="; 1218 + url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.171.0.tgz"; 1219 + sha512 = "43aXJ40z7BIkh6usI8qQlQ6JUj16ecmwsRmUi+SJf3+bHPnkENdjpKCx4i15UWii7fr5QJAivZykuvBXl/sicQ=="; 1202 1220 }; 1203 1221 }; 1204 - "@aws-sdk/util-stream-browser-3.168.0" = { 1222 + "@aws-sdk/util-stream-browser-3.171.0" = { 1205 1223 name = "_at_aws-sdk_slash_util-stream-browser"; 1206 1224 packageName = "@aws-sdk/util-stream-browser"; 1207 - version = "3.168.0"; 1225 + version = "3.171.0"; 1208 1226 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.168.0.tgz"; 1210 - sha512 = "rHJqGJJcH6htWKiNWAcVfVkpjD3EF/frQCMPuft7uLhT7Bc9q9qAVzmdR3dIZtcVGutvcOJ2Xcd5Gq2iHyg3ew=="; 1227 + url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.171.0.tgz"; 1228 + sha512 = "GJfuRrAW+hwQfeWK3OfmN1kUtTpvVZj+EVb0GQ8F4/+PYRSpbNoQEW6oKCP6xIGR1xKLuiGsN5VQlWuECgIJKA=="; 1211 1229 }; 1212 1230 }; 1213 - "@aws-sdk/util-stream-node-3.168.0" = { 1231 + "@aws-sdk/util-stream-node-3.171.0" = { 1214 1232 name = "_at_aws-sdk_slash_util-stream-node"; 1215 1233 packageName = "@aws-sdk/util-stream-node"; 1216 - version = "3.168.0"; 1234 + version = "3.171.0"; 1217 1235 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.168.0.tgz"; 1219 - sha512 = "blvKisiX8d+QSikloOxwMdudcpCX0rSTNhg/UTlyGD0VIvx22evrc3QaKiG9AWlSoqxTGOAs8L6azPtTt5jTGQ=="; 1236 + url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.171.0.tgz"; 1237 + sha512 = "XuEUlixZnwqc1HSIRLFzIlfbpwMdAmGUkcADyvUYeTAEYf3hHzvvWERno4ZinuGQdU/+ogW29CsbTFnA80mz+A=="; 1220 1238 }; 1221 1239 }; 1222 - "@aws-sdk/util-uri-escape-3.168.0" = { 1240 + "@aws-sdk/util-uri-escape-3.170.0" = { 1223 1241 name = "_at_aws-sdk_slash_util-uri-escape"; 1224 1242 packageName = "@aws-sdk/util-uri-escape"; 1225 - version = "3.168.0"; 1243 + version = "3.170.0"; 1226 1244 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.168.0.tgz"; 1228 - sha512 = "EnNdhxRif4B4PM+CQcq+2s+dRiYVBPMZHZepq6W/eSOvZfW/T8BvDjUzRW9NjGV/Ld3XKk6dMuoWmBKt7J6I7g=="; 1245 + url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.170.0.tgz"; 1246 + sha512 = "Fof0urZ3Lx6z6LNKSEO6T4DNaNh6sLJaSWFaC6gtVDPux/C3R7wy2RQRDp0baHxE8m1KMB0XnKzHizJNrbDI1w=="; 1229 1247 }; 1230 1248 }; 1231 - "@aws-sdk/util-user-agent-browser-3.168.0" = { 1249 + "@aws-sdk/util-user-agent-browser-3.171.0" = { 1232 1250 name = "_at_aws-sdk_slash_util-user-agent-browser"; 1233 1251 packageName = "@aws-sdk/util-user-agent-browser"; 1234 - version = "3.168.0"; 1252 + version = "3.171.0"; 1235 1253 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.168.0.tgz"; 1237 - sha512 = "wh3E0FXLzCbpgsi/+NQn2dK/nD//lOKAndzyPsx1uXvKAiqQCkIqAPz5fiGuSkYBZHkjvRxTNSXjL+1tJn+lVQ=="; 1254 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.171.0.tgz"; 1255 + sha512 = "DNps82f+fOOySUO49I8kAJIGdTtZiL0l3hPEY1V9vp4SbF8B1jbFjPRR24tRN1S0B9AfC78k0EmJTmNWvq6EBQ=="; 1238 1256 }; 1239 1257 }; 1240 - "@aws-sdk/util-user-agent-node-3.168.0" = { 1258 + "@aws-sdk/util-user-agent-node-3.171.0" = { 1241 1259 name = "_at_aws-sdk_slash_util-user-agent-node"; 1242 1260 packageName = "@aws-sdk/util-user-agent-node"; 1243 - version = "3.168.0"; 1261 + version = "3.171.0"; 1244 1262 src = fetchurl { 1245 - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.168.0.tgz"; 1246 - sha512 = "grL671IO1kkAD3BjofoN0SJE0ldrHjEbevIa4i9eif/Y3LIoCgmUP6tUtRzR7K9CDdjeGuvo0vJ9HfwZWH/B/g=="; 1263 + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.171.0.tgz"; 1264 + sha512 = "xyBOIA2UUoP6dWkxkxpJIQq2zt3PhZoIlMcFwcVPfKtnqOM0FzdTlUPN4iqi7UAOkKg020lZhflzMqu5454Ucg=="; 1247 1265 }; 1248 1266 }; 1249 - "@aws-sdk/util-utf8-browser-3.168.0" = { 1267 + "@aws-sdk/util-utf8-browser-3.170.0" = { 1250 1268 name = "_at_aws-sdk_slash_util-utf8-browser"; 1251 1269 packageName = "@aws-sdk/util-utf8-browser"; 1252 - version = "3.168.0"; 1270 + version = "3.170.0"; 1253 1271 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.168.0.tgz"; 1255 - sha512 = "ZXEnVC/AcBdf2wQrITq4bkLnwiPKoBnhJwfPjZdpMHsDssKLquaHQf+QLOB/2s2U+jxl6c2Q7+rL4dv7x545Bg=="; 1272 + url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.170.0.tgz"; 1273 + sha512 = "tJby9krepSwDsBK+KQF5ACacZQ4LH1Aheh5Dy0pghxsN/9IRw7kMWTumuRCnSntLFFphDD7GM494/Dvnl1UCLA=="; 1256 1274 }; 1257 1275 }; 1258 - "@aws-sdk/util-utf8-node-3.168.0" = { 1276 + "@aws-sdk/util-utf8-node-3.170.0" = { 1259 1277 name = "_at_aws-sdk_slash_util-utf8-node"; 1260 1278 packageName = "@aws-sdk/util-utf8-node"; 1261 - version = "3.168.0"; 1279 + version = "3.170.0"; 1262 1280 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.168.0.tgz"; 1264 - sha512 = "m9EfLgh0QQrgJfuYowPQW2+a3f848F92cVTnCyeUtjiT59lkW9QPJhVVajRcfmNUUT4S/ikxvmkhzDzzMYH+gA=="; 1281 + url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.170.0.tgz"; 1282 + sha512 = "52QWGNoNQoyT2CuoQz6LjBKxHQtN/ceMFLW+9J1E0I1ni8XTuTYP52BlMe5484KkmZKsHOm+EWe4xuwwVetTxg=="; 1265 1283 }; 1266 1284 }; 1267 - "@aws-sdk/util-waiter-3.168.0" = { 1285 + "@aws-sdk/util-waiter-3.171.0" = { 1268 1286 name = "_at_aws-sdk_slash_util-waiter"; 1269 1287 packageName = "@aws-sdk/util-waiter"; 1270 - version = "3.168.0"; 1288 + version = "3.171.0"; 1271 1289 src = fetchurl { 1272 - url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.168.0.tgz"; 1273 - sha512 = "RdUapfJHeqjVeFtafKY+PLvKxEKi2IS+rt475YRoDGqzTegJLV1BO89j4wq/VWyGVljvpRI2/6RqG2Q0K/ozPA=="; 1290 + url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.171.0.tgz"; 1291 + sha512 = "h4iqRxX09tM9yjnHWihnzM5cDboSEJAbx68ar4zjzDIUbVroVkDfl77AWVlS9D5SlfdWr70G3WT4EQfIK5Vd2g=="; 1274 1292 }; 1275 1293 }; 1276 - "@aws-sdk/xml-builder-3.168.0" = { 1294 + "@aws-sdk/xml-builder-3.170.0" = { 1277 1295 name = "_at_aws-sdk_slash_xml-builder"; 1278 1296 packageName = "@aws-sdk/xml-builder"; 1279 - version = "3.168.0"; 1297 + version = "3.170.0"; 1280 1298 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.168.0.tgz"; 1282 - sha512 = "KLKDyPaT2FVMmoRuzOPKTmp+kL+8EGRTg9LCje3Oob18e1oXPma7pryx0gSWJ01wcdaRNsP+hrFEruB0JqwjpQ=="; 1299 + url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.170.0.tgz"; 1300 + sha512 = "eN458rrukeI62yU1k4a+032IfpAS7aK30VEITzKanklMW6AxTpxUC6vGrP6bwtIpCFDN8yVaIiAwGXQg5l1X4g=="; 1283 1301 }; 1284 1302 }; 1285 1303 "@azu/format-text-1.0.1" = { ··· 1336 1354 sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 1337 1355 }; 1338 1356 }; 1339 - "@babel/compat-data-7.19.0" = { 1357 + "@babel/compat-data-7.19.1" = { 1340 1358 name = "_at_babel_slash_compat-data"; 1341 1359 packageName = "@babel/compat-data"; 1342 - version = "7.19.0"; 1360 + version = "7.19.1"; 1343 1361 src = fetchurl { 1344 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.0.tgz"; 1345 - sha512 = "y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw=="; 1362 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.1.tgz"; 1363 + sha512 = "72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg=="; 1346 1364 }; 1347 1365 }; 1348 - "@babel/core-7.19.0" = { 1366 + "@babel/core-7.19.1" = { 1349 1367 name = "_at_babel_slash_core"; 1350 1368 packageName = "@babel/core"; 1351 - version = "7.19.0"; 1369 + version = "7.19.1"; 1352 1370 src = fetchurl { 1353 - url = "https://registry.npmjs.org/@babel/core/-/core-7.19.0.tgz"; 1354 - sha512 = "reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ=="; 1371 + url = "https://registry.npmjs.org/@babel/core/-/core-7.19.1.tgz"; 1372 + sha512 = "1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw=="; 1355 1373 }; 1356 1374 }; 1357 1375 "@babel/core-7.9.0" = { ··· 1399 1417 sha512 = "yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw=="; 1400 1418 }; 1401 1419 }; 1402 - "@babel/helper-compilation-targets-7.19.0" = { 1420 + "@babel/helper-compilation-targets-7.19.1" = { 1403 1421 name = "_at_babel_slash_helper-compilation-targets"; 1404 1422 packageName = "@babel/helper-compilation-targets"; 1405 - version = "7.19.0"; 1423 + version = "7.19.1"; 1406 1424 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz"; 1408 - sha512 = "Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA=="; 1425 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.1.tgz"; 1426 + sha512 = "LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg=="; 1409 1427 }; 1410 1428 }; 1411 1429 "@babel/helper-create-class-features-plugin-7.19.0" = { ··· 1525 1543 sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="; 1526 1544 }; 1527 1545 }; 1528 - "@babel/helper-replace-supers-7.18.9" = { 1546 + "@babel/helper-replace-supers-7.19.1" = { 1529 1547 name = "_at_babel_slash_helper-replace-supers"; 1530 1548 packageName = "@babel/helper-replace-supers"; 1531 - version = "7.18.9"; 1549 + version = "7.19.1"; 1532 1550 src = fetchurl { 1533 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz"; 1534 - sha512 = "dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ=="; 1551 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz"; 1552 + sha512 = "T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw=="; 1535 1553 }; 1536 1554 }; 1537 1555 "@babel/helper-simple-access-7.18.6" = { ··· 1570 1588 sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="; 1571 1589 }; 1572 1590 }; 1573 - "@babel/helper-validator-identifier-7.18.6" = { 1591 + "@babel/helper-validator-identifier-7.19.1" = { 1574 1592 name = "_at_babel_slash_helper-validator-identifier"; 1575 1593 packageName = "@babel/helper-validator-identifier"; 1576 - version = "7.18.6"; 1594 + version = "7.19.1"; 1577 1595 src = fetchurl { 1578 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz"; 1579 - sha512 = "MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="; 1596 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"; 1597 + sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="; 1580 1598 }; 1581 1599 }; 1582 1600 "@babel/helper-validator-option-7.18.6" = { ··· 1615 1633 sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 1616 1634 }; 1617 1635 }; 1618 - "@babel/node-7.18.10" = { 1636 + "@babel/node-7.19.1" = { 1619 1637 name = "_at_babel_slash_node"; 1620 1638 packageName = "@babel/node"; 1621 - version = "7.18.10"; 1639 + version = "7.19.1"; 1622 1640 src = fetchurl { 1623 - url = "https://registry.npmjs.org/@babel/node/-/node-7.18.10.tgz"; 1624 - sha512 = "VbqzK6QXfQVi4Bpk6J7XqHXKFNbG2j3rdIdx68+/14GDU7jXDOSyUU/cwqCM1fDwCdxp37pNV/ToSCXsNChcyA=="; 1641 + url = "https://registry.npmjs.org/@babel/node/-/node-7.19.1.tgz"; 1642 + sha512 = "gfxJNrawPso6kx7SwKfAdX1rEzVc09speJLFKrdxuZXGlve92pjbB3nJVmuwrxNN4+jvytj2zvliNXuW6uaSOw=="; 1625 1643 }; 1626 1644 }; 1627 1645 "@babel/parser-7.18.4" = { ··· 1633 1651 sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; 1634 1652 }; 1635 1653 }; 1636 - "@babel/parser-7.19.0" = { 1654 + "@babel/parser-7.19.1" = { 1637 1655 name = "_at_babel_slash_parser"; 1638 1656 packageName = "@babel/parser"; 1639 - version = "7.19.0"; 1657 + version = "7.19.1"; 1640 1658 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.0.tgz"; 1642 - sha512 = "74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw=="; 1659 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz"; 1660 + sha512 = "h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A=="; 1643 1661 }; 1644 1662 }; 1645 1663 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { ··· 1660 1678 sha512 = "AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg=="; 1661 1679 }; 1662 1680 }; 1663 - "@babel/plugin-proposal-async-generator-functions-7.19.0" = { 1681 + "@babel/plugin-proposal-async-generator-functions-7.19.1" = { 1664 1682 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 1665 1683 packageName = "@babel/plugin-proposal-async-generator-functions"; 1666 - version = "7.19.0"; 1684 + version = "7.19.1"; 1667 1685 src = fetchurl { 1668 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.0.tgz"; 1669 - sha512 = "nhEByMUTx3uZueJ/QkJuSlCfN4FGg+xy+vRsfGQGzSauq5ks2Deid2+05Q3KhfaUjvec1IGhw/Zm3cFm8JigTQ=="; 1686 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz"; 1687 + sha512 = "0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q=="; 1670 1688 }; 1671 1689 }; 1672 1690 "@babel/plugin-proposal-class-properties-7.18.6" = { ··· 2146 2164 sha512 = "dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ=="; 2147 2165 }; 2148 2166 }; 2149 - "@babel/plugin-transform-named-capturing-groups-regex-7.19.0" = { 2167 + "@babel/plugin-transform-named-capturing-groups-regex-7.19.1" = { 2150 2168 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 2151 2169 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 2152 - version = "7.19.0"; 2170 + version = "7.19.1"; 2153 2171 src = fetchurl { 2154 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.0.tgz"; 2155 - sha512 = "HDSuqOQzkU//kfGdiHBt71/hkDTApw4U/cMVgKgX7PqfB3LOaK+2GtCEsBu1dL9CkswDm0Gwehht1dCr421ULQ=="; 2172 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz"; 2173 + sha512 = "oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw=="; 2156 2174 }; 2157 2175 }; 2158 2176 "@babel/plugin-transform-new-target-7.18.6" = { ··· 2245 2263 sha512 = "oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA=="; 2246 2264 }; 2247 2265 }; 2248 - "@babel/plugin-transform-runtime-7.18.10" = { 2266 + "@babel/plugin-transform-runtime-7.19.1" = { 2249 2267 name = "_at_babel_slash_plugin-transform-runtime"; 2250 2268 packageName = "@babel/plugin-transform-runtime"; 2251 - version = "7.18.10"; 2269 + version = "7.19.1"; 2252 2270 src = fetchurl { 2253 - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz"; 2254 - sha512 = "q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ=="; 2271 + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.1.tgz"; 2272 + sha512 = "2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA=="; 2255 2273 }; 2256 2274 }; 2257 2275 "@babel/plugin-transform-shorthand-properties-7.18.6" = { ··· 2299 2317 sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; 2300 2318 }; 2301 2319 }; 2302 - "@babel/plugin-transform-typescript-7.19.0" = { 2320 + "@babel/plugin-transform-typescript-7.19.1" = { 2303 2321 name = "_at_babel_slash_plugin-transform-typescript"; 2304 2322 packageName = "@babel/plugin-transform-typescript"; 2305 - version = "7.19.0"; 2323 + version = "7.19.1"; 2306 2324 src = fetchurl { 2307 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.0.tgz"; 2308 - sha512 = "DOOIywxPpkQHXijXv+s9MDAyZcLp12oYRl3CMWZ6u7TjSoCBq/KqHR/nNFR3+i2xqheZxoF0H2XyL7B6xeSRuA=="; 2325 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.1.tgz"; 2326 + sha512 = "+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ=="; 2309 2327 }; 2310 2328 }; 2311 2329 "@babel/plugin-transform-unicode-escapes-7.18.10" = { ··· 2335 2353 sha512 = "X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g=="; 2336 2354 }; 2337 2355 }; 2338 - "@babel/preset-env-7.19.0" = { 2356 + "@babel/preset-env-7.19.1" = { 2339 2357 name = "_at_babel_slash_preset-env"; 2340 2358 packageName = "@babel/preset-env"; 2341 - version = "7.19.0"; 2359 + version = "7.19.1"; 2342 2360 src = fetchurl { 2343 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.0.tgz"; 2344 - sha512 = "1YUju1TAFuzjIQqNM9WsF4U6VbD/8t3wEAlw3LFYuuEr+ywqLRcSXxFKz4DCEj+sN94l/XTDiUXYRrsvMpz9WQ=="; 2361 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.1.tgz"; 2362 + sha512 = "c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA=="; 2345 2363 }; 2346 2364 }; 2347 2365 "@babel/preset-flow-7.18.6" = { ··· 2425 2443 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 2426 2444 }; 2427 2445 }; 2428 - "@babel/runtime-corejs3-7.19.0" = { 2446 + "@babel/runtime-corejs3-7.19.1" = { 2429 2447 name = "_at_babel_slash_runtime-corejs3"; 2430 2448 packageName = "@babel/runtime-corejs3"; 2431 - version = "7.19.0"; 2449 + version = "7.19.1"; 2432 2450 src = fetchurl { 2433 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.0.tgz"; 2434 - sha512 = "JyXXoCu1N8GLuKc2ii8y5RGma5FMpFeO2nAQIe0Yzrbq+rQnN+sFj47auLblR5ka6aHNGPDgv8G/iI2Grb0ldQ=="; 2451 + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.1.tgz"; 2452 + sha512 = "j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g=="; 2435 2453 }; 2436 2454 }; 2437 2455 "@babel/template-7.18.10" = { ··· 2443 2461 sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; 2444 2462 }; 2445 2463 }; 2446 - "@babel/traverse-7.19.0" = { 2464 + "@babel/traverse-7.19.1" = { 2447 2465 name = "_at_babel_slash_traverse"; 2448 2466 packageName = "@babel/traverse"; 2449 - version = "7.19.0"; 2467 + version = "7.19.1"; 2450 2468 src = fetchurl { 2451 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.0.tgz"; 2452 - sha512 = "4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA=="; 2469 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.1.tgz"; 2470 + sha512 = "0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA=="; 2453 2471 }; 2454 2472 }; 2455 2473 "@babel/types-7.18.4" = { ··· 2479 2497 sha512 = "3/kahUWyvgQUV9NtCMeeJgTFHziM2Z3f4hjDfnl03X4MW0onUeZfa2Mu4ZsRn2IAK7AmfLNkZe8vp8mxX9pDRg=="; 2480 2498 }; 2481 2499 }; 2482 - "@blueprintjs/core-4.9.4" = { 2500 + "@blueprintjs/core-4.10.1" = { 2483 2501 name = "_at_blueprintjs_slash_core"; 2484 2502 packageName = "@blueprintjs/core"; 2485 - version = "4.9.4"; 2503 + version = "4.10.1"; 2486 2504 src = fetchurl { 2487 - url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.9.4.tgz"; 2488 - sha512 = "aEhhXAzDGHNyC4BTn6AvkJBbS3AYofHzlNcqOvyNdU5SBVv+UabKs8Q8xMOhr0K6sn1BEEhtLvsW8IfhrSli3g=="; 2505 + url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.10.1.tgz"; 2506 + sha512 = "yXvbIP1P2GaX8ksrmZIX775W8nemdGfkKDnQehmCyW48Nm61xKrWeMFd8dUWCIQ8ok/xLlr3X5jAyW7YYfzzmg=="; 2489 2507 }; 2490 2508 }; 2491 - "@blueprintjs/icons-4.4.2" = { 2509 + "@blueprintjs/icons-4.5.0" = { 2492 2510 name = "_at_blueprintjs_slash_icons"; 2493 2511 packageName = "@blueprintjs/icons"; 2494 - version = "4.4.2"; 2512 + version = "4.5.0"; 2495 2513 src = fetchurl { 2496 - url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.4.2.tgz"; 2497 - sha512 = "6oHWphGsRRYbz24IYBVI7Gz4jnxmO2AKeHNJUpghHg0GicKIjp4fNd+l6I+1q5N0CLDeY3sYjUnV7Cp+dq0+Sw=="; 2514 + url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.5.0.tgz"; 2515 + sha512 = "IQCUrPfv6QxuLFkLT4h61COCxVyugAXQ1b+QhomJC8UukUjIFDQfG1YrbLRIuwngZMBH3JPov7ZM7wlp9x9REA=="; 2498 2516 }; 2499 2517 }; 2500 2518 "@bmewburn/js-beautify-1.13.0" = { ··· 2767 2785 sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; 2768 2786 }; 2769 2787 }; 2770 - "@cspell/cspell-bundled-dicts-6.8.2" = { 2788 + "@cspell/cspell-bundled-dicts-6.10.0" = { 2771 2789 name = "_at_cspell_slash_cspell-bundled-dicts"; 2772 2790 packageName = "@cspell/cspell-bundled-dicts"; 2773 - version = "6.8.2"; 2791 + version = "6.10.0"; 2774 2792 src = fetchurl { 2775 - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.8.2.tgz"; 2776 - sha512 = "E4sNdcG23nj0ztiI69PeU+ALL6DgL3GoqVZuLhpRwgRL4RN7n7FuUJdJ91cgpNvx50+HhdyxFqEpKRigD3yeNQ=="; 2793 + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.10.0.tgz"; 2794 + sha512 = "ih+YEiXlAyujaoHYZwL8VXWsC5TwzdtNWCK/lDRc015KfcjnRN6+zT+2Wy+WLO27wczHqiG6ClsI88IdwmytlQ=="; 2777 2795 }; 2778 2796 }; 2779 - "@cspell/cspell-pipe-6.8.2" = { 2797 + "@cspell/cspell-pipe-6.10.0" = { 2780 2798 name = "_at_cspell_slash_cspell-pipe"; 2781 2799 packageName = "@cspell/cspell-pipe"; 2782 - version = "6.8.2"; 2800 + version = "6.10.0"; 2783 2801 src = fetchurl { 2784 - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.8.2.tgz"; 2785 - sha512 = "9GXBibZ8bcU+2KhX6WTEASPhIhsqdFYITwBJ39jfUl2MiPgpvjYxQKrAgnZOm5WpRzCUxoelU2SVaoI+rn/Stg=="; 2802 + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.10.0.tgz"; 2803 + sha512 = "bazBPpAGrfHWk6d2SZqgHJ7iCmCjfcijKdBMhElqMx4FKZu8OW+s9UPWXMT06lttIu1DRWdXLkKcnLQYvlYiDA=="; 2786 2804 }; 2787 2805 }; 2788 - "@cspell/cspell-service-bus-6.8.2" = { 2806 + "@cspell/cspell-service-bus-6.10.0" = { 2789 2807 name = "_at_cspell_slash_cspell-service-bus"; 2790 2808 packageName = "@cspell/cspell-service-bus"; 2791 - version = "6.8.2"; 2809 + version = "6.10.0"; 2792 2810 src = fetchurl { 2793 - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.8.2.tgz"; 2794 - sha512 = "YvEauGv/QZb5xRiKKvwiXz7lj7twc5TgispnujgHYDEt6OcXiWjYj676WzKkGJ2yM+QfurGJCCvOb2L1HQ6rYg=="; 2811 + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.10.0.tgz"; 2812 + sha512 = "Zg7ioRETmiTkNalM4WX2RIFnj1wsFbX3Ztgi6JcGYzuzU490acIye1W9B6yspbQEdP1RL0qRWvPG+sodIv2JaA=="; 2795 2813 }; 2796 2814 }; 2797 - "@cspell/cspell-types-6.8.2" = { 2815 + "@cspell/cspell-types-6.10.0" = { 2798 2816 name = "_at_cspell_slash_cspell-types"; 2799 2817 packageName = "@cspell/cspell-types"; 2800 - version = "6.8.2"; 2818 + version = "6.10.0"; 2801 2819 src = fetchurl { 2802 - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.8.2.tgz"; 2803 - sha512 = "jFg+D1L+MkIad2IR+qlnOYIuwqaosbTrtqhpWhbOGMvFQjxMyKg9IVxbmtjDCdRohdBUvRq96rkp0vx1FviiwQ=="; 2820 + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.10.0.tgz"; 2821 + sha512 = "YsFdXwkdEwGOmXU71a6DrCAArdDMI7jhdrtevwSIdAYtXRCZE24+Wmpaxa6AV6yaI+GxWxoxEWiKQsk7jztnqA=="; 2804 2822 }; 2805 2823 }; 2806 2824 "@cspell/dict-ada-2.0.1" = { ··· 2830 2848 sha512 = "uK/ehmp5LYrmRH2Gv3nbvdPswpkybJUn34WYKLpeuYHQktmi+pOI1A9uPdBPnSbMDffSvwQlQohIyKawz+X8Ag=="; 2831 2849 }; 2832 2850 }; 2833 - "@cspell/dict-companies-2.0.13" = { 2851 + "@cspell/dict-companies-2.0.14" = { 2834 2852 name = "_at_cspell_slash_dict-companies"; 2835 2853 packageName = "@cspell/dict-companies"; 2836 - version = "2.0.13"; 2854 + version = "2.0.14"; 2837 2855 src = fetchurl { 2838 - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.13.tgz"; 2839 - sha512 = "EacGH6Yjd2u+sNRLd6+3jxbzWBSsmF4g52Xfxfv2T48qzRWJ1zqpX89ijihgYTwvZbf8H/6Lu+z1VU4e1gUp0g=="; 2856 + url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.14.tgz"; 2857 + sha512 = "Sq1X29Z05OZ/UNqTwVhf3/WaqvJQy4/S6gS8qYI5AQRX45gVe8CPhNBLmZOTC6z8m716bfQCxa5rRT9YNSdTZg=="; 2840 2858 }; 2841 2859 }; 2842 2860 "@cspell/dict-cpp-3.2.1" = { ··· 3136 3154 sha512 = "MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g=="; 3137 3155 }; 3138 3156 }; 3139 - "@cspell/dict-software-terms-2.2.7" = { 3157 + "@cspell/dict-software-terms-2.2.9" = { 3140 3158 name = "_at_cspell_slash_dict-software-terms"; 3141 3159 packageName = "@cspell/dict-software-terms"; 3142 - version = "2.2.7"; 3160 + version = "2.2.9"; 3143 3161 src = fetchurl { 3144 - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.2.7.tgz"; 3145 - sha512 = "tNdgfijX4PGIzwWyRQHqEsKEWqNc92HDdURcXBZNw2po7jUh+/FgqBoUgnJXyLastJ9PGX9847j9uNBPfShTgA=="; 3162 + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.2.9.tgz"; 3163 + sha512 = "uty2txffWWgYVTwt6/ekPwtVHb8GRDKgfmhOrcQbpTgMghIjxFgS8ADYgt5h+NrAomy7oGrffWDI1BimbhzRCA=="; 3146 3164 }; 3147 3165 }; 3148 3166 "@cspell/dict-sql-1.0.4" = { ··· 3163 3181 sha512 = "yOBLSaRD0AnkkkndJ8PuB82Evp6lA2xItf2AWsnPfCCgxp5Ojk6uUBC/WQBSkzkCAOGbXyHsu9D97tsOx2c6cw=="; 3164 3182 }; 3165 3183 }; 3166 - "@cspell/dict-typescript-2.0.1" = { 3184 + "@cspell/dict-typescript-2.0.2" = { 3167 3185 name = "_at_cspell_slash_dict-typescript"; 3168 3186 packageName = "@cspell/dict-typescript"; 3169 - version = "2.0.1"; 3187 + version = "2.0.2"; 3170 3188 src = fetchurl { 3171 - url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.1.tgz"; 3172 - sha512 = "YXH6nEH4thcD7lNffdNsKgDDZA5JVX4aKCuNIGE7qWSS9kBVgIvSU9/WH64R59rEzAPe1VwXwXyoZ7y4fAufww=="; 3189 + url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.2.tgz"; 3190 + sha512 = "OIoSJsCw9WHX4eDikoF5/0QbptMPZjElOcMYdYCyV03nqV5n4ot72ysTexW95yW4+fQU6uDPNQvnrUnhXXEkTA=="; 3173 3191 }; 3174 3192 }; 3175 3193 "@cspell/dict-vue-2.0.2" = { ··· 3649 3667 sha512 = "uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg=="; 3650 3668 }; 3651 3669 }; 3652 - "@esbuild/linux-loong64-0.14.54" = { 3670 + "@esbuild/android-arm-0.15.8" = { 3671 + name = "_at_esbuild_slash_android-arm"; 3672 + packageName = "@esbuild/android-arm"; 3673 + version = "0.15.8"; 3674 + src = fetchurl { 3675 + url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.8.tgz"; 3676 + sha512 = "CyEWALmn+no/lbgbAJsbuuhT8s2J19EJGHkeyAwjbFJMrj80KJ9zuYsoAvidPTU7BgBf87r/sgae8Tw0dbOc4Q=="; 3677 + }; 3678 + }; 3679 + "@esbuild/linux-loong64-0.15.8" = { 3653 3680 name = "_at_esbuild_slash_linux-loong64"; 3654 3681 packageName = "@esbuild/linux-loong64"; 3655 - version = "0.14.54"; 3682 + version = "0.15.8"; 3656 3683 src = fetchurl { 3657 - url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz"; 3658 - sha512 = "bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw=="; 3684 + url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.8.tgz"; 3685 + sha512 = "pE5RQsOTSERCtfZdfCT25wzo7dfhOSlhAXcsZmuvRYhendOv7djcdvtINdnDp2DAjP17WXlBB4nBO6sHLczmsg=="; 3659 3686 }; 3660 3687 }; 3661 3688 "@eslint/eslintrc-0.4.3" = { ··· 4036 4063 sha512 = "bHWftN3zTp1bbBfmAEH8YK9UURWj2mffw7b7VaW2Og1qxwv3GMSza1cyv/d3EVqpMJ8AVwFv3mbi9p1ieMN9mw=="; 4037 4064 }; 4038 4065 }; 4039 - "@fluentui/react-8.94.4" = { 4066 + "@fluentui/react-8.96.0" = { 4040 4067 name = "_at_fluentui_slash_react"; 4041 4068 packageName = "@fluentui/react"; 4042 - version = "8.94.4"; 4069 + version = "8.96.0"; 4043 4070 src = fetchurl { 4044 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.94.4.tgz"; 4045 - sha512 = "zT9TscfVqunSbPRXuCOEwZ/MQK3n0baO2xs+TSTJEEh0POlov5BQb5CYLu/YxdVYkWD2EKeMH+O7Kcy4WmWnxg=="; 4071 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.96.0.tgz"; 4072 + sha512 = "YwK9HuITVbGXT5e10u9nJ1BwxVKTBgU0dQPo/L6nuxyIPpYBqWhhXdn6R5b8LII7ZYjpz+8WaMY3v+5KpzR3eA=="; 4046 4073 }; 4047 4074 }; 4048 4075 "@fluentui/react-focus-8.8.5" = { ··· 4063 4090 sha512 = "qQAg/Hqchz0BGL1KJhg211uhhBDxF0bvMCdVKVoeeJNj4q3Cdvam87zHi7/W5gP8i6jgCILr7MrV3dH9umA/Sw=="; 4064 4091 }; 4065 4092 }; 4066 - "@fluentui/react-portal-compat-context-9.0.1" = { 4093 + "@fluentui/react-portal-compat-context-9.0.2" = { 4067 4094 name = "_at_fluentui_slash_react-portal-compat-context"; 4068 4095 packageName = "@fluentui/react-portal-compat-context"; 4069 - version = "9.0.1"; 4096 + version = "9.0.2"; 4070 4097 src = fetchurl { 4071 - url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.1.tgz"; 4072 - sha512 = "KhOcXy2tvzNoAqFowkaRGFiLuRuPjzn6i1W30iMkhgsSVKxa/9jxso86Z8R0eZwA+16RNO/Ia2nX1gqfUac9mw=="; 4098 + url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.2.tgz"; 4099 + sha512 = "dZiXbi01rjs4mTbHOiwSGG8JkUYGNlt+hOJhfGQobzRfFRU8ZMJpsY+8AeIcXfT08vIapjC5ofI5Nscpp0PftQ=="; 4073 4100 }; 4074 4101 }; 4075 4102 "@fluentui/react-window-provider-2.2.2" = { ··· 4486 4513 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4487 4514 }; 4488 4515 }; 4489 - "@graphql-tools/url-loader-7.16.1" = { 4516 + "@graphql-tools/url-loader-7.16.2" = { 4490 4517 name = "_at_graphql-tools_slash_url-loader"; 4491 4518 packageName = "@graphql-tools/url-loader"; 4492 - version = "7.16.1"; 4519 + version = "7.16.2"; 4493 4520 src = fetchurl { 4494 - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.1.tgz"; 4495 - sha512 = "41G+NcPoRKAQxoNeAdLRttI39WFdcpmhTz8jgvwLvgLvnAzAIPaPGuteWWO9ilpMwtomkOwmwOsj2UYz3JkKDg=="; 4521 + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.2.tgz"; 4522 + sha512 = "ZVG3kDEJ88zLfqYtVmI36RUzaP/0bPBcJfBH8whMYL620tE6kizEQsON8iKsxcU1bWB5D7m9ZVFqW4eZ5EqVWw=="; 4496 4523 }; 4497 4524 }; 4498 4525 "@graphql-tools/utils-6.2.4" = { ··· 4549 4576 sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; 4550 4577 }; 4551 4578 }; 4552 - "@graphql-tools/wrap-9.2.0" = { 4579 + "@graphql-tools/wrap-9.2.1" = { 4553 4580 name = "_at_graphql-tools_slash_wrap"; 4554 4581 packageName = "@graphql-tools/wrap"; 4555 - version = "9.2.0"; 4582 + version = "9.2.1"; 4556 4583 src = fetchurl { 4557 - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.0.tgz"; 4558 - sha512 = "+mX9m4x0IrI/kHIeR9LXDgp+6lVfBdHHfJ5QpbwjFEo8g++L7sIAZ1rr5a99Z/AvUNwbzLtp34TPfdlR6aKVCw=="; 4584 + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.1.tgz"; 4585 + sha512 = "W8bzJijTZDNi8e1oM2AMG89CtvfTYaJ9lCe0dYMN+a+OPMhRfgR9+eO7ALcUa9y4MTu+YEDVjUq0ZboaSvesyA=="; 4559 4586 }; 4560 4587 }; 4561 4588 "@grpc/grpc-js-1.6.11" = { ··· 4837 4864 sha512 = "trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="; 4838 4865 }; 4839 4866 }; 4840 - "@ibm-cloud/openapi-ruleset-0.32.3" = { 4867 + "@ibm-cloud/openapi-ruleset-0.37.3" = { 4841 4868 name = "_at_ibm-cloud_slash_openapi-ruleset"; 4842 4869 packageName = "@ibm-cloud/openapi-ruleset"; 4843 - version = "0.32.3"; 4870 + version = "0.37.3"; 4844 4871 src = fetchurl { 4845 - url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-0.32.3.tgz"; 4846 - sha512 = "9eCNeEO/3TVEill0H2bFcfsjytzlC23lHxjC8YHqv5L/qMMW8/sndD7KMgvnb7SyUqg9Hp3Y+d+lzA23IUc9CA=="; 4872 + url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-0.37.3.tgz"; 4873 + sha512 = "saQM/1YTfhW7ou/mtmC4BMUhW/UM54aD47KBZucjrZLvAelzt8Lykm5zeN59Cu4cs/LBDEcvJfyZzDpPhdcVjQ=="; 4847 4874 }; 4848 4875 }; 4849 4876 "@intervolga/optimize-cssnano-plugin-1.0.6" = { ··· 5179 5206 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 5180 5207 }; 5181 5208 }; 5182 - "@jsep-plugin/regex-1.0.2" = { 5209 + "@jsep-plugin/regex-1.0.3" = { 5183 5210 name = "_at_jsep-plugin_slash_regex"; 5184 5211 packageName = "@jsep-plugin/regex"; 5185 - version = "1.0.2"; 5212 + version = "1.0.3"; 5186 5213 src = fetchurl { 5187 - url = "https://registry.npmjs.org/@jsep-plugin/regex/-/regex-1.0.2.tgz"; 5188 - sha512 = "Nn/Bcaww8zOebMDqNmGlhAWPWhIr/8S8lGIgaB/fSqev5xaO5uKy5i4qvTh63GpR+VzKqimgxDdcxdcRuCJXSw=="; 5214 + url = "https://registry.npmjs.org/@jsep-plugin/regex/-/regex-1.0.3.tgz"; 5215 + sha512 = "XfZgry4DwEZvSFtS/6Y+R48D7qJYJK6R9/yJFyUFHCIUMEEHuJ4X95TDgJp5QkmzfLYvapMPzskV5HpIDrREug=="; 5189 5216 }; 5190 5217 }; 5191 - "@jsep-plugin/ternary-1.1.2" = { 5218 + "@jsep-plugin/ternary-1.1.3" = { 5192 5219 name = "_at_jsep-plugin_slash_ternary"; 5193 5220 packageName = "@jsep-plugin/ternary"; 5194 - version = "1.1.2"; 5221 + version = "1.1.3"; 5195 5222 src = fetchurl { 5196 - url = "https://registry.npmjs.org/@jsep-plugin/ternary/-/ternary-1.1.2.tgz"; 5197 - sha512 = "gXguJc09uCrqWt1MD7L1+ChO32g4UH4BYGpHPoQRLhyU7pAPPRA7cvKbyjoqhnUlLutiXvLzB5hVVawPKax8jw=="; 5223 + url = "https://registry.npmjs.org/@jsep-plugin/ternary/-/ternary-1.1.3.tgz"; 5224 + sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg=="; 5198 5225 }; 5199 5226 }; 5200 5227 "@jsii/check-node-1.67.0" = { ··· 5269 5296 sha512 = "4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA=="; 5270 5297 }; 5271 5298 }; 5272 - "@ledgerhq/devices-7.0.0" = { 5299 + "@ledgerhq/devices-7.0.1" = { 5273 5300 name = "_at_ledgerhq_slash_devices"; 5274 5301 packageName = "@ledgerhq/devices"; 5275 - version = "7.0.0"; 5302 + version = "7.0.1"; 5276 5303 src = fetchurl { 5277 - url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.0.tgz"; 5278 - sha512 = "vq4B33WdU0dRAJIRFWZMj6w1W1yw1i4mekCmhk7N9wPaFrtGWZ2iI9WDihsNOBooCWKQe8Jsb9eD8RVThbSlFQ=="; 5304 + url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.1.tgz"; 5305 + sha512 = "LlAyDU5+GH0w+J1wscLU+Ga4z5a5ACKmMGQKILj5XscCtp63NjbtVdVt4oc/xrmoUdRqVehIw2Ui+e9nIF52yA=="; 5279 5306 }; 5280 5307 }; 5281 5308 "@ledgerhq/errors-5.50.0" = { ··· 5287 5314 sha512 = "gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow=="; 5288 5315 }; 5289 5316 }; 5290 - "@ledgerhq/errors-6.10.1" = { 5317 + "@ledgerhq/errors-6.10.2" = { 5291 5318 name = "_at_ledgerhq_slash_errors"; 5292 5319 packageName = "@ledgerhq/errors"; 5293 - version = "6.10.1"; 5320 + version = "6.10.2"; 5294 5321 src = fetchurl { 5295 - url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.1.tgz"; 5296 - sha512 = "92d1zRQleR1AQ4CAXgWgDtKUms+8EwShLVUcajI+BLWvgJ1Vclmq6PsBIDEQbsm+riVu/Ji3LcHdmgFgmi0VGw=="; 5322 + url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.2.tgz"; 5323 + sha512 = "iMfEJPWaan8QaZw87WMUnFFRJqveE3FpU2ObTE0ydTJLPJNOUJjjurGBklqdWM/j5BIQvpi3byGKFChfNg8CaQ=="; 5297 5324 }; 5298 5325 }; 5299 5326 "@ledgerhq/hw-transport-5.51.1" = { ··· 5305 5332 sha512 = "6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw=="; 5306 5333 }; 5307 5334 }; 5308 - "@ledgerhq/hw-transport-6.27.3" = { 5335 + "@ledgerhq/hw-transport-6.27.4" = { 5309 5336 name = "_at_ledgerhq_slash_hw-transport"; 5310 5337 packageName = "@ledgerhq/hw-transport"; 5311 - version = "6.27.3"; 5338 + version = "6.27.4"; 5312 5339 src = fetchurl { 5313 - url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.3.tgz"; 5314 - sha512 = "vQMNCC1DUDtS+nkJsbycgFMSodmj91WuGSxX7RjOz2vuZBc6jXtDn9jzYdsfyKOwnvalQAkXm9hWWHlrMIKdNQ=="; 5340 + url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.4.tgz"; 5341 + sha512 = "i3RYKfSIZ7PHM2sFljAU443qOYMTlghx8l5AZqsNKsXbawHkuOr7EtISW3zqbC0Wh3uws7u63qQ/50TLmylr7g=="; 5315 5342 }; 5316 5343 }; 5317 - "@ledgerhq/hw-transport-node-hid-6.27.3" = { 5344 + "@ledgerhq/hw-transport-node-hid-6.27.4" = { 5318 5345 name = "_at_ledgerhq_slash_hw-transport-node-hid"; 5319 5346 packageName = "@ledgerhq/hw-transport-node-hid"; 5320 - version = "6.27.3"; 5347 + version = "6.27.4"; 5321 5348 src = fetchurl { 5322 - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.3.tgz"; 5323 - sha512 = "XhbAPfRhjC78cIMPzAUAaZw/14lru88SJiyMlupY8VocbG//iuhPv7YvfbgS4nO2tXgeYIrRT3eTWBuLTEfCag=="; 5349 + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.4.tgz"; 5350 + sha512 = "7dnQMUXKPcnlHaJsPT3Oo5WXYfeIqqA6u0mo/rbvFdz3/KsJtDaBF2E3RtBXFHrDmXjBA0leqXFeWXdHDFdF3A=="; 5324 5351 }; 5325 5352 }; 5326 - "@ledgerhq/hw-transport-node-hid-noevents-6.27.3" = { 5353 + "@ledgerhq/hw-transport-node-hid-noevents-6.27.4" = { 5327 5354 name = "_at_ledgerhq_slash_hw-transport-node-hid-noevents"; 5328 5355 packageName = "@ledgerhq/hw-transport-node-hid-noevents"; 5329 - version = "6.27.3"; 5356 + version = "6.27.4"; 5330 5357 src = fetchurl { 5331 - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.3.tgz"; 5332 - sha512 = "aShJbG7I9TrsffLKkwJWhi/3FC9JnxyxVUjMtmZFN+XfJztWVxSIf2iB6asY2A0BYHIbmnanQIzk/0Z+FBrTjA=="; 5358 + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.4.tgz"; 5359 + sha512 = "PlHtw9x7h40voLUvBAfcr1Phjo8rrRESEDsU0OY6doFoSHpjRFaNtQR1/okQ/A7hx19uXfqXOhbmrrBLNWrqsg=="; 5333 5360 }; 5334 5361 }; 5335 5362 "@ledgerhq/hw-transport-u2f-5.36.0-deprecated" = { ··· 5375 5402 src = fetchurl { 5376 5403 url = "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.0.tgz"; 5377 5404 sha512 = "lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw=="; 5378 - }; 5379 - }; 5380 - "@ledgerhq/logs-6.10.1-nightly.0" = { 5381 - name = "_at_ledgerhq_slash_logs"; 5382 - packageName = "@ledgerhq/logs"; 5383 - version = "6.10.1-nightly.0"; 5384 - src = fetchurl { 5385 - url = "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.1-nightly.0.tgz"; 5386 - sha512 = "hwoUwlC7le37kQ72W8hAzVq070zuY6IEpssYNXDTr3pEfc3cprTAgEnaBsb0jXQGiLdONPvxc7nPp8nSyGD3hQ=="; 5387 5405 }; 5388 5406 }; 5389 5407 "@leichtgewicht/ip-codec-2.0.4" = { ··· 6430 6448 sha512 = "W+IzEBw8a6LOOfRJM02dTT7BDZijxm+Z7lhtOAz1+y9vQm1Kdz9jlAO+qCEKsfxtUOmKilW8DIRqFw2aUgKeGg=="; 6431 6449 }; 6432 6450 }; 6433 - "@miniflare/cache-2.8.2" = { 6451 + "@miniflare/cache-2.9.0" = { 6434 6452 name = "_at_miniflare_slash_cache"; 6435 6453 packageName = "@miniflare/cache"; 6436 - version = "2.8.2"; 6454 + version = "2.9.0"; 6437 6455 src = fetchurl { 6438 - url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.8.2.tgz"; 6439 - sha512 = "YaFOsXKmlNLk5xDJfyDCMsRaoZLFLPqHAiEsZBZTcCl3FlZbG2GUIvcMlfkO4OKb1nCjtr9OxFgtIdW6DEuboA=="; 6456 + url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.9.0.tgz"; 6457 + sha512 = "lriPxUEva9TJ01vU9P7pI60s3SsFnb4apWkNwZ+D7CRqyXPipSbapY8BWI2FUIwkEG7xap6UhzeTS76NettCXQ=="; 6440 6458 }; 6441 6459 }; 6442 - "@miniflare/cli-parser-2.8.2" = { 6460 + "@miniflare/cli-parser-2.9.0" = { 6443 6461 name = "_at_miniflare_slash_cli-parser"; 6444 6462 packageName = "@miniflare/cli-parser"; 6445 - version = "2.8.2"; 6463 + version = "2.9.0"; 6446 6464 src = fetchurl { 6447 - url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.8.2.tgz"; 6448 - sha512 = "qa//FhLiJpQpTngq6tCJMZqc1CjhJQV4AwKWaIp85XiVbpbN/cTzZ6PUyoYLTZ6g6dL4j+136o2bb+2XSMxVHw=="; 6465 + url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.9.0.tgz"; 6466 + sha512 = "gu8Z7NWNcYw6514/yOvajaj3GmebRucx+EEt3p1vKirO+gvFgKAt/puyUN3p7u8ZZmLuLF/B+wVnH3lj8BWKlg=="; 6449 6467 }; 6450 6468 }; 6451 - "@miniflare/core-2.8.2" = { 6469 + "@miniflare/core-2.9.0" = { 6452 6470 name = "_at_miniflare_slash_core"; 6453 6471 packageName = "@miniflare/core"; 6454 - version = "2.8.2"; 6472 + version = "2.9.0"; 6473 + src = fetchurl { 6474 + url = "https://registry.npmjs.org/@miniflare/core/-/core-2.9.0.tgz"; 6475 + sha512 = "QqSwF6oHvgrFvN5lnrLc6EEagFlZWW+UMU8QdrE8305cNGHrIOxKCA2nte4PVFZUVw/Ts13a0tVhUk3a2fAyxQ=="; 6476 + }; 6477 + }; 6478 + "@miniflare/d1-2.9.0" = { 6479 + name = "_at_miniflare_slash_d1"; 6480 + packageName = "@miniflare/d1"; 6481 + version = "2.9.0"; 6455 6482 src = fetchurl { 6456 - url = "https://registry.npmjs.org/@miniflare/core/-/core-2.8.2.tgz"; 6457 - sha512 = "a9Ecyf4xALcvphQhK3qA+mtUApUrUbwcxCexXvvgVsPrQtMCOIjJ2qs7+RKrC+krCy2O8Eq/8eq2hYh4y/HOKQ=="; 6483 + url = "https://registry.npmjs.org/@miniflare/d1/-/d1-2.9.0.tgz"; 6484 + sha512 = "swK9nzxw1SvVh/4cH3bRR1SBuHQU/YsB8WvuHojxufmgviAD1xhms3XO3rkpAzfKoGM5Oy6DovMe0xUXV/GS0w=="; 6458 6485 }; 6459 6486 }; 6460 - "@miniflare/durable-objects-2.8.2" = { 6487 + "@miniflare/durable-objects-2.9.0" = { 6461 6488 name = "_at_miniflare_slash_durable-objects"; 6462 6489 packageName = "@miniflare/durable-objects"; 6463 - version = "2.8.2"; 6490 + version = "2.9.0"; 6464 6491 src = fetchurl { 6465 - url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.8.2.tgz"; 6466 - sha512 = "jKcnb6lfgVZKfTPom2d0yPiaVAuDJLyr4itzb3nqJNH5Ld2iKJv77iSGOEOv8Wb78YEEFU8PQZvvrAC/TmN6tQ=="; 6492 + url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.9.0.tgz"; 6493 + sha512 = "7uTvfEUXS7xqwrsWOwWrFUuKc4EiMpVkAWPeYGLB/0TJaJ6N+sZMpYYymdW79TQwPIDfgtpfkIy93MRydqpnrw=="; 6467 6494 }; 6468 6495 }; 6469 - "@miniflare/html-rewriter-2.8.2" = { 6496 + "@miniflare/html-rewriter-2.9.0" = { 6470 6497 name = "_at_miniflare_slash_html-rewriter"; 6471 6498 packageName = "@miniflare/html-rewriter"; 6472 - version = "2.8.2"; 6499 + version = "2.9.0"; 6473 6500 src = fetchurl { 6474 - url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.8.2.tgz"; 6475 - sha512 = "xxrLO7XMpiaWi6HSIqvAxmD5z6RRHWENkWuWjQqaqC6E6qheN+d0ZeZshyP2SRbJUw9wfFUj5zkKTva5sovzbw=="; 6501 + url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.9.0.tgz"; 6502 + sha512 = "K5OB70PtkMo7M+tU46s/cX/j/qtjD9AlJ0hecYswrxVsfrT/YWyrCQJevmShFfJ92h7jPNigbeC3Od3JiVb6QA=="; 6476 6503 }; 6477 6504 }; 6478 - "@miniflare/http-server-2.8.2" = { 6505 + "@miniflare/http-server-2.9.0" = { 6479 6506 name = "_at_miniflare_slash_http-server"; 6480 6507 packageName = "@miniflare/http-server"; 6481 - version = "2.8.2"; 6508 + version = "2.9.0"; 6482 6509 src = fetchurl { 6483 - url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.8.2.tgz"; 6484 - sha512 = "hrTRHHz+LWe7cLkP8Xg4hM3YRH7kI4ngOYozkEz1OC69SLBnxfT8xLkUkvz+fdJ3vquF+dpHyVQAa0dpvJShGA=="; 6510 + url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.9.0.tgz"; 6511 + sha512 = "IVJMkFfMpecq9WiCTvATEKhMuKPK9fMs2E6zmgexaefr3u1VlNtj2QxBxoPUXkT9xMJQlT5sSKstlRR1XKDz9Q=="; 6485 6512 }; 6486 6513 }; 6487 - "@miniflare/kv-2.8.2" = { 6514 + "@miniflare/kv-2.9.0" = { 6488 6515 name = "_at_miniflare_slash_kv"; 6489 6516 packageName = "@miniflare/kv"; 6490 - version = "2.8.2"; 6517 + version = "2.9.0"; 6491 6518 src = fetchurl { 6492 - url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.8.2.tgz"; 6493 - sha512 = "radkyE6FtLGAoumf8S1VnPHAbgiP1DOzGnBnBVferMDkd86/3P8hre1a+C9PUTgt6e6KgLq4AKEFDwRJHc1MFw=="; 6519 + url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.9.0.tgz"; 6520 + sha512 = "EqG51okY5rDtgjYs2Ny6j6IUVdTlJzDjwBKBIuW+wOV9NsAAzEchKVdYAXc8CyxvkggpYX481HydTD2OzK3INQ=="; 6494 6521 }; 6495 6522 }; 6496 - "@miniflare/queues-2.8.2" = { 6523 + "@miniflare/queues-2.9.0" = { 6497 6524 name = "_at_miniflare_slash_queues"; 6498 6525 packageName = "@miniflare/queues"; 6499 - version = "2.8.2"; 6526 + version = "2.9.0"; 6500 6527 src = fetchurl { 6501 - url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.8.2.tgz"; 6502 - sha512 = "WYlK5L7ukdcL86DdB/BsJhnX7jcLNzyYdcn5vPQbCnDyaK1Lz9lm1RCrtCz7qwJjTrq5z453pczm0ELTxa5n9g=="; 6528 + url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.9.0.tgz"; 6529 + sha512 = "cAHWIlLF57rxQaJl19AzXw1k0SOM/uLTlx8r2PylHajZ/RRSs7CkCox3oKA6E5zKyfyxk2M64bmsAFZ9RCA0gw=="; 6503 6530 }; 6504 6531 }; 6505 - "@miniflare/r2-2.8.2" = { 6532 + "@miniflare/r2-2.9.0" = { 6506 6533 name = "_at_miniflare_slash_r2"; 6507 6534 packageName = "@miniflare/r2"; 6508 - version = "2.8.2"; 6535 + version = "2.9.0"; 6509 6536 src = fetchurl { 6510 - url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.8.2.tgz"; 6511 - sha512 = "cdqq1dcgfiTlCf3wjQjrhZuRb0vJImLwYSALVEAA/4leVhwNY9ABHIn71y29Nf4bUdv2YKVSfTuV0m0CRGmOqA=="; 6537 + url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.9.0.tgz"; 6538 + sha512 = "aMFWxxciAE3YsVok2OLy3A7hP5+2j/NaK7txmadgoe1CA8HYZyNuvv7v6bn8HKM5gWnJdT8sk4yEbMbBQ7Jv/A=="; 6512 6539 }; 6513 6540 }; 6514 - "@miniflare/runner-vm-2.8.2" = { 6541 + "@miniflare/runner-vm-2.9.0" = { 6515 6542 name = "_at_miniflare_slash_runner-vm"; 6516 6543 packageName = "@miniflare/runner-vm"; 6517 - version = "2.8.2"; 6544 + version = "2.9.0"; 6518 6545 src = fetchurl { 6519 - url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.8.2.tgz"; 6520 - sha512 = "l9V/MedhH1Dc/xIEPEpXW57Y649lcTCYorwqnHPca3didiw75O8jI2g6MvuVlodmbimpg2WtwI7/2ac0WFZfWQ=="; 6546 + url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.9.0.tgz"; 6547 + sha512 = "vewP+Fy7Czb261GmB9x/YtQkoDs/QP9B5LbP0YfJ35bI2C2j940eJLm8JP72IHV7ILtWNOqMc3Ure8uAbpf9NQ=="; 6521 6548 }; 6522 6549 }; 6523 - "@miniflare/scheduler-2.8.2" = { 6550 + "@miniflare/scheduler-2.9.0" = { 6524 6551 name = "_at_miniflare_slash_scheduler"; 6525 6552 packageName = "@miniflare/scheduler"; 6526 - version = "2.8.2"; 6553 + version = "2.9.0"; 6527 6554 src = fetchurl { 6528 - url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.8.2.tgz"; 6529 - sha512 = "vhtyPky+1Phq4Arul3mpzRWJuqJex2YgkPnf9MLA977dcxptRBOzGIxwVPzaUTtko4mHwwzEyl15diT/BXkPJA=="; 6555 + url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.9.0.tgz"; 6556 + sha512 = "eodSCGkJYi4Z+Imbx/bNScDfDSt5HOypVSYjbFHj+hA2aNOdkGw6a1b6mzwx49jJD3GadIkonZAKD0S114yWMA=="; 6530 6557 }; 6531 6558 }; 6532 - "@miniflare/shared-2.8.2" = { 6559 + "@miniflare/shared-2.9.0" = { 6533 6560 name = "_at_miniflare_slash_shared"; 6534 6561 packageName = "@miniflare/shared"; 6535 - version = "2.8.2"; 6562 + version = "2.9.0"; 6536 6563 src = fetchurl { 6537 - url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.8.2.tgz"; 6538 - sha512 = "cjuLIeTAlqcb1POrK4nLa8Bt79SfzbglUr/w78xRAUUoOdB0Lsm3HnEERzD1o0lO2G/Q9F+VDAp2QyglPFV61A=="; 6564 + url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.9.0.tgz"; 6565 + sha512 = "5Ew/Ph0cHDQqKvOlmN70kz+qZW0hdgE9fQBStKLY3vDYhnBEhopbCUChSS+FCcL7WtxVJJVE7iB6J09NQTnQ/A=="; 6539 6566 }; 6540 6567 }; 6541 - "@miniflare/sites-2.8.2" = { 6568 + "@miniflare/sites-2.9.0" = { 6542 6569 name = "_at_miniflare_slash_sites"; 6543 6570 packageName = "@miniflare/sites"; 6544 - version = "2.8.2"; 6571 + version = "2.9.0"; 6545 6572 src = fetchurl { 6546 - url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.8.2.tgz"; 6547 - sha512 = "zdzg8gm/I4bcUIQ4Yo9WqvTQJN+yOnpPqbQ/nKKd6tebrX4k+sw9wTTGl42MjQ4NN5XfNy3xFERo21i1jLgziA=="; 6573 + url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.9.0.tgz"; 6574 + sha512 = "+tWf7znxSQqXWGzPup8Xqkl8EmLmx+HaLC+UBtWPNnaJZrsjbbVxKwHpmGIdm+wZasEGfQk/82R21gUs9wdZnw=="; 6548 6575 }; 6549 6576 }; 6550 - "@miniflare/storage-file-2.8.2" = { 6577 + "@miniflare/storage-file-2.9.0" = { 6551 6578 name = "_at_miniflare_slash_storage-file"; 6552 6579 packageName = "@miniflare/storage-file"; 6553 - version = "2.8.2"; 6580 + version = "2.9.0"; 6554 6581 src = fetchurl { 6555 - url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.8.2.tgz"; 6556 - sha512 = "M5f+vDVjkghix1sCGQy+apiokTBoOU/V7pBaIsHZTnD/58S6/T2s7glD12Dwfr+u1cCjWxEJx+jaXYIBAKbmQQ=="; 6582 + url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.9.0.tgz"; 6583 + sha512 = "HZHtHfJaLoDzQFddoIMcDGgAJ3/Nee98gwUYusQam7rj9pbEXnWmk54dzjzsDlkQpB/3MBFQNbtN5Bj1NIt0pg=="; 6557 6584 }; 6558 6585 }; 6559 - "@miniflare/storage-memory-2.8.2" = { 6586 + "@miniflare/storage-memory-2.9.0" = { 6560 6587 name = "_at_miniflare_slash_storage-memory"; 6561 6588 packageName = "@miniflare/storage-memory"; 6562 - version = "2.8.2"; 6589 + version = "2.9.0"; 6563 6590 src = fetchurl { 6564 - url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.8.2.tgz"; 6565 - sha512 = "9OclkkWBbJwo6WJEz2QCbHsvMt+qraq/xIbuFOByytAcyjomp1gm1ZUaKZ5VkkqMXMgdQ1E+6wTq2iA1p+YRcg=="; 6591 + url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.9.0.tgz"; 6592 + sha512 = "p2yrr0omQhv6teDbdzhdBKzoQAFmUBMLEx+PtrO7CJHX15ICD08/pFAFAp96IcljNwZZDchU20Z3AcbldMj6Tw=="; 6566 6593 }; 6567 6594 }; 6568 - "@miniflare/watcher-2.8.2" = { 6595 + "@miniflare/watcher-2.9.0" = { 6569 6596 name = "_at_miniflare_slash_watcher"; 6570 6597 packageName = "@miniflare/watcher"; 6571 - version = "2.8.2"; 6598 + version = "2.9.0"; 6572 6599 src = fetchurl { 6573 - url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.8.2.tgz"; 6574 - sha512 = "2+awQITWkUGb9GlpzVmYwoe+qiSibni7C6gVDnkxorBRoecwUAzjFRF09QjdEn40+q7peNdE0ui1oWjZMgOaHg=="; 6600 + url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.9.0.tgz"; 6601 + sha512 = "Yqz8Q1He/2chebXvmCft8sMamuUiDQ4FIn0bwiF0+GBP2vvGCmy6SejXZY4ZD4REluPqQSis3CLKcIOWlHnIsw=="; 6575 6602 }; 6576 6603 }; 6577 - "@miniflare/web-sockets-2.8.2" = { 6604 + "@miniflare/web-sockets-2.9.0" = { 6578 6605 name = "_at_miniflare_slash_web-sockets"; 6579 6606 packageName = "@miniflare/web-sockets"; 6580 - version = "2.8.2"; 6607 + version = "2.9.0"; 6581 6608 src = fetchurl { 6582 - url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.8.2.tgz"; 6583 - sha512 = "oW9vG7zImwZZ/OKuAI4CEMtVqYVQqWe9MoO47VoxmB/WMMdaXJArx+k8xcJJJL7tcHVtbwBHsypJf69DOtrCmg=="; 6609 + url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.9.0.tgz"; 6610 + sha512 = "Nob9e84m78qeQCka6OQf/JdNOmMkKCkX+i3rg+TYKSSITiMVuyzWp3vz3Ma184lAZiLg44lxBF4ZzENEdi99Kg=="; 6584 6611 }; 6585 6612 }; 6586 6613 "@mischnic/json-sourcemap-0.1.0" = { ··· 7141 7168 sha512 = "7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg=="; 7142 7169 }; 7143 7170 }; 7144 - "@nrwl/cli-14.7.5" = { 7171 + "@nrwl/cli-14.7.6" = { 7145 7172 name = "_at_nrwl_slash_cli"; 7146 7173 packageName = "@nrwl/cli"; 7147 - version = "14.7.5"; 7174 + version = "14.7.6"; 7148 7175 src = fetchurl { 7149 - url = "https://registry.npmjs.org/@nrwl/cli/-/cli-14.7.5.tgz"; 7150 - sha512 = "hkkavBDHPZKuxG9q8bcib9/TYnTn13t8CaePjx1JvYqWTYblWVLrzlPhJKFC44Dkch+rtvZ/USs5Fih76se25g=="; 7176 + url = "https://registry.npmjs.org/@nrwl/cli/-/cli-14.7.6.tgz"; 7177 + sha512 = "AGGkBodn5+aPGVCMK/jOImYNf54mzEKBkWM56cYRcONP19bJcs9mWO7je4uAgiX79z5M37bic0e608MA2GLcbQ=="; 7151 7178 }; 7152 7179 }; 7153 - "@nrwl/tao-14.7.5" = { 7180 + "@nrwl/tao-14.7.6" = { 7154 7181 name = "_at_nrwl_slash_tao"; 7155 7182 packageName = "@nrwl/tao"; 7156 - version = "14.7.5"; 7183 + version = "14.7.6"; 7157 7184 src = fetchurl { 7158 - url = "https://registry.npmjs.org/@nrwl/tao/-/tao-14.7.5.tgz"; 7159 - sha512 = "MzfJMqVbiMitYjWXaL5/7dDKw1hDG7acciGeu5SyUX8J2J0ymKzXhqjshPvn/Ga1E9QtnMckd6aKmLlvochVag=="; 7185 + url = "https://registry.npmjs.org/@nrwl/tao/-/tao-14.7.6.tgz"; 7186 + sha512 = "yiIjpMPDN7N2asrIYPsoQMY9HZmBE9m0/EQCu9dWtmevYSMygbaEFEBO8hkNG+clvylWOoUMBE4RfVOMYQRK3g=="; 7160 7187 }; 7161 7188 }; 7162 7189 "@oclif/command-1.8.0" = { ··· 7375 7402 sha512 = "VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ=="; 7376 7403 }; 7377 7404 }; 7378 - "@octokit/openapi-types-13.9.1" = { 7405 + "@octokit/openapi-types-13.12.0" = { 7379 7406 name = "_at_octokit_slash_openapi-types"; 7380 7407 packageName = "@octokit/openapi-types"; 7381 - version = "13.9.1"; 7408 + version = "13.12.0"; 7382 7409 src = fetchurl { 7383 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-13.9.1.tgz"; 7384 - sha512 = "98zOxAAR8MDHjXI2xGKgn/qkZLwfcNjHka0baniuEpN1fCv3kDJeh5qc0mBwim5y31eaPaYer9QikzwOkQq3wQ=="; 7410 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-13.12.0.tgz"; 7411 + sha512 = "1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ=="; 7385 7412 }; 7386 7413 }; 7387 7414 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 7402 7429 sha512 = "aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw=="; 7403 7430 }; 7404 7431 }; 7405 - "@octokit/plugin-paginate-rest-4.2.3" = { 7432 + "@octokit/plugin-paginate-rest-4.3.1" = { 7406 7433 name = "_at_octokit_slash_plugin-paginate-rest"; 7407 7434 packageName = "@octokit/plugin-paginate-rest"; 7408 - version = "4.2.3"; 7435 + version = "4.3.1"; 7409 7436 src = fetchurl { 7410 - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-4.2.3.tgz"; 7411 - sha512 = "1RXJZ7hnxSANMtxKSVIEByjhYqqlu2GaKmLJJE/OVDya1aI++hdmXP4ORCUlsN2rt4hJzRYbWizBHlGYKz3dhQ=="; 7437 + url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-4.3.1.tgz"; 7438 + sha512 = "h8KKxESmSFTcXX409CAxlaOYscEDvN2KGQRsLCGT1NSqRW+D6EXLVQ8vuHhFznS9MuH9QYw1GfsUN30bg8hjVA=="; 7412 7439 }; 7413 7440 }; 7414 7441 "@octokit/plugin-request-log-1.0.4" = { ··· 7429 7456 sha512 = "8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw=="; 7430 7457 }; 7431 7458 }; 7432 - "@octokit/plugin-rest-endpoint-methods-6.5.2" = { 7459 + "@octokit/plugin-rest-endpoint-methods-6.6.2" = { 7433 7460 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 7434 7461 packageName = "@octokit/plugin-rest-endpoint-methods"; 7435 - version = "6.5.2"; 7462 + version = "6.6.2"; 7436 7463 src = fetchurl { 7437 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.5.2.tgz"; 7438 - sha512 = "zUscUePMC3KEKyTAfuG/dA6hw4Yn7CncVJs2kM9xc4931Iqk3ZiwHfVwTUnxkqQJIVgeBRYUk3rM4hMfgASUxg=="; 7464 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.6.2.tgz"; 7465 + sha512 = "n9dL5KMpz9qVFSNdcVWC8ZPbl68QbTk7+CMPXCXqaMZOLn1n1YuoSFFCy84Ge0fx333fUqpnBHv8BFjwGtUQkA=="; 7439 7466 }; 7440 7467 }; 7441 7468 "@octokit/plugin-retry-3.0.9" = { ··· 7519 7546 sha512 = "eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg=="; 7520 7547 }; 7521 7548 }; 7522 - "@octokit/types-7.3.1" = { 7549 + "@octokit/types-7.5.0" = { 7523 7550 name = "_at_octokit_slash_types"; 7524 7551 packageName = "@octokit/types"; 7525 - version = "7.3.1"; 7552 + version = "7.5.0"; 7526 7553 src = fetchurl { 7527 - url = "https://registry.npmjs.org/@octokit/types/-/types-7.3.1.tgz"; 7528 - sha512 = "Vefohn8pHGFYWbSc6du0wXMK/Pmy6h0H4lttBw5WqquEuxjdXwyYX07CeZpJDkzSzpdKxBoWRNuDJGTE+FvtqA=="; 7554 + url = "https://registry.npmjs.org/@octokit/types/-/types-7.5.0.tgz"; 7555 + sha512 = "aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw=="; 7529 7556 }; 7530 7557 }; 7531 7558 "@opencensus/core-0.0.8" = { ··· 8257 8284 sha512 = "uD2pAV0yV6+e7JaWH4KVPbG+zRCrxr/OACyS9tIh+Q/R1vRmh8zGM3yhdrcoiZ7tFOnM72vd6xY11eTrUsSVig=="; 8258 8285 }; 8259 8286 }; 8260 - "@parcel/source-map-2.1.0" = { 8287 + "@parcel/source-map-2.1.1" = { 8261 8288 name = "_at_parcel_slash_source-map"; 8262 8289 packageName = "@parcel/source-map"; 8263 - version = "2.1.0"; 8290 + version = "2.1.1"; 8264 8291 src = fetchurl { 8265 - url = "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz"; 8266 - sha512 = "E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ=="; 8292 + url = "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz"; 8293 + sha512 = "Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew=="; 8267 8294 }; 8268 8295 }; 8269 8296 "@parcel/transformer-babel-2.7.0" = { ··· 8734 8761 sha512 = "OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA=="; 8735 8762 }; 8736 8763 }; 8737 - "@redocly/ajv-8.6.5" = { 8764 + "@redocly/ajv-8.11.0" = { 8738 8765 name = "_at_redocly_slash_ajv"; 8739 8766 packageName = "@redocly/ajv"; 8740 - version = "8.6.5"; 8767 + version = "8.11.0"; 8741 8768 src = fetchurl { 8742 - url = "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.6.5.tgz"; 8743 - sha512 = "3P2TY/u4c6OBqkP+1cTH1iGAEv0O34PV3vV2Wnos/nNHu62OTrtC4zcaxttG0pHtPtn42StrhGq7SsiFgP4Bfw=="; 8769 + url = "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.0.tgz"; 8770 + sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw=="; 8744 8771 }; 8745 8772 }; 8746 - "@redocly/openapi-core-1.0.0-beta.108" = { 8773 + "@redocly/openapi-core-1.0.0-beta.109" = { 8747 8774 name = "_at_redocly_slash_openapi-core"; 8748 8775 packageName = "@redocly/openapi-core"; 8749 - version = "1.0.0-beta.108"; 8776 + version = "1.0.0-beta.109"; 8750 8777 src = fetchurl { 8751 - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.108.tgz"; 8752 - sha512 = "4Lq7KB+XiBvVzpaY/M0a8qog/Zr8kGrvJbRW2z7Sk2Zpc/m+8LTuZbRh15eMoneVc13M9qbHFIRh3PG18g3Tng=="; 8778 + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.109.tgz"; 8779 + sha512 = "yc2T1grxXmwWry+gd5dWGEfgZI+JY498314Jza6Pfx/v/39AuRQnVRAw174XthuLkzLyFxiupqhpqBDJAyNPLQ=="; 8753 8780 }; 8754 8781 }; 8755 8782 "@rollup/plugin-commonjs-20.0.0" = { ··· 8806 8833 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 8807 8834 }; 8808 8835 }; 8809 - "@schematics/angular-14.2.2" = { 8836 + "@schematics/angular-14.2.3" = { 8810 8837 name = "_at_schematics_slash_angular"; 8811 8838 packageName = "@schematics/angular"; 8812 - version = "14.2.2"; 8839 + version = "14.2.3"; 8813 8840 src = fetchurl { 8814 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.2.tgz"; 8815 - sha512 = "ExejSuQrkhVzcvq1MH1hSHufp2HUrrCSb0ol1JVlekIkq6H3A5839/8mDC6U/stRMo/gNz01sibBBJmQwH2h6Q=="; 8841 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.3.tgz"; 8842 + sha512 = "lHWeeWrhpyMwJRTK4RpFVptWZo5kTdI+bOOd+lZBTjOAs+PM8r9VXHzB6qhE6P2e3HsceXM59PonvekTUdOJtQ=="; 8816 8843 }; 8817 8844 }; 8818 8845 "@segment/loosely-validate-event-2.0.0" = { ··· 9391 9418 sha512 = "dzyuzvUjv3m1wmhPfq82lCVYGcXG0xUYgqnWfCq3PCVR4BKFhjdkHrnJ+jIDoMKvXb05AZP/ObQF6+NpDo29IQ=="; 9392 9419 }; 9393 9420 }; 9421 + "@stoplight/types-13.7.0" = { 9422 + name = "_at_stoplight_slash_types"; 9423 + packageName = "@stoplight/types"; 9424 + version = "13.7.0"; 9425 + src = fetchurl { 9426 + url = "https://registry.npmjs.org/@stoplight/types/-/types-13.7.0.tgz"; 9427 + sha512 = "7ePIccfTxjEhruv8VrkDv5whP5qd9ijRzAWEbjYpUYnDfaqPTfq8/wMMjMCAKIecboxsAVD9LZy/3puXddGsDQ=="; 9428 + }; 9429 + }; 9394 9430 "@stoplight/yaml-4.2.3" = { 9395 9431 name = "_at_stoplight_slash_yaml"; 9396 9432 packageName = "@stoplight/yaml"; ··· 9796 9832 sha512 = "G4yqdVlhr6YhzLXFKy5F7HtRBU8Y23+iWy7UKthMq/OSQnL1hbsoeXESQ2LY8zEDlknipDG3nRGhUC9tkwvy/w=="; 9797 9833 }; 9798 9834 }; 9835 + "@types/better-sqlite3-7.6.0" = { 9836 + name = "_at_types_slash_better-sqlite3"; 9837 + packageName = "@types/better-sqlite3"; 9838 + version = "7.6.0"; 9839 + src = fetchurl { 9840 + url = "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.6.0.tgz"; 9841 + sha512 = "rnSP9vY+fVsF3iJja5yRGBJV63PNBiezJlYrCkqUmQWFoB16cxAHwOkjsAYEu317miOfKaJpa65cbp0P4XJ/jw=="; 9842 + }; 9843 + }; 9799 9844 "@types/bn.js-5.1.1" = { 9800 9845 name = "_at_types_slash_bn.js"; 9801 9846 packageName = "@types/bn.js"; ··· 10111 10156 sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; 10112 10157 }; 10113 10158 }; 10159 + "@types/express-4.17.14" = { 10160 + name = "_at_types_slash_express"; 10161 + packageName = "@types/express"; 10162 + version = "4.17.14"; 10163 + src = fetchurl { 10164 + url = "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz"; 10165 + sha512 = "TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg=="; 10166 + }; 10167 + }; 10114 10168 "@types/express-serve-static-core-4.17.30" = { 10115 10169 name = "_at_types_slash_express-serve-static-core"; 10116 10170 packageName = "@types/express-serve-static-core"; ··· 10120 10174 sha512 = "gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ=="; 10121 10175 }; 10122 10176 }; 10177 + "@types/express-serve-static-core-4.17.31" = { 10178 + name = "_at_types_slash_express-serve-static-core"; 10179 + packageName = "@types/express-serve-static-core"; 10180 + version = "4.17.31"; 10181 + src = fetchurl { 10182 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz"; 10183 + sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q=="; 10184 + }; 10185 + }; 10123 10186 "@types/file-type-10.9.1" = { 10124 10187 name = "_at_types_slash_file-type"; 10125 10188 packageName = "@types/file-type"; ··· 10507 10570 sha512 = "o0K1tSO0Dx5X6xlU5F1D6625FawhC3dU3iqr25lluNv/+/QIVH8RLNEiVokgIZo+mz+87w/3Mkg/VvQS+J51fQ=="; 10508 10571 }; 10509 10572 }; 10510 - "@types/mocha-7.0.2" = { 10511 - name = "_at_types_slash_mocha"; 10512 - packageName = "@types/mocha"; 10513 - version = "7.0.2"; 10514 - src = fetchurl { 10515 - url = "https://registry.npmjs.org/@types/mocha/-/mocha-7.0.2.tgz"; 10516 - sha512 = "ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w=="; 10517 - }; 10518 - }; 10519 10573 "@types/mongodb-4.0.6" = { 10520 10574 name = "_at_types_slash_mongodb"; 10521 10575 packageName = "@types/mongodb"; ··· 10615 10669 sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg=="; 10616 10670 }; 10617 10671 }; 10618 - "@types/node-14.18.28" = { 10672 + "@types/node-14.18.29" = { 10619 10673 name = "_at_types_slash_node"; 10620 10674 packageName = "@types/node"; 10621 - version = "14.18.28"; 10675 + version = "14.18.29"; 10622 10676 src = fetchurl { 10623 - url = "https://registry.npmjs.org/@types/node/-/node-14.18.28.tgz"; 10624 - sha512 = "CK2fnrQlIgKlCV3N2kM+Gznb5USlwA1KFX3rJVHmgVk6NJxFPuQ86pAcvKnu37IA4BGlSRz7sEE1lHL1aLZ/eQ=="; 10677 + url = "https://registry.npmjs.org/@types/node/-/node-14.18.29.tgz"; 10678 + sha512 = "LhF+9fbIX4iPzhsRLpK5H7iPdvW8L4IwGciXQIOEcuF62+9nw/VQVsOViAOOGxY3OlOKGLFv0sWwJXdwQeTn6A=="; 10625 10679 }; 10626 10680 }; 10627 10681 "@types/node-15.14.9" = { ··· 10633 10687 sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A=="; 10634 10688 }; 10635 10689 }; 10636 - "@types/node-16.11.58" = { 10690 + "@types/node-16.11.59" = { 10637 10691 name = "_at_types_slash_node"; 10638 10692 packageName = "@types/node"; 10639 - version = "16.11.58"; 10693 + version = "16.11.59"; 10640 10694 src = fetchurl { 10641 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.58.tgz"; 10642 - sha512 = "uMVxJ111wpHzkx/vshZFb6Qni3BOMnlWLq7q9jrwej7Yw/KvjsEbpxCCxw+hLKxexFMc8YmpG8J9tnEe/rKsIg=="; 10695 + url = "https://registry.npmjs.org/@types/node/-/node-16.11.59.tgz"; 10696 + sha512 = "6u+36Dj3aDzhfBVUf/mfmc92OEdzQ2kx2jcXGdigfl70E/neV21ZHE6UCz4MDzTRcVqGAM27fk+DLXvyDsn3Jw=="; 10643 10697 }; 10644 10698 }; 10645 10699 "@types/node-16.11.6" = { ··· 10696 10750 sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA=="; 10697 10751 }; 10698 10752 }; 10699 - "@types/node-18.7.17" = { 10753 + "@types/node-18.7.18" = { 10700 10754 name = "_at_types_slash_node"; 10701 10755 packageName = "@types/node"; 10702 - version = "18.7.17"; 10756 + version = "18.7.18"; 10703 10757 src = fetchurl { 10704 - url = "https://registry.npmjs.org/@types/node/-/node-18.7.17.tgz"; 10705 - sha512 = "0UyfUnt02zIuqp7yC8RYtDkp/vo8bFaQ13KkSEvUAohPOAlnVNbj5Fi3fgPSuwzakS+EvvnnZ4x9y7i6ASaSPQ=="; 10758 + url = "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz"; 10759 + sha512 = "m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg=="; 10706 10760 }; 10707 10761 }; 10708 10762 "@types/node-6.14.13" = { ··· 10712 10766 src = fetchurl { 10713 10767 url = "https://registry.npmjs.org/@types/node/-/node-6.14.13.tgz"; 10714 10768 sha512 = "J1F0XJ/9zxlZel5ZlbeSuHW2OpabrUAqpFuC2sm2I3by8sERQ8+KCjNKUcq8QHuzpGMWiJpo9ZxeHrqrP2KzQw=="; 10715 - }; 10716 - }; 10717 - "@types/node-8.10.66" = { 10718 - name = "_at_types_slash_node"; 10719 - packageName = "@types/node"; 10720 - version = "8.10.66"; 10721 - src = fetchurl { 10722 - url = "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz"; 10723 - sha512 = "tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="; 10724 10769 }; 10725 10770 }; 10726 10771 "@types/node-fetch-2.6.2" = { ··· 10849 10894 sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA=="; 10850 10895 }; 10851 10896 }; 10852 - "@types/react-17.0.49" = { 10897 + "@types/react-17.0.50" = { 10853 10898 name = "_at_types_slash_react"; 10854 10899 packageName = "@types/react"; 10855 - version = "17.0.49"; 10900 + version = "17.0.50"; 10856 10901 src = fetchurl { 10857 - url = "https://registry.npmjs.org/@types/react/-/react-17.0.49.tgz"; 10858 - sha512 = "CCBPMZaPhcKkYUTqFs/hOWqKjPxhTEmnZWjlHHgIMop67DsXywf9B5Os9Hz8KSacjNOgIdnZVJamwl232uxoPg=="; 10902 + url = "https://registry.npmjs.org/@types/react/-/react-17.0.50.tgz"; 10903 + sha512 = "ZCBHzpDb5skMnc1zFXAXnL3l1FAdi+xZvwxK+PkglMmBrwjpp9nKaWuEvrGnSifCJmBFGxZOOFuwC6KH/s0NuA=="; 10859 10904 }; 10860 10905 }; 10861 10906 "@types/react-dom-17.0.17" = { ··· 11218 11263 sha512 = "ZfJck4M7nrGasfs4A4YbUoxis3Vu24cETw3DERsNYtDZmYSYtk6ljKexKFKhImO/ZmY6ZMsmegu2FPkXoUFImA=="; 11219 11264 }; 11220 11265 }; 11221 - "@types/vscode-1.71.0" = { 11222 - name = "_at_types_slash_vscode"; 11223 - packageName = "@types/vscode"; 11224 - version = "1.71.0"; 11225 - src = fetchurl { 11226 - url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.71.0.tgz"; 11227 - sha512 = "nB50bBC9H/x2CpwW9FzRRRDrTZ7G0/POttJojvN/LiVfzTGfLyQIje1L1QRMdFXK9G41k5UJN/1B9S4of7CSzA=="; 11228 - }; 11229 - }; 11230 11266 "@types/webidl-conversions-7.0.0" = { 11231 11267 name = "_at_types_slash_webidl-conversions"; 11232 11268 packageName = "@types/webidl-conversions"; ··· 11371 11407 sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; 11372 11408 }; 11373 11409 }; 11374 - "@typescript-eslint/eslint-plugin-5.37.0" = { 11410 + "@typescript-eslint/eslint-plugin-5.38.0" = { 11375 11411 name = "_at_typescript-eslint_slash_eslint-plugin"; 11376 11412 packageName = "@typescript-eslint/eslint-plugin"; 11377 - version = "5.37.0"; 11413 + version = "5.38.0"; 11378 11414 src = fetchurl { 11379 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.37.0.tgz"; 11380 - sha512 = "Fde6W0IafXktz1UlnhGkrrmnnGpAo1kyX7dnyHHVrmwJOn72Oqm3eYtddrpOwwel2W8PAK9F3pIL5S+lfoM0og=="; 11415 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.38.0.tgz"; 11416 + sha512 = "GgHi/GNuUbTOeoJiEANi0oI6fF3gBQc3bGFYj40nnAPCbhrtEDf2rjBmefFadweBmO1Du1YovHeDP2h5JLhtTQ=="; 11381 11417 }; 11382 11418 }; 11383 11419 "@typescript-eslint/experimental-utils-4.33.0" = { ··· 11398 11434 sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; 11399 11435 }; 11400 11436 }; 11401 - "@typescript-eslint/parser-5.37.0" = { 11437 + "@typescript-eslint/parser-5.38.0" = { 11402 11438 name = "_at_typescript-eslint_slash_parser"; 11403 11439 packageName = "@typescript-eslint/parser"; 11404 - version = "5.37.0"; 11440 + version = "5.38.0"; 11405 11441 src = fetchurl { 11406 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.37.0.tgz"; 11407 - sha512 = "01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw=="; 11442 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.38.0.tgz"; 11443 + sha512 = "/F63giJGLDr0ms1Cr8utDAxP2SPiglaD6V+pCOcG35P2jCqdfR7uuEhz1GIC3oy4hkUF8xA1XSXmd9hOh/a5EA=="; 11408 11444 }; 11409 11445 }; 11410 11446 "@typescript-eslint/scope-manager-4.33.0" = { ··· 11416 11452 sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; 11417 11453 }; 11418 11454 }; 11419 - "@typescript-eslint/scope-manager-5.37.0" = { 11455 + "@typescript-eslint/scope-manager-5.38.0" = { 11420 11456 name = "_at_typescript-eslint_slash_scope-manager"; 11421 11457 packageName = "@typescript-eslint/scope-manager"; 11422 - version = "5.37.0"; 11458 + version = "5.38.0"; 11423 11459 src = fetchurl { 11424 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz"; 11425 - sha512 = "F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q=="; 11460 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.38.0.tgz"; 11461 + sha512 = "ByhHIuNyKD9giwkkLqzezZ9y5bALW8VNY6xXcP+VxoH4JBDKjU5WNnsiD4HJdglHECdV+lyaxhvQjTUbRboiTA=="; 11426 11462 }; 11427 11463 }; 11428 - "@typescript-eslint/type-utils-5.37.0" = { 11464 + "@typescript-eslint/type-utils-5.38.0" = { 11429 11465 name = "_at_typescript-eslint_slash_type-utils"; 11430 11466 packageName = "@typescript-eslint/type-utils"; 11431 - version = "5.37.0"; 11467 + version = "5.38.0"; 11432 11468 src = fetchurl { 11433 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.37.0.tgz"; 11434 - sha512 = "BSx/O0Z0SXOF5tY0bNTBcDEKz2Ec20GVYvq/H/XNKiUorUFilH7NPbFUuiiyzWaSdN3PA8JV0OvYx0gH/5aFAQ=="; 11469 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.38.0.tgz"; 11470 + sha512 = "iZq5USgybUcj/lfnbuelJ0j3K9dbs1I3RICAJY9NZZpDgBYXmuUlYQGzftpQA9wC8cKgtS6DASTvF3HrXwwozA=="; 11435 11471 }; 11436 11472 }; 11437 11473 "@typescript-eslint/types-3.10.1" = { ··· 11452 11488 sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; 11453 11489 }; 11454 11490 }; 11455 - "@typescript-eslint/types-5.37.0" = { 11491 + "@typescript-eslint/types-5.38.0" = { 11456 11492 name = "_at_typescript-eslint_slash_types"; 11457 11493 packageName = "@typescript-eslint/types"; 11458 - version = "5.37.0"; 11494 + version = "5.38.0"; 11459 11495 src = fetchurl { 11460 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz"; 11461 - sha512 = "3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA=="; 11496 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.38.0.tgz"; 11497 + sha512 = "HHu4yMjJ7i3Cb+8NUuRCdOGu2VMkfmKyIJsOr9PfkBVYLYrtMCK/Ap50Rpov+iKpxDTfnqvDbuPLgBE5FwUNfA=="; 11462 11498 }; 11463 11499 }; 11464 11500 "@typescript-eslint/typescript-estree-3.10.1" = { ··· 11479 11515 sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; 11480 11516 }; 11481 11517 }; 11482 - "@typescript-eslint/typescript-estree-5.37.0" = { 11518 + "@typescript-eslint/typescript-estree-5.38.0" = { 11483 11519 name = "_at_typescript-eslint_slash_typescript-estree"; 11484 11520 packageName = "@typescript-eslint/typescript-estree"; 11485 - version = "5.37.0"; 11521 + version = "5.38.0"; 11486 11522 src = fetchurl { 11487 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz"; 11488 - sha512 = "JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA=="; 11523 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.38.0.tgz"; 11524 + sha512 = "6P0RuphkR+UuV7Avv7MU3hFoWaGcrgOdi8eTe1NwhMp2/GjUJoODBTRWzlHpZh6lFOaPmSvgxGlROa0Sg5Zbyg=="; 11489 11525 }; 11490 11526 }; 11491 - "@typescript-eslint/utils-5.37.0" = { 11527 + "@typescript-eslint/utils-5.38.0" = { 11492 11528 name = "_at_typescript-eslint_slash_utils"; 11493 11529 packageName = "@typescript-eslint/utils"; 11494 - version = "5.37.0"; 11530 + version = "5.38.0"; 11495 11531 src = fetchurl { 11496 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.37.0.tgz"; 11497 - sha512 = "jUEJoQrWbZhmikbcWSMDuUSxEE7ID2W/QCV/uz10WtQqfOuKZUqFGjqLJ+qhDd17rjgp+QJPqTdPIBWwoob2NQ=="; 11532 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.38.0.tgz"; 11533 + sha512 = "6sdeYaBgk9Fh7N2unEXGz+D+som2QCQGPAf1SxrkEr+Z32gMreQ0rparXTNGRRfYUWk/JzbGdcM8NSSd6oqnTA=="; 11498 11534 }; 11499 11535 }; 11500 11536 "@typescript-eslint/visitor-keys-3.10.1" = { ··· 11515 11551 sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; 11516 11552 }; 11517 11553 }; 11518 - "@typescript-eslint/visitor-keys-5.37.0" = { 11554 + "@typescript-eslint/visitor-keys-5.38.0" = { 11519 11555 name = "_at_typescript-eslint_slash_visitor-keys"; 11520 11556 packageName = "@typescript-eslint/visitor-keys"; 11521 - version = "5.37.0"; 11557 + version = "5.38.0"; 11522 11558 src = fetchurl { 11523 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz"; 11524 - sha512 = "Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA=="; 11559 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.38.0.tgz"; 11560 + sha512 = "MxnrdIyArnTi+XyFLR+kt/uNAcdOnmT+879os7qDRI+EYySR4crXJq9BXPfRzzLGq0wgxkwidrCJ9WCAoacm1w=="; 11525 11561 }; 11526 11562 }; 11527 11563 "@ungap/promise-all-settled-1.1.2" = { ··· 12404 12440 src = fetchurl { 12405 12441 url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.4.3.tgz"; 12406 12442 sha512 = "+NzflVRaWl48Jdjq7FOxkmb8wLpSWtk6XKAEMfr/yDOqJS7HWxA+Rc5rTVqh2IRi6QZJyKGoaGKjOAqrGq07nA=="; 12443 + }; 12444 + }; 12445 + "@withgraphite/graphite-cli-routes-0.22.0" = { 12446 + name = "_at_withgraphite_slash_graphite-cli-routes"; 12447 + packageName = "@withgraphite/graphite-cli-routes"; 12448 + version = "0.22.0"; 12449 + src = fetchurl { 12450 + url = "https://registry.npmjs.org/@withgraphite/graphite-cli-routes/-/graphite-cli-routes-0.22.0.tgz"; 12451 + sha512 = "0LqJ2UMyGkZgP/cp4x89nKibX8r/XMgC+G4Xhobxq34gSOrihqHQjEvPeTiVgjX4MsH7340v8cE2y5pKX6m0aA=="; 12452 + }; 12453 + }; 12454 + "@withgraphite/retype-0.3.13" = { 12455 + name = "_at_withgraphite_slash_retype"; 12456 + packageName = "@withgraphite/retype"; 12457 + version = "0.3.13"; 12458 + src = fetchurl { 12459 + url = "https://registry.npmjs.org/@withgraphite/retype/-/retype-0.3.13.tgz"; 12460 + sha512 = "jGhsyvjRdZCMeOQ+NiNij/zd2FXRyoOCGoJnRT0lg35jfW55ikRPpQ5zOSbbW0H78UPpyz7X97NAKxa8uVBtVg=="; 12461 + }; 12462 + }; 12463 + "@withgraphite/retyped-routes-0.3.5" = { 12464 + name = "_at_withgraphite_slash_retyped-routes"; 12465 + packageName = "@withgraphite/retyped-routes"; 12466 + version = "0.3.5"; 12467 + src = fetchurl { 12468 + url = "https://registry.npmjs.org/@withgraphite/retyped-routes/-/retyped-routes-0.3.5.tgz"; 12469 + sha512 = "sm55SgyPGE5gYq9qGrixg3fho3ZOlA6DlHFfYfCS0zrV0piKtCYOuyQB7fiQa8jOM2f89ZBHzlEr3JQmJTTaCA=="; 12407 12470 }; 12408 12471 }; 12409 12472 "@xmldom/xmldom-0.7.5" = { ··· 15538 15601 sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw=="; 15539 15602 }; 15540 15603 }; 15541 - "aws-sdk-2.1214.0" = { 15604 + "aws-sdk-2.1218.0" = { 15542 15605 name = "aws-sdk"; 15543 15606 packageName = "aws-sdk"; 15544 - version = "2.1214.0"; 15607 + version = "2.1218.0"; 15545 15608 src = fetchurl { 15546 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1214.0.tgz"; 15547 - sha512 = "50WxqYgEDB5UxwPJ0IDFWXe3ipAHhHmqfRnMNaQaZhb2aJpprbT7c0zic8AH9E1xJ9s+6QkhYrwQf/vXEHnLwg=="; 15609 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1218.0.tgz"; 15610 + sha512 = "oreF2jKfUZ8VKnIKh8TrOOOsdSfv87jHGtWQNAHdvfeyrYK5FrnvGkHUZ3bu6g6u1gHwu5FhTPiRMbgS8Re+NA=="; 15548 15611 }; 15549 15612 }; 15550 15613 "aws-sign2-0.6.0" = { ··· 15664 15727 sha512 = "RK2cLMgIsAQBDhlIsJR5dOhODPigvel18XUv1dDXW+4k1FzebyfRk+C+orot6WPZOYFKSfhLwHPwVmTVOODQ5w=="; 15665 15728 }; 15666 15729 }; 15667 - "azure-devops-node-api-10.2.2" = { 15668 - name = "azure-devops-node-api"; 15669 - packageName = "azure-devops-node-api"; 15670 - version = "10.2.2"; 15671 - src = fetchurl { 15672 - url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-10.2.2.tgz"; 15673 - sha512 = "4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow=="; 15674 - }; 15675 - }; 15676 15730 "azure-devops-node-api-11.2.0" = { 15677 15731 name = "azure-devops-node-api"; 15678 15732 packageName = "azure-devops-node-api"; ··· 15763 15817 sha512 = "8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q=="; 15764 15818 }; 15765 15819 }; 15766 - "babel-plugin-polyfill-corejs3-0.5.3" = { 15820 + "babel-plugin-polyfill-corejs3-0.6.0" = { 15767 15821 name = "babel-plugin-polyfill-corejs3"; 15768 15822 packageName = "babel-plugin-polyfill-corejs3"; 15769 - version = "0.5.3"; 15823 + version = "0.6.0"; 15770 15824 src = fetchurl { 15771 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz"; 15772 - sha512 = "zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw=="; 15825 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz"; 15826 + sha512 = "+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA=="; 15773 15827 }; 15774 15828 }; 15775 15829 "babel-plugin-polyfill-regenerator-0.4.1" = { ··· 17788 17842 sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="; 17789 17843 }; 17790 17844 }; 17791 - "browserslist-4.21.3" = { 17845 + "browserslist-4.21.4" = { 17792 17846 name = "browserslist"; 17793 17847 packageName = "browserslist"; 17794 - version = "4.21.3"; 17848 + version = "4.21.4"; 17795 17849 src = fetchurl { 17796 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz"; 17797 - sha512 = "898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ=="; 17850 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"; 17851 + sha512 = "CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="; 17798 17852 }; 17799 17853 }; 17800 17854 "brq-0.1.8" = { ··· 18590 18644 sha512 = "KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww=="; 18591 18645 }; 18592 18646 }; 18647 + "cacheable-request-10.1.2" = { 18648 + name = "cacheable-request"; 18649 + packageName = "cacheable-request"; 18650 + version = "10.1.2"; 18651 + src = fetchurl { 18652 + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.1.2.tgz"; 18653 + sha512 = "N7F4os5ZI+8mWHSbeJmxn+qimf5uK3WU53FD1b298XLGtOLPpSA/1xAchfP4NJlDwqgaviZ0SQfxTQD0K6lr9w=="; 18654 + }; 18655 + }; 18593 18656 "cacheable-request-2.1.4" = { 18594 18657 name = "cacheable-request"; 18595 18658 packageName = "cacheable-request"; ··· 18914 18977 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 18915 18978 }; 18916 18979 }; 18917 - "caniuse-lite-1.0.30001399" = { 18980 + "caniuse-lite-1.0.30001406" = { 18918 18981 name = "caniuse-lite"; 18919 18982 packageName = "caniuse-lite"; 18920 - version = "1.0.30001399"; 18983 + version = "1.0.30001406"; 18921 18984 src = fetchurl { 18922 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001399.tgz"; 18923 - sha512 = "4vQ90tMKS+FkvuVWS5/QY1+d805ODxZiKFzsU8o/RsVJz49ZSRR8EjykLJbqhzdPgadbX6wB538wOzle3JniRA=="; 18985 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001406.tgz"; 18986 + sha512 = "bWTlaXUy/rq0BBtYShc/jArYfBPjEV95euvZ8JVtO43oQExEN/WquoqpufFjNu4kSpi5cy5kMbNvzztWDfv1Jg=="; 18924 18987 }; 18925 18988 }; 18926 18989 "canvas-2.10.1" = { ··· 19076 19139 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 19077 19140 }; 19078 19141 }; 19079 - "cdk8s-2.4.26" = { 19142 + "cdk8s-2.4.31" = { 19080 19143 name = "cdk8s"; 19081 19144 packageName = "cdk8s"; 19082 - version = "2.4.26"; 19145 + version = "2.4.31"; 19083 19146 src = fetchurl { 19084 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.4.26.tgz"; 19085 - sha512 = "9e+o7OcmXT3aTaGH3pVXwqrHJiyhYngPRJDDrDiKhBeeUHXFME++QNK9S6dJOJSMymSLwWBciIPTkW/1oZyibQ=="; 19147 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.4.31.tgz"; 19148 + sha512 = "9e2woEAlHoVkTCXhet69vfReOrr5ocjEWv8+bCDnXkdLwuE8u/weyDo8jQMu5krYBSU4n2LzSAilvkBxaIyW2w=="; 19086 19149 }; 19087 19150 }; 19088 - "cdk8s-plus-22-2.0.0-rc.111" = { 19151 + "cdk8s-plus-22-2.0.0-rc.123" = { 19089 19152 name = "cdk8s-plus-22"; 19090 19153 packageName = "cdk8s-plus-22"; 19091 - version = "2.0.0-rc.111"; 19154 + version = "2.0.0-rc.123"; 19092 19155 src = fetchurl { 19093 - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.111.tgz"; 19094 - sha512 = "KOdjsd/04OeFBEygf8U6FOIffs+ziTXjpJks2wYa5j3ed2dwUAyOmD3LLb70Drm9M2kNNG0Mpuzy42qGPyjK7A=="; 19156 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.123.tgz"; 19157 + sha512 = "EGfDqx7/rRfFU8TdsnscB9HRBoviJayv1LU77AXNxdZkWXnN9sNB6rpOX+nAp32yZ5iIJU2X7l+EZWTtg+PDxg=="; 19095 19158 }; 19096 19159 }; 19097 19160 "cdktf-0.12.2" = { ··· 19589 19652 sha512 = "c4PR2egjNjI1um6bamCQ6bUNPDiyofNQruHvKgHQ4gDUP/ITSVSzNsiI5OWtHOsX323i5ha/kk4YmOZ1Ktg7KA=="; 19590 19653 }; 19591 19654 }; 19592 - "chokidar-3.5.1" = { 19593 - name = "chokidar"; 19594 - packageName = "chokidar"; 19595 - version = "3.5.1"; 19596 - src = fetchurl { 19597 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; 19598 - sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 19599 - }; 19600 - }; 19601 19655 "chokidar-3.5.3" = { 19602 19656 name = "chokidar"; 19603 19657 packageName = "chokidar"; ··· 20127 20181 src = fetchurl { 20128 20182 url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz"; 20129 20183 sha512 = "QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw=="; 20184 + }; 20185 + }; 20186 + "cli-table3-0.6.3" = { 20187 + name = "cli-table3"; 20188 + packageName = "cli-table3"; 20189 + version = "0.6.3"; 20190 + src = fetchurl { 20191 + url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz"; 20192 + sha512 = "w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg=="; 20130 20193 }; 20131 20194 }; 20132 20195 "cli-tableau-2.0.1" = { ··· 21767 21830 sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; 21768 21831 }; 21769 21832 }; 21770 - "constructs-10.1.101" = { 21833 + "constructs-10.1.106" = { 21771 21834 name = "constructs"; 21772 21835 packageName = "constructs"; 21773 - version = "10.1.101"; 21836 + version = "10.1.106"; 21774 21837 src = fetchurl { 21775 - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.101.tgz"; 21776 - sha512 = "aaSEs7bcPs8i+ekugb8bnBCKc9t+ef2SjGcQKRo6w/sO+STOjD+AgTddqkaAHTb5/nK1F9SAwpZXpz6bbVy/eQ=="; 21838 + url = "https://registry.npmjs.org/constructs/-/constructs-10.1.106.tgz"; 21839 + sha512 = "xcNB+/5jKk7+9w4pXe5jThpUEDDbhtWLeXlhy9GVdFa/tuasOVEiowZOZMjPvcXrujGgSkVleebo6ZNzvYyZug=="; 21777 21840 }; 21778 21841 }; 21779 21842 "consume-http-header-1.0.0" = { ··· 22389 22452 sha512 = "UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA=="; 22390 22453 }; 22391 22454 }; 22392 - "core-js-3.25.1" = { 22455 + "core-js-3.25.2" = { 22393 22456 name = "core-js"; 22394 22457 packageName = "core-js"; 22395 - version = "3.25.1"; 22458 + version = "3.25.2"; 22396 22459 src = fetchurl { 22397 - url = "https://registry.npmjs.org/core-js/-/core-js-3.25.1.tgz"; 22398 - sha512 = "sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ=="; 22460 + url = "https://registry.npmjs.org/core-js/-/core-js-3.25.2.tgz"; 22461 + sha512 = "YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A=="; 22399 22462 }; 22400 22463 }; 22401 - "core-js-compat-3.25.1" = { 22464 + "core-js-compat-3.25.2" = { 22402 22465 name = "core-js-compat"; 22403 22466 packageName = "core-js-compat"; 22404 - version = "3.25.1"; 22467 + version = "3.25.2"; 22405 22468 src = fetchurl { 22406 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.1.tgz"; 22407 - sha512 = "pOHS7O0i8Qt4zlPW/eIFjwp+NrTPx+wTL0ctgI2fHn31sZOq89rDsmtc/A2vAX7r6shl+bmVI+678He46jgBlw=="; 22469 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.2.tgz"; 22470 + sha512 = "TxfyECD4smdn3/CjWxczVtJqVLEEC2up7/82t7vC0AzNogr+4nQ8vyF7abxAuTXWvjTClSbvGhU0RgqA4ToQaQ=="; 22408 22471 }; 22409 22472 }; 22410 - "core-js-pure-3.25.1" = { 22473 + "core-js-pure-3.25.2" = { 22411 22474 name = "core-js-pure"; 22412 22475 packageName = "core-js-pure"; 22413 - version = "3.25.1"; 22476 + version = "3.25.2"; 22414 22477 src = fetchurl { 22415 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz"; 22416 - sha512 = "7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A=="; 22478 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.2.tgz"; 22479 + sha512 = "ItD7YpW1cUB4jaqFLZXe1AXkyqIxz6GqPnsDV4uF4hVcWh/WAGIqSqw5p0/WdsILM0Xht9s3Koyw05R3K6RtiA=="; 22417 22480 }; 22418 22481 }; 22419 22482 "core-util-is-1.0.2" = { ··· 22524 22587 sha512 = "H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA=="; 22525 22588 }; 22526 22589 }; 22527 - "cosmiconfig-typescript-loader-4.0.0" = { 22590 + "cosmiconfig-typescript-loader-4.1.0" = { 22528 22591 name = "cosmiconfig-typescript-loader"; 22529 22592 packageName = "cosmiconfig-typescript-loader"; 22530 - version = "4.0.0"; 22593 + version = "4.1.0"; 22531 22594 src = fetchurl { 22532 - url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.0.0.tgz"; 22533 - sha512 = "cVpucSc2Tf+VPwCCR7SZzmQTQkPbkk4O01yXsYqXBIbjE1bhwqSyAgYQkRK1un4i0OPziTleqFhdkmOc4RQ/9g=="; 22595 + url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.1.0.tgz"; 22596 + sha512 = "HbWIuR5O+XO5Oj9SZ5bzgrD4nN+rfhrm2PMb0FVx+t+XIvC45n8F0oTNnztXtspWGw0i2IzHaUWFD5LzV1JB4A=="; 22534 22597 }; 22535 22598 }; 22536 22599 "count-trailing-zeros-1.0.1" = { ··· 22929 22992 sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; 22930 22993 }; 22931 22994 }; 22932 - "cspell-gitignore-6.8.2" = { 22995 + "cspell-gitignore-6.10.0" = { 22933 22996 name = "cspell-gitignore"; 22934 22997 packageName = "cspell-gitignore"; 22935 - version = "6.8.2"; 22998 + version = "6.10.0"; 22936 22999 src = fetchurl { 22937 - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.8.2.tgz"; 22938 - sha512 = "JoU/rGeGrjSqOMvY5q+bloxtO5Y8QLpJEEIAvHHZ+oTOlExZ/CIAYnO6X3lC6ylNRYc1+I2KEOFa6R0+0OSdVQ=="; 23000 + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.10.0.tgz"; 23001 + sha512 = "1vmY1OwKaq8Pp6u4SxzNaKAo5gSbinbMid56OzcMODC1k1aX5VlyXlOBvnct0Al4mH2pw7MswhihePFlmiHScQ=="; 22939 23002 }; 22940 23003 }; 22941 - "cspell-glob-6.8.2" = { 23004 + "cspell-glob-6.10.0" = { 22942 23005 name = "cspell-glob"; 22943 23006 packageName = "cspell-glob"; 22944 - version = "6.8.2"; 23007 + version = "6.10.0"; 22945 23008 src = fetchurl { 22946 - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.8.2.tgz"; 22947 - sha512 = "FKy2EIdQKO9b/vP0r8yqxtGQNA8M48DkwMSjW2mN1Qku5wRT8SPByKg87BjK4oztlIiQJoJ6+8OTrWnJwdbpQw=="; 23009 + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.10.0.tgz"; 23010 + sha512 = "x3sbn4gz/NpTkbUx3xgaoF9hdl7oYYAKibmQ1Pp+S3t1TkOxfro2YkiyzdYsp2CJm4wzgr3Yh/cq8BAXVAg4Mw=="; 22948 23011 }; 22949 23012 }; 22950 - "cspell-grammar-6.8.2" = { 23013 + "cspell-grammar-6.10.0" = { 22951 23014 name = "cspell-grammar"; 22952 23015 packageName = "cspell-grammar"; 22953 - version = "6.8.2"; 23016 + version = "6.10.0"; 22954 23017 src = fetchurl { 22955 - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.8.2.tgz"; 22956 - sha512 = "RHvIsNRDlBYKddKAdob5XT2+odOiO3eJVaw/vt5+CRx1cJSjuaIOyHwXKH2Xl1ioUUhEb9Ew3pg7JktRdzKn5w=="; 23018 + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.10.0.tgz"; 23019 + sha512 = "cOq2MZVH/ORPXDufIOUBWfhn3+iuOsyxMazziTvMaNUrphEO59s71RszCj6UP+afcYApLHNV4WuZlEQ3oZ0C0w=="; 22957 23020 }; 22958 23021 }; 22959 - "cspell-io-6.8.2" = { 23022 + "cspell-io-6.10.0" = { 22960 23023 name = "cspell-io"; 22961 23024 packageName = "cspell-io"; 22962 - version = "6.8.2"; 23025 + version = "6.10.0"; 22963 23026 src = fetchurl { 22964 - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.8.2.tgz"; 22965 - sha512 = "QpdePUXD8fTM2XuZdeS5ygTeIW9pnaQhTVWBWGbnrYlMn5iV9Jo81dHheHw4InxQJUjhyS/CuxdNGfYZXGJuaQ=="; 23027 + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.10.0.tgz"; 23028 + sha512 = "YBSQalrru1yELA3pqlHmmEa0zkjf+EivzR3fmpHEGh0kP5w5ywNtF6ivGmObLAGcFeB64pL8MOGb7hOBrfhY9w=="; 22966 23029 }; 22967 23030 }; 22968 - "cspell-lib-6.8.2" = { 23031 + "cspell-lib-6.10.0" = { 22969 23032 name = "cspell-lib"; 22970 23033 packageName = "cspell-lib"; 22971 - version = "6.8.2"; 23034 + version = "6.10.0"; 22972 23035 src = fetchurl { 22973 - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.8.2.tgz"; 22974 - sha512 = "K7UoaKB3qzq5KVnKynQM0+v8+4aXAA0coBKA6tH5czY2KDeuJSUu14b9WM+nxrUbMOOvNuSv+NaYw5lryaMFsg=="; 23036 + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.10.0.tgz"; 23037 + sha512 = "pVq+1JTagLnDBDJOTisYKjPjpX/yP2Jz8/iQCGK+USlJGa0Zm/+JuhmiOTebiWurp41Q2Rn7a7udP3XIuHWKug=="; 22975 23038 }; 22976 23039 }; 22977 - "cspell-trie-lib-6.8.2" = { 23040 + "cspell-trie-lib-6.10.0" = { 22978 23041 name = "cspell-trie-lib"; 22979 23042 packageName = "cspell-trie-lib"; 22980 - version = "6.8.2"; 23043 + version = "6.10.0"; 22981 23044 src = fetchurl { 22982 - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.8.2.tgz"; 22983 - sha512 = "jaNszLtSQglpz1BKejQ4RBFyJVSsYHQGW+1Rj4Zm103OcL+g6r/E1lm/dIbX/1UC4pBrNamjcGzXtPOBZJtUeQ=="; 23045 + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.10.0.tgz"; 23046 + sha512 = "hYI13C3a53bV7/HGHqh7bFjha3UlNj6OlUSxkF9EOB6Gbwrn4ypZTtv8o96OjvE7VpE0xZ1EgviJ5bajibCadA=="; 22984 23047 }; 22985 23048 }; 22986 23049 "csrf-3.1.0" = { ··· 24522 24585 sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw=="; 24523 24586 }; 24524 24587 }; 24525 - "date-fns-2.29.2" = { 24588 + "date-fns-2.29.3" = { 24526 24589 name = "date-fns"; 24527 24590 packageName = "date-fns"; 24528 - version = "2.29.2"; 24591 + version = "2.29.3"; 24529 24592 src = fetchurl { 24530 - url = "https://registry.npmjs.org/date-fns/-/date-fns-2.29.2.tgz"; 24531 - sha512 = "0VNbwmWJDS/G3ySwFSJA3ayhbURMTJLtwM2DTxf9CWondCnh6DTNlO9JgRSq6ibf4eD0lfMJNBxUdEAHHix+bA=="; 24593 + url = "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz"; 24594 + sha512 = "dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA=="; 24532 24595 }; 24533 24596 }; 24534 24597 "date-format-1.2.0" = { ··· 24873 24936 sha512 = "ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg=="; 24874 24937 }; 24875 24938 }; 24876 - "decimal.js-10.4.0" = { 24939 + "decimal.js-10.4.1" = { 24877 24940 name = "decimal.js"; 24878 24941 packageName = "decimal.js"; 24879 - version = "10.4.0"; 24942 + version = "10.4.1"; 24880 24943 src = fetchurl { 24881 - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz"; 24882 - sha512 = "Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg=="; 24944 + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz"; 24945 + sha512 = "F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw=="; 24883 24946 }; 24884 24947 }; 24885 24948 "decimal.js-7.5.1" = { ··· 25449 25512 sha512 = "mePZbE0tyYlOj7hXrQNyvMVn2NI6/K0obP9uIxZC11iTZMhFtJVUG+O18yWOLUCsDeCIDFJnrXDUc4HRbBndWw=="; 25450 25513 }; 25451 25514 }; 25452 - "denodeify-1.2.1" = { 25453 - name = "denodeify"; 25454 - packageName = "denodeify"; 25455 - version = "1.2.1"; 25456 - src = fetchurl { 25457 - url = "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz"; 25458 - sha512 = "KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg=="; 25459 - }; 25460 - }; 25461 25515 "denque-1.5.1" = { 25462 25516 name = "denque"; 25463 25517 packageName = "denque"; ··· 27006 27060 sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 27007 27061 }; 27008 27062 }; 27009 - "electron-18.3.12" = { 27063 + "electron-18.3.13" = { 27010 27064 name = "electron"; 27011 27065 packageName = "electron"; 27012 - version = "18.3.12"; 27066 + version = "18.3.13"; 27013 27067 src = fetchurl { 27014 - url = "https://registry.npmjs.org/electron/-/electron-18.3.12.tgz"; 27015 - sha512 = "kSDLleNSF5OBuzbVSvhvAa4TIYaLkmJn1AOU6J6Yi9A7dXouyN3MNfLgcvLPjIX5Ak+QQ6r1WQFn0L5EpLLpKg=="; 27068 + url = "https://registry.npmjs.org/electron/-/electron-18.3.13.tgz"; 27069 + sha512 = "/VodC4W9O4xdv2Xlj1eXbeqaBuIs0rkD2jeNPB/C0g2sqwGNfa/OHmD0XZDo7E8tgyiAcc9AR7H4Gsh8T4otrQ=="; 27016 27070 }; 27017 27071 }; 27018 27072 "electron-notarize-1.2.1" = { ··· 27051 27105 sha512 = "FkEZNFViUem3P0RLYbZkUjC8LUFIK+wKq09GHoOITSJjfDAVQv964hwaNseTTWt58sITQX3/5fHNYcTefqaCWw=="; 27052 27106 }; 27053 27107 }; 27054 - "electron-to-chromium-1.4.248" = { 27108 + "electron-to-chromium-1.4.254" = { 27055 27109 name = "electron-to-chromium"; 27056 27110 packageName = "electron-to-chromium"; 27057 - version = "1.4.248"; 27111 + version = "1.4.254"; 27058 27112 src = fetchurl { 27059 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.248.tgz"; 27060 - sha512 = "qShjzEYpa57NnhbW2K+g+Fl+eNoDvQ7I+2MRwWnU6Z6F0HhXekzsECCLv+y2OJUsRodjqoSfwHkIX42VUFtUzg=="; 27113 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.254.tgz"; 27114 + sha512 = "Sh/7YsHqQYkA6ZHuHMy24e6TE4eX6KZVsZb9E/DvU1nQRIrH4BflO/4k+83tfdYvDl+MObvlqHPRICzEdC9c6Q=="; 27061 27115 }; 27062 27116 }; 27063 27117 "electrum-client-git+https://github.com/janoside/electrum-client" = { ··· 27953 28007 sha512 = "+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw=="; 27954 28008 }; 27955 28009 }; 27956 - "esbuild-0.14.54" = { 28010 + "esbuild-0.15.8" = { 27957 28011 name = "esbuild"; 27958 28012 packageName = "esbuild"; 27959 - version = "0.14.54"; 28013 + version = "0.15.8"; 27960 28014 src = fetchurl { 27961 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz"; 27962 - sha512 = "Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA=="; 28015 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.15.8.tgz"; 28016 + sha512 = "Remsk2dmr1Ia65sU+QasE6svJbsHe62lzR+CnjpUvbZ+uSYo1SitiOWPRfZQkCu82YWZBBKXiD/j0i//XWMZ+Q=="; 27963 28017 }; 27964 28018 }; 27965 28019 "esbuild-android-64-0.14.47" = { ··· 27980 28034 sha512 = "6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ=="; 27981 28035 }; 27982 28036 }; 27983 - "esbuild-android-64-0.14.54" = { 28037 + "esbuild-android-64-0.15.8" = { 27984 28038 name = "esbuild-android-64"; 27985 28039 packageName = "esbuild-android-64"; 27986 - version = "0.14.54"; 28040 + version = "0.15.8"; 27987 28041 src = fetchurl { 27988 - url = "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz"; 27989 - sha512 = "Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ=="; 28042 + url = "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.8.tgz"; 28043 + sha512 = "bVh8FIKOolF7/d4AMzt7xHlL0Ljr+mYKSHI39TJWDkybVWHdn6+4ODL3xZGHOxPpdRpitemXA1WwMKYBsw8dGw=="; 27990 28044 }; 27991 28045 }; 27992 28046 "esbuild-android-arm64-0.14.47" = { ··· 28007 28061 sha512 = "vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A=="; 28008 28062 }; 28009 28063 }; 28010 - "esbuild-android-arm64-0.14.54" = { 28064 + "esbuild-android-arm64-0.15.8" = { 28011 28065 name = "esbuild-android-arm64"; 28012 28066 packageName = "esbuild-android-arm64"; 28013 - version = "0.14.54"; 28067 + version = "0.15.8"; 28014 28068 src = fetchurl { 28015 - url = "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz"; 28016 - sha512 = "F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg=="; 28069 + url = "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.8.tgz"; 28070 + sha512 = "ReAMDAHuo0H1h9LxRabI6gwYPn8k6WiUeyxuMvx17yTrJO+SCnIfNc/TSPFvDwtK9MiyiKG/2dBYHouT/M0BXQ=="; 28017 28071 }; 28018 28072 }; 28019 28073 "esbuild-darwin-64-0.14.47" = { ··· 28034 28088 sha512 = "YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA=="; 28035 28089 }; 28036 28090 }; 28037 - "esbuild-darwin-64-0.14.54" = { 28091 + "esbuild-darwin-64-0.15.8" = { 28038 28092 name = "esbuild-darwin-64"; 28039 28093 packageName = "esbuild-darwin-64"; 28040 - version = "0.14.54"; 28094 + version = "0.15.8"; 28041 28095 src = fetchurl { 28042 - url = "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz"; 28043 - sha512 = "jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug=="; 28096 + url = "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.8.tgz"; 28097 + sha512 = "KaKcGfJ+yto7Fo5gAj3xwxHMd1fBIKatpCHK8znTJLVv+9+NN2/tIPBqA4w5rBwjX0UqXDeIE2v1xJP+nGEXgA=="; 28044 28098 }; 28045 28099 }; 28046 28100 "esbuild-darwin-arm64-0.14.47" = { ··· 28061 28115 sha512 = "juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow=="; 28062 28116 }; 28063 28117 }; 28064 - "esbuild-darwin-arm64-0.14.54" = { 28118 + "esbuild-darwin-arm64-0.15.8" = { 28065 28119 name = "esbuild-darwin-arm64"; 28066 28120 packageName = "esbuild-darwin-arm64"; 28067 - version = "0.14.54"; 28121 + version = "0.15.8"; 28068 28122 src = fetchurl { 28069 - url = "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz"; 28070 - sha512 = "OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw=="; 28123 + url = "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.8.tgz"; 28124 + sha512 = "8tjEaBgAKnXCkP7bhEJmEqdG9HEV6oLkF36BrMzpfW2rgaw0c48Zrxe+9RlfeGvs6gDF4w+agXyTjikzsS3izw=="; 28071 28125 }; 28072 28126 }; 28073 28127 "esbuild-freebsd-64-0.14.47" = { ··· 28088 28142 sha512 = "cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g=="; 28089 28143 }; 28090 28144 }; 28091 - "esbuild-freebsd-64-0.14.54" = { 28145 + "esbuild-freebsd-64-0.15.8" = { 28092 28146 name = "esbuild-freebsd-64"; 28093 28147 packageName = "esbuild-freebsd-64"; 28094 - version = "0.14.54"; 28148 + version = "0.15.8"; 28095 28149 src = fetchurl { 28096 - url = "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz"; 28097 - sha512 = "OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg=="; 28150 + url = "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.8.tgz"; 28151 + sha512 = "jaxcsGHYzn2L0/lffON2WfH4Nc+d/EwozVTP5K2v016zxMb5UQMhLoJzvLgBqHT1SG0B/mO+a+THnJCMVg15zw=="; 28098 28152 }; 28099 28153 }; 28100 28154 "esbuild-freebsd-arm64-0.14.47" = { ··· 28115 28169 sha512 = "TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg=="; 28116 28170 }; 28117 28171 }; 28118 - "esbuild-freebsd-arm64-0.14.54" = { 28172 + "esbuild-freebsd-arm64-0.15.8" = { 28119 28173 name = "esbuild-freebsd-arm64"; 28120 28174 packageName = "esbuild-freebsd-arm64"; 28121 - version = "0.14.54"; 28175 + version = "0.15.8"; 28122 28176 src = fetchurl { 28123 - url = "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz"; 28124 - sha512 = "sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q=="; 28177 + url = "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.8.tgz"; 28178 + sha512 = "2xp2UlljMvX8HExtcg7VHaeQk8OBU0CSl1j18B5CcZmSDkLF9p3utuMXIopG3a08fr9Hv+Dz6+seSXUow/G51w=="; 28125 28179 }; 28126 28180 }; 28127 28181 "esbuild-linux-32-0.14.47" = { ··· 28142 28196 sha512 = "RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w=="; 28143 28197 }; 28144 28198 }; 28145 - "esbuild-linux-32-0.14.54" = { 28199 + "esbuild-linux-32-0.15.8" = { 28146 28200 name = "esbuild-linux-32"; 28147 28201 packageName = "esbuild-linux-32"; 28148 - version = "0.14.54"; 28202 + version = "0.15.8"; 28149 28203 src = fetchurl { 28150 - url = "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz"; 28151 - sha512 = "1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw=="; 28204 + url = "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.8.tgz"; 28205 + sha512 = "9u1E54BRz1FQMl86iaHK146+4ID2KYNxL3trLZT4QLLx3M7Q9n4lGG3lrzqUatGR2cKy8c33b0iaCzsItZWkFg=="; 28152 28206 }; 28153 28207 }; 28154 28208 "esbuild-linux-64-0.14.47" = { ··· 28169 28223 sha512 = "dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA=="; 28170 28224 }; 28171 28225 }; 28172 - "esbuild-linux-64-0.14.54" = { 28226 + "esbuild-linux-64-0.15.8" = { 28173 28227 name = "esbuild-linux-64"; 28174 28228 packageName = "esbuild-linux-64"; 28175 - version = "0.14.54"; 28229 + version = "0.15.8"; 28176 28230 src = fetchurl { 28177 - url = "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz"; 28178 - sha512 = "EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg=="; 28231 + url = "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.8.tgz"; 28232 + sha512 = "4HxrsN9eUzJXdVGMTYA5Xler82FuZUu21bXKN42zcLHHNKCAMPUzD62I+GwDhsdgUBAUj0tRXDdsQHgaP6v0HA=="; 28179 28233 }; 28180 28234 }; 28181 28235 "esbuild-linux-arm-0.14.47" = { ··· 28196 28250 sha512 = "LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg=="; 28197 28251 }; 28198 28252 }; 28199 - "esbuild-linux-arm-0.14.54" = { 28253 + "esbuild-linux-arm-0.15.8" = { 28200 28254 name = "esbuild-linux-arm"; 28201 28255 packageName = "esbuild-linux-arm"; 28202 - version = "0.14.54"; 28256 + version = "0.15.8"; 28203 28257 src = fetchurl { 28204 - url = "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz"; 28205 - sha512 = "qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw=="; 28258 + url = "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.8.tgz"; 28259 + sha512 = "7DVBU9SFjX4+vBwt8tHsUCbE6Vvl6y6FQWHAgyw1lybC5gULqn/WnjHYHN2/LJaZRsDBvxWT4msEgwLGq1Wd3Q=="; 28206 28260 }; 28207 28261 }; 28208 28262 "esbuild-linux-arm64-0.14.47" = { ··· 28223 28277 sha512 = "D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw=="; 28224 28278 }; 28225 28279 }; 28226 - "esbuild-linux-arm64-0.14.54" = { 28280 + "esbuild-linux-arm64-0.15.8" = { 28227 28281 name = "esbuild-linux-arm64"; 28228 28282 packageName = "esbuild-linux-arm64"; 28229 - version = "0.14.54"; 28283 + version = "0.15.8"; 28230 28284 src = fetchurl { 28231 - url = "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz"; 28232 - sha512 = "WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig=="; 28285 + url = "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.8.tgz"; 28286 + sha512 = "1OCm7Aq0tEJT70PbxmHSGYDLYP8DKH8r4Nk7/XbVzWaduo9beCjGBB+tGZIHK6DdTQ3h00/4Tb/70YMH/bOtKg=="; 28233 28287 }; 28234 28288 }; 28235 28289 "esbuild-linux-mips64le-0.14.47" = { ··· 28250 28304 sha512 = "vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A=="; 28251 28305 }; 28252 28306 }; 28253 - "esbuild-linux-mips64le-0.14.54" = { 28307 + "esbuild-linux-mips64le-0.15.8" = { 28254 28308 name = "esbuild-linux-mips64le"; 28255 28309 packageName = "esbuild-linux-mips64le"; 28256 - version = "0.14.54"; 28310 + version = "0.15.8"; 28257 28311 src = fetchurl { 28258 - url = "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz"; 28259 - sha512 = "qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw=="; 28312 + url = "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.8.tgz"; 28313 + sha512 = "yeFoNPVFPEzZvFYBfUQNG2TjGRaCyV1E27OcOg4LOtnGrxb2wA+mkW3luckyv1CEyd00mpAg7UdHx8nlx3ghgA=="; 28260 28314 }; 28261 28315 }; 28262 28316 "esbuild-linux-ppc64le-0.14.47" = { ··· 28277 28331 sha512 = "xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ=="; 28278 28332 }; 28279 28333 }; 28280 - "esbuild-linux-ppc64le-0.14.54" = { 28334 + "esbuild-linux-ppc64le-0.15.8" = { 28281 28335 name = "esbuild-linux-ppc64le"; 28282 28336 packageName = "esbuild-linux-ppc64le"; 28283 - version = "0.14.54"; 28337 + version = "0.15.8"; 28284 28338 src = fetchurl { 28285 - url = "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz"; 28286 - sha512 = "j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ=="; 28339 + url = "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.8.tgz"; 28340 + sha512 = "CEyMMUUNabXibw8OSNmBXhOIGhnjNVl5Lpseiuf00iKN0V47oqDrbo4dsHz1wH62m49AR8iG8wpDlTqfYgKbtg=="; 28287 28341 }; 28288 28342 }; 28289 28343 "esbuild-linux-riscv64-0.14.47" = { ··· 28304 28358 sha512 = "syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA=="; 28305 28359 }; 28306 28360 }; 28307 - "esbuild-linux-riscv64-0.14.54" = { 28361 + "esbuild-linux-riscv64-0.15.8" = { 28308 28362 name = "esbuild-linux-riscv64"; 28309 28363 packageName = "esbuild-linux-riscv64"; 28310 - version = "0.14.54"; 28364 + version = "0.15.8"; 28311 28365 src = fetchurl { 28312 - url = "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz"; 28313 - sha512 = "y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg=="; 28366 + url = "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.8.tgz"; 28367 + sha512 = "OCGSOaspMUjexSCU8ZiA0UnV/NiRU+s2vIfEcAQWQ6u32R+2luyfh/4ZaY6jFbylJE07Esc/yRvb9Q5fXuClXA=="; 28314 28368 }; 28315 28369 }; 28316 28370 "esbuild-linux-s390x-0.14.47" = { ··· 28331 28385 sha512 = "kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw=="; 28332 28386 }; 28333 28387 }; 28334 - "esbuild-linux-s390x-0.14.54" = { 28388 + "esbuild-linux-s390x-0.15.8" = { 28335 28389 name = "esbuild-linux-s390x"; 28336 28390 packageName = "esbuild-linux-s390x"; 28337 - version = "0.14.54"; 28391 + version = "0.15.8"; 28338 28392 src = fetchurl { 28339 - url = "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz"; 28340 - sha512 = "zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA=="; 28393 + url = "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.8.tgz"; 28394 + sha512 = "RHdpdfxRTSrZXZJlFSLazFU4YwXLB5Rgf6Zr5rffqSsO4y9JybgtKO38bFwxZNlDXliYISXN/YROKrG9s7mZQA=="; 28341 28395 }; 28342 28396 }; 28343 28397 "esbuild-netbsd-64-0.14.47" = { ··· 28358 28412 sha512 = "ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A=="; 28359 28413 }; 28360 28414 }; 28361 - "esbuild-netbsd-64-0.14.54" = { 28415 + "esbuild-netbsd-64-0.15.8" = { 28362 28416 name = "esbuild-netbsd-64"; 28363 28417 packageName = "esbuild-netbsd-64"; 28364 - version = "0.14.54"; 28418 + version = "0.15.8"; 28365 28419 src = fetchurl { 28366 - url = "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz"; 28367 - sha512 = "PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w=="; 28420 + url = "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.8.tgz"; 28421 + sha512 = "VolFFRatBH09T5QMWhiohAWCOien1R1Uz9K0BRVVTBgBaVBt7eArsXTKxVhUgRf2vwu2c2SXkuP0r7HLG0eozw=="; 28368 28422 }; 28369 28423 }; 28370 28424 "esbuild-openbsd-64-0.14.47" = { ··· 28385 28439 sha512 = "7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA=="; 28386 28440 }; 28387 28441 }; 28388 - "esbuild-openbsd-64-0.14.54" = { 28442 + "esbuild-openbsd-64-0.15.8" = { 28389 28443 name = "esbuild-openbsd-64"; 28390 28444 packageName = "esbuild-openbsd-64"; 28391 - version = "0.14.54"; 28445 + version = "0.15.8"; 28392 28446 src = fetchurl { 28393 - url = "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz"; 28394 - sha512 = "Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw=="; 28447 + url = "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.8.tgz"; 28448 + sha512 = "HTAPlg+n4kUeE/isQxlCfsOz0xJGNoT5LJ9oYZWFKABfVf4Ycu7Zlf5ITgOnrdheTkz8JeL/gISIOCFAoOXrSA=="; 28395 28449 }; 28396 28450 }; 28397 28451 "esbuild-sunos-64-0.14.47" = { ··· 28412 28466 sha512 = "HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA=="; 28413 28467 }; 28414 28468 }; 28415 - "esbuild-sunos-64-0.14.54" = { 28469 + "esbuild-sunos-64-0.15.8" = { 28416 28470 name = "esbuild-sunos-64"; 28417 28471 packageName = "esbuild-sunos-64"; 28418 - version = "0.14.54"; 28472 + version = "0.15.8"; 28419 28473 src = fetchurl { 28420 - url = "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz"; 28421 - sha512 = "28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw=="; 28474 + url = "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.8.tgz"; 28475 + sha512 = "qMP/jR/FzcIOwKj+W+Lb+8Cfr8GZHbHUJxAPi7DUhNZMQ/6y7sOgRzlOSpRrbbUntrRZh0MqOyDhJ3Gpo6L1QA=="; 28476 + }; 28477 + }; 28478 + "esbuild-wasm-0.15.8" = { 28479 + name = "esbuild-wasm"; 28480 + packageName = "esbuild-wasm"; 28481 + version = "0.15.8"; 28482 + src = fetchurl { 28483 + url = "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.15.8.tgz"; 28484 + sha512 = "Y7uCl5RNO4URjlemjdx++ukVHEMt5s5AfMWYUnMiK4Sry+pPCvQIctzXq6r6FKCyGKjX6/NGMCqR2OX6aLxj0w=="; 28422 28485 }; 28423 28486 }; 28424 28487 "esbuild-windows-32-0.14.47" = { ··· 28439 28502 sha512 = "4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg=="; 28440 28503 }; 28441 28504 }; 28442 - "esbuild-windows-32-0.14.54" = { 28505 + "esbuild-windows-32-0.15.8" = { 28443 28506 name = "esbuild-windows-32"; 28444 28507 packageName = "esbuild-windows-32"; 28445 - version = "0.14.54"; 28508 + version = "0.15.8"; 28446 28509 src = fetchurl { 28447 - url = "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz"; 28448 - sha512 = "T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w=="; 28510 + url = "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.8.tgz"; 28511 + sha512 = "RKR1QHh4iWzjUhkP8Yqi75PPz/KS+b8zw3wUrzw6oAkj+iU5Qtyj61ZDaSG3Qf2vc6hTIUiPqVTqBH0NpXFNwg=="; 28449 28512 }; 28450 28513 }; 28451 28514 "esbuild-windows-64-0.14.47" = { ··· 28466 28529 sha512 = "HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA=="; 28467 28530 }; 28468 28531 }; 28469 - "esbuild-windows-64-0.14.54" = { 28532 + "esbuild-windows-64-0.15.8" = { 28470 28533 name = "esbuild-windows-64"; 28471 28534 packageName = "esbuild-windows-64"; 28472 - version = "0.14.54"; 28535 + version = "0.15.8"; 28473 28536 src = fetchurl { 28474 - url = "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz"; 28475 - sha512 = "AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ=="; 28537 + url = "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.8.tgz"; 28538 + sha512 = "ag9ptYrsizgsR+PQE8QKeMqnosLvAMonQREpLw4evA4FFgOBMLEat/dY/9txbpozTw9eEOYyD3a4cE9yTu20FA=="; 28476 28539 }; 28477 28540 }; 28478 28541 "esbuild-windows-arm64-0.14.47" = { ··· 28493 28556 sha512 = "JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g=="; 28494 28557 }; 28495 28558 }; 28496 - "esbuild-windows-arm64-0.14.54" = { 28559 + "esbuild-windows-arm64-0.15.8" = { 28497 28560 name = "esbuild-windows-arm64"; 28498 28561 packageName = "esbuild-windows-arm64"; 28499 - version = "0.14.54"; 28562 + version = "0.15.8"; 28500 28563 src = fetchurl { 28501 - url = "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz"; 28502 - sha512 = "M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg=="; 28564 + url = "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.8.tgz"; 28565 + sha512 = "dbpAb0VyPaUs9mgw65KRfQ9rqiWCHpNzrJusoPu+LpEoswosjt/tFxN7cd2l68AT4qWdBkzAjDLRon7uqMeWcg=="; 28503 28566 }; 28504 28567 }; 28505 28568 "esc-exit-3.0.0" = { ··· 29519 29582 sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; 29520 29583 }; 29521 29584 }; 29585 + "execa-6.1.0" = { 29586 + name = "execa"; 29587 + packageName = "execa"; 29588 + version = "6.1.0"; 29589 + src = fetchurl { 29590 + url = "https://registry.npmjs.org/execa/-/execa-6.1.0.tgz"; 29591 + sha512 = "QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA=="; 29592 + }; 29593 + }; 29522 29594 "execall-1.0.0" = { 29523 29595 name = "execall"; 29524 29596 packageName = "execall"; ··· 30509 30581 sha512 = "WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ=="; 30510 30582 }; 30511 30583 }; 30512 - "faunadb-4.6.0" = { 30584 + "faunadb-4.7.0" = { 30513 30585 name = "faunadb"; 30514 30586 packageName = "faunadb"; 30515 - version = "4.6.0"; 30587 + version = "4.7.0"; 30516 30588 src = fetchurl { 30517 - url = "https://registry.npmjs.org/faunadb/-/faunadb-4.6.0.tgz"; 30518 - sha512 = "lBCS9wOLIdoeQmhzFvNAXM9B4T3Ptv2HUf0RrPsC2LA1zPtTQFBtdhH7fvTlwRyUawIKDjs1wn5pk2o8g0Cylg=="; 30589 + url = "https://registry.npmjs.org/faunadb/-/faunadb-4.7.0.tgz"; 30590 + sha512 = "bX5c2n+lEOrdu1PbkSFpDUdE/PLQ2x6jZptY4fAwOF9hCw6DIvmfk1ZjLipWUswOvydvlku2/7O3imqXa557iw=="; 30519 30591 }; 30520 30592 }; 30521 30593 "faye-websocket-0.10.0" = { ··· 31418 31490 sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA=="; 31419 31491 }; 31420 31492 }; 31421 - "flow-parser-0.186.0" = { 31493 + "flow-parser-0.187.0" = { 31422 31494 name = "flow-parser"; 31423 31495 packageName = "flow-parser"; 31424 - version = "0.186.0"; 31496 + version = "0.187.0"; 31425 31497 src = fetchurl { 31426 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.186.0.tgz"; 31427 - sha512 = "QaPJczRxNc/yvp3pawws439VZ/vHGq+i1/mZ3bEdSaRy8scPgZgiWklSB6jN7y5NR9sfgL4GGIiBcMXTj3Opqg=="; 31498 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.187.0.tgz"; 31499 + sha512 = "wTOuvmW6YyrcqkuLggk/GeSl65R5KQPEbxh0eAfCvlwxp8X08r+5owgZjdbLf8/typZQl/cSJL6D9vVwCkzf3g=="; 31428 31500 }; 31429 31501 }; 31430 31502 "fluent-ffmpeg-2.1.2" = { ··· 31571 31643 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 31572 31644 }; 31573 31645 }; 31574 - "follow-redirects-1.15.1" = { 31646 + "follow-redirects-1.15.2" = { 31575 31647 name = "follow-redirects"; 31576 31648 packageName = "follow-redirects"; 31577 - version = "1.15.1"; 31649 + version = "1.15.2"; 31578 31650 src = fetchurl { 31579 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz"; 31580 - sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA=="; 31651 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 31652 + sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 31581 31653 }; 31582 31654 }; 31583 31655 "follow-redirects-1.5.10" = { ··· 33597 33669 sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ=="; 33598 33670 }; 33599 33671 }; 33600 - "globby-11.0.4" = { 33601 - name = "globby"; 33602 - packageName = "globby"; 33603 - version = "11.0.4"; 33604 - src = fetchurl { 33605 - url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 33606 - sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 33607 - }; 33608 - }; 33609 33672 "globby-11.1.0" = { 33610 33673 name = "globby"; 33611 33674 packageName = "globby"; ··· 33705 33768 sha512 = "5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA=="; 33706 33769 }; 33707 33770 }; 33708 - "gm-1.23.1" = { 33771 + "gm-1.24.0" = { 33709 33772 name = "gm"; 33710 33773 packageName = "gm"; 33711 - version = "1.23.1"; 33774 + version = "1.24.0"; 33712 33775 src = fetchurl { 33713 - url = "https://registry.npmjs.org/gm/-/gm-1.23.1.tgz"; 33714 - sha512 = "wYGVAa8/sh9ggF5qWoOs6eArcAgwEPkDNvf637jHRHkMUznvs7m/Q2vrc0KLN6B8px3nnRJqJcXK4mTK6lLFmg=="; 33776 + url = "https://registry.npmjs.org/gm/-/gm-1.24.0.tgz"; 33777 + sha512 = "HsB94GIi6D4KklPrcRtq85CUuQhgi292N7vOx00pBH95sKuuy9LfenL9UtqXV4XFU8AmP5EaIhYcCxYp9zjiGQ=="; 33715 33778 }; 33716 33779 }; 33717 33780 "goldengate-11.2.2" = { ··· 33894 33957 sha512 = "o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ=="; 33895 33958 }; 33896 33959 }; 33897 - "got-12.4.1" = { 33960 + "got-12.5.0" = { 33898 33961 name = "got"; 33899 33962 packageName = "got"; 33900 - version = "12.4.1"; 33963 + version = "12.5.0"; 33901 33964 src = fetchurl { 33902 - url = "https://registry.npmjs.org/got/-/got-12.4.1.tgz"; 33903 - sha512 = "Sz1ojLt4zGNkcftIyJKnulZT/yEDvifhUjccHA8QzOuTgPs/+njXYNMFE3jR4/2OODQSSbH8SdnoLCkbh41ieA=="; 33965 + url = "https://registry.npmjs.org/got/-/got-12.5.0.tgz"; 33966 + sha512 = "/Bneo/L6bLN1wDyJCeRZ3CLoixvwb9v3rE3IHulFSfTHwP85xSr4QatA8K0c6GlL5+mc4IZ57BzluNZJiXvHIg=="; 33904 33967 }; 33905 33968 }; 33906 33969 "got-3.3.1" = { ··· 34236 34299 sha512 = "sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag=="; 34237 34300 }; 34238 34301 }; 34239 - "graphql-ws-5.10.2" = { 34302 + "graphql-ws-5.11.1" = { 34240 34303 name = "graphql-ws"; 34241 34304 packageName = "graphql-ws"; 34242 - version = "5.10.2"; 34305 + version = "5.11.1"; 34243 34306 src = fetchurl { 34244 - url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.10.2.tgz"; 34245 - sha512 = "QnLz0hbpTkmp/ATKAA3Tsg9LFZjWtgrLMgxc3W9G+3+rxUtzcYLwQh4YbXELYcpCqo8zdQxmERAtIQSgq75LTw=="; 34307 + url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.11.1.tgz"; 34308 + sha512 = "AlOO/Gt0fXuSHXe/Weo6o3rIQVnH5MW7ophzeYzL+vYNlkf0NbWRJ6IIFgtSLcv9JpTlQdxSpB3t0SnM47/BHA=="; 34246 34309 }; 34247 34310 }; 34248 34311 "gray-matter-4.0.3" = { ··· 34279 34342 src = fetchurl { 34280 34343 url = "https://registry.npmjs.org/grouped-queue/-/grouped-queue-2.0.0.tgz"; 34281 34344 sha512 = "/PiFUa7WIsl48dUeCvhIHnwNmAAzlI/eHoJl0vu3nsFA366JleY7Ff8EVTplZu5kO0MIdZjKTTnzItL61ahbnw=="; 34282 - }; 34283 - }; 34284 - "growl-1.10.5" = { 34285 - name = "growl"; 34286 - packageName = "growl"; 34287 - version = "1.10.5"; 34288 - src = fetchurl { 34289 - url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; 34290 - sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="; 34291 34345 }; 34292 34346 }; 34293 34347 "growl-1.9.2" = { ··· 36180 36234 sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 36181 36235 }; 36182 36236 }; 36237 + "human-signals-3.0.1" = { 36238 + name = "human-signals"; 36239 + packageName = "human-signals"; 36240 + version = "3.0.1"; 36241 + src = fetchurl { 36242 + url = "https://registry.npmjs.org/human-signals/-/human-signals-3.0.1.tgz"; 36243 + sha512 = "rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ=="; 36244 + }; 36245 + }; 36183 36246 "humanize-0.0.9" = { 36184 36247 name = "humanize"; 36185 36248 packageName = "humanize"; ··· 36324 36387 sha512 = "acJLCk38YMfEPjBR/1vS13SFY7rBQLs9E5m1tSRnWc9UW3f+SZszgH+NP1fZRA1+O+CdG2eLGGmuUMJW52EwzQ=="; 36325 36388 }; 36326 36389 }; 36327 - "ibm-openapi-validator-0.83.3" = { 36390 + "ibm-openapi-validator-0.88.3" = { 36328 36391 name = "ibm-openapi-validator"; 36329 36392 packageName = "ibm-openapi-validator"; 36330 - version = "0.83.3"; 36393 + version = "0.88.3"; 36331 36394 src = fetchurl { 36332 - url = "https://registry.npmjs.org/ibm-openapi-validator/-/ibm-openapi-validator-0.83.3.tgz"; 36333 - sha512 = "ijbuMXpQX5WrVVGrGeZDouDFToKxzaDURDxkz2drJeU3aRIWtuLExXmtQx9vx1cFknMqoHIrDmUDNZrALjse4A=="; 36395 + url = "https://registry.npmjs.org/ibm-openapi-validator/-/ibm-openapi-validator-0.88.3.tgz"; 36396 + sha512 = "WHkkO5TXWSS12P8VybB04Stq+yFloMlHy2aVzcLAZo425PYIVMuIWhsH7zN9vwcZcOB/qAnWQ4T3PKn6wrcT+Q=="; 36334 36397 }; 36335 36398 }; 36336 36399 "iconv-lite-0.4.19" = { ··· 36882 36945 sha512 = "m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw=="; 36883 36946 }; 36884 36947 }; 36885 - "inflection-1.13.2" = { 36948 + "inflection-1.13.4" = { 36886 36949 name = "inflection"; 36887 36950 packageName = "inflection"; 36888 - version = "1.13.2"; 36951 + version = "1.13.4"; 36889 36952 src = fetchurl { 36890 - url = "https://registry.npmjs.org/inflection/-/inflection-1.13.2.tgz"; 36891 - sha512 = "cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw=="; 36953 + url = "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz"; 36954 + sha512 = "6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw=="; 36892 36955 }; 36893 36956 }; 36894 36957 "inflight-1.0.6" = { ··· 37935 37998 sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 37936 37999 }; 37937 38000 }; 37938 - "is-callable-1.2.5" = { 38001 + "is-callable-1.2.6" = { 37939 38002 name = "is-callable"; 37940 38003 packageName = "is-callable"; 37941 - version = "1.2.5"; 38004 + version = "1.2.6"; 37942 38005 src = fetchurl { 37943 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.5.tgz"; 37944 - sha512 = "ZIWRujF6MvYGkEuHMYtFRkL2wAtFw89EHfKlXrkPkjQZZRWeh9L1q3SV13NIfHnqxugjLvAOkEHx9mb1zcMnEw=="; 38006 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz"; 38007 + sha512 = "krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q=="; 37945 38008 }; 37946 38009 }; 37947 38010 "is-canonical-base64-1.1.1" = { ··· 40132 40195 sha512 = "BLv3oxhfET+w5fjPwq3PsAsxzi9i3qzU//HMpWVz0A6KplF86HdR9x2TGnv9DXhSUrO7LO8czUiTd3yb3mLSvg=="; 40133 40196 }; 40134 40197 }; 40135 - "js-yaml-4.0.0" = { 40136 - name = "js-yaml"; 40137 - packageName = "js-yaml"; 40138 - version = "4.0.0"; 40139 - src = fetchurl { 40140 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz"; 40141 - sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q=="; 40142 - }; 40143 - }; 40144 40198 "js-yaml-4.1.0" = { 40145 40199 name = "js-yaml"; 40146 40200 packageName = "js-yaml"; ··· 40249 40303 sha512 = "kYeYuos/pYp0V/V8VAoGnUc0va0UZjTjwCsldBFZNBrOi9Q5kUXrvsw6W5/lQllB7hKXBARC4HRk1Sfk4dPFtA=="; 40250 40304 }; 40251 40305 }; 40252 - "jsep-1.3.6" = { 40306 + "jsep-1.3.7" = { 40253 40307 name = "jsep"; 40254 40308 packageName = "jsep"; 40255 - version = "1.3.6"; 40309 + version = "1.3.7"; 40256 40310 src = fetchurl { 40257 - url = "https://registry.npmjs.org/jsep/-/jsep-1.3.6.tgz"; 40258 - sha512 = "o7fP1eZVROIChADx7HKiwGRVI0tUqgUUGhaok6DP7cMxpDeparuooREDBDeNk2G5KIB49MBSkRYsCOu4PmZ+1w=="; 40311 + url = "https://registry.npmjs.org/jsep/-/jsep-1.3.7.tgz"; 40312 + sha512 = "NFbZTr1t13fPKw53swmZFKwBkEDWDnno7uLJk+a+Rw9tGDTkGgnGdZJ8A/o3gR1+XaAXmSsbpfIBIBgqRBZWDA=="; 40259 40313 }; 40260 40314 }; 40261 40315 "jsesc-0.5.0" = { ··· 40321 40375 sha512 = "hXUwB2NMZCsjDYItuLAoy6GAUDfUHzcPpC5vBjXC3ol33B7CI6OC8FxLj9wX/+aKweTuN1g51JIcYH5hM7jN6A=="; 40322 40376 }; 40323 40377 }; 40324 - "jsii-srcmak-0.1.673" = { 40378 + "jsii-srcmak-0.1.679" = { 40325 40379 name = "jsii-srcmak"; 40326 40380 packageName = "jsii-srcmak"; 40327 - version = "0.1.673"; 40381 + version = "0.1.679"; 40328 40382 src = fetchurl { 40329 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.673.tgz"; 40330 - sha512 = "5rhN/8Fvqq1YkyQI2FnrbnZ96GdRXnCr7DLww5dRNuqTGQKItsx4tDD/xKYQBlZzwABLvzMuOQdON5QuUbZQSA=="; 40383 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.679.tgz"; 40384 + sha512 = "RojB5VQ50ghFxKQB8XSuFaDvu0J1MY8NNhXDVhFdIETaPLqhlyDIjQog4LETIUAwqMmlsDSjdUmLJ1YvfvjU9g=="; 40331 40385 }; 40332 40386 }; 40333 40387 "json-bigint-1.0.0" = { ··· 40663 40717 sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 40664 40718 }; 40665 40719 }; 40666 - "json2jsii-0.3.121" = { 40720 + "json2jsii-0.3.127" = { 40667 40721 name = "json2jsii"; 40668 40722 packageName = "json2jsii"; 40669 - version = "0.3.121"; 40723 + version = "0.3.127"; 40670 40724 src = fetchurl { 40671 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.121.tgz"; 40672 - sha512 = "OIYlTYqRMefrNLDnQY3/idWUjCRGmY6B0wecbxIQVSYPQ9WMAuiJIzIkNiCruxkvQbRq9oqlJhh8siBkZ9Xl4Q=="; 40725 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.127.tgz"; 40726 + sha512 = "085FrWNc6ORaJU0uxgA+g82JQxpe7SZOfBKOSknYyerzIjrEe0srIJH7OgVwXk/d0E4w9eNeSbcJDwNdd4wrAw=="; 40673 40727 }; 40674 40728 }; 40675 40729 "json3-3.2.6" = { ··· 42283 42337 sha512 = "Rha4U1yZS/SHwW/GJ+IeEaxI6vqJ1bx/upQkY5RIZNCn4YoMvqd4inQUt9GNtuLy/pXus8Bms4DL2B9DkujBKQ=="; 42284 42338 }; 42285 42339 }; 42286 - "lightningcss-1.14.0" = { 42340 + "lightningcss-1.15.1" = { 42287 42341 name = "lightningcss"; 42288 42342 packageName = "lightningcss"; 42289 - version = "1.14.0"; 42343 + version = "1.15.1"; 42290 42344 src = fetchurl { 42291 - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.14.0.tgz"; 42292 - sha512 = "Vwa1JWiLGRLntf4TXRu/zF2RaHRfJjbZwUzkl2C4LhnRQzsEwkyeAQjAxtpJ5NDnVVUf10q1olEzkFF4AWZLOw=="; 42345 + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.15.1.tgz"; 42346 + sha512 = "d4fqKl8sqpdM27OsseAbKKxhD2otiu6stS7yWlm/DA7wOQAIDKMu/dke54cEN8ED19v9H2pEzMPGTsRfnq3Rdg=="; 42293 42347 }; 42294 42348 }; 42295 - "lightningcss-darwin-arm64-1.14.0" = { 42349 + "lightningcss-darwin-arm64-1.15.1" = { 42296 42350 name = "lightningcss-darwin-arm64"; 42297 42351 packageName = "lightningcss-darwin-arm64"; 42298 - version = "1.14.0"; 42352 + version = "1.15.1"; 42299 42353 src = fetchurl { 42300 - url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.14.0.tgz"; 42301 - sha512 = "AFt8Qs9Qjbg5AlB/3cYljanVEeyJI4C9bPqO8hI7bNa2HdDIINI4NgfGpri8BNwA3zcAlFPH38caIqcG3LWC+g=="; 42354 + url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.15.1.tgz"; 42355 + sha512 = "4bqe9OCWzj8gPgwzpDK7TPopIoKx9CQMPVN83/+T5LVLkh9sSS0ltZLjAFI399GIkC6idl6rguUQ5qPeq4yxsQ=="; 42302 42356 }; 42303 42357 }; 42304 - "lightningcss-darwin-x64-1.14.0" = { 42358 + "lightningcss-darwin-x64-1.15.1" = { 42305 42359 name = "lightningcss-darwin-x64"; 42306 42360 packageName = "lightningcss-darwin-x64"; 42307 - version = "1.14.0"; 42361 + version = "1.15.1"; 42308 42362 src = fetchurl { 42309 - url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.14.0.tgz"; 42310 - sha512 = "xF9YSNxHiAOyYp5/Ogo4K+SybcQExWUi+vkIGnpO6zQsQda7KFgJt2aA3AwaEj9ouf2yUHHKcsk2TiixlZTtTg=="; 42363 + url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.15.1.tgz"; 42364 + sha512 = "1W7kt2Nd0lPFkZ5VzieJfs/ePVADysM3FS33HcUUzktE52vWL2B6S4ntWibHj6Ccg/lDH5o6GiLcCYwpOPLHug=="; 42311 42365 }; 42312 42366 }; 42313 - "lightningcss-linux-arm-gnueabihf-1.14.0" = { 42367 + "lightningcss-linux-arm-gnueabihf-1.15.1" = { 42314 42368 name = "lightningcss-linux-arm-gnueabihf"; 42315 42369 packageName = "lightningcss-linux-arm-gnueabihf"; 42316 - version = "1.14.0"; 42370 + version = "1.15.1"; 42317 42371 src = fetchurl { 42318 - url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.14.0.tgz"; 42319 - sha512 = "8cH/qwZnoU3zIruVNWGLBDVm6f1w/ZC3eMDkFOTEF4FaW3jCpxEg/BH5r04lNUM/SO6Zu2C+vgJaEKdUm58dQg=="; 42372 + url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.15.1.tgz"; 42373 + sha512 = "8FijfM4HGJPCQPB9nAaTjdOE2PGQYE66t1wvV+SR915dEePn4yyRdCBJitlas5B6aTAE2AMwEuEl1i/pVDmkGw=="; 42320 42374 }; 42321 42375 }; 42322 - "lightningcss-linux-arm64-gnu-1.14.0" = { 42376 + "lightningcss-linux-arm64-gnu-1.15.1" = { 42323 42377 name = "lightningcss-linux-arm64-gnu"; 42324 42378 packageName = "lightningcss-linux-arm64-gnu"; 42325 - version = "1.14.0"; 42379 + version = "1.15.1"; 42326 42380 src = fetchurl { 42327 - url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.14.0.tgz"; 42328 - sha512 = "88NmNwTRa10MRDJa2DghZuGZq8rvFeZIm0G4k/oA2P5XaJJw7f6IhDEjCtBoruYOZhulBkEq2xQY+q0AWYMFcw=="; 42381 + url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.15.1.tgz"; 42382 + sha512 = "ZhCv3MlApRTIwszlNQ2t7FST7qK+M1iP6apTvOetPwDlzOMZ5dcH0a1453JPm4CwOSzHZ8079gnb5EqtU4+pjg=="; 42329 42383 }; 42330 42384 }; 42331 - "lightningcss-linux-arm64-musl-1.14.0" = { 42385 + "lightningcss-linux-arm64-musl-1.15.1" = { 42332 42386 name = "lightningcss-linux-arm64-musl"; 42333 42387 packageName = "lightningcss-linux-arm64-musl"; 42334 - version = "1.14.0"; 42388 + version = "1.15.1"; 42335 42389 src = fetchurl { 42336 - url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.14.0.tgz"; 42337 - sha512 = "8FSXmV7yPqk+1vErgdEO6OvDXDT/MkJMF+jSaUuL5wEvCC5yiJsaktNEJvn5EHsFbODi9DNvUt71sjeFCJma1w=="; 42390 + url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.15.1.tgz"; 42391 + sha512 = "cGhslFivvMLSIsesZbEaUurXRJMGUftHukiY5DjWtXkA2iIqqV7TyK3j6ZJPy76hlRKsjU/WO8CrabAvr6kmsw=="; 42338 42392 }; 42339 42393 }; 42340 - "lightningcss-linux-x64-gnu-1.14.0" = { 42394 + "lightningcss-linux-x64-gnu-1.15.1" = { 42341 42395 name = "lightningcss-linux-x64-gnu"; 42342 42396 packageName = "lightningcss-linux-x64-gnu"; 42343 - version = "1.14.0"; 42397 + version = "1.15.1"; 42344 42398 src = fetchurl { 42345 - url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.14.0.tgz"; 42346 - sha512 = "+dcNezLgUdAozcc6c0YSnZyRcOpro/yOOdy6ZjIwQtxej/5sEVJhXWbyHhdwSSlJssg/d+/7ihxEJIdZ8oDIfw=="; 42399 + url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.15.1.tgz"; 42400 + sha512 = "uVfUgRUjq7laAR9A027oqGPcq72Y/hPVEEqb9agWzNqYvZyT0VAqNxp9g2ncL//gOD1vTwQntcwDhrI5VE2PCw=="; 42347 42401 }; 42348 42402 }; 42349 - "lightningcss-linux-x64-musl-1.14.0" = { 42403 + "lightningcss-linux-x64-musl-1.15.1" = { 42350 42404 name = "lightningcss-linux-x64-musl"; 42351 42405 packageName = "lightningcss-linux-x64-musl"; 42352 - version = "1.14.0"; 42406 + version = "1.15.1"; 42353 42407 src = fetchurl { 42354 - url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.14.0.tgz"; 42355 - sha512 = "TI8tIaYv6SBpoBGatCG8gKQMxMCUcc+rvBSrqU7geHFBwzzyxOEHflENMclfwiYjTEM/HMdgJbWuHsIY3xvkuQ=="; 42408 + url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.15.1.tgz"; 42409 + sha512 = "n2cRPHxL57N+YMsBodF9HogieOicmlQVUCFM+RF0FOzayA8LdypacNWI3EDzbERWfkBAWtx2eLvV50DOJrkQdg=="; 42356 42410 }; 42357 42411 }; 42358 - "lightningcss-win32-x64-msvc-1.14.0" = { 42412 + "lightningcss-win32-x64-msvc-1.15.1" = { 42359 42413 name = "lightningcss-win32-x64-msvc"; 42360 42414 packageName = "lightningcss-win32-x64-msvc"; 42361 - version = "1.14.0"; 42415 + version = "1.15.1"; 42362 42416 src = fetchurl { 42363 - url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.14.0.tgz"; 42364 - sha512 = "l2H8GoDn+WJAENKrIgNgRunqP3gvyBQwBmFqIXpuxx9G6ll2aTlyQsvsVxzJWJ5ePl3atNRGFQO+ZkiTNSm71A=="; 42417 + url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.15.1.tgz"; 42418 + sha512 = "wHGJZnCmHU14cL3mmVNZm1yDz55m8EKxwPhACZTq+/QOvLMeIXQ4qLvNzdvtVL5KESPwz4hjYsYsSNCtpcTfOA=="; 42365 42419 }; 42366 42420 }; 42367 42421 "lilconfig-2.0.6" = { ··· 44216 44270 src = fetchurl { 44217 44271 url = "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz"; 44218 44272 sha512 = "dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ=="; 44219 - }; 44220 - }; 44221 - "log-symbols-4.0.0" = { 44222 - name = "log-symbols"; 44223 - packageName = "log-symbols"; 44224 - version = "4.0.0"; 44225 - src = fetchurl { 44226 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz"; 44227 - sha512 = "FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA=="; 44228 44273 }; 44229 44274 }; 44230 44275 "log-symbols-4.1.0" = { ··· 47018 47063 sha512 = "Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ=="; 47019 47064 }; 47020 47065 }; 47066 + "mimic-fn-4.0.0" = { 47067 + name = "mimic-fn"; 47068 + packageName = "mimic-fn"; 47069 + version = "4.0.0"; 47070 + src = fetchurl { 47071 + url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz"; 47072 + sha512 = "vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw=="; 47073 + }; 47074 + }; 47021 47075 "mimic-response-1.0.1" = { 47022 47076 name = "mimic-response"; 47023 47077 packageName = "mimic-response"; ··· 47043 47097 src = fetchurl { 47044 47098 url = "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"; 47045 47099 sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 47100 + }; 47101 + }; 47102 + "mimic-response-4.0.0" = { 47103 + name = "mimic-response"; 47104 + packageName = "mimic-response"; 47105 + version = "4.0.0"; 47106 + src = fetchurl { 47107 + url = "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz"; 47108 + sha512 = "e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg=="; 47046 47109 }; 47047 47110 }; 47048 47111 "min-document-2.19.0" = { ··· 47099 47162 sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA=="; 47100 47163 }; 47101 47164 }; 47102 - "miniflare-2.8.2" = { 47165 + "miniflare-2.9.0" = { 47103 47166 name = "miniflare"; 47104 47167 packageName = "miniflare"; 47105 - version = "2.8.2"; 47168 + version = "2.9.0"; 47106 47169 src = fetchurl { 47107 - url = "https://registry.npmjs.org/miniflare/-/miniflare-2.8.2.tgz"; 47108 - sha512 = "t9/QeSSsUFuqafLVAPlmWmoG+egfJ99xtoOWw1C9Wt6nlXz9ox3y1TfAw06YUPp4xVHcQnHQcir7aL4QvRPgfw=="; 47170 + url = "https://registry.npmjs.org/miniflare/-/miniflare-2.9.0.tgz"; 47171 + sha512 = "HBGQ5Jj6sMU1B1hX6G3ML46ThtUvu1nvxgXjDDmhp2RhWKYj0XvcohW/nPPL/MTP1gpvfT880De9EHmobVsDsw=="; 47109 47172 }; 47110 47173 }; 47111 47174 "minilog-3.1.0" = { ··· 47558 47621 sha512 = "jNt2iEk9FPmZLzL+sm4FNyOIDYXf2wUU6L4Cc8OIKK/kzgMHKPi4YhTZqG4bW4kQVdIv6wutDybRhXfdnujA1Q=="; 47559 47622 }; 47560 47623 }; 47561 - "mocha-8.4.0" = { 47562 - name = "mocha"; 47563 - packageName = "mocha"; 47564 - version = "8.4.0"; 47565 - src = fetchurl { 47566 - url = "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz"; 47567 - sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ=="; 47568 - }; 47569 - }; 47570 47624 "mock-require-3.0.3" = { 47571 47625 name = "mock-require"; 47572 47626 packageName = "mock-require"; ··· 47684 47738 sha512 = "uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg=="; 47685 47739 }; 47686 47740 }; 47687 - "mongodb-4.9.1" = { 47741 + "mongodb-4.10.0" = { 47688 47742 name = "mongodb"; 47689 47743 packageName = "mongodb"; 47690 - version = "4.9.1"; 47744 + version = "4.10.0"; 47691 47745 src = fetchurl { 47692 - url = "https://registry.npmjs.org/mongodb/-/mongodb-4.9.1.tgz"; 47693 - sha512 = "ZhgI/qBf84fD7sI4waZBoLBNJYPQN5IOC++SBCiPiyhzpNKOxN/fi0tBHvH2dEC42HXtNEbFB0zmNz4+oVtorQ=="; 47746 + url = "https://registry.npmjs.org/mongodb/-/mongodb-4.10.0.tgz"; 47747 + sha512 = "My2QxLTw0Cc1O9gih0mz4mqo145Jq4rLAQx0Glk/Ha9iYBzYpt4I2QFNRIh35uNFNfe8KFQcdwY1/HKxXBkinw=="; 47694 47748 }; 47695 47749 }; 47696 47750 "mongodb-connection-string-url-2.5.3" = { ··· 47936 47990 sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg=="; 47937 47991 }; 47938 47992 }; 47939 - "msgpackr-1.6.2" = { 47993 + "msgpackr-1.6.3" = { 47940 47994 name = "msgpackr"; 47941 47995 packageName = "msgpackr"; 47942 - version = "1.6.2"; 47996 + version = "1.6.3"; 47943 47997 src = fetchurl { 47944 - url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.6.2.tgz"; 47945 - sha512 = "bqSQ0DYJbXbrJcrZFmMygUZmqQiDfI2ewFVWcrZY12w5XHWtPuW4WppDT/e63Uu311ajwkRRXSoF0uILroBeTA=="; 47998 + url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.6.3.tgz"; 47999 + sha512 = "Wtwnt2W06wNOLzV3N0XLLAJCxpwlCfFpvSZAXsu+xf71X7KuqBEDhDSjAy9nwNhQ2aK74Rd1RiRln+62tffoXw=="; 47946 48000 }; 47947 48001 }; 47948 48002 "msgpackr-extract-2.1.2" = { ··· 48449 48503 sha512 = "s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA=="; 48450 48504 }; 48451 48505 }; 48452 - "nanoid-3.1.20" = { 48453 - name = "nanoid"; 48454 - packageName = "nanoid"; 48455 - version = "3.1.20"; 48456 - src = fetchurl { 48457 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz"; 48458 - sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw=="; 48459 - }; 48460 - }; 48461 48506 "nanoid-3.3.3" = { 48462 48507 name = "nanoid"; 48463 48508 packageName = "nanoid"; ··· 50016 50061 sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="; 50017 50062 }; 50018 50063 }; 50064 + "normalize-url-7.1.0" = { 50065 + name = "normalize-url"; 50066 + packageName = "normalize-url"; 50067 + version = "7.1.0"; 50068 + src = fetchurl { 50069 + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-7.1.0.tgz"; 50070 + sha512 = "JgkdydFdLe1E5Q7DpLvKVyBZOOwXYGhIbMbOMm3lJ06XKzaiit+qo1HciO3z3IFklStfarzJHVQf9ZcNPTvZlw=="; 50071 + }; 50072 + }; 50019 50073 "normalize.css-8.0.1" = { 50020 50074 name = "normalize.css"; 50021 50075 packageName = "normalize.css"; ··· 50340 50394 sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; 50341 50395 }; 50342 50396 }; 50397 + "npm-run-path-5.1.0" = { 50398 + name = "npm-run-path"; 50399 + packageName = "npm-run-path"; 50400 + version = "5.1.0"; 50401 + src = fetchurl { 50402 + url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz"; 50403 + sha512 = "sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q=="; 50404 + }; 50405 + }; 50343 50406 "npmconf-2.1.3" = { 50344 50407 name = "npmconf"; 50345 50408 packageName = "npmconf"; ··· 50394 50457 sha512 = "I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA=="; 50395 50458 }; 50396 50459 }; 50460 + "npx-import-1.1.3" = { 50461 + name = "npx-import"; 50462 + packageName = "npx-import"; 50463 + version = "1.1.3"; 50464 + src = fetchurl { 50465 + url = "https://registry.npmjs.org/npx-import/-/npx-import-1.1.3.tgz"; 50466 + sha512 = "zy6249FJ81OtPsvz2y0+rgis31EN5wbdwBG2umtEh65W/4onYArHuoUSZ+W+T7BQYK7YF+h9G4CuGPusMCcLOw=="; 50467 + }; 50468 + }; 50397 50469 "nssocket-0.6.0" = { 50398 50470 name = "nssocket"; 50399 50471 packageName = "nssocket"; ··· 50529 50601 sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw=="; 50530 50602 }; 50531 50603 }; 50532 - "nx-14.7.5" = { 50604 + "nx-14.7.6" = { 50533 50605 name = "nx"; 50534 50606 packageName = "nx"; 50535 - version = "14.7.5"; 50607 + version = "14.7.6"; 50536 50608 src = fetchurl { 50537 - url = "https://registry.npmjs.org/nx/-/nx-14.7.5.tgz"; 50538 - sha512 = "hp8TYk/t15MJVXQCafSduriZqoxR2zvw5mDHqg32Mjt2jFEFKaPWtaO5l/qKj+rlLE8cPYTeGL5qAS9WZkAWtg=="; 50609 + url = "https://registry.npmjs.org/nx/-/nx-14.7.6.tgz"; 50610 + sha512 = "G+QaLMdTtFsWTmVno89SP/5St40IGmFW5wgrIwDGSeosV91G6S0OpU0Yot0D1exgH7gYLh5tE45qGpXFpGGbww=="; 50539 50611 }; 50540 50612 }; 50541 50613 "nyc-15.1.0" = { ··· 51142 51214 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 51143 51215 }; 51144 51216 }; 51217 + "onetime-6.0.0" = { 51218 + name = "onetime"; 51219 + packageName = "onetime"; 51220 + version = "6.0.0"; 51221 + src = fetchurl { 51222 + url = "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz"; 51223 + sha512 = "1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ=="; 51224 + }; 51225 + }; 51145 51226 "only-0.0.2" = { 51146 51227 name = "only"; 51147 51228 packageName = "only"; ··· 51448 51529 sha512 = "TxhYBMoqx9frXyOgnRHufjQfPXomTIHYKhSKJ6jHfj13kS8OEIhvmE8CTuQyKtjjWttAjX5DPxM1vmalEpo8Qw=="; 51449 51530 }; 51450 51531 }; 51532 + "openapi3-ts-3.0.2" = { 51533 + name = "openapi3-ts"; 51534 + packageName = "openapi3-ts"; 51535 + version = "3.0.2"; 51536 + src = fetchurl { 51537 + url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.0.2.tgz"; 51538 + sha512 = "KF/06OkQPFSr9A+oadYYC3cIj8TZlzonREkQYFqx8i+wLllAxm6Bp8Fizo3jWXeIxZj/7V5LKtuNN/GxueWtcw=="; 51539 + }; 51540 + }; 51451 51541 "opencollective-postinstall-2.0.3" = { 51452 51542 name = "opencollective-postinstall"; 51453 51543 packageName = "opencollective-postinstall"; ··· 52906 52996 sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="; 52907 52997 }; 52908 52998 }; 52999 + "parse-package-name-1.0.0" = { 53000 + name = "parse-package-name"; 53001 + packageName = "parse-package-name"; 53002 + version = "1.0.0"; 53003 + src = fetchurl { 53004 + url = "https://registry.npmjs.org/parse-package-name/-/parse-package-name-1.0.0.tgz"; 53005 + sha512 = "kBeTUtcj+SkyfaW4+KBe0HtsloBJ/mKTPoxpVdA57GZiPerREsUWJOhVj9anXweFiJkm5y8FG1sxFZkZ0SN6wg=="; 53006 + }; 53007 + }; 52909 53008 "parse-passwd-1.0.0" = { 52910 53009 name = "parse-passwd"; 52911 53010 packageName = "parse-passwd"; ··· 53408 53507 src = fetchurl { 53409 53508 url = "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"; 53410 53509 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 53510 + }; 53511 + }; 53512 + "path-key-4.0.0" = { 53513 + name = "path-key"; 53514 + packageName = "path-key"; 53515 + version = "4.0.0"; 53516 + src = fetchurl { 53517 + url = "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz"; 53518 + sha512 = "haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ=="; 53411 53519 }; 53412 53520 }; 53413 53521 "path-loader-1.0.12" = { ··· 57316 57424 sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; 57317 57425 }; 57318 57426 }; 57319 - "pyright-1.1.270" = { 57427 + "pyright-1.1.271" = { 57320 57428 name = "pyright"; 57321 57429 packageName = "pyright"; 57322 - version = "1.1.270"; 57430 + version = "1.1.271"; 57323 57431 src = fetchurl { 57324 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.270.tgz"; 57325 - sha512 = "9SmZfgAhByPeMk0AAb41lAXENjoC1gGXKCP4qaexGAEu9pOYSUMQFgNTyRzKizafa6LtIBGGhgSaJrpWZyBn7w=="; 57432 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.271.tgz"; 57433 + sha512 = "46QQLQLT5U+wmKqG9R193loBASqqcIZYwWrwTCWNTHIRYTxEbaHwGWDlmX19R3lmlIBDu9I9m5MyPmYs/2v5dg=="; 57326 57434 }; 57327 57435 }; 57328 57436 "q-0.9.7" = { ··· 57667 57775 sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 57668 57776 }; 57669 57777 }; 57670 - "queue-tick-1.0.0" = { 57778 + "queue-tick-1.0.1" = { 57671 57779 name = "queue-tick"; 57672 57780 packageName = "queue-tick"; 57673 - version = "1.0.0"; 57781 + version = "1.0.1"; 57674 57782 src = fetchurl { 57675 - url = "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.0.tgz"; 57676 - sha512 = "ULWhjjE8BmiICGn3G8+1L9wFpERNxkf8ysxkAer4+TFdRefDaXOCV5m92aMB9FtBVmn/8sETXLXY6BfW7hyaWQ=="; 57783 + url = "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz"; 57784 + sha512 = "kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag=="; 57677 57785 }; 57678 57786 }; 57679 57787 "quick-format-unescaped-4.0.4" = { ··· 58180 58288 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 58181 58289 }; 58182 58290 }; 58183 - "react-devtools-core-4.25.0" = { 58291 + "react-devtools-core-4.26.0" = { 58184 58292 name = "react-devtools-core"; 58185 58293 packageName = "react-devtools-core"; 58186 - version = "4.25.0"; 58294 + version = "4.26.0"; 58187 58295 src = fetchurl { 58188 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.25.0.tgz"; 58189 - sha512 = "iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA=="; 58296 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.26.0.tgz"; 58297 + sha512 = "OO0Q+vXtHYCXvRQ6elLiOUph3MjsCpuYktGTLnBpizYm46f8tAPuJKihGkwsceitHSJNpzNIjJaYHgX96CyTUQ=="; 58190 58298 }; 58191 58299 }; 58192 58300 "react-dom-17.0.2" = { ··· 58729 58837 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 58730 58838 }; 58731 58839 }; 58732 - "readdirp-3.5.0" = { 58733 - name = "readdirp"; 58734 - packageName = "readdirp"; 58735 - version = "3.5.0"; 58736 - src = fetchurl { 58737 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 58738 - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 58739 - }; 58740 - }; 58741 58840 "readdirp-3.6.0" = { 58742 58841 name = "readdirp"; 58743 58842 packageName = "readdirp"; ··· 59044 59143 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 59045 59144 }; 59046 59145 }; 59047 - "regenerate-unicode-properties-10.0.1" = { 59146 + "regenerate-unicode-properties-10.1.0" = { 59048 59147 name = "regenerate-unicode-properties"; 59049 59148 packageName = "regenerate-unicode-properties"; 59050 - version = "10.0.1"; 59149 + version = "10.1.0"; 59051 59150 src = fetchurl { 59052 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"; 59053 - sha512 = "vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw=="; 59151 + url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz"; 59152 + sha512 = "d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ=="; 59054 59153 }; 59055 59154 }; 59056 59155 "regenerator-runtime-0.11.1" = { ··· 59143 59242 sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 59144 59243 }; 59145 59244 }; 59146 - "regexpu-core-5.1.0" = { 59245 + "regexpu-core-5.2.1" = { 59147 59246 name = "regexpu-core"; 59148 59247 packageName = "regexpu-core"; 59149 - version = "5.1.0"; 59248 + version = "5.2.1"; 59150 59249 src = fetchurl { 59151 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz"; 59152 - sha512 = "bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA=="; 59250 + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz"; 59251 + sha512 = "HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ=="; 59153 59252 }; 59154 59253 }; 59155 59254 "register-protocol-win32-1.1.0" = { ··· 59224 59323 sha512 = "+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q=="; 59225 59324 }; 59226 59325 }; 59227 - "regjsgen-0.6.0" = { 59326 + "regjsgen-0.7.1" = { 59228 59327 name = "regjsgen"; 59229 59328 packageName = "regjsgen"; 59230 - version = "0.6.0"; 59329 + version = "0.7.1"; 59231 59330 src = fetchurl { 59232 - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz"; 59233 - sha512 = "ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="; 59331 + url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz"; 59332 + sha512 = "RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA=="; 59234 59333 }; 59235 59334 }; 59236 - "regjsparser-0.8.4" = { 59335 + "regjsparser-0.9.1" = { 59237 59336 name = "regjsparser"; 59238 59337 packageName = "regjsparser"; 59239 - version = "0.8.4"; 59338 + version = "0.9.1"; 59240 59339 src = fetchurl { 59241 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz"; 59242 - sha512 = "J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA=="; 59340 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz"; 59341 + sha512 = "dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ=="; 59243 59342 }; 59244 59343 }; 59245 59344 "rehype-parse-6.0.2" = { ··· 60817 60916 sha512 = "bkzdIZ5Xyim12j0jq6CQAHpfdsa2VqieWF6eN8vT2MXxCxLAZhgVUyu5EEMevJyXML+XWTxVbZ7mLaKx5F/DZw=="; 60818 60917 }; 60819 60918 }; 60820 - "retry-request-5.0.1" = { 60919 + "retry-request-5.0.2" = { 60821 60920 name = "retry-request"; 60822 60921 packageName = "retry-request"; 60823 - version = "5.0.1"; 60922 + version = "5.0.2"; 60824 60923 src = fetchurl { 60825 - url = "https://registry.npmjs.org/retry-request/-/retry-request-5.0.1.tgz"; 60826 - sha512 = "lxFKrlBt0OZzCWh/V0uPEN0vlr3OhdeXnpeY5OES+ckslm791Cb1D5P7lJUSnY7J5hiCjcyaUGmzCnIGDCUBig=="; 60924 + url = "https://registry.npmjs.org/retry-request/-/retry-request-5.0.2.tgz"; 60925 + sha512 = "wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ=="; 60827 60926 }; 60828 60927 }; 60829 60928 "reusify-1.0.4" = { ··· 61465 61564 sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; 61466 61565 }; 61467 61566 }; 61468 - "safe-stable-stringify-2.3.1" = { 61567 + "safe-stable-stringify-2.4.0" = { 61469 61568 name = "safe-stable-stringify"; 61470 61569 packageName = "safe-stable-stringify"; 61471 - version = "2.3.1"; 61570 + version = "2.4.0"; 61472 61571 src = fetchurl { 61473 - url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz"; 61474 - sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="; 61572 + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.0.tgz"; 61573 + sha512 = "eehKHKpab6E741ud7ZIMcXhKcP6TSIezPkNZhy5U8xC6+VvrRdUA2tMgxGxaGl4cz7c2Ew5+mg5+wNB16KQqrA=="; 61475 61574 }; 61476 61575 }; 61477 61576 "safer-buffer-2.1.2" = { ··· 62212 62311 sha512 = "GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw=="; 62213 62312 }; 62214 62313 }; 62215 - "serialize-javascript-5.0.1" = { 62216 - name = "serialize-javascript"; 62217 - packageName = "serialize-javascript"; 62218 - version = "5.0.1"; 62219 - src = fetchurl { 62220 - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 62221 - sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 62222 - }; 62223 - }; 62224 62314 "serialize-javascript-6.0.0" = { 62225 62315 name = "serialize-javascript"; 62226 62316 packageName = "serialize-javascript"; ··· 62833 62923 sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A=="; 62834 62924 }; 62835 62925 }; 62836 - "simple-git-3.14.0" = { 62926 + "simple-git-3.14.1" = { 62837 62927 name = "simple-git"; 62838 62928 packageName = "simple-git"; 62839 - version = "3.14.0"; 62929 + version = "3.14.1"; 62840 62930 src = fetchurl { 62841 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.0.tgz"; 62842 - sha512 = "Paad1BkrI7vWhImLybDRYOHnh3WPsHSKXJpmKM+iGjjKNV91XaOdd+yIdZ/gqdzncHDEKYff4k+74oNo1R+U8Q=="; 62931 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.1.tgz"; 62932 + sha512 = "1ThF4PamK9wBORVGMK9HK5si4zoGS2GpRO7tkAFObA4FZv6dKaCVHLQT+8zlgiBm6K2h+wEU9yOaFCu/SR3OyA=="; 62843 62933 }; 62844 62934 }; 62845 62935 "simple-markdown-0.4.4" = { ··· 64372 64462 sha512 = "rjvqHFUaSGnzxDy2AHCwhHy6Zp6MNJzCPGYju4kD8yi6bze4d1/zMTg6C7JI49b7/EM7jKMTvyfN/4ylBKdwfw=="; 64373 64463 }; 64374 64464 }; 64375 - "sqlite3-5.0.11" = { 64465 + "sqlite3-5.0.2" = { 64376 64466 name = "sqlite3"; 64377 64467 packageName = "sqlite3"; 64378 - version = "5.0.11"; 64468 + version = "5.0.2"; 64379 64469 src = fetchurl { 64380 - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.11.tgz"; 64381 - sha512 = "4akFOr7u9lJEeAWLJxmwiV43DJcGV7w3ab7SjQFAFaTVyknY3rZjvXTKIVtWqUoY4xwhjwoHKYs2HDW2SoHVsA=="; 64470 + url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.2.tgz"; 64471 + sha512 = "1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA=="; 64382 64472 }; 64383 64473 }; 64384 - "sqlite3-5.0.2" = { 64474 + "sqlite3-5.1.1" = { 64385 64475 name = "sqlite3"; 64386 64476 packageName = "sqlite3"; 64387 - version = "5.0.2"; 64477 + version = "5.1.1"; 64388 64478 src = fetchurl { 64389 - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.2.tgz"; 64390 - sha512 = "1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA=="; 64479 + url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.1.tgz"; 64480 + sha512 = "mMinkrQr/LKJqFiFF+AF7imPSzRCCpTCreusZO3D/ssJHVjZOrbu2Caz+zPH5KTmGGXBxXMGSRDssL+44CLxvg=="; 64391 64481 }; 64392 64482 }; 64393 64483 "sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" = { ··· 64445 64535 sha512 = "8K3qi9fIr6PYQCWWPDTijDThZ89tYRkIKO7xpS/kM8dDuDfx4FsBoMsBkgl8VOV3TB24UnAF0IbcxRBNL5Pf4w=="; 64446 64536 }; 64447 64537 }; 64448 - "ssb-bfe-3.5.0" = { 64538 + "ssb-bfe-3.6.0" = { 64449 64539 name = "ssb-bfe"; 64450 64540 packageName = "ssb-bfe"; 64451 - version = "3.5.0"; 64541 + version = "3.6.0"; 64452 64542 src = fetchurl { 64453 - url = "https://registry.npmjs.org/ssb-bfe/-/ssb-bfe-3.5.0.tgz"; 64454 - sha512 = "+ADruC6EESvo6HOb6c4jH9Ogz/ZI2+Zj7m6WVOmp2cEtdYpYbB4UcfuxXp82Gi653O+x8t0XGrfelAoRHtfnwQ=="; 64543 + url = "https://registry.npmjs.org/ssb-bfe/-/ssb-bfe-3.6.0.tgz"; 64544 + sha512 = "yvGFGZTWB0S/gMTI+CC2kQDveujid3Y4it829w6gES1BNw4QTfwyU/Rtkq2o01ITanZ2fvm3g7f0326yaNDZRg=="; 64455 64545 }; 64456 64546 }; 64457 - "ssb-bfe-spec-0.6.0" = { 64547 + "ssb-bfe-spec-0.7.0" = { 64458 64548 name = "ssb-bfe-spec"; 64459 64549 packageName = "ssb-bfe-spec"; 64460 - version = "0.6.0"; 64550 + version = "0.7.0"; 64461 64551 src = fetchurl { 64462 - url = "https://registry.npmjs.org/ssb-bfe-spec/-/ssb-bfe-spec-0.6.0.tgz"; 64463 - sha512 = "Wk0c7nRz0Lo3eWsSYvIkhg7sTnmre18MJAGiUSqJqFS6Gm2iGquj/BxozvLX4K5sRw9j4lIp2oQoHIGRoE48Xw=="; 64552 + url = "https://registry.npmjs.org/ssb-bfe-spec/-/ssb-bfe-spec-0.7.0.tgz"; 64553 + sha512 = "7Ab2lsbGXbVD0p8UQpqbekk7ENcioA8rmS+e1iMNhntROrR6ThdxS7TY8Q910UBNdtRKRXtDpqImA7fMN8W8LA=="; 64464 64554 }; 64465 64555 }; 64466 64556 "ssb-blobs-1.2.2" = { ··· 64598 64688 sha512 = "FPeyYU/3LpxcagnbmVWE+Q/qzg6keqeOBPbD7sEH9UKixUASeufPKiORDgh8nVX7J9Z+0vUaHt/WG999kGjvVQ=="; 64599 64689 }; 64600 64690 }; 64601 - "ssb-keys-8.4.1" = { 64691 + "ssb-keys-8.5.0" = { 64602 64692 name = "ssb-keys"; 64603 64693 packageName = "ssb-keys"; 64604 - version = "8.4.1"; 64694 + version = "8.5.0"; 64605 64695 src = fetchurl { 64606 - url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.4.1.tgz"; 64607 - sha512 = "1HnP80HaBoCawYOBYk6b91NWmrBULVDTbhfnuVfRmGUiT9vwlWKKvJmp2b7dthkHWpaQcI7Wu6+nGQK/YOFUJw=="; 64696 + url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.5.0.tgz"; 64697 + sha512 = "Fdgnz5QQ/oK/bMf5Hkaqss/INqiKHFHG4RKDk3StWrQC4fUKMSL/GfnkxFlcLFGhVomzxUmhtAnhJQx2WecEKQ=="; 64608 64698 }; 64609 64699 }; 64610 64700 "ssb-links-3.0.10" = { ··· 64787 64877 sha512 = "HkgRbZeFe3YhBLfv5C6AgJaz1ESlQ5MP7sAdRTpCYwU4wo0U+d/irvVUsnUimPq6FO/Zn6gmW8BiCk+JBv3rGw=="; 64788 64878 }; 64789 64879 }; 64790 - "ssb-uri2-2.0.2" = { 64880 + "ssb-uri2-2.1.0" = { 64791 64881 name = "ssb-uri2"; 64792 64882 packageName = "ssb-uri2"; 64793 - version = "2.0.2"; 64883 + version = "2.1.0"; 64794 64884 src = fetchurl { 64795 - url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-2.0.2.tgz"; 64796 - sha512 = "epjRE0lNfpfTPh2HeGQrIObdMHs6CJwYqPHJ8lVkM8irdGomcp9hU5eNUVzOrwqfFMeW36trNIRtDHEcMtJZQA=="; 64885 + url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-2.1.0.tgz"; 64886 + sha512 = "s7+gH8385NiWC8+P99TnW/t0tN+Wj5tZ9DJ8u7Ay8nkBPzNuOFvjk8o07P6QvHwLKa5tAh/pBCjv6QKIBI10vg=="; 64797 64887 }; 64798 64888 }; 64799 64889 "ssb-validate-4.1.4" = { ··· 66083 66173 sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="; 66084 66174 }; 66085 66175 }; 66176 + "strip-final-newline-3.0.0" = { 66177 + name = "strip-final-newline"; 66178 + packageName = "strip-final-newline"; 66179 + version = "3.0.0"; 66180 + src = fetchurl { 66181 + url = "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz"; 66182 + sha512 = "dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw=="; 66183 + }; 66184 + }; 66086 66185 "strip-hex-prefix-1.0.0" = { 66087 66186 name = "strip-hex-prefix"; 66088 66187 packageName = "strip-hex-prefix"; ··· 66389 66488 sha512 = "dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw=="; 66390 66489 }; 66391 66490 }; 66392 - "sucrase-3.26.0" = { 66491 + "sucrase-3.27.0" = { 66393 66492 name = "sucrase"; 66394 66493 packageName = "sucrase"; 66395 - version = "3.26.0"; 66494 + version = "3.27.0"; 66396 66495 src = fetchurl { 66397 - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.26.0.tgz"; 66398 - sha512 = "iWWppLcRrEwHaHefYJaJP9XQdRJO+tZfy/kDZizar5Ur1IK8XN48nwMFnDupXw2uvNtjWd8I58vVH42inBT/2Q=="; 66496 + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.27.0.tgz"; 66497 + sha512 = "IjpEeFzOWCGrB/e2DnPawkFajW6ONFFgs+lQT1+Ts5Z5ZM9gPnxpDh0q8tu7HVLt6IfRiUTbSsjfhqjHOP/cwQ=="; 66399 66498 }; 66400 66499 }; 66401 66500 "sudo-block-1.2.0" = { ··· 66677 66776 sha512 = "sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw=="; 66678 66777 }; 66679 66778 }; 66680 - "svelte2tsx-0.5.17" = { 66779 + "svelte2tsx-0.5.18" = { 66681 66780 name = "svelte2tsx"; 66682 66781 packageName = "svelte2tsx"; 66683 - version = "0.5.17"; 66782 + version = "0.5.18"; 66684 66783 src = fetchurl { 66685 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.17.tgz"; 66686 - sha512 = "4NAWuDhNu8AfBqivnbc9YZlWiHjLqoIPX6Fz2TwzzXM8a2qs3t6brAYa+C+vc2Gm5hNltDNJMmF0sC9D01PoCA=="; 66784 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.18.tgz"; 66785 + sha512 = "yhfEv1xvTYJZR/6Abygw09IH7uhAprKbar6Vk/YsfJyNcz4PQc/EHlG0LJbsm+FW8Us6ihZ9KJC4u+FnNW99lg=="; 66687 66786 }; 66688 66787 }; 66689 66788 "sver-compat-1.5.0" = { ··· 68928 69027 sha512 = "HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ=="; 68929 69028 }; 68930 69029 }; 68931 - "ts-loader-8.4.0" = { 68932 - name = "ts-loader"; 68933 - packageName = "ts-loader"; 68934 - version = "8.4.0"; 68935 - src = fetchurl { 68936 - url = "https://registry.npmjs.org/ts-loader/-/ts-loader-8.4.0.tgz"; 68937 - sha512 = "6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw=="; 68938 - }; 68939 - }; 68940 69030 "ts-loader-9.2.6" = { 68941 69031 name = "ts-loader"; 68942 69032 packageName = "ts-loader"; ··· 68946 69036 sha512 = "QMTC4UFzHmu9wU2VHZEmWWE9cUajjfcdcws+Gh7FhiO+Dy0RnR1bNz0YCHqhI0yRowCE9arVnNxYHqELOy9Hjw=="; 68947 69037 }; 68948 69038 }; 68949 - "ts-loader-9.3.1" = { 69039 + "ts-loader-9.4.0" = { 68950 69040 name = "ts-loader"; 68951 69041 packageName = "ts-loader"; 68952 - version = "9.3.1"; 69042 + version = "9.4.0"; 68953 69043 src = fetchurl { 68954 - url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.3.1.tgz"; 68955 - sha512 = "OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw=="; 69044 + url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.0.tgz"; 69045 + sha512 = "0G3UMhk1bjgsgiwF4rnZRAeTi69j9XMDtmDDMghGSqlWESIAS3LFgJe//GYfE4vcjbyzuURLB9Us2RZIWp2clQ=="; 68956 69046 }; 68957 69047 }; 68958 - "ts-log-2.2.4" = { 69048 + "ts-log-2.2.5" = { 68959 69049 name = "ts-log"; 68960 69050 packageName = "ts-log"; 68961 - version = "2.2.4"; 69051 + version = "2.2.5"; 68962 69052 src = fetchurl { 68963 - url = "https://registry.npmjs.org/ts-log/-/ts-log-2.2.4.tgz"; 68964 - sha512 = "DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ=="; 69053 + url = "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz"; 69054 + sha512 = "PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA=="; 68965 69055 }; 68966 69056 }; 68967 69057 "ts-morph-12.0.0" = { ··· 70278 70368 sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; 70279 70369 }; 70280 70370 }; 70281 - "unicode-property-aliases-ecmascript-2.0.0" = { 70371 + "unicode-property-aliases-ecmascript-2.1.0" = { 70282 70372 name = "unicode-property-aliases-ecmascript"; 70283 70373 packageName = "unicode-property-aliases-ecmascript"; 70284 - version = "2.0.0"; 70374 + version = "2.1.0"; 70285 70375 src = fetchurl { 70286 - url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"; 70287 - sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ=="; 70376 + url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz"; 70377 + sha512 = "6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="; 70288 70378 }; 70289 70379 }; 70290 70380 "unicode-trie-0.3.1" = { ··· 71088 71178 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 71089 71179 }; 71090 71180 }; 71091 - "update-browserslist-db-1.0.8" = { 71181 + "update-browserslist-db-1.0.9" = { 71092 71182 name = "update-browserslist-db"; 71093 71183 packageName = "update-browserslist-db"; 71094 - version = "1.0.8"; 71184 + version = "1.0.9"; 71095 71185 src = fetchurl { 71096 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.8.tgz"; 71097 - sha512 = "GHg7C4M7oJSJYW/ED/5QOJ7nL/E0lwTOBGsOorA7jqHr8ExUhPfwAotIAmdSw/LWv3SMLSNpzTAgeLG9zaZKTA=="; 71186 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz"; 71187 + sha512 = "/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg=="; 71098 71188 }; 71099 71189 }; 71100 71190 "update-check-1.5.2" = { ··· 72771 72861 sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="; 72772 72862 }; 72773 72863 }; 72774 - "vsce-1.88.0" = { 72775 - name = "vsce"; 72776 - packageName = "vsce"; 72777 - version = "1.88.0"; 72778 - src = fetchurl { 72779 - url = "https://registry.npmjs.org/vsce/-/vsce-1.88.0.tgz"; 72780 - sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw=="; 72781 - }; 72782 - }; 72783 72864 "vsce-2.11.0" = { 72784 72865 name = "vsce"; 72785 72866 packageName = "vsce"; ··· 72825 72906 sha512 = "DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg=="; 72826 72907 }; 72827 72908 }; 72828 - "vscode-css-languageservice-6.1.0" = { 72909 + "vscode-css-languageservice-6.1.1" = { 72829 72910 name = "vscode-css-languageservice"; 72830 72911 packageName = "vscode-css-languageservice"; 72831 - version = "6.1.0"; 72912 + version = "6.1.1"; 72832 72913 src = fetchurl { 72833 - url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.1.0.tgz"; 72834 - sha512 = "GFXmy6EVceVc/OPKENnoW31EiIksekz9yruczIAkA0eX5BSkNh/ojgeCzwW1ERRFpDymVZj0aLYKSrYZmvU6VA=="; 72835 - }; 72836 - }; 72837 - "vscode-debugadapter-testsupport-1.51.0" = { 72838 - name = "vscode-debugadapter-testsupport"; 72839 - packageName = "vscode-debugadapter-testsupport"; 72840 - version = "1.51.0"; 72841 - src = fetchurl { 72842 - url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.51.0.tgz"; 72843 - sha512 = "rb8tfn7J3kxLi1rRhEyG5ggGkFcJH2WrYYrq6Vb1tDAcHoFXF580M1dAA2jPOrc0I14GuWxMnndvfGkfG10VxA=="; 72844 - }; 72845 - }; 72846 - "vscode-debugprotocol-1.51.0" = { 72847 - name = "vscode-debugprotocol"; 72848 - packageName = "vscode-debugprotocol"; 72849 - version = "1.51.0"; 72850 - src = fetchurl { 72851 - url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.51.0.tgz"; 72852 - sha512 = "dzKWTMMyebIMPF1VYMuuQj7gGFq7guR8AFya0mKacu+ayptJfaRuM0mdHCqiOth4FnRP8mPhEroFPx6Ift8wHA=="; 72914 + url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.1.1.tgz"; 72915 + sha512 = "7d2NCq2plT0njAKmGZ11uof95y2fwbgq8QuToE3kX9uYQfVmejHX2/lFGKbK5AV5+Ja0L80UZoU0QspwqMKMHA=="; 72853 72916 }; 72854 72917 }; 72855 72918 "vscode-emmet-helper-1.2.17" = { ··· 72897 72960 sha512 = "dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw=="; 72898 72961 }; 72899 72962 }; 72900 - "vscode-html-languageservice-5.0.1" = { 72963 + "vscode-html-languageservice-5.0.2" = { 72901 72964 name = "vscode-html-languageservice"; 72902 72965 packageName = "vscode-html-languageservice"; 72903 - version = "5.0.1"; 72966 + version = "5.0.2"; 72904 72967 src = fetchurl { 72905 - url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.1.tgz"; 72906 - sha512 = "OYsyn5HGAhxs0OIG+M0jc34WnftLtD67Wg7+TfrYwvf0waOkkr13zUqtdrVm2JPNQ6fJx+qnuM+vTbq7o1dCdQ=="; 72968 + url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.2.tgz"; 72969 + sha512 = "TQmeyE14Ure/w/S+RV2IItuRWmw/i1QaS+om6t70iHCpamuTTWnACQPMSltVGm/DlbdyMquUePJREjd/h3AVkQ=="; 72907 72970 }; 72908 72971 }; 72909 72972 "vscode-json-languageservice-3.11.0" = { ··· 73401 73464 sha512 = "8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A=="; 73402 73465 }; 73403 73466 }; 73404 - "vscode-uri-3.0.3" = { 73467 + "vscode-uri-3.0.4" = { 73468 + name = "vscode-uri"; 73469 + packageName = "vscode-uri"; 73470 + version = "3.0.4"; 73471 + src = fetchurl { 73472 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.4.tgz"; 73473 + sha512 = "aEmKD6H8Sg8gaQAUrnadG0BMeWXtiWhRsj1a94n2FYsMkDpgnK7BRVzZjOUYIvkv2B+bp5Bmt4ImZCpYbnJwkg=="; 73474 + }; 73475 + }; 73476 + "vscode-uri-3.0.6" = { 73405 73477 name = "vscode-uri"; 73406 73478 packageName = "vscode-uri"; 73407 - version = "3.0.3"; 73479 + version = "3.0.6"; 73408 73480 src = fetchurl { 73409 - url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz"; 73410 - sha512 = "EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA=="; 73481 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.6.tgz"; 73482 + sha512 = "fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ=="; 73411 73483 }; 73412 73484 }; 73413 73485 "vstream-0.1.0" = { ··· 73869 73941 sha512 = "flC9JJmTII9uAeeYpWF8hxDJ7bfY+leldQryetll8Nv4WgI+MXc6h7TiyAZASWl9uC9TvmfdgOjZn1DAQecb3A=="; 73870 73942 }; 73871 73943 }; 73872 - "web3-utils-1.7.5" = { 73944 + "web3-utils-1.8.0" = { 73873 73945 name = "web3-utils"; 73874 73946 packageName = "web3-utils"; 73875 - version = "1.7.5"; 73947 + version = "1.8.0"; 73876 73948 src = fetchurl { 73877 - url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.7.5.tgz"; 73878 - sha512 = "9AqNOziQky4wNQadEwEfHiBdOZqopIHzQQVzmvvv6fJwDSMhP+khqmAZC7YTiGjs0MboyZ8tWNivqSO1699XQw=="; 73949 + url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.8.0.tgz"; 73950 + sha512 = "7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ=="; 73879 73951 }; 73880 73952 }; 73881 73953 "webassemblyjs-1.11.1" = { ··· 74409 74481 sha512 = "Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw=="; 74410 74482 }; 74411 74483 }; 74412 - "wide-align-1.1.3" = { 74413 - name = "wide-align"; 74414 - packageName = "wide-align"; 74415 - version = "1.1.3"; 74416 - src = fetchurl { 74417 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 74418 - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 74419 - }; 74420 - }; 74421 74484 "wide-align-1.1.5" = { 74422 74485 name = "wide-align"; 74423 74486 packageName = "wide-align"; ··· 74796 74859 sha512 = "P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg=="; 74797 74860 }; 74798 74861 }; 74799 - "workerpool-6.1.0" = { 74800 - name = "workerpool"; 74801 - packageName = "workerpool"; 74802 - version = "6.1.0"; 74803 - src = fetchurl { 74804 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz"; 74805 - sha512 = "toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg=="; 74806 - }; 74807 - }; 74808 74862 "workerpool-6.2.1" = { 74809 74863 name = "workerpool"; 74810 74864 packageName = "workerpool"; ··· 76441 76495 "@angular/cli" = nodeEnv.buildNodePackage { 76442 76496 name = "_at_angular_slash_cli"; 76443 76497 packageName = "@angular/cli"; 76444 - version = "14.2.2"; 76498 + version = "14.2.3"; 76445 76499 src = fetchurl { 76446 - url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.2.tgz"; 76447 - sha512 = "oRsKFn8grq+mZrirDD2Ea0CFx5+eeb928ltI/B3ML7s3mOpTfhuuF04033TARY/UzcGsX31V2L9kORJXN30Ycw=="; 76500 + url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.3.tgz"; 76501 + sha512 = "pFo/h3ImjebjKzdw6yWcaERSIzWsSu4eqH9qQ/dWD1ChkSph+krBw3+5Q+Kda5l3dLgl7mQXX6mC5u8IHTdvDg=="; 76448 76502 }; 76449 76503 dependencies = [ 76450 - sources."@angular-devkit/architect-0.1402.2" 76451 - sources."@angular-devkit/core-14.2.2" 76452 - sources."@angular-devkit/schematics-14.2.2" 76504 + sources."@angular-devkit/architect-0.1402.3" 76505 + sources."@angular-devkit/core-14.2.3" 76506 + sources."@angular-devkit/schematics-14.2.3" 76453 76507 sources."@gar/promisify-1.1.3" 76454 76508 sources."@npmcli/fs-2.1.2" 76455 76509 sources."@npmcli/git-3.0.2" ··· 76458 76512 sources."@npmcli/node-gyp-2.0.0" 76459 76513 sources."@npmcli/promise-spawn-3.0.0" 76460 76514 sources."@npmcli/run-script-4.2.1" 76461 - sources."@schematics/angular-14.2.2" 76515 + sources."@schematics/angular-14.2.3" 76462 76516 sources."@tootallnate/once-2.0.0" 76463 76517 sources."@yarnpkg/lockfile-1.1.0" 76464 76518 sources."abbrev-1.1.1" ··· 76765 76819 sources."readable-stream-4.1.0" 76766 76820 sources."real-require-0.2.0" 76767 76821 sources."safe-buffer-5.2.1" 76768 - sources."safe-stable-stringify-2.3.1" 76822 + sources."safe-stable-stringify-2.4.0" 76769 76823 sources."secure-json-parse-2.5.0" 76770 76824 sources."sonic-boom-3.2.0" 76771 76825 sources."split2-4.1.0" ··· 76964 77018 sources."require-from-string-2.0.2" 76965 77019 sources."resolve-options-1.1.0" 76966 77020 sources."safe-buffer-5.1.2" 76967 - sources."safe-stable-stringify-2.3.1" 77021 + sources."safe-stable-stringify-2.4.0" 76968 77022 sources."secure-json-parse-2.5.0" 76969 77023 sources."sha.js-2.4.11" 76970 77024 sources."should-proxy-1.0.4" ··· 77027 77081 "@astrojs/language-server" = nodeEnv.buildNodePackage { 77028 77082 name = "_at_astrojs_slash_language-server"; 77029 77083 packageName = "@astrojs/language-server"; 77030 - version = "0.24.1"; 77084 + version = "0.26.2"; 77031 77085 src = fetchurl { 77032 - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.24.1.tgz"; 77033 - sha512 = "+7D0540yq3PyTEJT/tI2TXX+yBOx9Nj+r1xeNCe+gA7/CcyqbR5SUqiLdPxbCa0GzszeyghP9cp4gGO7TEcTHQ=="; 77086 + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.26.2.tgz"; 77087 + sha512 = "9nkfdd6CMXLDIJojnwbYu5XrYfOI+g63JlktOlpFCwFjFNpm1u0e/+pXXmj6Zs+PkSTo0kV1UM77dRKRS5OC1Q=="; 77034 77088 }; 77035 77089 dependencies = [ 77036 77090 sources."@astrojs/compiler-0.23.5" ··· 77069 77123 sources."synckit-0.7.3" 77070 77124 sources."tiny-glob-0.2.9" 77071 77125 sources."tslib-2.4.0" 77072 - sources."vscode-css-languageservice-6.1.0" 77073 - sources."vscode-html-languageservice-5.0.1" 77126 + sources."vscode-css-languageservice-6.1.1" 77127 + sources."vscode-html-languageservice-5.0.2" 77074 77128 sources."vscode-jsonrpc-8.0.2" 77075 77129 sources."vscode-languageserver-8.0.2" 77076 77130 sources."vscode-languageserver-protocol-3.17.2" 77077 77131 sources."vscode-languageserver-textdocument-1.0.7" 77078 77132 sources."vscode-languageserver-types-3.17.2" 77079 77133 sources."vscode-nls-5.2.0" 77080 - sources."vscode-uri-3.0.3" 77134 + sources."vscode-uri-3.0.6" 77081 77135 sources."which-2.0.2" 77082 77136 ]; 77083 77137 buildInputs = globalBuildInputs; ··· 77156 77210 }) 77157 77211 sources."data-urls-2.0.0" 77158 77212 sources."debug-4.3.4" 77159 - sources."decimal.js-10.4.0" 77213 + sources."decimal.js-10.4.1" 77160 77214 sources."deep-equal-1.0.1" 77161 77215 sources."deep-is-0.1.4" 77162 77216 sources."define-lazy-prop-2.0.0" ··· 77364 77418 }; 77365 77419 dependencies = [ 77366 77420 sources."@babel/code-frame-7.18.6" 77367 - sources."@babel/helper-validator-identifier-7.18.6" 77421 + sources."@babel/helper-validator-identifier-7.19.1" 77368 77422 (sources."@babel/highlight-7.18.6" // { 77369 77423 dependencies = [ 77370 77424 sources."ansi-styles-3.2.1" ··· 77406 77460 sources."@tsconfig/node14-1.0.3" 77407 77461 sources."@tsconfig/node16-1.0.3" 77408 77462 sources."@types/minimist-1.2.2" 77409 - sources."@types/node-14.18.28" 77463 + sources."@types/node-14.18.29" 77410 77464 sources."@types/normalize-package-data-2.4.1" 77411 77465 sources."@types/parse-json-4.0.0" 77412 77466 sources."JSONStream-1.3.5" ··· 77429 77483 sources."conventional-changelog-angular-5.0.13" 77430 77484 sources."conventional-commits-parser-3.2.4" 77431 77485 sources."cosmiconfig-7.0.1" 77432 - sources."cosmiconfig-typescript-loader-4.0.0" 77486 + sources."cosmiconfig-typescript-loader-4.1.0" 77433 77487 sources."create-require-1.1.1" 77434 77488 sources."cross-spawn-7.0.3" 77435 77489 sources."dargs-7.0.0" ··· 77662 77716 ]; 77663 77717 }) 77664 77718 sources."@babel/code-frame-7.18.6" 77665 - sources."@babel/compat-data-7.19.0" 77666 - sources."@babel/core-7.19.0" 77719 + sources."@babel/compat-data-7.19.1" 77720 + sources."@babel/core-7.19.1" 77667 77721 (sources."@babel/generator-7.19.0" // { 77668 77722 dependencies = [ 77669 77723 sources."@jridgewell/gen-mapping-0.3.2" 77670 77724 ]; 77671 77725 }) 77672 77726 sources."@babel/helper-annotate-as-pure-7.18.6" 77673 - sources."@babel/helper-compilation-targets-7.19.0" 77727 + sources."@babel/helper-compilation-targets-7.19.1" 77674 77728 sources."@babel/helper-create-class-features-plugin-7.19.0" 77675 77729 sources."@babel/helper-environment-visitor-7.18.9" 77676 77730 sources."@babel/helper-function-name-7.19.0" ··· 77680 77734 sources."@babel/helper-module-transforms-7.19.0" 77681 77735 sources."@babel/helper-optimise-call-expression-7.18.6" 77682 77736 sources."@babel/helper-plugin-utils-7.19.0" 77683 - sources."@babel/helper-replace-supers-7.18.9" 77737 + sources."@babel/helper-replace-supers-7.19.1" 77684 77738 sources."@babel/helper-simple-access-7.18.6" 77685 77739 sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 77686 77740 sources."@babel/helper-split-export-declaration-7.18.6" 77687 77741 sources."@babel/helper-string-parser-7.18.10" 77688 - sources."@babel/helper-validator-identifier-7.18.6" 77742 + sources."@babel/helper-validator-identifier-7.19.1" 77689 77743 sources."@babel/helper-validator-option-7.18.6" 77690 77744 sources."@babel/helpers-7.19.0" 77691 77745 sources."@babel/highlight-7.18.6" 77692 - sources."@babel/parser-7.19.0" 77746 + sources."@babel/parser-7.19.1" 77693 77747 sources."@babel/plugin-proposal-class-properties-7.18.6" 77694 77748 sources."@babel/plugin-proposal-numeric-separator-7.18.6" 77695 77749 sources."@babel/plugin-proposal-optional-chaining-7.18.9" ··· 77698 77752 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 77699 77753 sources."@babel/plugin-syntax-typescript-7.18.6" 77700 77754 sources."@babel/plugin-transform-react-jsx-7.19.0" 77701 - sources."@babel/plugin-transform-typescript-7.19.0" 77755 + sources."@babel/plugin-transform-typescript-7.19.1" 77702 77756 sources."@babel/preset-typescript-7.18.6" 77703 77757 sources."@babel/template-7.18.10" 77704 - sources."@babel/traverse-7.19.0" 77758 + sources."@babel/traverse-7.19.1" 77705 77759 sources."@babel/types-7.19.0" 77760 + sources."@colors/colors-1.5.0" 77706 77761 sources."@discoveryjs/json-ext-0.5.7" 77707 77762 sources."@forge/api-2.7.0" 77708 77763 sources."@forge/auth-0.0.1" ··· 77733 77788 sources."@types/estree-0.0.51" 77734 77789 sources."@types/html-minifier-terser-6.1.0" 77735 77790 sources."@types/json-schema-7.0.11" 77736 - sources."@types/node-18.7.17" 77791 + sources."@types/node-18.7.18" 77737 77792 sources."@types/node-fetch-2.6.2" 77738 77793 sources."@typescript-eslint/types-3.10.1" 77739 77794 (sources."@typescript-eslint/typescript-estree-3.10.1" // { ··· 77827 77882 ]; 77828 77883 }) 77829 77884 sources."browserify-zlib-0.2.0" 77830 - sources."browserslist-4.21.3" 77885 + sources."browserslist-4.21.4" 77831 77886 sources."buffer-4.9.2" 77832 77887 sources."buffer-crc32-0.2.13" 77833 77888 sources."buffer-from-1.1.2" ··· 77847 77902 sources."tslib-2.4.0" 77848 77903 ]; 77849 77904 }) 77850 - sources."caniuse-lite-1.0.30001399" 77905 + sources."caniuse-lite-1.0.30001406" 77851 77906 sources."case-1.6.3" 77852 77907 sources."chainsaw-0.1.0" 77853 77908 sources."chalk-2.4.2" ··· 77872 77927 sources."cli-color-2.0.3" 77873 77928 sources."cli-cursor-3.1.0" 77874 77929 sources."cli-spinners-2.7.0" 77875 - sources."cli-table3-0.6.2" 77930 + sources."cli-table3-0.6.3" 77876 77931 sources."cli-width-3.0.0" 77877 77932 sources."cliui-7.0.4" 77878 77933 sources."clone-1.0.4" ··· 77954 78009 ]; 77955 78010 }) 77956 78011 sources."duplexer3-0.1.5" 77957 - sources."electron-to-chromium-1.4.248" 78012 + sources."electron-to-chromium-1.4.254" 77958 78013 (sources."elliptic-6.5.4" // { 77959 78014 dependencies = [ 77960 78015 sources."bn.js-4.12.0" ··· 78096 78151 sources."io-ts-2.2.18" 78097 78152 sources."is-bigint-1.0.4" 78098 78153 sources."is-boolean-object-1.1.2" 78099 - sources."is-callable-1.2.5" 78154 + sources."is-callable-1.2.6" 78100 78155 sources."is-core-module-2.10.0" 78101 78156 sources."is-date-object-1.0.5" 78102 78157 sources."is-extglob-2.1.1" ··· 78427 78482 }) 78428 78483 sources."traverse-0.3.9" 78429 78484 sources."truncate-utf8-bytes-1.0.2" 78430 - (sources."ts-loader-9.3.1" // { 78485 + (sources."ts-loader-9.4.0" // { 78431 78486 dependencies = [ 78432 78487 sources."ansi-styles-4.3.0" 78433 78488 sources."chalk-4.1.2" ··· 78459 78514 sources."string_decoder-1.1.1" 78460 78515 ]; 78461 78516 }) 78462 - sources."update-browserslist-db-1.0.8" 78517 + sources."update-browserslist-db-1.0.9" 78463 78518 (sources."uri-js-4.4.1" // { 78464 78519 dependencies = [ 78465 78520 sources."punycode-2.1.1" ··· 78545 78600 }; 78546 78601 dependencies = [ 78547 78602 sources."@babel/code-frame-7.18.6" 78548 - sources."@babel/helper-validator-identifier-7.18.6" 78603 + sources."@babel/helper-validator-identifier-7.19.1" 78549 78604 (sources."@babel/highlight-7.18.6" // { 78550 78605 dependencies = [ 78551 78606 sources."ansi-styles-3.2.1" ··· 78562 78617 sources."@types/http-cache-semantics-4.0.1" 78563 78618 sources."@types/keyv-3.1.4" 78564 78619 sources."@types/minimatch-3.0.5" 78565 - sources."@types/node-18.7.17" 78620 + sources."@types/node-18.7.18" 78566 78621 sources."@types/normalize-package-data-2.4.1" 78567 78622 sources."@types/responselike-1.0.0" 78568 78623 sources."abort-controller-3.0.0" ··· 78839 78894 sha512 = "tCI9Znr2FdQJREIvAFLpznskYOGigICd9wEA71Q7xHEka4RNlhKBZwzVCBH4NAPZoCLZbLYCDzW/7ursgi87Ew=="; 78840 78895 }; 78841 78896 dependencies = [ 78842 - sources."@babel/parser-7.19.0" 78897 + sources."@babel/parser-7.19.1" 78843 78898 sources."@medable/mdctl-api-1.0.66" 78844 78899 sources."@medable/mdctl-api-driver-1.0.66" 78845 78900 sources."@medable/mdctl-axon-tools-1.0.66" ··· 78874 78929 sources."@types/markdown-it-12.2.3" 78875 78930 sources."@types/mdurl-1.0.2" 78876 78931 sources."@types/minimatch-5.1.2" 78877 - sources."@types/node-18.7.17" 78932 + sources."@types/node-18.7.18" 78878 78933 sources."@types/tough-cookie-2.3.8" 78879 78934 sources."abbrev-1.1.1" 78880 78935 sources."abort-controller-3.0.0" ··· 79096 79151 }) 79097 79152 sources."fill-range-7.0.1" 79098 79153 sources."find-up-3.0.0" 79099 - sources."follow-redirects-1.15.1" 79154 + sources."follow-redirects-1.15.2" 79100 79155 sources."for-in-1.0.2" 79101 79156 sources."foreach-2.0.6" 79102 79157 sources."forever-agent-0.6.1" ··· 79181 79236 sources."ignore-5.2.0" 79182 79237 sources."ignore-walk-3.0.4" 79183 79238 sources."immediate-3.0.6" 79184 - sources."inflection-1.13.2" 79239 + sources."inflection-1.13.4" 79185 79240 sources."inflight-1.0.6" 79186 79241 sources."inherits-2.0.4" 79187 79242 sources."ini-1.3.8" ··· 79882 79937 ]; 79883 79938 }) 79884 79939 sources."@babel/code-frame-7.18.6" 79885 - sources."@babel/helper-validator-identifier-7.18.6" 79940 + sources."@babel/helper-validator-identifier-7.19.1" 79886 79941 (sources."@babel/highlight-7.18.6" // { 79887 79942 dependencies = [ 79888 79943 sources."ansi-styles-3.2.1" ··· 79918 79973 sources."@types/eslint-scope-3.7.4" 79919 79974 sources."@types/estree-0.0.51" 79920 79975 sources."@types/json-schema-7.0.11" 79921 - sources."@types/node-18.7.17" 79976 + sources."@types/node-18.7.18" 79922 79977 sources."@types/parse-json-4.0.0" 79923 79978 sources."@webassemblyjs/ast-1.11.1" 79924 79979 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 79953 80008 sources."bl-4.1.0" 79954 80009 sources."brace-expansion-1.1.11" 79955 80010 sources."braces-3.0.2" 79956 - sources."browserslist-4.21.3" 80011 + sources."browserslist-4.21.4" 79957 80012 sources."buffer-5.7.1" 79958 80013 sources."buffer-from-1.1.2" 79959 80014 sources."callsites-3.1.0" 79960 - sources."caniuse-lite-1.0.30001399" 80015 + sources."caniuse-lite-1.0.30001406" 79961 80016 sources."chalk-3.0.0" 79962 80017 sources."chardet-0.7.0" 79963 80018 sources."chokidar-3.5.3" ··· 79975 80030 sources."cross-spawn-7.0.3" 79976 80031 sources."deepmerge-4.2.2" 79977 80032 sources."defaults-1.0.3" 79978 - sources."electron-to-chromium-1.4.248" 80033 + sources."electron-to-chromium-1.4.254" 79979 80034 sources."emoji-regex-8.0.0" 79980 80035 sources."end-of-stream-1.4.4" 79981 80036 sources."enhanced-resolve-5.10.0" ··· 80154 80209 sources."type-fest-0.21.3" 80155 80210 sources."typescript-4.8.3" 80156 80211 sources."universalify-2.0.0" 80157 - sources."update-browserslist-db-1.0.8" 80212 + sources."update-browserslist-db-1.0.9" 80158 80213 sources."uri-js-4.4.1" 80159 80214 sources."util-deprecate-1.0.2" 80160 80215 sources."watchpack-2.4.0" ··· 80278 80333 "@tailwindcss/language-server" = nodeEnv.buildNodePackage { 80279 80334 name = "_at_tailwindcss_slash_language-server"; 80280 80335 packageName = "@tailwindcss/language-server"; 80281 - version = "0.0.8"; 80336 + version = "0.0.9"; 80282 80337 src = fetchurl { 80283 - url = "https://registry.npmjs.org/@tailwindcss/language-server/-/language-server-0.0.8.tgz"; 80284 - sha512 = "WIGh9lImzgELxxY6Y9C2thtQH9caiH2/BD6ptCj7QQ2cowjcd9VjK46/V4LSC4vZH+kEM4itXNbKJznALD6rcA=="; 80338 + url = "https://registry.npmjs.org/@tailwindcss/language-server/-/language-server-0.0.9.tgz"; 80339 + sha512 = "x0rvJkO8TmwhJWjBH7z4Qn1SLaaYYtvY8Liw5SnMX62u6QuNZ0R0XU9P7nVQg+x0rxakC8oQgS2+wfYRNUyHgQ=="; 80285 80340 }; 80286 80341 buildInputs = globalBuildInputs; 80287 80342 meta = { ··· 80357 80412 sources."@types/cacheable-request-6.0.2" 80358 80413 sources."@types/http-cache-semantics-4.0.1" 80359 80414 sources."@types/keyv-3.1.4" 80360 - sources."@types/node-18.7.17" 80415 + sources."@types/node-18.7.18" 80361 80416 sources."@types/responselike-1.0.0" 80362 80417 sources."accepts-1.3.8" 80363 80418 sources."ansi-styles-4.3.0" ··· 80365 80420 sources."asynckit-0.4.0" 80366 80421 sources."atob-2.1.2" 80367 80422 sources."available-typed-arrays-1.0.5" 80368 - sources."aws-sdk-2.1214.0" 80423 + sources."aws-sdk-2.1218.0" 80369 80424 sources."base64-js-1.5.1" 80370 80425 (sources."basic-auth-2.0.1" // { 80371 80426 dependencies = [ ··· 80474 80529 sources."is-arguments-1.1.1" 80475 80530 sources."is-bigint-1.0.4" 80476 80531 sources."is-boolean-object-1.1.2" 80477 - sources."is-callable-1.2.5" 80532 + sources."is-callable-1.2.6" 80478 80533 sources."is-date-object-1.0.5" 80479 80534 sources."is-generator-function-1.0.10" 80480 80535 sources."is-nan-1.3.2" ··· 80658 80713 sources."@apollographql/apollo-tools-0.5.4" 80659 80714 sources."@apollographql/graphql-playground-html-1.6.29" 80660 80715 sources."@babel/code-frame-7.18.6" 80661 - sources."@babel/compat-data-7.19.0" 80662 - (sources."@babel/core-7.19.0" // { 80716 + sources."@babel/compat-data-7.19.1" 80717 + (sources."@babel/core-7.19.1" // { 80663 80718 dependencies = [ 80664 80719 sources."semver-6.3.0" 80665 80720 ]; ··· 80671 80726 }) 80672 80727 sources."@babel/helper-annotate-as-pure-7.18.6" 80673 80728 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 80674 - (sources."@babel/helper-compilation-targets-7.19.0" // { 80729 + (sources."@babel/helper-compilation-targets-7.19.1" // { 80675 80730 dependencies = [ 80676 80731 sources."semver-6.3.0" 80677 80732 ]; ··· 80693 80748 sources."@babel/helper-optimise-call-expression-7.18.6" 80694 80749 sources."@babel/helper-plugin-utils-7.19.0" 80695 80750 sources."@babel/helper-remap-async-to-generator-7.18.9" 80696 - sources."@babel/helper-replace-supers-7.18.9" 80751 + sources."@babel/helper-replace-supers-7.19.1" 80697 80752 sources."@babel/helper-simple-access-7.18.6" 80698 80753 sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 80699 80754 sources."@babel/helper-split-export-declaration-7.18.6" 80700 80755 sources."@babel/helper-string-parser-7.18.10" 80701 - sources."@babel/helper-validator-identifier-7.18.6" 80756 + sources."@babel/helper-validator-identifier-7.19.1" 80702 80757 sources."@babel/helper-validator-option-7.18.6" 80703 80758 sources."@babel/helper-wrap-function-7.19.0" 80704 80759 sources."@babel/helpers-7.19.0" ··· 80712 80767 sources."supports-color-5.5.0" 80713 80768 ]; 80714 80769 }) 80715 - sources."@babel/parser-7.19.0" 80770 + sources."@babel/parser-7.19.1" 80716 80771 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 80717 80772 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" 80718 - sources."@babel/plugin-proposal-async-generator-functions-7.19.0" 80773 + sources."@babel/plugin-proposal-async-generator-functions-7.19.1" 80719 80774 sources."@babel/plugin-proposal-class-properties-7.18.6" 80720 80775 sources."@babel/plugin-proposal-class-static-block-7.18.6" 80721 80776 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 80766 80821 sources."@babel/plugin-transform-modules-commonjs-7.18.6" 80767 80822 sources."@babel/plugin-transform-modules-systemjs-7.19.0" 80768 80823 sources."@babel/plugin-transform-modules-umd-7.18.6" 80769 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0" 80824 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" 80770 80825 sources."@babel/plugin-transform-new-target-7.18.6" 80771 80826 sources."@babel/plugin-transform-object-super-7.18.6" 80772 80827 sources."@babel/plugin-transform-parameters-7.18.8" ··· 80778 80833 sources."@babel/plugin-transform-sticky-regex-7.18.6" 80779 80834 sources."@babel/plugin-transform-template-literals-7.18.9" 80780 80835 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 80781 - sources."@babel/plugin-transform-typescript-7.19.0" 80836 + sources."@babel/plugin-transform-typescript-7.19.1" 80782 80837 sources."@babel/plugin-transform-unicode-escapes-7.18.10" 80783 80838 sources."@babel/plugin-transform-unicode-regex-7.18.6" 80784 - (sources."@babel/preset-env-7.19.0" // { 80839 + (sources."@babel/preset-env-7.19.1" // { 80785 80840 dependencies = [ 80786 80841 sources."semver-6.3.0" 80787 80842 ]; ··· 80798 80853 }) 80799 80854 sources."@babel/runtime-7.19.0" 80800 80855 sources."@babel/template-7.18.10" 80801 - sources."@babel/traverse-7.19.0" 80856 + sources."@babel/traverse-7.19.1" 80802 80857 sources."@babel/types-7.19.0" 80803 80858 sources."@graphql-tools/merge-8.3.1" 80804 80859 (sources."@graphql-tools/mock-8.7.6" // { ··· 80852 80907 }) 80853 80908 sources."@types/long-4.0.2" 80854 80909 sources."@types/mime-3.0.1" 80855 - sources."@types/node-18.7.17" 80910 + sources."@types/node-18.7.18" 80856 80911 sources."@types/normalize-package-data-2.4.1" 80857 80912 sources."@types/qs-6.9.7" 80858 80913 sources."@types/range-parser-1.2.4" ··· 80914 80969 sources."semver-6.3.0" 80915 80970 ]; 80916 80971 }) 80917 - sources."babel-plugin-polyfill-corejs3-0.5.3" 80972 + sources."babel-plugin-polyfill-corejs3-0.6.0" 80918 80973 sources."babel-plugin-polyfill-regenerator-0.4.1" 80919 80974 sources."backo2-1.0.2" 80920 80975 sources."balanced-match-1.0.2" ··· 80937 80992 }) 80938 80993 sources."brace-expansion-1.1.11" 80939 80994 sources."braces-3.0.2" 80940 - sources."browserslist-4.21.3" 80995 + sources."browserslist-4.21.4" 80941 80996 sources."buffer-5.7.1" 80942 80997 sources."buffer-alloc-1.2.0" 80943 80998 sources."buffer-alloc-unsafe-1.1.0" ··· 80955 81010 }) 80956 81011 sources."call-bind-1.0.2" 80957 81012 sources."camelcase-6.3.0" 80958 - sources."caniuse-lite-1.0.30001399" 81013 + sources."caniuse-lite-1.0.30001406" 80959 81014 sources."caw-2.0.1" 80960 81015 sources."chalk-4.1.2" 80961 81016 sources."chardet-0.7.0" ··· 81008 81063 sources."cookie-0.5.0" 81009 81064 sources."cookie-signature-1.0.6" 81010 81065 sources."copy-descriptor-0.1.1" 81011 - sources."core-js-compat-3.25.1" 81066 + sources."core-js-compat-3.25.2" 81012 81067 sources."core-util-is-1.0.3" 81013 81068 sources."cors-2.8.5" 81014 81069 (sources."cross-spawn-6.0.5" // { ··· 81070 81125 sources."easy-stack-1.0.1" 81071 81126 sources."ee-first-1.1.1" 81072 81127 sources."ejs-3.1.8" 81073 - sources."electron-to-chromium-1.4.248" 81128 + sources."electron-to-chromium-1.4.254" 81074 81129 sources."emoji-regex-8.0.0" 81075 81130 sources."encodeurl-1.0.2" 81076 81131 sources."end-of-stream-1.4.4" ··· 81173 81228 sources."which-2.0.2" 81174 81229 ]; 81175 81230 }) 81176 - sources."flow-parser-0.186.0" 81231 + sources."flow-parser-0.187.0" 81177 81232 sources."for-in-1.0.2" 81178 81233 sources."forwarded-0.2.0" 81179 81234 sources."fragment-cache-0.2.1" ··· 81481 81536 sources."readable-stream-3.6.0" 81482 81537 sources."recast-0.20.5" 81483 81538 sources."regenerate-1.4.2" 81484 - sources."regenerate-unicode-properties-10.0.1" 81539 + sources."regenerate-unicode-properties-10.1.0" 81485 81540 sources."regenerator-runtime-0.13.9" 81486 81541 sources."regenerator-transform-0.15.0" 81487 81542 sources."regex-not-1.0.2" 81488 - sources."regexpu-core-5.1.0" 81489 - sources."regjsgen-0.6.0" 81490 - (sources."regjsparser-0.8.4" // { 81543 + sources."regexpu-core-5.2.1" 81544 + sources."regjsgen-0.7.1" 81545 + (sources."regjsparser-0.9.1" // { 81491 81546 dependencies = [ 81492 81547 sources."jsesc-0.5.0" 81493 81548 ]; ··· 81670 81725 sources."unicode-canonical-property-names-ecmascript-2.0.0" 81671 81726 sources."unicode-match-property-ecmascript-2.0.0" 81672 81727 sources."unicode-match-property-value-ecmascript-2.0.0" 81673 - sources."unicode-property-aliases-ecmascript-2.0.0" 81728 + sources."unicode-property-aliases-ecmascript-2.1.0" 81674 81729 sources."union-value-1.0.1" 81675 81730 sources."universalify-2.0.0" 81676 81731 sources."unpipe-1.0.0" ··· 81684 81739 sources."has-values-0.1.4" 81685 81740 ]; 81686 81741 }) 81687 - sources."update-browserslist-db-1.0.8" 81742 + sources."update-browserslist-db-1.0.9" 81688 81743 sources."urix-0.1.0" 81689 81744 sources."url-parse-lax-3.0.0" 81690 81745 sources."url-to-options-1.0.1" ··· 81873 81928 sources."@babel/code-frame-7.18.6" 81874 81929 sources."@babel/generator-7.19.0" 81875 81930 sources."@babel/helper-string-parser-7.18.10" 81876 - sources."@babel/helper-validator-identifier-7.18.6" 81931 + sources."@babel/helper-validator-identifier-7.19.1" 81877 81932 sources."@babel/highlight-7.18.6" 81878 - sources."@babel/parser-7.19.0" 81933 + sources."@babel/parser-7.19.1" 81879 81934 sources."@babel/template-7.18.10" 81880 81935 sources."@babel/types-7.19.0" 81881 81936 sources."@jridgewell/gen-mapping-0.3.2" ··· 81956 82011 }; 81957 82012 dependencies = [ 81958 82013 sources."@babel/code-frame-7.18.6" 81959 - sources."@babel/helper-validator-identifier-7.18.6" 82014 + sources."@babel/helper-validator-identifier-7.19.1" 81960 82015 sources."@babel/highlight-7.18.6" 81961 82016 sources."@sindresorhus/is-0.14.0" 81962 82017 sources."@szmarczak/http-timer-1.1.2" ··· 82437 82492 dependencies = [ 82438 82493 sources."@ampproject/remapping-2.2.0" 82439 82494 sources."@babel/code-frame-7.18.6" 82440 - sources."@babel/compat-data-7.19.0" 82441 - sources."@babel/core-7.19.0" 82495 + sources."@babel/compat-data-7.19.1" 82496 + sources."@babel/core-7.19.1" 82442 82497 (sources."@babel/generator-7.19.0" // { 82443 82498 dependencies = [ 82444 82499 sources."@jridgewell/gen-mapping-0.3.2" 82445 82500 ]; 82446 82501 }) 82447 - sources."@babel/helper-compilation-targets-7.19.0" 82502 + sources."@babel/helper-compilation-targets-7.19.1" 82448 82503 sources."@babel/helper-environment-visitor-7.18.9" 82449 82504 sources."@babel/helper-function-name-7.19.0" 82450 82505 sources."@babel/helper-hoist-variables-7.18.6" ··· 82453 82508 sources."@babel/helper-simple-access-7.18.6" 82454 82509 sources."@babel/helper-split-export-declaration-7.18.6" 82455 82510 sources."@babel/helper-string-parser-7.18.10" 82456 - sources."@babel/helper-validator-identifier-7.18.6" 82511 + sources."@babel/helper-validator-identifier-7.19.1" 82457 82512 sources."@babel/helper-validator-option-7.18.6" 82458 82513 sources."@babel/helpers-7.19.0" 82459 82514 sources."@babel/highlight-7.18.6" 82460 - sources."@babel/parser-7.19.0" 82515 + sources."@babel/parser-7.19.1" 82461 82516 sources."@babel/template-7.18.10" 82462 - sources."@babel/traverse-7.19.0" 82517 + sources."@babel/traverse-7.19.1" 82463 82518 sources."@babel/types-7.19.0" 82464 82519 sources."@jridgewell/gen-mapping-0.1.1" 82465 82520 sources."@jridgewell/resolve-uri-3.1.0" ··· 82473 82528 sources."async-3.2.4" 82474 82529 sources."balanced-match-1.0.2" 82475 82530 sources."brace-expansion-2.0.1" 82476 - sources."browserslist-4.21.3" 82477 - sources."caniuse-lite-1.0.30001399" 82531 + sources."browserslist-4.21.4" 82532 + sources."caniuse-lite-1.0.30001406" 82478 82533 sources."chalk-2.4.2" 82479 82534 sources."color-convert-1.9.3" 82480 82535 sources."color-name-1.1.3" ··· 82484 82539 sources."convert-source-map-1.8.0" 82485 82540 sources."debug-4.3.4" 82486 82541 sources."ejs-3.1.6" 82487 - sources."electron-to-chromium-1.4.248" 82542 + sources."electron-to-chromium-1.4.254" 82488 82543 sources."ensure-posix-path-1.1.1" 82489 82544 sources."escalade-3.1.1" 82490 82545 sources."escape-string-regexp-1.0.5" ··· 82565 82620 sources."to-fast-properties-2.0.0" 82566 82621 sources."underscore-1.6.0" 82567 82622 sources."universalify-0.1.2" 82568 - sources."update-browserslist-db-1.0.8" 82623 + sources."update-browserslist-db-1.0.9" 82569 82624 sources."walk-sync-0.3.4" 82570 82625 sources."which-1.3.1" 82571 82626 sources."xml2js-0.2.8" ··· 82638 82693 sources."extsprintf-1.3.0" 82639 82694 sources."fast-deep-equal-3.1.3" 82640 82695 sources."fast-json-stable-stringify-2.1.0" 82641 - sources."follow-redirects-1.15.1" 82696 + sources."follow-redirects-1.15.2" 82642 82697 sources."forever-agent-0.6.1" 82643 82698 sources."form-data-2.3.3" 82644 82699 sources."fresh-0.5.2" ··· 82786 82841 dependencies = [ 82787 82842 sources."@types/glob-7.2.0" 82788 82843 sources."@types/minimatch-5.1.2" 82789 - sources."@types/node-18.7.17" 82844 + sources."@types/node-18.7.18" 82790 82845 sources."balanced-match-1.0.2" 82791 82846 sources."brace-expansion-1.1.11" 82792 82847 sources."chromium-pickle-js-0.2.0" ··· 82864 82919 autoprefixer = nodeEnv.buildNodePackage { 82865 82920 name = "autoprefixer"; 82866 82921 packageName = "autoprefixer"; 82867 - version = "10.4.9"; 82922 + version = "10.4.11"; 82868 82923 src = fetchurl { 82869 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.9.tgz"; 82870 - sha512 = "Uu67eduPEmOeA0vyJby5ghu1AAELCCNSsLAjK+lz6kYzNM5sqnBO36MqfsjhPjQF/BaJM5U/UuFYyl7PavY/wQ=="; 82924 + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.11.tgz"; 82925 + sha512 = "5lHp6DgRodxlBLSkzHOTcufWFflH1ewfy2hvFQyjrblBFlP/0Yh4O/Wrg4ow8WRlN3AAUFFLAQwX8hTptzqVHg=="; 82871 82926 }; 82872 82927 dependencies = [ 82873 - sources."browserslist-4.21.3" 82874 - sources."caniuse-lite-1.0.30001399" 82875 - sources."electron-to-chromium-1.4.248" 82928 + sources."browserslist-4.21.4" 82929 + sources."caniuse-lite-1.0.30001406" 82930 + sources."electron-to-chromium-1.4.254" 82876 82931 sources."escalade-3.1.1" 82877 82932 sources."fraction.js-4.2.0" 82878 82933 sources."node-releases-2.0.6" 82879 82934 sources."normalize-range-0.1.2" 82880 82935 sources."picocolors-1.0.0" 82881 82936 sources."postcss-value-parser-4.2.0" 82882 - sources."update-browserslist-db-1.0.8" 82937 + sources."update-browserslist-db-1.0.9" 82883 82938 ]; 82884 82939 buildInputs = globalBuildInputs; 82885 82940 meta = { ··· 82901 82956 }; 82902 82957 dependencies = [ 82903 82958 sources."@tootallnate/once-1.1.2" 82904 - sources."@types/node-18.7.17" 82959 + sources."@types/node-18.7.18" 82905 82960 sources."@types/yauzl-2.10.0" 82906 82961 sources."agent-base-6.0.2" 82907 82962 sources."ansi-escapes-4.3.2" ··· 82909 82964 sources."ansi-styles-4.3.0" 82910 82965 sources."ast-types-0.13.4" 82911 82966 sources."available-typed-arrays-1.0.5" 82912 - (sources."aws-sdk-2.1214.0" // { 82967 + (sources."aws-sdk-2.1218.0" // { 82913 82968 dependencies = [ 82914 82969 sources."uuid-8.0.0" 82915 82970 ]; ··· 83015 83070 sources."is-arguments-1.1.1" 83016 83071 sources."is-bigint-1.0.4" 83017 83072 sources."is-boolean-object-1.1.2" 83018 - sources."is-callable-1.2.5" 83073 + sources."is-callable-1.2.6" 83019 83074 sources."is-date-object-1.0.5" 83020 83075 sources."is-fullwidth-code-point-3.0.0" 83021 83076 sources."is-generator-function-1.0.10" ··· 83156 83211 aws-cdk = nodeEnv.buildNodePackage { 83157 83212 name = "aws-cdk"; 83158 83213 packageName = "aws-cdk"; 83159 - version = "2.41.0"; 83214 + version = "2.42.0"; 83160 83215 src = fetchurl { 83161 - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.41.0.tgz"; 83162 - sha512 = "Ubko4X8VcbaLzcXvCQZPKBtgwBq033m5sSWtdrbdlDp7s2J4uWtY6KdO1uYKAvHyWjm7kGVmDyL1Wj1zx3TPUg=="; 83216 + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.42.0.tgz"; 83217 + sha512 = "BdkPhkj2PRkGSfsXh7kduUkJg+y234heWOaKzMEiauCt2Bj72wYwZhYG60TAFue7K7ngSjKzUeQ+G7SfKZcudg=="; 83163 83218 }; 83164 83219 dependencies = [ 83165 83220 sources."fsevents-2.3.2" ··· 83184 83239 }; 83185 83240 dependencies = [ 83186 83241 sources."@babel/code-frame-7.18.6" 83187 - sources."@babel/helper-validator-identifier-7.18.6" 83242 + sources."@babel/helper-validator-identifier-7.19.1" 83188 83243 (sources."@babel/highlight-7.18.6" // { 83189 83244 dependencies = [ 83190 83245 sources."ansi-styles-3.2.1" ··· 83644 83699 sources."@types/caseless-0.12.2" 83645 83700 sources."@types/connect-3.4.35" 83646 83701 sources."@types/express-4.17.13" 83647 - sources."@types/express-serve-static-core-4.17.30" 83702 + sources."@types/express-serve-static-core-4.17.31" 83648 83703 sources."@types/long-4.0.2" 83649 83704 sources."@types/mime-3.0.1" 83650 - sources."@types/node-18.7.17" 83705 + sources."@types/node-18.7.18" 83651 83706 sources."@types/qs-6.9.7" 83652 83707 sources."@types/range-parser-1.2.4" 83653 83708 sources."@types/request-2.48.8" ··· 84113 84168 sources."rx-4.1.0" 84114 84169 sources."rxjs-7.5.6" 84115 84170 sources."safe-buffer-5.1.2" 84116 - sources."safe-stable-stringify-2.3.1" 84171 + sources."safe-stable-stringify-2.4.0" 84117 84172 sources."safer-buffer-2.1.2" 84118 84173 sources."sanitize-filename-1.6.3" 84119 84174 (sources."send-0.18.0" // { ··· 84583 84638 sources."is-bigint-1.0.4" 84584 84639 sources."is-boolean-object-1.1.2" 84585 84640 sources."is-buffer-1.1.6" 84586 - sources."is-callable-1.2.5" 84641 + sources."is-callable-1.2.6" 84587 84642 sources."is-core-module-2.10.0" 84588 84643 sources."is-date-object-1.0.5" 84589 84644 sources."is-generator-function-1.0.10" ··· 84716 84771 sources."@socket.io/component-emitter-3.1.0" 84717 84772 sources."@types/cookie-0.4.1" 84718 84773 sources."@types/cors-2.8.12" 84719 - sources."@types/node-18.7.17" 84774 + sources."@types/node-18.7.18" 84720 84775 sources."accepts-1.3.8" 84721 84776 sources."ansi-regex-2.1.1" 84722 84777 sources."ansi-styles-2.2.1" ··· 84781 84836 sources."ms-2.0.0" 84782 84837 ]; 84783 84838 }) 84784 - sources."follow-redirects-1.15.1" 84839 + sources."follow-redirects-1.15.2" 84785 84840 sources."fresh-0.5.2" 84786 84841 sources."fs-extra-3.0.1" 84787 84842 sources."fsevents-2.3.2" ··· 84933 84988 dependencies = [ 84934 84989 sources."@babel/code-frame-7.18.6" 84935 84990 sources."@babel/helper-string-parser-7.18.10" 84936 - sources."@babel/helper-validator-identifier-7.18.6" 84991 + sources."@babel/helper-validator-identifier-7.19.1" 84937 84992 sources."@babel/highlight-7.18.6" 84938 - sources."@babel/parser-7.19.0" 84993 + sources."@babel/parser-7.19.1" 84939 84994 sources."@babel/types-7.19.0" 84940 84995 sources."@kwsites/file-exists-1.1.1" 84941 84996 sources."@kwsites/promise-deferred-1.1.1" ··· 85056 85111 sources."map-obj-1.0.1" 85057 85112 ]; 85058 85113 }) 85059 - sources."decimal.js-10.4.0" 85114 + sources."decimal.js-10.4.1" 85060 85115 sources."delayed-stream-1.0.0" 85061 85116 sources."denque-1.5.1" 85062 85117 sources."depd-2.0.0" ··· 85104 85159 ]; 85105 85160 }) 85106 85161 sources."find-up-4.1.0" 85107 - sources."follow-redirects-1.15.1" 85162 + sources."follow-redirects-1.15.2" 85108 85163 sources."forever-agent-0.6.1" 85109 85164 sources."form-data-2.3.3" 85110 85165 sources."forwarded-0.2.0" ··· 85401 85456 sources."@protobufjs/pool-1.1.0" 85402 85457 sources."@protobufjs/utf8-1.1.0" 85403 85458 sources."@types/long-4.0.2" 85404 - sources."@types/node-18.7.17" 85459 + sources."@types/node-18.7.18" 85405 85460 sources."addr-to-ip-port-1.5.4" 85406 85461 sources."airplay-js-0.2.16" 85407 85462 sources."ajv-6.12.6" ··· 85659 85714 sources."qs-6.5.3" 85660 85715 sources."query-string-1.0.1" 85661 85716 sources."queue-microtask-1.2.3" 85662 - sources."queue-tick-1.0.0" 85717 + sources."queue-tick-1.0.1" 85663 85718 sources."random-access-file-2.2.1" 85664 85719 sources."random-access-storage-1.4.3" 85665 85720 sources."random-iterate-1.0.1" ··· 86497 86552 cdk8s-cli = nodeEnv.buildNodePackage { 86498 86553 name = "cdk8s-cli"; 86499 86554 packageName = "cdk8s-cli"; 86500 - version = "2.0.110"; 86555 + version = "2.0.115"; 86501 86556 src = fetchurl { 86502 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.110.tgz"; 86503 - sha512 = "yr5qyJN3jLoAxWYtZ7EVNhl9vN/Qt03ZY2SpW9T9/yzrQu5czV1hEZ6dQsBUIx1jIMjPlmFelArNAiXfEPeOmw=="; 86557 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.115.tgz"; 86558 + sha512 = "+12xjYoRYF6+bOuev12qwHjvRLPNVuO4xDaBbX52ok7Edq6w4ccfuLRwN6zftH5l6S/5cRY8qWLisuhZJY81ag=="; 86504 86559 }; 86505 86560 dependencies = [ 86506 86561 sources."@jsii/check-node-1.67.0" ··· 86517 86572 sources."braces-3.0.2" 86518 86573 sources."camelcase-6.3.0" 86519 86574 sources."case-1.6.3" 86520 - sources."cdk8s-2.4.26" 86521 - sources."cdk8s-plus-22-2.0.0-rc.111" 86575 + sources."cdk8s-2.4.31" 86576 + sources."cdk8s-plus-22-2.0.0-rc.123" 86522 86577 sources."chalk-4.1.2" 86523 86578 sources."cliui-7.0.4" 86524 86579 sources."clone-2.1.2" ··· 86531 86586 sources."color-name-1.1.4" 86532 86587 sources."colors-1.4.0" 86533 86588 sources."commonmark-0.30.0" 86534 - sources."constructs-10.1.101" 86589 + sources."constructs-10.1.106" 86535 86590 sources."date-format-4.0.13" 86536 86591 sources."debug-4.3.4" 86537 86592 sources."decamelize-5.0.1" ··· 86585 86640 sources."yargs-16.2.0" 86586 86641 ]; 86587 86642 }) 86588 - (sources."jsii-srcmak-0.1.673" // { 86643 + (sources."jsii-srcmak-0.1.679" // { 86589 86644 dependencies = [ 86590 86645 sources."fs-extra-9.1.0" 86591 86646 ]; 86592 86647 }) 86593 86648 sources."json-schema-0.4.0" 86594 86649 sources."json-schema-traverse-1.0.0" 86595 - sources."json2jsii-0.3.121" 86650 + sources."json2jsii-0.3.127" 86596 86651 sources."jsonfile-6.1.0" 86597 86652 sources."locate-path-5.0.0" 86598 86653 sources."log4js-6.6.1" ··· 86680 86735 sources."@babel/code-frame-7.18.6" 86681 86736 sources."@babel/generator-7.19.0" 86682 86737 sources."@babel/helper-string-parser-7.18.10" 86683 - sources."@babel/helper-validator-identifier-7.18.6" 86738 + sources."@babel/helper-validator-identifier-7.19.1" 86684 86739 sources."@babel/highlight-7.18.6" 86685 - sources."@babel/parser-7.19.0" 86740 + sources."@babel/parser-7.19.1" 86686 86741 sources."@babel/template-7.18.10" 86687 86742 sources."@babel/types-7.19.0" 86688 86743 sources."@cdktf/hcl2cdk-0.12.2" ··· 86713 86768 sources."@sentry/node-6.19.7" 86714 86769 sources."@sentry/types-6.19.7" 86715 86770 sources."@sentry/utils-6.19.7" 86716 - sources."@types/node-18.7.17" 86771 + sources."@types/node-18.7.18" 86717 86772 sources."@types/node-fetch-2.6.2" 86718 86773 sources."@types/yargs-17.0.12" 86719 86774 sources."@types/yargs-parser-21.0.0" ··· 86748 86803 sources."combined-stream-1.0.8" 86749 86804 sources."commonmark-0.30.0" 86750 86805 sources."concat-map-0.0.1" 86751 - sources."constructs-10.1.101" 86806 + sources."constructs-10.1.106" 86752 86807 sources."cookie-0.4.2" 86753 86808 sources."cross-spawn-7.0.3" 86754 86809 sources."date-format-4.0.13" ··· 86860 86915 sources."yargs-parser-20.2.9" 86861 86916 ]; 86862 86917 }) 86863 - (sources."jsii-srcmak-0.1.673" // { 86918 + (sources."jsii-srcmak-0.1.679" // { 86864 86919 dependencies = [ 86865 86920 sources."fs-extra-9.1.0" 86866 86921 sources."jsonfile-6.1.0" ··· 87041 87096 }; 87042 87097 dependencies = [ 87043 87098 sources."@babel/code-frame-7.18.6" 87044 - sources."@babel/helper-validator-identifier-7.18.6" 87099 + sources."@babel/helper-validator-identifier-7.19.1" 87045 87100 sources."@babel/highlight-7.18.6" 87046 87101 sources."@types/minimist-1.2.2" 87047 87102 sources."@types/normalize-package-data-2.4.1" ··· 87473 87528 sources."isexe-2.0.0" 87474 87529 sources."tslib-2.4.0" 87475 87530 sources."vscode-languageserver-textdocument-1.0.7" 87476 - sources."vscode-uri-3.0.3" 87531 + sources."vscode-uri-3.0.6" 87477 87532 sources."which-2.0.2" 87478 87533 ]; 87479 87534 buildInputs = globalBuildInputs; ··· 87699 87754 sources."fast-diff-1.2.0" 87700 87755 sources."fb-watchman-2.0.1" 87701 87756 sources."flatted-3.2.7" 87702 - sources."follow-redirects-1.15.1" 87757 + sources."follow-redirects-1.15.2" 87703 87758 sources."fp-ts-2.12.3" 87704 87759 sources."fs-extra-8.1.0" 87705 87760 sources."fs-minipass-2.1.0" ··· 87733 87788 sources."internal-slot-1.0.3" 87734 87789 sources."is-bigint-1.0.4" 87735 87790 sources."is-boolean-object-1.1.2" 87736 - sources."is-callable-1.2.5" 87791 + sources."is-callable-1.2.6" 87737 87792 sources."is-date-object-1.0.5" 87738 87793 sources."is-docker-2.2.1" 87739 87794 sources."is-negative-zero-2.0.2" ··· 87894 87949 coc-pyright = nodeEnv.buildNodePackage { 87895 87950 name = "coc-pyright"; 87896 87951 packageName = "coc-pyright"; 87897 - version = "1.1.270"; 87952 + version = "1.1.271"; 87898 87953 src = fetchurl { 87899 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.270.tgz"; 87900 - sha512 = "Js6tmneYGTRm8yiJzb7ncypvUUqPKM7OyND484BhILX+ZjH9q3luVnYKERmR8ZUa22iNWCy4AEl/hvh7ENZhQg=="; 87954 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.271.tgz"; 87955 + sha512 = "tbfBTGm9rjKWC6QkcR4cbSU8O2NAniRqhoJ4lUYXIhseUCmqwxzyu2tR4dOf8sBn4gKfxjbDLM4ZskESbhB6cQ=="; 87901 87956 }; 87902 87957 dependencies = [ 87903 - sources."pyright-1.1.270" 87958 + sources."pyright-1.1.271" 87904 87959 ]; 87905 87960 buildInputs = globalBuildInputs; 87906 87961 meta = { ··· 88143 88198 dependencies = [ 88144 88199 sources."@ampproject/remapping-2.2.0" 88145 88200 sources."@babel/code-frame-7.18.6" 88146 - sources."@babel/compat-data-7.19.0" 88147 - sources."@babel/core-7.19.0" 88201 + sources."@babel/compat-data-7.19.1" 88202 + sources."@babel/core-7.19.1" 88148 88203 (sources."@babel/generator-7.19.0" // { 88149 88204 dependencies = [ 88150 88205 sources."@jridgewell/gen-mapping-0.3.2" 88151 88206 ]; 88152 88207 }) 88153 - sources."@babel/helper-compilation-targets-7.19.0" 88208 + sources."@babel/helper-compilation-targets-7.19.1" 88154 88209 sources."@babel/helper-environment-visitor-7.18.9" 88155 88210 sources."@babel/helper-function-name-7.19.0" 88156 88211 sources."@babel/helper-hoist-variables-7.18.6" ··· 88159 88214 sources."@babel/helper-simple-access-7.18.6" 88160 88215 sources."@babel/helper-split-export-declaration-7.18.6" 88161 88216 sources."@babel/helper-string-parser-7.18.10" 88162 - sources."@babel/helper-validator-identifier-7.18.6" 88217 + sources."@babel/helper-validator-identifier-7.19.1" 88163 88218 sources."@babel/helper-validator-option-7.18.6" 88164 88219 sources."@babel/helpers-7.19.0" 88165 88220 (sources."@babel/highlight-7.18.6" // { ··· 88167 88222 sources."chalk-2.4.2" 88168 88223 ]; 88169 88224 }) 88170 - sources."@babel/parser-7.19.0" 88225 + sources."@babel/parser-7.19.1" 88171 88226 sources."@babel/template-7.18.10" 88172 - sources."@babel/traverse-7.19.0" 88227 + sources."@babel/traverse-7.19.1" 88173 88228 sources."@babel/types-7.19.0" 88174 88229 sources."@jridgewell/gen-mapping-0.1.1" 88175 88230 sources."@jridgewell/resolve-uri-3.1.0" ··· 88205 88260 ]; 88206 88261 }) 88207 88262 sources."braces-3.0.2" 88208 - sources."browserslist-4.21.3" 88263 + sources."browserslist-4.21.4" 88209 88264 sources."callsites-3.1.0" 88210 88265 sources."camelcase-5.3.1" 88211 88266 sources."camelcase-keys-6.2.2" 88212 - sources."caniuse-lite-1.0.30001399" 88267 + sources."caniuse-lite-1.0.30001406" 88213 88268 (sources."chalk-4.1.2" // { 88214 88269 dependencies = [ 88215 88270 sources."ansi-styles-4.3.0" ··· 88246 88301 sources."domelementtype-1.3.1" 88247 88302 sources."domhandler-2.4.2" 88248 88303 sources."domutils-1.7.0" 88249 - sources."electron-to-chromium-1.4.248" 88304 + sources."electron-to-chromium-1.4.254" 88250 88305 sources."emoji-regex-8.0.0" 88251 88306 sources."entities-1.1.2" 88252 88307 sources."error-ex-1.3.2" ··· 88450 88505 sources."unist-util-find-all-after-3.0.2" 88451 88506 sources."unist-util-is-4.1.0" 88452 88507 sources."unist-util-stringify-position-2.0.3" 88453 - sources."update-browserslist-db-1.0.8" 88508 + sources."update-browserslist-db-1.0.9" 88454 88509 sources."uri-js-4.4.1" 88455 88510 sources."util-deprecate-1.0.2" 88456 88511 sources."v8-compile-cache-2.3.0" ··· 88589 88644 }; 88590 88645 dependencies = [ 88591 88646 sources."@babel/code-frame-7.18.6" 88592 - sources."@babel/helper-validator-identifier-7.18.6" 88647 + sources."@babel/helper-validator-identifier-7.19.1" 88593 88648 sources."@babel/highlight-7.18.6" 88594 88649 sources."ansi-styles-3.2.1" 88595 88650 sources."argparse-1.0.10" ··· 88677 88732 coc-tsserver = nodeEnv.buildNodePackage { 88678 88733 name = "coc-tsserver"; 88679 88734 packageName = "coc-tsserver"; 88680 - version = "1.11.7"; 88735 + version = "1.11.9"; 88681 88736 src = fetchurl { 88682 - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.11.7.tgz"; 88683 - sha512 = "xW8D5bKgZQm0Fp26SqAjzAKCIseRUe9JXMLcXCZz9mKh+PTWec4fxz4Uj9y01N0ZbURqmhWnxIqq+1APAlkuNg=="; 88737 + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.11.9.tgz"; 88738 + sha512 = "Uai869DPQ8UO/LdylzVstihOJUNL0nQGnUnWxtvWeToksA/xLT8afK+bva/7XlYR1p+iQ7bf+VRtWzJJQVpivQ=="; 88684 88739 }; 88685 88740 dependencies = [ 88686 88741 sources."typescript-4.8.3" ··· 88723 88778 }; 88724 88779 dependencies = [ 88725 88780 sources."@babel/code-frame-7.12.11" 88726 - sources."@babel/helper-validator-identifier-7.18.6" 88781 + sources."@babel/helper-validator-identifier-7.19.1" 88727 88782 (sources."@babel/highlight-7.18.6" // { 88728 88783 dependencies = [ 88729 88784 sources."chalk-2.4.2" ··· 89222 89277 sources."colors-1.4.0" 89223 89278 sources."commander-2.20.3" 89224 89279 sources."escape-string-regexp-1.0.5" 89225 - sources."follow-redirects-1.15.1" 89280 + sources."follow-redirects-1.15.2" 89226 89281 sources."has-flag-3.0.0" 89227 89282 sources."is-fullwidth-code-point-2.0.0" 89228 89283 sources."log-symbols-2.2.0" ··· 89265 89320 sources."cliui-7.0.4" 89266 89321 sources."color-convert-2.0.1" 89267 89322 sources."color-name-1.1.4" 89268 - sources."date-fns-2.29.2" 89323 + sources."date-fns-2.29.3" 89269 89324 sources."emoji-regex-8.0.0" 89270 89325 sources."escalade-3.1.1" 89271 89326 sources."get-caller-file-2.0.5" ··· 89319 89374 sources."eventemitter3-4.0.7" 89320 89375 sources."fecha-4.2.3" 89321 89376 sources."fn.name-1.1.0" 89322 - sources."follow-redirects-1.15.1" 89377 + sources."follow-redirects-1.15.2" 89323 89378 sources."http-proxy-1.18.1" 89324 89379 sources."inherits-2.0.4" 89325 89380 sources."is-arrayish-0.3.2" ··· 89332 89387 sources."readable-stream-3.6.0" 89333 89388 sources."requires-port-1.0.0" 89334 89389 sources."safe-buffer-5.2.1" 89335 - sources."safe-stable-stringify-2.3.1" 89390 + sources."safe-stable-stringify-2.4.0" 89336 89391 sources."simple-swizzle-0.2.2" 89337 89392 sources."stack-trace-0.0.10" 89338 89393 sources."strftime-0.10.1" ··· 89364 89419 }; 89365 89420 dependencies = [ 89366 89421 sources."@babel/code-frame-7.18.6" 89367 - sources."@babel/helper-validator-identifier-7.18.6" 89422 + sources."@babel/helper-validator-identifier-7.19.1" 89368 89423 sources."@babel/highlight-7.18.6" 89369 89424 sources."@hutson/parse-repository-url-3.0.2" 89370 89425 sources."@types/minimist-1.2.2" ··· 90205 90260 }; 90206 90261 dependencies = [ 90207 90262 sources."@babel/code-frame-7.18.6" 90208 - sources."@babel/helper-validator-identifier-7.18.6" 90263 + sources."@babel/helper-validator-identifier-7.19.1" 90209 90264 sources."@babel/highlight-7.18.6" 90210 90265 sources."@nodelib/fs.scandir-2.1.5" 90211 90266 sources."@nodelib/fs.stat-2.0.5" ··· 90345 90400 sources."@cycle/run-3.4.0" 90346 90401 sources."@cycle/time-0.10.1" 90347 90402 sources."@types/cookiejar-2.1.2" 90348 - sources."@types/node-18.7.17" 90403 + sources."@types/node-18.7.18" 90349 90404 sources."@types/superagent-3.8.2" 90350 90405 sources."ansi-escapes-3.2.0" 90351 90406 sources."ansi-regex-2.1.1" ··· 90610 90665 cspell = nodeEnv.buildNodePackage { 90611 90666 name = "cspell"; 90612 90667 packageName = "cspell"; 90613 - version = "6.8.2"; 90668 + version = "6.10.0"; 90614 90669 src = fetchurl { 90615 - url = "https://registry.npmjs.org/cspell/-/cspell-6.8.2.tgz"; 90616 - sha512 = "WHF8tQXetHgAjyG6f0rDhWXRQllSpZULOIuDZj6PeZyHubuObzsMsW0asDvL8j+EGKXr8NPo4J3vjxahYmSJ+w=="; 90670 + url = "https://registry.npmjs.org/cspell/-/cspell-6.10.0.tgz"; 90671 + sha512 = "8+mqR+DZARwJgjlY7ioQ4dGxaZS0+hT08HwoIUvNoo7xjU2K8zJjGkKhAJxc672ux0wD6ovcDnBztTaR9QrhNA=="; 90617 90672 }; 90618 90673 dependencies = [ 90619 90674 sources."@babel/code-frame-7.18.6" 90620 - sources."@babel/helper-validator-identifier-7.18.6" 90675 + sources."@babel/helper-validator-identifier-7.19.1" 90621 90676 (sources."@babel/highlight-7.18.6" // { 90622 90677 dependencies = [ 90623 90678 sources."ansi-styles-3.2.1" ··· 90628 90683 sources."supports-color-5.5.0" 90629 90684 ]; 90630 90685 }) 90631 - sources."@cspell/cspell-bundled-dicts-6.8.2" 90632 - sources."@cspell/cspell-pipe-6.8.2" 90633 - sources."@cspell/cspell-service-bus-6.8.2" 90634 - sources."@cspell/cspell-types-6.8.2" 90686 + sources."@cspell/cspell-bundled-dicts-6.10.0" 90687 + sources."@cspell/cspell-pipe-6.10.0" 90688 + sources."@cspell/cspell-service-bus-6.10.0" 90689 + sources."@cspell/cspell-types-6.10.0" 90635 90690 sources."@cspell/dict-ada-2.0.1" 90636 90691 sources."@cspell/dict-aws-2.0.0" 90637 90692 sources."@cspell/dict-bash-2.0.4" 90638 - sources."@cspell/dict-companies-2.0.13" 90693 + sources."@cspell/dict-companies-2.0.14" 90639 90694 sources."@cspell/dict-cpp-3.2.1" 90640 90695 sources."@cspell/dict-cryptocurrencies-2.0.0" 90641 90696 sources."@cspell/dict-csharp-3.0.1" ··· 90669 90724 sources."@cspell/dict-ruby-2.0.2" 90670 90725 sources."@cspell/dict-rust-2.0.1" 90671 90726 sources."@cspell/dict-scala-2.0.0" 90672 - sources."@cspell/dict-software-terms-2.2.7" 90727 + sources."@cspell/dict-software-terms-2.2.9" 90673 90728 sources."@cspell/dict-sql-1.0.4" 90674 90729 sources."@cspell/dict-swift-1.0.3" 90675 - sources."@cspell/dict-typescript-2.0.1" 90730 + sources."@cspell/dict-typescript-2.0.2" 90676 90731 sources."@cspell/dict-vue-2.0.2" 90677 90732 sources."@types/parse-json-4.0.0" 90678 90733 sources."ansi-regex-5.0.1" ··· 90693 90748 sources."core-util-is-1.0.3" 90694 90749 sources."cosmiconfig-7.0.1" 90695 90750 sources."crypto-random-string-2.0.0" 90696 - sources."cspell-gitignore-6.8.2" 90697 - sources."cspell-glob-6.8.2" 90698 - sources."cspell-grammar-6.8.2" 90699 - sources."cspell-io-6.8.2" 90700 - sources."cspell-lib-6.8.2" 90701 - sources."cspell-trie-lib-6.8.2" 90751 + sources."cspell-gitignore-6.10.0" 90752 + sources."cspell-glob-6.10.0" 90753 + sources."cspell-grammar-6.10.0" 90754 + sources."cspell-io-6.10.0" 90755 + sources."cspell-lib-6.10.0" 90756 + sources."cspell-trie-lib-6.10.0" 90702 90757 sources."dot-prop-5.3.0" 90703 90758 sources."error-ex-1.3.2" 90704 90759 sources."escape-string-regexp-1.0.5" ··· 90779 90834 sources."unique-string-2.0.0" 90780 90835 sources."universalify-2.0.0" 90781 90836 sources."vscode-languageserver-textdocument-1.0.7" 90782 - sources."vscode-uri-3.0.3" 90837 + sources."vscode-uri-3.0.4" 90783 90838 sources."webidl-conversions-3.0.1" 90784 90839 sources."whatwg-url-5.0.0" 90785 90840 sources."wrappy-1.0.2" ··· 91227 91282 sources."pump-3.0.0" 91228 91283 sources."punycode-2.1.1" 91229 91284 sources."qs-6.5.3" 91230 - sources."queue-tick-1.0.0" 91285 + sources."queue-tick-1.0.1" 91231 91286 sources."random-access-file-2.2.1" 91232 91287 sources."random-access-memory-3.1.4" 91233 91288 sources."random-access-storage-1.4.3" ··· 91468 91523 dependencies = [ 91469 91524 sources."@ampproject/remapping-2.2.0" 91470 91525 sources."@babel/code-frame-7.18.6" 91471 - sources."@babel/compat-data-7.19.0" 91472 - sources."@babel/core-7.19.0" 91526 + sources."@babel/compat-data-7.19.1" 91527 + sources."@babel/core-7.19.1" 91473 91528 (sources."@babel/generator-7.19.0" // { 91474 91529 dependencies = [ 91475 91530 sources."@jridgewell/gen-mapping-0.3.2" ··· 91477 91532 }) 91478 91533 sources."@babel/helper-annotate-as-pure-7.18.6" 91479 91534 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 91480 - sources."@babel/helper-compilation-targets-7.19.0" 91535 + sources."@babel/helper-compilation-targets-7.19.1" 91481 91536 sources."@babel/helper-create-class-features-plugin-7.19.0" 91482 91537 sources."@babel/helper-create-regexp-features-plugin-7.19.0" 91483 91538 sources."@babel/helper-define-polyfill-provider-0.3.3" ··· 91491 91546 sources."@babel/helper-optimise-call-expression-7.18.6" 91492 91547 sources."@babel/helper-plugin-utils-7.19.0" 91493 91548 sources."@babel/helper-remap-async-to-generator-7.18.9" 91494 - sources."@babel/helper-replace-supers-7.18.9" 91549 + sources."@babel/helper-replace-supers-7.19.1" 91495 91550 sources."@babel/helper-simple-access-7.18.6" 91496 91551 sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 91497 91552 sources."@babel/helper-split-export-declaration-7.18.6" 91498 91553 sources."@babel/helper-string-parser-7.18.10" 91499 - sources."@babel/helper-validator-identifier-7.18.6" 91554 + sources."@babel/helper-validator-identifier-7.19.1" 91500 91555 sources."@babel/helper-validator-option-7.18.6" 91501 91556 sources."@babel/helper-wrap-function-7.19.0" 91502 91557 sources."@babel/helpers-7.19.0" 91503 91558 sources."@babel/highlight-7.18.6" 91504 - sources."@babel/parser-7.19.0" 91559 + sources."@babel/parser-7.19.1" 91505 91560 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 91506 91561 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" 91507 - sources."@babel/plugin-proposal-async-generator-functions-7.19.0" 91562 + sources."@babel/plugin-proposal-async-generator-functions-7.19.1" 91508 91563 sources."@babel/plugin-proposal-class-properties-7.18.6" 91509 91564 sources."@babel/plugin-proposal-class-static-block-7.18.6" 91510 91565 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 91553 91608 sources."@babel/plugin-transform-modules-commonjs-7.18.6" 91554 91609 sources."@babel/plugin-transform-modules-systemjs-7.19.0" 91555 91610 sources."@babel/plugin-transform-modules-umd-7.18.6" 91556 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0" 91611 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" 91557 91612 sources."@babel/plugin-transform-new-target-7.18.6" 91558 91613 sources."@babel/plugin-transform-object-super-7.18.6" 91559 91614 sources."@babel/plugin-transform-parameters-7.18.8" ··· 91571 91626 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 91572 91627 sources."@babel/plugin-transform-unicode-escapes-7.18.10" 91573 91628 sources."@babel/plugin-transform-unicode-regex-7.18.6" 91574 - sources."@babel/preset-env-7.19.0" 91629 + sources."@babel/preset-env-7.19.1" 91575 91630 sources."@babel/preset-modules-0.1.5" 91576 91631 sources."@babel/preset-react-7.18.6" 91577 91632 sources."@babel/runtime-7.19.0" 91578 91633 sources."@babel/template-7.18.10" 91579 - sources."@babel/traverse-7.19.0" 91634 + sources."@babel/traverse-7.19.1" 91580 91635 sources."@babel/types-7.19.0" 91581 91636 sources."@blueprintjs/colors-4.1.6" 91582 - sources."@blueprintjs/core-4.9.4" 91583 - sources."@blueprintjs/icons-4.4.2" 91637 + sources."@blueprintjs/core-4.10.1" 91638 + sources."@blueprintjs/icons-4.5.0" 91584 91639 sources."@deltachat/message_parser_wasm-0.4.0" 91585 91640 sources."@deltachat/react-qr-reader-4.0.0" 91586 91641 sources."@electron/get-1.14.1" ··· 91613 91668 sources."@types/mapbox-gl-0.54.5" 91614 91669 sources."@types/mime-types-2.1.1" 91615 91670 sources."@types/minimist-1.2.2" 91616 - sources."@types/node-14.18.28" 91671 + sources."@types/node-14.18.29" 91617 91672 sources."@types/prop-types-15.7.5" 91618 91673 sources."@types/rc-1.2.1" 91619 - sources."@types/react-17.0.49" 91674 + sources."@types/react-17.0.50" 91620 91675 sources."@types/react-dom-17.0.17" 91621 91676 sources."@types/react-window-1.8.5" 91622 91677 sources."@types/react-window-infinite-loader-1.0.6" ··· 91642 91697 sources."atob-2.1.2" 91643 91698 sources."babel-plugin-dynamic-import-node-2.3.3" 91644 91699 sources."babel-plugin-polyfill-corejs2-0.3.3" 91645 - sources."babel-plugin-polyfill-corejs3-0.5.3" 91700 + sources."babel-plugin-polyfill-corejs3-0.6.0" 91646 91701 sources."babel-plugin-polyfill-regenerator-0.4.1" 91647 91702 (sources."base-0.11.2" // { 91648 91703 dependencies = [ ··· 91657 91712 sources."extend-shallow-2.0.1" 91658 91713 ]; 91659 91714 }) 91660 - sources."browserslist-4.21.3" 91715 + sources."browserslist-4.21.4" 91661 91716 sources."buffer-crc32-0.2.13" 91662 91717 sources."buffer-from-1.1.2" 91663 91718 sources."cache-base-1.0.1" ··· 91669 91724 }) 91670 91725 sources."call-bind-1.0.2" 91671 91726 sources."camel-case-4.1.2" 91672 - sources."caniuse-lite-1.0.30001399" 91727 + sources."caniuse-lite-1.0.30001406" 91673 91728 sources."capital-case-1.0.4" 91674 91729 sources."chalk-2.4.2" 91675 91730 sources."change-case-4.1.2" ··· 91702 91757 sources."constant-case-3.0.4" 91703 91758 sources."convert-source-map-1.8.0" 91704 91759 sources."copy-descriptor-0.1.1" 91705 - sources."core-js-compat-3.25.1" 91760 + sources."core-js-compat-3.25.2" 91706 91761 sources."core-util-is-1.0.3" 91707 91762 sources."csscolorparser-1.0.3" 91708 91763 sources."csstype-3.1.1" ··· 91722 91777 sources."dot-case-3.0.4" 91723 91778 sources."duplexer3-0.1.5" 91724 91779 sources."earcut-2.2.4" 91725 - (sources."electron-18.3.12" // { 91780 + (sources."electron-18.3.13" // { 91726 91781 dependencies = [ 91727 - sources."@types/node-16.11.58" 91782 + sources."@types/node-16.11.59" 91728 91783 ]; 91729 91784 }) 91730 - sources."electron-to-chromium-1.4.248" 91785 + sources."electron-to-chromium-1.4.254" 91731 91786 sources."emoji-js-clean-4.0.0" 91732 91787 sources."emoji-mart-3.0.1" 91733 91788 sources."emoji-regex-9.2.2" ··· 91976 92031 sources."readable-stream-2.3.7" 91977 92032 sources."readdirp-2.2.1" 91978 92033 sources."regenerate-1.4.2" 91979 - sources."regenerate-unicode-properties-10.0.1" 92034 + sources."regenerate-unicode-properties-10.1.0" 91980 92035 sources."regenerator-runtime-0.13.9" 91981 92036 sources."regenerator-transform-0.15.0" 91982 92037 sources."regex-not-1.0.2" 91983 92038 sources."regexp.prototype.flags-1.4.3" 91984 - sources."regexpu-core-5.1.0" 91985 - sources."regjsgen-0.6.0" 91986 - (sources."regjsparser-0.8.4" // { 92039 + sources."regexpu-core-5.2.1" 92040 + sources."regjsgen-0.7.1" 92041 + (sources."regjsparser-0.9.1" // { 91987 92042 dependencies = [ 91988 92043 sources."jsesc-0.5.0" 91989 92044 ]; ··· 92113 92168 sources."unicode-canonical-property-names-ecmascript-2.0.0" 92114 92169 sources."unicode-match-property-ecmascript-2.0.0" 92115 92170 sources."unicode-match-property-value-ecmascript-2.0.0" 92116 - sources."unicode-property-aliases-ecmascript-2.0.0" 92171 + sources."unicode-property-aliases-ecmascript-2.1.0" 92117 92172 sources."union-value-1.0.1" 92118 92173 sources."universalify-0.1.2" 92119 92174 (sources."unset-value-1.0.0" // { ··· 92127 92182 ]; 92128 92183 }) 92129 92184 sources."upath-1.2.0" 92130 - sources."update-browserslist-db-1.0.8" 92185 + sources."update-browserslist-db-1.0.9" 92131 92186 sources."upper-case-2.0.2" 92132 92187 sources."upper-case-first-2.0.2" 92133 92188 sources."urix-0.1.0" ··· 92301 92356 dependencies = [ 92302 92357 sources."@fast-csv/format-4.3.5" 92303 92358 sources."@fast-csv/parse-4.3.6" 92304 - sources."@types/node-14.18.28" 92359 + sources."@types/node-14.18.29" 92305 92360 sources."JSONStream-1.3.5" 92306 92361 sources."ajv-6.12.6" 92307 92362 sources."asn1-0.2.6" ··· 92491 92546 sources."@types/http-cache-semantics-4.0.1" 92492 92547 sources."@types/keyv-3.1.4" 92493 92548 sources."@types/minimatch-5.1.2" 92494 - sources."@types/node-18.7.17" 92549 + sources."@types/node-18.7.18" 92495 92550 sources."@types/responselike-1.0.0" 92496 92551 sources."@types/yauzl-2.10.0" 92497 92552 sources."abbrev-1.1.1" ··· 93019 93074 dependencies = [ 93020 93075 sources."@ampproject/remapping-2.2.0" 93021 93076 sources."@babel/code-frame-7.18.6" 93022 - sources."@babel/compat-data-7.19.0" 93023 - (sources."@babel/core-7.19.0" // { 93077 + sources."@babel/compat-data-7.19.1" 93078 + (sources."@babel/core-7.19.1" // { 93024 93079 dependencies = [ 93025 93080 sources."semver-6.3.0" 93026 93081 ]; ··· 93031 93086 ]; 93032 93087 }) 93033 93088 sources."@babel/helper-annotate-as-pure-7.18.6" 93034 - (sources."@babel/helper-compilation-targets-7.19.0" // { 93089 + (sources."@babel/helper-compilation-targets-7.19.1" // { 93035 93090 dependencies = [ 93036 93091 sources."semver-6.3.0" 93037 93092 ]; ··· 93045 93100 sources."@babel/helper-simple-access-7.18.6" 93046 93101 sources."@babel/helper-split-export-declaration-7.18.6" 93047 93102 sources."@babel/helper-string-parser-7.18.10" 93048 - sources."@babel/helper-validator-identifier-7.18.6" 93103 + sources."@babel/helper-validator-identifier-7.19.1" 93049 93104 sources."@babel/helper-validator-option-7.18.6" 93050 93105 sources."@babel/helpers-7.19.0" 93051 93106 sources."@babel/highlight-7.18.6" 93052 - sources."@babel/parser-7.19.0" 93107 + sources."@babel/parser-7.19.1" 93053 93108 sources."@babel/plugin-proposal-object-rest-spread-7.18.9" 93054 93109 sources."@babel/plugin-syntax-jsx-7.18.6" 93055 93110 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 93057 93112 sources."@babel/plugin-transform-parameters-7.18.8" 93058 93113 sources."@babel/plugin-transform-react-jsx-7.19.0" 93059 93114 sources."@babel/template-7.18.10" 93060 - sources."@babel/traverse-7.19.0" 93115 + sources."@babel/traverse-7.19.1" 93061 93116 sources."@babel/types-7.19.0" 93062 93117 sources."@jridgewell/gen-mapping-0.1.1" 93063 93118 sources."@jridgewell/resolve-uri-3.1.0" ··· 93082 93137 sources."auto-bind-4.0.0" 93083 93138 sources."balanced-match-1.0.2" 93084 93139 sources."brace-expansion-1.1.11" 93085 - sources."browserslist-4.21.3" 93140 + sources."browserslist-4.21.4" 93086 93141 sources."caller-callsite-4.1.0" 93087 93142 sources."caller-path-3.0.1" 93088 93143 sources."callsites-3.1.0" 93089 93144 sources."camelcase-5.3.1" 93090 93145 sources."camelcase-keys-6.2.2" 93091 - sources."caniuse-lite-1.0.30001399" 93146 + sources."caniuse-lite-1.0.30001406" 93092 93147 sources."chalk-2.4.2" 93093 93148 sources."ci-info-2.0.0" 93094 93149 sources."cli-boxes-2.2.1" ··· 93117 93172 ]; 93118 93173 }) 93119 93174 sources."dot-prop-5.3.0" 93120 - sources."electron-to-chromium-1.4.248" 93175 + sources."electron-to-chromium-1.4.254" 93121 93176 sources."emoji-regex-8.0.0" 93122 93177 sources."emojilib-2.4.0" 93123 93178 sources."end-of-stream-1.4.4" ··· 93242 93297 sources."punycode-2.1.1" 93243 93298 sources."quick-lru-4.0.1" 93244 93299 sources."react-16.14.0" 93245 - sources."react-devtools-core-4.25.0" 93300 + sources."react-devtools-core-4.26.0" 93246 93301 sources."react-is-16.13.1" 93247 93302 sources."react-reconciler-0.26.2" 93248 93303 (sources."read-pkg-5.2.0" // { ··· 93298 93353 sources."trim-newlines-3.0.1" 93299 93354 sources."type-fest-0.12.0" 93300 93355 sources."unicode-emoji-modifier-base-1.0.0" 93301 - sources."update-browserslist-db-1.0.8" 93356 + sources."update-browserslist-db-1.0.9" 93302 93357 sources."uri-js-4.4.1" 93303 93358 sources."validate-npm-package-license-3.0.4" 93304 93359 sources."which-1.3.1" ··· 93350 93405 src = ../../applications/video/epgstation; 93351 93406 dependencies = [ 93352 93407 sources."@babel/code-frame-7.12.11" 93353 - sources."@babel/helper-validator-identifier-7.18.6" 93408 + sources."@babel/helper-validator-identifier-7.19.1" 93354 93409 (sources."@babel/highlight-7.18.6" // { 93355 93410 dependencies = [ 93356 93411 sources."ansi-styles-3.2.1" ··· 93387 93442 sources."@fluentui/foundation-legacy-8.2.20" 93388 93443 sources."@fluentui/keyboard-key-0.4.2" 93389 93444 sources."@fluentui/merge-styles-8.5.3" 93390 - sources."@fluentui/react-8.94.4" 93445 + sources."@fluentui/react-8.96.0" 93391 93446 sources."@fluentui/react-focus-8.8.5" 93392 93447 sources."@fluentui/react-hooks-8.6.11" 93393 - sources."@fluentui/react-portal-compat-context-9.0.1" 93448 + sources."@fluentui/react-portal-compat-context-9.0.2" 93394 93449 sources."@fluentui/react-window-provider-2.2.2" 93395 93450 sources."@fluentui/set-version-8.2.2" 93396 93451 sources."@fluentui/style-utilities-8.7.12" ··· 93449 93504 sources."@types/cookie-0.4.1" 93450 93505 sources."@types/cors-2.8.12" 93451 93506 sources."@types/express-4.17.13" 93452 - sources."@types/express-serve-static-core-4.17.30" 93507 + sources."@types/express-serve-static-core-4.17.31" 93453 93508 sources."@types/file-type-10.9.1" 93454 93509 sources."@types/js-yaml-4.0.4" 93455 93510 sources."@types/json-schema-7.0.11" ··· 93961 94016 sources."string_decoder-1.1.1" 93962 94017 ]; 93963 94018 }) 93964 - sources."follow-redirects-1.15.1" 94019 + sources."follow-redirects-1.15.2" 93965 94020 sources."for-in-1.0.2" 93966 94021 sources."for-own-1.0.0" 93967 94022 sources."forever-agent-0.6.1" ··· 94343 94398 ]; 94344 94399 }) 94345 94400 sources."mkdirp-1.0.4" 94346 - sources."mongodb-4.9.1" 94401 + sources."mongodb-4.10.0" 94347 94402 sources."mongodb-connection-string-url-2.5.3" 94348 94403 (sources."morgan-1.10.0" // { 94349 94404 dependencies = [ ··· 94813 94868 sources."tough-cookie-2.5.0" 94814 94869 sources."tr46-3.0.0" 94815 94870 sources."ts-loader-9.2.6" 94816 - sources."ts-log-2.2.4" 94871 + sources."ts-log-2.2.5" 94817 94872 (sources."ts-node-10.4.0" // { 94818 94873 dependencies = [ 94819 94874 sources."acorn-8.8.0" ··· 94965 95020 dependencies = [ 94966 95021 sources."@achrinza/node-ipc-9.2.2" 94967 95022 sources."@babel/code-frame-7.18.6" 94968 - sources."@babel/helper-validator-identifier-7.18.6" 95023 + sources."@babel/helper-validator-identifier-7.19.1" 94969 95024 sources."@babel/highlight-7.18.6" 94970 95025 (sources."@eslint/eslintrc-0.4.3" // { 94971 95026 dependencies = [ ··· 95004 95059 sources."@types/body-parser-1.19.2" 95005 95060 sources."@types/connect-3.4.35" 95006 95061 sources."@types/connect-history-api-fallback-1.3.5" 95007 - sources."@types/express-4.17.13" 95008 - sources."@types/express-serve-static-core-4.17.30" 95062 + sources."@types/express-4.17.14" 95063 + sources."@types/express-serve-static-core-4.17.31" 95009 95064 sources."@types/glob-7.2.0" 95010 95065 sources."@types/hls.js-0.13.3" 95011 95066 sources."@types/http-proxy-1.17.9" ··· 95015 95070 sources."@types/mime-3.0.1" 95016 95071 sources."@types/minimatch-5.1.2" 95017 95072 sources."@types/minimist-1.2.2" 95018 - sources."@types/node-18.7.17" 95073 + sources."@types/node-18.7.18" 95019 95074 sources."@types/normalize-package-data-2.4.1" 95020 95075 sources."@types/parse-json-4.0.0" 95021 95076 sources."@types/q-1.5.5" ··· 95289 95344 ]; 95290 95345 }) 95291 95346 sources."browserify-zlib-0.2.0" 95292 - sources."browserslist-4.21.3" 95347 + sources."browserslist-4.21.4" 95293 95348 sources."buffer-4.9.2" 95294 95349 sources."buffer-from-1.1.2" 95295 95350 sources."buffer-indexof-1.1.1" ··· 95331 95386 sources."camel-case-3.0.0" 95332 95387 sources."camelcase-5.3.1" 95333 95388 sources."caniuse-api-3.0.0" 95334 - sources."caniuse-lite-1.0.30001399" 95389 + sources."caniuse-lite-1.0.30001406" 95335 95390 sources."case-sensitive-paths-webpack-plugin-2.4.0" 95336 95391 sources."caseless-0.12.0" 95337 95392 sources."chalk-2.4.2" ··· 95495 95550 }) 95496 95551 sources."cyclist-1.0.1" 95497 95552 sources."dashdash-1.14.1" 95498 - sources."date-fns-2.29.2" 95553 + sources."date-fns-2.29.3" 95499 95554 sources."de-indent-1.0.2" 95500 95555 sources."debug-4.3.4" 95501 95556 sources."decache-4.6.1" ··· 95572 95627 sources."ecc-jsbn-0.1.2" 95573 95628 sources."ee-first-1.1.1" 95574 95629 sources."ejs-2.7.4" 95575 - sources."electron-to-chromium-1.4.248" 95630 + sources."electron-to-chromium-1.4.254" 95576 95631 (sources."elliptic-6.5.4" // { 95577 95632 dependencies = [ 95578 95633 sources."bn.js-4.12.0" ··· 95748 95803 }) 95749 95804 sources."flatted-3.2.7" 95750 95805 sources."flush-write-stream-1.1.1" 95751 - sources."follow-redirects-1.15.1" 95806 + sources."follow-redirects-1.15.2" 95752 95807 sources."for-in-1.0.2" 95753 95808 sources."forever-agent-0.6.1" 95754 95809 (sources."fork-ts-checker-webpack-plugin-3.1.1" // { ··· 95935 95990 sources."is-binary-path-2.1.0" 95936 95991 sources."is-boolean-object-1.1.2" 95937 95992 sources."is-buffer-1.1.6" 95938 - sources."is-callable-1.2.5" 95993 + sources."is-callable-1.2.6" 95939 95994 sources."is-ci-1.2.1" 95940 95995 sources."is-color-stop-1.1.0" 95941 95996 sources."is-core-module-2.10.0" ··· 96685 96740 ]; 96686 96741 }) 96687 96742 sources."upath-1.2.0" 96688 - sources."update-browserslist-db-1.0.8" 96743 + sources."update-browserslist-db-1.0.9" 96689 96744 sources."upper-case-1.1.3" 96690 96745 sources."uri-js-4.4.1" 96691 96746 sources."urix-0.1.0" ··· 97259 97314 sources."@babel/helper-simple-access-7.18.6" 97260 97315 sources."@babel/helper-split-export-declaration-7.18.6" 97261 97316 sources."@babel/helper-string-parser-7.18.10" 97262 - sources."@babel/helper-validator-identifier-7.18.6" 97317 + sources."@babel/helper-validator-identifier-7.19.1" 97263 97318 sources."@babel/helpers-7.19.0" 97264 97319 (sources."@babel/highlight-7.18.6" // { 97265 97320 dependencies = [ 97266 97321 sources."chalk-2.4.2" 97267 97322 ]; 97268 97323 }) 97269 - sources."@babel/parser-7.19.0" 97324 + sources."@babel/parser-7.19.1" 97270 97325 sources."@babel/runtime-7.9.0" 97271 97326 (sources."@babel/template-7.18.10" // { 97272 97327 dependencies = [ 97273 97328 sources."@babel/code-frame-7.18.6" 97274 97329 ]; 97275 97330 }) 97276 - (sources."@babel/traverse-7.19.0" // { 97331 + (sources."@babel/traverse-7.19.1" // { 97277 97332 dependencies = [ 97278 97333 sources."@babel/code-frame-7.18.6" 97279 97334 ]; 97280 97335 }) 97281 97336 sources."@babel/types-7.19.0" 97337 + sources."@colors/colors-1.5.0" 97282 97338 sources."@expo/apple-utils-0.0.0-alpha.31" 97283 97339 sources."@expo/bunyan-4.0.0" 97284 97340 sources."@expo/config-6.0.24" ··· 97365 97421 sources."@types/json-schema-7.0.11" 97366 97422 sources."@types/keyv-3.1.4" 97367 97423 sources."@types/minimatch-5.1.2" 97368 - sources."@types/node-18.7.17" 97424 + sources."@types/node-18.7.18" 97369 97425 sources."@types/q-1.5.5" 97370 97426 sources."@types/responselike-1.0.0" 97371 97427 sources."@types/retry-0.12.2" ··· 97516 97572 ]; 97517 97573 }) 97518 97574 sources."browserify-zlib-0.2.0" 97519 - sources."browserslist-4.21.3" 97575 + sources."browserslist-4.21.4" 97520 97576 sources."buffer-4.9.2" 97521 97577 sources."buffer-from-1.1.2" 97522 97578 sources."buffer-indexof-1.1.1" ··· 97545 97601 }) 97546 97602 sources."camelcase-6.3.0" 97547 97603 sources."caniuse-api-3.0.0" 97548 - sources."caniuse-lite-1.0.30001399" 97604 + sources."caniuse-lite-1.0.30001406" 97549 97605 (sources."chalk-4.1.2" // { 97550 97606 dependencies = [ 97551 97607 sources."ansi-styles-4.3.0" ··· 97596 97652 sources."cli-boxes-2.2.1" 97597 97653 sources."cli-cursor-2.1.0" 97598 97654 sources."cli-spinners-2.7.0" 97599 - sources."cli-table3-0.6.2" 97655 + sources."cli-table3-0.6.3" 97600 97656 (sources."cliui-5.0.0" // { 97601 97657 dependencies = [ 97602 97658 sources."ansi-regex-4.1.1" ··· 97795 97851 sources."duplexer3-0.1.5" 97796 97852 sources."duplexify-3.7.1" 97797 97853 sources."ee-first-1.1.1" 97798 - sources."electron-to-chromium-1.4.248" 97854 + sources."electron-to-chromium-1.4.254" 97799 97855 (sources."elliptic-6.5.4" // { 97800 97856 dependencies = [ 97801 97857 sources."bn.js-4.12.0" ··· 97928 97984 sources."find-up-5.0.0" 97929 97985 sources."find-yarn-workspace-root-2.0.0" 97930 97986 sources."flush-write-stream-1.1.1" 97931 - sources."follow-redirects-1.15.1" 97987 + sources."follow-redirects-1.15.2" 97932 97988 sources."for-in-1.0.2" 97933 97989 (sources."fork-ts-checker-webpack-plugin-4.1.6" // { 97934 97990 dependencies = [ ··· 98093 98149 sources."is-binary-path-2.1.0" 98094 98150 sources."is-boolean-object-1.1.2" 98095 98151 sources."is-buffer-1.1.6" 98096 - sources."is-callable-1.2.5" 98152 + sources."is-callable-1.2.6" 98097 98153 sources."is-color-stop-1.1.0" 98098 98154 sources."is-core-module-2.10.0" 98099 98155 sources."is-data-descriptor-1.0.0" ··· 98876 98932 sources."postcss-selector-parser-3.1.2" 98877 98933 ]; 98878 98934 }) 98879 - (sources."sucrase-3.26.0" // { 98935 + (sources."sucrase-3.27.0" // { 98880 98936 dependencies = [ 98881 98937 sources."commander-4.1.1" 98882 98938 ]; ··· 98997 99053 }) 98998 99054 sources."untildify-3.0.3" 98999 99055 sources."upath-1.2.0" 99000 - (sources."update-browserslist-db-1.0.8" // { 99056 + (sources."update-browserslist-db-1.0.9" // { 99001 99057 dependencies = [ 99002 99058 sources."picocolors-1.0.0" 99003 99059 ]; ··· 99255 99311 dependencies = [ 99256 99312 sources."@ampproject/remapping-2.2.0" 99257 99313 sources."@babel/code-frame-7.18.6" 99258 - sources."@babel/compat-data-7.19.0" 99259 - sources."@babel/core-7.19.0" 99314 + sources."@babel/compat-data-7.19.1" 99315 + sources."@babel/core-7.19.1" 99260 99316 (sources."@babel/generator-7.19.0" // { 99261 99317 dependencies = [ 99262 99318 sources."@jridgewell/gen-mapping-0.3.2" 99263 99319 ]; 99264 99320 }) 99265 99321 sources."@babel/helper-annotate-as-pure-7.18.6" 99266 - sources."@babel/helper-compilation-targets-7.19.0" 99322 + sources."@babel/helper-compilation-targets-7.19.1" 99267 99323 sources."@babel/helper-environment-visitor-7.18.9" 99268 99324 sources."@babel/helper-function-name-7.19.0" 99269 99325 sources."@babel/helper-hoist-variables-7.18.6" ··· 99273 99329 sources."@babel/helper-simple-access-7.18.6" 99274 99330 sources."@babel/helper-split-export-declaration-7.18.6" 99275 99331 sources."@babel/helper-string-parser-7.18.10" 99276 - sources."@babel/helper-validator-identifier-7.18.6" 99332 + sources."@babel/helper-validator-identifier-7.19.1" 99277 99333 sources."@babel/helper-validator-option-7.18.6" 99278 99334 sources."@babel/helpers-7.19.0" 99279 99335 sources."@babel/highlight-7.18.6" 99280 - sources."@babel/parser-7.19.0" 99336 + sources."@babel/parser-7.19.1" 99281 99337 sources."@babel/plugin-proposal-object-rest-spread-7.18.9" 99282 99338 sources."@babel/plugin-syntax-jsx-7.18.6" 99283 99339 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" ··· 99285 99341 sources."@babel/plugin-transform-parameters-7.18.8" 99286 99342 sources."@babel/plugin-transform-react-jsx-7.19.0" 99287 99343 sources."@babel/template-7.18.10" 99288 - sources."@babel/traverse-7.19.0" 99344 + sources."@babel/traverse-7.19.1" 99289 99345 sources."@babel/types-7.19.0" 99290 99346 sources."@jridgewell/gen-mapping-0.1.1" 99291 99347 sources."@jridgewell/resolve-uri-3.1.0" ··· 99293 99349 sources."@jridgewell/sourcemap-codec-1.4.14" 99294 99350 sources."@jridgewell/trace-mapping-0.3.15" 99295 99351 sources."@types/minimist-1.2.2" 99296 - sources."@types/node-18.7.17" 99352 + sources."@types/node-18.7.18" 99297 99353 sources."@types/normalize-package-data-2.4.1" 99298 99354 sources."@types/yauzl-2.10.0" 99299 99355 sources."@types/yoga-layout-1.9.2" ··· 99312 99368 sources."base64-js-1.5.1" 99313 99369 sources."bl-4.1.0" 99314 99370 sources."brace-expansion-1.1.11" 99315 - sources."browserslist-4.21.3" 99371 + sources."browserslist-4.21.4" 99316 99372 sources."buffer-5.7.1" 99317 99373 sources."buffer-crc32-0.2.13" 99318 99374 sources."caller-callsite-4.1.0" ··· 99320 99376 sources."callsites-3.1.0" 99321 99377 sources."camelcase-5.3.1" 99322 99378 sources."camelcase-keys-6.2.2" 99323 - sources."caniuse-lite-1.0.30001399" 99379 + sources."caniuse-lite-1.0.30001406" 99324 99380 sources."chalk-2.4.2" 99325 99381 sources."chownr-1.1.4" 99326 99382 sources."ci-info-2.0.0" ··· 99345 99401 }) 99346 99402 sources."delay-5.0.0" 99347 99403 sources."devtools-protocol-0.0.981744" 99348 - sources."electron-to-chromium-1.4.248" 99404 + sources."electron-to-chromium-1.4.254" 99349 99405 sources."emoji-regex-8.0.0" 99350 99406 sources."end-of-stream-1.4.4" 99351 99407 sources."error-ex-1.3.2" ··· 99442 99498 }) 99443 99499 sources."quick-lru-4.0.1" 99444 99500 sources."react-17.0.2" 99445 - sources."react-devtools-core-4.25.0" 99501 + sources."react-devtools-core-4.26.0" 99446 99502 sources."react-reconciler-0.26.2" 99447 99503 (sources."read-pkg-5.2.0" // { 99448 99504 dependencies = [ ··· 99502 99558 sources."trim-newlines-3.0.1" 99503 99559 sources."type-fest-0.12.0" 99504 99560 sources."unbzip2-stream-1.4.3" 99505 - sources."update-browserslist-db-1.0.8" 99561 + sources."update-browserslist-db-1.0.9" 99506 99562 sources."util-deprecate-1.0.2" 99507 99563 sources."validate-npm-package-license-3.0.4" 99508 99564 sources."webidl-conversions-3.0.1" ··· 99703 99759 sources."fast-json-stable-stringify-2.1.0" 99704 99760 sources."fast-levenshtein-2.0.6" 99705 99761 sources."fastq-1.13.0" 99706 - sources."faunadb-4.6.0" 99762 + sources."faunadb-4.7.0" 99707 99763 (sources."figures-3.2.0" // { 99708 99764 dependencies = [ 99709 99765 sources."escape-string-regexp-1.0.5" ··· 99934 99990 sources."js-yaml-4.1.0" 99935 99991 ]; 99936 99992 }) 99937 - sources."@babel/parser-7.19.0" 99993 + sources."@babel/parser-7.19.1" 99938 99994 sources."@colors/colors-1.5.0" 99939 99995 sources."@dabh/diagnostics-2.0.3" 99940 99996 sources."@gar/promisify-1.1.3" ··· 99977 100033 sources."@types/long-4.0.2" 99978 100034 sources."@types/markdown-it-12.2.3" 99979 100035 sources."@types/mdurl-1.0.2" 99980 - sources."@types/node-18.7.17" 100036 + sources."@types/node-18.7.18" 99981 100037 sources."abbrev-1.1.1" 99982 100038 sources."abort-controller-3.0.0" 99983 100039 sources."accepts-1.3.8" ··· 100092 100148 sources."cli-cursor-3.1.0" 100093 100149 sources."cli-spinners-2.7.0" 100094 100150 sources."cli-table-0.3.11" 100095 - sources."cli-table3-0.6.2" 100151 + sources."cli-table3-0.6.3" 100096 100152 sources."cli-width-3.0.0" 100097 100153 sources."cliui-7.0.4" 100098 100154 sources."clone-1.0.4" ··· 100634 100690 sources."responselike-1.0.2" 100635 100691 sources."restore-cursor-3.1.0" 100636 100692 sources."retry-0.13.1" 100637 - sources."retry-request-5.0.1" 100693 + sources."retry-request-5.0.2" 100638 100694 sources."rimraf-3.0.2" 100639 100695 (sources."router-1.3.7" // { 100640 100696 dependencies = [ ··· 100646 100702 sources."run-async-2.4.1" 100647 100703 sources."rxjs-7.5.6" 100648 100704 sources."safe-buffer-5.2.1" 100649 - sources."safe-stable-stringify-2.3.1" 100705 + sources."safe-stable-stringify-2.4.0" 100650 100706 sources."safer-buffer-2.1.2" 100651 100707 sources."semver-5.7.1" 100652 100708 (sources."semver-diff-3.1.1" // { ··· 100885 100941 }; 100886 100942 dependencies = [ 100887 100943 sources."@babel/code-frame-7.18.6" 100888 - sources."@babel/helper-validator-identifier-7.18.6" 100944 + sources."@babel/helper-validator-identifier-7.19.1" 100889 100945 (sources."@babel/highlight-7.18.6" // { 100890 100946 dependencies = [ 100891 100947 sources."ansi-styles-3.2.1" ··· 101109 101165 sources."@types/atob-2.1.2" 101110 101166 sources."@types/bn.js-5.1.1" 101111 101167 sources."@types/inquirer-6.5.0" 101112 - sources."@types/node-18.7.17" 101168 + sources."@types/node-18.7.18" 101113 101169 sources."@types/pbkdf2-3.1.0" 101114 101170 sources."@types/secp256k1-4.0.3" 101115 101171 sources."@types/through-0.0.30" ··· 101297 101353 sources."util-deprecate-1.0.2" 101298 101354 sources."uuid-3.4.0" 101299 101355 sources."verror-1.10.0" 101300 - sources."web3-utils-1.7.5" 101356 + sources."web3-utils-1.8.0" 101301 101357 sources."webidl-conversions-3.0.1" 101302 101358 sources."whatwg-url-5.0.0" 101303 101359 sources."which-module-2.0.0" ··· 101525 101581 sources."is-binary-path-1.0.1" 101526 101582 sources."is-boolean-object-1.1.2" 101527 101583 sources."is-buffer-1.1.6" 101528 - sources."is-callable-1.2.5" 101584 + sources."is-callable-1.2.6" 101529 101585 sources."is-data-descriptor-1.0.0" 101530 101586 sources."is-date-object-1.0.5" 101531 101587 sources."is-descriptor-1.0.2" ··· 101655 101711 sources."rimraf-2.7.1" 101656 101712 sources."safe-buffer-5.1.2" 101657 101713 sources."safe-regex-1.1.0" 101658 - sources."safe-stable-stringify-2.3.1" 101714 + sources."safe-stable-stringify-2.4.0" 101659 101715 (sources."set-value-2.0.1" // { 101660 101716 dependencies = [ 101661 101717 sources."extend-shallow-2.0.1" ··· 101857 101913 dependencies = [ 101858 101914 sources."@ampproject/remapping-2.2.0" 101859 101915 sources."@babel/code-frame-7.18.6" 101860 - sources."@babel/compat-data-7.19.0" 101861 - (sources."@babel/core-7.19.0" // { 101916 + sources."@babel/compat-data-7.19.1" 101917 + (sources."@babel/core-7.19.1" // { 101862 101918 dependencies = [ 101863 101919 sources."semver-6.3.0" 101864 101920 ]; ··· 101869 101925 ]; 101870 101926 }) 101871 101927 sources."@babel/helper-annotate-as-pure-7.18.6" 101872 - (sources."@babel/helper-compilation-targets-7.19.0" // { 101928 + (sources."@babel/helper-compilation-targets-7.19.1" // { 101873 101929 dependencies = [ 101874 101930 sources."semver-6.3.0" 101875 101931 ]; ··· 101883 101939 sources."@babel/helper-module-transforms-7.19.0" 101884 101940 sources."@babel/helper-optimise-call-expression-7.18.6" 101885 101941 sources."@babel/helper-plugin-utils-7.19.0" 101886 - sources."@babel/helper-replace-supers-7.18.9" 101942 + sources."@babel/helper-replace-supers-7.19.1" 101887 101943 sources."@babel/helper-simple-access-7.18.6" 101888 101944 sources."@babel/helper-split-export-declaration-7.18.6" 101889 101945 sources."@babel/helper-string-parser-7.18.10" 101890 - sources."@babel/helper-validator-identifier-7.18.6" 101946 + sources."@babel/helper-validator-identifier-7.19.1" 101891 101947 sources."@babel/helper-validator-option-7.18.6" 101892 101948 sources."@babel/helpers-7.19.0" 101893 101949 (sources."@babel/highlight-7.18.6" // { ··· 101895 101951 sources."chalk-2.4.2" 101896 101952 ]; 101897 101953 }) 101898 - sources."@babel/parser-7.19.0" 101954 + sources."@babel/parser-7.19.1" 101899 101955 sources."@babel/plugin-syntax-typescript-7.18.6" 101900 - sources."@babel/plugin-transform-typescript-7.19.0" 101956 + sources."@babel/plugin-transform-typescript-7.19.1" 101901 101957 sources."@babel/preset-typescript-7.18.6" 101902 101958 sources."@babel/runtime-7.19.0" 101903 101959 sources."@babel/template-7.18.10" 101904 - sources."@babel/traverse-7.19.0" 101960 + sources."@babel/traverse-7.19.1" 101905 101961 sources."@babel/types-7.19.0" 101906 101962 sources."@hapi/hoek-9.3.0" 101907 101963 sources."@hapi/topo-5.1.0" ··· 101934 101990 sources."@types/common-tags-1.8.1" 101935 101991 sources."@types/http-cache-semantics-4.0.1" 101936 101992 sources."@types/keyv-3.1.4" 101937 - sources."@types/node-18.7.17" 101993 + sources."@types/node-18.7.18" 101938 101994 sources."@types/node-fetch-2.6.2" 101939 101995 sources."@types/responselike-1.0.0" 101940 101996 sources."@types/yoga-layout-1.9.2" ··· 101953 102009 sources."boolbase-1.0.0" 101954 102010 sources."boxen-5.1.2" 101955 102011 sources."brace-expansion-1.1.11" 101956 - sources."browserslist-4.21.3" 102012 + sources."browserslist-4.21.4" 101957 102013 sources."cacheable-lookup-5.0.4" 101958 102014 (sources."cacheable-request-7.0.2" // { 101959 102015 dependencies = [ ··· 101961 102017 ]; 101962 102018 }) 101963 102019 sources."camelcase-6.3.0" 101964 - sources."caniuse-lite-1.0.30001399" 102020 + sources."caniuse-lite-1.0.30001406" 101965 102021 (sources."chalk-4.1.2" // { 101966 102022 dependencies = [ 101967 102023 sources."ansi-styles-4.3.0" ··· 102024 102080 sources."domutils-2.8.0" 102025 102081 sources."dot-prop-5.3.0" 102026 102082 sources."duplexer3-0.1.5" 102027 - sources."electron-to-chromium-1.4.248" 102083 + sources."electron-to-chromium-1.4.254" 102028 102084 sources."emoji-regex-8.0.0" 102029 102085 sources."end-of-stream-1.4.4" 102030 102086 sources."entities-2.2.0" ··· 102141 102197 sources."minimatch-3.1.2" 102142 102198 sources."minimist-1.2.6" 102143 102199 sources."ms-2.1.2" 102144 - sources."msgpackr-1.6.2" 102200 + sources."msgpackr-1.6.3" 102145 102201 sources."msgpackr-extract-2.1.2" 102146 102202 sources."mute-stream-0.0.8" 102147 102203 sources."nice-try-1.0.5" ··· 102273 102329 sources."typedarray-to-buffer-3.1.5" 102274 102330 sources."unique-string-2.0.0" 102275 102331 sources."universalify-2.0.0" 102276 - sources."update-browserslist-db-1.0.8" 102332 + sources."update-browserslist-db-1.0.9" 102277 102333 sources."update-notifier-5.1.0" 102278 102334 sources."url-parse-lax-3.0.0" 102279 102335 sources."util-deprecate-1.0.2" ··· 102331 102387 }; 102332 102388 dependencies = [ 102333 102389 sources."@babel/code-frame-7.18.6" 102334 - sources."@babel/helper-validator-identifier-7.18.6" 102390 + sources."@babel/helper-validator-identifier-7.19.1" 102335 102391 (sources."@babel/highlight-7.18.6" // { 102336 102392 dependencies = [ 102337 102393 sources."ansi-styles-3.2.1" ··· 102706 102762 dependencies = [ 102707 102763 (sources."ssb-config-3.4.6" // { 102708 102764 dependencies = [ 102709 - sources."ssb-keys-8.4.1" 102765 + sources."ssb-keys-8.5.0" 102710 102766 ]; 102711 102767 }) 102712 102768 ]; ··· 102735 102791 sources."ssb-pull-requests-1.0.0" 102736 102792 sources."ssb-ref-2.16.0" 102737 102793 sources."ssb-typescript-2.8.0" 102738 - sources."ssb-uri2-2.0.2" 102794 + sources."ssb-uri2-2.1.0" 102739 102795 (sources."stream-to-pull-stream-1.7.3" // { 102740 102796 dependencies = [ 102741 102797 sources."looper-3.0.0" ··· 102794 102850 sources."@types/cacheable-request-6.0.2" 102795 102851 sources."@types/http-cache-semantics-4.0.1" 102796 102852 sources."@types/keyv-3.1.4" 102797 - sources."@types/node-18.7.17" 102853 + sources."@types/node-18.7.18" 102798 102854 sources."@types/responselike-1.0.0" 102799 102855 sources."ansi-regex-6.0.1" 102800 102856 sources."ansi-styles-4.3.0" ··· 102905 102961 }; 102906 102962 dependencies = [ 102907 102963 sources."@babel/code-frame-7.18.6" 102908 - sources."@babel/helper-validator-identifier-7.18.6" 102964 + sources."@babel/helper-validator-identifier-7.19.1" 102909 102965 (sources."@babel/highlight-7.18.6" // { 102910 102966 dependencies = [ 102911 102967 sources."ansi-styles-3.2.1" ··· 103472 103528 dependencies = [ 103473 103529 sources."@ardatan/aggregate-error-0.0.6" 103474 103530 sources."@babel/code-frame-7.18.6" 103475 - sources."@babel/helper-validator-identifier-7.18.6" 103531 + sources."@babel/helper-validator-identifier-7.19.1" 103476 103532 (sources."@babel/highlight-7.18.6" // { 103477 103533 dependencies = [ 103478 103534 sources."ansi-styles-3.2.1" ··· 103575 103631 sources."@nodelib/fs.walk-1.2.8" 103576 103632 sources."@sindresorhus/is-0.14.0" 103577 103633 sources."@szmarczak/http-timer-1.1.2" 103578 - sources."@types/node-18.7.17" 103634 + sources."@types/node-18.7.18" 103579 103635 sources."@types/parse-json-4.0.0" 103580 103636 sources."@types/websocket-1.0.2" 103581 103637 sources."abort-controller-3.0.0" ··· 103770 103826 sources."is-arrayish-0.2.1" 103771 103827 sources."is-bigint-1.0.4" 103772 103828 sources."is-boolean-object-1.1.2" 103773 - sources."is-callable-1.2.5" 103829 + sources."is-callable-1.2.6" 103774 103830 sources."is-date-object-1.0.5" 103775 103831 sources."is-docker-2.2.1" 103776 103832 sources."is-extglob-2.1.1" ··· 104056 104112 sources."@ardatan/sync-fetch-0.0.1" 104057 104113 sources."@babel/code-frame-7.18.6" 104058 104114 sources."@babel/helper-string-parser-7.18.10" 104059 - sources."@babel/helper-validator-identifier-7.18.6" 104115 + sources."@babel/helper-validator-identifier-7.19.1" 104060 104116 sources."@babel/highlight-7.18.6" 104061 - sources."@babel/parser-7.19.0" 104117 + sources."@babel/parser-7.19.1" 104062 104118 sources."@babel/polyfill-7.12.1" 104063 104119 sources."@babel/types-7.19.0" 104064 104120 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" ··· 104070 104126 sources."@graphql-tools/load-7.7.7" 104071 104127 sources."@graphql-tools/merge-8.3.6" 104072 104128 sources."@graphql-tools/schema-9.0.4" 104073 - sources."@graphql-tools/url-loader-7.16.1" 104129 + sources."@graphql-tools/url-loader-7.16.2" 104074 104130 sources."@graphql-tools/utils-8.12.0" 104075 - sources."@graphql-tools/wrap-9.2.0" 104131 + sources."@graphql-tools/wrap-9.2.1" 104076 104132 sources."@iarna/toml-2.2.5" 104077 104133 sources."@nodelib/fs.scandir-2.1.5" 104078 104134 sources."@nodelib/fs.stat-2.0.5" ··· 104080 104136 sources."@peculiar/asn1-schema-2.3.0" 104081 104137 sources."@peculiar/json-schema-1.1.12" 104082 104138 sources."@peculiar/webcrypto-1.4.0" 104083 - sources."@types/node-18.7.17" 104139 + sources."@types/node-18.7.18" 104084 104140 sources."@types/parse-json-4.0.0" 104085 104141 sources."@types/ws-8.5.3" 104086 104142 sources."@whatwg-node/fetch-0.4.3" ··· 104138 104194 }) 104139 104195 sources."graphql-language-service-5.1.0" 104140 104196 sources."graphql-language-service-server-2.8.4" 104141 - sources."graphql-ws-5.10.2" 104197 + sources."graphql-ws-5.11.1" 104142 104198 sources."has-flag-3.0.0" 104143 104199 sources."ignore-5.2.0" 104144 104200 (sources."import-fresh-3.3.0" // { ··· 104205 104261 sources."vscode-languageserver-8.0.2" 104206 104262 sources."vscode-languageserver-protocol-3.17.2" 104207 104263 sources."vscode-languageserver-types-3.17.2" 104208 - sources."vscode-uri-3.0.3" 104264 + sources."vscode-uri-3.0.6" 104209 104265 sources."web-streams-polyfill-3.2.1" 104210 104266 sources."webcrypto-core-1.7.5" 104211 104267 sources."webidl-conversions-3.0.1" ··· 104247 104303 dependencies = [ 104248 104304 sources."@ardatan/sync-fetch-0.0.1" 104249 104305 sources."@babel/code-frame-7.18.6" 104250 - sources."@babel/helper-validator-identifier-7.18.6" 104306 + sources."@babel/helper-validator-identifier-7.19.1" 104251 104307 (sources."@babel/highlight-7.18.6" // { 104252 104308 dependencies = [ 104253 104309 sources."ansi-styles-3.2.1" ··· 104269 104325 sources."@graphql-tools/load-7.7.7" 104270 104326 sources."@graphql-tools/merge-8.3.6" 104271 104327 sources."@graphql-tools/schema-9.0.4" 104272 - (sources."@graphql-tools/url-loader-7.16.1" // { 104328 + (sources."@graphql-tools/url-loader-7.16.2" // { 104273 104329 dependencies = [ 104274 104330 sources."isomorphic-ws-5.0.0" 104275 104331 sources."ws-8.8.1" 104276 104332 ]; 104277 104333 }) 104278 104334 sources."@graphql-tools/utils-8.12.0" 104279 - sources."@graphql-tools/wrap-9.2.0" 104335 + sources."@graphql-tools/wrap-9.2.1" 104280 104336 sources."@iarna/toml-2.2.5" 104281 104337 sources."@jridgewell/resolve-uri-3.1.0" 104282 104338 sources."@jridgewell/sourcemap-codec-1.4.14" ··· 104321 104377 sources."@tsconfig/node14-1.0.3" 104322 104378 sources."@tsconfig/node16-1.0.3" 104323 104379 sources."@types/json-schema-7.0.9" 104324 - sources."@types/node-18.7.17" 104380 + sources."@types/node-18.7.18" 104325 104381 sources."@types/parse-json-4.0.0" 104326 104382 sources."@types/ws-8.5.3" 104327 104383 sources."@whatwg-node/fetch-0.4.3" ··· 104383 104439 sources."cookie-signature-1.0.6" 104384 104440 sources."cosmiconfig-7.0.1" 104385 104441 sources."cosmiconfig-toml-loader-1.0.0" 104386 - sources."cosmiconfig-typescript-loader-4.0.0" 104442 + sources."cosmiconfig-typescript-loader-4.1.0" 104387 104443 sources."create-require-1.1.1" 104388 104444 (sources."cross-spawn-6.0.5" // { 104389 104445 dependencies = [ ··· 104448 104504 sources."graphql-language-service-parser-1.10.4" 104449 104505 sources."graphql-language-service-types-1.8.7" 104450 104506 sources."graphql-language-service-utils-2.5.1" 104451 - sources."graphql-ws-5.10.2" 104507 + sources."graphql-ws-5.11.1" 104452 104508 sources."has-flag-4.0.0" 104453 104509 sources."http-errors-1.6.3" 104454 104510 sources."hyperlinker-1.0.0" ··· 104853 104909 sha512 = "LkZYdWebxn7qeQApnDN7Q50rwCg4raayL4DIQNPdhIyNKwwm3rbKHeX4+K4cV0SKBen7jVkY4s1c7aIdxGsF8A=="; 104854 104910 }; 104855 104911 dependencies = [ 104912 + sources."@colors/colors-1.5.0" 104856 104913 sources."abbrev-1.1.1" 104857 104914 sources."ansi-escapes-5.0.0" 104858 104915 sources."ansi-regex-2.1.1" ··· 104866 104923 sources."cardinal-2.1.1" 104867 104924 sources."chalk-1.1.3" 104868 104925 sources."charm-0.1.2" 104869 - sources."cli-table3-0.6.2" 104926 + sources."cli-table3-0.6.3" 104870 104927 sources."core-util-is-1.0.3" 104871 104928 sources."drawille-blessed-contrib-1.0.0" 104872 104929 sources."drawille-canvas-blessed-contrib-0.1.3" ··· 105897 105954 sources."corser-2.0.1" 105898 105955 sources."debug-3.2.7" 105899 105956 sources."eventemitter3-4.0.7" 105900 - sources."follow-redirects-1.15.1" 105957 + sources."follow-redirects-1.15.2" 105901 105958 sources."function-bind-1.1.1" 105902 105959 sources."get-intrinsic-1.1.3" 105903 105960 sources."has-1.0.3" ··· 106109 106166 sources."@colors/colors-1.5.0" 106110 106167 sources."@fast-csv/format-4.3.5" 106111 106168 sources."@fast-csv/parse-4.3.6" 106112 - sources."@types/node-14.18.28" 106169 + sources."@types/node-14.18.29" 106113 106170 sources."ajv-6.12.6" 106114 106171 sources."ansi-regex-5.0.1" 106115 106172 sources."ansi-styles-4.3.0" ··· 106119 106176 sources."async-2.6.4" 106120 106177 sources."asynckit-0.4.0" 106121 106178 sources."available-typed-arrays-1.0.5" 106122 - sources."aws-sdk-2.1214.0" 106179 + sources."aws-sdk-2.1218.0" 106123 106180 sources."aws-sign2-0.7.0" 106124 106181 sources."aws4-1.11.0" 106125 106182 sources."base64-js-1.5.1" ··· 106198 106255 sources."is-arguments-1.1.1" 106199 106256 sources."is-bigint-1.0.4" 106200 106257 sources."is-boolean-object-1.1.2" 106201 - sources."is-callable-1.2.5" 106258 + sources."is-callable-1.2.6" 106202 106259 sources."is-date-object-1.0.5" 106203 106260 sources."is-fullwidth-code-point-3.0.0" 106204 106261 sources."is-generator-function-1.0.10" ··· 106703 106760 sources."execa-5.1.1" 106704 106761 sources."exifr-7.1.3" 106705 106762 sources."fdir-5.2.0" 106706 - sources."follow-redirects-1.15.1" 106763 + sources."follow-redirects-1.15.2" 106707 106764 sources."form-data-4.0.0" 106708 106765 sources."get-stream-6.0.1" 106709 106766 sources."get-video-duration-4.1.0" ··· 107056 107113 sources."vscode-languageserver-textdocument-1.0.7" 107057 107114 sources."vscode-languageserver-types-3.17.0-next.1" 107058 107115 sources."vscode-nls-5.2.0" 107059 - sources."vscode-uri-3.0.3" 107116 + sources."vscode-uri-3.0.6" 107060 107117 sources."wrappy-1.0.2" 107061 107118 sources."yallist-2.1.2" 107062 107119 ]; ··· 107637 107694 sources."tslib-1.14.1" 107638 107695 ]; 107639 107696 }) 107640 - sources."@aws-sdk/abort-controller-3.168.0" 107641 - sources."@aws-sdk/chunked-blob-reader-3.168.0" 107642 - sources."@aws-sdk/chunked-blob-reader-native-3.168.0" 107643 - (sources."@aws-sdk/client-s3-3.169.0" // { 107697 + sources."@aws-sdk/abort-controller-3.171.0" 107698 + sources."@aws-sdk/chunked-blob-reader-3.170.0" 107699 + sources."@aws-sdk/chunked-blob-reader-native-3.170.0" 107700 + (sources."@aws-sdk/client-s3-3.171.0" // { 107644 107701 dependencies = [ 107645 107702 sources."fast-xml-parser-3.19.0" 107646 107703 ]; 107647 107704 }) 107648 - sources."@aws-sdk/client-sso-3.169.0" 107649 - (sources."@aws-sdk/client-sts-3.169.0" // { 107705 + sources."@aws-sdk/client-sso-3.171.0" 107706 + (sources."@aws-sdk/client-sts-3.171.0" // { 107650 107707 dependencies = [ 107651 107708 sources."fast-xml-parser-3.19.0" 107652 107709 ]; 107653 107710 }) 107654 - sources."@aws-sdk/config-resolver-3.168.0" 107655 - sources."@aws-sdk/credential-provider-env-3.168.0" 107656 - sources."@aws-sdk/credential-provider-imds-3.168.0" 107657 - sources."@aws-sdk/credential-provider-ini-3.169.0" 107658 - sources."@aws-sdk/credential-provider-node-3.169.0" 107659 - sources."@aws-sdk/credential-provider-process-3.168.0" 107660 - sources."@aws-sdk/credential-provider-sso-3.169.0" 107661 - sources."@aws-sdk/credential-provider-web-identity-3.168.0" 107662 - sources."@aws-sdk/eventstream-codec-3.168.0" 107663 - sources."@aws-sdk/eventstream-serde-browser-3.168.0" 107664 - sources."@aws-sdk/eventstream-serde-config-resolver-3.168.0" 107665 - sources."@aws-sdk/eventstream-serde-node-3.168.0" 107666 - sources."@aws-sdk/eventstream-serde-universal-3.168.0" 107667 - sources."@aws-sdk/fetch-http-handler-3.168.0" 107668 - sources."@aws-sdk/hash-blob-browser-3.168.0" 107669 - sources."@aws-sdk/hash-node-3.168.0" 107670 - sources."@aws-sdk/hash-stream-node-3.168.0" 107671 - sources."@aws-sdk/invalid-dependency-3.168.0" 107672 - sources."@aws-sdk/is-array-buffer-3.168.0" 107673 - sources."@aws-sdk/md5-js-3.168.0" 107674 - sources."@aws-sdk/middleware-bucket-endpoint-3.168.0" 107675 - sources."@aws-sdk/middleware-content-length-3.168.0" 107676 - sources."@aws-sdk/middleware-expect-continue-3.168.0" 107677 - sources."@aws-sdk/middleware-flexible-checksums-3.168.0" 107678 - sources."@aws-sdk/middleware-host-header-3.168.0" 107679 - sources."@aws-sdk/middleware-location-constraint-3.168.0" 107680 - sources."@aws-sdk/middleware-logger-3.168.0" 107681 - sources."@aws-sdk/middleware-recursion-detection-3.168.0" 107682 - (sources."@aws-sdk/middleware-retry-3.169.0" // { 107711 + sources."@aws-sdk/config-resolver-3.171.0" 107712 + sources."@aws-sdk/credential-provider-env-3.171.0" 107713 + sources."@aws-sdk/credential-provider-imds-3.171.0" 107714 + sources."@aws-sdk/credential-provider-ini-3.171.0" 107715 + sources."@aws-sdk/credential-provider-node-3.171.0" 107716 + sources."@aws-sdk/credential-provider-process-3.171.0" 107717 + sources."@aws-sdk/credential-provider-sso-3.171.0" 107718 + sources."@aws-sdk/credential-provider-web-identity-3.171.0" 107719 + sources."@aws-sdk/eventstream-codec-3.171.0" 107720 + sources."@aws-sdk/eventstream-serde-browser-3.171.0" 107721 + sources."@aws-sdk/eventstream-serde-config-resolver-3.171.0" 107722 + sources."@aws-sdk/eventstream-serde-node-3.171.0" 107723 + sources."@aws-sdk/eventstream-serde-universal-3.171.0" 107724 + sources."@aws-sdk/fetch-http-handler-3.171.0" 107725 + sources."@aws-sdk/hash-blob-browser-3.171.0" 107726 + sources."@aws-sdk/hash-node-3.171.0" 107727 + sources."@aws-sdk/hash-stream-node-3.171.0" 107728 + sources."@aws-sdk/invalid-dependency-3.171.0" 107729 + sources."@aws-sdk/is-array-buffer-3.170.0" 107730 + sources."@aws-sdk/md5-js-3.171.0" 107731 + sources."@aws-sdk/middleware-bucket-endpoint-3.171.0" 107732 + sources."@aws-sdk/middleware-content-length-3.171.0" 107733 + sources."@aws-sdk/middleware-expect-continue-3.171.0" 107734 + sources."@aws-sdk/middleware-flexible-checksums-3.171.0" 107735 + sources."@aws-sdk/middleware-host-header-3.171.0" 107736 + sources."@aws-sdk/middleware-location-constraint-3.171.0" 107737 + sources."@aws-sdk/middleware-logger-3.171.0" 107738 + sources."@aws-sdk/middleware-recursion-detection-3.171.0" 107739 + (sources."@aws-sdk/middleware-retry-3.171.0" // { 107683 107740 dependencies = [ 107684 107741 sources."uuid-8.3.2" 107685 107742 ]; 107686 107743 }) 107687 - sources."@aws-sdk/middleware-sdk-s3-3.168.0" 107688 - sources."@aws-sdk/middleware-sdk-sts-3.168.0" 107689 - sources."@aws-sdk/middleware-serde-3.168.0" 107690 - sources."@aws-sdk/middleware-signing-3.168.0" 107691 - sources."@aws-sdk/middleware-ssec-3.168.0" 107692 - sources."@aws-sdk/middleware-stack-3.168.0" 107693 - sources."@aws-sdk/middleware-user-agent-3.168.0" 107694 - sources."@aws-sdk/node-config-provider-3.168.0" 107695 - sources."@aws-sdk/node-http-handler-3.168.0" 107696 - sources."@aws-sdk/property-provider-3.168.0" 107697 - sources."@aws-sdk/protocol-http-3.168.0" 107698 - sources."@aws-sdk/querystring-builder-3.168.0" 107699 - sources."@aws-sdk/querystring-parser-3.168.0" 107700 - sources."@aws-sdk/s3-request-presigner-3.169.0" 107701 - sources."@aws-sdk/service-error-classification-3.168.0" 107702 - sources."@aws-sdk/shared-ini-file-loader-3.168.0" 107703 - sources."@aws-sdk/signature-v4-3.168.0" 107704 - sources."@aws-sdk/signature-v4-multi-region-3.168.0" 107705 - sources."@aws-sdk/smithy-client-3.168.0" 107706 - sources."@aws-sdk/types-3.168.0" 107707 - sources."@aws-sdk/url-parser-3.168.0" 107708 - sources."@aws-sdk/util-arn-parser-3.168.0" 107709 - sources."@aws-sdk/util-base64-browser-3.168.0" 107710 - sources."@aws-sdk/util-base64-node-3.168.0" 107711 - sources."@aws-sdk/util-body-length-browser-3.168.0" 107712 - sources."@aws-sdk/util-body-length-node-3.168.0" 107713 - sources."@aws-sdk/util-buffer-from-3.168.0" 107714 - sources."@aws-sdk/util-config-provider-3.168.0" 107715 - sources."@aws-sdk/util-create-request-3.168.0" 107716 - sources."@aws-sdk/util-defaults-mode-browser-3.168.0" 107717 - sources."@aws-sdk/util-defaults-mode-node-3.168.0" 107718 - sources."@aws-sdk/util-format-url-3.168.0" 107719 - sources."@aws-sdk/util-hex-encoding-3.168.0" 107720 - sources."@aws-sdk/util-locate-window-3.168.0" 107721 - sources."@aws-sdk/util-middleware-3.168.0" 107722 - sources."@aws-sdk/util-stream-browser-3.168.0" 107723 - sources."@aws-sdk/util-stream-node-3.168.0" 107724 - sources."@aws-sdk/util-uri-escape-3.168.0" 107725 - sources."@aws-sdk/util-user-agent-browser-3.168.0" 107726 - sources."@aws-sdk/util-user-agent-node-3.168.0" 107727 - sources."@aws-sdk/util-utf8-browser-3.168.0" 107728 - sources."@aws-sdk/util-utf8-node-3.168.0" 107729 - sources."@aws-sdk/util-waiter-3.168.0" 107730 - sources."@aws-sdk/xml-builder-3.168.0" 107744 + sources."@aws-sdk/middleware-sdk-s3-3.171.0" 107745 + sources."@aws-sdk/middleware-sdk-sts-3.171.0" 107746 + sources."@aws-sdk/middleware-serde-3.171.0" 107747 + sources."@aws-sdk/middleware-signing-3.171.0" 107748 + sources."@aws-sdk/middleware-ssec-3.171.0" 107749 + sources."@aws-sdk/middleware-stack-3.171.0" 107750 + sources."@aws-sdk/middleware-user-agent-3.171.0" 107751 + sources."@aws-sdk/node-config-provider-3.171.0" 107752 + sources."@aws-sdk/node-http-handler-3.171.0" 107753 + sources."@aws-sdk/property-provider-3.171.0" 107754 + sources."@aws-sdk/protocol-http-3.171.0" 107755 + sources."@aws-sdk/querystring-builder-3.171.0" 107756 + sources."@aws-sdk/querystring-parser-3.171.0" 107757 + sources."@aws-sdk/s3-request-presigner-3.173.0" 107758 + sources."@aws-sdk/service-error-classification-3.171.0" 107759 + sources."@aws-sdk/shared-ini-file-loader-3.171.0" 107760 + sources."@aws-sdk/signature-v4-3.171.0" 107761 + sources."@aws-sdk/signature-v4-multi-region-3.171.0" 107762 + sources."@aws-sdk/smithy-client-3.171.0" 107763 + sources."@aws-sdk/types-3.171.0" 107764 + sources."@aws-sdk/url-parser-3.171.0" 107765 + sources."@aws-sdk/util-arn-parser-3.170.0" 107766 + sources."@aws-sdk/util-base64-browser-3.170.0" 107767 + sources."@aws-sdk/util-base64-node-3.170.0" 107768 + sources."@aws-sdk/util-body-length-browser-3.170.0" 107769 + sources."@aws-sdk/util-body-length-node-3.170.0" 107770 + sources."@aws-sdk/util-buffer-from-3.170.0" 107771 + sources."@aws-sdk/util-config-provider-3.170.0" 107772 + sources."@aws-sdk/util-create-request-3.171.0" 107773 + sources."@aws-sdk/util-defaults-mode-browser-3.171.0" 107774 + sources."@aws-sdk/util-defaults-mode-node-3.171.0" 107775 + sources."@aws-sdk/util-format-url-3.171.0" 107776 + sources."@aws-sdk/util-hex-encoding-3.170.0" 107777 + sources."@aws-sdk/util-locate-window-3.170.0" 107778 + sources."@aws-sdk/util-middleware-3.171.0" 107779 + sources."@aws-sdk/util-stream-browser-3.171.0" 107780 + sources."@aws-sdk/util-stream-node-3.171.0" 107781 + sources."@aws-sdk/util-uri-escape-3.170.0" 107782 + sources."@aws-sdk/util-user-agent-browser-3.171.0" 107783 + sources."@aws-sdk/util-user-agent-node-3.171.0" 107784 + sources."@aws-sdk/util-utf8-browser-3.170.0" 107785 + sources."@aws-sdk/util-utf8-node-3.170.0" 107786 + sources."@aws-sdk/util-waiter-3.171.0" 107787 + sources."@aws-sdk/xml-builder-3.170.0" 107731 107788 sources."@braintree/sanitize-url-3.1.0" 107732 107789 sources."@cronvel/get-pixels-3.4.1" 107733 107790 sources."@gar/promisify-1.1.3" ··· 107837 107894 sources."asynckit-0.4.0" 107838 107895 sources."atob-2.1.2" 107839 107896 sources."available-typed-arrays-1.0.5" 107840 - (sources."aws-sdk-2.1214.0" // { 107897 + (sources."aws-sdk-2.1218.0" // { 107841 107898 dependencies = [ 107842 107899 sources."sax-1.2.1" 107843 107900 sources."uuid-8.0.0" ··· 108058 108115 sources."file-type-10.11.0" 108059 108116 sources."fill-range-7.0.1" 108060 108117 sources."find-up-2.1.0" 108061 - sources."follow-redirects-1.15.1" 108118 + sources."follow-redirects-1.15.2" 108062 108119 sources."font-awesome-filetypes-2.1.0" 108063 108120 sources."for-each-0.3.3" 108064 108121 sources."for-each-property-0.0.4" ··· 108179 108236 sources."is-binary-path-2.1.0" 108180 108237 sources."is-boolean-object-1.1.2" 108181 108238 sources."is-buffer-1.1.6" 108182 - sources."is-callable-1.2.5" 108239 + sources."is-callable-1.2.6" 108183 108240 sources."is-date-object-1.0.5" 108184 108241 sources."is-docker-2.2.1" 108185 108242 sources."is-extglob-2.1.1" ··· 108506 108563 sources."source-map-url-0.4.1" 108507 108564 sources."split-skip-0.0.2" 108508 108565 sources."sprintf-js-1.1.2" 108509 - (sources."sqlite3-5.0.11" // { 108566 + (sources."sqlite3-5.1.1" // { 108510 108567 dependencies = [ 108511 108568 sources."chownr-2.0.0" 108512 108569 sources."fs-minipass-2.1.0" ··· 108734 108791 sha512 = "8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg=="; 108735 108792 }; 108736 108793 dependencies = [ 108737 - sources."@babel/parser-7.19.0" 108794 + sources."@babel/parser-7.19.1" 108738 108795 sources."@types/linkify-it-3.0.2" 108739 108796 sources."@types/markdown-it-12.2.3" 108740 108797 sources."@types/mdurl-1.0.2" ··· 109910 109967 }) 109911 109968 sources."fill-range-7.0.1" 109912 109969 sources."find-up-3.0.0" 109913 - sources."follow-redirects-1.15.1" 109970 + sources."follow-redirects-1.15.2" 109914 109971 sources."form-data-3.0.1" 109915 109972 sources."fs-extra-8.1.0" 109916 109973 sources."function-bind-1.1.1" ··· 110064 110121 sources."@socket.io/component-emitter-3.1.0" 110065 110122 sources."@types/cookie-0.4.1" 110066 110123 sources."@types/cors-2.8.12" 110067 - sources."@types/node-18.7.17" 110124 + sources."@types/node-18.7.18" 110068 110125 sources."accepts-1.3.8" 110069 110126 sources."ansi-regex-5.0.1" 110070 110127 sources."ansi-styles-4.3.0" ··· 110116 110173 ]; 110117 110174 }) 110118 110175 sources."flatted-3.2.7" 110119 - sources."follow-redirects-1.15.1" 110176 + sources."follow-redirects-1.15.2" 110120 110177 sources."fs-extra-8.1.0" 110121 110178 sources."fs.realpath-1.0.0" 110122 110179 sources."fsevents-2.3.2" ··· 110238 110295 sources."@ampproject/remapping-2.2.0" 110239 110296 sources."@babel/cli-7.18.10" 110240 110297 sources."@babel/code-frame-7.18.6" 110241 - sources."@babel/compat-data-7.19.0" 110242 - (sources."@babel/core-7.19.0" // { 110298 + sources."@babel/compat-data-7.19.1" 110299 + (sources."@babel/core-7.19.1" // { 110243 110300 dependencies = [ 110244 110301 sources."semver-6.3.0" 110245 110302 ]; ··· 110250 110307 ]; 110251 110308 }) 110252 110309 sources."@babel/helper-annotate-as-pure-7.18.6" 110253 - (sources."@babel/helper-compilation-targets-7.19.0" // { 110310 + (sources."@babel/helper-compilation-targets-7.19.1" // { 110254 110311 dependencies = [ 110255 110312 sources."semver-6.3.0" 110256 110313 ]; ··· 110264 110321 sources."@babel/helper-simple-access-7.18.6" 110265 110322 sources."@babel/helper-split-export-declaration-7.18.6" 110266 110323 sources."@babel/helper-string-parser-7.18.10" 110267 - sources."@babel/helper-validator-identifier-7.18.6" 110324 + sources."@babel/helper-validator-identifier-7.19.1" 110268 110325 sources."@babel/helper-validator-option-7.18.6" 110269 110326 sources."@babel/helpers-7.19.0" 110270 110327 sources."@babel/highlight-7.18.6" 110271 - sources."@babel/node-7.18.10" 110272 - sources."@babel/parser-7.19.0" 110328 + sources."@babel/node-7.19.1" 110329 + sources."@babel/parser-7.19.1" 110273 110330 sources."@babel/plugin-syntax-jsx-7.18.6" 110274 110331 sources."@babel/plugin-transform-react-jsx-7.19.0" 110275 110332 sources."@babel/register-7.18.9" 110276 110333 sources."@babel/template-7.18.10" 110277 - sources."@babel/traverse-7.19.0" 110334 + sources."@babel/traverse-7.19.1" 110278 110335 sources."@babel/types-7.19.0" 110279 110336 sources."@jridgewell/gen-mapping-0.1.1" 110280 110337 sources."@jridgewell/resolve-uri-3.1.0" ··· 110363 110420 sources."braces-3.0.2" 110364 110421 sources."browser-or-node-1.3.0" 110365 110422 sources."browser-process-hrtime-1.0.0" 110366 - sources."browserslist-4.21.3" 110423 + sources."browserslist-4.21.4" 110367 110424 sources."buffer-5.7.1" 110368 110425 sources."buffer-from-1.1.2" 110369 110426 sources."bytes-3.1.2" 110370 110427 sources."call-bind-1.0.2" 110371 - sources."caniuse-lite-1.0.30001399" 110428 + sources."caniuse-lite-1.0.30001406" 110372 110429 sources."chalk-2.4.2" 110373 110430 sources."chardet-1.4.0" 110374 110431 sources."chownr-1.1.4" ··· 110397 110454 sources."convert-source-map-1.8.0" 110398 110455 sources."cookie-0.5.0" 110399 110456 sources."cookie-signature-1.0.6" 110400 - sources."core-js-3.25.1" 110457 + sources."core-js-3.25.2" 110401 110458 sources."core-util-is-1.0.3" 110402 110459 sources."cors-2.8.5" 110403 110460 sources."create-hash-1.2.0" ··· 110416 110473 ]; 110417 110474 }) 110418 110475 sources."debug-4.3.4" 110419 - sources."decimal.js-10.4.0" 110476 + sources."decimal.js-10.4.1" 110420 110477 sources."decode-uri-component-0.2.0" 110421 110478 sources."decompress-response-4.2.1" 110422 110479 sources."deep-extend-0.6.0" ··· 110436 110493 }) 110437 110494 sources."dotenv-8.6.0" 110438 110495 sources."ee-first-1.1.1" 110439 - sources."electron-to-chromium-1.4.248" 110496 + sources."electron-to-chromium-1.4.254" 110440 110497 sources."emoji-regex-8.0.0" 110441 110498 sources."encodeurl-1.0.2" 110442 110499 sources."end-of-stream-1.4.4" ··· 110475 110532 }) 110476 110533 sources."find-cache-dir-2.1.0" 110477 110534 sources."find-up-3.0.0" 110478 - sources."follow-redirects-1.15.1" 110535 + sources."follow-redirects-1.15.2" 110479 110536 sources."form-data-3.0.1" 110480 110537 sources."forwarded-0.2.0" 110481 110538 sources."fresh-0.5.2" ··· 110549 110606 }) 110550 110607 sources."is-bigint-1.0.4" 110551 110608 sources."is-boolean-object-1.1.2" 110552 - sources."is-callable-1.2.5" 110609 + sources."is-callable-1.2.6" 110553 110610 sources."is-core-module-2.9.0" 110554 110611 sources."is-date-object-1.0.5" 110555 110612 sources."is-extglob-2.1.1" ··· 110770 110827 sources."unbox-primitive-1.0.2" 110771 110828 sources."universalify-0.2.0" 110772 110829 sources."unpipe-1.0.0" 110773 - sources."update-browserslist-db-1.0.8" 110830 + sources."update-browserslist-db-1.0.9" 110774 110831 sources."url-parse-1.5.10" 110775 110832 sources."util-deprecate-1.0.2" 110776 110833 sources."utils-merge-1.0.1" ··· 111441 111498 }; 111442 111499 dependencies = [ 111443 111500 sources."@babel/code-frame-7.18.6" 111444 - sources."@babel/helper-validator-identifier-7.18.6" 111501 + sources."@babel/helper-validator-identifier-7.19.1" 111445 111502 (sources."@babel/highlight-7.18.6" // { 111446 111503 dependencies = [ 111447 111504 sources."ansi-styles-3.2.1" ··· 111576 111633 sources."@npmcli/package-json-2.0.0" 111577 111634 sources."@npmcli/promise-spawn-3.0.0" 111578 111635 sources."@npmcli/run-script-4.2.1" 111579 - sources."@nrwl/cli-14.7.5" 111580 - sources."@nrwl/tao-14.7.5" 111636 + sources."@nrwl/cli-14.7.6" 111637 + sources."@nrwl/tao-14.7.6" 111581 111638 sources."@octokit/auth-token-3.0.1" 111582 111639 sources."@octokit/core-4.0.5" 111583 111640 (sources."@octokit/endpoint-7.0.2" // { ··· 111586 111643 ]; 111587 111644 }) 111588 111645 sources."@octokit/graphql-5.0.1" 111589 - sources."@octokit/openapi-types-13.9.1" 111646 + sources."@octokit/openapi-types-13.12.0" 111590 111647 sources."@octokit/plugin-enterprise-rest-6.0.1" 111591 - sources."@octokit/plugin-paginate-rest-4.2.3" 111648 + sources."@octokit/plugin-paginate-rest-4.3.1" 111592 111649 sources."@octokit/plugin-request-log-1.0.4" 111593 - sources."@octokit/plugin-rest-endpoint-methods-6.5.2" 111650 + sources."@octokit/plugin-rest-endpoint-methods-6.6.2" 111594 111651 (sources."@octokit/request-6.2.1" // { 111595 111652 dependencies = [ 111596 111653 sources."is-plain-object-5.0.0" ··· 111598 111655 }) 111599 111656 sources."@octokit/request-error-3.0.1" 111600 111657 sources."@octokit/rest-19.0.4" 111601 - sources."@octokit/types-7.3.1" 111658 + sources."@octokit/types-7.5.0" 111602 111659 sources."@parcel/watcher-2.0.4" 111603 111660 sources."@tootallnate/once-2.0.0" 111604 111661 sources."@types/json5-0.0.29" ··· 112000 112057 }) 112001 112058 sources."npm-run-path-4.0.1" 112002 112059 sources."npmlog-6.0.2" 112003 - (sources."nx-14.7.5" // { 112060 + (sources."nx-14.7.6" // { 112004 112061 dependencies = [ 112005 112062 sources."chalk-4.1.0" 112006 112063 sources."cli-spinners-2.6.1" ··· 113156 113213 sources."@types/commander-2.12.2" 113157 113214 sources."@types/diff-3.5.5" 113158 113215 sources."@types/get-stdin-5.0.1" 113159 - sources."@types/node-18.7.17" 113216 + sources."@types/node-18.7.18" 113160 113217 sources."commander-2.20.3" 113161 113218 sources."diff-3.5.0" 113162 113219 sources."get-stdin-5.0.1" ··· 114062 114119 sha512 = "pE81Zfvni1qMAhqW4RkpwJ2L7Y5OFs+svSWq6cW5IQHWR8Dd8BBZL4p93GgqiVoLPTJ2heGVBKZFsgA2RPR6ng=="; 114063 114120 }; 114064 114121 dependencies = [ 114065 - sources."@types/node-18.7.17" 114122 + sources."@types/node-18.7.18" 114066 114123 sources."@types/yauzl-2.10.0" 114067 114124 sources."agent-base-6.0.2" 114068 114125 sources."balanced-match-1.0.2" ··· 114401 114458 }; 114402 114459 dependencies = [ 114403 114460 sources."@babel/code-frame-7.18.6" 114404 - sources."@babel/helper-validator-identifier-7.18.6" 114461 + sources."@babel/helper-validator-identifier-7.19.1" 114405 114462 (sources."@babel/highlight-7.18.6" // { 114406 114463 dependencies = [ 114407 114464 sources."ansi-styles-3.2.1" ··· 114415 114472 sources."@jest/environment-27.5.1" 114416 114473 sources."@jest/fake-timers-27.5.1" 114417 114474 sources."@jest/types-27.5.1" 114418 - (sources."@ledgerhq/devices-7.0.0" // { 114419 - dependencies = [ 114420 - sources."@ledgerhq/logs-6.10.0" 114421 - ]; 114422 - }) 114423 - sources."@ledgerhq/errors-6.10.1" 114424 - sources."@ledgerhq/hw-transport-6.27.3" 114425 - sources."@ledgerhq/hw-transport-node-hid-6.27.3" 114426 - sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.3" 114475 + sources."@ledgerhq/devices-7.0.1" 114476 + sources."@ledgerhq/errors-6.10.2" 114477 + sources."@ledgerhq/hw-transport-6.27.4" 114478 + sources."@ledgerhq/hw-transport-node-hid-6.27.4" 114479 + sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.4" 114427 114480 (sources."@ledgerhq/hw-transport-u2f-5.36.0-deprecated" // { 114428 114481 dependencies = [ 114429 114482 sources."@ledgerhq/devices-5.51.1" ··· 114448 114501 sources."@ledgerhq/logs-5.50.0" 114449 114502 ]; 114450 114503 }) 114451 - sources."@ledgerhq/logs-6.10.1-nightly.0" 114504 + sources."@ledgerhq/logs-6.10.0" 114452 114505 sources."@segment/loosely-validate-event-2.0.0" 114453 114506 sources."@sindresorhus/is-0.14.0" 114454 114507 sources."@sinonjs/commons-1.8.3" ··· 114457 114510 sources."@types/istanbul-lib-coverage-2.0.4" 114458 114511 sources."@types/istanbul-lib-report-3.0.0" 114459 114512 sources."@types/istanbul-reports-3.0.1" 114460 - sources."@types/node-18.7.17" 114513 + sources."@types/node-18.7.18" 114461 114514 sources."@types/stack-utils-2.0.1" 114462 114515 sources."@types/yargs-16.0.4" 114463 114516 sources."@types/yargs-parser-21.0.0" ··· 114551 114604 sources."file-uri-to-path-1.0.0" 114552 114605 sources."fill-range-7.0.1" 114553 114606 sources."flagged-respawn-1.0.1" 114554 - sources."follow-redirects-1.15.1" 114607 + sources."follow-redirects-1.15.2" 114555 114608 sources."form-data-4.0.0" 114556 114609 sources."fs-constants-1.0.0" 114557 114610 sources."fs.realpath-1.0.0" ··· 114813 114866 sources."one-time-1.0.0" 114814 114867 sources."readable-stream-3.6.0" 114815 114868 sources."safe-buffer-5.2.1" 114816 - sources."safe-stable-stringify-2.3.1" 114869 + sources."safe-stable-stringify-2.4.0" 114817 114870 sources."semver-7.3.7" 114818 114871 sources."simple-swizzle-0.2.2" 114819 114872 sources."stack-trace-0.0.10" ··· 115424 115477 sources."@types/cacheable-request-6.0.2" 115425 115478 sources."@types/http-cache-semantics-4.0.1" 115426 115479 sources."@types/keyv-3.1.4" 115427 - sources."@types/node-18.7.17" 115480 + sources."@types/node-18.7.18" 115428 115481 sources."@types/responselike-1.0.0" 115429 115482 sources."abbrev-1.1.1" 115430 115483 sources."accepts-1.3.8" ··· 115540 115593 sources."express-session-1.17.3" 115541 115594 sources."fast-deep-equal-3.1.3" 115542 115595 sources."finalhandler-1.2.0" 115543 - sources."follow-redirects-1.15.1" 115596 + sources."follow-redirects-1.15.2" 115544 115597 sources."form-data-4.0.0" 115545 115598 sources."forwarded-0.2.0" 115546 115599 sources."fresh-0.5.2" ··· 115988 116041 nodemon = nodeEnv.buildNodePackage { 115989 116042 name = "nodemon"; 115990 116043 packageName = "nodemon"; 115991 - version = "2.0.19"; 116044 + version = "2.0.20"; 115992 116045 src = fetchurl { 115993 - url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz"; 115994 - sha512 = "4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A=="; 116046 + url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz"; 116047 + sha512 = "Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw=="; 115995 116048 }; 115996 116049 dependencies = [ 115997 116050 sources."abbrev-1.1.1" ··· 116050 116103 }; 116051 116104 dependencies = [ 116052 116105 sources."@babel/code-frame-7.18.6" 116053 - sources."@babel/helper-validator-identifier-7.18.6" 116106 + sources."@babel/helper-validator-identifier-7.19.1" 116054 116107 (sources."@babel/highlight-7.18.6" // { 116055 116108 dependencies = [ 116056 116109 sources."ansi-styles-3.2.1" ··· 116076 116129 sources."@types/http-cache-semantics-4.0.1" 116077 116130 sources."@types/keyv-3.1.4" 116078 116131 sources."@types/minimist-1.2.2" 116079 - sources."@types/node-18.7.17" 116132 + sources."@types/node-18.7.18" 116080 116133 sources."@types/normalize-package-data-2.4.1" 116081 116134 sources."@types/parse-json-4.0.0" 116082 116135 sources."@types/responselike-3.0.0" ··· 116570 116623 npm = nodeEnv.buildNodePackage { 116571 116624 name = "npm"; 116572 116625 packageName = "npm"; 116573 - version = "8.19.1"; 116626 + version = "8.19.2"; 116574 116627 src = fetchurl { 116575 - url = "https://registry.npmjs.org/npm/-/npm-8.19.1.tgz"; 116576 - sha512 = "FtWzipzng+NmtTQDXSCvA9D7H4d7vkA7ciahmY89fGK/Eo95pbnKn0hatEUfomj1jUDEXvAEi/tKiQ2nrAc7Jg=="; 116628 + url = "https://registry.npmjs.org/npm/-/npm-8.19.2.tgz"; 116629 + sha512 = "MWkISVv5f7iZbfNkry5/5YBqSYJEDAKSJdL+uzSQuyLg+hgLQUyZynu3SH6bOZlvR9ZvJYk2EiJO6B1r+ynwHg=="; 116577 116630 }; 116578 116631 buildInputs = globalBuildInputs; 116579 116632 meta = { ··· 116588 116641 npm-check-updates = nodeEnv.buildNodePackage { 116589 116642 name = "npm-check-updates"; 116590 116643 packageName = "npm-check-updates"; 116591 - version = "16.1.2"; 116644 + version = "16.1.3"; 116592 116645 src = fetchurl { 116593 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.1.2.tgz"; 116594 - sha512 = "6ZnDkrGkQQ+tnCeMXIO7sxdTWwXiodzO02sOtyZzj9HbJqAf4qY0wdmTEkG7wBNggwlIksVxgyjCzSejMdv6qg=="; 116646 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.1.3.tgz"; 116647 + sha512 = "cjFV+Mb5I5rZWVElJugp1cArdzlHQy6Tzi+1i6T72nzLNFN10x7OjA7iQXgFpqeN+U5Zwv8u0/XVCEWM9KxqhQ=="; 116595 116648 }; 116596 116649 dependencies = [ 116597 116650 sources."@gar/promisify-1.1.3" ··· 116610 116663 sources."@sindresorhus/is-5.3.0" 116611 116664 sources."@szmarczak/http-timer-5.0.1" 116612 116665 sources."@tootallnate/once-2.0.0" 116613 - sources."@types/cacheable-request-6.0.2" 116614 - sources."@types/http-cache-semantics-4.0.1" 116615 - sources."@types/keyv-3.1.4" 116616 - sources."@types/node-18.7.17" 116617 - sources."@types/responselike-3.0.0" 116618 116666 sources."abbrev-1.1.1" 116619 116667 sources."agent-base-6.0.2" 116620 116668 sources."agentkeepalive-4.2.1" ··· 116645 116693 ]; 116646 116694 }) 116647 116695 sources."cacheable-lookup-6.1.0" 116648 - (sources."cacheable-request-7.0.2" // { 116649 - dependencies = [ 116650 - sources."get-stream-5.2.0" 116651 - sources."lowercase-keys-2.0.0" 116652 - sources."responselike-2.0.1" 116653 - ]; 116654 - }) 116696 + sources."cacheable-request-10.1.2" 116655 116697 sources."camelcase-7.0.0" 116656 116698 sources."chalk-5.0.1" 116657 116699 sources."chownr-2.0.0" ··· 116659 116701 sources."clean-stack-2.2.0" 116660 116702 sources."cli-boxes-3.0.0" 116661 116703 sources."cli-table-0.3.11" 116662 - sources."clone-response-1.0.3" 116663 116704 sources."color-support-1.1.3" 116664 116705 sources."colors-1.0.3" 116665 116706 sources."commander-9.4.0" ··· 116691 116732 sources."eastasianwidth-0.2.0" 116692 116733 sources."emoji-regex-8.0.0" 116693 116734 sources."encoding-0.1.13" 116694 - sources."end-of-stream-1.4.4" 116695 116735 sources."env-paths-2.2.1" 116696 116736 sources."err-code-2.0.3" 116697 116737 sources."escape-goat-4.0.0" ··· 116717 116757 sources."glob-parent-5.1.2" 116718 116758 sources."global-dirs-3.0.0" 116719 116759 sources."globby-11.1.0" 116720 - sources."got-12.4.1" 116760 + sources."got-12.5.0" 116721 116761 sources."graceful-fs-4.2.10" 116722 116762 sources."has-1.0.3" 116723 116763 sources."has-unicode-2.0.1" ··· 116771 116811 sources."make-fetch-happen-10.2.1" 116772 116812 sources."merge2-1.4.1" 116773 116813 sources."micromatch-4.0.5" 116774 - sources."mimic-response-1.0.1" 116814 + sources."mimic-response-4.0.0" 116775 116815 sources."minimatch-5.1.0" 116776 116816 sources."minimist-1.2.6" 116777 116817 sources."minipass-3.3.5" ··· 116788 116828 sources."node-gyp-9.1.0" 116789 116829 sources."nopt-5.0.0" 116790 116830 sources."normalize-package-data-4.0.1" 116791 - sources."normalize-url-6.1.0" 116831 + sources."normalize-url-7.1.0" 116792 116832 sources."npm-bundled-1.1.2" 116793 116833 sources."npm-install-checks-5.0.0" 116794 116834 sources."npm-normalize-package-bin-1.0.1" ··· 116825 116865 sources."promise-retry-2.0.1" 116826 116866 sources."prompts-ncu-2.5.1" 116827 116867 sources."proto-list-1.2.4" 116828 - sources."pump-3.0.0" 116829 116868 sources."pupa-3.1.0" 116830 116869 sources."queue-microtask-1.2.3" 116831 116870 sources."quick-lru-5.1.1" ··· 116888 116927 sources."unique-filename-2.0.1" 116889 116928 sources."unique-slug-3.0.0" 116890 116929 sources."unique-string-3.0.0" 116930 + sources."untildify-4.0.0" 116891 116931 sources."update-notifier-6.0.2" 116892 116932 sources."util-deprecate-1.0.2" 116893 116933 sources."validate-npm-package-license-3.0.4" ··· 117067 117107 orval = nodeEnv.buildNodePackage { 117068 117108 name = "orval"; 117069 117109 packageName = "orval"; 117070 - version = "6.9.6"; 117110 + version = "6.10.0"; 117071 117111 src = fetchurl { 117072 - url = "https://registry.npmjs.org/orval/-/orval-6.9.6.tgz"; 117073 - sha512 = "PbZguPW/4jvIfbkpCGeTxmOjgiMazYYSNNBE568trC9LhCqve4/B8tzEczg4sxJpJNQPBVnpAZyKwkYe3E5/tA=="; 117112 + url = "https://registry.npmjs.org/orval/-/orval-6.10.0.tgz"; 117113 + sha512 = "N+ihf8ug+GWqlKG0FlTe0a7tHnXYoSmV/rI3HsCElCUwVCA0JOf28zwgtwafEHJGk4q9QF8iQhGZKsqvYRED6A=="; 117074 117114 }; 117075 117115 dependencies = [ 117076 117116 sources."@apidevtools/json-schema-ref-parser-9.0.6" ··· 117078 117118 sources."@apidevtools/swagger-methods-3.0.2" 117079 117119 sources."@apidevtools/swagger-parser-10.1.0" 117080 117120 sources."@asyncapi/specs-2.14.0" 117081 - sources."@esbuild/linux-loong64-0.14.54" 117121 + sources."@esbuild/android-arm-0.15.8" 117122 + sources."@esbuild/linux-loong64-0.15.8" 117082 117123 sources."@exodus/schemasafe-1.0.0-rc.7" 117083 - sources."@ibm-cloud/openapi-ruleset-0.32.3" 117124 + sources."@ibm-cloud/openapi-ruleset-0.37.3" 117084 117125 sources."@jsdevtools/ono-7.1.3" 117085 - sources."@jsep-plugin/regex-1.0.2" 117086 - sources."@jsep-plugin/ternary-1.1.2" 117126 + sources."@jsep-plugin/regex-1.0.3" 117127 + sources."@jsep-plugin/ternary-1.1.3" 117087 117128 sources."@nodelib/fs.scandir-2.1.5" 117088 117129 sources."@nodelib/fs.stat-2.0.5" 117089 117130 sources."@nodelib/fs.walk-1.2.8" ··· 117115 117156 sources."fast-glob-3.2.7" 117116 117157 ]; 117117 117158 }) 117118 - sources."@stoplight/spectral-core-1.14.1" 117159 + (sources."@stoplight/spectral-core-1.14.1" // { 117160 + dependencies = [ 117161 + sources."@stoplight/types-13.6.0" 117162 + ]; 117163 + }) 117119 117164 sources."@stoplight/spectral-formats-1.2.0" 117120 117165 sources."@stoplight/spectral-functions-1.7.1" 117121 117166 sources."@stoplight/spectral-parsers-1.0.2" ··· 117132 117177 sources."@stoplight/types-12.5.0" 117133 117178 ]; 117134 117179 }) 117135 - sources."@stoplight/types-13.6.0" 117180 + sources."@stoplight/types-13.7.0" 117136 117181 sources."@stoplight/yaml-4.2.3" 117137 117182 sources."@stoplight/yaml-ast-parser-0.0.48" 117138 117183 sources."@tootallnate/once-1.1.2" 117139 117184 sources."@types/es-aggregate-error-1.0.2" 117140 117185 sources."@types/estree-0.0.39" 117141 117186 sources."@types/json-schema-7.0.11" 117142 - sources."@types/node-18.7.17" 117187 + sources."@types/node-18.7.18" 117143 117188 sources."@types/urijs-1.19.19" 117144 117189 sources."abort-controller-3.0.0" 117145 117190 sources."acorn-8.8.0" ··· 117214 117259 sources."es-aggregate-error-1.0.8" 117215 117260 sources."es-to-primitive-1.2.1" 117216 117261 sources."es6-promise-3.3.1" 117217 - sources."esbuild-0.14.54" 117218 - sources."esbuild-android-64-0.14.54" 117219 - sources."esbuild-android-arm64-0.14.54" 117220 - sources."esbuild-darwin-64-0.14.54" 117221 - sources."esbuild-darwin-arm64-0.14.54" 117222 - sources."esbuild-freebsd-64-0.14.54" 117223 - sources."esbuild-freebsd-arm64-0.14.54" 117224 - sources."esbuild-linux-32-0.14.54" 117225 - sources."esbuild-linux-64-0.14.54" 117226 - sources."esbuild-linux-arm-0.14.54" 117227 - sources."esbuild-linux-arm64-0.14.54" 117228 - sources."esbuild-linux-mips64le-0.14.54" 117229 - sources."esbuild-linux-ppc64le-0.14.54" 117230 - sources."esbuild-linux-riscv64-0.14.54" 117231 - sources."esbuild-linux-s390x-0.14.54" 117232 - sources."esbuild-netbsd-64-0.14.54" 117233 - sources."esbuild-openbsd-64-0.14.54" 117234 - sources."esbuild-sunos-64-0.14.54" 117235 - sources."esbuild-windows-32-0.14.54" 117236 - sources."esbuild-windows-64-0.14.54" 117237 - sources."esbuild-windows-arm64-0.14.54" 117262 + sources."esbuild-0.15.8" 117263 + sources."esbuild-android-64-0.15.8" 117264 + sources."esbuild-android-arm64-0.15.8" 117265 + sources."esbuild-darwin-64-0.15.8" 117266 + sources."esbuild-darwin-arm64-0.15.8" 117267 + sources."esbuild-freebsd-64-0.15.8" 117268 + sources."esbuild-freebsd-arm64-0.15.8" 117269 + sources."esbuild-linux-32-0.15.8" 117270 + sources."esbuild-linux-64-0.15.8" 117271 + sources."esbuild-linux-arm-0.15.8" 117272 + sources."esbuild-linux-arm64-0.15.8" 117273 + sources."esbuild-linux-mips64le-0.15.8" 117274 + sources."esbuild-linux-ppc64le-0.15.8" 117275 + sources."esbuild-linux-riscv64-0.15.8" 117276 + sources."esbuild-linux-s390x-0.15.8" 117277 + sources."esbuild-netbsd-64-0.15.8" 117278 + sources."esbuild-openbsd-64-0.15.8" 117279 + sources."esbuild-sunos-64-0.15.8" 117280 + sources."esbuild-wasm-0.15.8" 117281 + sources."esbuild-windows-32-0.15.8" 117282 + sources."esbuild-windows-64-0.15.8" 117283 + sources."esbuild-windows-arm64-0.15.8" 117238 117284 sources."escalade-3.1.1" 117239 117285 sources."escape-string-regexp-1.0.5" 117240 117286 sources."escodegen-1.14.3" ··· 117282 117328 sources."glob-7.2.3" 117283 117329 sources."glob-parent-5.1.2" 117284 117330 sources."globalthis-1.0.3" 117285 - sources."globby-11.0.4" 117331 + sources."globby-11.1.0" 117286 117332 sources."graceful-fs-4.2.10" 117287 117333 sources."has-1.0.3" 117288 117334 sources."has-bigints-1.0.2" ··· 117295 117341 sources."http2-client-1.3.5" 117296 117342 sources."https-proxy-agent-5.0.1" 117297 117343 sources."human-signals-2.1.0" 117298 - (sources."ibm-openapi-validator-0.83.3" // { 117344 + (sources."ibm-openapi-validator-0.88.3" // { 117299 117345 dependencies = [ 117300 117346 sources."find-up-3.0.0" 117301 117347 sources."locate-path-3.0.0" ··· 117316 117362 sources."is-bigint-1.0.4" 117317 117363 sources."is-binary-path-2.1.0" 117318 117364 sources."is-boolean-object-1.1.2" 117319 - sources."is-callable-1.2.5" 117365 + sources."is-callable-1.2.6" 117320 117366 sources."is-core-module-2.10.0" 117321 117367 sources."is-date-object-1.0.5" 117322 117368 sources."is-extglob-2.1.1" ··· 117337 117383 sources."isarray-0.0.1" 117338 117384 sources."isexe-2.0.0" 117339 117385 sources."js-yaml-3.14.1" 117340 - sources."jsep-1.3.6" 117386 + sources."jsep-1.3.7" 117341 117387 sources."json-dup-key-validator-1.0.3" 117342 117388 (sources."json-schema-ref-parser-5.1.3" // { 117343 117389 dependencies = [ ··· 117385 117431 sources."normalize-path-3.0.0" 117386 117432 sources."npm-run-path-4.0.1" 117387 117433 sources."oas-kit-common-1.0.8" 117388 - sources."oas-linter-3.2.2" 117389 - sources."oas-resolver-2.5.6" 117434 + (sources."oas-linter-3.2.2" // { 117435 + dependencies = [ 117436 + sources."yaml-1.10.2" 117437 + ]; 117438 + }) 117439 + (sources."oas-resolver-2.5.6" // { 117440 + dependencies = [ 117441 + sources."yaml-1.10.2" 117442 + ]; 117443 + }) 117390 117444 sources."oas-schema-walker-1.1.5" 117391 - sources."oas-validator-5.0.8" 117445 + (sources."oas-validator-5.0.8" // { 117446 + dependencies = [ 117447 + sources."yaml-1.10.2" 117448 + ]; 117449 + }) 117392 117450 sources."object-inspect-1.12.2" 117393 117451 sources."object-keys-1.1.1" 117394 117452 sources."object.assign-4.1.4" 117395 117453 sources."once-1.4.0" 117396 117454 sources."onetime-5.1.2" 117397 117455 sources."ono-4.0.11" 117398 - sources."openapi3-ts-2.0.2" 117456 + sources."openapi3-ts-3.0.2" 117399 117457 sources."optionator-0.8.3" 117400 117458 sources."ora-5.4.1" 117401 117459 sources."os-tmpdir-1.0.2" ··· 117473 117531 sources."strip-final-newline-2.0.0" 117474 117532 sources."supports-color-7.2.0" 117475 117533 sources."supports-preserve-symlinks-flag-1.0.0" 117476 - sources."swagger2openapi-7.0.8" 117534 + (sources."swagger2openapi-7.0.8" // { 117535 + dependencies = [ 117536 + sources."yaml-1.10.2" 117537 + ]; 117538 + }) 117477 117539 sources."text-table-0.2.0" 117478 117540 sources."through-2.3.8" 117479 117541 sources."tmp-0.0.33" ··· 117512 117574 sources."xregexp-2.0.0" 117513 117575 sources."y18n-5.0.8" 117514 117576 sources."yallist-3.1.1" 117515 - sources."yaml-1.10.2" 117577 + sources."yaml-2.1.1" 117516 117578 sources."yaml-js-0.2.3" 117517 117579 sources."yargs-17.3.1" 117518 117580 sources."yargs-parser-21.1.1" ··· 117539 117601 dependencies = [ 117540 117602 sources."@ampproject/remapping-2.2.0" 117541 117603 sources."@babel/code-frame-7.18.6" 117542 - sources."@babel/compat-data-7.19.0" 117543 - (sources."@babel/core-7.19.0" // { 117604 + sources."@babel/compat-data-7.19.1" 117605 + (sources."@babel/core-7.19.1" // { 117544 117606 dependencies = [ 117545 117607 sources."json5-2.2.1" 117546 117608 sources."semver-6.3.0" ··· 117553 117615 }) 117554 117616 sources."@babel/helper-annotate-as-pure-7.18.6" 117555 117617 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 117556 - (sources."@babel/helper-compilation-targets-7.19.0" // { 117618 + (sources."@babel/helper-compilation-targets-7.19.1" // { 117557 117619 dependencies = [ 117558 117620 sources."semver-6.3.0" 117559 117621 ]; ··· 117575 117637 sources."@babel/helper-optimise-call-expression-7.18.6" 117576 117638 sources."@babel/helper-plugin-utils-7.19.0" 117577 117639 sources."@babel/helper-remap-async-to-generator-7.18.9" 117578 - sources."@babel/helper-replace-supers-7.18.9" 117640 + sources."@babel/helper-replace-supers-7.19.1" 117579 117641 sources."@babel/helper-simple-access-7.18.6" 117580 117642 sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 117581 117643 sources."@babel/helper-split-export-declaration-7.18.6" 117582 117644 sources."@babel/helper-string-parser-7.18.10" 117583 - sources."@babel/helper-validator-identifier-7.18.6" 117645 + sources."@babel/helper-validator-identifier-7.19.1" 117584 117646 sources."@babel/helper-validator-option-7.18.6" 117585 117647 sources."@babel/helper-wrap-function-7.19.0" 117586 117648 sources."@babel/helpers-7.19.0" 117587 117649 sources."@babel/highlight-7.18.6" 117588 - sources."@babel/parser-7.19.0" 117650 + sources."@babel/parser-7.19.1" 117589 117651 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 117590 117652 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" 117591 - sources."@babel/plugin-proposal-async-generator-functions-7.19.0" 117653 + sources."@babel/plugin-proposal-async-generator-functions-7.19.1" 117592 117654 sources."@babel/plugin-proposal-class-properties-7.18.6" 117593 117655 sources."@babel/plugin-proposal-class-static-block-7.18.6" 117594 117656 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 117639 117701 sources."@babel/plugin-transform-modules-commonjs-7.18.6" 117640 117702 sources."@babel/plugin-transform-modules-systemjs-7.19.0" 117641 117703 sources."@babel/plugin-transform-modules-umd-7.18.6" 117642 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0" 117704 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" 117643 117705 sources."@babel/plugin-transform-new-target-7.18.6" 117644 117706 sources."@babel/plugin-transform-object-super-7.18.6" 117645 117707 sources."@babel/plugin-transform-parameters-7.18.8" ··· 117654 117716 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 117655 117717 sources."@babel/plugin-transform-unicode-escapes-7.18.10" 117656 117718 sources."@babel/plugin-transform-unicode-regex-7.18.6" 117657 - (sources."@babel/preset-env-7.19.0" // { 117719 + (sources."@babel/preset-env-7.19.1" // { 117658 117720 dependencies = [ 117659 117721 sources."semver-6.3.0" 117660 117722 ]; ··· 117662 117724 sources."@babel/preset-modules-0.1.5" 117663 117725 sources."@babel/runtime-7.19.0" 117664 117726 sources."@babel/template-7.18.10" 117665 - sources."@babel/traverse-7.19.0" 117727 + sources."@babel/traverse-7.19.1" 117666 117728 sources."@babel/types-7.19.0" 117667 117729 sources."@iarna/toml-2.2.5" 117668 117730 sources."@jridgewell/gen-mapping-0.1.1" ··· 117734 117796 sources."semver-6.3.0" 117735 117797 ]; 117736 117798 }) 117737 - sources."babel-plugin-polyfill-corejs3-0.5.3" 117799 + sources."babel-plugin-polyfill-corejs3-0.6.0" 117738 117800 sources."babel-plugin-polyfill-regenerator-0.4.1" 117739 117801 (sources."babel-runtime-6.26.0" // { 117740 117802 dependencies = [ ··· 117779 117841 sources."pako-1.0.11" 117780 117842 ]; 117781 117843 }) 117782 - sources."browserslist-4.21.3" 117844 + sources."browserslist-4.21.4" 117783 117845 (sources."buffer-4.9.2" // { 117784 117846 dependencies = [ 117785 117847 sources."isarray-1.0.0" ··· 117796 117858 sources."caller-path-2.0.0" 117797 117859 sources."callsites-2.0.0" 117798 117860 sources."caniuse-api-3.0.0" 117799 - sources."caniuse-lite-1.0.30001399" 117861 + sources."caniuse-lite-1.0.30001406" 117800 117862 sources."caseless-0.12.0" 117801 117863 sources."chalk-2.4.2" 117802 117864 sources."chokidar-2.1.8" ··· 117822 117884 sources."convert-source-map-1.8.0" 117823 117885 sources."copy-descriptor-0.1.1" 117824 117886 sources."core-js-2.6.12" 117825 - sources."core-js-compat-3.25.1" 117887 + sources."core-js-compat-3.25.2" 117826 117888 sources."core-util-is-1.0.3" 117827 117889 sources."cosmiconfig-5.2.1" 117828 117890 (sources."create-ecdh-4.0.4" // { ··· 117929 117991 sources."duplexer2-0.1.4" 117930 117992 sources."ecc-jsbn-0.1.2" 117931 117993 sources."ee-first-1.1.1" 117932 - sources."electron-to-chromium-1.4.248" 117994 + sources."electron-to-chromium-1.4.254" 117933 117995 (sources."elliptic-6.5.4" // { 117934 117996 dependencies = [ 117935 117997 sources."bn.js-4.12.0" ··· 118074 118136 sources."is-binary-path-1.0.1" 118075 118137 sources."is-boolean-object-1.1.2" 118076 118138 sources."is-buffer-1.1.6" 118077 - sources."is-callable-1.2.5" 118139 + sources."is-callable-1.2.6" 118078 118140 sources."is-color-stop-1.1.0" 118079 118141 sources."is-core-module-2.10.0" 118080 118142 (sources."is-data-descriptor-1.0.0" // { ··· 118346 118408 }) 118347 118409 sources."readdirp-2.2.1" 118348 118410 sources."regenerate-1.4.2" 118349 - sources."regenerate-unicode-properties-10.0.1" 118411 + sources."regenerate-unicode-properties-10.1.0" 118350 118412 sources."regenerator-runtime-0.13.9" 118351 118413 sources."regenerator-transform-0.15.0" 118352 118414 (sources."regex-not-1.0.2" // { ··· 118356 118418 ]; 118357 118419 }) 118358 118420 sources."regexp.prototype.flags-1.4.3" 118359 - sources."regexpu-core-5.1.0" 118360 - sources."regjsgen-0.6.0" 118361 - (sources."regjsparser-0.8.4" // { 118421 + sources."regexpu-core-5.2.1" 118422 + sources."regjsgen-0.7.1" 118423 + (sources."regjsparser-0.9.1" // { 118362 118424 dependencies = [ 118363 118425 sources."jsesc-0.5.0" 118364 118426 ]; ··· 118501 118563 sources."unicode-canonical-property-names-ecmascript-2.0.0" 118502 118564 sources."unicode-match-property-ecmascript-2.0.0" 118503 118565 sources."unicode-match-property-value-ecmascript-2.0.0" 118504 - sources."unicode-property-aliases-ecmascript-2.0.0" 118566 + sources."unicode-property-aliases-ecmascript-2.1.0" 118505 118567 sources."unicode-trie-0.3.1" 118506 118568 sources."union-value-1.0.1" 118507 118569 sources."uniq-1.0.1" ··· 118519 118581 ]; 118520 118582 }) 118521 118583 sources."upath-1.2.0" 118522 - sources."update-browserslist-db-1.0.8" 118584 + sources."update-browserslist-db-1.0.9" 118523 118585 sources."uri-js-4.4.1" 118524 118586 sources."urix-0.1.0" 118525 118587 (sources."url-0.11.0" // { ··· 118581 118643 }; 118582 118644 dependencies = [ 118583 118645 sources."@babel/code-frame-7.18.6" 118584 - sources."@babel/helper-validator-identifier-7.18.6" 118646 + sources."@babel/helper-validator-identifier-7.19.1" 118585 118647 (sources."@babel/highlight-7.18.6" // { 118586 118648 dependencies = [ 118587 118649 sources."chalk-2.4.2" ··· 118644 118706 sources."@parcel/runtime-js-2.7.0" 118645 118707 sources."@parcel/runtime-react-refresh-2.7.0" 118646 118708 sources."@parcel/runtime-service-worker-2.7.0" 118647 - sources."@parcel/source-map-2.1.0" 118709 + sources."@parcel/source-map-2.1.1" 118648 118710 sources."@parcel/transformer-babel-2.7.0" 118649 118711 sources."@parcel/transformer-css-2.7.0" 118650 118712 (sources."@parcel/transformer-html-2.7.0" // { ··· 118684 118746 sources."ansi-styles-3.2.1" 118685 118747 sources."base-x-3.0.9" 118686 118748 sources."boolbase-1.0.0" 118687 - sources."browserslist-4.21.3" 118749 + sources."browserslist-4.21.4" 118688 118750 sources."buffer-from-1.1.2" 118689 118751 sources."callsites-3.1.0" 118690 - sources."caniuse-lite-1.0.30001399" 118752 + sources."caniuse-lite-1.0.30001406" 118691 118753 (sources."chalk-4.1.2" // { 118692 118754 dependencies = [ 118693 118755 sources."ansi-styles-4.3.0" ··· 118718 118780 sources."domutils-2.8.0" 118719 118781 sources."dotenv-7.0.0" 118720 118782 sources."dotenv-expand-5.1.0" 118721 - sources."electron-to-chromium-1.4.248" 118783 + sources."electron-to-chromium-1.4.254" 118722 118784 sources."entities-3.0.1" 118723 118785 sources."error-ex-1.3.2" 118724 118786 sources."escalade-3.1.1" ··· 118734 118796 sources."js-tokens-4.0.0" 118735 118797 sources."json-parse-even-better-errors-2.3.1" 118736 118798 sources."json5-2.2.1" 118737 - sources."lightningcss-1.14.0" 118738 - sources."lightningcss-darwin-arm64-1.14.0" 118739 - sources."lightningcss-darwin-x64-1.14.0" 118740 - sources."lightningcss-linux-arm-gnueabihf-1.14.0" 118741 - sources."lightningcss-linux-arm64-gnu-1.14.0" 118742 - sources."lightningcss-linux-arm64-musl-1.14.0" 118743 - sources."lightningcss-linux-x64-gnu-1.14.0" 118744 - sources."lightningcss-linux-x64-musl-1.14.0" 118745 - sources."lightningcss-win32-x64-msvc-1.14.0" 118799 + sources."lightningcss-1.15.1" 118800 + sources."lightningcss-darwin-arm64-1.15.1" 118801 + sources."lightningcss-darwin-x64-1.15.1" 118802 + sources."lightningcss-linux-arm-gnueabihf-1.15.1" 118803 + sources."lightningcss-linux-arm64-gnu-1.15.1" 118804 + sources."lightningcss-linux-arm64-musl-1.15.1" 118805 + sources."lightningcss-linux-x64-gnu-1.15.1" 118806 + sources."lightningcss-linux-x64-musl-1.15.1" 118807 + sources."lightningcss-win32-x64-msvc-1.15.1" 118746 118808 sources."lines-and-columns-1.2.4" 118747 118809 sources."lmdb-2.5.2" 118748 118810 sources."mdn-data-2.0.14" 118749 - sources."msgpackr-1.6.2" 118811 + sources."msgpackr-1.6.3" 118750 118812 sources."msgpackr-extract-2.1.2" 118751 118813 sources."node-addon-api-4.3.0" 118752 118814 sources."node-gyp-build-4.5.0" ··· 118783 118845 sources."timsort-0.3.0" 118784 118846 sources."tslib-2.4.0" 118785 118847 sources."type-fest-0.20.2" 118786 - sources."update-browserslist-db-1.0.8" 118848 + sources."update-browserslist-db-1.0.9" 118787 118849 sources."utility-types-3.10.0" 118788 118850 sources."v8-compile-cache-2.3.0" 118789 118851 sources."weak-lru-cache-1.2.2" ··· 119381 119443 sources."process-nextick-args-2.0.1" 119382 119444 sources."pump-2.0.1" 119383 119445 sources."queue-microtask-1.2.3" 119384 - sources."queue-tick-1.0.0" 119446 + sources."queue-tick-1.0.1" 119385 119447 sources."random-access-file-2.2.1" 119386 119448 sources."random-access-storage-1.4.3" 119387 119449 sources."random-iterate-1.0.1" ··· 119746 119808 sources."punycode-2.1.1" 119747 119809 sources."qs-6.10.3" 119748 119810 sources."queue-microtask-1.2.3" 119749 - sources."queue-tick-1.0.0" 119811 + sources."queue-tick-1.0.1" 119750 119812 sources."random-access-file-2.2.1" 119751 119813 sources."random-access-storage-1.4.3" 119752 119814 sources."random-bytes-1.0.0" ··· 119883 119945 }; 119884 119946 dependencies = [ 119885 119947 sources."@babel/generator-7.18.2" 119886 - sources."@babel/helper-validator-identifier-7.18.6" 119948 + sources."@babel/helper-validator-identifier-7.19.1" 119887 119949 sources."@babel/parser-7.18.4" 119888 119950 sources."@babel/types-7.18.4" 119889 119951 sources."@jridgewell/gen-mapping-0.3.2" ··· 120150 120212 sources."fclone-1.0.11" 120151 120213 sources."file-uri-to-path-2.0.0" 120152 120214 sources."fill-range-7.0.1" 120153 - sources."follow-redirects-1.15.1" 120215 + sources."follow-redirects-1.15.2" 120154 120216 sources."fs-extra-8.1.0" 120155 120217 sources."fs.realpath-1.0.0" 120156 120218 sources."fsevents-2.3.2" ··· 120294 120356 pnpm = nodeEnv.buildNodePackage { 120295 120357 name = "pnpm"; 120296 120358 packageName = "pnpm"; 120297 - version = "7.11.0"; 120359 + version = "7.12.0"; 120298 120360 src = fetchurl { 120299 - url = "https://registry.npmjs.org/pnpm/-/pnpm-7.11.0.tgz"; 120300 - sha512 = "cxh4TfCE8L4ZbLBN72kTGKTYP7X08nrIzoQ2rQCKihAcIHAdNIgsk4bEJyE1xHjE+bNJt9skwr7aJv3LpvUawQ=="; 120361 + url = "https://registry.npmjs.org/pnpm/-/pnpm-7.12.0.tgz"; 120362 + sha512 = "Zc38WaMNkomazbIFl5nq2TR1e97R4iG+G7f9QKUL+YHbHOnkOYV3UuR45xYPhhpn1ArLfTpxjxmRu1H3gn6SPw=="; 120301 120363 }; 120302 120364 buildInputs = globalBuildInputs; 120303 120365 meta = { ··· 120604 120666 dependencies = [ 120605 120667 sources."@ampproject/remapping-2.2.0" 120606 120668 sources."@babel/code-frame-7.18.6" 120607 - sources."@babel/compat-data-7.19.0" 120608 - sources."@babel/core-7.19.0" 120669 + sources."@babel/compat-data-7.19.1" 120670 + sources."@babel/core-7.19.1" 120609 120671 (sources."@babel/generator-7.19.0" // { 120610 120672 dependencies = [ 120611 120673 sources."@jridgewell/gen-mapping-0.3.2" 120612 120674 ]; 120613 120675 }) 120614 - sources."@babel/helper-compilation-targets-7.19.0" 120676 + sources."@babel/helper-compilation-targets-7.19.1" 120615 120677 sources."@babel/helper-environment-visitor-7.18.9" 120616 120678 sources."@babel/helper-function-name-7.19.0" 120617 120679 sources."@babel/helper-hoist-variables-7.18.6" ··· 120620 120682 sources."@babel/helper-simple-access-7.18.6" 120621 120683 sources."@babel/helper-split-export-declaration-7.18.6" 120622 120684 sources."@babel/helper-string-parser-7.18.10" 120623 - sources."@babel/helper-validator-identifier-7.18.6" 120685 + sources."@babel/helper-validator-identifier-7.19.1" 120624 120686 sources."@babel/helper-validator-option-7.18.6" 120625 120687 sources."@babel/helpers-7.19.0" 120626 120688 sources."@babel/highlight-7.18.6" 120627 - sources."@babel/parser-7.19.0" 120689 + sources."@babel/parser-7.19.1" 120628 120690 sources."@babel/template-7.18.10" 120629 - sources."@babel/traverse-7.19.0" 120691 + sources."@babel/traverse-7.19.1" 120630 120692 sources."@babel/types-7.19.0" 120631 120693 sources."@istanbuljs/load-nyc-config-1.1.0" 120632 120694 sources."@istanbuljs/schema-0.1.3" ··· 120645 120707 sources."argparse-1.0.10" 120646 120708 sources."balanced-match-1.0.2" 120647 120709 sources."brace-expansion-1.1.11" 120648 - sources."browserslist-4.21.3" 120710 + sources."browserslist-4.21.4" 120649 120711 sources."caching-transform-4.0.0" 120650 120712 sources."camelcase-5.3.1" 120651 - sources."caniuse-lite-1.0.30001399" 120713 + sources."caniuse-lite-1.0.30001406" 120652 120714 sources."chalk-2.4.2" 120653 120715 sources."clean-stack-2.2.0" 120654 120716 sources."cliui-6.0.0" ··· 120661 120723 sources."debug-4.3.4" 120662 120724 sources."decamelize-1.2.0" 120663 120725 sources."default-require-extensions-3.0.0" 120664 - sources."electron-to-chromium-1.4.248" 120726 + sources."electron-to-chromium-1.4.254" 120665 120727 sources."emoji-regex-8.0.0" 120666 120728 sources."es6-error-4.1.1" 120667 120729 sources."escalade-3.1.1" ··· 120750 120812 sources."to-fast-properties-2.0.0" 120751 120813 sources."type-fest-0.8.1" 120752 120814 sources."typedarray-to-buffer-3.1.5" 120753 - sources."update-browserslist-db-1.0.8" 120815 + sources."update-browserslist-db-1.0.9" 120754 120816 sources."uuid-8.3.2" 120755 120817 sources."vscode-jsonrpc-8.0.2" 120756 120818 sources."vscode-languageserver-8.0.2" ··· 121218 121280 sources."define-lazy-prop-2.0.0" 121219 121281 sources."duplexer3-0.1.5" 121220 121282 sources."end-of-stream-1.4.4" 121221 - sources."follow-redirects-1.15.1" 121283 + sources."follow-redirects-1.15.2" 121222 121284 sources."fs-extra-10.1.0" 121223 121285 sources."function-bind-1.1.1" 121224 121286 sources."get-intrinsic-1.1.3" ··· 121293 121355 pyright = nodeEnv.buildNodePackage { 121294 121356 name = "pyright"; 121295 121357 packageName = "pyright"; 121296 - version = "1.1.270"; 121358 + version = "1.1.271"; 121297 121359 src = fetchurl { 121298 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.270.tgz"; 121299 - sha512 = "9SmZfgAhByPeMk0AAb41lAXENjoC1gGXKCP4qaexGAEu9pOYSUMQFgNTyRzKizafa6LtIBGGhgSaJrpWZyBn7w=="; 121360 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.271.tgz"; 121361 + sha512 = "46QQLQLT5U+wmKqG9R193loBASqqcIZYwWrwTCWNTHIRYTxEbaHwGWDlmX19R3lmlIBDu9I9m5MyPmYs/2v5dg=="; 121300 121362 }; 121301 121363 buildInputs = globalBuildInputs; 121302 121364 meta = { ··· 121583 121645 sources."is-arguments-1.1.1" 121584 121646 sources."is-bigint-1.0.4" 121585 121647 sources."is-boolean-object-1.1.2" 121586 - sources."is-callable-1.2.5" 121648 + sources."is-callable-1.2.6" 121587 121649 sources."is-date-object-1.0.5" 121588 121650 sources."is-map-2.0.2" 121589 121651 sources."is-negative-zero-2.0.2" ··· 121657 121719 sources."@ampproject/remapping-2.2.0" 121658 121720 sources."@babel/cli-7.18.10" 121659 121721 sources."@babel/code-frame-7.18.6" 121660 - sources."@babel/compat-data-7.19.0" 121661 - (sources."@babel/core-7.19.0" // { 121722 + sources."@babel/compat-data-7.19.1" 121723 + (sources."@babel/core-7.19.1" // { 121662 121724 dependencies = [ 121663 121725 sources."semver-6.3.0" 121664 121726 ]; ··· 121670 121732 }) 121671 121733 sources."@babel/helper-annotate-as-pure-7.18.6" 121672 121734 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 121673 - (sources."@babel/helper-compilation-targets-7.19.0" // { 121735 + (sources."@babel/helper-compilation-targets-7.19.1" // { 121674 121736 dependencies = [ 121675 121737 sources."semver-6.3.0" 121676 121738 ]; ··· 121692 121754 sources."@babel/helper-optimise-call-expression-7.18.6" 121693 121755 sources."@babel/helper-plugin-utils-7.19.0" 121694 121756 sources."@babel/helper-remap-async-to-generator-7.18.9" 121695 - sources."@babel/helper-replace-supers-7.18.9" 121757 + sources."@babel/helper-replace-supers-7.19.1" 121696 121758 sources."@babel/helper-simple-access-7.18.6" 121697 121759 sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 121698 121760 sources."@babel/helper-split-export-declaration-7.18.6" 121699 121761 sources."@babel/helper-string-parser-7.18.10" 121700 - sources."@babel/helper-validator-identifier-7.18.6" 121762 + sources."@babel/helper-validator-identifier-7.19.1" 121701 121763 sources."@babel/helper-validator-option-7.18.6" 121702 121764 sources."@babel/helper-wrap-function-7.19.0" 121703 121765 sources."@babel/helpers-7.19.0" 121704 121766 sources."@babel/highlight-7.18.6" 121705 - sources."@babel/parser-7.19.0" 121767 + sources."@babel/parser-7.19.1" 121706 121768 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 121707 121769 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" 121708 - sources."@babel/plugin-proposal-async-generator-functions-7.19.0" 121770 + sources."@babel/plugin-proposal-async-generator-functions-7.19.1" 121709 121771 sources."@babel/plugin-proposal-class-properties-7.18.6" 121710 121772 sources."@babel/plugin-proposal-class-static-block-7.18.6" 121711 121773 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 121756 121818 sources."@babel/plugin-transform-modules-commonjs-7.18.6" 121757 121819 sources."@babel/plugin-transform-modules-systemjs-7.19.0" 121758 121820 sources."@babel/plugin-transform-modules-umd-7.18.6" 121759 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0" 121821 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" 121760 121822 sources."@babel/plugin-transform-new-target-7.18.6" 121761 121823 sources."@babel/plugin-transform-object-super-7.18.6" 121762 121824 sources."@babel/plugin-transform-parameters-7.18.8" ··· 121767 121829 sources."@babel/plugin-transform-react-pure-annotations-7.18.6" 121768 121830 sources."@babel/plugin-transform-regenerator-7.18.6" 121769 121831 sources."@babel/plugin-transform-reserved-words-7.18.6" 121770 - (sources."@babel/plugin-transform-runtime-7.18.10" // { 121832 + (sources."@babel/plugin-transform-runtime-7.19.1" // { 121771 121833 dependencies = [ 121772 121834 sources."semver-6.3.0" 121773 121835 ]; ··· 121779 121841 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 121780 121842 sources."@babel/plugin-transform-unicode-escapes-7.18.10" 121781 121843 sources."@babel/plugin-transform-unicode-regex-7.18.6" 121782 - (sources."@babel/preset-env-7.19.0" // { 121844 + (sources."@babel/preset-env-7.19.1" // { 121783 121845 dependencies = [ 121784 121846 sources."semver-6.3.0" 121785 121847 ]; ··· 121790 121852 sources."@babel/register-7.18.9" 121791 121853 sources."@babel/runtime-7.19.0" 121792 121854 sources."@babel/template-7.18.10" 121793 - sources."@babel/traverse-7.19.0" 121855 + sources."@babel/traverse-7.19.1" 121794 121856 sources."@babel/types-7.19.0" 121795 121857 sources."@jridgewell/gen-mapping-0.1.1" 121796 121858 sources."@jridgewell/resolve-uri-3.1.0" ··· 121802 121864 sources."@types/glob-7.2.0" 121803 121865 sources."@types/json-schema-7.0.11" 121804 121866 sources."@types/minimatch-5.1.2" 121805 - sources."@types/node-18.7.17" 121867 + sources."@types/node-18.7.18" 121806 121868 sources."@types/parse-json-4.0.0" 121807 121869 sources."@types/q-1.5.5" 121808 121870 sources."@webassemblyjs/ast-1.9.0" ··· 121901 121963 sources."semver-6.3.0" 121902 121964 ]; 121903 121965 }) 121904 - sources."babel-plugin-polyfill-corejs3-0.5.3" 121966 + sources."babel-plugin-polyfill-corejs3-0.6.0" 121905 121967 sources."babel-plugin-polyfill-regenerator-0.4.1" 121906 121968 sources."babel-plugin-transform-react-remove-prop-types-0.4.24" 121907 121969 sources."babel-plugin-universal-import-4.0.2" ··· 121961 122023 ]; 121962 122024 }) 121963 122025 sources."browserify-zlib-0.1.4" 121964 - sources."browserslist-4.21.3" 122026 + sources."browserslist-4.21.4" 121965 122027 sources."buffer-5.7.1" 121966 122028 sources."buffer-alloc-1.2.0" 121967 122029 sources."buffer-alloc-unsafe-1.1.0" ··· 121995 122057 sources."camel-case-3.0.0" 121996 122058 sources."camelcase-5.3.1" 121997 122059 sources."caniuse-api-3.0.0" 121998 - sources."caniuse-lite-1.0.30001399" 122060 + sources."caniuse-lite-1.0.30001406" 121999 122061 sources."case-sensitive-paths-webpack-plugin-2.4.0" 122000 122062 sources."caw-2.0.1" 122001 122063 sources."chalk-2.4.2" ··· 122075 122137 sources."copy-concurrently-1.0.5" 122076 122138 sources."copy-descriptor-0.1.1" 122077 122139 sources."core-js-2.6.12" 122078 - sources."core-js-compat-3.25.1" 122140 + sources."core-js-compat-3.25.2" 122079 122141 sources."core-util-is-1.0.3" 122080 122142 sources."cors-2.8.5" 122081 122143 sources."cosmiconfig-6.0.0" ··· 122212 122274 sources."duplexify-3.7.1" 122213 122275 sources."ee-first-1.1.1" 122214 122276 sources."ejs-2.7.4" 122215 - sources."electron-to-chromium-1.4.248" 122277 + sources."electron-to-chromium-1.4.254" 122216 122278 (sources."elliptic-6.5.4" // { 122217 122279 dependencies = [ 122218 122280 sources."bn.js-4.12.0" ··· 122349 122411 sources."find-cache-dir-2.1.0" 122350 122412 sources."find-up-3.0.0" 122351 122413 sources."flush-write-stream-1.1.1" 122352 - sources."follow-redirects-1.15.1" 122414 + sources."follow-redirects-1.15.2" 122353 122415 sources."for-in-1.0.2" 122354 122416 sources."forwarded-0.2.0" 122355 122417 sources."fragment-cache-0.2.1" ··· 122512 122574 sources."is-binary-path-2.1.0" 122513 122575 sources."is-boolean-object-1.1.2" 122514 122576 sources."is-buffer-1.1.6" 122515 - sources."is-callable-1.2.5" 122577 + sources."is-callable-1.2.6" 122516 122578 sources."is-color-stop-1.1.0" 122517 122579 sources."is-core-module-2.10.0" 122518 122580 sources."is-data-descriptor-1.0.0" ··· 122932 122994 sources."readable-stream-2.3.7" 122933 122995 sources."readdirp-3.6.0" 122934 122996 sources."regenerate-1.4.2" 122935 - sources."regenerate-unicode-properties-10.0.1" 122997 + sources."regenerate-unicode-properties-10.1.0" 122936 122998 sources."regenerator-runtime-0.13.9" 122937 122999 sources."regenerator-transform-0.15.0" 122938 123000 sources."regex-not-1.0.2" 122939 123001 sources."regexp.prototype.flags-1.4.3" 122940 - sources."regexpu-core-5.1.0" 123002 + sources."regexpu-core-5.2.1" 122941 123003 sources."registry-auth-token-3.3.2" 122942 123004 sources."registry-url-3.1.0" 122943 - sources."regjsgen-0.6.0" 122944 - (sources."regjsparser-0.8.4" // { 123005 + sources."regjsgen-0.7.1" 123006 + (sources."regjsparser-0.9.1" // { 122945 123007 dependencies = [ 122946 123008 sources."jsesc-0.5.0" 122947 123009 ]; ··· 123248 123310 sources."unicode-canonical-property-names-ecmascript-2.0.0" 123249 123311 sources."unicode-match-property-ecmascript-2.0.0" 123250 123312 sources."unicode-match-property-value-ecmascript-2.0.0" 123251 - sources."unicode-property-aliases-ecmascript-2.0.0" 123313 + sources."unicode-property-aliases-ecmascript-2.1.0" 123252 123314 sources."union-value-1.0.1" 123253 123315 sources."uniq-1.0.1" 123254 123316 sources."uniqs-2.0.0" ··· 123268 123330 ]; 123269 123331 }) 123270 123332 sources."upath-1.2.0" 123271 - sources."update-browserslist-db-1.0.8" 123333 + sources."update-browserslist-db-1.0.9" 123272 123334 sources."update-check-1.5.2" 123273 123335 sources."upper-case-1.1.3" 123274 123336 sources."uri-js-4.4.1" ··· 123514 123576 ]; 123515 123577 }) 123516 123578 sources."debug-4.3.4" 123517 - sources."decimal.js-10.4.0" 123579 + sources."decimal.js-10.4.1" 123518 123580 sources."deep-is-0.1.4" 123519 123581 sources."delayed-stream-1.0.0" 123520 123582 sources."domexception-4.0.0" ··· 123602 123664 sources."@babel/helper-module-imports-7.18.6" 123603 123665 sources."@babel/helper-split-export-declaration-7.18.6" 123604 123666 sources."@babel/helper-string-parser-7.18.10" 123605 - sources."@babel/helper-validator-identifier-7.18.6" 123667 + sources."@babel/helper-validator-identifier-7.19.1" 123606 123668 sources."@babel/highlight-7.18.6" 123607 - sources."@babel/parser-7.19.0" 123669 + sources."@babel/parser-7.19.1" 123608 123670 sources."@babel/runtime-7.19.0" 123609 123671 sources."@babel/template-7.18.10" 123610 - sources."@babel/traverse-7.19.0" 123672 + sources."@babel/traverse-7.19.1" 123611 123673 sources."@babel/types-7.19.0" 123612 123674 sources."@emotion/is-prop-valid-1.2.0" 123613 123675 sources."@emotion/memoize-0.8.0" ··· 123619 123681 sources."@jridgewell/set-array-1.1.2" 123620 123682 sources."@jridgewell/sourcemap-codec-1.4.14" 123621 123683 sources."@jridgewell/trace-mapping-0.3.15" 123622 - sources."@redocly/ajv-8.6.5" 123623 - sources."@redocly/openapi-core-1.0.0-beta.108" 123684 + sources."@redocly/ajv-8.11.0" 123685 + sources."@redocly/openapi-core-1.0.0-beta.109" 123624 123686 sources."@sindresorhus/is-0.14.0" 123625 123687 sources."@szmarczak/http-timer-1.1.2" 123626 123688 sources."@types/json-schema-7.0.11" 123627 - sources."@types/node-14.18.28" 123689 + sources."@types/node-14.18.29" 123628 123690 sources."ansi-align-3.0.1" 123629 123691 sources."ansi-regex-5.0.1" 123630 123692 sources."ansi-styles-3.2.1" ··· 124548 124610 sources."@types/json-schema-7.0.11" 124549 124611 sources."@types/node-14.17.34" 124550 124612 sources."@types/vscode-1.66.0" 124551 - sources."@typescript-eslint/eslint-plugin-5.37.0" 124552 - sources."@typescript-eslint/parser-5.37.0" 124553 - sources."@typescript-eslint/scope-manager-5.37.0" 124554 - sources."@typescript-eslint/type-utils-5.37.0" 124555 - sources."@typescript-eslint/types-5.37.0" 124556 - sources."@typescript-eslint/typescript-estree-5.37.0" 124557 - sources."@typescript-eslint/utils-5.37.0" 124558 - sources."@typescript-eslint/visitor-keys-5.37.0" 124613 + sources."@typescript-eslint/eslint-plugin-5.38.0" 124614 + sources."@typescript-eslint/parser-5.38.0" 124615 + sources."@typescript-eslint/scope-manager-5.38.0" 124616 + sources."@typescript-eslint/type-utils-5.38.0" 124617 + sources."@typescript-eslint/types-5.38.0" 124618 + sources."@typescript-eslint/typescript-estree-5.38.0" 124619 + sources."@typescript-eslint/utils-5.38.0" 124620 + sources."@typescript-eslint/visitor-keys-5.38.0" 124559 124621 sources."@vscode/test-electron-2.1.5" 124560 124622 sources."acorn-8.8.0" 124561 124623 sources."acorn-jsx-5.3.2" ··· 124720 124782 ]; 124721 124783 }) 124722 124784 sources."function-bind-1.1.1" 124723 - sources."functional-red-black-tree-1.0.1" 124724 124785 sources."get-caller-file-2.0.5" 124725 124786 sources."get-intrinsic-1.1.3" 124726 124787 sources."github-from-package-0.0.0" ··· 124982 125043 sources."commander-1.3.2" 124983 125044 ]; 124984 125045 }) 124985 - sources."follow-redirects-1.15.1" 125046 + sources."follow-redirects-1.15.2" 124986 125047 sources."formidable-1.0.11" 124987 125048 sources."fresh-0.2.0" 124988 125049 sources."function-bind-1.1.1" ··· 125254 125315 sources."@types/http-cache-semantics-4.0.1" 125255 125316 sources."@types/keyv-3.1.4" 125256 125317 sources."@types/lodash-4.14.185" 125257 - sources."@types/node-18.7.17" 125318 + sources."@types/node-18.7.18" 125258 125319 sources."@types/responselike-1.0.0" 125259 125320 sources."adm-zip-0.5.9" 125260 125321 sources."agent-base-6.0.2" ··· 125282 125343 sources."asynckit-0.4.0" 125283 125344 sources."at-least-node-1.0.0" 125284 125345 sources."available-typed-arrays-1.0.5" 125285 - (sources."aws-sdk-2.1214.0" // { 125346 + (sources."aws-sdk-2.1218.0" // { 125286 125347 dependencies = [ 125287 125348 sources."buffer-4.9.2" 125288 125349 sources."ieee754-1.1.13" ··· 125456 125517 sources."fill-range-7.0.1" 125457 125518 sources."find-requires-1.0.0" 125458 125519 sources."flat-5.0.2" 125459 - sources."follow-redirects-1.15.1" 125520 + sources."follow-redirects-1.15.2" 125460 125521 sources."for-each-0.3.3" 125461 125522 sources."form-data-4.0.0" 125462 125523 (sources."formidable-2.0.1" // { ··· 125506 125567 sources."is-bigint-1.0.4" 125507 125568 sources."is-binary-path-2.1.0" 125508 125569 sources."is-boolean-object-1.1.2" 125509 - sources."is-callable-1.2.5" 125570 + sources."is-callable-1.2.6" 125510 125571 sources."is-date-object-1.0.5" 125511 125572 sources."is-docker-2.2.1" 125512 125573 sources."is-extglob-2.1.1" ··· 125662 125723 sources."shebang-regex-1.0.0" 125663 125724 sources."side-channel-1.0.4" 125664 125725 sources."signal-exit-3.0.7" 125665 - sources."simple-git-3.14.0" 125726 + sources."simple-git-3.14.1" 125666 125727 sources."slash-3.0.0" 125667 125728 sources."sort-keys-1.1.2" 125668 125729 sources."sort-keys-length-1.0.1" ··· 126395 126456 snyk = nodeEnv.buildNodePackage { 126396 126457 name = "snyk"; 126397 126458 packageName = "snyk"; 126398 - version = "1.1002.0"; 126459 + version = "1.1006.0"; 126399 126460 src = fetchurl { 126400 - url = "https://registry.npmjs.org/snyk/-/snyk-1.1002.0.tgz"; 126401 - sha512 = "CS7MdL/1t13464fgztszli4lkAHqZr9ZkwNNb3Ef2OokJnbC0LkvMIbI9U/rBBtFMKFKcgdCJCYxwzbwtTicMw=="; 126461 + url = "https://registry.npmjs.org/snyk/-/snyk-1.1006.0.tgz"; 126462 + sha512 = "xnMLyyvRS0nbRrISiHOLYu7XCC/Hzk+Bvkt72ugmTH/gOc9EVqR5iCMdTo9iLoY/8lzINxsKeHZk8/eP5l2muA=="; 126402 126463 }; 126403 126464 buildInputs = globalBuildInputs; 126404 126465 meta = { ··· 126421 126482 sources."@socket.io/component-emitter-3.1.0" 126422 126483 sources."@types/cookie-0.4.1" 126423 126484 sources."@types/cors-2.8.12" 126424 - sources."@types/node-18.7.17" 126485 + sources."@types/node-18.7.18" 126425 126486 sources."accepts-1.3.8" 126426 126487 sources."base64id-2.0.0" 126427 126488 sources."cookie-0.4.2" ··· 126459 126520 }; 126460 126521 dependencies = [ 126461 126522 sources."@babel/code-frame-7.18.6" 126462 - sources."@babel/helper-validator-identifier-7.18.6" 126523 + sources."@babel/helper-validator-identifier-7.19.1" 126463 126524 (sources."@babel/highlight-7.18.6" // { 126464 126525 dependencies = [ 126465 126526 sources."ansi-styles-3.2.1" ··· 126935 126996 sources."is-binary-path-1.0.1" 126936 126997 sources."is-boolean-object-1.1.2" 126937 126998 sources."is-buffer-1.1.6" 126938 - sources."is-callable-1.2.5" 126999 + sources."is-callable-1.2.6" 126939 127000 sources."is-canonical-base64-1.1.1" 126940 127001 sources."is-core-module-2.10.0" 126941 127002 (sources."is-data-descriptor-1.0.0" // { ··· 127214 127275 sources."push-stream-11.0.1" 127215 127276 ]; 127216 127277 }) 127217 - sources."queue-tick-1.0.0" 127278 + sources."queue-tick-1.0.1" 127218 127279 sources."quicktask-1.0.1" 127219 127280 sources."railroad-diagrams-1.0.0" 127220 127281 sources."randexp-0.4.6" ··· 127389 127450 sources."split-string-3.1.0" 127390 127451 (sources."ssb-bendy-butt-0.12.5" // { 127391 127452 dependencies = [ 127392 - (sources."ssb-keys-8.4.1" // { 127453 + (sources."ssb-keys-8.5.0" // { 127393 127454 dependencies = [ 127394 - sources."ssb-uri2-2.0.2" 127455 + sources."ssb-uri2-2.1.0" 127395 127456 ]; 127396 127457 }) 127397 127458 sources."ssb-uri2-1.9.0" 127398 127459 ]; 127399 127460 }) 127400 - sources."ssb-bfe-3.5.0" 127401 - sources."ssb-bfe-spec-0.6.0" 127461 + sources."ssb-bfe-3.6.0" 127462 + sources."ssb-bfe-spec-0.7.0" 127402 127463 sources."ssb-blobs-1.2.2" 127403 127464 sources."ssb-caps-1.1.0" 127404 127465 sources."ssb-client-4.9.0" 127405 127466 (sources."ssb-config-3.4.6" // { 127406 127467 dependencies = [ 127407 - sources."ssb-keys-8.4.1" 127468 + sources."ssb-keys-8.5.0" 127408 127469 ]; 127409 127470 }) 127410 127471 sources."ssb-db-19.2.0" ··· 127422 127483 sources."mkdirp-1.0.4" 127423 127484 sources."push-stream-11.0.1" 127424 127485 sources."rimraf-3.0.2" 127425 - (sources."ssb-keys-8.4.1" // { 127486 + (sources."ssb-keys-8.5.0" // { 127426 127487 dependencies = [ 127427 127488 sources."mkdirp-0.5.6" 127428 - sources."ssb-uri2-2.0.2" 127489 + sources."ssb-uri2-2.1.0" 127429 127490 ]; 127430 127491 }) 127431 127492 sources."ssb-uri2-1.9.0" ··· 127466 127527 sources."ssb-replicate-1.3.3" 127467 127528 sources."ssb-typescript-2.8.0" 127468 127529 sources."ssb-unix-socket-1.0.0" 127469 - sources."ssb-uri2-2.0.2" 127530 + sources."ssb-uri2-2.1.0" 127470 127531 (sources."ssb-validate-4.1.4" // { 127471 127532 dependencies = [ 127472 - sources."ssb-keys-8.4.1" 127533 + sources."ssb-keys-8.5.0" 127473 127534 ]; 127474 127535 }) 127475 127536 sources."ssb-validate2-0.1.2" ··· 127678 127739 sources."async-limiter-1.0.1" 127679 127740 sources."asynckit-0.4.0" 127680 127741 sources."available-typed-arrays-1.0.5" 127681 - (sources."aws-sdk-2.1214.0" // { 127742 + (sources."aws-sdk-2.1218.0" // { 127682 127743 dependencies = [ 127683 127744 sources."uuid-8.0.0" 127684 127745 ]; ··· 127870 127931 sources."fd-slicer-1.1.0" 127871 127932 sources."finalhandler-1.2.0" 127872 127933 sources."find-up-3.0.0" 127873 - sources."follow-redirects-1.15.1" 127934 + sources."follow-redirects-1.15.2" 127874 127935 sources."for-each-0.3.3" 127875 127936 sources."forever-agent-0.6.1" 127876 127937 sources."form-data-2.1.4" ··· 127893 127954 ]; 127894 127955 }) 127895 127956 sources."glob-6.0.4" 127896 - (sources."gm-1.23.1" // { 127957 + (sources."gm-1.24.0" // { 127897 127958 dependencies = [ 127898 127959 sources."debug-3.2.7" 127899 127960 ]; ··· 127946 128007 sources."is-bigint-1.0.4" 127947 128008 sources."is-boolean-object-1.1.2" 127948 128009 sources."is-buffer-1.1.6" 127949 - sources."is-callable-1.2.5" 128010 + sources."is-callable-1.2.6" 127950 128011 sources."is-core-module-2.10.0" 127951 128012 sources."is-date-object-1.0.5" 127952 128013 (sources."is-expression-3.0.0" // { ··· 128496 128557 stylelint = nodeEnv.buildNodePackage { 128497 128558 name = "stylelint"; 128498 128559 packageName = "stylelint"; 128499 - version = "14.11.0"; 128560 + version = "14.12.0"; 128500 128561 src = fetchurl { 128501 - url = "https://registry.npmjs.org/stylelint/-/stylelint-14.11.0.tgz"; 128502 - sha512 = "OTLjLPxpvGtojEfpESWM8Ir64Z01E89xsisaBMUP/ngOx1+4VG2DPRcUyCCiin9Rd3kPXPsh/uwHd9eqnvhsYA=="; 128562 + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.12.0.tgz"; 128563 + sha512 = "9Sa+IsT31PN9zf9q5ZVZNvhT6jMVu6YhpI38g3Akn7vONipGL0GNd9QCblwtJ3ysaoM80P/+9mOcFB1xnytiQQ=="; 128503 128564 }; 128504 128565 dependencies = [ 128505 128566 sources."@babel/code-frame-7.18.6" 128506 - sources."@babel/helper-validator-identifier-7.18.6" 128567 + sources."@babel/helper-validator-identifier-7.19.1" 128507 128568 sources."@babel/highlight-7.18.6" 128508 128569 sources."@csstools/selector-specificity-2.0.2" 128509 128570 sources."@nodelib/fs.scandir-2.1.5" ··· 128857 128918 sources."@nodelib/fs.scandir-2.1.5" 128858 128919 sources."@nodelib/fs.stat-2.0.5" 128859 128920 sources."@nodelib/fs.walk-1.2.8" 128860 - sources."@types/node-18.7.17" 128921 + sources."@types/node-18.7.18" 128861 128922 sources."@types/pug-2.0.6" 128862 128923 sources."@types/sass-1.43.1" 128863 128924 sources."anymatch-3.1.2" ··· 128929 128990 svelte-language-server = nodeEnv.buildNodePackage { 128930 128991 name = "svelte-language-server"; 128931 128992 packageName = "svelte-language-server"; 128932 - version = "0.14.34"; 128993 + version = "0.14.35"; 128933 128994 src = fetchurl { 128934 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.34.tgz"; 128935 - sha512 = "VXSZ4nkXyItxpG32adzRF3utN7YgwImPFP86B/LTvleIPz9oYrsLf/2V+oXpymdTA+dzomYLXWDCgtN4CvPPOQ=="; 128995 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.35.tgz"; 128996 + sha512 = "vQgIS8yf4NYUpEI+todZXrSmYbRVU2uDc9ejxWKRJ1ZMkyoEZ+jz6+C/0Jx+SG3whlaLxqP7KJHy6+ITbGqIjw=="; 128936 128997 }; 128937 128998 dependencies = [ 128938 128999 sources."@emmetio/abbreviation-2.2.3" ··· 128944 129005 sources."@nodelib/fs.scandir-2.1.5" 128945 129006 sources."@nodelib/fs.stat-2.0.5" 128946 129007 sources."@nodelib/fs.walk-1.2.8" 128947 - sources."@types/node-18.7.17" 129008 + sources."@types/node-18.7.18" 128948 129009 sources."@types/pug-2.0.6" 128949 129010 sources."@types/sass-1.43.1" 128950 129011 sources."anymatch-3.1.2" ··· 129003 129064 sources."strip-indent-3.0.0" 129004 129065 sources."svelte-3.50.1" 129005 129066 sources."svelte-preprocess-4.10.7" 129006 - sources."svelte2tsx-0.5.17" 129067 + sources."svelte2tsx-0.5.18" 129007 129068 sources."to-regex-range-5.0.1" 129008 129069 sources."tslib-2.4.0" 129009 129070 sources."typescript-4.8.3" ··· 129029 129090 sources."vscode-languageserver-textdocument-1.0.7" 129030 129091 sources."vscode-languageserver-types-3.16.0" 129031 129092 sources."vscode-nls-5.2.0" 129032 - sources."vscode-uri-3.0.3" 129093 + sources."vscode-uri-3.0.6" 129033 129094 sources."wrappy-1.0.2" 129034 129095 ]; 129035 129096 buildInputs = globalBuildInputs; ··· 130340 130401 }; 130341 130402 dependencies = [ 130342 130403 sources."@babel/code-frame-7.18.6" 130343 - sources."@babel/helper-validator-identifier-7.18.6" 130404 + sources."@babel/helper-validator-identifier-7.19.1" 130344 130405 sources."@babel/highlight-7.18.6" 130345 130406 sources."@sindresorhus/is-0.14.0" 130346 130407 sources."@szmarczak/http-timer-1.1.2" ··· 131255 131316 sources."internal-slot-1.0.3" 131256 131317 sources."is-bigint-1.0.4" 131257 131318 sources."is-boolean-object-1.1.2" 131258 - sources."is-callable-1.2.5" 131319 + sources."is-callable-1.2.6" 131259 131320 sources."is-capitalized-1.0.0" 131260 131321 sources."is-date-object-1.0.5" 131261 131322 sources."is-negative-zero-2.0.2" ··· 131340 131401 sources."@types/cors-2.8.12" 131341 131402 sources."@types/http-cache-semantics-4.0.1" 131342 131403 sources."@types/keyv-3.1.4" 131343 - sources."@types/node-18.7.17" 131404 + sources."@types/node-18.7.18" 131344 131405 sources."@types/responselike-1.0.0" 131345 131406 sources."abbrev-1.1.1" 131346 131407 sources."abstract-logging-2.0.1" ··· 131391 131452 sources."content-type-1.0.4" 131392 131453 sources."cookie-0.4.2" 131393 131454 sources."cookie-signature-1.0.6" 131394 - sources."core-js-3.25.1" 131455 + sources."core-js-3.25.2" 131395 131456 sources."core-util-is-1.0.2" 131396 131457 sources."cors-2.8.5" 131397 131458 sources."css-select-4.3.0" ··· 131488 131549 sources."is-arguments-1.1.1" 131489 131550 sources."is-bigint-1.0.4" 131490 131551 sources."is-boolean-object-1.1.2" 131491 - sources."is-callable-1.2.5" 131552 + sources."is-callable-1.2.6" 131492 131553 sources."is-date-object-1.0.5" 131493 131554 sources."is-fullwidth-code-point-3.0.0" 131494 131555 sources."is-generator-function-1.0.10" ··· 131684 131745 sources."@types/cors-2.8.12" 131685 131746 sources."@types/http-cache-semantics-4.0.1" 131686 131747 sources."@types/keyv-3.1.4" 131687 - sources."@types/node-18.7.17" 131748 + sources."@types/node-18.7.18" 131688 131749 sources."@types/responselike-1.0.0" 131689 131750 sources."abbrev-1.1.1" 131690 131751 sources."abstract-logging-2.0.1" ··· 131735 131796 sources."content-type-1.0.4" 131736 131797 sources."cookie-0.4.2" 131737 131798 sources."cookie-signature-1.0.6" 131738 - sources."core-js-3.25.1" 131799 + sources."core-js-3.25.2" 131739 131800 sources."core-util-is-1.0.2" 131740 131801 sources."cors-2.8.5" 131741 131802 sources."css-select-4.3.0" ··· 131832 131893 sources."is-arguments-1.1.1" 131833 131894 sources."is-bigint-1.0.4" 131834 131895 sources."is-boolean-object-1.1.2" 131835 - sources."is-callable-1.2.5" 131896 + sources."is-callable-1.2.6" 131836 131897 sources."is-date-object-1.0.5" 131837 131898 sources."is-fullwidth-code-point-3.0.0" 131838 131899 sources."is-generator-function-1.0.10" ··· 132103 132164 sources."content-type-1.0.4" 132104 132165 sources."cookie-0.4.0" 132105 132166 sources."cookie-signature-1.0.6" 132106 - sources."core-js-3.25.1" 132167 + sources."core-js-3.25.2" 132107 132168 sources."core-util-is-1.0.2" 132108 132169 sources."css-select-1.2.0" 132109 132170 sources."css-what-2.1.3" ··· 132695 132756 sources."@types/cacheable-request-6.0.2" 132696 132757 sources."@types/http-cache-semantics-4.0.1" 132697 132758 sources."@types/keyv-3.1.4" 132698 - sources."@types/node-18.7.17" 132759 + sources."@types/node-18.7.18" 132699 132760 sources."@types/responselike-1.0.0" 132700 132761 sources."abbrev-1.1.1" 132701 132762 sources."abstract-logging-2.0.1" ··· 132775 132836 sources."content-type-1.0.4" 132776 132837 sources."cookie-0.4.0" 132777 132838 sources."cookie-signature-1.0.6" 132778 - sources."core-js-3.25.1" 132839 + sources."core-js-3.25.2" 132779 132840 sources."core-util-is-1.0.2" 132780 132841 sources."css-select-1.2.0" 132781 132842 sources."css-what-2.1.3" ··· 133160 133221 sources."@types/cacheable-request-6.0.2" 133161 133222 sources."@types/http-cache-semantics-4.0.1" 133162 133223 sources."@types/keyv-3.1.4" 133163 - sources."@types/node-18.7.17" 133224 + sources."@types/node-18.7.18" 133164 133225 sources."@types/responselike-1.0.0" 133165 133226 sources."abbrev-1.1.1" 133166 133227 sources."abstract-logging-2.0.1" ··· 133240 133301 sources."content-type-1.0.4" 133241 133302 sources."cookie-0.4.0" 133242 133303 sources."cookie-signature-1.0.6" 133243 - sources."core-js-3.25.1" 133304 + sources."core-js-3.25.2" 133244 133305 sources."core-util-is-1.0.2" 133245 133306 sources."css-select-1.2.0" 133246 133307 sources."css-what-2.1.3" ··· 134056 134117 sources."@types/cacheable-request-6.0.2" 134057 134118 sources."@types/http-cache-semantics-4.0.1" 134058 134119 sources."@types/keyv-3.1.4" 134059 - sources."@types/node-18.7.17" 134120 + sources."@types/node-18.7.18" 134060 134121 sources."@types/responselike-1.0.0" 134061 134122 sources."@xmldom/xmldom-0.8.2" 134062 134123 sources."ajv-6.12.6" ··· 134562 134623 sources."vscode-languageserver-protocol-3.17.2" 134563 134624 sources."vscode-languageserver-textdocument-1.0.7" 134564 134625 sources."vscode-languageserver-types-3.17.2" 134565 - sources."vscode-uri-3.0.3" 134626 + sources."vscode-uri-3.0.6" 134566 134627 sources."which-2.0.2" 134567 134628 sources."yallist-4.0.0" 134568 134629 sources."yocto-queue-1.0.0" ··· 134629 134690 sources."@sindresorhus/is-5.3.0" 134630 134691 sources."@socket.io/component-emitter-3.1.0" 134631 134692 sources."@szmarczak/http-timer-5.0.1" 134632 - sources."@types/cacheable-request-6.0.2" 134633 134693 sources."@types/cookie-0.4.1" 134634 134694 sources."@types/cors-2.8.12" 134635 - sources."@types/http-cache-semantics-4.0.1" 134636 - sources."@types/keyv-3.1.4" 134637 - sources."@types/node-16.11.58" 134638 - sources."@types/responselike-3.0.0" 134695 + sources."@types/node-16.11.59" 134639 134696 sources."abbrev-1.1.1" 134640 134697 sources."accepts-1.3.8" 134641 134698 sources."ansi-regex-5.0.1" ··· 134656 134713 sources."brace-expansion-1.1.11" 134657 134714 sources."bytes-3.1.2" 134658 134715 sources."cacheable-lookup-6.1.0" 134659 - (sources."cacheable-request-7.0.2" // { 134660 - dependencies = [ 134661 - sources."get-stream-5.2.0" 134662 - sources."lowercase-keys-2.0.0" 134663 - sources."responselike-2.0.1" 134664 - ]; 134665 - }) 134716 + sources."cacheable-request-10.1.2" 134666 134717 sources."call-bind-1.0.2" 134667 134718 sources."cliui-7.0.4" 134668 134719 sources."clone-2.1.2" 134669 - sources."clone-response-1.0.3" 134670 134720 sources."color-3.2.1" 134671 134721 sources."color-convert-1.9.3" 134672 134722 sources."color-name-1.1.3" ··· 134705 134755 sources."emoji-regex-8.0.0" 134706 134756 sources."enabled-2.0.0" 134707 134757 sources."encodeurl-1.0.2" 134708 - sources."end-of-stream-1.4.4" 134709 134758 (sources."engine.io-6.2.0" // { 134710 134759 dependencies = [ 134711 134760 sources."debug-4.3.4" ··· 134741 134790 sources."get-stream-6.0.1" 134742 134791 sources."getmac-5.20.0" 134743 134792 sources."glob-7.2.3" 134744 - sources."got-12.4.1" 134793 + sources."got-12.5.0" 134745 134794 sources."graceful-fs-4.2.10" 134746 134795 sources."has-1.0.3" 134747 134796 sources."has-symbols-1.0.3" ··· 134795 134844 sources."mime-1.6.0" 134796 134845 sources."mime-db-1.52.0" 134797 134846 sources."mime-types-2.1.35" 134798 - sources."mimic-response-1.0.1" 134847 + sources."mimic-response-4.0.0" 134799 134848 sources."minimatch-3.1.2" 134800 134849 sources."minimist-1.2.6" 134801 134850 sources."mkdirp-1.0.4" ··· 134805 134854 sources."node-cache-5.1.2" 134806 134855 sources."node-watch-0.7.3" 134807 134856 sources."nopt-1.0.10" 134808 - sources."normalize-url-6.1.0" 134857 + sources."normalize-url-7.1.0" 134809 134858 sources."nprogress-0.2.0" 134810 134859 sources."object-assign-4.1.1" 134811 134860 sources."object-inspect-1.12.2" ··· 134829 134878 sources."proto-list-1.2.4" 134830 134879 sources."proxy-addr-2.0.7" 134831 134880 sources."pseudomap-1.0.2" 134832 - sources."pump-3.0.0" 134833 134881 sources."qs-6.10.3" 134834 134882 sources."quick-lru-5.1.1" 134835 134883 sources."random-bytes-1.0.0" ··· 134849 134897 sources."responselike-3.0.0" 134850 134898 sources."rimraf-3.0.2" 134851 134899 sources."safe-buffer-5.2.1" 134852 - sources."safe-stable-stringify-2.3.1" 134900 + sources."safe-stable-stringify-2.4.0" 134853 134901 sources."safer-buffer-2.1.2" 134854 134902 (sources."semver-7.3.7" // { 134855 134903 dependencies = [ ··· 134959 135007 }; 134960 135008 dependencies = [ 134961 135009 sources."@babel/code-frame-7.18.6" 134962 - sources."@babel/helper-validator-identifier-7.18.6" 135010 + sources."@babel/helper-validator-identifier-7.19.1" 134963 135011 sources."@babel/highlight-7.18.6" 134964 135012 sources."@npmcli/config-4.2.2" 134965 135013 sources."@npmcli/map-workspaces-2.0.4" ··· 134968 135016 sources."@types/debug-4.1.7" 134969 135017 sources."@types/is-empty-1.2.1" 134970 135018 sources."@types/ms-0.7.31" 134971 - sources."@types/node-18.7.17" 135019 + sources."@types/node-18.7.18" 134972 135020 sources."@types/supports-color-8.1.1" 134973 135021 sources."@types/unist-2.0.6" 134974 135022 sources."abbrev-1.1.1" ··· 135298 135346 sources."@szmarczak/http-timer-1.1.2" 135299 135347 sources."@ts-morph/common-0.11.1" 135300 135348 sources."@types/json-schema-7.0.11" 135301 - sources."@types/node-18.7.17" 135349 + sources."@types/node-18.7.18" 135302 135350 sources."@vercel/build-utils-5.4.2" 135303 135351 sources."@vercel/go-2.2.5" 135304 135352 sources."@vercel/hydrogen-0.0.18" ··· 135578 135626 }; 135579 135627 dependencies = [ 135580 135628 sources."@babel/code-frame-7.12.11" 135581 - sources."@babel/helper-validator-identifier-7.18.6" 135629 + sources."@babel/helper-validator-identifier-7.19.1" 135582 135630 (sources."@babel/highlight-7.18.6" // { 135583 135631 dependencies = [ 135584 135632 sources."chalk-2.4.2" ··· 135873 135921 sources."vscode-languageserver-textdocument-1.0.7" 135874 135922 sources."vscode-languageserver-types-3.17.2" 135875 135923 sources."vscode-nls-4.1.2" 135876 - sources."vscode-uri-3.0.3" 135924 + sources."vscode-uri-3.0.6" 135877 135925 ]; 135878 135926 buildInputs = globalBuildInputs; 135879 135927 meta = { ··· 135944 135992 sha512 = "sWXDFmAvXMUhF5E+6v4e77SwhVPSvdLxGGfkOz15LmAsfKoamKMnW7aARnu6mRWOzqz3hKJqVZN4hnCpdvtLKg=="; 135945 135993 }; 135946 135994 dependencies = [ 135947 - sources."core-js-3.25.1" 135995 + sources."core-js-3.25.2" 135948 135996 sources."jsonc-parser-3.2.0" 135949 135997 sources."picomatch-2.3.1" 135950 135998 sources."regenerator-runtime-0.13.9" 135951 135999 sources."request-light-0.5.8" 135952 136000 sources."typescript-4.8.3" 135953 - sources."vscode-css-languageservice-6.1.0" 135954 - sources."vscode-html-languageservice-5.0.1" 136001 + sources."vscode-css-languageservice-6.1.1" 136002 + sources."vscode-html-languageservice-5.0.2" 135955 136003 sources."vscode-json-languageservice-5.1.0" 135956 136004 sources."vscode-jsonrpc-8.0.2" 135957 136005 sources."vscode-languageserver-8.0.2" ··· 135960 136008 sources."vscode-languageserver-types-3.17.2" 135961 136009 sources."vscode-markdown-languageservice-0.0.0" 135962 136010 sources."vscode-nls-5.2.0" 135963 - sources."vscode-uri-3.0.3" 136011 + sources."vscode-uri-3.0.6" 135964 136012 ]; 135965 136013 buildInputs = globalBuildInputs; 135966 136014 meta = { ··· 136261 136309 }; 136262 136310 dependencies = [ 136263 136311 sources."@babel/code-frame-7.18.6" 136264 - sources."@babel/helper-validator-identifier-7.18.6" 136312 + sources."@babel/helper-validator-identifier-7.19.1" 136265 136313 sources."@babel/highlight-7.18.6" 136266 136314 sources."@emmetio/extract-abbreviation-0.1.6" 136267 136315 sources."@mrmlnc/readdir-enhanced-2.2.1" ··· 136278 136326 sources."@starptech/rehype-webparser-0.10.0" 136279 136327 sources."@starptech/webparser-0.10.0" 136280 136328 sources."@szmarczak/http-timer-1.1.2" 136281 - sources."@types/node-18.7.17" 136329 + sources."@types/node-18.7.18" 136282 136330 sources."@types/unist-2.0.6" 136283 136331 sources."@types/vfile-3.0.2" 136284 136332 sources."@types/vfile-message-2.0.0" ··· 137210 137258 sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg=="; 137211 137259 }; 137212 137260 dependencies = [ 137213 - sources."@babel/runtime-corejs3-7.19.0" 137261 + sources."@babel/runtime-corejs3-7.19.1" 137214 137262 sources."@mapbox/node-pre-gyp-1.0.10" 137215 137263 sources."@tootallnate/once-1.1.2" 137216 137264 sources."@types/raf-3.4.0" ··· 137245 137293 sources."combined-stream-1.0.8" 137246 137294 sources."concat-map-0.0.1" 137247 137295 sources."console-control-strings-1.1.0" 137248 - sources."core-js-pure-3.25.1" 137296 + sources."core-js-pure-3.25.2" 137249 137297 sources."cssom-0.4.4" 137250 137298 (sources."cssstyle-2.3.0" // { 137251 137299 dependencies = [ ··· 137260 137308 ]; 137261 137309 }) 137262 137310 sources."debug-4.3.4" 137263 - sources."decimal.js-10.4.0" 137311 + sources."decimal.js-10.4.1" 137264 137312 sources."decompress-response-4.2.1" 137265 137313 sources."deep-is-0.1.4" 137266 137314 sources."delayed-stream-1.0.0" ··· 137412 137460 }; 137413 137461 dependencies = [ 137414 137462 sources."@babel/code-frame-7.18.6" 137415 - sources."@babel/helper-validator-identifier-7.18.6" 137463 + sources."@babel/helper-validator-identifier-7.19.1" 137416 137464 (sources."@babel/highlight-7.18.6" // { 137417 137465 dependencies = [ 137418 137466 sources."ansi-styles-3.2.1" ··· 137447 137495 sources."@pnpm/npm-conf-1.0.5" 137448 137496 sources."@sindresorhus/is-5.3.0" 137449 137497 sources."@szmarczak/http-timer-5.0.1" 137450 - sources."@types/cacheable-request-6.0.2" 137451 - sources."@types/http-cache-semantics-4.0.1" 137452 - sources."@types/keyv-3.1.4" 137453 137498 sources."@types/minimatch-3.0.5" 137454 - sources."@types/node-18.7.17" 137455 - sources."@types/responselike-3.0.0" 137499 + sources."@types/node-18.7.18" 137456 137500 sources."@types/yauzl-2.10.0" 137457 137501 sources."abort-controller-3.0.0" 137458 137502 sources."acorn-8.8.0" ··· 137499 137543 sources."buffer-from-1.1.2" 137500 137544 sources."bunyan-1.8.15" 137501 137545 sources."cacheable-lookup-6.1.0" 137502 - (sources."cacheable-request-7.0.2" // { 137546 + (sources."cacheable-request-10.1.2" // { 137503 137547 dependencies = [ 137504 - sources."lowercase-keys-2.0.0" 137505 - sources."responselike-2.0.1" 137548 + sources."get-stream-6.0.1" 137506 137549 ]; 137507 137550 }) 137508 137551 sources."callsites-3.1.0" ··· 137521 137564 ]; 137522 137565 }) 137523 137566 sources."clone-1.0.4" 137524 - sources."clone-response-1.0.3" 137525 137567 sources."color-convert-2.0.1" 137526 137568 sources."color-name-1.1.4" 137527 137569 sources."columnify-1.6.0" ··· 137672 137714 sources."global-dirs-3.0.0" 137673 137715 sources."globals-13.17.0" 137674 137716 sources."globby-11.1.0" 137675 - (sources."got-12.4.1" // { 137717 + (sources."got-12.5.0" // { 137676 137718 dependencies = [ 137677 137719 sources."get-stream-6.0.1" 137678 137720 ]; ··· 137790 137832 sources."mime-db-1.52.0" 137791 137833 sources."mime-types-2.1.35" 137792 137834 sources."mimic-fn-2.1.0" 137793 - sources."mimic-response-1.0.1" 137835 + sources."mimic-response-4.0.0" 137794 137836 sources."minimatch-3.1.2" 137795 137837 sources."minimist-1.2.6" 137796 137838 sources."mkdirp-1.0.4" ··· 137815 137857 sources."ncp-2.0.0" 137816 137858 sources."node-forge-1.3.1" 137817 137859 sources."node-notifier-10.0.1" 137818 - sources."normalize-url-6.1.0" 137860 + sources."normalize-url-7.1.0" 137819 137861 sources."npm-run-path-4.0.1" 137820 137862 sources."nth-check-2.1.1" 137821 137863 sources."oauth-sign-0.9.0" ··· 137907 137949 sources."run-parallel-1.2.0" 137908 137950 sources."safe-buffer-5.2.1" 137909 137951 sources."safe-json-stringify-1.2.0" 137910 - sources."safe-stable-stringify-2.3.1" 137952 + sources."safe-stable-stringify-2.4.0" 137911 137953 sources."safer-buffer-2.1.2" 137912 137954 sources."sax-1.2.4" 137913 137955 sources."semver-7.3.7" ··· 138044 138086 sources."@types/eslint-scope-3.7.4" 138045 138087 sources."@types/estree-0.0.51" 138046 138088 sources."@types/json-schema-7.0.11" 138047 - sources."@types/node-18.7.17" 138089 + sources."@types/node-18.7.18" 138048 138090 sources."@webassemblyjs/ast-1.11.1" 138049 138091 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 138050 138092 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 138066 138108 sources."acorn-import-assertions-1.8.0" 138067 138109 sources."ajv-6.12.6" 138068 138110 sources."ajv-keywords-3.5.2" 138069 - sources."browserslist-4.21.3" 138111 + sources."browserslist-4.21.4" 138070 138112 sources."buffer-from-1.1.2" 138071 - sources."caniuse-lite-1.0.30001399" 138113 + sources."caniuse-lite-1.0.30001406" 138072 138114 sources."chrome-trace-event-1.0.3" 138073 138115 sources."commander-2.20.3" 138074 - sources."electron-to-chromium-1.4.248" 138116 + sources."electron-to-chromium-1.4.254" 138075 138117 sources."enhanced-resolve-5.10.0" 138076 138118 sources."es-module-lexer-0.9.3" 138077 138119 sources."escalade-3.1.1" ··· 138109 138151 sources."tapable-2.2.1" 138110 138152 sources."terser-5.15.0" 138111 138153 sources."terser-webpack-plugin-5.3.6" 138112 - sources."update-browserslist-db-1.0.8" 138154 + sources."update-browserslist-db-1.0.9" 138113 138155 sources."uri-js-4.4.1" 138114 138156 sources."watchpack-2.4.0" 138115 138157 sources."webpack-sources-3.2.3" ··· 138186 138228 webpack-dev-server = nodeEnv.buildNodePackage { 138187 138229 name = "webpack-dev-server"; 138188 138230 packageName = "webpack-dev-server"; 138189 - version = "4.11.0"; 138231 + version = "4.11.1"; 138190 138232 src = fetchurl { 138191 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.0.tgz"; 138192 - sha512 = "L5S4Q2zT57SK7tazgzjMiSMBdsw+rGYIX27MgPgx7LDhWO0lViPrHKoLS7jo5In06PWYAhlYu3PbyoC6yAThbw=="; 138233 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz"; 138234 + sha512 = "lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw=="; 138193 138235 }; 138194 138236 dependencies = [ 138195 138237 sources."@leichtgewicht/ip-codec-2.0.4" ··· 138197 138239 sources."@types/bonjour-3.5.10" 138198 138240 sources."@types/connect-3.4.35" 138199 138241 sources."@types/connect-history-api-fallback-1.3.5" 138200 - sources."@types/express-4.17.13" 138201 - sources."@types/express-serve-static-core-4.17.30" 138242 + sources."@types/express-4.17.14" 138243 + sources."@types/express-serve-static-core-4.17.31" 138202 138244 sources."@types/http-proxy-1.17.9" 138203 138245 sources."@types/json-schema-7.0.11" 138204 138246 sources."@types/mime-3.0.1" 138205 - sources."@types/node-18.7.17" 138247 + sources."@types/node-18.7.18" 138206 138248 sources."@types/qs-6.9.7" 138207 138249 sources."@types/range-parser-1.2.4" 138208 138250 sources."@types/retry-0.12.0" ··· 138270 138312 sources."faye-websocket-0.11.4" 138271 138313 sources."fill-range-7.0.1" 138272 138314 sources."finalhandler-1.2.0" 138273 - sources."follow-redirects-1.15.1" 138315 + sources."follow-redirects-1.15.2" 138274 138316 sources."forwarded-0.2.0" 138275 138317 sources."fresh-0.5.2" 138276 138318 sources."fs-monkey-1.0.3" ··· 138514 138556 sources."@protobufjs/pool-1.1.0" 138515 138557 sources."@protobufjs/utf8-1.1.0" 138516 138558 sources."@types/long-4.0.2" 138517 - sources."@types/node-18.7.17" 138559 + sources."@types/node-18.7.18" 138518 138560 sources."@webtorrent/http-node-1.3.0" 138519 138561 sources."addr-to-ip-port-1.5.4" 138520 138562 sources."airplay-js-0.3.0" ··· 138750 138792 sources."pump-3.0.0" 138751 138793 sources."qap-3.3.1" 138752 138794 sources."queue-microtask-1.2.3" 138753 - sources."queue-tick-1.0.0" 138795 + sources."queue-tick-1.0.1" 138754 138796 sources."random-access-file-2.2.1" 138755 138797 sources."random-access-storage-1.4.3" 138756 138798 sources."random-iterate-1.0.1" ··· 138880 138922 bypassCache = true; 138881 138923 reconstructLock = true; 138882 138924 }; 138925 + "@withgraphite/graphite-cli" = nodeEnv.buildNodePackage { 138926 + name = "_at_withgraphite_slash_graphite-cli"; 138927 + packageName = "@withgraphite/graphite-cli"; 138928 + version = "0.20.10"; 138929 + src = fetchurl { 138930 + url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.20.10.tgz"; 138931 + sha512 = "NT0jJZZmmPf/LPnwOoTi9jhgOTW1Nj8n4zWID3rvpJASEXvXnH7k9j16atAoJK3KhSEFvfPRf7NV+35QmHZkPA=="; 138932 + }; 138933 + dependencies = [ 138934 + sources."@withgraphite/graphite-cli-routes-0.22.0" 138935 + sources."@withgraphite/retype-0.3.13" 138936 + sources."@withgraphite/retyped-routes-0.3.5" 138937 + sources."ansi-regex-5.0.1" 138938 + sources."ansi-styles-4.3.0" 138939 + sources."balanced-match-1.0.2" 138940 + sources."brace-expansion-1.1.11" 138941 + sources."chalk-4.1.2" 138942 + sources."cliui-7.0.4" 138943 + sources."color-convert-2.0.1" 138944 + sources."color-name-1.1.4" 138945 + sources."concat-map-0.0.1" 138946 + sources."define-lazy-prop-2.0.0" 138947 + sources."emoji-regex-8.0.0" 138948 + sources."escalade-3.1.1" 138949 + sources."fs-extra-10.1.0" 138950 + sources."fs.realpath-1.0.0" 138951 + sources."get-caller-file-2.0.5" 138952 + sources."glob-7.2.3" 138953 + sources."graceful-fs-4.2.10" 138954 + sources."has-flag-4.0.0" 138955 + sources."inflight-1.0.6" 138956 + sources."inherits-2.0.4" 138957 + sources."is-docker-2.2.1" 138958 + sources."is-fullwidth-code-point-3.0.0" 138959 + sources."is-wsl-2.2.0" 138960 + sources."isomorphic-fetch-3.0.0" 138961 + sources."jsonfile-6.1.0" 138962 + sources."kleur-3.0.3" 138963 + sources."lru-cache-6.0.0" 138964 + sources."minimatch-3.1.2" 138965 + sources."node-fetch-2.6.7" 138966 + sources."once-1.4.0" 138967 + sources."open-8.4.0" 138968 + sources."path-is-absolute-1.0.1" 138969 + sources."path-to-regexp-6.2.1" 138970 + sources."prompts-2.4.2" 138971 + sources."require-directory-2.1.1" 138972 + sources."rimraf-3.0.2" 138973 + sources."semver-7.3.7" 138974 + sources."sisteransi-1.0.5" 138975 + sources."string-width-4.2.3" 138976 + sources."strip-ansi-6.0.1" 138977 + sources."supports-color-7.2.0" 138978 + sources."tmp-0.2.1" 138979 + sources."tr46-0.0.3" 138980 + sources."universalify-2.0.0" 138981 + sources."webidl-conversions-3.0.1" 138982 + sources."whatwg-fetch-3.6.2" 138983 + sources."whatwg-url-5.0.0" 138984 + sources."wrap-ansi-7.0.0" 138985 + sources."wrappy-1.0.2" 138986 + sources."y18n-5.0.8" 138987 + sources."yallist-4.0.0" 138988 + sources."yargs-17.5.1" 138989 + sources."yargs-parser-21.1.1" 138990 + ]; 138991 + buildInputs = globalBuildInputs; 138992 + meta = { 138993 + description = "[Graphite](https://graphite.dev) is a **fast, simple code review platform** designed for engineers who want to **write and review smaller pull requests, stay unblocked, and ship faster**. Anyone can start using Graphite individually without needing their"; 138994 + homepage = "https://github.com/withgraphite/graphite-cli"; 138995 + license = "None"; 138996 + }; 138997 + production = true; 138998 + bypassCache = true; 138999 + reconstructLock = true; 139000 + }; 138883 139001 wrangler = nodeEnv.buildNodePackage { 138884 139002 name = "wrangler"; 138885 139003 packageName = "wrangler"; 138886 - version = "2.1.2"; 139004 + version = "2.1.4"; 138887 139005 src = fetchurl { 138888 - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.2.tgz"; 138889 - sha512 = "6L+nFTjHTjWiY033f97pwhuc/b07t5kUAzrnsulVWKso8/hVXCgMrAXpVH6ujvFws1cACxNAUfVZ200T8mgVuw=="; 139006 + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.4.tgz"; 139007 + sha512 = "vHgA3/naF6n7GrIujTxPQDrlEgY+A0VluxJiqnWWWvmBSvfIjmsJGjHg0LAJ/NONx3cp77cT96ehszv790d+tA=="; 138890 139008 }; 138891 139009 dependencies = [ 138892 139010 sources."@cloudflare/kv-asset-handler-0.2.0" 138893 139011 sources."@esbuild-plugins/node-globals-polyfill-0.1.1" 138894 139012 sources."@esbuild-plugins/node-modules-polyfill-0.1.4" 138895 139013 sources."@iarna/toml-2.2.5" 138896 - sources."@miniflare/cache-2.8.2" 138897 - sources."@miniflare/cli-parser-2.8.2" 138898 - sources."@miniflare/core-2.8.2" 138899 - sources."@miniflare/durable-objects-2.8.2" 138900 - sources."@miniflare/html-rewriter-2.8.2" 138901 - sources."@miniflare/http-server-2.8.2" 138902 - sources."@miniflare/kv-2.8.2" 138903 - sources."@miniflare/queues-2.8.2" 138904 - sources."@miniflare/r2-2.8.2" 138905 - sources."@miniflare/runner-vm-2.8.2" 138906 - sources."@miniflare/scheduler-2.8.2" 138907 - sources."@miniflare/shared-2.8.2" 138908 - sources."@miniflare/sites-2.8.2" 138909 - sources."@miniflare/storage-file-2.8.2" 138910 - sources."@miniflare/storage-memory-2.8.2" 138911 - sources."@miniflare/watcher-2.8.2" 138912 - sources."@miniflare/web-sockets-2.8.2" 139014 + sources."@miniflare/cache-2.9.0" 139015 + sources."@miniflare/cli-parser-2.9.0" 139016 + sources."@miniflare/core-2.9.0" 139017 + sources."@miniflare/d1-2.9.0" 139018 + sources."@miniflare/durable-objects-2.9.0" 139019 + sources."@miniflare/html-rewriter-2.9.0" 139020 + sources."@miniflare/http-server-2.9.0" 139021 + sources."@miniflare/kv-2.9.0" 139022 + sources."@miniflare/queues-2.9.0" 139023 + sources."@miniflare/r2-2.9.0" 139024 + sources."@miniflare/runner-vm-2.9.0" 139025 + sources."@miniflare/scheduler-2.9.0" 139026 + sources."@miniflare/shared-2.9.0" 139027 + sources."@miniflare/sites-2.9.0" 139028 + sources."@miniflare/storage-file-2.9.0" 139029 + sources."@miniflare/storage-memory-2.9.0" 139030 + sources."@miniflare/watcher-2.9.0" 139031 + sources."@miniflare/web-sockets-2.9.0" 139032 + sources."@types/better-sqlite3-7.6.0" 139033 + sources."@types/node-18.7.18" 138913 139034 sources."@types/stack-trace-0.0.29" 138914 139035 sources."anymatch-3.1.2" 138915 139036 sources."binary-extensions-2.2.0" 138916 139037 sources."blake3-wasm-2.1.5" 138917 139038 sources."braces-3.0.2" 138918 139039 sources."buffer-from-1.1.2" 139040 + sources."builtins-5.0.1" 138919 139041 sources."busboy-1.6.0" 138920 139042 sources."chokidar-3.5.3" 138921 139043 sources."cookie-0.4.2" 138922 139044 sources."cron-schedule-3.0.6" 139045 + sources."cross-spawn-7.0.3" 138923 139046 sources."dotenv-10.0.0" 138924 139047 sources."esbuild-0.14.51" 138925 139048 sources."esbuild-android-64-0.14.51" ··· 138944 139067 sources."esbuild-windows-arm64-0.14.51" 138945 139068 sources."escape-string-regexp-4.0.0" 138946 139069 sources."estree-walker-0.6.1" 139070 + sources."execa-6.1.0" 138947 139071 sources."fill-range-7.0.1" 138948 139072 sources."fsevents-2.3.2" 139073 + sources."get-stream-6.0.1" 138949 139074 sources."glob-parent-5.1.2" 138950 139075 sources."html-rewriter-wasm-0.4.1" 138951 139076 sources."http-cache-semantics-4.1.0" 139077 + sources."human-signals-3.0.1" 138952 139078 sources."is-binary-path-2.1.0" 138953 139079 sources."is-extglob-2.1.1" 138954 139080 sources."is-glob-4.0.3" 138955 139081 sources."is-number-7.0.0" 139082 + sources."is-stream-3.0.0" 139083 + sources."isexe-2.0.0" 138956 139084 sources."kleur-4.1.5" 139085 + sources."lru-cache-6.0.0" 138957 139086 sources."magic-string-0.25.9" 139087 + sources."merge-stream-2.0.0" 138958 139088 sources."mime-3.0.0" 138959 - sources."miniflare-2.8.2" 139089 + sources."mimic-fn-4.0.0" 139090 + sources."miniflare-2.9.0" 138960 139091 sources."mustache-4.2.0" 138961 139092 sources."nanoid-3.3.4" 138962 139093 sources."node-forge-1.3.1" 138963 139094 sources."normalize-path-3.0.0" 139095 + (sources."npm-run-path-5.1.0" // { 139096 + dependencies = [ 139097 + sources."path-key-4.0.0" 139098 + ]; 139099 + }) 139100 + sources."npx-import-1.1.3" 139101 + sources."onetime-6.0.0" 139102 + sources."parse-package-name-1.0.0" 139103 + sources."path-key-3.1.1" 138964 139104 sources."path-to-regexp-6.2.1" 138965 139105 sources."picomatch-2.3.1" 138966 139106 sources."readdirp-3.6.0" ··· 138969 139109 sources."rollup-pluginutils-2.8.2" 138970 139110 sources."selfsigned-2.1.1" 138971 139111 sources."semiver-1.1.0" 139112 + sources."semver-7.3.7" 138972 139113 sources."set-cookie-parser-2.5.1" 139114 + sources."shebang-command-2.0.0" 139115 + sources."shebang-regex-3.0.0" 139116 + sources."signal-exit-3.0.7" 138973 139117 sources."source-map-0.7.4" 138974 139118 (sources."source-map-support-0.5.21" // { 138975 139119 dependencies = [ ··· 138979 139123 sources."sourcemap-codec-1.4.8" 138980 139124 sources."stack-trace-0.0.10" 138981 139125 sources."streamsearch-1.1.0" 139126 + sources."strip-final-newline-3.0.0" 138982 139127 sources."to-regex-range-5.0.1" 138983 139128 sources."undici-5.9.1" 138984 139129 sources."urlpattern-polyfill-4.0.3" 139130 + sources."validate-npm-package-name-4.0.0" 139131 + sources."which-2.0.2" 138985 139132 sources."ws-8.8.1" 138986 139133 sources."xxhash-wasm-1.0.1" 139134 + sources."yallist-4.0.0" 138987 139135 sources."youch-2.2.2" 138988 139136 ]; 138989 139137 buildInputs = globalBuildInputs; ··· 139087 139235 sources."vscode-languageserver-textdocument-1.0.7" 139088 139236 sources."vscode-languageserver-types-3.17.2" 139089 139237 sources."vscode-nls-5.2.0" 139090 - sources."vscode-uri-3.0.3" 139238 + sources."vscode-uri-3.0.6" 139091 139239 sources."yaml-2.0.0-11" 139092 139240 ]; 139093 139241 buildInputs = globalBuildInputs; ··· 139353 139501 sources."config-chain-1.1.13" 139354 139502 sources."configstore-3.1.5" 139355 139503 sources."console-control-strings-1.1.0" 139356 - sources."core-js-3.25.1" 139504 + sources."core-js-3.25.2" 139357 139505 sources."core-util-is-1.0.3" 139358 139506 sources."create-error-class-3.0.2" 139359 139507 sources."cross-spawn-6.0.5" ··· 140204 140352 sources."@nodelib/fs.walk-1.2.8" 140205 140353 sources."@types/fs-extra-9.0.13" 140206 140354 sources."@types/minimist-1.2.2" 140207 - sources."@types/node-18.7.17" 140355 + sources."@types/node-18.7.18" 140208 140356 sources."@types/ps-tree-1.1.2" 140209 140357 sources."@types/which-2.0.1" 140210 140358 sources."braces-3.0.2"
+4
pkgs/development/node-packages/overrides.nix
··· 167 167 meta = oldAttrs.meta // { broken = since "10"; }; 168 168 }); 169 169 170 + graphite-cli = prev."@withgraphite/graphite-cli".override { 171 + name = "graphite-cli"; 172 + }; 173 + 170 174 graphql-language-service-cli = prev.graphql-language-service-cli.override { 171 175 nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ]; 172 176 postInstall = ''
+5 -8
pkgs/development/ocaml-modules/checkseum/default.nix
··· 1 1 { lib, fetchurl, buildDunePackage, ocaml, dune-configurator, pkg-config 2 - , bigarray-compat, optint 2 + , optint 3 3 , fmt, rresult, bos, fpath, astring, alcotest 4 4 , withFreestanding ? false 5 5 , ocaml-freestanding 6 6 }: 7 7 8 8 buildDunePackage rec { 9 - version = "0.3.2"; 9 + version = "0.3.4"; 10 10 pname = "checkseum"; 11 11 12 - useDune2 = true; 13 - 14 - minimumOCamlVersion = "4.07"; 12 + minimalOCamlVersion = "4.07"; 15 13 16 14 src = fetchurl { 17 - url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz"; 18 - sha256 = "9cdd282ea1cfc424095d7284e39e4d0ad091de3c3f2580539d03f6966d45ccd5"; 15 + url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-${version}.tbz"; 16 + sha256 = "sha256-BL4BOwxXORrkOOba4QjRSetm8bF9JmlKHSFPq24+1zg="; 19 17 }; 20 18 21 19 buildInputs = [ dune-configurator ]; 22 20 nativeBuildInputs = [ pkg-config ]; 23 21 propagatedBuildInputs = [ 24 - bigarray-compat 25 22 optint 26 23 ] ++ lib.optionals withFreestanding [ 27 24 ocaml-freestanding
+2 -3
pkgs/development/ocaml-modules/h2/default.nix
··· 28 28 inherit (hpack) 29 29 version 30 30 src 31 - useDune2 32 31 ; 33 32 34 - minimumOCamlVersion = "4.06"; 33 + minimalOCamlVersion = "4.06"; 35 34 36 35 propagatedBuildInputs = [ 37 36 angstrom ··· 42 41 httpaf 43 42 ]; 44 43 45 - # Tests fail with 4.06 44 + # Tests fail with ≤ 4.07 46 45 doCheck = lib.versionAtLeast ocaml.version "4.08"; 47 46 preCheck = '' 48 47 ln -s "${http2-frame-test-case}" lib_test/http2-frame-test-case
+26
pkgs/development/ocaml-modules/happy-eyeballs/lwt.nix
··· 1 + { buildDunePackage 2 + , happy-eyeballs 3 + , cmdliner 4 + , dns-client 5 + , logs 6 + , lwt 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "happy-eyeballs-lwt"; 11 + inherit (happy-eyeballs) src version; 12 + 13 + buildInputs = [ cmdliner ]; 14 + 15 + propagatedBuildInputs = [ 16 + dns-client 17 + happy-eyeballs 18 + logs 19 + lwt 20 + ]; 21 + 22 + meta = happy-eyeballs.meta // { 23 + description = "Connecting to a remote host via IP version 4 or 6 using Lwt_unix"; 24 + }; 25 + 26 + }
+25
pkgs/development/ocaml-modules/happy-eyeballs/mirage.nix
··· 1 + { buildDunePackage 2 + , happy-eyeballs 3 + , dns-client 4 + , logs 5 + , lwt 6 + , tcpip 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "happy-eyeballs-mirage"; 11 + inherit (happy-eyeballs) src version; 12 + 13 + propagatedBuildInputs = [ 14 + dns-client 15 + happy-eyeballs 16 + logs 17 + lwt 18 + tcpip 19 + ]; 20 + 21 + meta = happy-eyeballs.meta // { 22 + description = "Connecting to a remote host via IP version 4 or 6 using Mirage"; 23 + }; 24 + 25 + }
+3 -4
pkgs/development/ocaml-modules/hpack/default.nix
··· 7 7 8 8 buildDunePackage rec { 9 9 pname = "hpack"; 10 - version = "0.8.0"; 10 + version = "0.9.0"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/anmonteiro/ocaml-h2/releases/download/${version}/h2-${version}.tbz"; 14 - sha256 = "0qcn3yvyz0h419fjg9nb20csfmwmh3ihz0zb0jfzdycf5w4mlry6"; 14 + sha256 = "sha256-7gjRhJs2mufQbImAXiKFT9mZ1kHGSHHwjCVZM5f0C14="; 15 15 }; 16 16 17 - useDune2 = true; 18 - minimumOCamlVersion = "4.04"; 17 + minimalOCamlVersion = "4.04"; 19 18 20 19 propagatedBuildInputs = [ 21 20 angstrom
+4 -4
pkgs/development/ocaml-modules/ogg/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "ogg"; 5 - version = "0.7.2"; 6 - 7 - useDune2 = true; 5 + version = "0.7.3"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "savonet"; 11 9 repo = "ocaml-ogg"; 12 10 rev = "v${version}"; 13 - sha256 = "sha256-EY1iVtB5M8//KJPT9FMDYVeBrE/lT30fCqTjjKKnWZU="; 11 + sha256 = "sha256-D6tLKBSGfWBoMfQrWmamd8jo2AOphJV9xeSm+l06L5c="; 14 12 }; 13 + 14 + minimalOCamlVersion = "4.08"; 15 15 16 16 buildInputs = [ dune-configurator ]; 17 17 propagatedBuildInputs = [ libogg ];
+1 -3
pkgs/development/ocaml-modules/paf/cohttp.nix
··· 22 22 inherit (paf) 23 23 version 24 24 src 25 - useDune2 26 - minimumOCamlVersion 27 25 ; 28 26 29 27 propagatedBuildInputs = [ ··· 34 32 ipaddr 35 33 ]; 36 34 37 - doCheck = false; # tests fail 35 + doCheck = true; 38 36 checkInputs = [ 39 37 alcotest-lwt 40 38 fmt
+4 -5
pkgs/development/ocaml-modules/paf/default.nix
··· 25 25 26 26 buildDunePackage rec { 27 27 pname = "paf"; 28 - version = "0.0.8"; 28 + version = "0.1.0"; 29 29 30 30 src = fetchurl { 31 31 url = "https://github.com/dinosaure/paf-le-chien/releases/download/${version}/paf-${version}.tbz"; 32 - sha256 = "CyIIV11G7oUPPHuhov52LP4Ih4pY6bcUApD23/9q39k="; 32 + sha256 = "sha256-JIJjECEbajauowbXot19vtiDhTpGAQiSCBY0AHZOyZM="; 33 33 }; 34 34 35 - useDune2 = true; 36 - minimumOCamlVersion = "4.08"; 35 + minimalOCamlVersion = "4.08"; 37 36 38 37 propagatedBuildInputs = [ 39 38 mirage-stack ··· 49 48 tcpip 50 49 ]; 51 50 52 - doCheck = false; 51 + doCheck = true; 53 52 checkInputs = [ 54 53 lwt 55 54 logs
-2
pkgs/development/ocaml-modules/paf/le.nix
··· 17 17 inherit (paf) 18 18 version 19 19 src 20 - useDune2 21 - minimumOCamlVersion 22 20 ; 23 21 24 22 propagatedBuildInputs = [
+4 -4
pkgs/development/ocaml-modules/sedlex/default.nix
··· 9 9 }: 10 10 11 11 let 12 - unicodeVersion = "14.0.0"; 12 + unicodeVersion = "15.0.0"; 13 13 baseUrl = "https://www.unicode.org/Public/${unicodeVersion}"; 14 14 15 15 DerivedCoreProperties = fetchurl { 16 16 url = "${baseUrl}/ucd/DerivedCoreProperties.txt"; 17 - sha256 = "sha256:1g77s8g9443dd92f82pbkim7rk51s7xdwa3mxpzb1lcw8ryxvvg3"; 17 + sha256 = "sha256-02cpC8CGfmtITGg3BTC90aCLazJARgG4x6zK+D4FYo0="; 18 18 }; 19 19 DerivedGeneralCategory = fetchurl { 20 20 url = "${baseUrl}/ucd/extracted/DerivedGeneralCategory.txt"; 21 - sha256 = "sha256:080l3bwwppm7gnyga1hzhd07b55viklimxpdsx0fsxhr8v47krnd"; 21 + sha256 = "sha256-/imkXAiCUA5ZEUCqpcT1Bn5qXXRoBhSK80QAxIucBvk="; 22 22 }; 23 23 PropList = fetchurl { 24 24 url = "${baseUrl}/ucd/PropList.txt"; 25 - sha256 = "sha256:08k75jzl7ws9l3sm1ywsj24qa4qvzn895wggdpp5nyj1a2wgvpbb"; 25 + sha256 = "sha256-4FwKKBHRE9rkq9gyiEGZo+qNGH7huHLYJAp4ipZUC/0="; 26 26 }; 27 27 in 28 28 buildDunePackage rec {
+2 -2
pkgs/development/ocaml-modules/tcpip/default.nix
··· 13 13 14 14 buildDunePackage rec { 15 15 pname = "tcpip"; 16 - version = "7.1.0"; 16 + version = "7.1.2"; 17 17 18 18 useDune2 = true; 19 19 20 20 src = fetchurl { 21 21 url = "https://github.com/mirage/mirage-${pname}/releases/download/v${version}/${pname}-${version}.tbz"; 22 - sha256 = "sha256-4nd2OVZa4w22I4bgglnS8lrNfjTk40PL5n6Oh6n+osw="; 22 + sha256 = "sha256-lraur6NfFD9yddG+y21jlHKt82gLgYBBbedltlgcRm0="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/ocaml-modules/uucd/default.nix
··· 6 6 in 7 7 stdenv.mkDerivation rec { 8 8 name = "ocaml-${pname}-${version}"; 9 - version = "14.0.0"; 9 + version = "15.0.0"; 10 10 11 11 src = fetchurl { 12 12 url = "${webpage}/releases/${pname}-${version}.tbz"; 13 - sha256 = "sha256:0fc737v5gj3339jx4x9xr096lxrpwvp6vaiylhavcvsglcwbgm30"; 13 + sha256 = "sha256-DksDi6Dfe/fNGBmeubwxv9dScTHPJRuaPrlX7M8QRrw="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
+2 -2
pkgs/development/ocaml-modules/uucp/default.nix
··· 2 2 3 3 let 4 4 pname = "uucp"; 5 - version = "14.0.0"; 5 + version = "15.0.0"; 6 6 webpage = "https://erratique.ch/software/${pname}"; 7 7 minimumOCamlVersion = "4.03"; 8 8 doCheck = true; ··· 18 18 19 19 src = fetchurl { 20 20 url = "${webpage}/releases/${pname}-${version}.tbz"; 21 - sha256 = "sha256:1yx9nih3d9prb9zizq8fzmmqylf24a6yifhf81h33znrj5xn1mpj"; 21 + sha256 = "sha256-rEeU9AWpCzuAtAOe7hJHBmJjP97BZsQsPFQQ8uZLUzA="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
+16 -5
pkgs/development/ocaml-modules/uuseg/default.nix
··· 1 - { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uucp, uutf, cmdliner }: 1 + { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uucp, uutf, cmdliner 2 + , cmdlinerSupport ? lib.versionAtLeast cmdliner.version "1.1" 3 + }: 2 4 3 5 let 4 6 pname = "uuseg"; ··· 8 10 stdenv.mkDerivation rec { 9 11 10 12 name = "ocaml${ocaml.version}-${pname}-${version}"; 11 - version = "14.0.0"; 13 + version = "15.0.0"; 12 14 13 15 src = fetchurl { 14 16 url = "${webpage}/releases/${pname}-${version}.tbz"; 15 - sha256 = "sha256:1g9zyzjkhqxgbb9mh3cgaawscwdazv6y8kdqvmy6yhnimmfqv25p"; 17 + sha256 = "sha256-q8x3bia1QaKpzrWFxUmLWIraKqby7TuPNGvbSjkY4eM="; 16 18 }; 17 19 18 20 nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ]; 19 - buildInputs = [ topkg cmdliner uutf ]; 21 + buildInputs = [ topkg uutf ] 22 + ++ lib.optional cmdlinerSupport cmdliner; 20 23 propagatedBuildInputs = [ uucp ]; 21 24 22 25 strictDeps = true; 23 26 24 - inherit (topkg) buildPhase installPhase; 27 + buildPhase = '' 28 + runHook preBuild 29 + ${topkg.run} build \ 30 + --with-uutf true \ 31 + --with-cmdliner ${lib.boolToString cmdlinerSupport} 32 + runHook postBuild 33 + ''; 34 + 35 + inherit (topkg) installPhase; 25 36 26 37 meta = with lib; { 27 38 description = "An OCaml library for segmenting Unicode text";
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ailment"; 11 - version = "9.2.15"; 11 + version = "9.2.18"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - hash = "sha256-CXJ9UVTrJzXumDJ6wghDbxVfZo9ZC67qBpz8B5D0DLo="; 20 + hash = "sha256-9l1TlJwwmc51z+Dwl8uDNlUSOhGaI1bIMoqokaT/IFE="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aioaladdinconnect/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aioaladdinconnect"; 10 - version = "0.1.44"; 10 + version = "0.1.45"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "AIOAladdinConnect"; 17 17 inherit version; 18 - hash = "sha256-TtqCbU3NYrRy4upBOZNSC3+TrcBg4ol7JXqeOI6+IhA="; 18 + hash = "sha256-Fc34DPhN27wzEGSkRSpynqi9EGw1r3Iwp5rtT4eMMBI="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+6 -2
pkgs/development/python-modules/aioimaplib/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "aioimaplib"; 19 - version = "1.0.0"; 19 + version = "1.0.1"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.5"; ··· 43 43 disabledTests = [ 44 44 # https://github.com/bamthomas/aioimaplib/issues/77 45 45 "test_get_quotaroot" 46 + # asyncio.exceptions.TimeoutError 47 + "test_idle" 46 48 ]; 47 49 48 - pythonImportsCheck = [ "aioimaplib" ]; 50 + pythonImportsCheck = [ 51 + "aioimaplib" 52 + ]; 49 53 50 54 meta = with lib; { 51 55 description = "Python asyncio IMAP4rev1 client library";
+3 -4
pkgs/development/python-modules/aioitertools/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchpatch 4 4 , fetchPypi 5 - , pythonAtLeast 6 5 , pythonOlder 7 6 8 7 # native ··· 17 16 18 17 buildPythonPackage rec { 19 18 pname = "aioitertools"; 20 - version = "0.10.0"; 19 + version = "0.11.0"; 21 20 format = "pyproject"; 22 21 23 22 disabled = pythonOlder "3.6"; 24 23 25 24 src = fetchPypi { 26 25 inherit pname version; 27 - hash = "sha256-fR0dSgPUYsWghAeH098JjxJYR+DTi4M7MPj4y8RaFCA="; 26 + hash = "sha256-QsaLjdOmnCv38iM7999LtYtVe8pSUqwC7VGHu8Z9aDE="; 28 27 }; 29 28 30 29 nativeBuildInputs = [ ··· 45 44 46 45 meta = with lib; { 47 46 description = "Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables"; 47 + homepage = "https://aioitertools.omnilib.dev/"; 48 48 license = licenses.mit; 49 - homepage = "https://pypi.org/project/aioitertools/"; 50 49 maintainers = with maintainers; [ teh ]; 51 50 }; 52 51 }
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 46 46 47 47 buildPythonPackage rec { 48 48 pname = "angr"; 49 - version = "9.2.15"; 49 + version = "9.2.18"; 50 50 format = "pyproject"; 51 51 52 52 disabled = pythonOlder "3.8"; ··· 55 55 owner = pname; 56 56 repo = pname; 57 57 rev = "v${version}"; 58 - hash = "sha256-9KWk4uB7VlYsnQbDCRgnVkis0UAZfiI2xH9cAD1Dd7M="; 58 + hash = "sha256-wy+0VojvgRjIkiPxnJN+r3R4dkIqhHCP/jZqurf+1CY="; 59 59 }; 60 60 61 61 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/angrop/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "angrop"; 13 - version = "9.2.6"; 13 + version = "9.2.7"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.6"; ··· 19 19 owner = "angr"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - hash = "sha256-qaDAicmYZxLPTl17il61ij01prRv2H4xxe07Xg4KWhI="; 22 + hash = "sha256-wIPk7Cz7FSPviPFBSLrBjLr9M0o3pyoJM7wiAhHrg9Q="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/b2sdk/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "b2sdk"; 19 - version = "1.17.3"; 19 + version = "1.18.0"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.7"; 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - hash = "sha256-pyPjjdQ8wzvQitlchGlfNTPwqs0PH6xgplSPUWpjtwM="; 26 + hash = "sha256-knLyjRjUmLZtM9dJoPBeSdm7GpE0+UJhwLi/obVvPuw="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/beartype/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "beartype"; 10 - version = "0.10.4"; 10 + version = "0.11.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.6"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-JOxp9qf05ul69APQjeJw3vMkhRgGAycJXSOxxN9kvyo="; 17 + hash = "sha256-OFS1Dqqpi7iUkL5X5zxpx3eg8wRXTnBDrH2pisanNaY="; 18 18 }; 19 19 20 20 checkInputs = [
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "claripy"; 18 - version = "9.2.15"; 18 + version = "9.2.18"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "angr"; 25 25 repo = pname; 26 26 rev = "v${version}"; 27 - hash = "sha256-3v5te+j3I4yzxoBO8kY8VGLCrWfb1iOz9GHzun1DT0I="; 27 + hash = "sha256-LhLRuEHhNdr7WSnsbfv0ol+/MbEq+rAdw5UjxY/i9b8="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+12 -11
pkgs/development/python-modules/cocotb/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , buildPythonPackage 4 - , fetchPypi 4 + , fetchFromGitHub 5 5 , setuptools 6 6 , setuptools-scm 7 7 , cocotb-bus ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "cocotb"; 15 - version = "1.7.0"; 15 + version = "1.7.1"; 16 16 17 - # - we need to use the tarball from PyPi 18 - # or the full git checkout (with .git) 19 - # - using fetchFromGitHub will cause a build failure, 20 - # because it does not include required metadata 21 - src = fetchPypi { 22 - inherit pname version; 23 - sha256 = "sha256-CF/ZXkEQDDPwTN2+ngyUKy55XwShR6/Fr5az/aYcY/Q="; 17 + # pypi source doesn't include tests 18 + src = fetchFromGitHub { 19 + owner = "cocotb"; 20 + repo = "cocotb"; 21 + rev = "v${version}"; 22 + sha256 = "sha256-wACgT5r0YmSYvLhTsuFhTcJqeCtGGLifOmr7/Lz2Vug="; 24 23 }; 25 24 26 25 nativeBuildInputs = [ setuptools-scm ]; ··· 52 51 ]; 53 52 54 53 checkInputs = [ cocotb-bus pytestCheckHook swig verilog ]; 55 - 56 - checkPhase = '' 54 + preCheck = '' 57 55 export PATH=$out/bin:$PATH 56 + mv cocotb cocotb.hidden 58 57 ''; 58 + 59 + pythonImportsCheck = [ "cocotb" ]; 59 60 60 61 meta = with lib; { 61 62 description = "Coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python";
+2 -2
pkgs/development/python-modules/dask-image/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dask-image"; 16 - version = "2021.12.0"; 16 + version = "2022.9.0"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-Nb5JYmvQHD44khKBJqJ9XuMmahmKjjx+MNWervcS/Pk="; 23 + hash = "sha256-8SPf0Wp9FcdmYqasFHeFCe1e7ZtJT0Mi5ZRemxWSNUc="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+47 -11
pkgs/development/python-modules/dbus-fast/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , poetry-core 5 + , pytest-asyncio 6 + , pytestCheckHook 5 7 , pythonOlder 6 8 }: 7 9 ··· 9 11 pname = "dbus-fast"; 10 12 version = "1.4.0"; 11 13 format = "pyproject"; 14 + 12 15 disabled = pythonOlder "3.7"; 13 16 14 17 src = fetchFromGitHub { 15 18 owner = "Bluetooth-Devices"; 16 19 repo = pname; 17 - rev = "refs/tags/v${version}"; 20 + rev = "v${version}"; 18 21 hash = "sha256-vbsigiUSGeetY+1MEeQ/cO3Oj8Ah0Yg9BUPo2Gc06KU="; 19 22 }; 20 23 24 + nativeBuildInputs = [ 25 + poetry-core 26 + ]; 27 + 28 + checkInputs = [ 29 + pytest-asyncio 30 + pytestCheckHook 31 + ]; 32 + 21 33 postPatch = '' 22 34 substituteInPlace pyproject.toml \ 23 - --replace "--cov=dbus_fast --cov-report=term-missing:skip-covered" "" 35 + --replace " --cov=dbus_fast --cov-report=term-missing:skip-covered" "" 24 36 ''; 25 - 26 - nativeBuildInputs = [ 27 - poetry-core 28 - ]; 29 37 30 38 pythonImportsCheck = [ 31 39 "dbus_fast" ··· 34 42 "dbus_fast.message" 35 43 ]; 36 44 37 - # requires a running dbus daemon 38 - doCheck = false; 45 + disabledTests = [ 46 + # Test require a running Dbus instance 47 + "test_aio_big_message" 48 + "test_aio_properties" 49 + "test_aio_proxy_object" 50 + "test_bus_disconnect_before_reply" 51 + "test_export_alias" 52 + "test_export_introspection" 53 + "test_export_unexport" 54 + "test_glib_big_message" 55 + "test_high_level_service_fd_passing" 56 + "test_interface_add_remove_signal" 57 + "test_introspectable_interface" 58 + "test_methods" 59 + "test_name_requests" 60 + "test_object_manager" 61 + "test_peer_interface" 62 + "test_property_changed_signal" 63 + "test_property_changed_signal" 64 + "test_property_methods" 65 + "test_sending_file_descriptor_low_level" 66 + "test_sending_file_descriptor_with_proxy" 67 + "test_sending_messages_between_buses" 68 + "test_sending_signals_between_buses" 69 + "test_signals" 70 + "test_standard_interface_properties" 71 + "test_standard_interfaces" 72 + "test_tcp_connection_with_forwarding" 73 + "test_unexpected_disconnect" 74 + ]; 39 75 40 76 meta = with lib; { 41 77 changelog = "https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v${version}"; 42 - description = "A faster version of dbus-next"; 43 - homepage = "https://github.com/Bluetooth-Devices/dbus-fast"; 78 + description = "Faster version of dbus-next"; 79 + homepage = "https://github.com/bluetooth-devices/dbus-fast"; 44 80 license = licenses.mit; 45 - maintainers = lib.teams.home-assistant.members; 81 + maintainers = with maintainers; [ fab ]; 46 82 }; 47 83 }
+2 -2
pkgs/development/python-modules/dnslib/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "dnslib"; 5 - version = "0.9.20"; 5 + version = "0.9.21"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "sha256-ApCrXQj6vR74XvFD0cM/3NVJyy5Qd57BpCOZiw0LKUU="; 9 + sha256 = "sha256-IXabARWP5wvokSF1Q0nyg13M3yHVwBHOyfoopI+lVdQ="; 10 10 }; 11 11 12 12 checkPhase = "VERSIONS=${python.interpreter} ./run_tests.sh";
+3 -3
pkgs/development/python-modules/forecast-solar/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "forecast-solar"; 12 - version = "2.2.0"; 12 + version = "2.3.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "home-assistant-libs"; 16 16 repo = "forecast_solar"; 17 - rev = version; 18 - sha256 = "sha256-2gex50QEN55uUa8SfAQA7iDZ3SVnpOTXfD3Sxq7KvNw="; 17 + rev = "refs/tags/${version}"; 18 + sha256 = "sha256-1xRbTOeBHzLmf0FJwsrg/4+Z2Fs7uwbQwS2Tm41mNRk="; 19 19 }; 20 20 21 21 PACKAGE_VERSION = version;
+2 -2
pkgs/development/python-modules/google-cloud-securitycenter/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-securitycenter"; 16 - version = "1.15.0"; 16 + version = "1.16.0"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.6"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-rWV7lY0CHrVJFOA/Yix/o3OE++wKSK5EEXOV6o5lwIo="; 23 + hash = "sha256-LuC8zMJP4SF/pOUSmA0TV/U/12bo9Wg+UYxdpHaGFfM="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-vision/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-vision"; 15 - version = "3.1.1"; 15 + version = "3.1.2"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-X8YR2tTEgcYeN6j4VfXa4AaU+uRbxabWQydc0UYXFbI="; 22 + hash = "sha256-ZPuKE2GNUWD26nR+dlKAVDpQViCTCFyx+8W/448MgX4="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -9
pkgs/development/python-modules/hiyapyco/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "hiyapyco"; 10 - version = "0.5.0"; 10 + version = "0.5.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "zerwes"; 14 14 repo = pname; 15 15 rev = "refs/tags/release-${version}"; 16 - sha256 = "sha256-v+q7MOJvRc8rzBzwf27jmuIHpZeYGDK7VbzB98qnhrQ="; 16 + sha256 = "sha256-MVJoMnEi+319ZkhffYWYVi/wj0Ihm0nfVeEXvx7Ac/4="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ 20 20 pyyaml 21 21 jinja2 22 22 ]; 23 - 24 - postPatch = '' 25 - # Should no longer be needed with the next release 26 - # https://github.com/zerwes/hiyapyco/pull/42 27 - substituteInPlace setup.py \ 28 - --replace "Jinja2>1,<3" "Jinja2>1" 29 - ''; 30 23 31 24 checkPhase = '' 32 25 set -e
+2 -2
pkgs/development/python-modules/holidays/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "holidays"; 14 - version = "0.15"; 14 + version = "0.16"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-vfRsiuLvGO9bOoDgoY+OLVxDw0dW6siTDGKNxI1R3g4="; 21 + hash = "sha256-HX9P1rGYApj7uzMWsNV/pvFbUxMHTNrMEqOrk788pc0="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hvac/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "hvac"; 11 - version = "0.11.2"; 11 + version = "1.0.2"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "f905c59d32d88d3f67571fe5a8a78de4659e04798ad809de439f667247d13626"; 15 + sha256 = "sha256-5AKMXA7Me3/PalTSkPmSQOWrzbn/5ELRwU8GExDUxhw="; 16 16 }; 17 17 18 18 propagatedBuildInputs = [
+3 -2
pkgs/development/python-modules/miniupnpc/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchPypi }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, cctools, which }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "miniupnpc"; ··· 9 9 sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y"; 10 10 }; 11 11 12 + nativeBuildInputs = lib.optionals stdenv.isDarwin [ cctools which ]; 13 + 12 14 meta = with lib; { 13 - broken = stdenv.isDarwin; 14 15 description = "miniUPnP client"; 15 16 homepage = "http://miniupnp.free.fr/"; 16 17 license = licenses.mit;
+3 -3
pkgs/development/python-modules/mwdblib/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "mwdblib"; 17 - version = "4.2.1"; 17 + version = "4.3.0"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 22 22 src = fetchFromGitHub { 23 23 owner = "CERT-Polska"; 24 24 repo = pname; 25 - rev = "v${version}"; 26 - hash = "sha256-Wkqvi/buYKDoGi+4C9zkxWEiGynk9Ds8gLsdoaZCdKg="; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-ovF5DljtJynIXxmq9kkqjwzAjP/Yc60CTVPXQg4Rnq8="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+17 -5
pkgs/development/python-modules/packageurl-python/default.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, pytestCheckHook }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + , pythonOlder 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "packageurl-python"; 5 - version = "0.10.1"; 10 + version = "0.10.3"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.6"; 6 14 7 15 src = fetchPypi { 8 16 inherit pname version; 9 - sha256 = "sha256-86VSrHQxFs154lz7uMqPk4sG+RyipS3rqA8GoqcBB0k="; 17 + hash = "sha256-oBNxqQFftcGjxi6y9yULh9FzP87VfwdeMHFeuOFeB10="; 10 18 }; 11 19 12 - checkInputs = [ pytestCheckHook ]; 20 + checkInputs = [ 21 + pytestCheckHook 22 + ]; 13 23 14 - pythonImportsCheck = [ "packageurl" ]; 24 + pythonImportsCheck = [ 25 + "packageurl" 26 + ]; 15 27 16 28 meta = with lib; { 17 29 description = "Python parser and builder for package URLs";
+2 -2
pkgs/development/python-modules/persistent/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "persistent"; 13 - version = "4.9.0"; 13 + version = "4.9.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-RwGzHYHBBCJlclrzkEUOnZFq10ucF4twEAU4U1keDGo="; 20 + hash = "sha256-pfkeAJD5OS/TJNl/TCpjbJI5lYKCOM2i4/vMaxu8RoY="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/psycopg/default.nix
··· 32 32 33 33 let 34 34 pname = "psycopg"; 35 - version = "3.1.1"; 35 + version = "3.1.2"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "psycopg"; 39 39 repo = pname; 40 40 rev = "refs/tags/${version}"; 41 - hash = "sha256-PrWHjs8PLmx7bgKtyhXaiSKmz9oT2OhXDkKd4xi7e0A="; 41 + hash = "sha256-44aJeefBpNcD+ns4WD8/G8NVsPKLQFJ72lhAJ4pP1g0="; 42 42 }; 43 43 44 44 patches = [
+4
pkgs/development/python-modules/pycurl/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , isPyPy 4 5 , fetchPypi ··· 72 73 "test_libcurl_ssl_gnutls" 73 74 # AssertionError: assert 'crypto' in ['curl'] 74 75 "test_ssl_in_static_libs" 76 + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ 77 + # Fatal Python error: Segmentation fault 78 + "cadata_test" 75 79 ]; 76 80 77 81 meta = with lib; {
+2 -2
pkgs/development/python-modules/pykeyatome/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pykeyatome"; 16 - version = "1.5.2"; 16 + version = "2.0.0"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "jugla"; 23 23 repo = "pyKeyAtome"; 24 24 rev = "refs/tags/V${version}"; 25 - sha256 = "sha256-9J8MaQs3+/Ld+v3WmA98lSu3iMrX4Se4q1jD1KeRTpw="; 25 + sha256 = "sha256-rmiZ687h8imJXxyepDZor9JyjT2jbg1Lsd5oUtsQtro="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pylitterbot/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pylitterbot"; 17 - version = "2022.9.2"; 17 + version = "2022.9.5"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "natekspencer"; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-iGif349AhrqcJnaZZdGc7x4KD7u4oStmKWxIY/knMww="; 26 + hash = "sha256-sTHMu2HNO0VA86bym0lt810aJ9yYN9PYHcw18Qu7e7c="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyoverkiz/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "pyoverkiz"; 18 - version = "1.5.2"; 18 + version = "1.5.3"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "iMicknl"; 25 25 repo = "python-overkiz-api"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-UIArc0NBg4FM2FjW7r798xbvw5S8gsGiTq7RdQp969E="; 27 + hash = "sha256-1PTlNW40lqg10c1wtAqwIvUwanDFgg81DIZNbfaHhXE="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyupgrade/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyupgrade"; 11 - version = "2.37.3"; 11 + version = "2.38.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; ··· 17 17 owner = "asottile"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-woHYMzk1xLDfJ14UycPlbaMG8mHeBixqDvs9vO0TKQI="; 20 + sha256 = "sha256-dSCo6qB7ON0V2BZoVVaV3X2VMgrjBwZ18wiiDj/+U94="; 21 21 }; 22 22 23 23 checkInputs = [
+2 -2
pkgs/development/python-modules/pyxbe/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pyxbe"; 10 - version = "1.0.0"; 10 + version = "1.0.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchFromGitHub { 16 16 owner = "mborgerson"; 17 17 repo = pname; 18 - rev = "v${version}"; 18 + rev = "refs/tags/v${version}"; 19 19 hash = "sha256-oOY0g1F5sxGUxXAT19Ygq5q7pnxEhIAKmyYELR1PHEA="; 20 20 }; 21 21
+2 -2
pkgs/development/python-modules/pyxnat/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyxnat"; 13 - version = "1.4"; 13 + version = "1.5"; 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "22524120d744b50d25ef6bfc7052637e4ead9e2afac92563231ec89848f5adf5"; 18 + sha256 = "sha256-Y8mj6OfZXyE1q3C8HyVzGySuZB6rLSsL/CV/7axxaec="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/schwifty/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "schwifty"; 15 - version = "2022.7.1"; 15 + version = "2022.9.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "sha256-X0zp35iF/nQhHxm5WfRvrODRt7mkHTKP6zYMZlCTAa8="; 22 + sha256 = "sha256-/zxK0pUfg5G5w9E+QBt1H12Ld5gWc+WakQdNVRMSFiA="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/streamdeck/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "streamdeck"; 11 - version = "0.9.1"; 11 + version = "0.9.2"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "0116a376afc18f3abbf79cc1a4409f81472e19197d5641b9e97e697d105cbdc0"; 15 + sha256 = "sha256-XhNB/flNju2XdOMbVo7X4dhGCqNEV1314PDFC9Ma3nw="; 16 16 }; 17 17 18 18 patches = [
+2 -2
pkgs/development/python-modules/tempest/default.nix
··· 28 28 29 29 buildPythonApplication rec { 30 30 pname = "tempest"; 31 - version = "31.1.0"; 31 + version = "32.0.0"; 32 32 33 33 src = fetchPypi { 34 34 inherit pname version; 35 - sha256 = "sha256-EaDFnIxaAGBDViAVzMjZev3jXmb3NIlMlcg4BiwoAq4="; 35 + sha256 = "sha256-MPaGhT2H8Hzk29qylQru9Z6QaRrHM+9I7N5qhe9Wts4="; 36 36 }; 37 37 38 38 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/textdistance/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "textdistance"; 5 - version = "4.4.0"; 5 + version = "4.5.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "sha256-MzGJQ/TV1fBdV3oNvtseToO/ajUVPovOrOUsxR4fCOM="; 9 + sha256 = "sha256-Nk1D9PZjV0JmLj5s9TcqhoWUFshKPJsu+dZtRPWkOFw="; 10 10 }; 11 11 12 12 # There aren't tests
+2 -2
pkgs/development/python-modules/thermobeacon-ble/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "thermobeacon-ble"; 14 - version = "0.3.1"; 14 + version = "0.3.2"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.9"; ··· 20 20 owner = "bluetooth-devices"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - hash = "sha256-OvSvhOcJSThKyLXHhiwEZtCrYt6+KB5iArUKjfoi2OI="; 23 + hash = "sha256-wzDujKJkUzbzZZ9FYTz78cYF06n8REF1TQiAbePDFJc="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/transformers/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "transformers"; 27 - version = "4.21.3"; 27 + version = "4.22.1"; 28 28 format = "setuptools"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 33 33 owner = "huggingface"; 34 34 repo = pname; 35 35 rev = "refs/tags/v${version}"; 36 - hash = "sha256-rIiue8GEeZy2tF/cjsXvX9WC9nQnZKNMykNMTeneMjo="; 36 + hash = "sha256-Vp+/zAlmTExOyvwLyGQSVLupGk+G9lCXMgbbJiCFOuc="; 37 37 }; 38 38 39 39 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/types-protobuf/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-protobuf"; 9 - version = "3.20.2"; 9 + version = "3.20.3"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "sha256-z7drXrpRSAd5ZgMAYTTMw2FDLdBhqMy42yz5EIpFQ2k="; 14 + sha256 = "sha256-quZASpyQKXDaM5d9G8RM665JV6XO7O1lC5r6+zYFG7I="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/velbus-aio/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "velbus-aio"; 13 - version = "20212.6.2"; 13 + version = "2022.9.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "Cereal2nd"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-MqSqwyfNICEU6h7+HAep3z1Uak30rlQ6noWEB3awVpA="; 22 + sha256 = "sha256-sJ90vfw3JefDsafmEc5sUtPxlQJ4CPtWHpY+mp1cMw8="; 23 23 fetchSubmodules = true; 24 24 }; 25 25
+3 -2
pkgs/development/tools/backblaze-b2/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "backblaze-b2"; 5 - version = "3.5.0"; 5 + version = "3.6.0"; 6 6 7 7 src = python3Packages.fetchPypi { 8 8 inherit version; 9 9 pname = "b2"; 10 - sha256 = "sha256-vyqExulsV0wDijLotPO3RAOk9o4ne0Vq74KJKhSBrvo="; 10 + sha256 = "sha256-qHnnUTSLY1yncqIjG+IMLoNauvgwU04qsvH7dZZ8AlI="; 11 11 }; 12 12 13 13 postPatch = '' ··· 32 32 33 33 checkInputs = with python3Packages; [ 34 34 backoff 35 + more-itertools 35 36 pytestCheckHook 36 37 ]; 37 38
+3 -7
pkgs/development/tools/buf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "buf"; 13 - version = "1.7.0"; 13 + version = "1.8.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "bufbuild"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-ALqyl5GLOxwsojR0/hfjO4yD3AEkyQK+faa3smMW94c="; 19 + sha256 = "sha256-yU1xPOnSQXrYdF24EsXb/x+IfoQFjIbW1KEt//7Fl5Q="; 20 20 }; 21 21 22 - vendorSha256 = "sha256-K+CAC2OrmjzpRF0DLSYp21BgvkxtJCF2FdpzYx/CqGI="; 22 + vendorSha256 = "sha256-zEcKfMib/4/GfQC7M3f8R3v/hGh9F/KtjFs+pXDzbFk="; 23 23 24 24 patches = [ 25 25 # Skip a test that requires networking to be available to work. 26 26 ./skip_test_requiring_network.patch 27 27 # Skip TestWorkspaceGit which requires .git and commits. 28 28 ./skip_test_requiring_dotgit.patch 29 - # Skips the invalid_upstream test as it is flakey. Based on upstream commit 30 - # 27930caf2eb35c2592a77f59ed5afe4d9e2fb7ea. 31 - # This patch may be removed on the next buf update. 32 - ./skip_test_invalid_upstream_flakey.patch 33 29 ]; 34 30 35 31 nativeBuildInputs = [ installShellFiles ];
-24
pkgs/development/tools/buf/skip_test_invalid_upstream_flakey.patch
··· 1 - diff --git a/private/bufpkg/bufstudioagent/bufstudioagent_test.go b/private/bufpkg/bufstudioagent/bufstudioagent_test.go 2 - index 6e010937..9cacc082 100644 3 - --- a/private/bufpkg/bufstudioagent/bufstudioagent_test.go 4 - +++ b/private/bufpkg/bufstudioagent/bufstudioagent_test.go 5 - @@ -186,6 +186,19 @@ func testPlainPostHandlerErrors(t *testing.T, upstreamServer *httptest.Server) { 6 - }) 7 - 8 - t.Run("invalid_upstream", func(t *testing.T) { 9 - + // TODO: unskip this test. This is flaky because of two reasons: 10 - + // 11 - + // 1. When a connection is closed, the underlying HTTP client does not 12 - + // always knows it, since the http handler implementation in go has no way 13 - + // of changing the connection timeout. See: 14 - + // https://github.com/golang/go/issues/16100 15 - + // 16 - + // 2. The expected status code is `StatusBadGateway` since the issue 17 - + // happened client-side (a response never came back from the server). This 18 - + // is not deterministic in the business logic because we're based on the 19 - + // connect error code that's returned. See 20 - + // https://linear.app/bufbuild/issue/BSR-383/flaky-test-in-bufstudioagent-testgo 21 - + t.SkipNow() 22 - listener, err := net.Listen("tcp", "127.0.0.1:") 23 - require.NoError(t, err) 24 - go func() {
+4
pkgs/development/tools/build-managers/bazel/bazel_3/default.nix
··· 211 211 src = ../bazel_rc.patch; 212 212 bazelSystemBazelRCPath = bazelRC; 213 213 }) 214 + 215 + # disable suspend detection during a build inside Nix as this is 216 + # not available inside the darwin sandbox 217 + ../bazel_darwin_sandbox.patch 214 218 ] ++ lib.optional enableNixHacks ../nix-hacks.patch; 215 219 216 220
+4
pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
··· 246 246 src = ../bazel_rc.patch; 247 247 bazelSystemBazelRCPath = bazelRC; 248 248 }) 249 + 250 + # disable suspend detection during a build inside Nix as this is 251 + # not available inside the darwin sandbox 252 + ../bazel_darwin_sandbox.patch 249 253 ] ++ lib.optional enableNixHacks ../nix-hacks.patch; 250 254 251 255
+11
pkgs/development/tools/build-managers/bazel/bazel_5/bazel_darwin_sandbox.patch
··· 1 + diff -ru a/src/main/native/unix_jni_darwin.cc b/src/main/native/unix_jni_darwin.cc 2 + --- a/src/main/native/unix_jni_darwin.cc 1980-01-01 00:00:00.000000000 -0500 3 + +++ b/src/main/native/unix_jni_darwin.cc 2021-11-27 20:35:29.000000000 -0500 4 + @@ -270,6 +270,7 @@ 5 + } 6 + 7 + void portable_start_suspend_monitoring() { 8 + + if (getenv("NIX_BUILD_TOP")) return; 9 + static dispatch_once_t once_token; 10 + static SuspendState suspend_state; 11 + dispatch_once(&once_token, ^{
+6 -2
pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
··· 9 9 # updater 10 10 , python27, python3, writeScript 11 11 # Apple dependencies 12 - , cctools, libcxx, CoreFoundation, CoreServices, Foundation 12 + , cctools, libcxx, sigtool, CoreFoundation, CoreServices, Foundation 13 13 # Allow to independently override the jdks used to build and run respectively 14 14 , buildJdk, runJdk 15 15 , runtimeShell ··· 208 208 src = ../bazel_rc.patch; 209 209 bazelSystemBazelRCPath = bazelRC; 210 210 }) 211 + 212 + # disable suspend detection during a build inside Nix as this is 213 + # not available inside the darwin sandbox 214 + ./bazel_darwin_sandbox.patch 211 215 ] ++ lib.optional enableNixHacks ../nix-hacks.patch; 212 216 213 217 ··· 378 382 # clang installed from Xcode has a compatibility wrapper that forwards 379 383 # invocations of gcc to clang, but vanilla clang doesn't 380 384 sed -i -e 's;_find_generic(repository_ctx, "gcc", "CC", overriden_tools);_find_generic(repository_ctx, "clang", "CC", overriden_tools);g' tools/cpp/unix_cc_configure.bzl 381 - 385 + sed -i -e 's;env -i codesign --identifier $@ --force --sign;env -i CODESIGN_ALLOCATE=${cctools}/bin/${cctools.targetPrefix}codesign_allocate ${sigtool}/bin/codesign --identifier $@ --force -s;g' tools/osx/BUILD 382 386 sed -i -e 's;"/usr/bin/libtool";_find_generic(repository_ctx, "libtool", "LIBTOOL", overriden_tools);g' tools/cpp/unix_cc_configure.bzl 383 387 wrappers=( tools/cpp/osx_cc_wrapper.sh tools/cpp/osx_cc_wrapper.sh.tpl ) 384 388 for wrapper in "''${wrappers[@]}"; do
+11
pkgs/development/tools/build-managers/bazel/bazel_darwin_sandbox.patch
··· 1 + diff -ru a/src/main/native/unix_jni_darwin.cc b/src/main/native/unix_jni_darwin.cc 2 + --- a/src/main/native/unix_jni_darwin.cc 1980-01-01 00:00:00.000000000 -0500 3 + +++ b/src/main/native/unix_jni_darwin.cc 2021-11-27 20:35:29.000000000 -0500 4 + @@ -270,6 +270,7 @@ 5 + } 6 + 7 + int portable_suspend_count() { 8 + + if (getenv("NIX_BUILD_TOP")) return 0; 9 + static dispatch_once_t once_token; 10 + static SuspendState suspend_state; 11 + dispatch_once(&once_token, ^{
+2 -2
pkgs/development/tools/database/pg_activity/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "pg_activity"; 5 - version = "2.3.1"; 5 + version = "3.0.0"; 6 6 disabled = python3Packages.pythonOlder "3.6"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "dalibo"; 10 10 repo = pname; 11 11 rev = "refs/tags/v${version}"; 12 - sha256 = "sha256-oStoZVFf0g1Dj2m+T+8caiKS0o1CnhtQNe/GbnlVUCM="; 12 + sha256 = "sha256-MJZS5+i3s5fTFcgw5zt3GeJKKZ/GS66scuUAW9Fu73A="; 13 13 }; 14 14 15 15 propagatedBuildInputs = with python3Packages; [
+1 -1
pkgs/development/tools/dyff/default.nix
··· 52 52 ''; 53 53 homepage = "https://github.com/homeport/dyff"; 54 54 license = licenses.mit; 55 - maintainers = with maintainers; [ edlimerkaj ]; 55 + maintainers = with maintainers; [ edlimerkaj jceb ]; 56 56 }; 57 57 }
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.15.7"; 5 + version = "0.15.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iud6nSZYclIPfM1n7xG2XCo90FjaHK/nd40jEcSnuIc="; 11 + sha256 = "sha256-9CECbM/0sl9RR0OudyABcchbMZa8Ug5CmaWZ/DYS0m8="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
+3 -3
pkgs/development/tools/misc/circleci-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "circleci-cli"; 5 - version = "0.1.21091"; 5 + version = "0.1.21194"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "CircleCI-Public"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-k8NeqGlhxYLZ4KAuX7eyCi5dIjYIx2z8Xb2JJb2H5Y0="; 11 + sha256 = "sha256-YBo0Td4UEr27AU1yqwXNKWjfWYMuKdgmRNmNUfgL3F0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-jrAd1G/NCjXfaJmzOhMjMZfJoGHsQ1bi3HudBM0e8rE="; 14 + vendorSha256 = "sha256-vydx3ZaVSpIn5nncuQhRVQqZ7920n1NAoZIHFvzrQgo="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+32 -26
pkgs/development/tools/mold/default.nix
··· 1 - { stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 - , lib 4 - , autoPatchelfHook 5 4 , cmake 6 - , llvmPackages_latest 7 - , xxHash 5 + , mimalloc 6 + , ninja 7 + , openssl 8 8 , zlib 9 - , openssl 10 - , nix-update-script 9 + , testers 10 + , mold 11 11 }: 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "mold"; 15 - version = "1.4.0"; 15 + version = "1.4.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "rui314"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-d1rSmDPiVHpYbDPWQKkDhcJJklKlM1+vGdzvjICTT14="; 21 + hash = "sha256-omi4vx8KDpgZ/y3MvE5c/9MxSLXIA4IHJAMue3XpfD8="; 22 22 }; 23 23 24 - buildInputs = [ zlib openssl ]; 25 - nativeBuildInputs = [ autoPatchelfHook cmake xxHash ]; 24 + nativeBuildInputs = [ cmake ninja ]; 26 25 27 - enableParallelBuilding = true; 28 - dontUseCmakeConfigure = true; 29 - EXTRA_LDFLAGS = "-fuse-ld=${llvmPackages_latest.lld}/bin/ld.lld"; 30 - LTO = 1; 31 - makeFlags = [ "PREFIX=${placeholder "out"}" ]; 26 + buildInputs = [ openssl zlib ] 27 + ++ lib.optionals (!stdenv.isDarwin) [ mimalloc ]; 32 28 33 - passthru = { 34 - updateScript = nix-update-script { 35 - attrPath = pname; 36 - }; 37 - }; 29 + postPatch = '' 30 + sed -i CMakeLists.txt -e '/.*set(DEST\ .*/d' 31 + ''; 32 + 33 + cmakeFlags = [ "-DMOLD_USE_SYSTEM_MIMALLOC:BOOL=ON" ]; 34 + 35 + NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [ "-faligned-allocation" ]; 36 + 37 + passthru.tests.version = testers.testVersion { package = mold; }; 38 38 39 39 meta = with lib; { 40 - description = "A high performance drop-in replacement for existing unix linkers"; 40 + description = "A faster drop-in replacement for existing Unix linkers"; 41 + longDescription = '' 42 + mold is a faster drop-in replacement for existing Unix linkers. It is 43 + several times faster than the LLVM lld linker. mold is designed to 44 + increase developer productivity by reducing build time, especially in 45 + rapid debug-edit-rebuild cycles. 46 + ''; 41 47 homepage = "https://github.com/rui314/mold"; 42 - license = lib.licenses.agpl3Plus; 43 - maintainers = with maintainers; [ nitsky ]; 48 + license = licenses.agpl3Plus; 49 + maintainers = with maintainers; [ azahi nitsky ]; 44 50 platforms = platforms.unix; 45 - # error: aligned deallocation function of type 'void (void *, std::align_val_t) noexcept' is only available on macOS 10.14 or newer 46 - broken = stdenv.isAarch64 || stdenv.isDarwin; 51 + # https://github.com/NixOS/nixpkgs/pull/189712#issuecomment-1237791234 52 + broken = (stdenv.isLinux && stdenv.isAarch64); 47 53 }; 48 54 }
+3 -3
pkgs/development/tools/nil/default.nix
··· 1 1 { lib, rustPlatform, fetchFromGitHub }: 2 2 3 3 let 4 - date = "2022-09-10"; 4 + date = "2022-09-19"; 5 5 in 6 6 7 7 rustPlatform.buildRustPackage rec { ··· 12 12 owner = "oxalica"; 13 13 repo = pname; 14 14 rev = date; 15 - sha256 = "sha256-yqg46An5TPl6wsv5xflK4T90fTho4KXIILoV71jSl28="; 15 + sha256 = "sha256-WdBRfp0shz6Xhwx0fEUQwROK52XNDTkmhC2xkdT+INA="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-MabVHbNGWpeUztwedXRXHBfgEostxk0aWpGCHlpnhJo="; 18 + cargoSha256 = "sha256-J1CRe5xPl428mwOO4kDxLyPBc0mtzl3iU4mUqW5d4+E="; 19 19 20 20 CFG_DATE = date; 21 21
+3 -3
pkgs/development/tools/remodel/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "remodel"; 12 - version = "0.10.0"; 12 + version = "0.11.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "rojo-rbx"; 16 16 repo = "remodel"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-bUwTryGc4Y614nXKToPXp5KZqO12MmtdT3FUST4OvQY="; 18 + sha256 = "sha256-tZ6ptGeNBULJaoFomMFN294wY8YUu1SrJh4UfOL/MnI="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-b9+eV2co4hcKLZxJRqDIX2U0O25Ba5UHQiNpfjE4fN4="; 21 + cargoSha256 = "sha256-YCYs+MMTxnJEKhzjddBp7lnSYPrpf3G+ktr1ez/ZKkg="; 22 22 23 23 nativeBuildInputs = [ 24 24 pkg-config
+4 -4
pkgs/development/tools/rust/cargo-espflash/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-espflash"; 5 - version = "1.6.0"; 5 + version = "1.7.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "esp-rs"; 9 9 repo = "espflash"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-YQ621YbdEy2sS4uEYvgnQU1G9iW5SpWNObPH4BfyeF0="; 11 + sha256 = "sha256-AauIneSnacnY4mulD/qUgfN4K9tLzZXFug0oEsDuj18="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ ··· 19 19 udev 20 20 ]; 21 21 22 - cargoSha256 = "sha256-mDSNjeaEtYpEGpiIg2F+e8x/XCssNQxUx+6Cj+8XX5Q="; 22 + cargoSha256 = "sha256-82o3B6qmBVPpBVAogClmTbxrBRXY8Lmd2sHmonP5/s8="; 23 23 24 24 meta = with lib; { 25 25 description = "Serial flasher utility for Espressif SoCs and modules based on esptool.py"; 26 26 homepage = "https://github.com/esp-rs/cargo-espflash"; 27 - license = licenses.gpl2Only; 27 + license = with licenses; [ mit /* or */ asl20 ]; 28 28 maintainers = with maintainers; [ matthiasbeyer ]; 29 29 }; 30 30 }
+3 -3
pkgs/development/tools/rust/cargo-fund/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-fund"; 5 - version = "0.2.1"; 5 + version = "0.2.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "acfoltzer"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-MlAFnwX++OYRzqhEcSjxNzmSyJiVE5t6UuCKy9J+SsQ="; 11 + sha256 = "sha256-hUTBDC2XU82jc9TbyCYVKgWxrKG/OIc1a+fEdj5566M="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-pI5iz/V7/2jH3t3W3fuLzqd6oJC3PqHIWEJhDLmjLI0="; 14 + cargoSha256 = "sha256-cU/X+oNTMjUSODkdm+P+vVLmBJlkeQ9WTJGvQmUOQKw="; 15 15 16 16 # The tests need a GitHub API token. 17 17 doCheck = false;
+24
pkgs/development/tools/rust/cargo-hack/default.nix
··· 1 + { lib, rustPlatform, fetchCrate }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "cargo-hack"; 5 + version = "0.5.18"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-EtM5nGbsvwWiQGKrakMiToz7Hy6xoE3C6JsD2+JBpaA="; 10 + }; 11 + 12 + cargoSha256 = "sha256-3O9j9I6iMsgQl1nhXfdI5sNnnt71FBidQh+bqjpuPhc="; 13 + 14 + # some necessary files are absent in the crate version 15 + doCheck = false; 16 + 17 + meta = with lib; { 18 + description = "Cargo subcommand to provide various options useful for testing and continuous integration"; 19 + changelog = "https://github.com/taiki-e/cargo-hack/blob/v${version}/CHANGELOG.md"; 20 + homepage = "https://github.com/taiki-e/cargo-hack"; 21 + license = with licenses; [ asl20 /* or */ mit ]; 22 + maintainers = with maintainers; [ figsoda ]; 23 + }; 24 + }
+4 -4
pkgs/development/tools/rust/cargo-license/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-license"; 5 - version = "0.5.0"; 5 + version = "0.5.1"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-z68idQqjH0noNZLwoTtnLrIOXZPG4kAYS9+7yrFXKOA="; 9 + sha256 = "sha256-M/QGM8jPLrDIoF1TVYDoVcHni1qaRCyZwHlYgia24Ro="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-8QgDKgJC5l2h5ysQaICjToI7gGxnmlolTwEtxHJMlj8="; 12 + cargoSha256 = "sha256-2m+ornrQQzijyF30uQ6xpEiid6r6I1wTa8nn6Q0wNKo="; 13 13 14 14 meta = with lib; { 15 15 description = "Cargo subcommand to see license of dependencies"; 16 16 homepage = "https://github.com/onur/cargo-license"; 17 17 license = with licenses; [ mit ]; 18 - maintainers = with maintainers; [ basvandijk ]; 18 + maintainers = with maintainers; [ basvandijk figsoda ]; 19 19 }; 20 20 }
+3 -3
pkgs/development/tools/rust/sqlx-cli/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "sqlx-cli"; 5 - version = "0.6.1"; 5 + version = "0.6.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "launchbadge"; 9 9 repo = "sqlx"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4XJ0dNbACCcbN5+d05H++jlRKuL+au3iOLMoBR/whOs="; 11 + sha256 = "sha256-pQlrKjhOJfjNEmLxqnFmmBY1naheZUsaq2tGdLKGxjg="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-sIe+uVCzTVUTePNIBekCA/uwRG+GWGonnvzhRDwh5Y4="; 14 + cargoSha256 = "sha256-AbA8L7rkyZfKW0vvjyrcW5eU6jGD+zAqIcEUOJmeqJs="; 15 15 16 16 doCheck = false; 17 17 cargoBuildFlags = [ "-p sqlx-cli" ];
+3 -3
pkgs/development/tools/selene/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "selene"; 13 - version = "0.21.0"; 13 + version = "0.21.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kampfkarren"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-iqPQD0oDPhhD7jgnbiJvUiaxj1YZeGkgQu6p1vr1Vlw="; 19 + sha256 = "sha256-a3mslAqDzUlMLBMjxScMkR4GePmpBeH+Ottd1ENum/c="; 20 20 }; 21 21 22 - cargoSha256 = "sha256-gl4vgS/164eYP3MWRBaI3NrmlqbYZUHOwySUA7/42Qg="; 22 + cargoSha256 = "sha256-nFtZDoNbUxO5YY+Mqu5W6AR+tH2zsBLMQ7EDK6A8qAg="; 23 23 24 24 nativeBuildInputs = lib.optional robloxSupport pkg-config; 25 25
+2 -2
pkgs/development/tools/vendir/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vendir"; 5 - version = "0.30.0"; 5 + version = "0.31.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vmware-tanzu"; 9 9 repo = "carvel-vendir"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iIqfm07qO5qf7mYHdBJVRiokRLHdE7qS2mjaeU9G3U4="; 11 + sha256 = "sha256-iWEUFJAc3BNEqANByHTeGSa7KD4H14kIKEPS7eyl6PU="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+3
pkgs/games/freedroidrpg/default.nix
··· 18 18 url = "https://gitlab.com/freedroid/freedroid-src/-/commit/e610d427374226b79da5258d979936459f30c761.patch"; 19 19 sha256 = "1s7sw4dkc7b6i72j6x47driq6v0k3wss48l9ivd4fw40n3iaxjb1"; 20 20 }) 21 + 22 + # Do not embed build flags in the binary to reduce closure size. 23 + ./drop-build-deps.patch 21 24 ]; 22 25 23 26 nativeBuildInputs = [ pkg-config gettext python3 ];
+15
pkgs/games/freedroidrpg/drop-build-deps.patch
··· 1 + Do not embed paths to build-only depends (-I...SDL2-dev and friends) 2 + into savefile lua comments. 3 + --- a/src/savestruct_internal.c 4 + +++ b/src/savestruct_internal.c 5 + @@ -486,8 +486,8 @@ void save_game_data(struct auto_string *strout) 6 + autostr_append(strout, 7 + "SAVEGAME: %s %s %s;sizeof(tux_t)=%d;sizeof(enemy)=%d;sizeof(bullet)=%d;MAXBULLETS=%d\n", 8 + SAVEGAME_VERSION, SAVEGAME_REVISION, VERSION, (int)sizeof(tux_t), (int)sizeof(enemy), (int)sizeof(bullet), (int)MAXBULLETS); 9 + - autostr_append(strout, "BUILD_CFLAGS: %s\n", BUILD_CFLAGS); 10 + - autostr_append(strout, "BUILD_LDFLAGS: %s\n", BUILD_LDFLAGS); 11 + + autostr_append(strout, "BUILD_CFLAGS: %s\n", "<hidden>"); 12 + + autostr_append(strout, "BUILD_LDFLAGS: %s\n", "<hidden>"); 13 + autostr_append(strout, "VERSION: %s\n", freedroid_version); 14 + autostr_append(strout, "--]]\n"); 15 +
+3 -3
pkgs/games/pokete/default.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "pokete"; 10 - version = "0.8.2"; 10 + version = "0.9.0"; 11 11 12 12 format = "other"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "lxgr-linux"; 16 16 repo = "pokete"; 17 - rev = "v${version}"; 18 - sha256 = "sha256-carQ/m7akdXLO4h5o0cE0EiQmsAyarMAV4AtG3KATYQ="; 17 + rev = "refs/tags/${version}"; 18 + sha256 = "sha256-55BqUSZJPDz5g1FTdkuWa9wcsrLwh6YagD5bQ9ZpQv4="; 19 19 }; 20 20 21 21 pythonPath = with python3.pkgs; [
+3 -3
pkgs/misc/tmux-plugins/default.nix
··· 596 596 vim-tmux-navigator = mkTmuxPlugin { 597 597 pluginName = "vim-tmux-navigator"; 598 598 rtpFilePath = "vim-tmux-navigator.tmux"; 599 - version = "unstable-2019-12-10"; 599 + version = "unstable-2022-08-21"; 600 600 src = fetchFromGitHub { 601 601 owner = "christoomey"; 602 602 repo = "vim-tmux-navigator"; 603 - rev = "8fdf78292bb3aed1c9de880be7e03efdbf23d306"; 604 - sha256 = "0y92na4dcfcsj5zbs3m7y6csl3sd46a9968id78cdn9cgg8iwzac"; 603 + rev = "afb45a55b452b9238159047ce7c6e161bd4a9907"; 604 + hash = "sha256-8A+Yt9uhhAP76EiqUopE8vl7/UXkgU2x000EOcF7pl0="; 605 605 }; 606 606 }; 607 607
+4 -1
pkgs/os-specific/linux/usbrelay/daemon.nix
··· 1 - { stdenv, usbrelay, python3 }: 1 + { stdenv, usbrelay, python3, installShellFiles }: 2 2 let 3 3 python = python3.withPackages (ps: with ps; [ usbrelay-py paho-mqtt ]); 4 4 in ··· 16 16 --replace '/usr/sbin/usbrelayd' "$out/bin/usbrelayd" 17 17 ''; 18 18 19 + nativeBuildInputs = [ installShellFiles ]; 20 + 19 21 buildInputs = [ python ]; 20 22 21 23 dontBuild = true; ··· 26 28 install -m 644 -D usbrelayd.service $out/lib/systemd/system/usbrelayd.service 27 29 install -m 644 -D 50-usbrelay.rules $out/lib/udev/rules.d/50-usbrelay.rules 28 30 install -m 644 -D usbrelayd.conf $out/etc/usbrelayd.conf # include this as an example 31 + installManPage usbrelayd.8 29 32 runHook postInstall 30 33 ''; 31 34
+2 -2
pkgs/os-specific/linux/usbrelay/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, hidapi, installShellFiles }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "usbrelay"; 4 - version = "1.0"; 4 + version = "1.0.1"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "darrylb123"; 8 8 repo = "usbrelay"; 9 9 rev = version; 10 - sha256 = "sha256-5zgpN4a+r0tmw0ISTJM+d9mo+L/qwUvpWPSsykuG0cg="; 10 + sha256 = "sha256-2elDrO+WaaRYdTrG40Ez00qSsNVQjXE6GdOJbWPfugE="; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+4
pkgs/os-specific/linux/usbrelay/python.nix
··· 4 4 pname = "usbrelay_py"; 5 5 inherit (usbrelay) version src; 6 6 7 + preConfigure = '' 8 + cd usbrelay_py 9 + ''; 10 + 7 11 buildInputs = [ usbrelay ]; 8 12 9 13 pythonImportsCheck = [ "usbrelay_py" ];
+1
pkgs/os-specific/linux/usbrelay/test.nix
··· 42 42 }; 43 43 44 44 testScript = '' 45 + import os 45 46 if os.waitstatus_to_exitcode(os.system("lsusb -d 16c0:05df")) != 0: 46 47 print("No USB relay detected, skipping test") 47 48 import sys
+28
pkgs/servers/caddy/xcaddy/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "xcaddy"; 5 + version = "0.3.1"; 6 + 7 + subPackages = [ "cmd/xcaddy" ]; 8 + 9 + src = fetchFromGitHub { 10 + owner = "caddyserver"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + hash = "sha256-oGTtS5UlEebIqv4SM4q0YclASJNu8DNOLrGLRRAtkd8="; 14 + }; 15 + 16 + patches = [ 17 + ./use_tmpdir_on_darwin.diff 18 + ]; 19 + 20 + vendorHash = "sha256-RpbnoXyTrqGOI7DpgkO+J47P17T4QCVvM1CfS6kRO9Y="; 21 + 22 + meta = with lib; { 23 + homepage = "https://github.com/caddyserver/xcaddy"; 24 + description = "Build Caddy with plugins"; 25 + license = licenses.asl20; 26 + maintainers = with maintainers; [ tjni ]; 27 + }; 28 + }
+13
pkgs/servers/caddy/xcaddy/use_tmpdir_on_darwin.diff
··· 1 + diff --git a/builder.go b/builder.go 2 + index ed6c5ef..36e8055 100644 3 + --- a/builder.go 4 + +++ b/builder.go 5 + @@ -200,7 +200,7 @@ func NewReplace(old, new string) Replace { 6 + // It is the caller's responsibility to remove the folder when finished. 7 + func newTempFolder() (string, error) { 8 + var parentDir string 9 + - if runtime.GOOS == "darwin" { 10 + + if false && runtime.GOOS == "darwin" { 11 + // After upgrading to macOS High Sierra, Caddy builds mysteriously 12 + // started missing the embedded version information that -ldflags 13 + // was supposed to produce. But it only happened on macOS after
+2 -2
pkgs/servers/coturn/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "coturn"; 17 - version = "4.5.2"; 17 + version = "4.6.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "coturn"; 21 21 repo = "coturn"; 22 22 rev = version; 23 - sha256 = "1s7ncc82ny4bb3qkn3fqr0144xsr7h2y8xmzsf5037h6j8f7j3v8"; 23 + sha256 = "sha256-QXApGJme/uteeKS8oiVLPOYUKzxTKdSC4WMlKS0VW5Q="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/servers/dns/coredns/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "coredns"; 9 - version = "1.9.4"; 9 + version = "1.10.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "coredns"; 13 13 repo = "coredns"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-9+DwOSfhX+sNnvLMgHKUQSozXzT9k8u7Q1p8FvbvsTE="; 15 + sha256 = "sha256-Kb4nkxuyZHJT5dqFSkqReFkN8q1uYm7wbhSIiLd8Hck="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-L4GzOY7oZlC3Et/kEBXrrQGt5/c3jHZimY7NnjXYSro="; 18 + vendorSha256 = "sha256-nyMeKmGoypDrpZHYHGjhRnjgC3tbOX/dlj96pnXrdLE="; 19 19 20 20 postPatch = '' 21 21 substituteInPlace test/file_cname_proxy_test.go \
+3 -3
pkgs/servers/monitoring/prometheus/statsd-exporter.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "statsd_exporter"; 5 - version = "0.22.7"; 5 + version = "0.22.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "prometheus"; 10 10 repo = "statsd_exporter"; 11 - sha256 = "sha256-hkzgLjxFczqKKJHdVfCKPqMXVFShlS5lZoX8NA27u90="; 11 + sha256 = "sha256-fzBVG3XPvaJnfsebA4muWDmkgw8kwzpOv/C68/j/tSs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-/qc3Ui18uSDfHsXiNA63+uPSfxShz7cs3kv0rQPgCok="; 14 + vendorSha256 = "sha256-EQl3ME/l0mEkqjy2DCjUBv6LVbR6OaEUkwNIBPfXiDA="; 15 15 16 16 meta = with lib; { 17 17 description = "Receives StatsD-style metrics and exports them to Prometheus";
+2 -2
pkgs/servers/web-apps/dokuwiki/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "dokuwiki"; 5 - version = "2022-07-31"; 5 + version = "2022-07-31a"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "splitbrain"; 9 9 repo = pname; 10 10 rev = "release_stable_${version}"; 11 - sha256 = "sha256-FreJsajdfoefQHo6rBzkImDUvR3Zb7rBQTYhYvyRJC4="; 11 + sha256 = "sha256-gtWEtc3kbMokKycTx71XXblkDF39i926uN2kU3oOeVw="; 12 12 }; 13 13 14 14 preload = writeText "preload.php" ''
+2 -2
pkgs/servers/web-apps/netbox/default.nix
··· 17 17 in 18 18 py.pkgs.buildPythonApplication rec { 19 19 pname = "netbox"; 20 - version = "3.3.2"; 20 + version = "3.3.4"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "netbox-community"; 24 24 repo = pname; 25 25 rev = "refs/tags/v${version}"; 26 - sha256 = "sha256-G7d9CG7mxdtdShWOdbbcWTVD3qrTKjh7j3MX/cTJbPw="; 26 + sha256 = "sha256-bXrolmpXrO86CbS+5D8ik+Iv/Gb8f7om2ddGs/g61Sg="; 27 27 }; 28 28 29 29 format = "other";
+7 -2
pkgs/shells/rc/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook, byacc 2 - , ncurses, readline 2 + , ncurses, readline, pkgsStatic 3 3 , historySupport ? false, readlineSupport ? true }: 4 4 5 5 stdenv.mkDerivation rec { ··· 20 20 buildInputs = [ ncurses ] 21 21 ++ lib.optionals readlineSupport [ readline ]; 22 22 23 + CPPFLAGS = ["-DSIGCLD=SIGCHLD"]; 24 + 23 25 configureFlags = [ 24 26 "--enable-def-interp=${stdenv.shell}" #183 25 27 ] ++ lib.optionals historySupport [ "--with-history" ] ··· 31 33 --replace "$(git describe || echo '(git description unavailable)')" "${builtins.substring 0 7 src.rev}" 32 34 ''; 33 35 34 - passthru.shellPath = "/bin/rc"; 36 + passthru = { 37 + shellPath = "/bin/rc"; 38 + tests.static = pkgsStatic.rc; 39 + }; 35 40 36 41 meta = with lib; { 37 42 description = "The Plan 9 shell";
+3 -3
pkgs/tools/admin/eksctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "eksctl"; 5 - version = "0.111.0"; 5 + version = "0.112.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-I/EYq83snTphHlOk6SgZSYpRS3RNpD2JX1fkwqEG9j0="; 11 + sha256 = "sha256-kY2AE5lLP1awxfPj16MAhcxO59S3lOZOUXV2EzXDHTY="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-Dka0UbTxR2UsMkClq8t0//m+Ky7NEw3g9XP6PtTWOe4="; 14 + vendorSha256 = "sha256-z/3aUSuAZSVsQ67JgUy6z3T91vKHlBjjQS4oSljl/nk="; 15 15 16 16 doCheck = false; 17 17
-1
pkgs/tools/backup/rdedup/default.nix
··· 28 28 homepage = "https://github.com/dpc/rdedup"; 29 29 license = licenses.mpl20; 30 30 maintainers = with maintainers; [ dywedir ]; 31 - broken = stdenv.isDarwin; 32 31 }; 33 32 }
+3 -3
pkgs/tools/misc/chezmoi/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "chezmoi"; 5 - version = "2.22.1"; 5 + version = "2.23.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "twpayne"; 9 9 repo = "chezmoi"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-IVXrFoSpwKC96oYqMrWz5Pouf2RPUJZxQppkfmNoZIg="; 11 + sha256 = "sha256-h9FtmiOrzHdweZQr0xTw12MavbyWwTw3KeOtzXbVt8E="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-riGN7d+am9DXCcFVkc2WIxmHvsNaZxHm/aEDcb8kCz4="; 14 + vendorSha256 = "sha256-TNFplcN6vmt0z3WuMXZPYeM9xWMXfmsY912MItqRG6U="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/tools/misc/fntsample/default.nix
··· 17 17 18 18 let 19 19 ucd-blocks = fetchurl { 20 - url = "https://www.unicode.org/Public/14.0.0/ucd/Blocks.txt"; 21 - hash = "sha256-WYhw3d73s0talykWUoxFav8nZbec1Plkf7WM63Z+fxc="; 20 + url = "https://www.unicode.org/Public/15.0.0/ucd/Blocks.txt"; 21 + hash = "sha256-Up3F0PY4bVLy9W4AS7+rSM4tWH7qnTi6VGxAUkkb2CA="; 22 22 }; 23 23 in 24 24 stdenv.mkDerivation rec {
+2 -2
pkgs/tools/misc/goreleaser/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "goreleaser"; 5 - version = "1.11.3"; 5 + version = "1.11.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "goreleaser"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-aWaNJVNd3CUTU6ap4sUMo2EqDDkA4iMe9xdxqaA+wl0="; 11 + sha256 = "sha256-hbgInZZ1ahFPIGHiHs68GqbMfFfYMcJy92iL2fvGxr0="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-iUXbvwh04W8cZ4pa+OS4bRi3bCyFQ2shPzHNh6/e3Vs=";
+5 -3
pkgs/tools/misc/miniserve/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "miniserve"; 11 - version = "0.21.0"; 11 + version = "0.22.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "svenstaro"; 15 15 repo = "miniserve"; 16 16 rev = "v${version}"; 17 - hash = "sha256-tps/TKkG2To80zokNoSHQQPrzZnoS+lBWks/PIV586Q="; 17 + hash = "sha256-pi+dBJE+EqQpyZAkIV7duK1g378J6BgjIiFcjV5H1fQ="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-9xRxUnDEji5+3drHQtdK1ozW8nezushxZZAaUlp+jJQ="; 20 + cargoSha256 = "sha256-nRTGKW33NO2vRkvpNVk4pT1DrHPEsSfhwf8y5pJ+n9U="; 21 21 22 22 nativeBuildInputs = [ 23 23 installShellFiles ··· 30 30 checkFlags = [ 31 31 "--skip=bind_ipv4_ipv6::case_2" 32 32 "--skip=cant_navigate_up_the_root" 33 + "--skip=qrcode_hidden_in_tty_when_disabled" 34 + "--skip=qrcode_shown_in_tty_when_enabled" 33 35 ]; 34 36 35 37 postInstall = ''
+3 -3
pkgs/tools/misc/ripdrag/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "ripdrag"; 5 - version = "0.1.5"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-Pa/QYxdPt95deEjSXEVhm2jR3r8rTaKQj2DltT7EVAw="; 9 + sha256 = "sha256-bXyJcSJfKHkcwTayEbX9sZZEBeP9qoH36QqBIDnmKQM="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-jI7nF8Q8sA4AxkXvQ43r5GqcbTWffuf453DLGUs7I98="; 12 + cargoSha256 = "sha256-PqoIJ0mbpaE4UX+kz3pFiqmTS1Vp+jF2OT5+3K2A0MQ="; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 15
+2 -2
pkgs/tools/misc/unicode/default.nix
··· 12 12 }; 13 13 14 14 ucdtxt = fetchurl { 15 - url = "https://www.unicode.org/Public/14.0.0/ucd/UnicodeData.txt"; 16 - sha256 = "sha256-NgGOaGV/3LNIX2NmMP/oyFMuAcl3cD0oA/W4nWxf6vs="; 15 + url = "https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt"; 16 + sha256 = "sha256-gG6a7WUDcZfx7IXhK+bozYcPxWCLTeD//ZkPaJ83anM="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ installShellFiles ];
+3 -3
pkgs/tools/misc/uutils-coreutils/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "uutils-coreutils"; 15 - version = "0.0.14"; 15 + version = "0.0.15"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "uutils"; 19 19 repo = "coreutils"; 20 20 rev = version; 21 - sha256 = "sha256-BLNWtf5RLeHQGH97M6vfZCXvCdPxUAU+hY1PBsGZ8jU="; 21 + sha256 = "sha256-q17YR95Iuw2382xDP1xA/X6u7NM6pW4OkJu4FpohtkA="; 22 22 }; 23 23 24 24 cargoDeps = rustPlatform.fetchCargoTarball { 25 25 inherit src; 26 26 name = "${pname}-${version}"; 27 - hash = "sha256-lHyIrzf286Hjef6cqy3tJF6U2OnnokGXcH4yMotZay4="; 27 + hash = "sha256-8/nMf1NHGn4ITPnx5315XdirrMPkRtYd2IV9MvxVVAE="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];
+3 -3
pkgs/tools/networking/oha/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "oha"; 5 - version = "0.5.4"; 5 + version = "0.5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hatoo"; 9 9 repo = pname; 10 10 rev = "refs/tags/v${version}"; 11 - sha256 = "sha256-dk9OXUt31UIZLH3E50R8iE8zJqvdT1pBu1oU25QrOro="; 11 + sha256 = "sha256-NSre4OHzREVM8y9njMkS/whQ0+Ed+R+cLYfRWKmhA98="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-WlAAuFz7DZ4PhlTgEXNK9sZKkS95pCrbX2AXC3c1rh8="; 14 + cargoSha256 = "sha256-GPP2eespnxDQoKZkqoPXEthRKk84szFl0LNTeqJQLNs="; 15 15 16 16 nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; 17 17
+12
pkgs/tools/networking/tracebox/default.nix
··· 5 5 , libpcap 6 6 , lua5_1 7 7 , json_c 8 + , testers 9 + , tracebox 8 10 }: 9 11 stdenv.mkDerivation rec { 10 12 pname = "tracebox"; ··· 25 27 json_c 26 28 ]; 27 29 30 + postPatch = '' 31 + sed -i configure.ac \ 32 + -e 's,$(git describe .*),${version},' 33 + ''; 34 + 28 35 configureFlags = [ 29 36 "--with-lua=yes" 30 37 "--with-libpcap=yes" ··· 34 41 LUA_LIB="-llua"; 35 42 36 43 enableParallelBuilding = true; 44 + 45 + passthru.tests.version = testers.testVersion { 46 + package = tracebox; 47 + command = "tracebox -V"; 48 + }; 37 49 38 50 meta = with lib; { 39 51 homepage = "http://www.tracebox.org/";
+56
pkgs/tools/security/dbmonster/default.nix
··· 1 + { lib 2 + , aircrack-ng 3 + , fetchFromGitHub 4 + , iproute2 5 + , networkmanager 6 + , python3 7 + , tshark 8 + , wirelesstools 9 + }: 10 + 11 + python3.pkgs.buildPythonApplication rec { 12 + pname = "dbmonster"; 13 + version = "unstable-2022-09-17"; 14 + format = "other"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "90N45-d3v"; 18 + repo = "dBmonster"; 19 + rev = "4c79549079782a2991309120a55c8158701a9b70"; 20 + hash = "sha256-9RP3LmZF7P2c0+Jt/kMSVPb4cBtyH6P3FZ5UrQpBP0I="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + aircrack-ng 25 + iproute2 26 + networkmanager 27 + tshark 28 + wirelesstools 29 + ] ++ (with python3.pkgs; [ 30 + matplotlib 31 + ]); 32 + 33 + dontBuild = true; 34 + 35 + installPhase = '' 36 + runHook preInstall 37 + 38 + install -vD dBmonster.py $out/bin/$pname.py 39 + 40 + makeWrapper ${python3.interpreter} $out/bin/$pname \ 41 + --set PYTHONPATH "$PYTHONPATH:$out/bin/$pname" \ 42 + --add-flags "-O $out/bin/$pname.py" 43 + 44 + runHook postInstall 45 + ''; 46 + 47 + # Only script available 48 + doCheck = false; 49 + 50 + meta = with lib; { 51 + description = "Tool to track WiFi devices by signal strength"; 52 + homepage = "https://github.com/90N45-d3v/dBmonster"; 53 + license = licenses.mit; 54 + maintainers = with maintainers; [ fab ]; 55 + }; 56 + }
+13 -15
pkgs/tools/security/rustscan/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, nmap, Security }: 1 + { lib, rustPlatform, fetchCrate, nmap, stdenv, Security, perl, python3 }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rustscan"; 5 - version = "2.0.1"; 5 + version = "2.1.0"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "RustScan"; 9 - repo = pname; 10 - rev = version; 11 - sha256 = "0fdbsz1v7bb5dm3zqjs1qf73lb1m4qzkqyb3h3hbyrp9vklgxsgw"; 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-f9QFsVGGKoWqZGIg8Z8FgZGcUo5M8MFNUavK69SgHkg="; 12 10 }; 13 11 14 - cargoSha256 = "0658jbx59qrsgpfczzlfrbp2qm7kh0c5561bsxzmgiri7fcz9w0n"; 12 + cargoSha256 = "sha256-ZoDE7SJ6snWTFvYXHZdVCC6UCug2wGghH93FfDTDsv0="; 15 13 16 14 postPatch = '' 17 - substituteInPlace src/main.rs \ 18 - --replace 'Command::new("nmap")' 'Command::new("${nmap}/bin/nmap")' 15 + substituteInPlace src/scripts/mod.rs \ 16 + --replace 'call_format = "nmap' 'call_format = "${nmap}/bin/nmap' 17 + patchShebangs fixtures/.rustscan_scripts/* 19 18 ''; 20 19 21 20 buildInputs = lib.optional stdenv.isDarwin Security; 22 21 22 + checkInputs = [ perl python3 ]; 23 + 24 + # these tests require network access 23 25 checkFlags = [ 24 - "--skip=infer_ulimit_lowering_no_panic" 25 - "--skip=google_dns_runs" 26 26 "--skip=parse_correct_host_addresses" 27 27 "--skip=parse_hosts_file_and_incorrect_hosts" 28 - "--skip=run_perl_script" 29 - "--skip=run_python_script" 30 28 ]; 31 29 32 30 meta = with lib; { 33 31 description = "Faster Nmap Scanning with Rust"; 34 32 homepage = "https://github.com/RustScan/RustScan"; 35 33 license = licenses.gpl3Only; 36 - maintainers = with maintainers; [ ]; 34 + maintainers = with maintainers; [ figsoda ]; 37 35 }; 38 36 }
+3 -3
pkgs/tools/system/systeroid/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "systeroid"; 10 - version = "0.2.2"; 10 + version = "0.3.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "orhun"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-Xkpa5W+smNMrcWXylOy0fU1wI7jBF9Bw16pzI5IDFI4="; 16 + sha256 = "sha256-VkkobNYkz8FunyaS6EJpfqOvDdwZJE+P2YTSJCgHZI0="; 17 17 }; 18 18 19 19 postPatch = '' ··· 21 21 --replace '"/usr/share/doc/kernel-doc-*/Documentation/*",' '"${linux-doc}/share/doc/linux-doc/*",' 22 22 ''; 23 23 24 - cargoSha256 = "sha256-A9yd/Z94B6beWyiiRl7rJQOj7YMNFHkjhtu5MHG8/XA="; 24 + cargoSha256 = "sha256-ulmU33j2edzMA/L4KXiM5M6RhH3MmMAkA2DuHxdj2uk="; 25 25 26 26 buildInputs = [ 27 27 xorg.libxcb
+14 -5
pkgs/top-level/all-packages.nix
··· 2756 2756 2757 2757 goku = callPackage ../os-specific/darwin/goku { }; 2758 2758 2759 + grb = callPackage ../applications/misc/grb { }; 2760 + 2759 2761 kerf = kerf_1; /* kerf2 is WIP */ 2760 2762 kerf_1 = callPackage ../development/interpreters/kerf { 2761 2763 stdenv = clangStdenv; ··· 3222 3224 }); 3223 3225 3224 3226 caddy = callPackage ../servers/caddy { }; 3227 + 3228 + xcaddy = callPackage ../servers/caddy/xcaddy { }; 3225 3229 3226 3230 traefik = callPackage ../servers/traefik { }; 3227 3231 ··· 13268 13272 13269 13273 dbmate = callPackage ../development/tools/database/dbmate { }; 13270 13274 13275 + dbmonster = callPackage ../tools/security/dbmonster { }; 13276 + 13271 13277 devpi-client = python3Packages.callPackage ../development/tools/devpi-client {}; 13272 13278 13273 13279 devpi-server = callPackage ../development/tools/devpi-server {}; ··· 14550 14556 }; 14551 14557 cargo-kcov = callPackage ../development/tools/rust/cargo-kcov { }; 14552 14558 cargo-graph = callPackage ../development/tools/rust/cargo-graph { }; 14559 + cargo-hack = callPackage ../development/tools/rust/cargo-hack { }; 14553 14560 cargo-license = callPackage ../development/tools/rust/cargo-license { }; 14554 14561 cargo-llvm-lines = callPackage ../development/tools/rust/cargo-llvm-lines { }; 14555 14562 cargo-outdated = callPackage ../development/tools/rust/cargo-outdated { ··· 15824 15831 }; 15825 15832 15826 15833 bazel_5 = callPackage ../development/tools/build-managers/bazel/bazel_5 { 15827 - inherit (darwin) cctools; 15834 + inherit (darwin) cctools sigtool; 15828 15835 inherit (darwin.apple_sdk.frameworks) CoreFoundation CoreServices Foundation; 15829 15836 buildJdk = jdk11_headless; 15830 15837 runJdk = jdk11_headless; ··· 16816 16823 modd = callPackage ../development/tools/modd { }; 16817 16824 16818 16825 mold = callPackage ../development/tools/mold { 16819 - stdenv = llvmPackages_latest.stdenv; 16826 + inherit (llvmPackages) stdenv; 16820 16827 }; 16821 16828 16822 16829 msgpack-tools = callPackage ../development/tools/msgpack-tools { }; ··· 18251 18258 }; 18252 18259 18253 18260 freetype = callPackage ../development/libraries/freetype { }; 18261 + 18262 + freexl = callPackage ../development/libraries/freexl { }; 18254 18263 18255 18264 frei0r = callPackage ../development/libraries/frei0r { }; 18256 18265 ··· 20531 20540 20532 20541 lirc = callPackage ../development/libraries/lirc { }; 20533 20542 20534 - liquid-dsp = callPackage ../development/libraries/liquid-dsp { }; 20543 + liquid-dsp = callPackage ../development/libraries/liquid-dsp { inherit (darwin) cctools; }; 20535 20544 20536 20545 liquidfun = callPackage ../development/libraries/liquidfun { }; 20537 20546 ··· 21772 21781 21773 21782 spaceship-prompt = callPackage ../shells/zsh/spaceship-prompt {}; 21774 21783 21775 - spatialite_tools = callPackage ../development/libraries/spatialite-tools { }; 21776 - 21777 21784 spdk = callPackage ../development/libraries/spdk { }; 21778 21785 21779 21786 speechd = callPackage ../development/libraries/speechd { }; ··· 26402 26409 saga = libsForQt5.callPackage ../applications/gis/saga { 26403 26410 inherit (darwin.apple_sdk.frameworks) Cocoa; 26404 26411 }; 26412 + 26413 + spatialite_tools = callPackage ../applications/gis/spatialite-tools { }; 26405 26414 26406 26415 udig = callPackage ../applications/gis/udig { }; 26407 26416
+1 -1
pkgs/top-level/java-packages.nix
··· 127 127 inherit openjdk15-bootstrap; 128 128 }); 129 129 130 - openjdk17-bootstrap = mkBootstrap adoptopenjdk-16 130 + openjdk17-bootstrap = mkBootstrap adoptopenjdk-17 131 131 ../development/compilers/openjdk/16.nix 132 132 (bootstrapArgs // { 133 133 inherit openjdk16-bootstrap;
+4
pkgs/top-level/ocaml-packages.nix
··· 520 520 521 521 happy-eyeballs = callPackage ../development/ocaml-modules/happy-eyeballs { }; 522 522 523 + happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { }; 524 + 525 + happy-eyeballs-mirage = callPackage ../development/ocaml-modules/happy-eyeballs/mirage.nix { }; 526 + 523 527 hashcons = callPackage ../development/ocaml-modules/hashcons { }; 524 528 525 529 herelib = callPackage ../development/ocaml-modules/herelib { };
+4 -1
pkgs/top-level/python-packages.nix
··· 119 119 pythonCatchConflictsHook 120 120 pythonImportsCheckHook 121 121 pythonNamespacesHook 122 + pythonOutputDistHook 122 123 pythonRecompileBytecodeHook 123 124 pythonRelaxDepsHook 124 125 pythonRemoveBinBytecodeHook ··· 5712 5713 5713 5714 minio = callPackage ../development/python-modules/minio { }; 5714 5715 5715 - miniupnpc = callPackage ../development/python-modules/miniupnpc { }; 5716 + miniupnpc = callPackage ../development/python-modules/miniupnpc { 5717 + inherit (pkgs.darwin) cctools; 5718 + }; 5716 5719 5717 5720 misaka = callPackage ../development/python-modules/misaka { }; 5718 5721