diff --git a/.github/ISSUE_TEMPLATE/missing_documentation.md b/.github/ISSUE_TEMPLATE/missing_documentation.md
index 81c05af09c9b..13e069617747 100644
--- a/.github/ISSUE_TEMPLATE/missing_documentation.md
+++ b/.github/ISSUE_TEMPLATE/missing_documentation.md
@@ -1,6 +1,6 @@
---
name: Missing or incorrect documentation
-about:
+about: Help us improve the Nixpkgs and NixOS reference manuals
title: ''
labels: '9.needs: documentation'
assignees: ''
diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix
index 584a946e92cc..9b1397a7915a 100644
--- a/lib/tests/misc.nix
+++ b/lib/tests/misc.nix
@@ -1206,4 +1206,57 @@ runTests {
expr = strings.levenshteinAtMost 3 "hello" "Holla";
expected = true;
};
+
+ testTypeDescriptionInt = {
+ expr = (with types; int).description;
+ expected = "signed integer";
+ };
+ testTypeDescriptionListOfInt = {
+ expr = (with types; listOf int).description;
+ expected = "list of signed integer";
+ };
+ testTypeDescriptionListOfListOfInt = {
+ expr = (with types; listOf (listOf int)).description;
+ expected = "list of list of signed integer";
+ };
+ testTypeDescriptionListOfEitherStrOrBool = {
+ expr = (with types; listOf (either str bool)).description;
+ expected = "list of (string or boolean)";
+ };
+ testTypeDescriptionEitherListOfStrOrBool = {
+ expr = (with types; either (listOf bool) str).description;
+ expected = "(list of boolean) or string";
+ };
+ testTypeDescriptionEitherStrOrListOfBool = {
+ expr = (with types; either str (listOf bool)).description;
+ expected = "string or list of boolean";
+ };
+ testTypeDescriptionOneOfListOfStrOrBool = {
+ expr = (with types; oneOf [ (listOf bool) str ]).description;
+ expected = "(list of boolean) or string";
+ };
+ testTypeDescriptionOneOfListOfStrOrBoolOrNumber = {
+ expr = (with types; oneOf [ (listOf bool) str number ]).description;
+ expected = "(list of boolean) or string or signed integer or floating point number";
+ };
+ testTypeDescriptionEitherListOfBoolOrEitherStringOrNumber = {
+ expr = (with types; either (listOf bool) (either str number)).description;
+ expected = "(list of boolean) or string or signed integer or floating point number";
+ };
+ testTypeDescriptionEitherEitherListOfBoolOrStringOrNumber = {
+ expr = (with types; either (either (listOf bool) str) number).description;
+ expected = "(list of boolean) or string or signed integer or floating point number";
+ };
+ testTypeDescriptionEitherNullOrBoolOrString = {
+ expr = (with types; either (nullOr bool) str).description;
+ expected = "null or boolean or string";
+ };
+ testTypeDescriptionEitherListOfEitherBoolOrStrOrInt = {
+ expr = (with types; either (listOf (either bool str)) int).description;
+ expected = "(list of (boolean or string)) or signed integer";
+ };
+ testTypeDescriptionEitherIntOrListOrEitherBoolOrStr = {
+ expr = (with types; either int (listOf (either bool str))).description;
+ expected = "signed integer or list of (boolean or string)";
+ };
}
diff --git a/lib/types.nix b/lib/types.nix
index f235e3419926..3750ba965558 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -113,6 +113,12 @@ rec {
name
, # Description of the type, defined recursively by embedding the wrapped type if any.
description ? null
+ # A hint for whether or not this description needs parentheses. Possible values:
+ # - "noun": a simple noun phrase such as "positive integer"
+ # - "conjunction": a phrase with a potentially ambiguous "or" connective.
+ # - "composite": a phrase with an "of" connective
+ # See the `optionDescriptionPhrase` function.
+ , descriptionClass ? null
, # Function applied to each definition that should return true if
# its type-correct, false otherwise.
check ? (x: true)
@@ -158,10 +164,36 @@ rec {
nestedTypes ? {}
}:
{ _type = "option-type";
- inherit name check merge emptyValue getSubOptions getSubModules substSubModules typeMerge functor deprecationMessage nestedTypes;
+ inherit
+ name check merge emptyValue getSubOptions getSubModules substSubModules
+ typeMerge functor deprecationMessage nestedTypes descriptionClass;
description = if description == null then name else description;
};
+ # optionDescriptionPhrase :: (str -> bool) -> optionType -> str
+ #
+ # Helper function for producing unambiguous but readable natural language
+ # descriptions of types.
+ #
+ # Parameters
+ #
+ # optionDescriptionPhase unparenthesize optionType
+ #
+ # `unparenthesize`: A function from descriptionClass string to boolean.
+ # It must return true when the class of phrase will fit unambiguously into
+ # the description of the caller.
+ #
+ # `optionType`: The option type to parenthesize or not.
+ # The option whose description we're returning.
+ #
+ # Return value
+ #
+ # The description of the `optionType`, with parentheses if there may be an
+ # ambiguity.
+ optionDescriptionPhrase = unparenthesize: t:
+ if unparenthesize (t.descriptionClass or null)
+ then t.description
+ else "(${t.description})";
# When adding new types don't forget to document them in
# nixos/doc/manual/development/option-types.xml!
@@ -170,6 +202,7 @@ rec {
raw = mkOptionType rec {
name = "raw";
description = "raw value";
+ descriptionClass = "noun";
check = value: true;
merge = mergeOneOption;
};
@@ -177,6 +210,7 @@ rec {
anything = mkOptionType {
name = "anything";
description = "anything";
+ descriptionClass = "noun";
check = value: true;
merge = loc: defs:
let
@@ -216,12 +250,14 @@ rec {
};
unspecified = mkOptionType {
- name = "unspecified";
+ name = "unspecified value";
+ descriptionClass = "noun";
};
bool = mkOptionType {
name = "bool";
description = "boolean";
+ descriptionClass = "noun";
check = isBool;
merge = mergeEqualOption;
};
@@ -229,6 +265,7 @@ rec {
int = mkOptionType {
name = "int";
description = "signed integer";
+ descriptionClass = "noun";
check = isInt;
merge = mergeEqualOption;
};
@@ -294,6 +331,7 @@ rec {
float = mkOptionType {
name = "float";
description = "floating point number";
+ descriptionClass = "noun";
check = isFloat;
merge = mergeEqualOption;
};
@@ -325,6 +363,7 @@ rec {
str = mkOptionType {
name = "str";
description = "string";
+ descriptionClass = "noun";
check = isString;
merge = mergeEqualOption;
};
@@ -332,6 +371,7 @@ rec {
nonEmptyStr = mkOptionType {
name = "nonEmptyStr";
description = "non-empty string";
+ descriptionClass = "noun";
check = x: str.check x && builtins.match "[ \t\n]*" x == null;
inherit (str) merge;
};
@@ -344,6 +384,7 @@ rec {
mkOptionType {
name = "singleLineStr";
description = "(optionally newline-terminated) single-line string";
+ descriptionClass = "noun";
inherit check;
merge = loc: defs:
lib.removeSuffix "\n" (merge loc defs);
@@ -352,6 +393,7 @@ rec {
strMatching = pattern: mkOptionType {
name = "strMatching ${escapeNixString pattern}";
description = "string matching the pattern ${pattern}";
+ descriptionClass = "noun";
check = x: str.check x && builtins.match pattern x != null;
inherit (str) merge;
};
@@ -364,6 +406,7 @@ rec {
then "Concatenated string" # for types.string.
else "strings concatenated with ${builtins.toJSON sep}"
;
+ descriptionClass = "noun";
check = isString;
merge = loc: defs: concatStringsSep sep (getValues defs);
functor = (defaultFunctor name) // {
@@ -387,7 +430,7 @@ rec {
passwdEntry = entryType: addCheck entryType (str: !(hasInfix ":" str || hasInfix "\n" str)) // {
name = "passwdEntry ${entryType.name}";
- description = "${entryType.description}, not containing newlines or colons";
+ description = "${optionDescriptionPhrase (class: class == "noun") entryType}, not containing newlines or colons";
};
attrs = mkOptionType {
@@ -407,6 +450,7 @@ rec {
# ("/nix/store/hash-foo"). These get a context added to them using builtins.storePath.
package = mkOptionType {
name = "package";
+ descriptionClass = "noun";
check = x: isDerivation x || isStorePath x;
merge = loc: defs:
let res = mergeOneOption loc defs;
@@ -427,7 +471,8 @@ rec {
listOf = elemType: mkOptionType rec {
name = "listOf";
- description = "list of ${elemType.description}";
+ description = "list of ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}";
+ descriptionClass = "composite";
check = isList;
merge = loc: defs:
map (x: x.value) (filter (x: x ? value) (concatLists (imap1 (n: def:
@@ -450,13 +495,14 @@ rec {
nonEmptyListOf = elemType:
let list = addCheck (types.listOf elemType) (l: l != []);
in list // {
- description = "non-empty " + list.description;
+ description = "non-empty ${optionDescriptionPhrase (class: class == "noun") list}";
emptyValue = { }; # no .value attr, meaning unset
};
attrsOf = elemType: mkOptionType rec {
name = "attrsOf";
- description = "attribute set of ${elemType.description}";
+ description = "attribute set of ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}";
+ descriptionClass = "composite";
check = isAttrs;
merge = loc: defs:
mapAttrs (n: v: v.value) (filterAttrs (n: v: v ? value) (zipAttrsWith (name: defs:
@@ -479,7 +525,8 @@ rec {
# error that it's not defined. Use only if conditional definitions don't make sense.
lazyAttrsOf = elemType: mkOptionType rec {
name = "lazyAttrsOf";
- description = "lazy attribute set of ${elemType.description}";
+ description = "lazy attribute set of ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}";
+ descriptionClass = "composite";
check = isAttrs;
merge = loc: defs:
zipAttrsWith (name: defs:
@@ -509,7 +556,7 @@ rec {
# Value of given type but with no merging (i.e. `uniq list`s are not concatenated).
uniq = elemType: mkOptionType rec {
name = "uniq";
- inherit (elemType) description check;
+ inherit (elemType) description descriptionClass check;
merge = mergeOneOption;
emptyValue = elemType.emptyValue;
getSubOptions = elemType.getSubOptions;
@@ -521,7 +568,7 @@ rec {
unique = { message }: type: mkOptionType rec {
name = "unique";
- inherit (type) description check;
+ inherit (type) description descriptionClass check;
merge = mergeUniqueOption { inherit message; };
emptyValue = type.emptyValue;
getSubOptions = type.getSubOptions;
@@ -534,7 +581,8 @@ rec {
# Null or value of ...
nullOr = elemType: mkOptionType rec {
name = "nullOr";
- description = "null or ${elemType.description}";
+ description = "null or ${optionDescriptionPhrase (class: class == "noun" || class == "conjunction") elemType}";
+ descriptionClass = "conjunction";
check = x: x == null || elemType.check x;
merge = loc: defs:
let nrNulls = count (def: def.value == null) defs; in
@@ -552,7 +600,8 @@ rec {
functionTo = elemType: mkOptionType {
name = "functionTo";
- description = "function that evaluates to a(n) ${elemType.description}";
+ description = "function that evaluates to a(n) ${optionDescriptionPhrase (class: class == "noun" || class == "composite") elemType}";
+ descriptionClass = "composite";
check = isFunction;
merge = loc: defs:
fnArgs: (mergeDefinitions (loc ++ [ "[function body]" ]) elemType (map (fn: { inherit (fn) file; value = fn.value fnArgs; }) defs)).mergedValue;
@@ -578,6 +627,7 @@ rec {
deferredModuleWith = attrs@{ staticModules ? [] }: mkOptionType {
name = "deferredModule";
description = "module";
+ descriptionClass = "noun";
check = x: isAttrs x || isFunction x || path.check x;
merge = loc: defs: {
imports = staticModules ++ map (def: lib.setDefaultModuleLocation "${def.file}, via option ${showOption loc}" def.value) defs;
@@ -603,6 +653,7 @@ rec {
optionType = mkOptionType {
name = "optionType";
description = "optionType";
+ descriptionClass = "noun";
check = value: value._type or null == "option-type";
merge = loc: defs:
if length defs == 1
@@ -749,6 +800,10 @@ rec {
"value ${show (builtins.head values)} (singular enum)"
else
"one of ${concatMapStringsSep ", " show values}";
+ descriptionClass =
+ if builtins.length values < 2
+ then "noun"
+ else "conjunction";
check = flip elem values;
merge = mergeEqualOption;
functor = (defaultFunctor name) // { payload = values; binOp = a: b: unique (a ++ b); };
@@ -757,7 +812,8 @@ rec {
# Either value of type `t1` or `t2`.
either = t1: t2: mkOptionType rec {
name = "either";
- description = "${t1.description} or ${t2.description}";
+ description = "${optionDescriptionPhrase (class: class == "noun" || class == "conjunction") t1} or ${optionDescriptionPhrase (class: class == "noun" || class == "conjunction" || class == "composite") t2}";
+ descriptionClass = "conjunction";
check = x: t1.check x || t2.check x;
merge = loc: defs:
let
@@ -795,7 +851,7 @@ rec {
coercedType.description})";
mkOptionType rec {
name = "coercedTo";
- description = "${finalType.description} or ${coercedType.description} convertible to it";
+ description = "${optionDescriptionPhrase (class: class == "noun") finalType} or ${optionDescriptionPhrase (class: class == "noun") coercedType} convertible to it";
check = x: (coercedType.check x && finalType.check (coerceFunc x)) || finalType.check x;
merge = loc: defs:
let
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 409405868e1d..3bef0191f498 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -15369,14 +15369,19 @@
githubId = 31394095;
};
cafkafk = {
- email = "cafkafk@cafkafk.com";
+ email = "christina@cafkafk.com";
matrix = "@cafkafk:matrix.cafkafk.com";
name = "Christina Sørensen";
github = "cafkafk";
githubId = 89321978;
- keys = [{
- fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8";
- }];
+ keys = [
+ {
+ fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8";
+ }
+ {
+ fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED";
+ }
+ ];
};
rb = {
email = "maintainers@cloudposse.com";
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
index d721fb5dd83b..6c4bc01cc16b 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
@@ -484,6 +484,14 @@
services.datadog-agent module.
+
+
+ lemmy module option
+ services.lemmy.settings.database.createLocally
+ moved to
+ services.lemmy.database.createLocally.
+
+
virtlyst package and services.virtlyst
diff --git a/nixos/doc/manual/release-notes/rl-2211.section.md b/nixos/doc/manual/release-notes/rl-2211.section.md
index 53f26c4ccc21..720603ef1ad8 100644
--- a/nixos/doc/manual/release-notes/rl-2211.section.md
+++ b/nixos/doc/manual/release-notes/rl-2211.section.md
@@ -166,6 +166,9 @@ Available as [services.patroni](options.html#opt-services.patroni.enable).
- 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.
+- lemmy module option `services.lemmy.settings.database.createLocally`
+ moved to `services.lemmy.database.createLocally`.
+
- virtlyst package and `services.virtlyst` module removed, due to lack of maintainers.
- The `services.graphite.api` and `services.graphite.beacon` NixOS options, and
diff --git a/nixos/modules/services/hardware/usbrelayd.nix b/nixos/modules/services/hardware/usbrelayd.nix
index d45edb149c01..01d3a5ba8bee 100644
--- a/nixos/modules/services/hardware/usbrelayd.nix
+++ b/nixos/modules/services/hardware/usbrelayd.nix
@@ -34,10 +34,6 @@ in
services.udev.packages = [ pkgs.usbrelayd ];
systemd.packages = [ pkgs.usbrelayd ];
- users.users.usbrelay = {
- isSystemUser = true;
- group = "usbrelay";
- };
users.groups.usbrelay = { };
};
diff --git a/nixos/modules/services/web-apps/lemmy.nix b/nixos/modules/services/web-apps/lemmy.nix
index 7f619489893e..925156e7c4ab 100644
--- a/nixos/modules/services/web-apps/lemmy.nix
+++ b/nixos/modules/services/web-apps/lemmy.nix
@@ -28,6 +28,8 @@ in
caddy.enable = mkEnableOption (lib.mdDoc "exposing lemmy with the caddy reverse proxy");
+ database.createLocally = mkEnableOption (lib.mdDoc "creation of database on the instance");
+
settings = mkOption {
default = { };
description = lib.mdDoc "Lemmy configuration";
@@ -63,9 +65,6 @@ in
description = lib.mdDoc "The difficultly of the captcha to solve.";
};
};
-
- options.database.createLocally = mkEnableOption (lib.mdDoc "creation of database on the instance");
-
};
};
@@ -142,7 +141,7 @@ in
};
assertions = [{
- assertion = cfg.settings.database.createLocally -> localPostgres;
+ assertion = cfg.database.createLocally -> localPostgres;
message = "if you want to create the database locally, you need to use a local database";
}];
@@ -163,9 +162,9 @@ in
wantedBy = [ "multi-user.target" ];
- after = [ "pict-rs.service" ] ++ lib.optionals cfg.settings.database.createLocally [ "lemmy-postgresql.service" ];
+ after = [ "pict-rs.service" ] ++ lib.optionals cfg.database.createLocally [ "lemmy-postgresql.service" ];
- requires = lib.optionals cfg.settings.database.createLocally [ "lemmy-postgresql.service" ];
+ requires = lib.optionals cfg.database.createLocally [ "lemmy-postgresql.service" ];
serviceConfig = {
DynamicUser = true;
@@ -203,7 +202,7 @@ in
};
};
- systemd.services.lemmy-postgresql = mkIf cfg.settings.database.createLocally {
+ systemd.services.lemmy-postgresql = mkIf cfg.database.createLocally {
description = "Lemmy postgresql db";
after = [ "postgresql.service" ];
partOf = [ "lemmy.service" ];
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index bcdc88ff63df..a3bff27626d8 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -121,7 +121,7 @@ let
"final.target"
"kexec.target"
"systemd-kexec.service"
- ] ++ lib.optional (cfg.package.withUtmp or true) "systemd-update-utmp.service" ++ [
+ ] ++ lib.optional cfg.package.withUtmp "systemd-update-utmp.service" ++ [
# Password entry.
"systemd-ask-password-console.path"
diff --git a/nixos/tests/lemmy.nix b/nixos/tests/lemmy.nix
index a317b4cf15ba..fb64daa80e64 100644
--- a/nixos/tests/lemmy.nix
+++ b/nixos/tests/lemmy.nix
@@ -15,10 +15,10 @@ in
services.lemmy = {
enable = true;
ui.port = uiPort;
+ database.createLocally = true;
settings = {
hostname = "http://${lemmyNodeName}";
port = backendPort;
- database.createLocally = true;
# Without setup, the /feeds/* and /nodeinfo/* API endpoints won't return 200
setup = {
admin_username = "mightyiam";
diff --git a/pkgs/applications/audio/pyradio/default.nix b/pkgs/applications/audio/pyradio/default.nix
index 6e096c2bf3d4..ba9320037e46 100644
--- a/pkgs/applications/audio/pyradio/default.nix
+++ b/pkgs/applications/audio/pyradio/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
pname = "pyradio";
- version = "0.8.9.26";
+ version = "0.8.9.27";
src = fetchFromGitHub {
owner = "coderholic";
repo = pname;
rev = "refs/tags/${version}";
- sha256 = "sha256-RuQAbmzB8s+YmJLSbzJTQtpiYLr1oFtrxKF8P+MlHeU=";
+ sha256 = "sha256-KqSpyDiRhp7DdbFsPor+munMQg+0vv0qF2VI3gkR04Y=";
};
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/applications/editors/cudatext/default.nix b/pkgs/applications/editors/cudatext/default.nix
index ecf8b4c2c4fb..bed21ea5c3af 100644
--- a/pkgs/applications/editors/cudatext/default.nix
+++ b/pkgs/applications/editors/cudatext/default.nix
@@ -38,13 +38,13 @@ let
in
stdenv.mkDerivation rec {
pname = "cudatext";
- version = "1.170.5";
+ version = "1.171.0";
src = fetchFromGitHub {
owner = "Alexey-T";
repo = "CudaText";
rev = version;
- hash = "sha256-B7t8Vg318ZMcodYEV/DpKEer4AsmAonHbE7cbK34kp0=";
+ hash = "sha256-+NTxZ5UkmaFDcTYliNi/5c8xGztVu6P8C7Ga99MHSFM=";
};
postPatch = ''
diff --git a/pkgs/applications/editors/cudatext/deps.json b/pkgs/applications/editors/cudatext/deps.json
index c8e95a7f17e9..529c66125e87 100644
--- a/pkgs/applications/editors/cudatext/deps.json
+++ b/pkgs/applications/editors/cudatext/deps.json
@@ -11,18 +11,18 @@
},
"ATFlatControls": {
"owner": "Alexey-T",
- "rev": "2022.09.03",
- "hash": "sha256-YxGCV6oIWZ0a7rRyCq1YjOfyO17mHcxJXgBJ2esvm1U="
+ "rev": "2022.09.18",
+ "hash": "sha256-4d27eW4gpJHwGlRZ4iPzuKIw/o/J4utxXbEhglk31Bw="
},
"ATSynEdit": {
"owner": "Alexey-T",
- "rev": "2022.09.11",
- "hash": "sha256-lzGOcYRfaHernLGMTOe8BazpMYa41p42bjjNEmuxU/c="
+ "rev": "2022.09.18",
+ "hash": "sha256-HjW4V7MctQoHbDYIlMv7VS0nS7FFG6Qir0sCju+isI0="
},
"ATSynEdit_Cmp": {
"owner": "Alexey-T",
- "rev": "2022.09.01",
- "hash": "sha256-Xnh6hWzy4lTDxlNvEOsGl2YalzKgt51bDrUcMVOvtTg="
+ "rev": "2022.09.18",
+ "hash": "sha256-yIbIRo4hpwbCdH+3fIhjnQPtdvuFmfJSqloKjWqKEuY="
},
"EControl": {
"owner": "Alexey-T",
@@ -41,8 +41,8 @@
},
"Emmet-Pascal": {
"owner": "Alexey-T",
- "rev": "2022.08.28",
- "hash": "sha256-u8+qUagpy2tKppkjTrEVvXAHQkF8AGDDNtWCNJHnKbs="
+ "rev": "2022.09.18",
+ "hash": "sha256-Kutl4Jh/+KptGbqakzPJnIYlFtytXVlzKWulKt4Z+/g="
},
"CudaText-lexers": {
"owner": "Alexey-T",
diff --git a/pkgs/applications/editors/rstudio/clang-location.patch b/pkgs/applications/editors/rstudio/clang-location.patch
index 8e4a7e3d84c2..ea82678d1181 100644
--- a/pkgs/applications/editors/rstudio/clang-location.patch
+++ b/pkgs/applications/editors/rstudio/clang-location.patch
@@ -1,8 +1,6 @@
-diff --git a/src/cpp/core/libclang/LibClang.cpp b/src/cpp/core/libclang/LibClang.cpp
-index 1186f3a..58e8cc7 100644
--- a/src/cpp/core/libclang/LibClang.cpp
+++ b/src/cpp/core/libclang/LibClang.cpp
-@@ -58,7 +58,7 @@ std::vector defaultCompileArgs(LibraryVersion version)
+@@ -62,7 +62,7 @@
// we need to add in the associated libclang headers as
// they are not discovered / used by default during compilation
@@ -11,7 +9,7 @@ index 1186f3a..58e8cc7 100644
boost::format fmt("%1%/lib/clang/%2%/include");
fmt % llvmPath.getAbsolutePath() % version.asString();
std::string includePath = fmt.str();
-@@ -70,46 +70,7 @@ std::vector defaultCompileArgs(LibraryVersion version)
+@@ -74,47 +74,7 @@
std::vector systemClangVersions()
{
@@ -55,7 +53,9 @@ index 1186f3a..58e8cc7 100644
- }
-#endif
-
-+ std::vector clangVersions = { "@libclang.so@" };
- return clangVersions;
+- return clangVersions;
++ return std::vector { "@libclang.so@" };
}
+
+
diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix
index 9a362fec65be..50f69300aa04 100644
--- a/pkgs/applications/editors/rstudio/default.nix
+++ b/pkgs/applications/editors/rstudio/default.nix
@@ -39,17 +39,17 @@
let
pname = "RStudio";
- version = "2022.02.3+492";
+ version = "2022.07.1+554";
RSTUDIO_VERSION_MAJOR = "2022";
- RSTUDIO_VERSION_MINOR = "02";
- RSTUDIO_VERSION_PATCH = "3";
- RSTUDIO_VERSION_SUFFIX = "+492";
+ RSTUDIO_VERSION_MINOR = "07";
+ RSTUDIO_VERSION_PATCH = "1";
+ RSTUDIO_VERSION_SUFFIX = "+554";
src = fetchFromGitHub {
owner = "rstudio";
repo = "rstudio";
rev = "v${version}";
- sha256 = "1pgbk5rpy47h9ihdrplbfhfc49hrc6242j9099bclq7rqif049wi";
+ sha256 = "0rmdqxizxqg2vgr3lv066cjmlpjrxjlgi0m97wbh6iyhkfm2rrj1";
};
mathJaxSrc = fetchurl {
@@ -129,6 +129,8 @@ in
./use-system-node.patch
./fix-resources-path.patch
./pandoc-nix-path.patch
+ ./remove-quarto-from-generator.patch
+ ./do-not-install-pandoc.patch
];
postPatch = ''
@@ -196,7 +198,6 @@ in
done
rm -r $out/lib/rstudio/{INSTALL,COPYING,NOTICE,README.md,SOURCE,VERSION}
- rm -r $out/lib/rstudio/bin/{pandoc/pandoc,pandoc}
'';
meta = with lib; {
diff --git a/pkgs/applications/editors/rstudio/do-not-install-pandoc.patch b/pkgs/applications/editors/rstudio/do-not-install-pandoc.patch
new file mode 100644
index 000000000000..25bfb2b1e8f4
--- /dev/null
+++ b/pkgs/applications/editors/rstudio/do-not-install-pandoc.patch
@@ -0,0 +1,13 @@
+--- a/src/cpp/session/CMakeLists.txt
++++ b/src/cpp/session/CMakeLists.txt
+@@ -60,8 +60,7 @@
+
+ # validate our dependencies exist
+ foreach(VAR RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR
+- RSTUDIO_DEPENDENCIES_MATHJAX_DIR
+- RSTUDIO_DEPENDENCIES_PANDOC_DIR)
++ RSTUDIO_DEPENDENCIES_MATHJAX_DIR)
+
+ # validate existence
+ if(NOT EXISTS "${${VAR}}")
+
diff --git a/pkgs/applications/editors/rstudio/remove-quarto-from-generator.patch b/pkgs/applications/editors/rstudio/remove-quarto-from-generator.patch
new file mode 100644
index 000000000000..1c28bbada6da
--- /dev/null
+++ b/pkgs/applications/editors/rstudio/remove-quarto-from-generator.patch
@@ -0,0 +1,32 @@
+--- a/src/cpp/session/CMakeLists.txt
++++ b/src/cpp/session/CMakeLists.txt
+@@ -43,12 +43,6 @@
+ set(RSTUDIO_DEPENDENCIES_MATHJAX_DIR "${RSTUDIO_DEPENDENCIES_DIR}/mathjax-27")
+ endif()
+
+- if(EXISTS "${RSTUDIO_TOOLS_ROOT}/quarto")
+- set(RSTUDIO_DEPENDENCIES_QUARTO_DIR "${RSTUDIO_TOOLS_ROOT}/quarto")
+- else()
+- set(RSTUDIO_DEPENDENCIES_QUARTO_DIR "${RSTUDIO_DEPENDENCIES_DIR}/quarto")
+- endif()
+-
+ endif()
+
+
+@@ -67,14 +61,7 @@
+ # validate our dependencies exist
+ foreach(VAR RSTUDIO_DEPENDENCIES_DICTIONARIES_DIR
+ RSTUDIO_DEPENDENCIES_MATHJAX_DIR
+- RSTUDIO_DEPENDENCIES_PANDOC_DIR
+- RSTUDIO_DEPENDENCIES_QUARTO_DIR)
+-
+-
+- # skip quarto if not enabled
+- if("${VAR}" STREQUAL "RSTUDIO_DEPENDENCIES_QUARTO_DIR" AND NOT QUARTO_ENABLED)
+- continue()
+- endif()
++ RSTUDIO_DEPENDENCIES_PANDOC_DIR)
+
+ # validate existence
+ if(NOT EXISTS "${${VAR}}")
+
diff --git a/pkgs/applications/editors/rstudio/use-system-node.patch b/pkgs/applications/editors/rstudio/use-system-node.patch
index b78adbaee263..248f4fe86e21 100644
--- a/pkgs/applications/editors/rstudio/use-system-node.patch
+++ b/pkgs/applications/editors/rstudio/use-system-node.patch
@@ -1,11 +1,12 @@
--- a/src/gwt/build.xml
+++ b/src/gwt/build.xml
-@@ -84,23 +84,7 @@
+@@ -83,24 +83,7 @@
+ Concatenated acesupport files to 'acesupport.js'
-
-
+
+-
-
--
+-
-
-
-
@@ -21,8 +22,8 @@
- property="node.bin"
- value="/opt/rstudio-tools/dependencies/common/node/${node.version}/bin/node"
- file="/opt/rstudio-tools/dependencies/common/node/${node.version}/bin/node"/>
-+
-
++
+
diff --git a/pkgs/applications/emulators/sameboy/default.nix b/pkgs/applications/emulators/sameboy/default.nix
index c509582f8cdb..26555acb61cb 100644
--- a/pkgs/applications/emulators/sameboy/default.nix
+++ b/pkgs/applications/emulators/sameboy/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sameboy";
- version = "0.15.5";
+ version = "0.15.6";
src = fetchFromGitHub {
owner = "LIJI32";
repo = "SameBoy";
rev = "v${version}";
- sha256 = "sha256-R93ZIc1Ics3diJJDdGUBCEGRDW25YnC1ZY0DyJjpyVM=";
+ sha256 = "sha256-WsZuOKq/Dfk2zgYFXSwZPUuPrJQJ3y3mJHL6s61mTig=";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/spatialite-tools/default.nix b/pkgs/applications/gis/spatialite-tools/default.nix
similarity index 62%
rename from pkgs/development/libraries/spatialite-tools/default.nix
rename to pkgs/applications/gis/spatialite-tools/default.nix
index 265769f872f4..875c33e60f3c 100644
--- a/pkgs/development/libraries/spatialite-tools/default.nix
+++ b/pkgs/applications/gis/spatialite-tools/default.nix
@@ -2,6 +2,7 @@
, stdenv
, fetchurl
, pkg-config
+, freexl
, geos
, expat
, librttopo
@@ -11,6 +12,8 @@
, proj
, readosm
, sqlite
+, testers
+, spatialite_tools
}:
stdenv.mkDerivation rec {
@@ -18,14 +21,15 @@ stdenv.mkDerivation rec {
version = "5.0.1";
src = fetchurl {
- url = "https://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/${pname}-${version}.tar.gz";
- sha256 = "sha256-lgTCBeh/A3eJvFIwLGbM0TccPpjHTo7E4psHUt41Fxw=";
+ url = "https://www.gaia-gis.it/gaia-sins/spatialite-tools-${version}.tar.gz";
+ hash = "sha256-lgTCBeh/A3eJvFIwLGbM0TccPpjHTo7E4psHUt41Fxw=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
expat
+ freexl
geos
librttopo
libspatialite
@@ -36,17 +40,20 @@ stdenv.mkDerivation rec {
sqlite
];
- configureFlags = [ "--disable-freexl" ];
-
enableParallelBuilding = true;
- NIX_LDFLAGS = "-lsqlite3";
+ passthru.tests.version = testers.testVersion {
+ package = spatialite_tools;
+ command = "! spatialite_tool --version";
+ version = "${libspatialite.version}";
+ };
meta = with lib; {
description = "A complete sqlite3-compatible CLI front-end for libspatialite";
homepage = "https://www.gaia-gis.it/fossil/spatialite-tools";
license = with licenses; [ mpl11 gpl2Plus lgpl21Plus ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ dotlambda ];
+ mainProgram = "spatialite_tool";
};
}
diff --git a/pkgs/applications/misc/dbeaver/default.nix b/pkgs/applications/misc/dbeaver/default.nix
index 0e614e85b9cc..32440ad7df19 100644
--- a/pkgs/applications/misc/dbeaver/default.nix
+++ b/pkgs/applications/misc/dbeaver/default.nix
@@ -32,7 +32,7 @@
sha256 = "sha256-T2S5qoOqjqJGf7M4h+IFO+bBER3aNcbxC7CY1fJFqpg=";
};
- mvnSha256 = "KVE+AYYEWN9bjAWop4mpiPq8yU3GdSGqOTmLG4pdflQ=";
+ mvnSha256 = "HdIhENml6W4U+gM7ODxXinbex5o1X4YhWGTct5rpL5c=";
mvnParameters = "-P desktop,all-platforms";
nativeBuildInputs = [
diff --git a/pkgs/applications/misc/grb/default.nix b/pkgs/applications/misc/grb/default.nix
new file mode 100644
index 000000000000..0a3d3dfd83b9
--- /dev/null
+++ b/pkgs/applications/misc/grb/default.nix
@@ -0,0 +1,24 @@
+{ lib, stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ pname = "grb";
+ version = "unstable-2022-07-02";
+
+ src = fetchFromGitHub {
+ owner = "LukeSmithxyz";
+ repo = pname;
+ rev = "35a5353ab147b930c39e1ccd369791cc4c27f0df";
+ sha256 = "sha256-hQ21DXnkBJVCgGXQKDR+DjaDC3RXS2pNmSLDoHvHA4E=";
+ };
+
+ makeFlags = [
+ "PREFIX=${placeholder "out"}"
+ ];
+
+ meta = with lib; {
+ description = "A cli-accessible Greek Bible with the Septuagint, SBL and Apocrypha";
+ homepage = "https://github.com/LukeSmithxyz/grb";
+ license = licenses.publicDomain;
+ maintainers = [ maintainers.cafkafk ];
+ };
+}
diff --git a/pkgs/applications/misc/kjv/default.nix b/pkgs/applications/misc/kjv/default.nix
index ee599fd3b6cc..dca694bf2979 100644
--- a/pkgs/applications/misc/kjv/default.nix
+++ b/pkgs/applications/misc/kjv/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
description = "The Bible, King James Version";
homepage = "https://github.com/bontibon/kjv";
license = licenses.unlicense;
- maintainers = with maintainers; [ jtobin ];
+ maintainers = with maintainers; [ jtobin cafkafk ];
mainProgram = "kjv";
};
}
diff --git a/pkgs/applications/misc/madonctl/default.nix b/pkgs/applications/misc/madonctl/default.nix
index 2a65fc25af2f..141bdac87da7 100644
--- a/pkgs/applications/misc/madonctl/default.nix
+++ b/pkgs/applications/misc/madonctl/default.nix
@@ -1,31 +1,38 @@
-{ lib, buildGoPackage, fetchFromGitHub }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, madonctl }:
-buildGoPackage rec {
+buildGoModule rec {
pname = "madonctl";
- version = "1.1.0";
-
- goPackagePath = "github.com/McKael/madonctl";
+ version = "2.3.2";
src = fetchFromGitHub {
owner = "McKael";
repo = "madonctl";
- rev = "v${version}";
- sha256 = "1dnc1xaafhwhhf5afhb0wc2wbqq0s1r7qzj5k0xzc58my541gadc";
+ rev = "v${version}";
+ sha256 = "sha256-mo185EKjLkiujAKcAFM1XqkXWvcfYbnv+r3dF9ywaf8=";
};
- # How to update:
- # go get -u github.com/McKael/madonctl
- # cd $GOPATH/src/github.com/McKael/madonctl
- # git checkout v
- # go2nix save
+ vendorSha256 = null;
- goDeps = ./deps.nix;
+ nativeBuildInputs = [ installShellFiles ];
+
+ ldflags = [ "-s" "-w" ];
+
+ postInstall = ''
+ installShellCompletion --cmd madonctl \
+ --bash <($out/bin/madonctl completion bash) \
+ --zsh <($out/bin/madonctl completion zsh)
+ '';
+
+ passthru.tests.version = testers.testVersion {
+ package = madonctl;
+ command = "madonctl version";
+ };
meta = with lib; {
description = "CLI for the Mastodon social network API";
homepage = "https://github.com/McKael/madonctl";
license = licenses.mit;
platforms = platforms.unix;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ aaronjheng ];
};
}
diff --git a/pkgs/applications/misc/madonctl/deps.nix b/pkgs/applications/misc/madonctl/deps.nix
deleted file mode 100644
index 9f94bb09ce4e..000000000000
--- a/pkgs/applications/misc/madonctl/deps.nix
+++ /dev/null
@@ -1,228 +0,0 @@
-# This file was generated by https://github.com/kamilchm/go2nix v1.2.0
-[
- {
- goPackagePath = "github.com/McKael/madon";
- fetch = {
- type = "git";
- url = "https://github.com/McKael/madon";
- rev = "e580cd41ac42bbb0b2ea5b3843b3f1f854db357c";
- sha256 = "0jvvfkf3wlzisvcq54xv3jxncx178ks5wxd6cx8k8215437b3hra";
- };
- }
- {
- goPackagePath = "github.com/fsnotify/fsnotify";
- fetch = {
- type = "git";
- url = "https://github.com/fsnotify/fsnotify";
- rev = "4da3e2cfbabc9f751898f250b49f2439785783a1";
- sha256 = "1y2l9jaf99j6gidcfdgq3hifxyiwv4f7awpll80p170ixdbqxvl3";
- };
- }
- {
- goPackagePath = "github.com/ghodss/yaml";
- fetch = {
- type = "git";
- url = "https://github.com/ghodss/yaml";
- rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7";
- sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g";
- };
- }
- {
- goPackagePath = "github.com/gorilla/websocket";
- fetch = {
- type = "git";
- url = "https://github.com/gorilla/websocket";
- rev = "a91eba7f97777409bc2c443f5534d41dd20c5720";
- sha256 = "13cg6wwkk2ddqbm0nh9fpx4mq7f6qym12ch4lvs53n028ycdgw87";
- };
- }
- {
- goPackagePath = "github.com/hashicorp/hcl";
- fetch = {
- type = "git";
- url = "https://github.com/hashicorp/hcl";
- rev = "392dba7d905ed5d04a5794ba89f558b27e2ba1ca";
- sha256 = "1rfm67kma2hpakabf7hxlj196jags4rpjpcirwg4kan4g9b6j0kb";
- };
- }
- {
- goPackagePath = "github.com/kr/text";
- fetch = {
- type = "git";
- url = "https://github.com/kr/text";
- rev = "7cafcd837844e784b526369c9bce262804aebc60";
- sha256 = "0br693pf6vdr1sfvzdz6zxq7hjpdgci0il4wj0v636r8lyy21vsx";
- };
- }
- {
- goPackagePath = "github.com/m0t0k1ch1/gomif";
- fetch = {
- type = "git";
- url = "https://github.com/m0t0k1ch1/gomif";
- rev = "f5864f63e1ed5a138f015cc2cb71a2e99c148d21";
- sha256 = "0djg8chax1g0m02xz84ic19758jzv5m50b7vpwjkpjk3181j5z9k";
- };
- }
- {
- goPackagePath = "github.com/magiconair/properties";
- fetch = {
- type = "git";
- url = "https://github.com/magiconair/properties";
- rev = "51463bfca2576e06c62a8504b5c0f06d61312647";
- sha256 = "0d7hr78y8gg2mrm5z4jjgm2w3awkznz383b7wvyzk3l33jw6i288";
- };
- }
- {
- goPackagePath = "github.com/mattn/go-isatty";
- fetch = {
- type = "git";
- url = "https://github.com/mattn/go-isatty";
- rev = "fc9e8d8ef48496124e79ae0df75490096eccf6fe";
- sha256 = "1r5f9gkavkb1w6sr0qs5kj16706xirl3qnlq3hqpszkw9w27x65a";
- };
- }
- {
- goPackagePath = "github.com/mitchellh/mapstructure";
- fetch = {
- type = "git";
- url = "https://github.com/mitchellh/mapstructure";
- rev = "cc8532a8e9a55ea36402aa21efdf403a60d34096";
- sha256 = "0705c0hq7b993sabnjy65yymvpy9w1j84bg9bjczh5607z16nw86";
- };
- }
- {
- goPackagePath = "github.com/pelletier/go-buffruneio";
- fetch = {
- type = "git";
- url = "https://github.com/pelletier/go-buffruneio";
- rev = "c37440a7cf42ac63b919c752ca73a85067e05992";
- sha256 = "0l83p1gg6g5mmhmxjisrhfimhbm71lwn1r2w7d6siwwqm9q08sd2";
- };
- }
- {
- goPackagePath = "github.com/pelletier/go-toml";
- fetch = {
- type = "git";
- url = "https://github.com/pelletier/go-toml";
- rev = "5c26a6ff6fd178719e15decac1c8196da0d7d6d1";
- sha256 = "0f4l7mq0nb2p2vjfjqx251s6jzkl646n1vw45chykwvv1sbad8nq";
- };
- }
- {
- goPackagePath = "github.com/pkg/errors";
- fetch = {
- type = "git";
- url = "https://github.com/pkg/errors";
- rev = "c605e284fe17294bda444b34710735b29d1a9d90";
- sha256 = "1izjk4msnc6wn1mclg0ypa6i31zfwb1r3032k8q4jfbd57hp0bz6";
- };
- }
- {
- goPackagePath = "github.com/sendgrid/rest";
- fetch = {
- type = "git";
- url = "https://github.com/sendgrid/rest";
- rev = "14de1ac72d9ae5c3c0d7c02164c52ebd3b951a4e";
- sha256 = "0wrggvgnqdmhscim52hvhg77jhksprxp52sc4ipd69kasd32b5dm";
- };
- }
- {
- goPackagePath = "github.com/spf13/afero";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/afero";
- rev = "9be650865eab0c12963d8753212f4f9c66cdcf12";
- sha256 = "12dhh6d07304lsjv7c4p95hkip0hnshqhwivdw39pbypgg0p8y34";
- };
- }
- {
- goPackagePath = "github.com/spf13/cast";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/cast";
- rev = "acbeb36b902d72a7a4c18e8f3241075e7ab763e4";
- sha256 = "0w25s6gjbbwv47b9208hysyqqphd6pib3d2phg24mjy4wigkm050";
- };
- }
- {
- goPackagePath = "github.com/spf13/cobra";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/cobra";
- rev = "ca5710c94eabe15aa1f74490b8e5976dc652e8c6";
- sha256 = "1z5fxh9akwn95av6ra8p6804nhyxjc63m0s6abxi3l424n30b08i";
- };
- }
- {
- goPackagePath = "github.com/spf13/jwalterweatherman";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/jwalterweatherman";
- rev = "8f07c835e5cc1450c082fe3a439cf87b0cbb2d99";
- sha256 = "1dhl6kdbyczhnsgiyc8mcb7kmxd9garx8gy3q2gx5mmv96xxzxx7";
- };
- }
- {
- goPackagePath = "github.com/spf13/pflag";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/pflag";
- rev = "e57e3eeb33f795204c1ca35f56c44f83227c6e66";
- sha256 = "13mhx4i913jil32j295m3a36jzvq1y64xig0naadiz7q9ja011r2";
- };
- }
- {
- goPackagePath = "github.com/spf13/viper";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/viper";
- rev = "0967fc9aceab2ce9da34061253ac10fb99bba5b2";
- sha256 = "016syis0rvccp2indjqi1vnz3wk7c9dhkvkgam0j79sb019kl80f";
- };
- }
- {
- goPackagePath = "golang.org/x/net";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/net";
- rev = "513929065c19401a1c7b76ecd942f9f86a0c061b";
- sha256 = "19ziin0k3n45nccjbk094f61hr198wzqnas93cmcxdja8f8fz27q";
- };
- }
- {
- goPackagePath = "golang.org/x/oauth2";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/oauth2";
- rev = "f047394b6d14284165300fd82dad67edb3a4d7f6";
- sha256 = "1l1a2iz1nmfmzzbjj1h8066prag4jvjqh13iv1jdlh05fgv6769i";
- };
- }
- {
- goPackagePath = "golang.org/x/sys";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/sys";
- rev = "a2e06a18b0d52d8cb2010e04b372a1965d8e3439";
- sha256 = "0m0r2w2qk8jkdk21h52n66g4yqckmzpx3mph73cilkhvdfgwfd21";
- };
- }
- {
- goPackagePath = "golang.org/x/text";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/text";
- rev = "19e51611da83d6be54ddafce4a4af510cb3e9ea4";
- sha256 = "09pcfzx7nrma0gjv93jx57c28farf8m1qm4x07vk5505wlcgvvfl";
- };
- }
- {
- goPackagePath = "gopkg.in/yaml.v2";
- fetch = {
- type = "git";
- url = "https://gopkg.in/yaml.v2";
- rev = "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b";
- sha256 = "1hj2ag9knxflpjibck0n90jrhsrqz7qvad4qnif7jddyapi9bqzl";
- };
- }
-]
diff --git a/pkgs/applications/misc/vul/default.nix b/pkgs/applications/misc/vul/default.nix
index 9acefa939427..21a9e1f12b9e 100644
--- a/pkgs/applications/misc/vul/default.nix
+++ b/pkgs/applications/misc/vul/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "vul";
- version = "unstable-2020-02-15";
+ version = "unstable-2022-07-02";
src = fetchFromGitHub {
owner = "LukeSmithxyz";
repo = pname;
- rev = "f6ebd8f6b6fb8a111e7b59470d6748fcbe71c559";
- sha256 = "aUl4f82sGOWkEvTDNILDszj5hztDRvYpHVovFl4oOCc=";
+ rev = "97efaedb79c9de62b6a19b04649fd8c00b85973f";
+ sha256 = "sha256-NwRUx7WVvexrCdPtckq4Szf5ISy7NVBHX8uAsRtbE+0=";
};
makeFlags = [
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
description = "Latin Vulgate Bible on the Command Line";
homepage = "https://github.com/LukeSmithxyz/vul";
license = licenses.publicDomain;
- maintainers = [ maintainers.j0hax ];
+ maintainers = [ maintainers.j0hax maintainers.cafkafk ];
};
}
diff --git a/pkgs/applications/misc/zine/Cargo.lock.patch b/pkgs/applications/misc/zine/Cargo.lock.patch
deleted file mode 100644
index 5f210a818579..000000000000
--- a/pkgs/applications/misc/zine/Cargo.lock.patch
+++ /dev/null
@@ -1,2722 +0,0 @@
-+++ a/Cargo.lock 2022-08-05 16:01:20.004065609 +0530
-+++ b/Cargo.lock 2022-08-05 16:01:20.004065609 +0530
-@@ -0,0 +1,2719 @@
-+# This file is automatically @generated by Cargo.
-+# It is not intended for manual editing.
-+version = 3
-+
-+[[package]]
-+name = "addr2line"
-+version = "0.17.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
-+dependencies = [
-+ "gimli",
-+]
-+
-+[[package]]
-+name = "adler"
-+version = "1.0.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
-+
-+[[package]]
-+name = "ahash"
-+version = "0.7.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
-+dependencies = [
-+ "getrandom 0.2.7",
-+ "once_cell",
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "aho-corasick"
-+version = "0.7.18"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
-+dependencies = [
-+ "memchr",
-+]
-+
-+[[package]]
-+name = "anyhow"
-+version = "1.0.59"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9"
-+dependencies = [
-+ "backtrace",
-+]
-+
-+[[package]]
-+name = "autocfg"
-+version = "1.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-+
-+[[package]]
-+name = "backtrace"
-+version = "0.3.66"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
-+dependencies = [
-+ "addr2line",
-+ "cc",
-+ "cfg-if 1.0.0",
-+ "libc",
-+ "miniz_oxide",
-+ "object",
-+ "rustc-demangle",
-+]
-+
-+[[package]]
-+name = "base64"
-+version = "0.13.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
-+
-+[[package]]
-+name = "bincode"
-+version = "1.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
-+dependencies = [
-+ "serde",
-+]
-+
-+[[package]]
-+name = "bit-set"
-+version = "0.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
-+dependencies = [
-+ "bit-vec",
-+]
-+
-+[[package]]
-+name = "bit-vec"
-+version = "0.6.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
-+
-+[[package]]
-+name = "bitflags"
-+version = "1.3.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-+
-+[[package]]
-+name = "block-buffer"
-+version = "0.10.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
-+dependencies = [
-+ "generic-array",
-+]
-+
-+[[package]]
-+name = "bstr"
-+version = "0.2.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
-+dependencies = [
-+ "memchr",
-+]
-+
-+[[package]]
-+name = "bumpalo"
-+version = "3.10.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
-+
-+[[package]]
-+name = "byteorder"
-+version = "1.4.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
-+
-+[[package]]
-+name = "bytes"
-+version = "1.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
-+
-+[[package]]
-+name = "cc"
-+version = "1.0.73"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
-+
-+[[package]]
-+name = "cfg-if"
-+version = "0.1.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-+
-+[[package]]
-+name = "cfg-if"
-+version = "1.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-+
-+[[package]]
-+name = "chrono"
-+version = "0.4.20"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0"
-+dependencies = [
-+ "js-sys",
-+ "num-integer",
-+ "num-traits",
-+ "wasm-bindgen",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "chrono-tz"
-+version = "0.6.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
-+dependencies = [
-+ "chrono",
-+ "chrono-tz-build",
-+ "phf 0.11.0",
-+]
-+
-+[[package]]
-+name = "chrono-tz-build"
-+version = "0.0.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
-+dependencies = [
-+ "parse-zoneinfo",
-+ "phf 0.11.0",
-+ "phf_codegen 0.11.0",
-+]
-+
-+[[package]]
-+name = "clap"
-+version = "3.2.16"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9"
-+dependencies = [
-+ "bitflags",
-+ "clap_derive",
-+ "clap_lex",
-+ "indexmap",
-+ "once_cell",
-+ "textwrap",
-+]
-+
-+[[package]]
-+name = "clap_derive"
-+version = "3.2.15"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9ba52acd3b0a5c33aeada5cdaa3267cdc7c594a98731d4268cdc1532f4264cb4"
-+dependencies = [
-+ "heck",
-+ "proc-macro-error",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "clap_lex"
-+version = "0.2.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
-+dependencies = [
-+ "os_str_bytes",
-+]
-+
-+[[package]]
-+name = "convert_case"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
-+
-+[[package]]
-+name = "core-foundation"
-+version = "0.9.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
-+dependencies = [
-+ "core-foundation-sys",
-+ "libc",
-+]
-+
-+[[package]]
-+name = "core-foundation-sys"
-+version = "0.8.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
-+
-+[[package]]
-+name = "cpufeatures"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "crc32fast"
-+version = "1.3.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+]
-+
-+[[package]]
-+name = "crossbeam-channel"
-+version = "0.5.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "crossbeam-utils",
-+]
-+
-+[[package]]
-+name = "crossbeam-deque"
-+version = "0.8.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "crossbeam-epoch",
-+ "crossbeam-utils",
-+]
-+
-+[[package]]
-+name = "crossbeam-epoch"
-+version = "0.9.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
-+dependencies = [
-+ "autocfg",
-+ "cfg-if 1.0.0",
-+ "crossbeam-utils",
-+ "memoffset",
-+ "once_cell",
-+ "scopeguard",
-+]
-+
-+[[package]]
-+name = "crossbeam-utils"
-+version = "0.8.11"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "once_cell",
-+]
-+
-+[[package]]
-+name = "crypto-common"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
-+dependencies = [
-+ "generic-array",
-+ "typenum",
-+]
-+
-+[[package]]
-+name = "cssparser"
-+version = "0.27.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
-+dependencies = [
-+ "cssparser-macros",
-+ "dtoa-short",
-+ "itoa 0.4.8",
-+ "matches",
-+ "phf 0.8.0",
-+ "proc-macro2",
-+ "quote",
-+ "smallvec",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "cssparser-macros"
-+version = "0.6.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
-+dependencies = [
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "derive_more"
-+version = "0.99.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
-+dependencies = [
-+ "convert_case",
-+ "proc-macro2",
-+ "quote",
-+ "rustc_version",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "deunicode"
-+version = "0.4.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
-+
-+[[package]]
-+name = "digest"
-+version = "0.10.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
-+dependencies = [
-+ "block-buffer",
-+ "crypto-common",
-+]
-+
-+[[package]]
-+name = "dtoa"
-+version = "0.4.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
-+
-+[[package]]
-+name = "dtoa-short"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
-+dependencies = [
-+ "dtoa",
-+]
-+
-+[[package]]
-+name = "either"
-+version = "1.7.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
-+
-+[[package]]
-+name = "encoding_rs"
-+version = "0.8.31"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+]
-+
-+[[package]]
-+name = "fancy-regex"
-+version = "0.7.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf"
-+dependencies = [
-+ "bit-set",
-+ "regex",
-+]
-+
-+[[package]]
-+name = "fastrand"
-+version = "1.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
-+dependencies = [
-+ "instant",
-+]
-+
-+[[package]]
-+name = "filetime"
-+version = "0.2.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "libc",
-+ "redox_syscall",
-+ "windows-sys",
-+]
-+
-+[[package]]
-+name = "flate2"
-+version = "1.0.24"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
-+dependencies = [
-+ "crc32fast",
-+ "miniz_oxide",
-+]
-+
-+[[package]]
-+name = "fluent"
-+version = "0.16.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7"
-+dependencies = [
-+ "fluent-bundle",
-+ "unic-langid",
-+]
-+
-+[[package]]
-+name = "fluent-bundle"
-+version = "0.15.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd"
-+dependencies = [
-+ "fluent-langneg",
-+ "fluent-syntax",
-+ "intl-memoizer",
-+ "intl_pluralrules",
-+ "rustc-hash",
-+ "self_cell",
-+ "smallvec",
-+ "unic-langid",
-+]
-+
-+[[package]]
-+name = "fluent-langneg"
-+version = "0.13.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94"
-+dependencies = [
-+ "unic-langid",
-+]
-+
-+[[package]]
-+name = "fluent-syntax"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78"
-+dependencies = [
-+ "thiserror",
-+]
-+
-+[[package]]
-+name = "fnv"
-+version = "1.0.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-+
-+[[package]]
-+name = "foreign-types"
-+version = "0.3.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
-+dependencies = [
-+ "foreign-types-shared",
-+]
-+
-+[[package]]
-+name = "foreign-types-shared"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
-+
-+[[package]]
-+name = "fsevent"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
-+dependencies = [
-+ "bitflags",
-+ "fsevent-sys",
-+]
-+
-+[[package]]
-+name = "fsevent-sys"
-+version = "2.0.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "fuchsia-zircon"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
-+dependencies = [
-+ "bitflags",
-+ "fuchsia-zircon-sys",
-+]
-+
-+[[package]]
-+name = "fuchsia-zircon-sys"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-+
-+[[package]]
-+name = "futf"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
-+dependencies = [
-+ "mac",
-+ "new_debug_unreachable",
-+]
-+
-+[[package]]
-+name = "futures-channel"
-+version = "0.3.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
-+dependencies = [
-+ "futures-core",
-+]
-+
-+[[package]]
-+name = "futures-core"
-+version = "0.3.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
-+
-+[[package]]
-+name = "futures-sink"
-+version = "0.3.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
-+
-+[[package]]
-+name = "futures-task"
-+version = "0.3.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
-+
-+[[package]]
-+name = "futures-util"
-+version = "0.3.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
-+dependencies = [
-+ "futures-core",
-+ "futures-task",
-+ "pin-project-lite",
-+ "pin-utils",
-+]
-+
-+[[package]]
-+name = "fxhash"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
-+dependencies = [
-+ "byteorder",
-+]
-+
-+[[package]]
-+name = "generic-array"
-+version = "0.14.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
-+dependencies = [
-+ "typenum",
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "getopts"
-+version = "0.2.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
-+dependencies = [
-+ "unicode-width",
-+]
-+
-+[[package]]
-+name = "getrandom"
-+version = "0.1.16"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "libc",
-+ "wasi 0.9.0+wasi-snapshot-preview1",
-+]
-+
-+[[package]]
-+name = "getrandom"
-+version = "0.2.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "libc",
-+ "wasi 0.11.0+wasi-snapshot-preview1",
-+]
-+
-+[[package]]
-+name = "gimli"
-+version = "0.26.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
-+
-+[[package]]
-+name = "globset"
-+version = "0.4.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
-+dependencies = [
-+ "aho-corasick",
-+ "bstr",
-+ "fnv",
-+ "log",
-+ "regex",
-+]
-+
-+[[package]]
-+name = "globwalk"
-+version = "0.8.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
-+dependencies = [
-+ "bitflags",
-+ "ignore",
-+ "walkdir",
-+]
-+
-+[[package]]
-+name = "hashbrown"
-+version = "0.12.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-+dependencies = [
-+ "ahash",
-+]
-+
-+[[package]]
-+name = "heck"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
-+
-+[[package]]
-+name = "hermit-abi"
-+version = "0.1.19"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "html5ever"
-+version = "0.25.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
-+dependencies = [
-+ "log",
-+ "mac",
-+ "markup5ever",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "http"
-+version = "0.2.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
-+dependencies = [
-+ "bytes",
-+ "fnv",
-+ "itoa 1.0.3",
-+]
-+
-+[[package]]
-+name = "http-body"
-+version = "0.4.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
-+dependencies = [
-+ "bytes",
-+ "http",
-+ "pin-project-lite",
-+]
-+
-+[[package]]
-+name = "http-range-header"
-+version = "0.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
-+
-+[[package]]
-+name = "httparse"
-+version = "1.7.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
-+
-+[[package]]
-+name = "httpdate"
-+version = "1.0.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
-+
-+[[package]]
-+name = "humansize"
-+version = "1.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026"
-+
-+[[package]]
-+name = "hyper"
-+version = "0.14.20"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
-+dependencies = [
-+ "bytes",
-+ "futures-channel",
-+ "futures-core",
-+ "futures-util",
-+ "http",
-+ "http-body",
-+ "httparse",
-+ "httpdate",
-+ "itoa 1.0.3",
-+ "pin-project-lite",
-+ "socket2",
-+ "tokio",
-+ "tower-service",
-+ "tracing",
-+ "want",
-+]
-+
-+[[package]]
-+name = "hyper-tls"
-+version = "0.5.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
-+dependencies = [
-+ "bytes",
-+ "hyper",
-+ "native-tls",
-+ "tokio",
-+ "tokio-native-tls",
-+]
-+
-+[[package]]
-+name = "ignore"
-+version = "0.4.18"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
-+dependencies = [
-+ "crossbeam-utils",
-+ "globset",
-+ "lazy_static",
-+ "log",
-+ "memchr",
-+ "regex",
-+ "same-file",
-+ "thread_local",
-+ "walkdir",
-+ "winapi-util",
-+]
-+
-+[[package]]
-+name = "include_dir"
-+version = "0.7.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "482a2e29200b7eed25d7fdbd14423326760b7f6658d21a4cf12d55a50713c69f"
-+dependencies = [
-+ "include_dir_macros",
-+]
-+
-+[[package]]
-+name = "include_dir_macros"
-+version = "0.7.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5e074c19deab2501407c91ba1860fa3d6820bfde307db6d8cb851b55a10be89b"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+]
-+
-+[[package]]
-+name = "indexmap"
-+version = "1.9.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
-+dependencies = [
-+ "autocfg",
-+ "hashbrown",
-+]
-+
-+[[package]]
-+name = "inotify"
-+version = "0.7.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
-+dependencies = [
-+ "bitflags",
-+ "inotify-sys",
-+ "libc",
-+]
-+
-+[[package]]
-+name = "inotify-sys"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "instant"
-+version = "0.1.12"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+]
-+
-+[[package]]
-+name = "intl-memoizer"
-+version = "0.5.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f"
-+dependencies = [
-+ "type-map",
-+ "unic-langid",
-+]
-+
-+[[package]]
-+name = "intl_pluralrules"
-+version = "7.0.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b18f988384267d7066cc2be425e6faf352900652c046b6971d2e228d3b1c5ecf"
-+dependencies = [
-+ "tinystr",
-+ "unic-langid",
-+]
-+
-+[[package]]
-+name = "iovec"
-+version = "0.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "itoa"
-+version = "0.4.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
-+
-+[[package]]
-+name = "itoa"
-+version = "1.0.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
-+
-+[[package]]
-+name = "js-sys"
-+version = "0.3.59"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
-+dependencies = [
-+ "wasm-bindgen",
-+]
-+
-+[[package]]
-+name = "kernel32-sys"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
-+dependencies = [
-+ "winapi 0.2.8",
-+ "winapi-build",
-+]
-+
-+[[package]]
-+name = "lazy_static"
-+version = "1.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-+
-+[[package]]
-+name = "lazycell"
-+version = "1.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
-+
-+[[package]]
-+name = "libc"
-+version = "0.2.127"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b"
-+
-+[[package]]
-+name = "line-wrap"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
-+dependencies = [
-+ "safemem",
-+]
-+
-+[[package]]
-+name = "linked-hash-map"
-+version = "0.5.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
-+
-+[[package]]
-+name = "lock_api"
-+version = "0.4.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
-+dependencies = [
-+ "autocfg",
-+ "scopeguard",
-+]
-+
-+[[package]]
-+name = "log"
-+version = "0.4.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+]
-+
-+[[package]]
-+name = "lol_html"
-+version = "0.3.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "09ff2adf9c54f4de7d66a9177ea7d27d5b8108503bb03d5b719869b8f4bc2ab2"
-+dependencies = [
-+ "bitflags",
-+ "cfg-if 1.0.0",
-+ "cssparser",
-+ "encoding_rs",
-+ "hashbrown",
-+ "lazy_static",
-+ "lazycell",
-+ "memchr",
-+ "safemem",
-+ "selectors",
-+ "thiserror",
-+]
-+
-+[[package]]
-+name = "mac"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
-+
-+[[package]]
-+name = "markup5ever"
-+version = "0.10.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
-+dependencies = [
-+ "log",
-+ "phf 0.8.0",
-+ "phf_codegen 0.8.0",
-+ "string_cache",
-+ "string_cache_codegen",
-+ "tendril",
-+]
-+
-+[[package]]
-+name = "markup5ever_rcdom"
-+version = "0.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b"
-+dependencies = [
-+ "html5ever",
-+ "markup5ever",
-+ "tendril",
-+ "xml5ever",
-+]
-+
-+[[package]]
-+name = "matches"
-+version = "0.1.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
-+
-+[[package]]
-+name = "memchr"
-+version = "2.5.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
-+
-+[[package]]
-+name = "memoffset"
-+version = "0.6.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
-+dependencies = [
-+ "autocfg",
-+]
-+
-+[[package]]
-+name = "mime"
-+version = "0.3.16"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
-+
-+[[package]]
-+name = "mime_guess"
-+version = "2.0.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
-+dependencies = [
-+ "mime",
-+ "unicase",
-+]
-+
-+[[package]]
-+name = "miniz_oxide"
-+version = "0.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
-+dependencies = [
-+ "adler",
-+]
-+
-+[[package]]
-+name = "mio"
-+version = "0.6.23"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
-+dependencies = [
-+ "cfg-if 0.1.10",
-+ "fuchsia-zircon",
-+ "fuchsia-zircon-sys",
-+ "iovec",
-+ "kernel32-sys",
-+ "libc",
-+ "log",
-+ "miow",
-+ "net2",
-+ "slab",
-+ "winapi 0.2.8",
-+]
-+
-+[[package]]
-+name = "mio"
-+version = "0.8.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
-+dependencies = [
-+ "libc",
-+ "log",
-+ "wasi 0.11.0+wasi-snapshot-preview1",
-+ "windows-sys",
-+]
-+
-+[[package]]
-+name = "mio-extras"
-+version = "2.0.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
-+dependencies = [
-+ "lazycell",
-+ "log",
-+ "mio 0.6.23",
-+ "slab",
-+]
-+
-+[[package]]
-+name = "miow"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
-+dependencies = [
-+ "kernel32-sys",
-+ "net2",
-+ "winapi 0.2.8",
-+ "ws2_32-sys",
-+]
-+
-+[[package]]
-+name = "native-tls"
-+version = "0.2.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
-+dependencies = [
-+ "lazy_static",
-+ "libc",
-+ "log",
-+ "openssl",
-+ "openssl-probe",
-+ "openssl-sys",
-+ "schannel",
-+ "security-framework",
-+ "security-framework-sys",
-+ "tempfile",
-+]
-+
-+[[package]]
-+name = "net2"
-+version = "0.2.37"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
-+dependencies = [
-+ "cfg-if 0.1.10",
-+ "libc",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "new_debug_unreachable"
-+version = "1.0.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
-+
-+[[package]]
-+name = "nodrop"
-+version = "0.1.14"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
-+
-+[[package]]
-+name = "notify"
-+version = "4.0.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257"
-+dependencies = [
-+ "bitflags",
-+ "filetime",
-+ "fsevent",
-+ "fsevent-sys",
-+ "inotify",
-+ "libc",
-+ "mio 0.6.23",
-+ "mio-extras",
-+ "walkdir",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "num-integer"
-+version = "0.1.45"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
-+dependencies = [
-+ "autocfg",
-+ "num-traits",
-+]
-+
-+[[package]]
-+name = "num-traits"
-+version = "0.2.15"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
-+dependencies = [
-+ "autocfg",
-+]
-+
-+[[package]]
-+name = "num_cpus"
-+version = "1.13.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
-+dependencies = [
-+ "hermit-abi",
-+ "libc",
-+]
-+
-+[[package]]
-+name = "num_threads"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "object"
-+version = "0.29.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
-+dependencies = [
-+ "memchr",
-+]
-+
-+[[package]]
-+name = "once_cell"
-+version = "1.13.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
-+
-+[[package]]
-+name = "openssl"
-+version = "0.10.41"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
-+dependencies = [
-+ "bitflags",
-+ "cfg-if 1.0.0",
-+ "foreign-types",
-+ "libc",
-+ "once_cell",
-+ "openssl-macros",
-+ "openssl-sys",
-+]
-+
-+[[package]]
-+name = "openssl-macros"
-+version = "0.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "openssl-probe"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
-+
-+[[package]]
-+name = "openssl-src"
-+version = "111.22.0+1.1.1q"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853"
-+dependencies = [
-+ "cc",
-+]
-+
-+[[package]]
-+name = "openssl-sys"
-+version = "0.9.75"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
-+dependencies = [
-+ "autocfg",
-+ "cc",
-+ "libc",
-+ "openssl-src",
-+ "pkg-config",
-+ "vcpkg",
-+]
-+
-+[[package]]
-+name = "os_str_bytes"
-+version = "6.2.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4"
-+
-+[[package]]
-+name = "parking_lot"
-+version = "0.12.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
-+dependencies = [
-+ "lock_api",
-+ "parking_lot_core",
-+]
-+
-+[[package]]
-+name = "parking_lot_core"
-+version = "0.9.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "libc",
-+ "redox_syscall",
-+ "smallvec",
-+ "windows-sys",
-+]
-+
-+[[package]]
-+name = "parse-zoneinfo"
-+version = "0.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
-+dependencies = [
-+ "regex",
-+]
-+
-+[[package]]
-+name = "percent-encoding"
-+version = "2.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
-+
-+[[package]]
-+name = "pest"
-+version = "2.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "69486e2b8c2d2aeb9762db7b4e00b0331156393555cff467f4163ff06821eef8"
-+dependencies = [
-+ "thiserror",
-+ "ucd-trie",
-+]
-+
-+[[package]]
-+name = "pest_derive"
-+version = "2.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b13570633aff33c6d22ce47dd566b10a3b9122c2fe9d8e7501895905be532b91"
-+dependencies = [
-+ "pest",
-+ "pest_generator",
-+]
-+
-+[[package]]
-+name = "pest_generator"
-+version = "2.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b3c567e5702efdc79fb18859ea74c3eb36e14c43da7b8c1f098a4ed6514ec7a0"
-+dependencies = [
-+ "pest",
-+ "pest_meta",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "pest_meta"
-+version = "2.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5eb32be5ee3bbdafa8c7a18b0a8a8d962b66cfa2ceee4037f49267a50ee821fe"
-+dependencies = [
-+ "once_cell",
-+ "pest",
-+ "sha-1",
-+]
-+
-+[[package]]
-+name = "phf"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
-+dependencies = [
-+ "phf_macros",
-+ "phf_shared 0.8.0",
-+ "proc-macro-hack",
-+]
-+
-+[[package]]
-+name = "phf"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4724fa946c8d1e7cd881bd3dbee63ce32fc1e9e191e35786b3dc1320a3f68131"
-+dependencies = [
-+ "phf_shared 0.11.0",
-+]
-+
-+[[package]]
-+name = "phf_codegen"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
-+dependencies = [
-+ "phf_generator 0.8.0",
-+ "phf_shared 0.8.0",
-+]
-+
-+[[package]]
-+name = "phf_codegen"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "32ba0c43d7a1b6492b2924a62290cfd83987828af037b0743b38e6ab092aee58"
-+dependencies = [
-+ "phf_generator 0.11.0",
-+ "phf_shared 0.11.0",
-+]
-+
-+[[package]]
-+name = "phf_generator"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
-+dependencies = [
-+ "phf_shared 0.8.0",
-+ "rand 0.7.3",
-+]
-+
-+[[package]]
-+name = "phf_generator"
-+version = "0.10.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
-+dependencies = [
-+ "phf_shared 0.10.0",
-+ "rand 0.8.5",
-+]
-+
-+[[package]]
-+name = "phf_generator"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5b450720b6f75cfbfabc195814bd3765f337a4f9a83186f8537297cac12f6705"
-+dependencies = [
-+ "phf_shared 0.11.0",
-+ "rand 0.8.5",
-+]
-+
-+[[package]]
-+name = "phf_macros"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
-+dependencies = [
-+ "phf_generator 0.8.0",
-+ "phf_shared 0.8.0",
-+ "proc-macro-hack",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "phf_shared"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
-+dependencies = [
-+ "siphasher",
-+]
-+
-+[[package]]
-+name = "phf_shared"
-+version = "0.10.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
-+dependencies = [
-+ "siphasher",
-+]
-+
-+[[package]]
-+name = "phf_shared"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9dd5609d4b2df87167f908a32e1b146ce309c16cf35df76bc11f440b756048e4"
-+dependencies = [
-+ "siphasher",
-+ "uncased",
-+]
-+
-+[[package]]
-+name = "pin-project"
-+version = "1.0.11"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
-+dependencies = [
-+ "pin-project-internal",
-+]
-+
-+[[package]]
-+name = "pin-project-internal"
-+version = "1.0.11"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "pin-project-lite"
-+version = "0.2.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
-+
-+[[package]]
-+name = "pin-utils"
-+version = "0.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-+
-+[[package]]
-+name = "pkg-config"
-+version = "0.3.25"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
-+
-+[[package]]
-+name = "plist"
-+version = "1.3.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
-+dependencies = [
-+ "base64",
-+ "indexmap",
-+ "line-wrap",
-+ "serde",
-+ "time 0.3.12",
-+ "xml-rs",
-+]
-+
-+[[package]]
-+name = "ppv-lite86"
-+version = "0.2.16"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
-+
-+[[package]]
-+name = "precomputed-hash"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
-+
-+[[package]]
-+name = "proc-macro-error"
-+version = "1.0.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-+dependencies = [
-+ "proc-macro-error-attr",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "proc-macro-error-attr"
-+version = "1.0.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "proc-macro-hack"
-+version = "0.5.19"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
-+
-+[[package]]
-+name = "proc-macro2"
-+version = "1.0.43"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
-+dependencies = [
-+ "unicode-ident",
-+]
-+
-+[[package]]
-+name = "pulldown-cmark"
-+version = "0.9.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
-+dependencies = [
-+ "bitflags",
-+ "getopts",
-+ "memchr",
-+ "unicase",
-+]
-+
-+[[package]]
-+name = "quote"
-+version = "1.0.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
-+dependencies = [
-+ "proc-macro2",
-+]
-+
-+[[package]]
-+name = "rand"
-+version = "0.7.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-+dependencies = [
-+ "getrandom 0.1.16",
-+ "libc",
-+ "rand_chacha 0.2.2",
-+ "rand_core 0.5.1",
-+ "rand_hc",
-+ "rand_pcg",
-+]
-+
-+[[package]]
-+name = "rand"
-+version = "0.8.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-+dependencies = [
-+ "libc",
-+ "rand_chacha 0.3.1",
-+ "rand_core 0.6.3",
-+]
-+
-+[[package]]
-+name = "rand_chacha"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-+dependencies = [
-+ "ppv-lite86",
-+ "rand_core 0.5.1",
-+]
-+
-+[[package]]
-+name = "rand_chacha"
-+version = "0.3.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-+dependencies = [
-+ "ppv-lite86",
-+ "rand_core 0.6.3",
-+]
-+
-+[[package]]
-+name = "rand_core"
-+version = "0.5.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
-+dependencies = [
-+ "getrandom 0.1.16",
-+]
-+
-+[[package]]
-+name = "rand_core"
-+version = "0.6.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
-+dependencies = [
-+ "getrandom 0.2.7",
-+]
-+
-+[[package]]
-+name = "rand_hc"
-+version = "0.2.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-+dependencies = [
-+ "rand_core 0.5.1",
-+]
-+
-+[[package]]
-+name = "rand_pcg"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
-+dependencies = [
-+ "rand_core 0.5.1",
-+]
-+
-+[[package]]
-+name = "rayon"
-+version = "1.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
-+dependencies = [
-+ "autocfg",
-+ "crossbeam-deque",
-+ "either",
-+ "rayon-core",
-+]
-+
-+[[package]]
-+name = "rayon-core"
-+version = "1.9.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
-+dependencies = [
-+ "crossbeam-channel",
-+ "crossbeam-deque",
-+ "crossbeam-utils",
-+ "num_cpus",
-+]
-+
-+[[package]]
-+name = "redox_syscall"
-+version = "0.2.16"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
-+dependencies = [
-+ "bitflags",
-+]
-+
-+[[package]]
-+name = "regex"
-+version = "1.6.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
-+dependencies = [
-+ "aho-corasick",
-+ "memchr",
-+ "regex-syntax",
-+]
-+
-+[[package]]
-+name = "regex-syntax"
-+version = "0.6.27"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
-+
-+[[package]]
-+name = "remove_dir_all"
-+version = "0.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
-+dependencies = [
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "rustc-demangle"
-+version = "0.1.21"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
-+
-+[[package]]
-+name = "rustc-hash"
-+version = "1.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
-+
-+[[package]]
-+name = "rustc_version"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
-+dependencies = [
-+ "semver",
-+]
-+
-+[[package]]
-+name = "ryu"
-+version = "1.0.11"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
-+
-+[[package]]
-+name = "safemem"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
-+
-+[[package]]
-+name = "same-file"
-+version = "1.0.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
-+dependencies = [
-+ "winapi-util",
-+]
-+
-+[[package]]
-+name = "schannel"
-+version = "0.1.20"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
-+dependencies = [
-+ "lazy_static",
-+ "windows-sys",
-+]
-+
-+[[package]]
-+name = "scopeguard"
-+version = "1.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-+
-+[[package]]
-+name = "security-framework"
-+version = "2.6.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
-+dependencies = [
-+ "bitflags",
-+ "core-foundation",
-+ "core-foundation-sys",
-+ "libc",
-+ "security-framework-sys",
-+]
-+
-+[[package]]
-+name = "security-framework-sys"
-+version = "2.6.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
-+dependencies = [
-+ "core-foundation-sys",
-+ "libc",
-+]
-+
-+[[package]]
-+name = "selectors"
-+version = "0.22.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
-+dependencies = [
-+ "bitflags",
-+ "cssparser",
-+ "derive_more",
-+ "fxhash",
-+ "log",
-+ "matches",
-+ "phf 0.8.0",
-+ "phf_codegen 0.8.0",
-+ "precomputed-hash",
-+ "servo_arc",
-+ "smallvec",
-+ "thin-slice",
-+]
-+
-+[[package]]
-+name = "self_cell"
-+version = "0.10.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af"
-+
-+[[package]]
-+name = "semver"
-+version = "1.0.13"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711"
-+
-+[[package]]
-+name = "serde"
-+version = "1.0.142"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2"
-+dependencies = [
-+ "serde_derive",
-+]
-+
-+[[package]]
-+name = "serde_derive"
-+version = "1.0.142"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "serde_json"
-+version = "1.0.83"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
-+dependencies = [
-+ "itoa 1.0.3",
-+ "ryu",
-+ "serde",
-+]
-+
-+[[package]]
-+name = "servo_arc"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
-+dependencies = [
-+ "nodrop",
-+ "stable_deref_trait",
-+]
-+
-+[[package]]
-+name = "sha-1"
-+version = "0.10.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "cpufeatures",
-+ "digest",
-+]
-+
-+[[package]]
-+name = "signal-hook-registry"
-+version = "1.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "siphasher"
-+version = "0.3.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
-+
-+[[package]]
-+name = "slab"
-+version = "0.4.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
-+dependencies = [
-+ "autocfg",
-+]
-+
-+[[package]]
-+name = "slug"
-+version = "0.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
-+dependencies = [
-+ "deunicode",
-+]
-+
-+[[package]]
-+name = "smallvec"
-+version = "1.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
-+
-+[[package]]
-+name = "socket2"
-+version = "0.4.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
-+dependencies = [
-+ "libc",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "stable_deref_trait"
-+version = "1.2.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
-+
-+[[package]]
-+name = "string_cache"
-+version = "0.8.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
-+dependencies = [
-+ "new_debug_unreachable",
-+ "once_cell",
-+ "parking_lot",
-+ "phf_shared 0.10.0",
-+ "precomputed-hash",
-+ "serde",
-+]
-+
-+[[package]]
-+name = "string_cache_codegen"
-+version = "0.5.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
-+dependencies = [
-+ "phf_generator 0.10.0",
-+ "phf_shared 0.10.0",
-+ "proc-macro2",
-+ "quote",
-+]
-+
-+[[package]]
-+name = "syn"
-+version = "1.0.99"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "unicode-ident",
-+]
-+
-+[[package]]
-+name = "syntect"
-+version = "4.6.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031"
-+dependencies = [
-+ "bincode",
-+ "bitflags",
-+ "fancy-regex",
-+ "flate2",
-+ "fnv",
-+ "lazy_static",
-+ "lazycell",
-+ "plist",
-+ "regex-syntax",
-+ "serde",
-+ "serde_derive",
-+ "serde_json",
-+ "walkdir",
-+ "yaml-rust",
-+]
-+
-+[[package]]
-+name = "tempfile"
-+version = "3.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "fastrand",
-+ "libc",
-+ "redox_syscall",
-+ "remove_dir_all",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "tendril"
-+version = "0.4.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
-+dependencies = [
-+ "futf",
-+ "mac",
-+ "utf-8",
-+]
-+
-+[[package]]
-+name = "tera"
-+version = "1.16.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7c9783d6ff395ae80cf17ed9a25360e7ba37742a79fa8fddabb073c5c7c8856d"
-+dependencies = [
-+ "chrono",
-+ "chrono-tz",
-+ "globwalk",
-+ "humansize",
-+ "lazy_static",
-+ "percent-encoding",
-+ "pest",
-+ "pest_derive",
-+ "rand 0.8.5",
-+ "regex",
-+ "serde",
-+ "serde_json",
-+ "slug",
-+ "unic-segment",
-+]
-+
-+[[package]]
-+name = "test-case"
-+version = "2.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "07aea929e9488998b64adc414c29fe5620398f01c2e3f58164122b17e567a6d5"
-+dependencies = [
-+ "test-case-macros",
-+]
-+
-+[[package]]
-+name = "test-case-macros"
-+version = "2.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c95968eedc6fc4f5c21920e0f4264f78ec5e4c56bb394f319becc1a5830b3e54"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "proc-macro-error",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "textwrap"
-+version = "0.15.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
-+
-+[[package]]
-+name = "thin-slice"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
-+
-+[[package]]
-+name = "thiserror"
-+version = "1.0.32"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
-+dependencies = [
-+ "thiserror-impl",
-+]
-+
-+[[package]]
-+name = "thiserror-impl"
-+version = "1.0.32"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "thread_local"
-+version = "1.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
-+dependencies = [
-+ "once_cell",
-+]
-+
-+[[package]]
-+name = "time"
-+version = "0.1.44"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
-+dependencies = [
-+ "libc",
-+ "wasi 0.10.0+wasi-snapshot-preview1",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "time"
-+version = "0.3.12"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f"
-+dependencies = [
-+ "itoa 1.0.3",
-+ "js-sys",
-+ "libc",
-+ "num_threads",
-+ "serde",
-+]
-+
-+[[package]]
-+name = "tinystr"
-+version = "0.3.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "29738eedb4388d9ea620eeab9384884fc3f06f586a2eddb56bedc5885126c7c1"
-+
-+[[package]]
-+name = "tokio"
-+version = "1.20.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
-+dependencies = [
-+ "autocfg",
-+ "bytes",
-+ "libc",
-+ "memchr",
-+ "mio 0.8.4",
-+ "num_cpus",
-+ "once_cell",
-+ "pin-project-lite",
-+ "signal-hook-registry",
-+ "socket2",
-+ "tokio-macros",
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "tokio-macros"
-+version = "1.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+]
-+
-+[[package]]
-+name = "tokio-native-tls"
-+version = "0.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
-+dependencies = [
-+ "native-tls",
-+ "tokio",
-+]
-+
-+[[package]]
-+name = "tokio-util"
-+version = "0.7.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
-+dependencies = [
-+ "bytes",
-+ "futures-core",
-+ "futures-sink",
-+ "pin-project-lite",
-+ "tokio",
-+]
-+
-+[[package]]
-+name = "toml"
-+version = "0.5.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
-+dependencies = [
-+ "serde",
-+]
-+
-+[[package]]
-+name = "tower"
-+version = "0.4.13"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
-+dependencies = [
-+ "futures-core",
-+ "futures-util",
-+ "pin-project",
-+ "pin-project-lite",
-+ "tokio",
-+ "tower-layer",
-+ "tower-service",
-+ "tracing",
-+]
-+
-+[[package]]
-+name = "tower-http"
-+version = "0.2.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8"
-+dependencies = [
-+ "bitflags",
-+ "bytes",
-+ "futures-core",
-+ "futures-util",
-+ "http",
-+ "http-body",
-+ "http-range-header",
-+ "httpdate",
-+ "mime",
-+ "mime_guess",
-+ "percent-encoding",
-+ "pin-project-lite",
-+ "tokio",
-+ "tokio-util",
-+ "tower-layer",
-+ "tower-service",
-+]
-+
-+[[package]]
-+name = "tower-layer"
-+version = "0.3.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
-+
-+[[package]]
-+name = "tower-service"
-+version = "0.3.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
-+
-+[[package]]
-+name = "tracing"
-+version = "0.1.36"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "log",
-+ "pin-project-lite",
-+ "tracing-core",
-+]
-+
-+[[package]]
-+name = "tracing-core"
-+version = "0.1.29"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
-+dependencies = [
-+ "once_cell",
-+]
-+
-+[[package]]
-+name = "try-lock"
-+version = "0.2.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
-+
-+[[package]]
-+name = "type-map"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46"
-+dependencies = [
-+ "rustc-hash",
-+]
-+
-+[[package]]
-+name = "typenum"
-+version = "1.15.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
-+
-+[[package]]
-+name = "ucd-trie"
-+version = "0.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c"
-+
-+[[package]]
-+name = "uncased"
-+version = "0.9.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
-+dependencies = [
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "unic-char-property"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
-+dependencies = [
-+ "unic-char-range",
-+]
-+
-+[[package]]
-+name = "unic-char-range"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
-+
-+[[package]]
-+name = "unic-common"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
-+
-+[[package]]
-+name = "unic-langid"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "73328fcd730a030bdb19ddf23e192187a6b01cd98be6d3140622a89129459ce5"
-+dependencies = [
-+ "unic-langid-impl",
-+]
-+
-+[[package]]
-+name = "unic-langid-impl"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1a4a8eeaf0494862c1404c95ec2f4c33a2acff5076f64314b465e3ddae1b934d"
-+dependencies = [
-+ "tinystr",
-+]
-+
-+[[package]]
-+name = "unic-segment"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
-+dependencies = [
-+ "unic-ucd-segment",
-+]
-+
-+[[package]]
-+name = "unic-ucd-segment"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
-+dependencies = [
-+ "unic-char-property",
-+ "unic-char-range",
-+ "unic-ucd-version",
-+]
-+
-+[[package]]
-+name = "unic-ucd-version"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
-+dependencies = [
-+ "unic-common",
-+]
-+
-+[[package]]
-+name = "unicase"
-+version = "2.6.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
-+dependencies = [
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "unicode-ident"
-+version = "1.0.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
-+
-+[[package]]
-+name = "unicode-width"
-+version = "0.1.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
-+
-+[[package]]
-+name = "utf-8"
-+version = "0.7.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
-+
-+[[package]]
-+name = "vcpkg"
-+version = "0.2.15"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
-+
-+[[package]]
-+name = "version_check"
-+version = "0.9.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
-+
-+[[package]]
-+name = "walkdir"
-+version = "2.3.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
-+dependencies = [
-+ "same-file",
-+ "winapi 0.3.9",
-+ "winapi-util",
-+]
-+
-+[[package]]
-+name = "want"
-+version = "0.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
-+dependencies = [
-+ "log",
-+ "try-lock",
-+]
-+
-+[[package]]
-+name = "wasi"
-+version = "0.9.0+wasi-snapshot-preview1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-+
-+[[package]]
-+name = "wasi"
-+version = "0.10.0+wasi-snapshot-preview1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
-+
-+[[package]]
-+name = "wasi"
-+version = "0.11.0+wasi-snapshot-preview1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
-+
-+[[package]]
-+name = "wasm-bindgen"
-+version = "0.2.82"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "wasm-bindgen-macro",
-+]
-+
-+[[package]]
-+name = "wasm-bindgen-backend"
-+version = "0.2.82"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
-+dependencies = [
-+ "bumpalo",
-+ "log",
-+ "once_cell",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+ "wasm-bindgen-shared",
-+]
-+
-+[[package]]
-+name = "wasm-bindgen-macro"
-+version = "0.2.82"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
-+dependencies = [
-+ "quote",
-+ "wasm-bindgen-macro-support",
-+]
-+
-+[[package]]
-+name = "wasm-bindgen-macro-support"
-+version = "0.2.82"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
-+dependencies = [
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+ "wasm-bindgen-backend",
-+ "wasm-bindgen-shared",
-+]
-+
-+[[package]]
-+name = "wasm-bindgen-shared"
-+version = "0.2.82"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
-+
-+[[package]]
-+name = "winapi"
-+version = "0.2.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-+
-+[[package]]
-+name = "winapi"
-+version = "0.3.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-+dependencies = [
-+ "winapi-i686-pc-windows-gnu",
-+ "winapi-x86_64-pc-windows-gnu",
-+]
-+
-+[[package]]
-+name = "winapi-build"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-+
-+[[package]]
-+name = "winapi-i686-pc-windows-gnu"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-+
-+[[package]]
-+name = "winapi-util"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
-+dependencies = [
-+ "winapi 0.3.9",
-+]
-+
-+[[package]]
-+name = "winapi-x86_64-pc-windows-gnu"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-+
-+[[package]]
-+name = "windows-sys"
-+version = "0.36.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
-+dependencies = [
-+ "windows_aarch64_msvc",
-+ "windows_i686_gnu",
-+ "windows_i686_msvc",
-+ "windows_x86_64_gnu",
-+ "windows_x86_64_msvc",
-+]
-+
-+[[package]]
-+name = "windows_aarch64_msvc"
-+version = "0.36.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
-+
-+[[package]]
-+name = "windows_i686_gnu"
-+version = "0.36.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
-+
-+[[package]]
-+name = "windows_i686_msvc"
-+version = "0.36.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
-+
-+[[package]]
-+name = "windows_x86_64_gnu"
-+version = "0.36.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
-+
-+[[package]]
-+name = "windows_x86_64_msvc"
-+version = "0.36.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
-+
-+[[package]]
-+name = "ws2_32-sys"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
-+dependencies = [
-+ "winapi 0.2.8",
-+ "winapi-build",
-+]
-+
-+[[package]]
-+name = "xml-rs"
-+version = "0.8.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
-+
-+[[package]]
-+name = "xml5ever"
-+version = "0.16.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9234163818fd8e2418fcde330655e757900d4236acd8cc70fef345ef91f6d865"
-+dependencies = [
-+ "log",
-+ "mac",
-+ "markup5ever",
-+ "time 0.1.44",
-+]
-+
-+[[package]]
-+name = "yaml-rust"
-+version = "0.4.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
-+dependencies = [
-+ "linked-hash-map",
-+]
-+
-+[[package]]
-+name = "zine"
-+version = "0.6.0"
-+dependencies = [
-+ "anyhow",
-+ "clap",
-+ "fluent",
-+ "html5ever",
-+ "http-body",
-+ "hyper",
-+ "hyper-tls",
-+ "include_dir",
-+ "intl-memoizer",
-+ "lol_html",
-+ "markup5ever_rcdom",
-+ "notify",
-+ "once_cell",
-+ "parking_lot",
-+ "pulldown-cmark",
-+ "rayon",
-+ "regex",
-+ "serde",
-+ "serde_json",
-+ "syntect",
-+ "tera",
-+ "test-case",
-+ "time 0.3.12",
-+ "tokio",
-+ "toml",
-+ "tower",
-+ "tower-http",
-+ "walkdir",
-+]
diff --git a/pkgs/applications/misc/zine/default.nix b/pkgs/applications/misc/zine/default.nix
index 0c26d39bf698..c6b2d5e026ae 100644
--- a/pkgs/applications/misc/zine/default.nix
+++ b/pkgs/applications/misc/zine/default.nix
@@ -1,26 +1,23 @@
{ lib
-, stdenv
-, fetchFromGitHub
, rustPlatform
+, fetchCrate
, pkg-config
+, stdenv
, openssl
, CoreServices
, Security
}:
+
rustPlatform.buildRustPackage rec {
pname = "zine";
version = "0.6.0";
- src = fetchFromGitHub {
- owner = "zineland";
- repo = pname;
- rev = "v${version}";
- sha256 = "sha256-Pd/UAg6O9bOvrdvbY46Vf8cxFzjonEwcwPaaW59vH6E=";
+ src = fetchCrate {
+ inherit pname version;
+ sha256 = "sha256-savwRdIO48gCwqW2Wz/nWZuI1TxW/F0OR9jhNzHF+us=";
};
- cargoPatches = [ ./Cargo.lock.patch ]; # Repo does not provide Cargo.lock
-
- cargoSha256 = "sha256-qpzBDyNSZblmdimnnL4T/wS+6EXpduJ1U2+bfxM7piM=";
+ cargoSha256 = "sha256-U+pzT3V4rHiU+Hrax1EUXGQgdjrdfd3G07luaDSam3g=";
nativeBuildInputs = [
pkg-config
@@ -33,6 +30,6 @@ rustPlatform.buildRustPackage rec {
description = "A simple and opinionated tool to build your own magazine";
homepage = "https://github.com/zineland/zine";
license = licenses.asl20;
- maintainers = with maintainers; [ dit7ya ];
+ maintainers = with maintainers; [ dit7ya figsoda ];
};
}
diff --git a/pkgs/applications/networking/cluster/werf/default.nix b/pkgs/applications/networking/cluster/werf/default.nix
index 4eff84ea5e8b..47553f953dbc 100644
--- a/pkgs/applications/networking/cluster/werf/default.nix
+++ b/pkgs/applications/networking/cluster/werf/default.nix
@@ -10,13 +10,13 @@
buildGoModule rec {
pname = "werf";
- version = "1.2.173";
+ version = "1.2.174";
src = fetchFromGitHub {
owner = "werf";
repo = "werf";
rev = "v${version}";
- hash = "sha256-jbV2pQSFq/E++eOyQwB0ssG2R9mm3sprlm5mFfHJsBA=";
+ hash = "sha256-8TuAreXWKCXThyiWwiSi5kDVHJKeMB8lpltWbVqGY34=";
};
vendorHash = "sha256-NHRPl38/R7yS8Hht118mBc+OBPwfYiHOaGIwryNK8Mo=";
diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix
index 13b326b0678b..c4a76bdcfce1 100644
--- a/pkgs/applications/networking/flexget/default.nix
+++ b/pkgs/applications/networking/flexget/default.nix
@@ -5,14 +5,14 @@
python3Packages.buildPythonApplication rec {
pname = "flexget";
- version = "3.3.26";
+ version = "3.3.27";
# Fetch from GitHub in order to use `requirements.in`
src = fetchFromGitHub {
owner = "flexget";
repo = "flexget";
rev = "refs/tags/v${version}";
- hash = "sha256-5THgUOQv9gPUh9emWiBs/tSNsOX4ZVh+jvKEpWsy05w=";
+ hash = "sha256-0FHhYsm2Uwag0e2i7ip32EWjS4Fx6vA9eW1ojSBB5Hc=";
};
postPatch = ''
diff --git a/pkgs/applications/networking/gmailctl/default.nix b/pkgs/applications/networking/gmailctl/default.nix
index 25731fea4fb7..be26e31c7e39 100644
--- a/pkgs/applications/networking/gmailctl/default.nix
+++ b/pkgs/applications/networking/gmailctl/default.nix
@@ -6,16 +6,16 @@
buildGoModule rec {
pname = "gmailctl";
- version = "0.10.4";
+ version = "0.10.5";
src = fetchFromGitHub {
owner = "mbrt";
repo = "gmailctl";
rev = "v${version}";
- sha256 = "sha256-tAYFuxB8LSyFHraAQxCj8Q09mS/9RYcinVm5whpRh04=";
+ sha256 = "sha256-H1Nuu/T55e5zWUmofKoyVSA4TaJBdK+JeZtw+G/sC54=";
};
- vendorSha256 = "sha256-IFxKczPrqCM9NOoOJayfbrsJIMf3eoI9zXSFns0/i8o=";
+ vendorSha256 = "sha256-ivkTtcvoH+i58iQM9T0xio0YUeMhNzDcmrCSuGFljEI=";
nativeBuildInputs = [
installShellFiles
diff --git a/pkgs/applications/networking/instant-messengers/bluejeans/default.nix b/pkgs/applications/networking/instant-messengers/bluejeans/default.nix
index 5e8aef5f594d..3ea66e9d4304 100644
--- a/pkgs/applications/networking/instant-messengers/bluejeans/default.nix
+++ b/pkgs/applications/networking/instant-messengers/bluejeans/default.nix
@@ -44,11 +44,11 @@ in
stdenv.mkDerivation rec {
pname = "bluejeans";
- version = "2.30.0.89";
+ version = "2.30.1.18";
src = fetchurl {
url = "https://swdl.bluejeans.com/desktop-app/linux/${getFirst 3 version}/BlueJeans_${version}.rpm";
- sha256 = "sha256-ALydB6bTxaYsBk0BrTKG8Yan4n/jvxT8T7fSMFel+CQ=";
+ sha256 = "sha256-V/3nmindkuTmUsuAuc0UxldAQe7jfeXWSZWPTXTyLq8=";
};
nativeBuildInputs = [ rpmextract makeWrapper ];
diff --git a/pkgs/applications/networking/instant-messengers/discord/darwin.nix b/pkgs/applications/networking/instant-messengers/discord/darwin.nix
index aa1cfaa045ca..fc75da46a388 100644
--- a/pkgs/applications/networking/instant-messengers/discord/darwin.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/darwin.nix
@@ -1,9 +1,9 @@
-{ pname, version, src, openasar, meta, stdenv, binaryName, desktopName, lib, undmg, withOpenASAR ? false }:
+{ pname, version, src, openasar, meta, stdenv, binaryName, desktopName, lib, undmg, makeWrapper, withOpenASAR ? false }:
stdenv.mkDerivation {
inherit pname version src meta;
- nativeBuildInputs = [ undmg ];
+ nativeBuildInputs = [ undmg makeWrapper ];
sourceRoot = ".";
@@ -13,6 +13,10 @@ stdenv.mkDerivation {
mkdir -p $out/Applications
cp -r "${desktopName}.app" $out/Applications
+ # wrap executable to $out/bin
+ mkdir -p $out/bin
+ makeWrapper "$out/Applications/${desktopName}.app/Contents/MacOS/${binaryName}" "$out/bin/${binaryName}"
+
runHook postInstall
'';
diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix
index 852e1baba715..6b720ab3f9be 100644
--- a/pkgs/applications/networking/instant-messengers/discord/default.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/default.nix
@@ -80,12 +80,12 @@ let
};
ptb = rec {
pname = "discord-ptb";
- binaryName = "DiscordPTB";
+ binaryName = if stdenv.isLinux then "DiscordPTB" else desktopName;
desktopName = "Discord PTB";
};
canary = rec {
pname = "discord-canary";
- binaryName = "DiscordCanary";
+ binaryName = if stdenv.isLinux then "DiscordCanary" else desktopName;
desktopName = "Discord Canary";
};
}
diff --git a/pkgs/applications/networking/irc/srain/default.nix b/pkgs/applications/networking/irc/srain/default.nix
index 1d30656854a1..20cadacb85a1 100644
--- a/pkgs/applications/networking/irc/srain/default.nix
+++ b/pkgs/applications/networking/irc/srain/default.nix
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Modern IRC client written in GTK";
- homepage = "https://srain.im";
+ homepage = "https://srain.silverrainz.me";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ rewine ];
diff --git a/pkgs/applications/networking/n8n/node-packages.nix b/pkgs/applications/networking/n8n/node-packages.nix
index 5b1acb6c73e1..7feebd16a8a8 100644
--- a/pkgs/applications/networking/n8n/node-packages.nix
+++ b/pkgs/applications/networking/n8n/node-packages.nix
@@ -40,13 +40,13 @@ let
sha512 = "mZ1MSKhZBYoV8GAWceA+PEJFWV2VpdNSpxxcj1wjIAOi00ykRuIQChT99xlQGZWLY3/NApWhSImlFwsmCEs4vA==";
};
};
- "@azure/core-http-2.2.6" = {
+ "@azure/core-http-2.2.7" = {
name = "_at_azure_slash_core-http";
packageName = "@azure/core-http";
- version = "2.2.6";
+ version = "2.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.6.tgz";
- sha512 = "Lx7A3k2JIXpIbixfUaOOG79WNSo/Y7dhZ0LaLhaayyZ6PwQdVsEQXAR+oIPqPSfgPzv7RtwPSVviJ2APrsQKvQ==";
+ url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.7.tgz";
+ sha512 = "TyGMeDm90mkRS8XzSQbSMD+TqnWL1XKGCh0x0QVGMD8COH2yU0q5SaHm/IBEBkzcq0u73NhS/p57T3KVSgUFqQ==";
};
};
"@azure/core-http-compat-1.3.0" = {
@@ -58,13 +58,13 @@ let
sha512 = "ZN9avruqbQ5TxopzG3ih3KRy52n8OAbitX3fnZT5go4hzu0J+KVPSzkL+Wt3hpJpdG8WIfg1sBD1tWkgUdEpBA==";
};
};
- "@azure/core-lro-2.2.5" = {
+ "@azure/core-lro-2.3.1" = {
name = "_at_azure_slash_core-lro";
packageName = "@azure/core-lro";
- version = "2.2.5";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.2.5.tgz";
- sha512 = "/7LKDHNd2Q6gGCrg7zV4va/N90w250pE4vaQUfFt+hTd/dyycgJWCqQ6EljQr8hrIFiH93C8Apk97tsnl7Czkg==";
+ url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.3.1.tgz";
+ sha512 = "nQ+Xnm9g1EWcmbqgxJGmkNHfOHRUmrbYIlRT4KjluzhHQooaGO55m/h6wCX0ho3Jte2ZNBzZPJRmi6yBWeb3yA==";
};
};
"@azure/core-paging-1.3.0" = {
@@ -76,13 +76,13 @@ let
sha512 = "H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg==";
};
};
- "@azure/core-rest-pipeline-1.9.1" = {
+ "@azure/core-rest-pipeline-1.9.2" = {
name = "_at_azure_slash_core-rest-pipeline";
packageName = "@azure/core-rest-pipeline";
- version = "1.9.1";
+ version = "1.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.9.1.tgz";
- sha512 = "OVtt0LP0K5ktsKTmh6/695P0mPFmngjdCJPr4V0uvrkhHTkARSQ3VYRnxRc0LC9g3mHcH90C+8a6iF7ApMAZKg==";
+ url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.9.2.tgz";
+ sha512 = "8rXI6ircjenaLp+PkOFpo37tQ1PQfztZkfVj97BIF3RPxHAsoVSgkJtu3IK/bUEWcb7HzXSoyBe06M7ODRkRyw==";
};
};
"@azure/core-tracing-1.0.0-preview.13" = {
@@ -103,13 +103,13 @@ let
sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==";
};
};
- "@azure/core-util-1.0.0" = {
+ "@azure/core-util-1.1.0" = {
name = "_at_azure_slash_core-util";
packageName = "@azure/core-util";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.0.0.tgz";
- sha512 = "yWshY9cdPthlebnb3Zuz/j0Lv4kjU6u7PR5sW7A9FF7EX+0irMRJAtyTq5TPiDHJfjH8gTSlnIYFj9m7Ed76IQ==";
+ url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.1.0.tgz";
+ sha512 = "+i93lNJNA3Pl3KSuC6xKP2jTL4YFeDfO6VNOaYdk0cppZcLCxt811gS878VsqsCisaltdhl9lhMzK5kbxCiF4w==";
};
};
"@azure/identity-2.1.0" = {
@@ -139,31 +139,31 @@ let
sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g==";
};
};
- "@azure/msal-browser-2.28.1" = {
+ "@azure/msal-browser-2.28.3" = {
name = "_at_azure_slash_msal-browser";
packageName = "@azure/msal-browser";
- version = "2.28.1";
+ version = "2.28.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.28.1.tgz";
- sha512 = "5uAfwpNGBSRzBGTSS+5l4Zw6msPV7bEmq99n0U3n/N++iTcha+nIp1QujxTPuOLHmTNCeySdMx9qzGqWuy22zQ==";
+ url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.28.3.tgz";
+ sha512 = "2SdyH2el3s8BzPURf9RK17BvvXvaMEGpLc3D9WilZcmjJqP4nStVH7Ogwr/SNTuGV48FUhqEkP0RxDvzuFJSIw==";
};
};
- "@azure/msal-common-7.3.0" = {
+ "@azure/msal-common-7.4.1" = {
name = "_at_azure_slash_msal-common";
packageName = "@azure/msal-common";
- version = "7.3.0";
+ version = "7.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.3.0.tgz";
- sha512 = "revxB3z+QLjwAtU1d04nC1voFr+i3LfqTpUfgrWZVqKh/sSgg0mZZUvw4vKVWB57qtL95sul06G+TfdFZny1Xw==";
+ url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.4.1.tgz";
+ sha512 = "zxcxg9pRdgGTS5mrRJeQvwA8aIjD8qSGzaAiz5SeTVkyhtjB0AeFnAcvBOKHv/TkswWNfYKpERxsXOAKXkXk0w==";
};
};
- "@azure/msal-node-1.12.1" = {
+ "@azure/msal-node-1.14.0" = {
name = "_at_azure_slash_msal-node";
packageName = "@azure/msal-node";
- version = "1.12.1";
+ version = "1.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.12.1.tgz";
- sha512 = "m909lX9C8Ty01DBxbjr4KfAKWibohgRvY7hrdDo13U1ztlH+0Nbt7cPF1vrWonW/CRT4H4xtUa4LCNmivghggw==";
+ url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.0.tgz";
+ sha512 = "3XB7FuHLhmGBjw7bxuz1LCHOXQgmNIO3J56tlbOjuJcyJtd4aBCgnYIXNKLed3uRcQNHEO0mlg24I4iGxAV/UA==";
};
};
"@azure/storage-blob-12.11.0" = {
@@ -175,22 +175,22 @@ let
sha512 = "na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg==";
};
};
- "@babel/parser-7.18.13" = {
+ "@babel/parser-7.19.1" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.18.13";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz";
- sha512 = "dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz";
+ sha512 = "h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==";
};
};
- "@babel/runtime-7.18.9" = {
+ "@babel/runtime-7.19.0" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.18.9";
+ version = "7.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz";
- sha512 = "lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz";
+ sha512 = "eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==";
};
};
"@colors/colors-1.5.0" = {
@@ -292,13 +292,13 @@ let
sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==";
};
};
- "@mapbox/node-pre-gyp-1.0.9" = {
+ "@mapbox/node-pre-gyp-1.0.10" = {
name = "_at_mapbox_slash_node-pre-gyp";
packageName = "@mapbox/node-pre-gyp";
- version = "1.0.9";
+ version = "1.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz";
- sha512 = "aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==";
+ url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz";
+ sha512 = "4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==";
};
};
"@n8n_io/riot-tmpl-1.0.1" = {
@@ -364,13 +364,13 @@ let
sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA==";
};
};
- "@oclif/core-1.16.0" = {
+ "@oclif/core-1.16.3" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
- version = "1.16.0";
+ version = "1.16.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/core/-/core-1.16.0.tgz";
- sha512 = "xtqhAbjQHBcz+xQpEHJ3eJEVfRQ4zl41Yw5gw/N+D1jgaIUrHTxCY/sfTvhw93LAQo7B++ozHzSb7DISFXsQFQ==";
+ url = "https://registry.npmjs.org/@oclif/core/-/core-1.16.3.tgz";
+ sha512 = "SWrU/eGgN5kLyuZ+TqtKz2z2HTSrgaNEwkawNj4B31VXDrPv7aULS3ntVCboAKRldX/6J+Af+70BV07Rr5c5oA==";
};
};
"@oclif/errors-1.3.5" = {
@@ -490,15 +490,6 @@ let
sha512 = "d/keJiNKfpHo+GmSB8QcsAwBx8h+V1UbdozA5TD+eSLXprNY53JAYub47J9evsSKWDdNG5uVj0FiMozLKuzowQ==";
};
};
- "@tokenizer/token-0.1.1" = {
- name = "_at_tokenizer_slash_token";
- packageName = "@tokenizer/token";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tokenizer/token/-/token-0.1.1.tgz";
- sha512 = "XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w==";
- };
- };
"@tokenizer/token-0.3.0" = {
name = "_at_tokenizer_slash_token";
packageName = "@tokenizer/token";
@@ -553,13 +544,13 @@ let
sha512 = "erqUpFXksaeR2kejKnhnjZjbFxUpGZx4Z7ydNL9ie8tEhXPiZTsLeUDJ6aR1F8j5wWUAtOAQWUqkc7givBJbBA==";
};
};
- "@types/express-4.17.13" = {
+ "@types/express-4.17.14" = {
name = "_at_types_slash_express";
packageName = "@types/express";
- version = "4.17.13";
+ version = "4.17.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz";
- sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==";
+ url = "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz";
+ sha512 = "TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==";
};
};
"@types/express-jwt-0.0.42" = {
@@ -571,13 +562,13 @@ let
sha512 = "WszgUddvM1t5dPpJ3LhWNH8kfNN8GPIBrAGxgIYXVCEGx6Bx4A036aAuf/r5WH9DIEdlmp7gHOYvSM6U87B0ag==";
};
};
- "@types/express-serve-static-core-4.17.30" = {
+ "@types/express-serve-static-core-4.17.31" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.17.30";
+ version = "4.17.31";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz";
- sha512 = "gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz";
+ sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==";
};
};
"@types/express-unless-0.5.3" = {
@@ -598,13 +589,13 @@ let
sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==";
};
};
- "@types/lodash-4.14.184" = {
+ "@types/lodash-4.14.185" = {
name = "_at_types_slash_lodash";
packageName = "@types/lodash";
- version = "4.14.184";
+ version = "4.14.185";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.184.tgz";
- sha512 = "RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q==";
+ url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz";
+ sha512 = "evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==";
};
};
"@types/mime-3.0.1" = {
@@ -625,13 +616,13 @@ let
sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA==";
};
};
- "@types/node-18.7.14" = {
+ "@types/node-18.7.18" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "18.7.14";
+ version = "18.7.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-18.7.14.tgz";
- sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz";
+ sha512 = "m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg==";
};
};
"@types/node-fetch-2.6.2" = {
@@ -688,6 +679,24 @@ let
sha512 = "sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==";
};
};
+ "@types/webidl-conversions-7.0.0" = {
+ name = "_at_types_slash_webidl-conversions";
+ packageName = "@types/webidl-conversions";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz";
+ sha512 = "xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==";
+ };
+ };
+ "@types/whatwg-url-8.2.2" = {
+ name = "_at_types_slash_whatwg-url";
+ packageName = "@types/whatwg-url";
+ version = "8.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz";
+ sha512 = "FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==";
+ };
+ };
"@vue/compiler-sfc-2.7.10" = {
name = "_at_vue_slash_compiler-sfc";
packageName = "@vue/compiler-sfc";
@@ -742,13 +751,13 @@ let
sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==";
};
};
- "address-1.2.0" = {
+ "address-1.2.1" = {
name = "address";
packageName = "address";
- version = "1.2.0";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/address/-/address-1.2.0.tgz";
- sha512 = "tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==";
+ url = "https://registry.npmjs.org/address/-/address-1.2.1.tgz";
+ sha512 = "B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==";
};
};
"adler-32-1.2.0" = {
@@ -1084,13 +1093,13 @@ let
sha512 = "vkyt1+sj6qaD9oMtqqLE2pZ2IcHI66kFx8lpnVuXp55SnNPjKghfOhVfZpaDwDPpY0oVWP3Qu1uHZWxF3E856A==";
};
};
- "aws-sdk-2.1207.0" = {
+ "aws-sdk-2.1218.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1207.0";
+ version = "2.1218.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1207.0.tgz";
- sha512 = "UDNYNeWw9ATbz+pH4lI3AUQgnmK3RwowCrXmW+lVV0bZYo+efiB/LEWQKe0nZK9K2h1LxZYihIih9dOvaGme/w==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1218.0.tgz";
+ sha512 = "oreF2jKfUZ8VKnIKh8TrOOOsdSfv87jHGtWQNAHdvfeyrYK5FrnvGkHUZ3bu6g6u1gHwu5FhTPiRMbgS8Re+NA==";
};
};
"aws-sign2-0.7.0" = {
@@ -1264,15 +1273,6 @@ let
sha512 = "ikAdCnrloKmFOugAfxWws89/fPc+nw0OOG1IzIE72uSOg/A3cYptKCjSUhDTuj7fhsJtzkzlv7l3b8PzRHLN0Q==";
};
};
- "bl-2.2.1" = {
- name = "bl";
- packageName = "bl";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz";
- sha512 = "6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==";
- };
- };
"bl-4.1.0" = {
name = "bl";
packageName = "bl";
@@ -1381,13 +1381,13 @@ let
sha512 = "YyNI4qJJ+piQG6MMEuo7J3Bzaqssufx04zpEKYfSrl/1Op59HWali9zMtBpXnkmqMcOuWJPZvudrm9wISmnCbg==";
};
};
- "bson-1.1.6" = {
+ "bson-4.7.0" = {
name = "bson";
packageName = "bson";
- version = "1.1.6";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bson/-/bson-1.1.6.tgz";
- sha512 = "EvVNVeGo4tHxwi8L6bPj3y3itEvStdwvvlojVxxbyYfoaxJ6keLgrTuKdyfEAszFK+H3olzBuafE0yoh0D1gdg==";
+ url = "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz";
+ sha512 = "VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==";
};
};
"buffer-4.9.2" = {
@@ -2047,13 +2047,13 @@ let
sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==";
};
};
- "core-js-3.25.0" = {
+ "core-js-3.25.2" = {
name = "core-js";
packageName = "core-js";
- version = "3.25.0";
+ version = "3.25.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.25.0.tgz";
- sha512 = "CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.25.2.tgz";
+ sha512 = "YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==";
};
};
"core-util-is-1.0.2" = {
@@ -2173,13 +2173,13 @@ let
sha512 = "FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==";
};
};
- "csstype-3.1.0" = {
+ "csstype-3.1.1" = {
name = "csstype";
packageName = "csstype";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz";
- sha512 = "uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==";
+ url = "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz";
+ sha512 = "DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==";
};
};
"dashdash-1.14.1" = {
@@ -2524,13 +2524,13 @@ let
sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==";
};
};
- "element-ui-2.15.9" = {
+ "element-ui-2.15.10" = {
name = "element-ui";
packageName = "element-ui";
- version = "2.15.9";
+ version = "2.15.10";
src = fetchurl {
- url = "https://registry.npmjs.org/element-ui/-/element-ui-2.15.9.tgz";
- sha512 = "dx45nQLt4Hn87/Z9eRr3ex6KFZbxlFAwEU3QoW3wA5EsYftvHTyL9Pq7VnXXD7hu1Eiaup2jcs6kp+/VSFmXuA==";
+ url = "https://registry.npmjs.org/element-ui/-/element-ui-2.15.10.tgz";
+ sha512 = "jmD++mU2wKXbisvx4fxOl2mHaU+HWHTAq/3Wf8x9Bwyu4GdDZPLABb+CGi3DWN6fPqdgRcd74aX39DO+YHObLw==";
};
};
"emoji-regex-8.0.0" = {
@@ -2614,13 +2614,13 @@ let
sha512 = "2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==";
};
};
- "es-abstract-1.20.1" = {
+ "es-abstract-1.20.2" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.20.1";
+ version = "1.20.2";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz";
- sha512 = "WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz";
+ sha512 = "XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==";
};
};
"es-aggregate-error-1.0.8" = {
@@ -2857,13 +2857,13 @@ let
sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==";
};
};
- "fast-glob-3.2.11" = {
+ "fast-glob-3.2.12" = {
name = "fast-glob";
packageName = "fast-glob";
- version = "3.2.11";
+ version = "3.2.12";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz";
- sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==";
+ url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz";
+ sha512 = "DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==";
};
};
"fast-json-stable-stringify-2.1.0" = {
@@ -2920,13 +2920,13 @@ let
sha512 = "yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==";
};
};
- "file-type-14.7.1" = {
+ "file-type-16.5.4" = {
name = "file-type";
packageName = "file-type";
- version = "14.7.1";
+ version = "16.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-14.7.1.tgz";
- sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA==";
+ url = "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz";
+ sha512 = "/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==";
};
};
"file-uri-to-path-2.0.0" = {
@@ -2983,13 +2983,13 @@ let
sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==";
};
};
- "follow-redirects-1.15.1" = {
+ "follow-redirects-1.15.2" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.15.1";
+ version = "1.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz";
- sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz";
+ sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==";
};
};
"for-each-0.3.3" = {
@@ -3172,13 +3172,13 @@ let
sha512 = "eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==";
};
};
- "generic-pool-3.8.2" = {
+ "generic-pool-3.9.0" = {
name = "generic-pool";
packageName = "generic-pool";
- version = "3.8.2";
+ version = "3.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/generic-pool/-/generic-pool-3.8.2.tgz";
- sha512 = "nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg==";
+ url = "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz";
+ sha512 = "hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==";
};
};
"get-caller-file-1.0.3" = {
@@ -3199,13 +3199,13 @@ let
sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==";
};
};
- "get-intrinsic-1.1.2" = {
+ "get-intrinsic-1.1.3" = {
name = "get-intrinsic";
packageName = "get-intrinsic";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz";
- sha512 = "Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==";
+ url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz";
+ sha512 = "QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==";
};
};
"get-package-type-0.1.0" = {
@@ -3316,13 +3316,13 @@ let
sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==";
};
};
- "gm-1.23.1" = {
+ "gm-1.24.0" = {
name = "gm";
packageName = "gm";
- version = "1.23.1";
+ version = "1.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gm/-/gm-1.23.1.tgz";
- sha512 = "wYGVAa8/sh9ggF5qWoOs6eArcAgwEPkDNvf637jHRHkMUznvs7m/Q2vrc0KLN6B8px3nnRJqJcXK4mTK6lLFmg==";
+ url = "https://registry.npmjs.org/gm/-/gm-1.24.0.tgz";
+ sha512 = "HsB94GIi6D4KklPrcRtq85CUuQhgi292N7vOx00pBH95sKuuy9LfenL9UtqXV4XFU8AmP5EaIhYcCxYp9zjiGQ==";
};
};
"google-timezones-json-1.0.2" = {
@@ -3802,13 +3802,13 @@ let
sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
};
};
- "is-callable-1.2.4" = {
+ "is-callable-1.2.6" = {
name = "is-callable";
packageName = "is-callable";
- version = "1.2.4";
+ version = "1.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz";
- sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==";
+ url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz";
+ sha512 = "krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q==";
};
};
"is-core-module-2.10.0" = {
@@ -4099,13 +4099,13 @@ let
sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==";
};
};
- "isbot-3.5.2" = {
+ "isbot-3.5.3" = {
name = "isbot";
packageName = "isbot";
- version = "3.5.2";
+ version = "3.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/isbot/-/isbot-3.5.2.tgz";
- sha512 = "7iXQPDK1GBKvWS9N71bNnQ2KMcqwlMhdLkPma/EBn+8ZRkCbhun3yqqS1hmRqysTwJLGvJrUTmRIHibLWrXQQA==";
+ url = "https://registry.npmjs.org/isbot/-/isbot-3.5.3.tgz";
+ sha512 = "mMLxdBl0hB6UEDibl/nXPSmF+kjX9cOKEJw1YeiKBGr6AdZq/LQUsk7UlDfr/D3gU+PdR6hf8o72BLOxzgw6EA==";
};
};
"isexe-2.0.0" = {
@@ -5062,13 +5062,22 @@ let
sha512 = "B/y4+b2O5G2gjuxIFtCE2EkM17R2NM7/3F8x0qcPsqy4V83bitJTIO4TIeZpYlzu/xy6INiY/+84BEm6+7Cmzg==";
};
};
- "mongodb-3.7.3" = {
+ "mongodb-4.9.1" = {
name = "mongodb";
packageName = "mongodb";
- version = "3.7.3";
+ version = "4.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mongodb/-/mongodb-3.7.3.tgz";
- sha512 = "Psm+g3/wHXhjBEktkxXsFMZvd3nemI0r3IPsE0bU+4//PnvNWKkzhZcEsbPcYiWqe8XqXJJEg4Tgtr7Raw67Yw==";
+ url = "https://registry.npmjs.org/mongodb/-/mongodb-4.9.1.tgz";
+ sha512 = "ZhgI/qBf84fD7sI4waZBoLBNJYPQN5IOC++SBCiPiyhzpNKOxN/fi0tBHvH2dEC42HXtNEbFB0zmNz4+oVtorQ==";
+ };
+ };
+ "mongodb-connection-string-url-2.5.3" = {
+ name = "mongodb-connection-string-url";
+ packageName = "mongodb-connection-string-url";
+ version = "2.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.3.tgz";
+ sha512 = "f+/WsED+xF4B74l3k9V/XkTVj5/fxFH2o5ToKXd8Iyi5UhM+sO9u0Ape17Mvl/GkZaFtM0HQnzAG5OTmhKw+tQ==";
};
};
"moo-0.5.1" = {
@@ -5170,49 +5179,49 @@ let
sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
};
};
- "n8n-core-0.133.1" = {
+ "n8n-core-0.134.0" = {
name = "n8n-core";
packageName = "n8n-core";
- version = "0.133.1";
+ version = "0.134.0";
src = fetchurl {
- url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.133.1.tgz";
- sha512 = "PB5tpo9I44FbSoYIkqplXuhTQGLg7WSJBM7V/wDtuO3l2mQT2L8DCSFz1G0UrKa8ykV7BN+lM1UfWqAx6dgHMg==";
+ url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.134.0.tgz";
+ sha512 = "9NejfRS1FvD7vHn7Oz1465mBNZNAmZ01epxF1NFTjvqx4kNWEYWmKssYE30RINegFAt6He+KJCGzj0AMdtm2iw==";
};
};
- "n8n-design-system-0.33.0" = {
+ "n8n-design-system-0.34.0" = {
name = "n8n-design-system";
packageName = "n8n-design-system";
- version = "0.33.0";
+ version = "0.34.0";
src = fetchurl {
- url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.33.0.tgz";
- sha512 = "JykV5I33Qy9Y7e/wrRX6rYPvtw+bwzg0Lw+fahAL1wZPYNej4UsBvcvQTLouHOys0r6jnnvfTJXBah0menOWGQ==";
+ url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.34.0.tgz";
+ sha512 = "4baEVsmgp+9bvwK0oecuzzq9d99ymfFD7rhL4wWlSyF1sC/4Ug7BJ1aoxS3LMOAwZxAZu3eeumXArHLYT7temw==";
};
};
- "n8n-editor-ui-0.159.2" = {
+ "n8n-editor-ui-0.160.0" = {
name = "n8n-editor-ui";
packageName = "n8n-editor-ui";
- version = "0.159.2";
+ version = "0.160.0";
src = fetchurl {
- url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.159.2.tgz";
- sha512 = "/1IpLjHT9J42gPwMXj7sh6INM85cg3eFRMeT19WsQOcLwfam5hlP0kTB3qqayRBfni79UFASPBGBW5+p753uYw==";
+ url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.160.0.tgz";
+ sha512 = "ys0InljStAlGA9AHH/RutOvkmkDgnC4onkRlSDFZTy9YCSNr5k0sCmhjfQiPe+zrnJUH200kQupcsZQN06AiQA==";
};
};
- "n8n-nodes-base-0.191.1" = {
+ "n8n-nodes-base-0.192.0" = {
name = "n8n-nodes-base";
packageName = "n8n-nodes-base";
- version = "0.191.1";
+ version = "0.192.0";
src = fetchurl {
- url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.191.1.tgz";
- sha512 = "5ZBnz98Q+w4jl9sm5c4qSqVeshOnavCauqR1sJm0uAhxZq67i+xiW3nyBxoHp4uQLKFAlwBQNFQ+atc+uBjoaA==";
+ url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.192.0.tgz";
+ sha512 = "k+xYWdjyM1wCXYfE8ak3lHbqiJrn4NPI2XiEM9oTdYIB9qDItlOSLLnGOVsypksJ71FJfSQVxkZfwpxVzTGbyg==";
};
};
- "n8n-workflow-0.115.0" = {
+ "n8n-workflow-0.116.0" = {
name = "n8n-workflow";
packageName = "n8n-workflow";
- version = "0.115.0";
+ version = "0.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.115.0.tgz";
- sha512 = "EWASemkbwDxzcqlEUPuyctV/dbxgMq/epeYHgqe9Wk0sijPSF9MWqYGdntANKYMfMuGN9GlyRxeFDZ9Nj5rFrg==";
+ url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.116.0.tgz";
+ sha512 = "i+5fcN6a4m4sn9awGuKHDrsAXLNyFNrgSPffxcP4Vj5R9nRg9zjocWNse05WzcRgzBCvujCOZo7O1ispX0MLCg==";
};
};
"named-placeholders-1.1.2" = {
@@ -5620,15 +5629,6 @@ let
sha512 = "d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==";
};
};
- "optional-require-1.1.8" = {
- name = "optional-require";
- packageName = "optional-require";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/optional-require/-/optional-require-1.1.8.tgz";
- sha512 = "jq83qaUb0wNg9Krv1c5OQ+58EK+vHde6aBPzLvPPqJm89UQWsvSuFy9X/OSNJnFeSOKo7btE0n8Nl2+nE+z5nA==";
- };
- };
"optionator-0.8.3" = {
name = "optionator";
packageName = "optionator";
@@ -5827,13 +5827,13 @@ let
sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==";
};
};
- "passport-0.5.3" = {
+ "passport-0.6.0" = {
name = "passport";
packageName = "passport";
- version = "0.5.3";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/passport/-/passport-0.5.3.tgz";
- sha512 = "gGc+70h4gGdBWNsR3FuV3byLDY6KBTJAIExGFXTpQaYfbbcHCBlRRKx7RBQSpqEqc5Hh2qVzRs7ssvSfOpkUEA==";
+ url = "https://registry.npmjs.org/passport/-/passport-0.6.0.tgz";
+ sha512 = "0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==";
};
};
"passport-cookie-1.0.9" = {
@@ -6538,13 +6538,13 @@ let
sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==";
};
};
- "readable-web-to-node-stream-2.0.0" = {
+ "readable-web-to-node-stream-3.0.2" = {
name = "readable-web-to-node-stream";
packageName = "readable-web-to-node-stream";
- version = "2.0.0";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz";
- sha512 = "+oZJurc4hXpaaqsN68GoZGQAQIA3qr09Or4fqEsargABnbe5Aau8hFn6ISVleT3cpY/0n/8drn7huyyEvTbghA==";
+ url = "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz";
+ sha512 = "ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==";
};
};
"readdirp-3.6.0" = {
@@ -6700,15 +6700,6 @@ let
sha512 = "wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==";
};
};
- "require-at-1.0.6" = {
- name = "require-at";
- packageName = "require-at";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-at/-/require-at-1.0.6.tgz";
- sha512 = "7i1auJbMUrXEAZCOQ0VNJgmcT2VOKPRl2YGJwgpHpC9CE91Mv4/4UYIUm4chGJaI381ZDq1JUicFii64Hapd8g==";
- };
- };
"require-directory-2.1.1" = {
name = "require-directory";
packageName = "require-directory";
@@ -6871,13 +6862,13 @@ let
sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==";
};
};
- "safe-stable-stringify-2.3.1" = {
+ "safe-stable-stringify-2.4.0" = {
name = "safe-stable-stringify";
packageName = "safe-stable-stringify";
- version = "2.3.1";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz";
- sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==";
+ url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.0.tgz";
+ sha512 = "eehKHKpab6E741ud7ZIMcXhKcP6TSIezPkNZhy5U8xC6+VvrRdUA2tMgxGxaGl4cz7c2Ew5+mg5+wNB16KQqrA==";
};
};
"safer-buffer-2.1.2" = {
@@ -7132,13 +7123,13 @@ let
sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==";
};
};
- "simple-git-3.13.0" = {
+ "simple-git-3.14.1" = {
name = "simple-git";
packageName = "simple-git";
- version = "3.13.0";
+ version = "3.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-3.13.0.tgz";
- sha512 = "VYrs3joeHvWGcN3K135RpGpPjm4AHYeOrclwew6LlfHgq6ozQYIW2yMnmjf4PCgVOuSYCbXkdUjyiFawuJz8MA==";
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.1.tgz";
+ sha512 = "1ThF4PamK9wBORVGMK9HK5si4zoGS2GpRO7tkAFObA4FZv6dKaCVHLQT+8zlgiBm6K2h+wEU9yOaFCu/SR3OyA==";
};
};
"simple-lru-cache-0.0.2" = {
@@ -7276,13 +7267,13 @@ let
sha512 = "VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==";
};
};
- "sqlite3-5.0.11" = {
+ "sqlite3-5.1.1" = {
name = "sqlite3";
packageName = "sqlite3";
- version = "5.0.11";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.11.tgz";
- sha512 = "4akFOr7u9lJEeAWLJxmwiV43DJcGV7w3ab7SjQFAFaTVyknY3rZjvXTKIVtWqUoY4xwhjwoHKYs2HDW2SoHVsA==";
+ url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.1.tgz";
+ sha512 = "mMinkrQr/LKJqFiFF+AF7imPSzRCCpTCreusZO3D/ssJHVjZOrbu2Caz+zPH5KTmGGXBxXMGSRDssL+44CLxvg==";
};
};
"sqlstring-2.3.3" = {
@@ -7501,13 +7492,13 @@ let
sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==";
};
};
- "supports-hyperlinks-2.2.0" = {
+ "supports-hyperlinks-2.3.0" = {
name = "supports-hyperlinks";
packageName = "supports-hyperlinks";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz";
- sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==";
+ url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz";
+ sha512 = "RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==";
};
};
"supports-preserve-symlinks-flag-1.0.0" = {
@@ -7735,13 +7726,13 @@ let
sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==";
};
};
- "token-types-2.1.1" = {
+ "token-types-4.2.1" = {
name = "token-types";
packageName = "token-types";
- version = "2.1.1";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/token-types/-/token-types-2.1.1.tgz";
- sha512 = "wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q==";
+ url = "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz";
+ sha512 = "6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==";
};
};
"toposort-2.0.2" = {
@@ -7789,6 +7780,15 @@ let
sha512 = "N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==";
};
};
+ "tr46-3.0.0" = {
+ name = "tr46";
+ packageName = "tr46";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz";
+ sha512 = "l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==";
+ };
+ };
"triple-beam-1.3.0" = {
name = "triple-beam";
packageName = "triple-beam";
@@ -7897,15 +7897,6 @@ let
sha512 = "/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==";
};
};
- "typedarray-to-buffer-3.1.5" = {
- name = "typedarray-to-buffer";
- packageName = "typedarray-to-buffer";
- version = "3.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz";
- sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==";
- };
- };
"typeorm-0.2.45" = {
name = "typeorm";
packageName = "typeorm";
@@ -8275,6 +8266,24 @@ let
sha512 = "2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==";
};
};
+ "webidl-conversions-7.0.0" = {
+ name = "webidl-conversions";
+ packageName = "webidl-conversions";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz";
+ sha512 = "VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==";
+ };
+ };
+ "whatwg-url-11.0.0" = {
+ name = "whatwg-url";
+ packageName = "whatwg-url";
+ version = "11.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz";
+ sha512 = "RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==";
+ };
+ };
"whatwg-url-5.0.0" = {
name = "whatwg-url";
packageName = "whatwg-url";
@@ -8338,13 +8347,13 @@ let
sha512 = "iCRnKVvGxOQdsKhcQId2PXV1vV3J/sDPXKA4Oe9+Eti2nb2ESEsYHRYls/UjoUW3bIc5ZDO8dTH50A/5iVN+bw==";
};
};
- "winston-3.8.1" = {
+ "winston-3.8.2" = {
name = "winston";
packageName = "winston";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-3.8.1.tgz";
- sha512 = "r+6YAiCR4uI3N8eQNOg8k3P3PqwAm20cLKlzVD9E66Ch39+LZC+VH1UKf9JemQj2B3QoUHfKD7Poewn0Pr3Y1w==";
+ url = "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz";
+ sha512 = "MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==";
};
};
"winston-transport-4.5.0" = {
@@ -8605,10 +8614,10 @@ in
n8n = nodeEnv.buildNodePackage {
name = "n8n";
packageName = "n8n";
- version = "0.193.3";
+ version = "0.194.0";
src = fetchurl {
- url = "https://registry.npmjs.org/n8n/-/n8n-0.193.3.tgz";
- sha512 = "iJA+ofjbTSEoxxSnA7iwdoJB3/PjgrDN5lZ0bXrBV+WOmoaBjKbdoxkhJJnUPQRnxQ/5ePEf5qgh7tVG9cEMKA==";
+ url = "https://registry.npmjs.org/n8n/-/n8n-0.194.0.tgz";
+ sha512 = "xbOMzq5AuP7EbvFJQ8VNE3mQYySH1yRS/Eb2ZyBe4ae33FQyZokLEwxGXFLzV2Caf+lX7xv/7d+6cU/m1jliSQ==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -8632,7 +8641,7 @@ in
sources."tslib-2.4.0"
];
})
- (sources."@azure/core-http-2.2.6" // {
+ (sources."@azure/core-http-2.2.7" // {
dependencies = [
sources."@azure/core-tracing-1.0.0-preview.13"
sources."tough-cookie-4.1.2"
@@ -8641,7 +8650,7 @@ in
];
})
sources."@azure/core-http-compat-1.3.0"
- (sources."@azure/core-lro-2.2.5" // {
+ (sources."@azure/core-lro-2.3.1" // {
dependencies = [
sources."tslib-2.4.0"
];
@@ -8651,7 +8660,7 @@ in
sources."tslib-2.4.0"
];
})
- (sources."@azure/core-rest-pipeline-1.9.1" // {
+ (sources."@azure/core-rest-pipeline-1.9.2" // {
dependencies = [
sources."@tootallnate/once-2.0.0"
sources."http-proxy-agent-5.0.0"
@@ -8663,7 +8672,7 @@ in
sources."tslib-2.4.0"
];
})
- (sources."@azure/core-util-1.0.0" // {
+ (sources."@azure/core-util-1.1.0" // {
dependencies = [
sources."tslib-2.4.0"
];
@@ -8686,17 +8695,17 @@ in
sources."tslib-2.4.0"
];
})
- sources."@azure/msal-browser-2.28.1"
- sources."@azure/msal-common-7.3.0"
- sources."@azure/msal-node-1.12.1"
+ sources."@azure/msal-browser-2.28.3"
+ sources."@azure/msal-common-7.4.1"
+ sources."@azure/msal-node-1.14.0"
(sources."@azure/storage-blob-12.11.0" // {
dependencies = [
sources."@azure/core-tracing-1.0.0-preview.13"
sources."tslib-2.4.0"
];
})
- sources."@babel/parser-7.18.13"
- sources."@babel/runtime-7.18.9"
+ sources."@babel/parser-7.19.1"
+ sources."@babel/runtime-7.19.0"
sources."@colors/colors-1.5.0"
(sources."@dabh/diagnostics-2.0.3" // {
dependencies = [
@@ -8719,7 +8728,7 @@ in
sources."@kafkajs/confluent-schema-registry-1.0.6"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
- sources."@mapbox/node-pre-gyp-1.0.9"
+ sources."@mapbox/node-pre-gyp-1.0.10"
sources."@n8n_io/riot-tmpl-1.0.1"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -8730,7 +8739,7 @@ in
sources."tslib-2.4.0"
];
})
- (sources."@oclif/core-1.16.0" // {
+ (sources."@oclif/core-1.16.3" // {
dependencies = [
sources."supports-color-8.1.1"
sources."tslib-2.4.0"
@@ -8771,15 +8780,15 @@ in
sources."@types/body-parser-1.19.2"
sources."@types/connect-3.4.35"
sources."@types/es-aggregate-error-1.0.2"
- sources."@types/express-4.17.13"
+ sources."@types/express-4.17.14"
sources."@types/express-jwt-0.0.42"
- sources."@types/express-serve-static-core-4.17.30"
+ sources."@types/express-serve-static-core-4.17.31"
sources."@types/express-unless-0.5.3"
sources."@types/json-schema-7.0.11"
- sources."@types/lodash-4.14.184"
+ sources."@types/lodash-4.14.185"
sources."@types/mime-3.0.1"
sources."@types/multer-1.4.7"
- sources."@types/node-18.7.14"
+ sources."@types/node-18.7.18"
(sources."@types/node-fetch-2.6.2" // {
dependencies = [
sources."form-data-3.0.1"
@@ -8790,13 +8799,15 @@ in
sources."@types/serve-static-1.15.0"
sources."@types/tough-cookie-2.3.8"
sources."@types/tunnel-0.0.3"
+ sources."@types/webidl-conversions-7.0.0"
+ sources."@types/whatwg-url-8.2.2"
sources."@vue/compiler-sfc-2.7.10"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
sources."access-control-1.0.1"
sources."acorn-8.8.0"
sources."acorn-walk-8.2.0"
- sources."address-1.2.0"
+ sources."address-1.2.1"
sources."adler-32-1.2.0"
sources."agent-base-6.0.2"
sources."ajv-6.12.6"
@@ -8849,7 +8860,7 @@ in
})
sources."available-typed-arrays-1.0.5"
sources."avsc-5.7.5"
- (sources."aws-sdk-2.1207.0" // {
+ (sources."aws-sdk-2.1218.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."events-1.1.1"
@@ -8892,7 +8903,11 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."bl-2.2.1"
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."bluebird-3.7.2"
sources."bn.js-4.12.0"
(sources."body-parser-1.20.0" // {
@@ -8906,7 +8921,7 @@ in
sources."brace-expansion-2.0.1"
sources."braces-3.0.2"
sources."browser-request-0.3.3"
- sources."bson-1.1.6"
+ sources."bson-4.7.0"
sources."buffer-5.7.1"
sources."buffer-equal-constant-time-1.0.1"
sources."buffer-from-1.1.2"
@@ -9011,7 +9026,7 @@ in
sources."cookie-parser-1.4.6"
sources."cookie-signature-1.0.6"
sources."copy-to-2.0.1"
- sources."core-js-3.25.0"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.3"
sources."crc-32-1.2.2"
sources."cron-1.7.2"
@@ -9027,7 +9042,7 @@ in
sources."css-select-4.3.0"
sources."css-what-6.1.0"
sources."cssfilter-0.0.10"
- sources."csstype-3.1.0"
+ sources."csstype-3.1.1"
sources."dashdash-1.14.1"
sources."data-uri-to-buffer-3.0.1"
sources."debug-4.3.4"
@@ -9069,7 +9084,7 @@ in
sources."ecdsa-sig-formatter-1.0.11"
sources."ee-first-1.1.1"
sources."ejs-3.1.8"
- sources."element-ui-2.15.9"
+ sources."element-ui-2.15.10"
sources."emoji-regex-8.0.0"
sources."enabled-1.0.2"
sources."encodeurl-1.0.2"
@@ -9078,7 +9093,7 @@ in
sources."entities-2.2.0"
sources."env-variable-0.0.6"
sources."err-code-2.0.3"
- sources."es-abstract-1.20.1"
+ sources."es-abstract-1.20.2"
sources."es-aggregate-error-1.0.8"
sources."es-array-method-boxes-properly-1.0.0"
sources."es-to-primitive-1.2.1"
@@ -9114,7 +9129,7 @@ in
sources."external-editor-3.1.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.11"
+ sources."fast-glob-3.2.12"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.13.0"
@@ -9125,7 +9140,7 @@ in
sources."escape-string-regexp-1.0.5"
];
})
- sources."file-type-14.7.1"
+ sources."file-type-16.5.4"
sources."file-uri-to-path-2.0.0"
(sources."filelist-1.0.4" // {
dependencies = [
@@ -9141,7 +9156,7 @@ in
})
sources."flatted-3.2.7"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-each-0.3.3"
sources."forever-agent-0.6.1"
sources."form-data-4.0.0"
@@ -9169,9 +9184,9 @@ in
sources."functions-have-names-1.2.3"
sources."gauge-3.0.2"
sources."generate-function-2.3.1"
- sources."generic-pool-3.8.2"
+ sources."generic-pool-3.9.0"
sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.1.2"
+ sources."get-intrinsic-1.1.3"
sources."get-package-type-0.1.0"
sources."get-port-5.1.1"
sources."get-symbol-description-1.0.0"
@@ -9194,7 +9209,7 @@ in
})
sources."globalthis-1.0.3"
sources."globby-11.1.0"
- (sources."gm-1.23.1" // {
+ (sources."gm-1.24.0" // {
dependencies = [
sources."cross-spawn-4.0.2"
sources."debug-3.2.7"
@@ -9255,7 +9270,7 @@ in
sources."internal-slot-1.0.3"
sources."interpret-1.4.0"
sources."ioredis-4.28.5"
- sources."ip-1.1.8"
+ sources."ip-2.0.0"
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-absolute-1.0.0"
@@ -9265,7 +9280,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.4"
+ sources."is-callable-1.2.6"
sources."is-core-module-2.10.0"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
@@ -9296,7 +9311,7 @@ in
sources."is-windows-1.0.2"
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
- sources."isbot-3.5.2"
+ sources."isbot-3.5.3"
sources."isexe-2.0.0"
sources."iso-639-1-2.1.15"
sources."isstream-0.1.2"
@@ -9430,7 +9445,18 @@ in
sources."moment-2.29.4"
sources."moment-timezone-0.5.37"
sources."monaco-editor-0.30.1"
- sources."mongodb-3.7.3"
+ (sources."mongodb-4.9.1" // {
+ dependencies = [
+ sources."denque-2.1.0"
+ ];
+ })
+ (sources."mongodb-connection-string-url-2.5.3" // {
+ dependencies = [
+ sources."tr46-3.0.0"
+ sources."webidl-conversions-7.0.0"
+ sources."whatwg-url-11.0.0"
+ ];
+ })
sources."moo-0.5.1"
(sources."mqtt-4.2.6" // {
dependencies = [
@@ -9438,12 +9464,7 @@ in
sources."readable-stream-3.6.0"
];
})
- (sources."mqtt-packet-6.10.0" // {
- dependencies = [
- sources."bl-4.1.0"
- sources."readable-stream-3.6.0"
- ];
- })
+ sources."mqtt-packet-6.10.0"
sources."ms-2.1.2"
(sources."mssql-8.1.4" // {
dependencies = [
@@ -9459,15 +9480,15 @@ in
];
})
sources."mz-2.7.0"
- sources."n8n-core-0.133.1"
- sources."n8n-design-system-0.33.0"
- sources."n8n-editor-ui-0.159.2"
- (sources."n8n-nodes-base-0.191.1" // {
+ sources."n8n-core-0.134.0"
+ sources."n8n-design-system-0.34.0"
+ sources."n8n-editor-ui-0.160.0"
+ (sources."n8n-nodes-base-0.192.0" // {
dependencies = [
sources."iconv-lite-0.6.3"
];
})
- sources."n8n-workflow-0.115.0"
+ sources."n8n-workflow-0.116.0"
(sources."named-placeholders-1.1.2" // {
dependencies = [
sources."lru-cache-4.1.5"
@@ -9523,7 +9544,6 @@ in
sources."open-7.4.2"
sources."openapi-types-10.0.0"
sources."openurl-1.1.1"
- sources."optional-require-1.1.8"
sources."optionator-0.8.3"
sources."ordered-read-streams-1.0.1"
sources."os-name-1.0.3"
@@ -9534,7 +9554,11 @@ in
sources."p-map-2.1.0"
sources."p-timeout-3.2.0"
sources."pac-proxy-agent-5.0.0"
- sources."pac-resolver-5.0.1"
+ (sources."pac-resolver-5.0.1" // {
+ dependencies = [
+ sources."ip-1.1.8"
+ ];
+ })
sources."packet-reader-1.0.0"
(sources."param-case-3.0.4" // {
dependencies = [
@@ -9553,7 +9577,7 @@ in
sources."tslib-2.4.0"
];
})
- sources."passport-0.5.3"
+ sources."passport-0.6.0"
sources."passport-cookie-1.0.9"
sources."passport-jwt-4.0.0"
sources."passport-strategy-1.0.0"
@@ -9664,7 +9688,11 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."readable-web-to-node-stream-2.0.0"
+ (sources."readable-web-to-node-stream-3.0.2" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."readdirp-3.6.0"
sources."rechoir-0.6.2"
sources."redeyed-2.1.1"
@@ -9692,7 +9720,6 @@ in
sources."tough-cookie-2.5.0"
];
})
- sources."require-at-1.0.6"
sources."require-directory-2.1.1"
sources."requires-port-1.0.0"
sources."resize-observer-polyfill-1.5.1"
@@ -9714,7 +9741,7 @@ in
sources."run-parallel-1.2.0"
sources."rxjs-6.6.7"
sources."safe-buffer-5.2.1"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."safer-buffer-2.1.2"
(sources."sanitize-html-2.7.0" // {
dependencies = [
@@ -9760,7 +9787,7 @@ in
})
sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
- sources."simple-git-3.13.0"
+ sources."simple-git-3.14.1"
sources."simple-lru-cache-0.0.2"
sources."simple-swizzle-0.2.2"
sources."slash-3.0.0"
@@ -9779,11 +9806,7 @@ in
sources."uuid-3.4.0"
];
})
- (sources."socks-2.7.0" // {
- dependencies = [
- sources."ip-2.0.0"
- ];
- })
+ sources."socks-2.7.0"
sources."socks-proxy-agent-5.0.1"
sources."source-map-0.6.1"
sources."source-map-js-1.0.2"
@@ -9794,7 +9817,7 @@ in
];
})
sources."sprintf-js-1.0.3"
- sources."sqlite3-5.0.11"
+ sources."sqlite3-5.1.1"
sources."sqlstring-2.3.3"
sources."sse-channel-3.1.1"
sources."ssf-0.11.2"
@@ -9825,7 +9848,7 @@ in
sources."strip-ansi-6.0.1"
sources."strtok3-6.3.0"
sources."supports-color-7.2.0"
- sources."supports-hyperlinks-2.2.0"
+ sources."supports-hyperlinks-2.3.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."swagger-ui-dist-4.14.0"
sources."swagger-ui-express-4.5.0"
@@ -9866,11 +9889,7 @@ in
sources."to-absolute-glob-2.0.2"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
- (sources."token-types-2.1.1" // {
- dependencies = [
- sources."@tokenizer/token-0.1.1"
- ];
- })
+ sources."token-types-4.2.1"
sources."toposort-2.0.2"
sources."tough-cookie-3.0.1"
sources."tr46-0.0.3"
@@ -9885,7 +9904,6 @@ in
sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."typedarray-to-buffer-3.1.5"
(sources."typeorm-0.2.45" // {
dependencies = [
sources."argparse-2.0.1"
@@ -9923,6 +9941,7 @@ in
(sources."urllib-2.38.1" // {
dependencies = [
sources."debug-2.6.9"
+ sources."ip-1.1.8"
sources."ms-2.0.0"
sources."statuses-1.5.0"
];
@@ -9967,7 +9986,7 @@ in
sources."semver-5.7.1"
];
})
- (sources."winston-3.8.1" // {
+ (sources."winston-3.8.2" // {
dependencies = [
sources."readable-stream-3.6.0"
];
diff --git a/pkgs/applications/networking/soju/default.nix b/pkgs/applications/networking/soju/default.nix
index dc20578cf021..ae424a1fe50a 100644
--- a/pkgs/applications/networking/soju/default.nix
+++ b/pkgs/applications/networking/soju/default.nix
@@ -1,38 +1,65 @@
-{ lib, buildGoModule, fetchFromSourcehut, installShellFiles, scdoc }:
+{ lib
+, buildGoModule
+, fetchFromSourcehut
+, installShellFiles
+, scdoc
+}:
buildGoModule rec {
pname = "soju";
- version = "0.4.0";
+ version = "0.5.2";
src = fetchFromSourcehut {
owner = "~emersion";
repo = "soju";
rev = "v${version}";
- sha256 = "sha256-4ixPEnSa1m52Hu1dzxMG8c0bkqGN04vRlIzvdZ/ES4A=";
+ hash = "sha256-lpLWqaSFx/RJg73n5XNN/qUXHfZsBkbABoYcgxpK3rU=";
};
- vendorSha256 = "sha256-UVFi/QK2zwzhBkPXEJLYc5WSu3OOvWTVVGkMhrrufyc=";
+ vendorHash = "sha256-n1wwi7I2hDLOe08RkJOiopDUGI6uhipNpBdeOLARIoU=";
subPackages = [
"cmd/soju"
"cmd/sojuctl"
- "contrib/znc-import.go"
+ "contrib/migrate-db"
+ "contrib/znc-import"
];
nativeBuildInputs = [
- scdoc
installShellFiles
+ scdoc
];
+ ldflags = [ "-s" "-w" ];
+
+ postBuild = ''
+ make doc/soju.1
+ '';
+
postInstall = ''
- scdoc < doc/soju.1.scd > doc/soju.1
installManPage doc/soju.1
'';
+ preCheck = ''
+ # Test all targets.
+ unset subPackages
+
+ # Disable a test that requires an additional service.
+ rm database/postgres_test.go
+ '';
+
meta = with lib; {
description = "A user-friendly IRC bouncer";
+ longDescription = ''
+ soju is a user-friendly IRC bouncer. soju connects to upstream IRC servers
+ on behalf of the user to provide extra functionality. soju supports many
+ features such as multiple users, numerous IRCv3 extensions, chat history
+ playback and detached channels. It is well-suited for both small and large
+ deployments.
+ '';
homepage = "https://soju.im";
+ changelog = "https://git.sr.ht/~emersion/soju/refs/${src.rev}";
license = licenses.agpl3Only;
- maintainers = with maintainers; [ malvo ];
+ maintainers = with maintainers; [ azahi malvo ];
};
}
diff --git a/pkgs/applications/science/robotics/mavproxy/default.nix b/pkgs/applications/science/robotics/mavproxy/default.nix
index b317913f0e7b..4aee366e987c 100644
--- a/pkgs/applications/science/robotics/mavproxy/default.nix
+++ b/pkgs/applications/science/robotics/mavproxy/default.nix
@@ -4,11 +4,11 @@
buildPythonApplication rec {
pname = "MAVProxy";
- version = "1.8.55";
+ version = "1.8.56";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-RS3/U52n1Gs3cJtlZeE5z5q1EmC8NrPFt0mHhvIWVTA=";
+ sha256 = "sha256-wyY9oYWABkXNhlZW4RFuyZy/HEnv7cGFVbXVoEnIF1Q=";
};
postPatch = ''
diff --git a/pkgs/applications/version-management/yadm/default.nix b/pkgs/applications/version-management/yadm/default.nix
index c48962841fd8..32c2e14da1cf 100644
--- a/pkgs/applications/version-management/yadm/default.nix
+++ b/pkgs/applications/version-management/yadm/default.nix
@@ -29,7 +29,7 @@ to support their use in yadm.
resholve.mkDerivation rec {
pname = "yadm";
- version = "3.1.1";
+ version = "3.2.1";
nativeBuildInputs = [ installShellFiles ];
@@ -37,7 +37,7 @@ resholve.mkDerivation rec {
owner = "TheLocehiliosan";
repo = "yadm";
rev = version;
- hash = "sha256-bgiRBlqEjDq0gQ0+aUWpFDeE2piFX3Gy2gEAXgChAOk=";
+ hash = "sha256:0h3gxhdf32g21xx9si0lv0sa4ipb1k0n5qpln0w2vipvfgakn5mn";
};
dontConfigure = true;
diff --git a/pkgs/build-support/build-bazel-package/default.nix b/pkgs/build-support/build-bazel-package/default.nix
index f379334786b6..d69fddaf03fa 100644
--- a/pkgs/build-support/build-bazel-package/default.nix
+++ b/pkgs/build-support/build-bazel-package/default.nix
@@ -90,6 +90,7 @@ in stdenv.mkDerivation (fBuildAttrs // {
BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \
USER=homeless-shelter \
bazel \
+ --batch \
--output_base="$bazelOut" \
--output_user_root="$bazelUserRoot" \
${if fetchConfigured then "build --nobuild" else "fetch"} \
@@ -211,6 +212,7 @@ in stdenv.mkDerivation (fBuildAttrs // {
BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \
USER=homeless-shelter \
bazel \
+ --batch \
--output_base="$bazelOut" \
--output_user_root="$bazelUserRoot" \
build \
diff --git a/pkgs/data/fonts/unifont/default.nix b/pkgs/data/fonts/unifont/default.nix
index b8a780964661..03ec6092ad1a 100644
--- a/pkgs/data/fonts/unifont/default.nix
+++ b/pkgs/data/fonts/unifont/default.nix
@@ -4,16 +4,16 @@
stdenv.mkDerivation rec {
pname = "unifont";
- version = "14.0.04";
+ version = "15.0.01";
ttf = fetchurl {
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.ttf";
- hash = "sha256-IR0d3dxWZRHbJUx0bYPfd7ShubJUnN/+Cj6QHkbu/qg=";
+ hash = "sha256-KZRZvDTpFbHBjdOGd3OfQdCyptebk/SAzRV+8k2mdas=";
};
pcf = fetchurl {
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.pcf.gz";
- hash = "sha256-Q5lR7hX4+P+Q9fVDjw9GtLGqUIslsKOWnn8je85fH+0=";
+ hash = "sha256-77rkcU0YajAVugWHnGscaFvcFTgWm+1WPLknQZvTjN0=";
};
nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ];
diff --git a/pkgs/data/fonts/unifont_upper/default.nix b/pkgs/data/fonts/unifont_upper/default.nix
index 1020c2f1f132..026a262a8455 100644
--- a/pkgs/data/fonts/unifont_upper/default.nix
+++ b/pkgs/data/fonts/unifont_upper/default.nix
@@ -1,7 +1,7 @@
{ lib, fetchurl }:
let
- version = "14.0.04";
+ version = "15.0.01";
in fetchurl rec {
name = "unifont_upper-${version}";
@@ -13,7 +13,7 @@ in fetchurl rec {
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
- hash = "sha256-cNw+3Y/6h2TD6ZSaGO32NNyiTwCUSJsA3Q5W5/m+eLE=";
+ hash = "sha256-cGX9umTGRfrQT3gwPgNqxPHB7Un3ZT3b7hPy4IP45Fk=";
meta = with lib; {
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
diff --git a/pkgs/data/misc/unicode-character-database/default.nix b/pkgs/data/misc/unicode-character-database/default.nix
index 26d31a292119..3c21a6f29560 100644
--- a/pkgs/data/misc/unicode-character-database/default.nix
+++ b/pkgs/data/misc/unicode-character-database/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
pname = "unicode-character-database";
- version = "14.0.0";
+ version = "15.0.0";
src = fetchurl {
url = "https://www.unicode.org/Public/zipped/${version}/UCD.zip";
- sha256 = "sha256-AzpSdrXXr4hEWJ+ONILzl3qDhecdEH03UFVGUXjCNgA=";
+ sha256 = "sha256-X73kAPPmh9JcybCo0w12GedssvTD6Fup347BMSy2cYw=";
};
nativeBuildInputs = [
diff --git a/pkgs/data/misc/unicode-emoji/default.nix b/pkgs/data/misc/unicode-emoji/default.nix
index 9fe9ff78f804..bf27cb03e285 100644
--- a/pkgs/data/misc/unicode-emoji/default.nix
+++ b/pkgs/data/misc/unicode-emoji/default.nix
@@ -4,7 +4,7 @@
}:
let
- version = "14.0";
+ version = "15.0";
fetchData = { file, sha256 }: fetchurl {
url = "https://www.unicode.org/Public/emoji/${version}/${file}";
@@ -21,15 +21,15 @@ let
srcs = {
emoji-sequences = fetchData {
file = "emoji-sequences.txt";
- sha256 = "sha256-4helD/0oe+UmNIuVxPx/P0R9V10EY/RccewdeemeGxE=";
+ sha256 = "sha256-vRpXHAcdY3arTnFwBH3WUW3DOh8B3L9+sRcecLHZ2lg=";
};
emoji-test = fetchData {
file = "emoji-test.txt";
- sha256 = "sha256-DDOVhnFzfvowINzBZ7dGYMZnL4khyRWVzrLL95djsUg=";
+ sha256 = "sha256-3Rega6+ZJ5jXRhLFL/i/12V5IypEo5FaGG6Wf9Bj0UU=";
};
emoji-zwj-sequences = fetchData {
file = "emoji-zwj-sequences.txt";
- sha256 = "sha256-owlGLICFkyEsIHz/DUZucxjBmgVO40A69BCJPbIYDA0=";
+ sha256 = "sha256-9AqrpyUCiBcR/fafa4VaH0pT5o1YzEZDVySsX4ja1u8=";
};
};
in
diff --git a/pkgs/data/misc/unihan-database/default.nix b/pkgs/data/misc/unihan-database/default.nix
index 8fb065d6b00d..fc0826d7f283 100644
--- a/pkgs/data/misc/unihan-database/default.nix
+++ b/pkgs/data/misc/unihan-database/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
pname = "unihan-database";
- version = "14.0.0";
+ version = "15.0.0";
src = fetchurl {
url = "https://www.unicode.org/Public/zipped/${version}/Unihan.zip";
- hash = "sha256-KuRRmyuCzU0VN5wX5Xv7EsM8D1TaSXfeA7KwS88RhS0=";
+ hash = "sha256-JLFUaR/JfLRCZ7kl1iBkKXCGs/iWtXqBgce21CcCoCY=";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/gnome/core/gucharmap/default.nix b/pkgs/desktops/gnome/core/gucharmap/default.nix
index dbea63db4a35..df546c6590de 100644
--- a/pkgs/desktops/gnome/core/gucharmap/default.nix
+++ b/pkgs/desktops/gnome/core/gucharmap/default.nix
@@ -45,7 +45,7 @@ let
};
in stdenv.mkDerivation rec {
pname = "gucharmap";
- version = "14.0.3";
+ version = "15.0.0";
outputs = [ "out" "lib" "dev" "devdoc" ];
@@ -54,7 +54,7 @@ in stdenv.mkDerivation rec {
owner = "GNOME";
repo = pname;
rev = version;
- sha256 = "sha256-xO34CR+SWxtHuP6G8m0jla0rivVp3ddrsODNo50MhHw=";
+ sha256 = "sha256-ymEtiOKdmQ1XWrGk40csX5O5BiwxH3aCPboVekcUukQ=";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/pantheon/apps/elementary-music/default.nix b/pkgs/desktops/pantheon/apps/elementary-music/default.nix
index aafa2aea5200..0a59e4559b8b 100644
--- a/pkgs/desktops/pantheon/apps/elementary-music/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-music/default.nix
@@ -9,6 +9,8 @@
, python3
, vala
, wrapGAppsHook4
+, elementary-gtk-theme
+, elementary-icon-theme
, glib
, granite7
, gst_all_1
@@ -33,6 +35,24 @@ stdenv.mkDerivation rec {
url = "https://github.com/elementary/music/commit/97a437edc7652e0b85b7d3c6fd87089c14ec02e2.patch";
sha256 = "sha256-VmK5dKfSKWAIxfaKXsC8tjg6Pqq1XSGxJDQOZWJX92w=";
})
+ # Skip invalid files instead of stopping playback
+ # https://github.com/elementary/music/pull/711
+ (fetchpatch {
+ url = "https://github.com/elementary/music/commit/88f332197d2131daeff3306ec2a484a28fa4db21.patch";
+ sha256 = "sha256-Zga0UmL1PAq4P58IjOuEiXGGn187a0/LHbXXze4sSpY=";
+ })
+ # Enable the NEXT button if repeat mode is set to ALL or ONE
+ # https://github.com/elementary/music/pull/712
+ (fetchpatch {
+ url = "https://github.com/elementary/music/commit/3249e3ca247dfd5ff6b14f4feeeeed63b435bcb8.patch";
+ sha256 = "sha256-nx/nlSSRxu4wy8QG5yYBi0BdRoUmnyry7mwzuk5NJxU=";
+ })
+ # Hard code GTK styles
+ # https://github.com/elementary/music/pull/723
+ (fetchpatch {
+ url = "https://github.com/elementary/music/commit/4e22268d38574e56eb3b42ae201c99cc98b510db.patch";
+ sha256 = "sha256-DZds7pg0vYL9vga+tP7KJHcjQTmdKHS+D+q/2aYfMmk=";
+ })
];
nativeBuildInputs = [
@@ -45,6 +65,7 @@ stdenv.mkDerivation rec {
];
buildInputs = [
+ elementary-icon-theme
glib
granite7
gtk4
@@ -61,6 +82,15 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py
'';
+ preFixup = ''
+ gappsWrapperArgs+=(
+ # The GTK theme is hardcoded.
+ --prefix XDG_DATA_DIRS : "${elementary-gtk-theme}/share"
+ # The icon theme is hardcoded.
+ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
+ )
+ '';
+
passthru = {
updateScript = nix-update-script {
attrPath = "pantheon.${pname}";
diff --git a/pkgs/development/compilers/gavrasm/default.nix b/pkgs/development/compilers/gavrasm/default.nix
index 0a969a80c121..d77ff0b8e6aa 100644
--- a/pkgs/development/compilers/gavrasm/default.nix
+++ b/pkgs/development/compilers/gavrasm/default.nix
@@ -4,12 +4,12 @@ assert lib.assertOneOf "lang" lang ["cn" "de" "en" "fr" "tr"];
stdenv.mkDerivation rec {
pname = "gavrasm";
- version = "5.1";
+ version = "5.4";
flatVersion = lib.strings.replaceStrings ["."] [""] version;
src = fetchzip {
url = "http://www.avr-asm-tutorial.net/gavrasm/v${flatVersion}/gavrasm_sources_lin_${flatVersion}.zip";
- sha256 = "0k94f8k4980wvhx3dpl1savpx4wqv9r5090l0skg2k8vlhsv58gf";
+ sha256 = "sha256-uTalb8Wzn2RAoUKZx9RZFCX+V9HUEtUnJ4eSltFumh0=";
stripRoot=false;
};
diff --git a/pkgs/development/compilers/jetbrains-jdk/default.nix b/pkgs/development/compilers/jetbrains-jdk/default.nix
index b49898e9292a..8f7896aa6bfa 100644
--- a/pkgs/development/compilers/jetbrains-jdk/default.nix
+++ b/pkgs/development/compilers/jetbrains-jdk/default.nix
@@ -1,16 +1,24 @@
-{ lib, openjdk11, fetchFromGitHub, jetbrains }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, jetbrains
+, openjdk17
+}:
-openjdk11.overrideAttrs (oldAttrs: rec {
+openjdk17.overrideAttrs (oldAttrs: rec {
pname = "jetbrains-jdk";
- version = "11_0_13-b1751.25";
+ version = "17.0.3-b469.37";
src = fetchFromGitHub {
owner = "JetBrains";
repo = "JetBrainsRuntime";
rev = "jb${version}";
- sha256 = "sha256-TPNYZUkAoiZfp7Ci3fslKnRNGY1lnyIhXYUt6J31lwI=";
+ hash =
+ # Upstream issue: https://github.com/JetBrains/JetBrainsRuntime/issues/163
+ if stdenv.isDarwin then "sha256-ExRvjs53rIuhUx4oCgAqu1Av3CNAgmE1ZlN0srEh3XM="
+ else "sha256-O+OIDRJcIsb/vhO2+SYuYdUYWYTGkBcQ9cHTExLIFDE=";
};
- patches = [];
+
meta = with lib; {
description = "An OpenJDK fork to better support Jetbrains's products.";
longDescription = ''
@@ -25,9 +33,12 @@ openjdk11.overrideAttrs (oldAttrs: rec {
your own risk.
'';
homepage = "https://confluence.jetbrains.com/display/JBR/JetBrains+Runtime";
- inherit (openjdk11.meta) license platforms mainProgram;
+ inherit (openjdk17.meta) license platforms mainProgram;
maintainers = with maintainers; [ edwtjo ];
+
+ broken = stdenv.isDarwin;
};
+
passthru = oldAttrs.passthru // {
home = "${jetbrains.jdk}/lib/openjdk";
};
diff --git a/pkgs/development/compilers/julia/1.8-bin.nix b/pkgs/development/compilers/julia/1.8-bin.nix
index b0b8351efc89..67241bbdcfe0 100644
--- a/pkgs/development/compilers/julia/1.8-bin.nix
+++ b/pkgs/development/compilers/julia/1.8-bin.nix
@@ -9,6 +9,10 @@ stdenv.mkDerivation rec {
url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz";
sha256 = "sha256-MwVO5kfuik+1T8BREOB+C1PgRZH+U9Cky0x+16BekfE=";
};
+ aarch64-linux = fetchurl {
+ url = "https://julialang-s3.julialang.org/bin/linux/aarch64/${lib.versions.majorMinor version}/julia-${version}-linux-aarch64.tar.gz";
+ sha256 = "sha256-ugaDesKJlUe7t5mYnxFGT+zWeCImhxw7ekhhlIEEJnk=";
+ };
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
postPatch = ''
@@ -53,8 +57,8 @@ stdenv.mkDerivation rec {
homepage = "https://julialang.org";
# Bundled and linked with various GPL code, although Julia itself is MIT.
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ ninjin raskin ];
- platforms = [ "x86_64-linux" ];
+ maintainers = with lib.maintainers; [ ninjin raskin nickcao ];
+ platforms = [ "x86_64-linux" "aarch64-linux" ];
mainProgram = "julia";
};
}
diff --git a/pkgs/development/compilers/lingua-franca/default.nix b/pkgs/development/compilers/lingua-franca/default.nix
index 5f5de16b44b8..9ccef23856b0 100644
--- a/pkgs/development/compilers/lingua-franca/default.nix
+++ b/pkgs/development/compilers/lingua-franca/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace bin/lfc \
--replace 'base=`dirname $(dirname ''${abs_path})`' "base='$out'" \
- --replace "run_lfc_with_args" "${jdk17_headless}/bin/java -jar $out/lib/jars/org.lflang.lfc-${version}-SNAPSHOT-all.jar"
+ --replace "run_lfc_with_args" "${jdk17_headless}/bin/java -jar $out/lib/jars/org.lflang.lfc-${version}-all.jar"
'';
installPhase = ''
diff --git a/pkgs/development/compilers/llvm/14/compiler-rt/default.nix b/pkgs/development/compilers/llvm/14/compiler-rt/default.nix
index cc1a8dc0481f..28c77d5ffb39 100644
--- a/pkgs/development/compilers/llvm/14/compiler-rt/default.nix
+++ b/pkgs/development/compilers/llvm/14/compiler-rt/default.nix
@@ -41,9 +41,10 @@ stdenv.mkDerivation {
"-DCOMPILER_RT_BUILD_SANITIZERS=OFF"
"-DCOMPILER_RT_BUILD_XRAY=OFF"
"-DCOMPILER_RT_BUILD_LIBFUZZER=OFF"
- "-DCOMPILER_RT_BUILD_PROFILE=OFF"
"-DCOMPILER_RT_BUILD_MEMPROF=OFF"
"-DCOMPILER_RT_BUILD_ORC=OFF" # may be possible to build with musl if necessary
+ ] ++ lib.optionals (useLLVM || bareMetal) [
+ "-DCOMPILER_RT_BUILD_PROFILE=OFF"
] ++ lib.optionals ((useLLVM && !haveLibc) || bareMetal) [
"-DCMAKE_C_COMPILER_WORKS=ON"
"-DCMAKE_CXX_COMPILER_WORKS=ON"
diff --git a/pkgs/development/compilers/llvm/14/lld/default.nix b/pkgs/development/compilers/llvm/14/lld/default.nix
index 1ae6d4ea6fce..2e0d893c7feb 100644
--- a/pkgs/development/compilers/llvm/14/lld/default.nix
+++ b/pkgs/development/compilers/llvm/14/lld/default.nix
@@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
cmakeFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"-DLLVM_TABLEGEN_EXE=${buildLlvmTools.llvm}/bin/llvm-tblgen"
];
+ LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-Wl,-z,stack-size=2097152";
outputs = [ "out" "lib" "dev" ];
diff --git a/pkgs/development/coq-modules/QuickChick/default.nix b/pkgs/development/coq-modules/QuickChick/default.nix
index 0bbcde784ac1..7564721d8c01 100644
--- a/pkgs/development/coq-modules/QuickChick/default.nix
+++ b/pkgs/development/coq-modules/QuickChick/default.nix
@@ -6,7 +6,7 @@ let recent = lib.versions.isGe "8.7" coq.coq-version; in
owner = "QuickChick";
inherit version;
defaultVersion = with lib; with versions; lib.switch [ coq.coq-version ssreflect.version ] [
- { cases = [ (range "8.13" "8.15") pred.true ]; out = "1.6.2"; }
+ { cases = [ (range "8.13" "8.16") pred.true ]; out = "1.6.4"; }
{ cases = [ "8.13" pred.true ]; out = "1.5.0"; }
{ cases = [ "8.12" pred.true ]; out = "1.4.0"; }
{ cases = [ "8.11" pred.true ]; out = "1.3.2"; }
@@ -17,6 +17,7 @@ let recent = lib.versions.isGe "8.7" coq.coq-version; in
{ cases = [ "8.6" pred.true ]; out = "20171102"; }
{ cases = [ "8.5" pred.true ]; out = "20170512"; }
] null;
+ release."1.6.4".sha256 = "sha256-C1060wPSU33yZAFLxGmZlAMXASnx98qz3oSLO8DO+mM=";
release."1.6.2".sha256 = "0g5q9zw3xd4zndihq96nxkq4w3dh05418wzlwdk1nnn3b6vbx6z0";
release."1.5.0".sha256 = "1lq8x86vd3vqqh2yq6hvyagpnhfq5wmk5pg2z0xq7b7dcw7hyfkw";
release."1.4.0".sha256 = "068p48pm5yxjc3yv8qwzp25bp9kddvxj81l31mjkyx3sdrsw3kyc";
diff --git a/pkgs/development/embedded/arduino/arduino-cli/default.nix b/pkgs/development/embedded/arduino/arduino-cli/default.nix
index 45f03f309a04..79e607690631 100644
--- a/pkgs/development/embedded/arduino/arduino-cli/default.nix
+++ b/pkgs/development/embedded/arduino/arduino-cli/default.nix
@@ -4,18 +4,18 @@ let
pkg = buildGoModule rec {
pname = "arduino-cli";
- version = "0.25.1";
+ version = "0.27.1";
src = fetchFromGitHub {
owner = "arduino";
repo = pname;
rev = version;
- sha256 = "sha256-NuYPqJ/Fvt1P6KFXTIQaAvXYJgTwWrMspPags0Q06cE=";
+ sha256 = "sha256-lwLzMUMHwheZHrjPttdk6TFsjt8SymHkBMtXTbr/nYE=";
};
subPackages = [ "." ];
- vendorSha256 = "sha256-u5YCwnciXlWgqQd9CXfXNipLLlNE3p8+bL6WaTvOkVA=";
+ vendorSha256 = "sha256-kEM6eCWTI+XKs58cVhNfjJsIwC3r1ATy1sFbjtorgGY=";
doCheck = false;
diff --git a/pkgs/development/interpreters/janet/darwin-remove-net-test.patch b/pkgs/development/interpreters/janet/darwin-remove-net-test.patch
deleted file mode 100644
index b2a66d5465ea..000000000000
--- a/pkgs/development/interpreters/janet/darwin-remove-net-test.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/test/suite0009.janet b/test/suite0009.janet
-index 6095bc60..25360d60 100644
---- a/test/suite0009.janet
-+++ b/test/suite0009.janet
-@@ -174,15 +174,6 @@
- (defer (:close stream)
- (check-matching-names stream)))
-
--# Test localname and peername
--(repeat 20
-- (with [s (net/server "127.0.0.1" "8000" names-handler)]
-- (defn test-names []
-- (with [conn (net/connect "127.0.0.1" "8000")]
-- (check-matching-names conn)))
-- (repeat 20 (test-names)))
-- (gccollect))
--
- # Create pipe
-
- (var pipe-counter 0)
\ No newline at end of file
diff --git a/pkgs/development/interpreters/janet/default.nix b/pkgs/development/interpreters/janet/default.nix
index ec182705a37a..cb42276f7d4a 100644
--- a/pkgs/development/interpreters/janet/default.nix
+++ b/pkgs/development/interpreters/janet/default.nix
@@ -11,10 +11,6 @@ stdenv.mkDerivation rec {
sha256 = "sha256-uGbaoWJAWbSQ7QkocU7gFZUiWb0GD8mtuO7V0sUXTv0=";
};
- # This release fails the test suite on darwin, remove when debugged.
- # See https://github.com/NixOS/nixpkgs/pull/150618 for discussion.
- patches = lib.optionals stdenv.isDarwin ./darwin-remove-net-test.patch;
-
postPatch = ''
substituteInPlace janet.1 \
--replace /usr/local/ $out/
@@ -29,7 +25,7 @@ stdenv.mkDerivation rec {
doInstallCheck = true;
installCheckPhase = ''
- $out/bin/janet --help
+ $out/bin/janet -e '(+ 1 2 3)'
'';
meta = with lib; {
@@ -38,7 +34,5 @@ stdenv.mkDerivation rec {
license = licenses.mit;
maintainers = with maintainers; [ andrewchambers peterhoeg ];
platforms = platforms.all;
- # Marked as broken when patch is applied, see comment above patch.
- broken = stdenv.isDarwin;
};
}
diff --git a/pkgs/development/interpreters/python/hooks/default.nix b/pkgs/development/interpreters/python/hooks/default.nix
index 5d605b240ad8..63e94b567035 100644
--- a/pkgs/development/interpreters/python/hooks/default.nix
+++ b/pkgs/development/interpreters/python/hooks/default.nix
@@ -92,9 +92,8 @@ in rec {
pythonCatchConflictsHook = callPackage ({ setuptools }:
makeSetupHook {
name = "python-catch-conflicts-hook";
- deps = [ setuptools ];
substitutions = {
- inherit pythonInterpreter;
+ inherit pythonInterpreter pythonSitePackages setuptools;
catchConflicts=../catch_conflicts/catch_conflicts.py;
};
} ./python-catch-conflicts-hook.sh) {};
@@ -115,6 +114,11 @@ in rec {
};
} ./python-namespaces-hook.sh) {};
+ pythonOutputDistHook = callPackage ({ }:
+ makeSetupHook {
+ name = "python-output-dist-hook";
+ } ./python-output-dist-hook.sh ) {};
+
pythonRecompileBytecodeHook = callPackage ({ }:
makeSetupHook {
name = "python-recompile-bytecode-hook";
diff --git a/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh b/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
index 374a2eddb407..0abcad3c42f2 100644
--- a/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
+++ b/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh
@@ -2,7 +2,7 @@
echo "Sourcing python-catch-conflicts-hook.sh"
pythonCatchConflictsPhase() {
- @pythonInterpreter@ @catchConflicts@
+ PYTHONPATH="@setuptools@/@pythonSitePackages@:$PYTHONPATH" @pythonInterpreter@ @catchConflicts@
}
if [ -z "${dontUsePythonCatchConflicts-}" ]; then
diff --git a/pkgs/development/interpreters/python/hooks/python-output-dist-hook.sh b/pkgs/development/interpreters/python/hooks/python-output-dist-hook.sh
new file mode 100644
index 000000000000..e73e45cd597a
--- /dev/null
+++ b/pkgs/development/interpreters/python/hooks/python-output-dist-hook.sh
@@ -0,0 +1,10 @@
+# Setup hook for storing dist folder (wheels/sdists) in a separate output
+echo "Sourcing python-catch-conflicts-hook.sh"
+
+pythonOutputDistPhase() {
+ echo "Executing pythonOutputDistPhase"
+ mv "dist" "$dist"
+ echo "Finished executing pythonOutputDistPhase"
+}
+
+preFixupPhases+=" pythonOutputDistPhase"
diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix
index f37ad592cb49..abb1ceb7879e 100644
--- a/pkgs/development/interpreters/python/mk-python-derivation.nix
+++ b/pkgs/development/interpreters/python/mk-python-derivation.nix
@@ -17,6 +17,7 @@
, pythonCatchConflictsHook
, pythonImportsCheckHook
, pythonNamespacesHook
+, pythonOutputDistHook
, pythonRemoveBinBytecodeHook
, pythonRemoveTestsDirHook
, setuptoolsBuildHook
@@ -49,6 +50,8 @@
# Enabled to detect some (native)BuildInputs mistakes
, strictDeps ? true
+, outputs ? [ "out" ]
+
# used to disable derivation, useful for specific python versions
, disabled ? false
@@ -106,11 +109,13 @@ else
let
inherit (python) stdenv;
+ withDistOutput = lib.elem format ["pyproject" "setuptools" "flit"];
+
name_ = name;
self = toPythonModule (stdenv.mkDerivation ((builtins.removeAttrs attrs [
"disabled" "checkPhase" "checkInputs" "doCheck" "doInstallCheck" "dontWrapPythonPrograms" "catchConflicts" "format"
- "disabledTestPaths"
+ "disabledTestPaths" "outputs"
]) // {
name = namePrefix + name_;
@@ -121,7 +126,7 @@ let
ensureNewerSourcesForZipFilesHook # move to wheel installer (pip) or builder (setuptools, flit, ...)?
pythonRemoveTestsDirHook
] ++ lib.optionals catchConflicts [
- setuptools pythonCatchConflictsHook
+ pythonCatchConflictsHook
] ++ lib.optionals removeBinBytecode [
pythonRemoveBinBytecodeHook
] ++ lib.optionals (lib.hasSuffix "zip" (attrs.src.name or "")) [
@@ -144,6 +149,8 @@ let
] ++ lib.optionals (python.pythonAtLeast "3.3") [
# Optionally enforce PEP420 for python3
pythonNamespacesHook
+ ] ++ lib.optionals withDistOutput [
+ pythonOutputDistHook
] ++ nativeBuildInputs;
buildInputs = buildInputs ++ pythonPath;
@@ -177,6 +184,8 @@ let
# Python packages built through cross-compilation are always for the host platform.
disallowedReferences = lib.optionals (python.stdenv.hostPlatform != python.stdenv.buildPlatform) [ python.pythonForBuild ];
+ outputs = outputs ++ lib.optional withDistOutput "dist";
+
meta = {
# default to python's platforms
platforms = python.meta.platforms;
diff --git a/pkgs/development/libraries/aqbanking/sources.nix b/pkgs/development/libraries/aqbanking/sources.nix
index 2adea166da55..d2488b8700ea 100644
--- a/pkgs/development/libraries/aqbanking/sources.nix
+++ b/pkgs/development/libraries/aqbanking/sources.nix
@@ -15,8 +15,8 @@
# https://www.aquamaniac.de/rdm/projects/aqbanking/files
aqbanking = {
- version = "6.5.0";
- hash = "sha256-TS076ghulq2ntoGSBtTrQWjOt+Mtzppo3Gxuq8yetj4=";
- releaseId = "435";
+ version = "6.5.3";
+ hash = "sha256-bGK/JqpC5psh4Yi1T2pdgl1to03hoUy8O2fYWpcFE24=";
+ releaseId = "467";
};
}
diff --git a/pkgs/development/libraries/cmark-gfm/default.nix b/pkgs/development/libraries/cmark-gfm/default.nix
index 6edfb1d898af..3459f2a849b0 100644
--- a/pkgs/development/libraries/cmark-gfm/default.nix
+++ b/pkgs/development/libraries/cmark-gfm/default.nix
@@ -1,18 +1,18 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cmark-gfm";
- version = "0.29.0.gfm.5";
+ version = "0.29.0.gfm.6";
src = fetchFromGitHub {
owner = "github";
repo = "cmark-gfm";
rev = version;
- sha256 = "sha256-HNFxp62xBNo2GbWiiYXco2NMgoOXsnZNdbXgTK1i1JU=";
+ sha256 = "sha256-ekHY5EGSrJrQwlXNjKpyj7k0Bzq1dYPacRsfNZ8K+lk=";
};
nativeBuildInputs = [ cmake ];
- # tests load the library dynamically which for unknown reason failed
- doCheck = false;
+
+ doCheck = true;
# remove when https://github.com/github/cmark-gfm/pull/248 merged and released
postInstall = ''
diff --git a/pkgs/development/libraries/freexl/default.nix b/pkgs/development/libraries/freexl/default.nix
new file mode 100644
index 000000000000..7bc1322ccc8c
--- /dev/null
+++ b/pkgs/development/libraries/freexl/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchurl, validatePkgConfig, libiconv }:
+
+stdenv.mkDerivation rec {
+ pname = "freexl";
+ version = "1.0.6";
+
+ src = fetchurl {
+ url = "https://www.gaia-gis.it/gaia-sins/freexl-${version}.tar.gz";
+ hash = "sha256-Pei1ej0TDLKIHqUtOqnOH+7bG1e32qTrN/dRQE+Q/CI=";
+ };
+
+ nativeBuildInputs = [ validatePkgConfig ];
+
+ buildInputs = lib.optional stdenv.isDarwin libiconv;
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+
+ meta = with lib; {
+ description = "A library to extract valid data from within an Excel (.xls) spreadsheet";
+ homepage = "https://www.gaia-gis.it/fossil/freexl";
+ # They allow any of these
+ license = with licenses; [ gpl2Plus lgpl21Plus mpl11 ];
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ sikmir ];
+ };
+}
diff --git a/pkgs/development/libraries/intel-gmmlib/default.nix b/pkgs/development/libraries/intel-gmmlib/default.nix
index 9f5c342bbd7d..039a5cb41619 100644
--- a/pkgs/development/libraries/intel-gmmlib/default.nix
+++ b/pkgs/development/libraries/intel-gmmlib/default.nix
@@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "intel-gmmlib";
- version = "22.1.8";
+ version = "22.2.0";
src = fetchFromGitHub {
owner = "intel";
repo = "gmmlib";
rev = "intel-gmmlib-${version}";
- sha256 = "sha256-l6FCFYdHQrH00phcncmeCGrFDs5lmyTRjQXH13nWZwg=";
+ sha256 = "sha256-Wy2OroZI4bo+3OdKaa0e5N+QNKKgWVOJrK1Cdda8yDI=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/libheif/default.nix b/pkgs/development/libraries/libheif/default.nix
index d445a7c3867e..51bd86edb719 100644
--- a/pkgs/development/libraries/libheif/default.nix
+++ b/pkgs/development/libraries/libheif/default.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation rec {
pname = "libheif";
- version = "1.12.0";
+ version = "1.13.0";
outputs = [ "bin" "out" "dev" "man" ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "strukturag";
repo = "libheif";
rev = "v${version}";
- sha256 = "sha256-RjGLaDSBO8T7ijRb5a16aUlkCy5vdFPs4O9caIJo4jI=";
+ sha256 = "sha256-/w/I6dgyiAscUqVpPjw2z6LbZJ6IBTeE5lawLg0awTM=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
diff --git a/pkgs/development/libraries/librttopo/default.nix b/pkgs/development/libraries/librttopo/default.nix
index d349278d5f5d..690417c3e730 100644
--- a/pkgs/development/libraries/librttopo/default.nix
+++ b/pkgs/development/libraries/librttopo/default.nix
@@ -2,6 +2,7 @@
, stdenv
, fetchFromGitea
, autoreconfHook
+, validatePkgConfig
, geos
}:
@@ -19,14 +20,21 @@ stdenv.mkDerivation rec {
sha256 = "0h7lzlkn9g4xky6h81ndy0aa6dxz8wb6rnl8v3987jy1i6pr072p";
};
- nativeBuildInputs = [ autoreconfHook ];
+ nativeBuildInputs = [
+ autoreconfHook
+ validatePkgConfig
+ geos # for geos-config
+ ];
buildInputs = [ geos ];
+ enableParallelBuilding = true;
+
meta = with lib; {
description = "RT Topology Library";
homepage = "https://git.osgeo.org/gitea/rttopo/librttopo";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dotlambda ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/libspatialite/default.nix b/pkgs/development/libraries/libspatialite/default.nix
index 592b7101a074..cc7da2b5f183 100644
--- a/pkgs/development/libraries/libspatialite/default.nix
+++ b/pkgs/development/libraries/libspatialite/default.nix
@@ -2,6 +2,8 @@
, stdenv
, fetchurl
, pkg-config
+, validatePkgConfig
+, freexl
, geos
, librttopo
, libxml2
@@ -18,13 +20,18 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
src = fetchurl {
- url = "https://www.gaia-gis.it/gaia-sins/libspatialite-sources/${pname}-${version}.tar.gz";
- sha256 = "sha256-7svJQxHHgBLQWevA+uhupe9u7LEzA+boKzdTwbNAnpg=";
+ url = "https://www.gaia-gis.it/gaia-sins/libspatialite-${version}.tar.gz";
+ hash = "sha256-7svJQxHHgBLQWevA+uhupe9u7LEzA+boKzdTwbNAnpg=";
};
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [
+ pkg-config
+ validatePkgConfig
+ geos # for geos-config
+ ];
buildInputs = [
+ freexl
geos
librttopo
libxml2
@@ -35,14 +42,22 @@ stdenv.mkDerivation rec {
libiconv
];
- configureFlags = [ "--disable-freexl" ];
-
enableParallelBuilding = true;
postInstall = lib.optionalString stdenv.isDarwin ''
ln -s $out/lib/mod_spatialite.{so,dylib}
'';
+ # Failed tests (linux & darwin):
+ # - check_virtualtable6
+ # - check_drop_rename
+ doCheck = false;
+
+ preCheck = ''
+ export LD_LIBRARY_PATH=$(pwd)/src/.libs
+ export DYLD_LIBRARY_PATH=$(pwd)/src/.libs
+ '';
+
meta = with lib; {
description = "Extensible spatial index library in C++";
homepage = "https://www.gaia-gis.it/fossil/libspatialite";
diff --git a/pkgs/development/libraries/liquid-dsp/default.nix b/pkgs/development/libraries/liquid-dsp/default.nix
index a40882490177..144a215acb45 100644
--- a/pkgs/development/libraries/liquid-dsp/default.nix
+++ b/pkgs/development/libraries/liquid-dsp/default.nix
@@ -1,4 +1,9 @@
-{lib, stdenv, fetchFromGitHub, autoreconfHook }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, cctools
+}:
stdenv.mkDerivation rec {
pname = "liquid-dsp";
@@ -11,10 +16,10 @@ stdenv.mkDerivation rec {
sha256 = "0mr86z37yycrqwbrmsiayi1vqrgpjq0pn1c3p1qrngipkw45jnn0";
};
- nativeBuildInputs = [ autoreconfHook ];
+ configureFlags = lib.optionals stdenv.isDarwin [ "LIBTOOL=${cctools}/bin/libtool" ];
+ nativeBuildInputs = [ autoreconfHook ] ++ lib.optionals stdenv.isDarwin [ cctools ];
meta = {
- broken = stdenv.isDarwin;
homepage = "https://liquidsdr.org/";
description = "Digital signal processing library for software-defined radios";
license = lib.licenses.mit;
diff --git a/pkgs/development/libraries/nss/latest.nix b/pkgs/development/libraries/nss/latest.nix
index f313cc328822..825694aad889 100644
--- a/pkgs/development/libraries/nss/latest.nix
+++ b/pkgs/development/libraries/nss/latest.nix
@@ -5,6 +5,6 @@
# Example: nix-shell ./maintainers/scripts/update.nix --argstr package cacert
import ./generic.nix {
- version = "3.82";
- hash = "sha256-Mr9nO3LC+ZU+07THAzq/WmytMChUokrliMV1plZ8FXM=";
+ version = "3.83";
+ hash = "sha256-qyPqZ/lkCQuLc8gKZ0CCVxw25fTrqSBXrGSMnB3vASg=";
}
diff --git a/pkgs/development/libraries/physics/geant4/default.nix b/pkgs/development/libraries/physics/geant4/default.nix
index 3315e5a535ae..ccc96a1aed3d 100644
--- a/pkgs/development/libraries/physics/geant4/default.nix
+++ b/pkgs/development/libraries/physics/geant4/default.nix
@@ -47,12 +47,12 @@ in
lib.warnIf (enableQT != false) "geant4: enableQT is deprecated, please use enableQt"
stdenv.mkDerivation rec {
- version = "11.0.2";
+ version = "11.0.3";
pname = "geant4";
src = fetchurl{
url = "https://cern.ch/geant4-data/releases/geant4-v${version}.tar.gz";
- hash = "sha256-/AONuDcxL3Tj+O/RC108qHqZnUg9TYlZxguKdJIh7GE=";
+ hash = "sha256-cvi2h1EtbmMNxsZMXEG6cRIgRoVAEymZ0A5PzhkIrkg=";
};
cmakeFlags = [
diff --git a/pkgs/development/libraries/protobuf/generic-v3-cmake.nix b/pkgs/development/libraries/protobuf/generic-v3-cmake.nix
index 0b6967a67385..07e84a2ae066 100644
--- a/pkgs/development/libraries/protobuf/generic-v3-cmake.nix
+++ b/pkgs/development/libraries/protobuf/generic-v3-cmake.nix
@@ -101,6 +101,7 @@ let
platforms = lib.platforms.unix;
homepage = "https://developers.google.com/protocol-buffers/";
maintainers = with lib.maintainers; [ jonringer ];
+ mainProgram = "protoc";
};
};
in
diff --git a/pkgs/development/libraries/readosm/default.nix b/pkgs/development/libraries/readosm/default.nix
index f177dc768a69..8ba1f571b028 100644
--- a/pkgs/development/libraries/readosm/default.nix
+++ b/pkgs/development/libraries/readosm/default.nix
@@ -1,24 +1,26 @@
-{ lib, stdenv, fetchurl, expat, zlib, geos, libspatialite }:
+{ lib, stdenv, fetchurl, expat, zlib, validatePkgConfig }:
stdenv.mkDerivation rec {
pname = "readosm";
version = "1.1.0a";
src = fetchurl {
- url = "https://www.gaia-gis.it/gaia-sins/readosm-sources/${pname}-${version}.tar.gz";
- sha256 = "0igif2bxf4dr82glxz9gyx5mmni0r2dsnx9p9k6pxv3c4lfhaz6v";
+ url = "https://www.gaia-gis.it/gaia-sins/readosm-${version}.tar.gz";
+ hash = "sha256-23wFHSVs7H7NTDd1q5vIINpaS/cv/U6fQLkR15dw8UU=";
};
- buildInputs = [ expat zlib geos libspatialite ];
+ nativeBuildInputs = [ validatePkgConfig ];
- configureFlags = [ "--disable-freexl" ];
+ buildInputs = [ expat zlib ];
enableParallelBuilding = true;
- meta = {
+ doCheck = true;
+
+ meta = with lib; {
description = "An open source library to extract valid data from within an Open Street Map input file";
homepage = "https://www.gaia-gis.it/fossil/readosm";
- license = with lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ];
- platforms = lib.platforms.linux;
+ license = with licenses; [ mpl11 gpl2Plus lgpl21Plus ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/sqlitecpp/default.nix b/pkgs/development/libraries/sqlitecpp/default.nix
index ff2556d12479..81843628d42b 100644
--- a/pkgs/development/libraries/sqlitecpp/default.nix
+++ b/pkgs/development/libraries/sqlitecpp/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sqlitecpp";
- version = "3.1.1";
+ version = "3.2.0";
src = fetchFromGitHub {
owner = "SRombauts";
repo = pname;
rev = version;
- sha256 = "1c2yyipiqswi5sf9xmpsgw6l1illzmcpkjm56agk6kl2hay23lgr";
+ sha256 = "sha256-Z1c2lQZ0UltcIf9dTnumZPhke4uEmsjg/Ygppvx3kxY=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index 7962e2111039..0aa6fc39baad 100644
--- a/pkgs/development/libraries/vapoursynth/default.nix
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "vapoursynth";
- version = "59";
+ version = "60";
src = fetchFromGitHub {
owner = "vapoursynth";
repo = "vapoursynth";
rev = "R${version}";
- sha256 = "sha256-6w7GSC5ZNIhLpulni4sKq0OvuxHlTJRilBFGH5PQW8U=";
+ sha256 = "sha256-E1uHNcGxBrwg00tNnY3qH6BpvXtBEGkX7QFy0aMLSnA=";
};
patches = [
diff --git a/pkgs/development/libraries/wolfssl/default.nix b/pkgs/development/libraries/wolfssl/default.nix
index 02e7e1d80008..86f0c8f40055 100644
--- a/pkgs/development/libraries/wolfssl/default.nix
+++ b/pkgs/development/libraries/wolfssl/default.nix
@@ -7,19 +7,22 @@
stdenv.mkDerivation rec {
pname = "wolfssl";
- version = "5.4.0";
+ version = "5.5.0";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
rev = "v${version}-stable";
- sha256 = "sha256-5a83Mi+S+mASdZ6O2+0I+qulsF6yNUe80a3qZvWmXHw=";
+ sha256 = "sha256-PqxwWPK5eBcS5d6e0CL4uZHybDye1K8pxniKU99YSAE=";
};
postPatch = ''
patchShebangs ./scripts
# ocsp tests require network access
sed -i -e '/ocsp\.test/d' -e '/ocsp-stapling\.test/d' scripts/include.am
+ # ensure test detects musl-based systems too
+ substituteInPlace scripts/ocsp-stapling2.test \
+ --replace '"linux-gnu"' '"linux-"'
'';
# Almost same as Debian but for now using --enable-all --enable-reproducible-build instead of --enable-distro to ensure options.h gets installed
diff --git a/pkgs/development/node-packages/main-programs.nix b/pkgs/development/node-packages/main-programs.nix
index b4934dc2014a..7565613eca32 100644
--- a/pkgs/development/node-packages/main-programs.nix
+++ b/pkgs/development/node-packages/main-programs.nix
@@ -9,6 +9,7 @@
coffee-script = "coffee";
typescript = "tsc";
vue-cli = "vue";
+ "@withgraphite/graphite-cli" = "gt";
# Packages that provide a single executable whose name differs from the package's `name`.
"@angular/cli" = "ng";
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 4f66d3b6fe10..8ae9b1e05399 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -387,6 +387,7 @@
, "webpack-dev-server"
, "copy-webpack-plugin"
, "webtorrent-cli"
+, "@withgraphite/graphite-cli"
, "wrangler"
, "wring"
, "write-good"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 60faeb876515..ee8e8f6c3627 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -112,13 +112,13 @@ let
sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==";
};
};
- "@angular-devkit/architect-0.1402.2" = {
+ "@angular-devkit/architect-0.1402.3" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1402.2";
+ version = "0.1402.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.2.tgz";
- sha512 = "ICcK7OKViMhLkj4btnH/8nv0wjxuKchT/LDN6jfb9gUYUuoon190q0/L/U6ORDwvmjD6sUTurStzOxjuiS0KIg==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.3.tgz";
+ sha512 = "vU5j0WhSYxux5RzhuZ3VY3B4XbRJuEtVqSoW5j9ew3Oc78tkR6RNXgT97PPr0GfRA1fOEhVoReR7NbsKU3uIkQ==";
};
};
"@angular-devkit/core-14.2.1" = {
@@ -139,6 +139,15 @@ let
sha512 = "ofDhTmJqoAkmkJP0duwUaCxDBMxPlc+AWYwgs3rKKZeJBb0d+tchEXHXevD5bYbbRfXtnwM+Vye2XYHhA4nWAA==";
};
};
+ "@angular-devkit/core-14.2.3" = {
+ name = "_at_angular-devkit_slash_core";
+ packageName = "@angular-devkit/core";
+ version = "14.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.3.tgz";
+ sha512 = "E8bnC6F0xNni4IIKAnIDBDkbi6cOePm4Q/Y9IrTk3wquGTfsiMlQpdnRA0nr+FTN/LT3N08O5dEw2Gd4ff4tGA==";
+ };
+ };
"@angular-devkit/schematics-14.2.1" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
@@ -157,6 +166,15 @@ let
sha512 = "90hseNg1yQ2AR+lVr/NByZRHnYAlzCL6hr9p9q1KPHxA3Owo04yX6n6dvR/xf27hCopXInXKPsasR59XCx5ZOQ==";
};
};
+ "@angular-devkit/schematics-14.2.3" = {
+ name = "_at_angular-devkit_slash_schematics";
+ packageName = "@angular-devkit/schematics";
+ version = "14.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.3.tgz";
+ sha512 = "98ldx+To7xW1BH/DqIToQwHVscPZhXnZP01SeoiUnFlJE5FnXx8Lv7qHAQtE96M+cfE5NR1NKBgfCH3S3rnmFA==";
+ };
+ };
"@angular-devkit/schematics-cli-14.2.2" = {
name = "_at_angular-devkit_slash_schematics-cli";
packageName = "@angular-devkit/schematics-cli";
@@ -571,715 +589,715 @@ let
sha512 = "Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==";
};
};
- "@aws-sdk/abort-controller-3.168.0" = {
+ "@aws-sdk/abort-controller-3.171.0" = {
name = "_at_aws-sdk_slash_abort-controller";
packageName = "@aws-sdk/abort-controller";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.168.0.tgz";
- sha512 = "mvFXmdoIVV3cUmPuwzzHLB1YNjxzm7sHk99zE0zvT653kc7slThLMfO5Kc1WtblXAKbE6eqPDMcA0zg6eRM1cw==";
+ url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.171.0.tgz";
+ sha512 = "D3ShqAdCSFvKN3pGGn0KwK6lece4nqKY0hrxMIaYvDwewGjoIgEMBPGhCK1kNoBo6lJ93Fu1u4DheV+8abSmjQ==";
};
};
- "@aws-sdk/chunked-blob-reader-3.168.0" = {
+ "@aws-sdk/chunked-blob-reader-3.170.0" = {
name = "_at_aws-sdk_slash_chunked-blob-reader";
packageName = "@aws-sdk/chunked-blob-reader";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.168.0.tgz";
- sha512 = "tnqA5NQrVaJtJpriYzfq9GC5WghyHntxka5ctiK2ow9ln/lfchxdY+kRgo+JROfWKbW8PurI+oEFUpscpLOrww==";
+ url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.170.0.tgz";
+ sha512 = "73Fy1u9zR9ZMC59QobuCWg3LoYfcrFsrP8569vvqtlGqPuQUW+RW3gfx0omIDmxaSg8qq8REPLJFrAGfeL7VtQ==";
};
};
- "@aws-sdk/chunked-blob-reader-native-3.168.0" = {
+ "@aws-sdk/chunked-blob-reader-native-3.170.0" = {
name = "_at_aws-sdk_slash_chunked-blob-reader-native";
packageName = "@aws-sdk/chunked-blob-reader-native";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.168.0.tgz";
- sha512 = "SXmf1oMtnccLd3aKYPG3WteS+yYTmG5uPGx9Zq7H/y1eZCUe2j6aGorePo3hSPho/hgZeAjrxl/kiQieOIoX8A==";
+ url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.170.0.tgz";
+ sha512 = "haJ7fdWaOgAM4trw2LBd1VIvRFzMMPz2jy9mu4rE+z1uHbPZHNMGytBo1FJO2DShzUCmJZi3t3CD/7aE3H38+w==";
};
};
- "@aws-sdk/client-s3-3.169.0" = {
+ "@aws-sdk/client-s3-3.171.0" = {
name = "_at_aws-sdk_slash_client-s3";
packageName = "@aws-sdk/client-s3";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.169.0.tgz";
- sha512 = "0DvQFUnk4P1v3tYna0i+yfiOlcZRF5wed6hJvwGtG2CnnvQry+OupKGxEXv5nvW9qGrPgLz8HqyIfU67zB2lxw==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.171.0.tgz";
+ sha512 = "UFPnf9xG7H6Mku9tfVH7oSXq65oH0mb8vvfeUWsi+KKedvMdww7fVWmXtcgnsB9nmXLF2PfrQrdaz2uid4rpgQ==";
};
};
- "@aws-sdk/client-sso-3.169.0" = {
+ "@aws-sdk/client-sso-3.171.0" = {
name = "_at_aws-sdk_slash_client-sso";
packageName = "@aws-sdk/client-sso";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.169.0.tgz";
- sha512 = "FeV4X7iP2mXr3+KSRfsQsHIDdGpOXZALC7huFYvC27CGjZgI6lYkQZqY4LjPd+1zi4MF77A8RgjwdNsmBTt6rg==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.171.0.tgz";
+ sha512 = "iOJxoxHFlyuGfXKVz8Z7xVgYkdnqw6beDpIO852aDL6DYFO0ZA6vYjWXsMgdY6S6zJOR2K2uRhvPpbPiFF5PtA==";
};
};
- "@aws-sdk/client-sts-3.169.0" = {
+ "@aws-sdk/client-sts-3.171.0" = {
name = "_at_aws-sdk_slash_client-sts";
packageName = "@aws-sdk/client-sts";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.169.0.tgz";
- sha512 = "nvrUDz4SNYt0cDjFRKJd6ewi5yEYJfmxZXY76AOoRUmzKsxq6YRWyu7of8Qn0ldlasx+RO8+/QKCZo0UllVMPw==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.171.0.tgz";
+ sha512 = "CozT5qq/Wtdn4CDz5PdXtdyGnzHbuLqOYcTgaYpDks2EPfRSSFT2WYE+Y76Ccdz5n7vWR3yJuNjDXnVL28U8gQ==";
};
};
- "@aws-sdk/config-resolver-3.168.0" = {
+ "@aws-sdk/config-resolver-3.171.0" = {
name = "_at_aws-sdk_slash_config-resolver";
packageName = "@aws-sdk/config-resolver";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.168.0.tgz";
- sha512 = "eSGHsa5kDIpBtBr1HhM9n0Deb+uSyr5pvk39WPFf5CTGvIqe52Fg9s1/Jz54rDwlgsfPzufX7TrCXgUhMwb8+w==";
+ url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.171.0.tgz";
+ sha512 = "qxuquXxy2Uu96Vmm5lm3b72wx8g+7XkWf5pGeQPPgXT4Zrw6UQdtqvNhsoFpKLp/Op1yu/CIDd7lG2l1Xgs5HQ==";
};
};
- "@aws-sdk/credential-provider-env-3.168.0" = {
+ "@aws-sdk/credential-provider-env-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-env";
packageName = "@aws-sdk/credential-provider-env";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.168.0.tgz";
- sha512 = "dzblFOkmH0FzYuckCJYVH/d+HEGO814B0gVt0HnaIvsS5skDSDBXD+/S9AX6BAKTNBWP8BVcn7+u+oS5l7GBkQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.171.0.tgz";
+ sha512 = "Btm7mu+2RsOQxplGhHMKat+CgaOHwpqt1j3aU2EQtad5Fb5NSZRD85mqD/BGCCLTmfqIWl39YQv9758gciRjCw==";
};
};
- "@aws-sdk/credential-provider-imds-3.168.0" = {
+ "@aws-sdk/credential-provider-imds-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-imds";
packageName = "@aws-sdk/credential-provider-imds";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.168.0.tgz";
- sha512 = "Ua2zTmo0eep/fGh3SL9W0ERlGRkEAiP2IEC63QbRZKK+5Xg6RIgqij7hQHvKLY78zBDd7exnU9W1AMnt9lOd1A==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.171.0.tgz";
+ sha512 = "lm5uuJ3YK6qui7G6Zr5farUuHn10kMtkb+CFr4gtDsYxF8CscciBmQNMCxo2oiVzlsjOpFGtpLTAvjb7nn12CA==";
};
};
- "@aws-sdk/credential-provider-ini-3.169.0" = {
+ "@aws-sdk/credential-provider-ini-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-ini";
packageName = "@aws-sdk/credential-provider-ini";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.169.0.tgz";
- sha512 = "bJb/dJY0Sk23smbwjhDUDuCMneMwom0eBjkMrJrabh64Ysvzpf/RnMr9n1VJTpgoy4hRbWWIikyWhicc9BeSrA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.171.0.tgz";
+ sha512 = "MF6fYCvezreZBI+hjI4oEuZdIKgfhbe6jzbTpNrDwBzw8lBkq1UY214dp2ecJtnj3FKjFg9A+goQRa/CViNgGQ==";
};
};
- "@aws-sdk/credential-provider-node-3.169.0" = {
+ "@aws-sdk/credential-provider-node-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-node";
packageName = "@aws-sdk/credential-provider-node";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.169.0.tgz";
- sha512 = "oMZLrZZpkcR+Z4795oDdwb9iXyqnwhNc8loBi2YGjZ9Uav+gGaZB9hjN/TMP4VkQNvt4mhDtfu/KMciFVSaHLw==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.171.0.tgz";
+ sha512 = "zUdgr9THjzLb99Qmb1qOqsSYtX4/PCCzXgDolfYS/+bLfoMD1iqA49l6lw4zJV29f6WNjaA5MxmDpbrPXkI1Cw==";
};
};
- "@aws-sdk/credential-provider-process-3.168.0" = {
+ "@aws-sdk/credential-provider-process-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-process";
packageName = "@aws-sdk/credential-provider-process";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.168.0.tgz";
- sha512 = "Yni2S+yHLkUvDI30ZNkEOao2hSBj1eeQvWBUEJsgCFvHdlFDwOYwIueDmrBggqUISUgCLb6y/eylqeMvjN3Eyw==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.171.0.tgz";
+ sha512 = "wTrtftwepuW+yJG2mz+HDwQ/L70rwBPkeyy32X+Pfm1jh4B5lL3qMmxR7uLPMgA4BQfXCazPeOiW50b9wRyZYg==";
};
};
- "@aws-sdk/credential-provider-sso-3.169.0" = {
+ "@aws-sdk/credential-provider-sso-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-sso";
packageName = "@aws-sdk/credential-provider-sso";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.169.0.tgz";
- sha512 = "8SlgQGRwSobLXZnizmBg1mo03yfm6Ub0vYPX+6u706XAVs8eJHT+Ia1B/j53ZrB2RSg0wjR47l+khKJtHhcJJg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.171.0.tgz";
+ sha512 = "D1zyKiYL9jrzJz5VOKynAAxqyQZ5gjweRPNrIomrYG2BQSMz82CZzL/sn/Q2KNmuSWgfPc4bF2JDPeTdPXsFKA==";
};
};
- "@aws-sdk/credential-provider-web-identity-3.168.0" = {
+ "@aws-sdk/credential-provider-web-identity-3.171.0" = {
name = "_at_aws-sdk_slash_credential-provider-web-identity";
packageName = "@aws-sdk/credential-provider-web-identity";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.168.0.tgz";
- sha512 = "hz7wj8htY6s3/TubzH/YOd6f4bxO26GYupCTvKZlWdErLUmZ8h3hG/9xO/5kWOakD40T3MXT7HIo2rvEWg1GWw==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.171.0.tgz";
+ sha512 = "yeQC+n3Xiw/tOaMP67pBNLsddPb8hHjsEIPircS2z4VvwhOY+5ZaaiaRmw5u5pvIMctbGZU75Ms1hBSfOEdDhQ==";
};
};
- "@aws-sdk/eventstream-codec-3.168.0" = {
+ "@aws-sdk/eventstream-codec-3.171.0" = {
name = "_at_aws-sdk_slash_eventstream-codec";
packageName = "@aws-sdk/eventstream-codec";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.168.0.tgz";
- sha512 = "5A6IPpGNc9Edj4Ega1QpFYtlHJV8MeX8xg9aPHqUCAf9WUo6vdDy4ry4sXTTgdP4TYS+KIOQtyc4TQUjs672yg==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.171.0.tgz";
+ sha512 = "3lCnPlydbZ/R6fAD+4xLX8Ua+kFGUzsPcgLP0lH5LO39jtnN1wEQj5fWM139Re9LuD0NoEBhC0AuROIM6CbzVA==";
};
};
- "@aws-sdk/eventstream-serde-browser-3.168.0" = {
+ "@aws-sdk/eventstream-serde-browser-3.171.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-browser";
packageName = "@aws-sdk/eventstream-serde-browser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.168.0.tgz";
- sha512 = "fQaLmbG95twbf+IZyudeCZ8mrakPxvpcP2DQHVHJgQzOzWM+ScnHlr13gtcXDrk0gLCW+cVl1CZzGwYJ4TI3Ug==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.171.0.tgz";
+ sha512 = "ydjENlRoX49odSCWsOUo2lP2yE/4dR/GKE1yz3QvNZJ+6wRULbg6f55riyQokvAGMRW5BJigkMQLrg58WWridg==";
};
};
- "@aws-sdk/eventstream-serde-config-resolver-3.168.0" = {
+ "@aws-sdk/eventstream-serde-config-resolver-3.171.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-config-resolver";
packageName = "@aws-sdk/eventstream-serde-config-resolver";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.168.0.tgz";
- sha512 = "LuOTGZeG0rnwa4B0rEK4pMsghudDP05ve6U0Y7moMq+u9U79Cje73XHwRKDOS48M8PtBbIRHOtka1unrnY+gBg==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.171.0.tgz";
+ sha512 = "cg+Xzl1lB7iIcER+Pv/06VaBvlC/dZxs3i5Kw3PYUaYICDwGytGRZbEC2H/6aBDEYYLfwUbnkq0Dp40faJfdAw==";
};
};
- "@aws-sdk/eventstream-serde-node-3.168.0" = {
+ "@aws-sdk/eventstream-serde-node-3.171.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-node";
packageName = "@aws-sdk/eventstream-serde-node";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.168.0.tgz";
- sha512 = "IkMQrja0gv2gWIBa9SHvBOkSSFsOGX7GknGPPFO4/Squ4936jFfFVnMurm/r6QCN/MzLgVNvMS2VYPig9gITBw==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.171.0.tgz";
+ sha512 = "psOYj2RUJsI14jHCw1FQdSTljaf0yE9svg5NY9mGFD1ifj5+XEZmxhADMA6wtnDjWS2MzyJQQUGdfqIv1FeHEQ==";
};
};
- "@aws-sdk/eventstream-serde-universal-3.168.0" = {
+ "@aws-sdk/eventstream-serde-universal-3.171.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-universal";
packageName = "@aws-sdk/eventstream-serde-universal";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.168.0.tgz";
- sha512 = "Ui+F6qvrzfXQuP58Dka98XquDnNZG5oTcU7l0Sst3lCSqIBYaO9gt5AC3z2WBnzOFzHPAqVbyBfnsCK5xRuWUw==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.171.0.tgz";
+ sha512 = "aItTLL+WDHgwvl0biGZ+9phUOH93RW/v4uZgvjmrGSUx6try2/+L1rQeLU9n7JYfGcu8CKNePxpvrfSXpgJ7FA==";
};
};
- "@aws-sdk/fetch-http-handler-3.168.0" = {
+ "@aws-sdk/fetch-http-handler-3.171.0" = {
name = "_at_aws-sdk_slash_fetch-http-handler";
packageName = "@aws-sdk/fetch-http-handler";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.168.0.tgz";
- sha512 = "D4vN6zbF/RA7czw34gFhjsfOD5fkkLxLvmW8zbrJSsrex79Ju96NFuNBs7TtaV2btfXC7SkhhI/z+E81BxqRpg==";
+ url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.171.0.tgz";
+ sha512 = "jxlY0WFBrd5QzXnPNmzq8LbcIN3iY4Di+b9nDlUkQ6yCp/PxBEO3iZiNk4DeMH4A6rHrksnbsDDJzzZyGw/TLg==";
};
};
- "@aws-sdk/hash-blob-browser-3.168.0" = {
+ "@aws-sdk/hash-blob-browser-3.171.0" = {
name = "_at_aws-sdk_slash_hash-blob-browser";
packageName = "@aws-sdk/hash-blob-browser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.168.0.tgz";
- sha512 = "RiPU48qZD5IPA+gEzGJregfrO0zh+RrddRmZxSfX5TM8GlfcL0xThpd9wK03mM3aPiZ3iDhwIulftEBbmcPdZA==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.171.0.tgz";
+ sha512 = "Orwm8OiVNlVaQFEn+mWkue4U2bYytuAi5nmv9Co41hXDR8qF4pvwPWVV70OsndGcgqlFfvkJ4KahCO8Mta4I3w==";
};
};
- "@aws-sdk/hash-node-3.168.0" = {
+ "@aws-sdk/hash-node-3.171.0" = {
name = "_at_aws-sdk_slash_hash-node";
packageName = "@aws-sdk/hash-node";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.168.0.tgz";
- sha512 = "W2kMIuMric2Q2D4787DGubHz3Pw5fWDndM2gMjs/MB1psC/N74/ggRUIlUmsjSBFUHY1BYMfjsxe8DS9dSj77A==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.171.0.tgz";
+ sha512 = "eTn8iExc6KjMo3OLz29zkADq9hXsA1jO2ghQfQ4BNdGXvhMtKcIO2hdhyzaOhtoLAeL44gbFR9oFjwG0U8ak/Q==";
};
};
- "@aws-sdk/hash-stream-node-3.168.0" = {
+ "@aws-sdk/hash-stream-node-3.171.0" = {
name = "_at_aws-sdk_slash_hash-stream-node";
packageName = "@aws-sdk/hash-stream-node";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.168.0.tgz";
- sha512 = "EoNmFKOFeZXDJ3KNEPXOvb61Qqpw2pIH8VoiyaA3gurUQJ7IISlN3qCMRVjZ82hosheCp/ATYQvK3hCLtXcG4Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.171.0.tgz";
+ sha512 = "22yrj3Gx09n6esypHWSqqGTdKoMb/ORi55U4OtdCHufUtPVahwetNqKVBP73pHiT2VEmLQ8cyWff1WwpRFdeFw==";
};
};
- "@aws-sdk/invalid-dependency-3.168.0" = {
+ "@aws-sdk/invalid-dependency-3.171.0" = {
name = "_at_aws-sdk_slash_invalid-dependency";
packageName = "@aws-sdk/invalid-dependency";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.168.0.tgz";
- sha512 = "KuDn4e1XsxBQi+dAoRfSOExICq+Gt5zGA7/dI2jnfqejBNHVmJ8ksOnV/HmilFscPxdJx5POECQosf3p/N4t9w==";
+ url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.171.0.tgz";
+ sha512 = "UrjQnhRv2B6ZgQfZjRbsaD6Sm5aIjH9YPtjT5oTbSgq3uHnj+s2ubUYd2nR8+lV2j1XL/Zfn/zUQ+6W3Fxk+UA==";
};
};
- "@aws-sdk/is-array-buffer-3.168.0" = {
+ "@aws-sdk/is-array-buffer-3.170.0" = {
name = "_at_aws-sdk_slash_is-array-buffer";
packageName = "@aws-sdk/is-array-buffer";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.168.0.tgz";
- sha512 = "Zvt8a/g1UfvwmhxOnt/hDrFprC3+DQivFQGnzwBpv+ZyM1BfdgAruAkUZF+GtXI22DXZUumBrposCH1CcgjeIA==";
+ url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.170.0.tgz";
+ sha512 = "yYXqgp8rilBckIvNRs22yAXHKcXb86/g+F+hsTZl38OJintTsLQB//O5v6EQTYhSW7T3wMe1NHDrjZ+hFjAy4Q==";
};
};
- "@aws-sdk/md5-js-3.168.0" = {
+ "@aws-sdk/md5-js-3.171.0" = {
name = "_at_aws-sdk_slash_md5-js";
packageName = "@aws-sdk/md5-js";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.168.0.tgz";
- sha512 = "+vVtmJlLl3j4ph9elp1vy8scjDI0YZWPLYtNvhjXCYXqEvnax+5PFGfcrpnEkBmLrW/LpZ4mrIj5cxCdXSAUCg==";
+ url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.171.0.tgz";
+ sha512 = "ZHuK7NvRY44WasjRjHnTNTGfdWuZTND4CCRC78Fmf3tk+zeCEnDZ81cVVtMqVn1wIf02U35Bwbunfx8i89VoSg==";
};
};
- "@aws-sdk/middleware-bucket-endpoint-3.168.0" = {
+ "@aws-sdk/middleware-bucket-endpoint-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-bucket-endpoint";
packageName = "@aws-sdk/middleware-bucket-endpoint";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.168.0.tgz";
- sha512 = "qHrR43zPgT2QlR2ttNvmNS6EGo5JehxaYTetb6vzZOvz7JjQLiaaKiSZrA3PKiF65eF7s0/+V5G0VI4wX6ZPQQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.171.0.tgz";
+ sha512 = "mRARZ8+WSoEfy4v5Gp084O2kxKwjoVozKQ0QN0BGYU//HKWwPRQ5qnv8Sty5oEA6J3rjYrqeIuFd6I8J/MxYZg==";
};
};
- "@aws-sdk/middleware-content-length-3.168.0" = {
+ "@aws-sdk/middleware-content-length-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-content-length";
packageName = "@aws-sdk/middleware-content-length";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.168.0.tgz";
- sha512 = "PHvoNIuXkLkBZ/0OSmFlCmA1o+RdqkNWwNm7/rIMe9cV+ZgtP9kQs+e4itibQb82veHTwG37+B7OAGa0DGqIvg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.171.0.tgz";
+ sha512 = "zvhCvoR36fxjygDA8yN3AAVFnL0i6ubLRvzq6gf6gHVJH2P7/IWkXOBwu461qpuHPG87QwdqB/W+qY3KfNu/mA==";
};
};
- "@aws-sdk/middleware-expect-continue-3.168.0" = {
+ "@aws-sdk/middleware-expect-continue-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-expect-continue";
packageName = "@aws-sdk/middleware-expect-continue";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.168.0.tgz";
- sha512 = "Dt9ydWGCA+8zliKiX+CDGEsNZmjOQ1+zb4tvY6ry1IlsU3oaQtLrKHquQHZtw/UA/v9KLOblhvOLEXPOMDinKg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.171.0.tgz";
+ sha512 = "Sc4onadPMH0JRfAT1CXf405aGUGktgCM+UyyX5f85rT/5J5omwt2d31vu0ri4CmU89QI5T7xeq4DN6mNQu2jfw==";
};
};
- "@aws-sdk/middleware-flexible-checksums-3.168.0" = {
+ "@aws-sdk/middleware-flexible-checksums-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-flexible-checksums";
packageName = "@aws-sdk/middleware-flexible-checksums";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.168.0.tgz";
- sha512 = "cd6HwhisefvCDpelBNRXac0peM6w1d8mEm77f3RGHmXd8j4Hqa6in8rS+2v3/7/+OvWZ5VmXRHgheRyEh3K9vg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.171.0.tgz";
+ sha512 = "91GvgWCG/cugmxXlOWCKmynMoKsKzmdOBj01k7Vx0oZAeR8/3i74mpGQ6DRaaTOENNgFrcHzxnlxJDZEY44MOw==";
};
};
- "@aws-sdk/middleware-host-header-3.168.0" = {
+ "@aws-sdk/middleware-host-header-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-host-header";
packageName = "@aws-sdk/middleware-host-header";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.168.0.tgz";
- sha512 = "420rWpd/fsoPzRnMkyUFW1in6jpa1kbVCuewY5cqoH9uQcthrNJ0l9IgePDEMdymIMxGBfwiQERvUYogUadxrw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.171.0.tgz";
+ sha512 = "WM3NEq1RcBOBXp2ItZCnK9RJPBztdUdaQrgtTkBWekgc9yxCiRBDhdZ4GLuWKyzApO2xqI/kfZQa4Wf44lWl8g==";
};
};
- "@aws-sdk/middleware-location-constraint-3.168.0" = {
+ "@aws-sdk/middleware-location-constraint-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-location-constraint";
packageName = "@aws-sdk/middleware-location-constraint";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.168.0.tgz";
- sha512 = "0+GZI5T2HDijKHqdIED658nq/rTBMWvac2nMCVEaFlNk5irbVRKvXmSZLkf63y7tbwDO6P9/ND8WPNowjeCipw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.171.0.tgz";
+ sha512 = "fj/LH3mLVpK4lwB1DGcYflzfFllcXcYb+ZyGIVdZ0ZeXBOeG8sOG59C4ZdDK3XONnE+Ccv/s7l6MlXK6c9PDew==";
};
};
- "@aws-sdk/middleware-logger-3.168.0" = {
+ "@aws-sdk/middleware-logger-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-logger";
packageName = "@aws-sdk/middleware-logger";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.168.0.tgz";
- sha512 = "5xeBlHQz/iWVor04eZLTfygj5T9zvLsngrUVb8FkHDzzNqT9+QwoA0iZoT8Vq5khfZK7UE7SWm2Hi/13t9T9+w==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.171.0.tgz";
+ sha512 = "/wn0+pV0AGcDGlcKY+2ylvp+FLXJdmvYLbPlo93OOQbyCOy7Xa7Z8+RZYFHv8xrqhlQI0iw6TSYbL6fQ1v5IZw==";
};
};
- "@aws-sdk/middleware-recursion-detection-3.168.0" = {
+ "@aws-sdk/middleware-recursion-detection-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-recursion-detection";
packageName = "@aws-sdk/middleware-recursion-detection";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.168.0.tgz";
- sha512 = "4sr3E37PUDQSpE205d+kGcaJmZj7kE/I50qyf39U0jphk121AZXdKCWDs/T7g/d4LVJLoe6N+zzZIg4ZWVUUZw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.171.0.tgz";
+ sha512 = "aNDRypFz9V52hC8lzZo28Zq9pS7W2MchjLAa2mPTFTd09aer6j9jmLY5o4NwoAAaEGV1JFHgpIZdymQRAcvSjw==";
};
};
- "@aws-sdk/middleware-retry-3.169.0" = {
+ "@aws-sdk/middleware-retry-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-retry";
packageName = "@aws-sdk/middleware-retry";
- version = "3.169.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.169.0.tgz";
- sha512 = "XGAPxJpHEdqbZwaga3H40hQKqftOshvwhOLHLgCQQeOp/ftB6ohzM/pRfutSRCmK4+XPJGILzLZPSRyoME//mw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.171.0.tgz";
+ sha512 = "E+TTJZngDZ91/pdlNSrYSKn2cjD0aL/Xe6VFKbhpt9k5EF/KK6gJUEitIFL3Db2bRqupgADQudUI+MZvNc7Bnw==";
};
};
- "@aws-sdk/middleware-sdk-s3-3.168.0" = {
+ "@aws-sdk/middleware-sdk-s3-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-s3";
packageName = "@aws-sdk/middleware-sdk-s3";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.168.0.tgz";
- sha512 = "Ztl4kSuW6ar8t6CXO/kwc8/wpKo+OW6pDaaH9JSYioz0JTtyWbWBxB4ZgkSRpOCzhGL4SFWI6A0QU5GaaHSm5Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.171.0.tgz";
+ sha512 = "Mmd2MqJQJnYXrtOL01PgTXtH0MvubzGJ1uYAm0CLK2fubhLEp2usNACXFvUcdwd3dt5QktkLjWuw3xwFoIYGMg==";
};
};
- "@aws-sdk/middleware-sdk-sts-3.168.0" = {
+ "@aws-sdk/middleware-sdk-sts-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-sts";
packageName = "@aws-sdk/middleware-sdk-sts";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.168.0.tgz";
- sha512 = "uE5VYczEkoCG/G63Whp4dGKFouDjx0Jj4vZj7Z4oEQSv/eynBm1+AQAtWA4zJQfYO60lFKOSiBykv/c1hk09Mg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.171.0.tgz";
+ sha512 = "DLvoz7TfExbJ1p+FGehbu83D/KggohQNZMzsIojVbzu3E0pO606aZnbEPC7pUNXG3iXoQOScMMrhUNuRQEYgLQ==";
};
};
- "@aws-sdk/middleware-serde-3.168.0" = {
+ "@aws-sdk/middleware-serde-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-serde";
packageName = "@aws-sdk/middleware-serde";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.168.0.tgz";
- sha512 = "6z3iySqCjhV5NVEF3o++TgvK1XOBauYdZFCZk4foMxyh/wZ4MB+uIQ/D2AeHExzFGyrPjx0S0gZb4z8st6q9mA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.171.0.tgz";
+ sha512 = "eqgJPzzkha02Ca7clKWLOVOa7OuFunEPWfx00IUy5sxKFbgUSAeu6Kl5SC5Z3J9dIvefw3vX19x3334SZcwE1Q==";
};
};
- "@aws-sdk/middleware-signing-3.168.0" = {
+ "@aws-sdk/middleware-signing-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-signing";
packageName = "@aws-sdk/middleware-signing";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.168.0.tgz";
- sha512 = "yQme9D4bNRdrPQH50a3oJfbf+54Dm1MkW4yjwIwpRoGkxAs2T7sjc3/u/Wo/Jy3g5yzM1Ven3KU+nlKOMNOpAw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.171.0.tgz";
+ sha512 = "eEykO86etIqfWdUvvCcvYsHg+lXRE1Bo6+2mtXIcUXXC0LlqUoWsM1Ky/5jbjXVeWu2vWv++vG/WpJtNKkG13Q==";
};
};
- "@aws-sdk/middleware-ssec-3.168.0" = {
+ "@aws-sdk/middleware-ssec-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-ssec";
packageName = "@aws-sdk/middleware-ssec";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.168.0.tgz";
- sha512 = "+/R9iAETMO+uQ3lNY3dpsjL5aaiPYOmmcwD2xd6hwV5oGP5sysH59dnVg2U7hw8VZF1akK3rKgc3eGY9/ezo3g==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.171.0.tgz";
+ sha512 = "lYf8gxe09owOUuvIil1G6TXQjUwIh7yuqeqj+Ix1aLbEZyloiryXkWjCPfeTEybVukWM0HPqU28AMhjgTOal6g==";
};
};
- "@aws-sdk/middleware-stack-3.168.0" = {
+ "@aws-sdk/middleware-stack-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-stack";
packageName = "@aws-sdk/middleware-stack";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.168.0.tgz";
- sha512 = "tUMa6gQFqyRC9xRy1cfQAX/K84LkFC+NAyENoDn4cbLvTJpH6tLPINFktaXLkKl2bdzGGWLHefxriBjTqZB+rg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.171.0.tgz";
+ sha512 = "0EbZin5J6EsHD/agE8s/TJktLh9aRZe80ZrCBv5ces420NaYNjvbvvsnt0tQw0Q8qv+1H6KFOUcZ5iXzadBy2A==";
};
};
- "@aws-sdk/middleware-user-agent-3.168.0" = {
+ "@aws-sdk/middleware-user-agent-3.171.0" = {
name = "_at_aws-sdk_slash_middleware-user-agent";
packageName = "@aws-sdk/middleware-user-agent";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.168.0.tgz";
- sha512 = "nwcWN1tz39s4IWyx1lxak/W9LdLnusQEdb+0pnJFWTCNhba3BvlAnt1sZFDwbFRmRUbU3x+hhpNB+Xub2hFttg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.171.0.tgz";
+ sha512 = "GXw4LB6OqmPNwizY8KHdP7sC+d3gVTeeTbMhLPdZ62+PTj18faSoiBtQbnQmB/+c87VBlYbXex2ObfB6J0K2rg==";
};
};
- "@aws-sdk/node-config-provider-3.168.0" = {
+ "@aws-sdk/node-config-provider-3.171.0" = {
name = "_at_aws-sdk_slash_node-config-provider";
packageName = "@aws-sdk/node-config-provider";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.168.0.tgz";
- sha512 = "8su32ifopNLb835NudTdxyv4fQ+7Eie17MjbqnvOeWmjFAgzJyIVJjyvMI+N8Gu3dDCTxSbBh3hl++VOzL+oXg==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.171.0.tgz";
+ sha512 = "kFJbdJpqV8qCrs0h5Yo1r9TgezzGlua8NYf80gx8gH49gDZ4hl+0gP7rWEnA19dZufrfveyTQ/kY+ntk5AyI8A==";
};
};
- "@aws-sdk/node-http-handler-3.168.0" = {
+ "@aws-sdk/node-http-handler-3.171.0" = {
name = "_at_aws-sdk_slash_node-http-handler";
packageName = "@aws-sdk/node-http-handler";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.168.0.tgz";
- sha512 = "yO68M12LUJa/bhuljSRCtLbmWvnS0eopoE3P2+xzV2JzkIg5r+bJmh/VtpDz8D2PxZhRALwBchjq8h+Po6rhcQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.171.0.tgz";
+ sha512 = "hQY1hqgVcNC9KvRqV3Kxn2jCjIgMWwK3u90g2kNU27vZWIApz5hP4Y/TiyFO3+fGGNczcNHZp8aaggEO9tnctQ==";
};
};
- "@aws-sdk/property-provider-3.168.0" = {
+ "@aws-sdk/property-provider-3.171.0" = {
name = "_at_aws-sdk_slash_property-provider";
packageName = "@aws-sdk/property-provider";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.168.0.tgz";
- sha512 = "syvXTexP2t9HQY3dsfpPgUP5GjFcpBVzPfxd8GjLWFRcqBCQ5frdetkAfvnhPpytL/stauXuT1xv6jcN1vBAZQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.171.0.tgz";
+ sha512 = "dtF9TfEuvYQCqyp5EbGLzwhGmxljDG95901STIRtOCbBi0EXQ2oShKz1T95kjaSrBQsI2YOmDTl+uPGkkOx5oA==";
};
};
- "@aws-sdk/protocol-http-3.168.0" = {
+ "@aws-sdk/protocol-http-3.171.0" = {
name = "_at_aws-sdk_slash_protocol-http";
packageName = "@aws-sdk/protocol-http";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.168.0.tgz";
- sha512 = "5g7T5WqeU1W/TShfOYiczZFOK5svsQajjSGs1drB2DBQlbepF5YSmVbFGrfX6003h4TV9hpA6CqOjbgd59NgGA==";
+ url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.171.0.tgz";
+ sha512 = "J5iZr5epH3nhPEeEme3w0l1tz+re1l9TdKjfaoczEmZyoChtHr++x/QX2KPxIn5NVSe7QxN7yTJV373NrnMMfg==";
};
};
- "@aws-sdk/querystring-builder-3.168.0" = {
+ "@aws-sdk/querystring-builder-3.171.0" = {
name = "_at_aws-sdk_slash_querystring-builder";
packageName = "@aws-sdk/querystring-builder";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.168.0.tgz";
- sha512 = "cCjdmRKf+zVc/Whc9fP3DqB6QTBz0MsJ2uGqYCWG8kqBr4W8nDZVNRVj4Q1zZjQzipU7+77xJAE8NSIl+RsubA==";
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.171.0.tgz";
+ sha512 = "qiDk3BlYH77QtJS6vSZlCGYjaW1Qq7JnxiAHPZc+wsl0kY59JPVuM5HTTZ+yjTu+hmSeiI0Wp5IHDiY+YOxi4w==";
};
};
- "@aws-sdk/querystring-parser-3.168.0" = {
+ "@aws-sdk/querystring-parser-3.171.0" = {
name = "_at_aws-sdk_slash_querystring-parser";
packageName = "@aws-sdk/querystring-parser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.168.0.tgz";
- sha512 = "O82vxPyoLRuqcCFxAQYuvDwOdMOaQ/hqlaC8Tw6qNE3wpJ1296M51Zgb7lPfIlSxzAc96H//Q+d1t5MViK2SFg==";
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.171.0.tgz";
+ sha512 = "wYM4HVlmi0NaRxJXmOPwQ4L6LPwUvRNMg+33z2Vvs9Ij23AzTCI2JRtaAwz/or3h6+nMlCOVsLZ7PAoLhkrgmg==";
};
};
- "@aws-sdk/s3-request-presigner-3.169.0" = {
+ "@aws-sdk/s3-request-presigner-3.173.0" = {
name = "_at_aws-sdk_slash_s3-request-presigner";
packageName = "@aws-sdk/s3-request-presigner";
- version = "3.169.0";
+ version = "3.173.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.169.0.tgz";
- sha512 = "GjK+E0Ie6xK1jPE1YPcBpv48o+eXWwPhYUaQeGGPrzoIwsgP5oDIxVEdW6DhWxHra8O7wzZZGM5V6SgJE9v+uA==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.173.0.tgz";
+ sha512 = "s2SttAY4dViBMPcXcLb/jgIM+4nPA0ZUvoWxOB/cNZTSPA070QJB/0yuzMbbhjOv5J5pXbMM4KOgfNDQbiWZtQ==";
};
};
- "@aws-sdk/service-error-classification-3.168.0" = {
+ "@aws-sdk/service-error-classification-3.171.0" = {
name = "_at_aws-sdk_slash_service-error-classification";
packageName = "@aws-sdk/service-error-classification";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.168.0.tgz";
- sha512 = "cW1U3YMMRLukx5/Fl7NpCsaFgcDkOOZVUaW2qLghJOakt1dc6OwgtPlS7toC9A7zjMIovqYwcksHO5mCyqrPlA==";
+ url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.171.0.tgz";
+ sha512 = "OrVFyPh3fFACRvplp8YvSdKNIXNx8xNYsHK+WhJFVOwnLC6OkwMyjck1xjfu4gvQ/PZlLqn7qTTURKcI2rUbMw==";
};
};
- "@aws-sdk/shared-ini-file-loader-3.168.0" = {
+ "@aws-sdk/shared-ini-file-loader-3.171.0" = {
name = "_at_aws-sdk_slash_shared-ini-file-loader";
packageName = "@aws-sdk/shared-ini-file-loader";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.168.0.tgz";
- sha512 = "K97HWEySV6HJC4CLyimVuqit4FILW4BtTU62jCaEwoPvg1XPAolCzzWfLClJ0GWfyf32+o30wJj8SgHuIuN2Qw==";
+ url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.171.0.tgz";
+ sha512 = "tilea/YDqszMqXn3pOaBBZVSA/29MegV0QBhKlrJoYzhZxZ1ZrlkyuTUVz6RjktRUYnty9D3MlgrmaiBxAOdrg==";
};
};
- "@aws-sdk/signature-v4-3.168.0" = {
+ "@aws-sdk/signature-v4-3.171.0" = {
name = "_at_aws-sdk_slash_signature-v4";
packageName = "@aws-sdk/signature-v4";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.168.0.tgz";
- sha512 = "jb98UrZ4d07Wr1mUVDY1HRlbEOVoPFZ38e4k20AUEXybxhsvlQhfAfaDITFg3UwMO978m4VAsjpzw8h8WGsNQw==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.171.0.tgz";
+ sha512 = "tun1PIN/zW2y3h6uYuGhDLaMQmT52KK3KZyq+UM2XLYPz8j7G2TEFyJVn5Wk+QbHirCmOh8dCkaa5yFO6vfEFw==";
};
};
- "@aws-sdk/signature-v4-multi-region-3.168.0" = {
+ "@aws-sdk/signature-v4-multi-region-3.171.0" = {
name = "_at_aws-sdk_slash_signature-v4-multi-region";
packageName = "@aws-sdk/signature-v4-multi-region";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.168.0.tgz";
- sha512 = "uWcVm3e0UPueltQPevWmeKC/OL4E+2qwXx16LteHTAxrEDRJ0E7lxuBwhrNRwbyhtqaEVy36tUeyrWP8+oEYNw==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.171.0.tgz";
+ sha512 = "ga149Xf8uQ+e29gC+mRfdvDy4aOJidRE86YkZ0D6/XMBpmMl7dU9sKioKCKhPeUr10L7w4I3WRA1G3Vjq5j43Q==";
};
};
- "@aws-sdk/smithy-client-3.168.0" = {
+ "@aws-sdk/smithy-client-3.171.0" = {
name = "_at_aws-sdk_slash_smithy-client";
packageName = "@aws-sdk/smithy-client";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.168.0.tgz";
- sha512 = "B2wuTg5ymTYA7eVkt73bdRlWNWvdWNRY3QQizTWn0Ch3nOZXyVZSdH4mGmuWcpiQXEX/YYGmTLY7nCKWrk1E6Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.171.0.tgz";
+ sha512 = "Q4fYE8uWxDh1Pd9Flo7/Cns1eEg0PmPrMsgHv0za1S3TgVHA6jRq3KZaD6Jcm0H12NPbWv67Cu+O0sMei8oaxA==";
};
};
- "@aws-sdk/types-3.168.0" = {
+ "@aws-sdk/types-3.171.0" = {
name = "_at_aws-sdk_slash_types";
packageName = "@aws-sdk/types";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.168.0.tgz";
- sha512 = "J9VmQAakmqrdYKt3N0T/zQR6ZkfvQ7Y3WufjEWRTdslYcQ9f7UyI93Q21baCHvgcp3E5c4w62x18o6mEA/cHPQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.171.0.tgz";
+ sha512 = "Yv5Wn/pbjMBST2jPHWPczmVbOLq8yFQVRyy1zGfsg1ETn25nGPvGBwqOkWcuz229KAcdUvFdRV9xaQCN3Lbo+Q==";
};
};
- "@aws-sdk/url-parser-3.168.0" = {
+ "@aws-sdk/url-parser-3.171.0" = {
name = "_at_aws-sdk_slash_url-parser";
packageName = "@aws-sdk/url-parser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.168.0.tgz";
- sha512 = "spFHA6NpsmAF3NCYyljjvl7uavHRvFDCNN32ce9RuRUXXuK8emAtwzXW95OUqtgCcyyKIA5p5p+gujrT7Npmeg==";
+ url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.171.0.tgz";
+ sha512 = "EF4ecSTmW9yG1faCXpTvySIpaPhK+6ebVxT6Zlt7IwIb9K+0zWlNb6VjDzq5Xg+nK7Y1p7RGmwhictWbOtbo9g==";
};
};
- "@aws-sdk/util-arn-parser-3.168.0" = {
+ "@aws-sdk/util-arn-parser-3.170.0" = {
name = "_at_aws-sdk_slash_util-arn-parser";
packageName = "@aws-sdk/util-arn-parser";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.168.0.tgz";
- sha512 = "DV8jeygCMTod3g2swt020F4+mEfWUC6wgok49tXghoGwKVHjwPM+Lz8ENXY9Pu9sa3OJnz70PjPG4lztijfiqQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.170.0.tgz";
+ sha512 = "2ivABL9GNsucfMMkgGjVdFidbDogtSr4FBVW12D4ltijOL82CAynGrnxHAczRGnmi5/1/Ir4ipkr9pAdRMGiGw==";
};
};
- "@aws-sdk/util-base64-browser-3.168.0" = {
+ "@aws-sdk/util-base64-browser-3.170.0" = {
name = "_at_aws-sdk_slash_util-base64-browser";
packageName = "@aws-sdk/util-base64-browser";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.168.0.tgz";
- sha512 = "awyUvPXWbV5SrpUY8vTA58RTdTnDFJJmVlCXGB8JCtWYVuAQ5FfKA/K0ZD6p+AP6AsCgHSvXCuZm8vFyZldJ2Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.170.0.tgz";
+ sha512 = "uLP9Kp74+jc+UWI392LSWIaUj9eXZBhkAiSm8dXAyrr+5GFOKvmEdidFoZKKcFcZ2v3RMonDgFVcDBiZ33w7BQ==";
};
};
- "@aws-sdk/util-base64-node-3.168.0" = {
+ "@aws-sdk/util-base64-node-3.170.0" = {
name = "_at_aws-sdk_slash_util-base64-node";
packageName = "@aws-sdk/util-base64-node";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.168.0.tgz";
- sha512 = "NqU7t3Fes0QngHwAZoIKeXyUZOoszEwGuerj1wZk6+Jd6X4L5NdBcBg8AA2VMyRdSFhCP+irgVRZrYSn0Ii66g==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.170.0.tgz";
+ sha512 = "sjpOmfyW0RWCLXU8Du0ZtwgFoxIuKQIyVygXJ4qxByoa3jIUJXf4U33uSRMy47V3JoogdZuKSpND9hiNk2wU4w==";
};
};
- "@aws-sdk/util-body-length-browser-3.168.0" = {
+ "@aws-sdk/util-body-length-browser-3.170.0" = {
name = "_at_aws-sdk_slash_util-body-length-browser";
packageName = "@aws-sdk/util-body-length-browser";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.168.0.tgz";
- sha512 = "s51E8ctLKCoLqcj4a1YsIVX1sMLwf1f9lNfhnE8H7U85BeqTAtjAifdejDdFtxS4ECF95cupzN6PgqFmgdrzpQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.170.0.tgz";
+ sha512 = "SqSWA++gsZgHw6tlcEXx9K6R6cVKNYzOq6bca+NR7jXvy1hfqiv9Gx5TZrG4oL4JziP8QA0fTklmI1uQJ4HBRA==";
};
};
- "@aws-sdk/util-body-length-node-3.168.0" = {
+ "@aws-sdk/util-body-length-node-3.170.0" = {
name = "_at_aws-sdk_slash_util-body-length-node";
packageName = "@aws-sdk/util-body-length-node";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.168.0.tgz";
- sha512 = "vKG9iylTshwzHsVsRpx3oLDMtBvG47b3TIMGQFSuCDPEwD91+s1ORe3r+RxJIWDYJtmw5Y5ZPveYib4p4rWSUQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.170.0.tgz";
+ sha512 = "sFb85ngsgfpamwDn22LC/+FkbDTNiddbMHptkajw+CAD2Rb4SJDp2PfXZ6k883BueJWhmxZ9+lApHZqYtgPdzw==";
};
};
- "@aws-sdk/util-buffer-from-3.168.0" = {
+ "@aws-sdk/util-buffer-from-3.170.0" = {
name = "_at_aws-sdk_slash_util-buffer-from";
packageName = "@aws-sdk/util-buffer-from";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.168.0.tgz";
- sha512 = "NDQIBdJfK95N/zewOcEJC9NqNVRXzWHrgKJTdCTW4UuRBADg3YTeDmqmNA2TUaWydQZa0ubpX3JyaKz4l3DDZw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.170.0.tgz";
+ sha512 = "3ClE3wgN/Zw0ahfVAY5KQ/y3K2c+SYHwVUQaGSuVQlPOCDInGYjE/XEFwCeGJzncRPHIKDRPEsHCpm1uwgwEqQ==";
};
};
- "@aws-sdk/util-config-provider-3.168.0" = {
+ "@aws-sdk/util-config-provider-3.170.0" = {
name = "_at_aws-sdk_slash_util-config-provider";
packageName = "@aws-sdk/util-config-provider";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.168.0.tgz";
- sha512 = "4AyBOlV2w8fqQ1Os9khnjrsAogBN7ou0bRS1Q34Y9zwtFL+T+xhHO0pp9+Yfw+E6s2Uy3DZWbq8PWyBZze6nuw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.170.0.tgz";
+ sha512 = "VV6lfss6Go00TF2hRVJnN8Uf2FOwC++1e8glaeU7fMWluYCBjwl+116mPOPFaxvkJCg0dui2tFroXioslM/rvQ==";
};
};
- "@aws-sdk/util-create-request-3.168.0" = {
+ "@aws-sdk/util-create-request-3.171.0" = {
name = "_at_aws-sdk_slash_util-create-request";
packageName = "@aws-sdk/util-create-request";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.168.0.tgz";
- sha512 = "OOb1rHykoVyXz9Zt82ZhQVGspn0wVz2PExFLBYIb8825GK9ovQ788FpwKCKKVjRmKZr5OLFpdm4S52un7ZgOJQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.171.0.tgz";
+ sha512 = "E+d9qgv8nx+abrGkabRBFRes411Z/6xrwtX1BTuIEJGK5WhrzR+nnYC6Uh2zFNjbXcu9RQWu2wICD064f9MOHw==";
};
};
- "@aws-sdk/util-defaults-mode-browser-3.168.0" = {
+ "@aws-sdk/util-defaults-mode-browser-3.171.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-browser";
packageName = "@aws-sdk/util-defaults-mode-browser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.168.0.tgz";
- sha512 = "5lB9eDMkaittKbdugurzJx32quGrQar+ki3oebjJQZl4/gsDVRqOT9qwz95RVeXdEIUdA4U3T/1OgSNUT9aMyA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.171.0.tgz";
+ sha512 = "ZZwtpm2XHTOx5TW7gQrpY+IOtriI506ab5t0DVgdOA7G8BVkC0I6Tm+0NJFSfsl/G4QzI0fNSbDG/6wAFZmPAQ==";
};
};
- "@aws-sdk/util-defaults-mode-node-3.168.0" = {
+ "@aws-sdk/util-defaults-mode-node-3.171.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-node";
packageName = "@aws-sdk/util-defaults-mode-node";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.168.0.tgz";
- sha512 = "462U5waEl495rP0WaKHXS6rrKHusMMBYvHzMzD3/gpSEwMZti0ZWLzhHNRcWp7d3uRVVdAsjF4UM6QwhJrScmA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.171.0.tgz";
+ sha512 = "3zbtGGRfygZRIh6BtGm6S+qGPPF3l/kUH4FKY4zpfLFamv+8SpcAlqH5BmbayA77vHdtiGEo5PhnuEr6QRABkw==";
};
};
- "@aws-sdk/util-format-url-3.168.0" = {
+ "@aws-sdk/util-format-url-3.171.0" = {
name = "_at_aws-sdk_slash_util-format-url";
packageName = "@aws-sdk/util-format-url";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.168.0.tgz";
- sha512 = "2cpv3mkl7LXqFG4G42e82GWI/BUCjEAyetppl61TtQ1UpzXQk/pQtDbEADSIhsgJ8RKSpubrGrczEK9S/pKE3w==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.171.0.tgz";
+ sha512 = "xR2XQvLeZjHxg1JeWmen+GiTPDyPAjc6W4857BBjBRK05n5RWsQp28FQcKUUzRGZdq1isja6sxhfUGRDeycFqQ==";
};
};
- "@aws-sdk/util-hex-encoding-3.168.0" = {
+ "@aws-sdk/util-hex-encoding-3.170.0" = {
name = "_at_aws-sdk_slash_util-hex-encoding";
packageName = "@aws-sdk/util-hex-encoding";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.168.0.tgz";
- sha512 = "KmJkd0eKXGd2z5h2N0yV6WUBqulwumq2eppv6pYrVfyQc0bBwSOYRG0NcXDvQB7rd+spbQjgbeqrHnsk34fQbQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.170.0.tgz";
+ sha512 = "BDYyMqaxX4/N7rYOIYlqgpZaBuHw3kNXKgOkWtJdzndIZbQX8HnyJ+rF0Pr1aVsOpVDM+fY1prERleFh/ZRTCg==";
};
};
- "@aws-sdk/util-locate-window-3.168.0" = {
+ "@aws-sdk/util-locate-window-3.170.0" = {
name = "_at_aws-sdk_slash_util-locate-window";
packageName = "@aws-sdk/util-locate-window";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.168.0.tgz";
- sha512 = "bCKN6rbTTA41cqm7TYuiSkXR8peSXR/t8GioeEOExPESNgR7kuwVU4pQ2LZYjnD1HqLtz3FKKKddvBJhmqpG8Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.170.0.tgz";
+ sha512 = "uQvn3ZaAokWcNSY+tNR71RGXPPncv5ejrpGa/MGOCioeBjkU5n5OJp7BdaTGouZu4fffeVpdZJ/ZNld8LWMgLw==";
};
};
- "@aws-sdk/util-middleware-3.168.0" = {
+ "@aws-sdk/util-middleware-3.171.0" = {
name = "_at_aws-sdk_slash_util-middleware";
packageName = "@aws-sdk/util-middleware";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.168.0.tgz";
- sha512 = "PInwsmxfXj4HhZytF5kZP6BYJ3mVW2QTzxSnKobkIfRnZHwBEGL74voaArfbbAfqvxzptDY6x4vo4N5Mo7M4hA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.171.0.tgz";
+ sha512 = "43aXJ40z7BIkh6usI8qQlQ6JUj16ecmwsRmUi+SJf3+bHPnkENdjpKCx4i15UWii7fr5QJAivZykuvBXl/sicQ==";
};
};
- "@aws-sdk/util-stream-browser-3.168.0" = {
+ "@aws-sdk/util-stream-browser-3.171.0" = {
name = "_at_aws-sdk_slash_util-stream-browser";
packageName = "@aws-sdk/util-stream-browser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.168.0.tgz";
- sha512 = "rHJqGJJcH6htWKiNWAcVfVkpjD3EF/frQCMPuft7uLhT7Bc9q9qAVzmdR3dIZtcVGutvcOJ2Xcd5Gq2iHyg3ew==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.171.0.tgz";
+ sha512 = "GJfuRrAW+hwQfeWK3OfmN1kUtTpvVZj+EVb0GQ8F4/+PYRSpbNoQEW6oKCP6xIGR1xKLuiGsN5VQlWuECgIJKA==";
};
};
- "@aws-sdk/util-stream-node-3.168.0" = {
+ "@aws-sdk/util-stream-node-3.171.0" = {
name = "_at_aws-sdk_slash_util-stream-node";
packageName = "@aws-sdk/util-stream-node";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.168.0.tgz";
- sha512 = "blvKisiX8d+QSikloOxwMdudcpCX0rSTNhg/UTlyGD0VIvx22evrc3QaKiG9AWlSoqxTGOAs8L6azPtTt5jTGQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.171.0.tgz";
+ sha512 = "XuEUlixZnwqc1HSIRLFzIlfbpwMdAmGUkcADyvUYeTAEYf3hHzvvWERno4ZinuGQdU/+ogW29CsbTFnA80mz+A==";
};
};
- "@aws-sdk/util-uri-escape-3.168.0" = {
+ "@aws-sdk/util-uri-escape-3.170.0" = {
name = "_at_aws-sdk_slash_util-uri-escape";
packageName = "@aws-sdk/util-uri-escape";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.168.0.tgz";
- sha512 = "EnNdhxRif4B4PM+CQcq+2s+dRiYVBPMZHZepq6W/eSOvZfW/T8BvDjUzRW9NjGV/Ld3XKk6dMuoWmBKt7J6I7g==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.170.0.tgz";
+ sha512 = "Fof0urZ3Lx6z6LNKSEO6T4DNaNh6sLJaSWFaC6gtVDPux/C3R7wy2RQRDp0baHxE8m1KMB0XnKzHizJNrbDI1w==";
};
};
- "@aws-sdk/util-user-agent-browser-3.168.0" = {
+ "@aws-sdk/util-user-agent-browser-3.171.0" = {
name = "_at_aws-sdk_slash_util-user-agent-browser";
packageName = "@aws-sdk/util-user-agent-browser";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.168.0.tgz";
- sha512 = "wh3E0FXLzCbpgsi/+NQn2dK/nD//lOKAndzyPsx1uXvKAiqQCkIqAPz5fiGuSkYBZHkjvRxTNSXjL+1tJn+lVQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.171.0.tgz";
+ sha512 = "DNps82f+fOOySUO49I8kAJIGdTtZiL0l3hPEY1V9vp4SbF8B1jbFjPRR24tRN1S0B9AfC78k0EmJTmNWvq6EBQ==";
};
};
- "@aws-sdk/util-user-agent-node-3.168.0" = {
+ "@aws-sdk/util-user-agent-node-3.171.0" = {
name = "_at_aws-sdk_slash_util-user-agent-node";
packageName = "@aws-sdk/util-user-agent-node";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.168.0.tgz";
- sha512 = "grL671IO1kkAD3BjofoN0SJE0ldrHjEbevIa4i9eif/Y3LIoCgmUP6tUtRzR7K9CDdjeGuvo0vJ9HfwZWH/B/g==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.171.0.tgz";
+ sha512 = "xyBOIA2UUoP6dWkxkxpJIQq2zt3PhZoIlMcFwcVPfKtnqOM0FzdTlUPN4iqi7UAOkKg020lZhflzMqu5454Ucg==";
};
};
- "@aws-sdk/util-utf8-browser-3.168.0" = {
+ "@aws-sdk/util-utf8-browser-3.170.0" = {
name = "_at_aws-sdk_slash_util-utf8-browser";
packageName = "@aws-sdk/util-utf8-browser";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.168.0.tgz";
- sha512 = "ZXEnVC/AcBdf2wQrITq4bkLnwiPKoBnhJwfPjZdpMHsDssKLquaHQf+QLOB/2s2U+jxl6c2Q7+rL4dv7x545Bg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.170.0.tgz";
+ sha512 = "tJby9krepSwDsBK+KQF5ACacZQ4LH1Aheh5Dy0pghxsN/9IRw7kMWTumuRCnSntLFFphDD7GM494/Dvnl1UCLA==";
};
};
- "@aws-sdk/util-utf8-node-3.168.0" = {
+ "@aws-sdk/util-utf8-node-3.170.0" = {
name = "_at_aws-sdk_slash_util-utf8-node";
packageName = "@aws-sdk/util-utf8-node";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.168.0.tgz";
- sha512 = "m9EfLgh0QQrgJfuYowPQW2+a3f848F92cVTnCyeUtjiT59lkW9QPJhVVajRcfmNUUT4S/ikxvmkhzDzzMYH+gA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.170.0.tgz";
+ sha512 = "52QWGNoNQoyT2CuoQz6LjBKxHQtN/ceMFLW+9J1E0I1ni8XTuTYP52BlMe5484KkmZKsHOm+EWe4xuwwVetTxg==";
};
};
- "@aws-sdk/util-waiter-3.168.0" = {
+ "@aws-sdk/util-waiter-3.171.0" = {
name = "_at_aws-sdk_slash_util-waiter";
packageName = "@aws-sdk/util-waiter";
- version = "3.168.0";
+ version = "3.171.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.168.0.tgz";
- sha512 = "RdUapfJHeqjVeFtafKY+PLvKxEKi2IS+rt475YRoDGqzTegJLV1BO89j4wq/VWyGVljvpRI2/6RqG2Q0K/ozPA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.171.0.tgz";
+ sha512 = "h4iqRxX09tM9yjnHWihnzM5cDboSEJAbx68ar4zjzDIUbVroVkDfl77AWVlS9D5SlfdWr70G3WT4EQfIK5Vd2g==";
};
};
- "@aws-sdk/xml-builder-3.168.0" = {
+ "@aws-sdk/xml-builder-3.170.0" = {
name = "_at_aws-sdk_slash_xml-builder";
packageName = "@aws-sdk/xml-builder";
- version = "3.168.0";
+ version = "3.170.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.168.0.tgz";
- sha512 = "KLKDyPaT2FVMmoRuzOPKTmp+kL+8EGRTg9LCje3Oob18e1oXPma7pryx0gSWJ01wcdaRNsP+hrFEruB0JqwjpQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.170.0.tgz";
+ sha512 = "eN458rrukeI62yU1k4a+032IfpAS7aK30VEITzKanklMW6AxTpxUC6vGrP6bwtIpCFDN8yVaIiAwGXQg5l1X4g==";
};
};
"@azu/format-text-1.0.1" = {
@@ -1336,22 +1354,22 @@ let
sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==";
};
};
- "@babel/compat-data-7.19.0" = {
+ "@babel/compat-data-7.19.1" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.0.tgz";
- sha512 = "y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.1.tgz";
+ sha512 = "72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg==";
};
};
- "@babel/core-7.19.0" = {
+ "@babel/core-7.19.1" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.19.0.tgz";
- sha512 = "reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.19.1.tgz";
+ sha512 = "1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw==";
};
};
"@babel/core-7.9.0" = {
@@ -1399,13 +1417,13 @@ let
sha512 = "yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==";
};
};
- "@babel/helper-compilation-targets-7.19.0" = {
+ "@babel/helper-compilation-targets-7.19.1" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz";
- sha512 = "Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.1.tgz";
+ sha512 = "LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==";
};
};
"@babel/helper-create-class-features-plugin-7.19.0" = {
@@ -1525,13 +1543,13 @@ let
sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==";
};
};
- "@babel/helper-replace-supers-7.18.9" = {
+ "@babel/helper-replace-supers-7.19.1" = {
name = "_at_babel_slash_helper-replace-supers";
packageName = "@babel/helper-replace-supers";
- version = "7.18.9";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz";
- sha512 = "dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==";
+ url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz";
+ sha512 = "T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==";
};
};
"@babel/helper-simple-access-7.18.6" = {
@@ -1570,13 +1588,13 @@ let
sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==";
};
};
- "@babel/helper-validator-identifier-7.18.6" = {
+ "@babel/helper-validator-identifier-7.19.1" = {
name = "_at_babel_slash_helper-validator-identifier";
packageName = "@babel/helper-validator-identifier";
- version = "7.18.6";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz";
- sha512 = "MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==";
+ url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz";
+ sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==";
};
};
"@babel/helper-validator-option-7.18.6" = {
@@ -1615,13 +1633,13 @@ let
sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==";
};
};
- "@babel/node-7.18.10" = {
+ "@babel/node-7.19.1" = {
name = "_at_babel_slash_node";
packageName = "@babel/node";
- version = "7.18.10";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/node/-/node-7.18.10.tgz";
- sha512 = "VbqzK6QXfQVi4Bpk6J7XqHXKFNbG2j3rdIdx68+/14GDU7jXDOSyUU/cwqCM1fDwCdxp37pNV/ToSCXsNChcyA==";
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.19.1.tgz";
+ sha512 = "gfxJNrawPso6kx7SwKfAdX1rEzVc09speJLFKrdxuZXGlve92pjbB3nJVmuwrxNN4+jvytj2zvliNXuW6uaSOw==";
};
};
"@babel/parser-7.18.4" = {
@@ -1633,13 +1651,13 @@ let
sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==";
};
};
- "@babel/parser-7.19.0" = {
+ "@babel/parser-7.19.1" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.0.tgz";
- sha512 = "74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz";
+ sha512 = "h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==";
};
};
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = {
@@ -1660,13 +1678,13 @@ let
sha512 = "AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.19.0" = {
+ "@babel/plugin-proposal-async-generator-functions-7.19.1" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.0.tgz";
- sha512 = "nhEByMUTx3uZueJ/QkJuSlCfN4FGg+xy+vRsfGQGzSauq5ks2Deid2+05Q3KhfaUjvec1IGhw/Zm3cFm8JigTQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz";
+ sha512 = "0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==";
};
};
"@babel/plugin-proposal-class-properties-7.18.6" = {
@@ -2146,13 +2164,13 @@ let
sha512 = "dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==";
};
};
- "@babel/plugin-transform-named-capturing-groups-regex-7.19.0" = {
+ "@babel/plugin-transform-named-capturing-groups-regex-7.19.1" = {
name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex";
packageName = "@babel/plugin-transform-named-capturing-groups-regex";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.0.tgz";
- sha512 = "HDSuqOQzkU//kfGdiHBt71/hkDTApw4U/cMVgKgX7PqfB3LOaK+2GtCEsBu1dL9CkswDm0Gwehht1dCr421ULQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz";
+ sha512 = "oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==";
};
};
"@babel/plugin-transform-new-target-7.18.6" = {
@@ -2245,13 +2263,13 @@ let
sha512 = "oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==";
};
};
- "@babel/plugin-transform-runtime-7.18.10" = {
+ "@babel/plugin-transform-runtime-7.19.1" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.18.10";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz";
- sha512 = "q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.1.tgz";
+ sha512 = "2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==";
};
};
"@babel/plugin-transform-shorthand-properties-7.18.6" = {
@@ -2299,13 +2317,13 @@ let
sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==";
};
};
- "@babel/plugin-transform-typescript-7.19.0" = {
+ "@babel/plugin-transform-typescript-7.19.1" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.0.tgz";
- sha512 = "DOOIywxPpkQHXijXv+s9MDAyZcLp12oYRl3CMWZ6u7TjSoCBq/KqHR/nNFR3+i2xqheZxoF0H2XyL7B6xeSRuA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.1.tgz";
+ sha512 = "+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ==";
};
};
"@babel/plugin-transform-unicode-escapes-7.18.10" = {
@@ -2335,13 +2353,13 @@ let
sha512 = "X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==";
};
};
- "@babel/preset-env-7.19.0" = {
+ "@babel/preset-env-7.19.1" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.0.tgz";
- sha512 = "1YUju1TAFuzjIQqNM9WsF4U6VbD/8t3wEAlw3LFYuuEr+ywqLRcSXxFKz4DCEj+sN94l/XTDiUXYRrsvMpz9WQ==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.1.tgz";
+ sha512 = "c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA==";
};
};
"@babel/preset-flow-7.18.6" = {
@@ -2425,13 +2443,13 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/runtime-corejs3-7.19.0" = {
+ "@babel/runtime-corejs3-7.19.1" = {
name = "_at_babel_slash_runtime-corejs3";
packageName = "@babel/runtime-corejs3";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.0.tgz";
- sha512 = "JyXXoCu1N8GLuKc2ii8y5RGma5FMpFeO2nAQIe0Yzrbq+rQnN+sFj47auLblR5ka6aHNGPDgv8G/iI2Grb0ldQ==";
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.1.tgz";
+ sha512 = "j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==";
};
};
"@babel/template-7.18.10" = {
@@ -2443,13 +2461,13 @@ let
sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==";
};
};
- "@babel/traverse-7.19.0" = {
+ "@babel/traverse-7.19.1" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.0.tgz";
- sha512 = "4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.1.tgz";
+ sha512 = "0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA==";
};
};
"@babel/types-7.18.4" = {
@@ -2479,22 +2497,22 @@ let
sha512 = "3/kahUWyvgQUV9NtCMeeJgTFHziM2Z3f4hjDfnl03X4MW0onUeZfa2Mu4ZsRn2IAK7AmfLNkZe8vp8mxX9pDRg==";
};
};
- "@blueprintjs/core-4.9.4" = {
+ "@blueprintjs/core-4.10.1" = {
name = "_at_blueprintjs_slash_core";
packageName = "@blueprintjs/core";
- version = "4.9.4";
+ version = "4.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.9.4.tgz";
- sha512 = "aEhhXAzDGHNyC4BTn6AvkJBbS3AYofHzlNcqOvyNdU5SBVv+UabKs8Q8xMOhr0K6sn1BEEhtLvsW8IfhrSli3g==";
+ url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.10.1.tgz";
+ sha512 = "yXvbIP1P2GaX8ksrmZIX775W8nemdGfkKDnQehmCyW48Nm61xKrWeMFd8dUWCIQ8ok/xLlr3X5jAyW7YYfzzmg==";
};
};
- "@blueprintjs/icons-4.4.2" = {
+ "@blueprintjs/icons-4.5.0" = {
name = "_at_blueprintjs_slash_icons";
packageName = "@blueprintjs/icons";
- version = "4.4.2";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.4.2.tgz";
- sha512 = "6oHWphGsRRYbz24IYBVI7Gz4jnxmO2AKeHNJUpghHg0GicKIjp4fNd+l6I+1q5N0CLDeY3sYjUnV7Cp+dq0+Sw==";
+ url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.5.0.tgz";
+ sha512 = "IQCUrPfv6QxuLFkLT4h61COCxVyugAXQ1b+QhomJC8UukUjIFDQfG1YrbLRIuwngZMBH3JPov7ZM7wlp9x9REA==";
};
};
"@bmewburn/js-beautify-1.13.0" = {
@@ -2767,40 +2785,40 @@ let
sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g==";
};
};
- "@cspell/cspell-bundled-dicts-6.8.2" = {
+ "@cspell/cspell-bundled-dicts-6.10.0" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.8.2.tgz";
- sha512 = "E4sNdcG23nj0ztiI69PeU+ALL6DgL3GoqVZuLhpRwgRL4RN7n7FuUJdJ91cgpNvx50+HhdyxFqEpKRigD3yeNQ==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.10.0.tgz";
+ sha512 = "ih+YEiXlAyujaoHYZwL8VXWsC5TwzdtNWCK/lDRc015KfcjnRN6+zT+2Wy+WLO27wczHqiG6ClsI88IdwmytlQ==";
};
};
- "@cspell/cspell-pipe-6.8.2" = {
+ "@cspell/cspell-pipe-6.10.0" = {
name = "_at_cspell_slash_cspell-pipe";
packageName = "@cspell/cspell-pipe";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.8.2.tgz";
- sha512 = "9GXBibZ8bcU+2KhX6WTEASPhIhsqdFYITwBJ39jfUl2MiPgpvjYxQKrAgnZOm5WpRzCUxoelU2SVaoI+rn/Stg==";
+ url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.10.0.tgz";
+ sha512 = "bazBPpAGrfHWk6d2SZqgHJ7iCmCjfcijKdBMhElqMx4FKZu8OW+s9UPWXMT06lttIu1DRWdXLkKcnLQYvlYiDA==";
};
};
- "@cspell/cspell-service-bus-6.8.2" = {
+ "@cspell/cspell-service-bus-6.10.0" = {
name = "_at_cspell_slash_cspell-service-bus";
packageName = "@cspell/cspell-service-bus";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.8.2.tgz";
- sha512 = "YvEauGv/QZb5xRiKKvwiXz7lj7twc5TgispnujgHYDEt6OcXiWjYj676WzKkGJ2yM+QfurGJCCvOb2L1HQ6rYg==";
+ url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.10.0.tgz";
+ sha512 = "Zg7ioRETmiTkNalM4WX2RIFnj1wsFbX3Ztgi6JcGYzuzU490acIye1W9B6yspbQEdP1RL0qRWvPG+sodIv2JaA==";
};
};
- "@cspell/cspell-types-6.8.2" = {
+ "@cspell/cspell-types-6.10.0" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.8.2.tgz";
- sha512 = "jFg+D1L+MkIad2IR+qlnOYIuwqaosbTrtqhpWhbOGMvFQjxMyKg9IVxbmtjDCdRohdBUvRq96rkp0vx1FviiwQ==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.10.0.tgz";
+ sha512 = "YsFdXwkdEwGOmXU71a6DrCAArdDMI7jhdrtevwSIdAYtXRCZE24+Wmpaxa6AV6yaI+GxWxoxEWiKQsk7jztnqA==";
};
};
"@cspell/dict-ada-2.0.1" = {
@@ -2830,13 +2848,13 @@ let
sha512 = "uK/ehmp5LYrmRH2Gv3nbvdPswpkybJUn34WYKLpeuYHQktmi+pOI1A9uPdBPnSbMDffSvwQlQohIyKawz+X8Ag==";
};
};
- "@cspell/dict-companies-2.0.13" = {
+ "@cspell/dict-companies-2.0.14" = {
name = "_at_cspell_slash_dict-companies";
packageName = "@cspell/dict-companies";
- version = "2.0.13";
+ version = "2.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.13.tgz";
- sha512 = "EacGH6Yjd2u+sNRLd6+3jxbzWBSsmF4g52Xfxfv2T48qzRWJ1zqpX89ijihgYTwvZbf8H/6Lu+z1VU4e1gUp0g==";
+ url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.14.tgz";
+ sha512 = "Sq1X29Z05OZ/UNqTwVhf3/WaqvJQy4/S6gS8qYI5AQRX45gVe8CPhNBLmZOTC6z8m716bfQCxa5rRT9YNSdTZg==";
};
};
"@cspell/dict-cpp-3.2.1" = {
@@ -3136,13 +3154,13 @@ let
sha512 = "MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==";
};
};
- "@cspell/dict-software-terms-2.2.7" = {
+ "@cspell/dict-software-terms-2.2.9" = {
name = "_at_cspell_slash_dict-software-terms";
packageName = "@cspell/dict-software-terms";
- version = "2.2.7";
+ version = "2.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.2.7.tgz";
- sha512 = "tNdgfijX4PGIzwWyRQHqEsKEWqNc92HDdURcXBZNw2po7jUh+/FgqBoUgnJXyLastJ9PGX9847j9uNBPfShTgA==";
+ url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.2.9.tgz";
+ sha512 = "uty2txffWWgYVTwt6/ekPwtVHb8GRDKgfmhOrcQbpTgMghIjxFgS8ADYgt5h+NrAomy7oGrffWDI1BimbhzRCA==";
};
};
"@cspell/dict-sql-1.0.4" = {
@@ -3163,13 +3181,13 @@ let
sha512 = "yOBLSaRD0AnkkkndJ8PuB82Evp6lA2xItf2AWsnPfCCgxp5Ojk6uUBC/WQBSkzkCAOGbXyHsu9D97tsOx2c6cw==";
};
};
- "@cspell/dict-typescript-2.0.1" = {
+ "@cspell/dict-typescript-2.0.2" = {
name = "_at_cspell_slash_dict-typescript";
packageName = "@cspell/dict-typescript";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.1.tgz";
- sha512 = "YXH6nEH4thcD7lNffdNsKgDDZA5JVX4aKCuNIGE7qWSS9kBVgIvSU9/WH64R59rEzAPe1VwXwXyoZ7y4fAufww==";
+ url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.2.tgz";
+ sha512 = "OIoSJsCw9WHX4eDikoF5/0QbptMPZjElOcMYdYCyV03nqV5n4ot72ysTexW95yW4+fQU6uDPNQvnrUnhXXEkTA==";
};
};
"@cspell/dict-vue-2.0.2" = {
@@ -3649,13 +3667,22 @@ let
sha512 = "uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg==";
};
};
- "@esbuild/linux-loong64-0.14.54" = {
+ "@esbuild/android-arm-0.15.8" = {
+ name = "_at_esbuild_slash_android-arm";
+ packageName = "@esbuild/android-arm";
+ version = "0.15.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.8.tgz";
+ sha512 = "CyEWALmn+no/lbgbAJsbuuhT8s2J19EJGHkeyAwjbFJMrj80KJ9zuYsoAvidPTU7BgBf87r/sgae8Tw0dbOc4Q==";
+ };
+ };
+ "@esbuild/linux-loong64-0.15.8" = {
name = "_at_esbuild_slash_linux-loong64";
packageName = "@esbuild/linux-loong64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz";
- sha512 = "bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==";
+ url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.8.tgz";
+ sha512 = "pE5RQsOTSERCtfZdfCT25wzo7dfhOSlhAXcsZmuvRYhendOv7djcdvtINdnDp2DAjP17WXlBB4nBO6sHLczmsg==";
};
};
"@eslint/eslintrc-0.4.3" = {
@@ -4036,13 +4063,13 @@ let
sha512 = "bHWftN3zTp1bbBfmAEH8YK9UURWj2mffw7b7VaW2Og1qxwv3GMSza1cyv/d3EVqpMJ8AVwFv3mbi9p1ieMN9mw==";
};
};
- "@fluentui/react-8.94.4" = {
+ "@fluentui/react-8.96.0" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "8.94.4";
+ version = "8.96.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-8.94.4.tgz";
- sha512 = "zT9TscfVqunSbPRXuCOEwZ/MQK3n0baO2xs+TSTJEEh0POlov5BQb5CYLu/YxdVYkWD2EKeMH+O7Kcy4WmWnxg==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-8.96.0.tgz";
+ sha512 = "YwK9HuITVbGXT5e10u9nJ1BwxVKTBgU0dQPo/L6nuxyIPpYBqWhhXdn6R5b8LII7ZYjpz+8WaMY3v+5KpzR3eA==";
};
};
"@fluentui/react-focus-8.8.5" = {
@@ -4063,13 +4090,13 @@ let
sha512 = "qQAg/Hqchz0BGL1KJhg211uhhBDxF0bvMCdVKVoeeJNj4q3Cdvam87zHi7/W5gP8i6jgCILr7MrV3dH9umA/Sw==";
};
};
- "@fluentui/react-portal-compat-context-9.0.1" = {
+ "@fluentui/react-portal-compat-context-9.0.2" = {
name = "_at_fluentui_slash_react-portal-compat-context";
packageName = "@fluentui/react-portal-compat-context";
- version = "9.0.1";
+ version = "9.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.1.tgz";
- sha512 = "KhOcXy2tvzNoAqFowkaRGFiLuRuPjzn6i1W30iMkhgsSVKxa/9jxso86Z8R0eZwA+16RNO/Ia2nX1gqfUac9mw==";
+ url = "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.2.tgz";
+ sha512 = "dZiXbi01rjs4mTbHOiwSGG8JkUYGNlt+hOJhfGQobzRfFRU8ZMJpsY+8AeIcXfT08vIapjC5ofI5Nscpp0PftQ==";
};
};
"@fluentui/react-window-provider-2.2.2" = {
@@ -4486,13 +4513,13 @@ let
sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==";
};
};
- "@graphql-tools/url-loader-7.16.1" = {
+ "@graphql-tools/url-loader-7.16.2" = {
name = "_at_graphql-tools_slash_url-loader";
packageName = "@graphql-tools/url-loader";
- version = "7.16.1";
+ version = "7.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.1.tgz";
- sha512 = "41G+NcPoRKAQxoNeAdLRttI39WFdcpmhTz8jgvwLvgLvnAzAIPaPGuteWWO9ilpMwtomkOwmwOsj2UYz3JkKDg==";
+ url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.2.tgz";
+ sha512 = "ZVG3kDEJ88zLfqYtVmI36RUzaP/0bPBcJfBH8whMYL620tE6kizEQsON8iKsxcU1bWB5D7m9ZVFqW4eZ5EqVWw==";
};
};
"@graphql-tools/utils-6.2.4" = {
@@ -4549,13 +4576,13 @@ let
sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg==";
};
};
- "@graphql-tools/wrap-9.2.0" = {
+ "@graphql-tools/wrap-9.2.1" = {
name = "_at_graphql-tools_slash_wrap";
packageName = "@graphql-tools/wrap";
- version = "9.2.0";
+ version = "9.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.0.tgz";
- sha512 = "+mX9m4x0IrI/kHIeR9LXDgp+6lVfBdHHfJ5QpbwjFEo8g++L7sIAZ1rr5a99Z/AvUNwbzLtp34TPfdlR6aKVCw==";
+ url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.1.tgz";
+ sha512 = "W8bzJijTZDNi8e1oM2AMG89CtvfTYaJ9lCe0dYMN+a+OPMhRfgR9+eO7ALcUa9y4MTu+YEDVjUq0ZboaSvesyA==";
};
};
"@grpc/grpc-js-1.6.11" = {
@@ -4837,13 +4864,13 @@ let
sha512 = "trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==";
};
};
- "@ibm-cloud/openapi-ruleset-0.32.3" = {
+ "@ibm-cloud/openapi-ruleset-0.37.3" = {
name = "_at_ibm-cloud_slash_openapi-ruleset";
packageName = "@ibm-cloud/openapi-ruleset";
- version = "0.32.3";
+ version = "0.37.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-0.32.3.tgz";
- sha512 = "9eCNeEO/3TVEill0H2bFcfsjytzlC23lHxjC8YHqv5L/qMMW8/sndD7KMgvnb7SyUqg9Hp3Y+d+lzA23IUc9CA==";
+ url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-0.37.3.tgz";
+ sha512 = "saQM/1YTfhW7ou/mtmC4BMUhW/UM54aD47KBZucjrZLvAelzt8Lykm5zeN59Cu4cs/LBDEcvJfyZzDpPhdcVjQ==";
};
};
"@intervolga/optimize-cssnano-plugin-1.0.6" = {
@@ -5179,22 +5206,22 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsep-plugin/regex-1.0.2" = {
+ "@jsep-plugin/regex-1.0.3" = {
name = "_at_jsep-plugin_slash_regex";
packageName = "@jsep-plugin/regex";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsep-plugin/regex/-/regex-1.0.2.tgz";
- sha512 = "Nn/Bcaww8zOebMDqNmGlhAWPWhIr/8S8lGIgaB/fSqev5xaO5uKy5i4qvTh63GpR+VzKqimgxDdcxdcRuCJXSw==";
+ url = "https://registry.npmjs.org/@jsep-plugin/regex/-/regex-1.0.3.tgz";
+ sha512 = "XfZgry4DwEZvSFtS/6Y+R48D7qJYJK6R9/yJFyUFHCIUMEEHuJ4X95TDgJp5QkmzfLYvapMPzskV5HpIDrREug==";
};
};
- "@jsep-plugin/ternary-1.1.2" = {
+ "@jsep-plugin/ternary-1.1.3" = {
name = "_at_jsep-plugin_slash_ternary";
packageName = "@jsep-plugin/ternary";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsep-plugin/ternary/-/ternary-1.1.2.tgz";
- sha512 = "gXguJc09uCrqWt1MD7L1+ChO32g4UH4BYGpHPoQRLhyU7pAPPRA7cvKbyjoqhnUlLutiXvLzB5hVVawPKax8jw==";
+ url = "https://registry.npmjs.org/@jsep-plugin/ternary/-/ternary-1.1.3.tgz";
+ sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg==";
};
};
"@jsii/check-node-1.67.0" = {
@@ -5269,13 +5296,13 @@ let
sha512 = "4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA==";
};
};
- "@ledgerhq/devices-7.0.0" = {
+ "@ledgerhq/devices-7.0.1" = {
name = "_at_ledgerhq_slash_devices";
packageName = "@ledgerhq/devices";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.0.tgz";
- sha512 = "vq4B33WdU0dRAJIRFWZMj6w1W1yw1i4mekCmhk7N9wPaFrtGWZ2iI9WDihsNOBooCWKQe8Jsb9eD8RVThbSlFQ==";
+ url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.1.tgz";
+ sha512 = "LlAyDU5+GH0w+J1wscLU+Ga4z5a5ACKmMGQKILj5XscCtp63NjbtVdVt4oc/xrmoUdRqVehIw2Ui+e9nIF52yA==";
};
};
"@ledgerhq/errors-5.50.0" = {
@@ -5287,13 +5314,13 @@ let
sha512 = "gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==";
};
};
- "@ledgerhq/errors-6.10.1" = {
+ "@ledgerhq/errors-6.10.2" = {
name = "_at_ledgerhq_slash_errors";
packageName = "@ledgerhq/errors";
- version = "6.10.1";
+ version = "6.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.1.tgz";
- sha512 = "92d1zRQleR1AQ4CAXgWgDtKUms+8EwShLVUcajI+BLWvgJ1Vclmq6PsBIDEQbsm+riVu/Ji3LcHdmgFgmi0VGw==";
+ url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.2.tgz";
+ sha512 = "iMfEJPWaan8QaZw87WMUnFFRJqveE3FpU2ObTE0ydTJLPJNOUJjjurGBklqdWM/j5BIQvpi3byGKFChfNg8CaQ==";
};
};
"@ledgerhq/hw-transport-5.51.1" = {
@@ -5305,31 +5332,31 @@ let
sha512 = "6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw==";
};
};
- "@ledgerhq/hw-transport-6.27.3" = {
+ "@ledgerhq/hw-transport-6.27.4" = {
name = "_at_ledgerhq_slash_hw-transport";
packageName = "@ledgerhq/hw-transport";
- version = "6.27.3";
+ version = "6.27.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.3.tgz";
- sha512 = "vQMNCC1DUDtS+nkJsbycgFMSodmj91WuGSxX7RjOz2vuZBc6jXtDn9jzYdsfyKOwnvalQAkXm9hWWHlrMIKdNQ==";
+ url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.4.tgz";
+ sha512 = "i3RYKfSIZ7PHM2sFljAU443qOYMTlghx8l5AZqsNKsXbawHkuOr7EtISW3zqbC0Wh3uws7u63qQ/50TLmylr7g==";
};
};
- "@ledgerhq/hw-transport-node-hid-6.27.3" = {
+ "@ledgerhq/hw-transport-node-hid-6.27.4" = {
name = "_at_ledgerhq_slash_hw-transport-node-hid";
packageName = "@ledgerhq/hw-transport-node-hid";
- version = "6.27.3";
+ version = "6.27.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.3.tgz";
- sha512 = "XhbAPfRhjC78cIMPzAUAaZw/14lru88SJiyMlupY8VocbG//iuhPv7YvfbgS4nO2tXgeYIrRT3eTWBuLTEfCag==";
+ url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.4.tgz";
+ sha512 = "7dnQMUXKPcnlHaJsPT3Oo5WXYfeIqqA6u0mo/rbvFdz3/KsJtDaBF2E3RtBXFHrDmXjBA0leqXFeWXdHDFdF3A==";
};
};
- "@ledgerhq/hw-transport-node-hid-noevents-6.27.3" = {
+ "@ledgerhq/hw-transport-node-hid-noevents-6.27.4" = {
name = "_at_ledgerhq_slash_hw-transport-node-hid-noevents";
packageName = "@ledgerhq/hw-transport-node-hid-noevents";
- version = "6.27.3";
+ version = "6.27.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.3.tgz";
- sha512 = "aShJbG7I9TrsffLKkwJWhi/3FC9JnxyxVUjMtmZFN+XfJztWVxSIf2iB6asY2A0BYHIbmnanQIzk/0Z+FBrTjA==";
+ url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.4.tgz";
+ sha512 = "PlHtw9x7h40voLUvBAfcr1Phjo8rrRESEDsU0OY6doFoSHpjRFaNtQR1/okQ/A7hx19uXfqXOhbmrrBLNWrqsg==";
};
};
"@ledgerhq/hw-transport-u2f-5.36.0-deprecated" = {
@@ -5377,15 +5404,6 @@ let
sha512 = "lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw==";
};
};
- "@ledgerhq/logs-6.10.1-nightly.0" = {
- name = "_at_ledgerhq_slash_logs";
- packageName = "@ledgerhq/logs";
- version = "6.10.1-nightly.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.1-nightly.0.tgz";
- sha512 = "hwoUwlC7le37kQ72W8hAzVq070zuY6IEpssYNXDTr3pEfc3cprTAgEnaBsb0jXQGiLdONPvxc7nPp8nSyGD3hQ==";
- };
- };
"@leichtgewicht/ip-codec-2.0.4" = {
name = "_at_leichtgewicht_slash_ip-codec";
packageName = "@leichtgewicht/ip-codec";
@@ -6430,157 +6448,166 @@ let
sha512 = "W+IzEBw8a6LOOfRJM02dTT7BDZijxm+Z7lhtOAz1+y9vQm1Kdz9jlAO+qCEKsfxtUOmKilW8DIRqFw2aUgKeGg==";
};
};
- "@miniflare/cache-2.8.2" = {
+ "@miniflare/cache-2.9.0" = {
name = "_at_miniflare_slash_cache";
packageName = "@miniflare/cache";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.8.2.tgz";
- sha512 = "YaFOsXKmlNLk5xDJfyDCMsRaoZLFLPqHAiEsZBZTcCl3FlZbG2GUIvcMlfkO4OKb1nCjtr9OxFgtIdW6DEuboA==";
+ url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.9.0.tgz";
+ sha512 = "lriPxUEva9TJ01vU9P7pI60s3SsFnb4apWkNwZ+D7CRqyXPipSbapY8BWI2FUIwkEG7xap6UhzeTS76NettCXQ==";
};
};
- "@miniflare/cli-parser-2.8.2" = {
+ "@miniflare/cli-parser-2.9.0" = {
name = "_at_miniflare_slash_cli-parser";
packageName = "@miniflare/cli-parser";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.8.2.tgz";
- sha512 = "qa//FhLiJpQpTngq6tCJMZqc1CjhJQV4AwKWaIp85XiVbpbN/cTzZ6PUyoYLTZ6g6dL4j+136o2bb+2XSMxVHw==";
+ url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.9.0.tgz";
+ sha512 = "gu8Z7NWNcYw6514/yOvajaj3GmebRucx+EEt3p1vKirO+gvFgKAt/puyUN3p7u8ZZmLuLF/B+wVnH3lj8BWKlg==";
};
};
- "@miniflare/core-2.8.2" = {
+ "@miniflare/core-2.9.0" = {
name = "_at_miniflare_slash_core";
packageName = "@miniflare/core";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/core/-/core-2.8.2.tgz";
- sha512 = "a9Ecyf4xALcvphQhK3qA+mtUApUrUbwcxCexXvvgVsPrQtMCOIjJ2qs7+RKrC+krCy2O8Eq/8eq2hYh4y/HOKQ==";
+ url = "https://registry.npmjs.org/@miniflare/core/-/core-2.9.0.tgz";
+ sha512 = "QqSwF6oHvgrFvN5lnrLc6EEagFlZWW+UMU8QdrE8305cNGHrIOxKCA2nte4PVFZUVw/Ts13a0tVhUk3a2fAyxQ==";
};
};
- "@miniflare/durable-objects-2.8.2" = {
+ "@miniflare/d1-2.9.0" = {
+ name = "_at_miniflare_slash_d1";
+ packageName = "@miniflare/d1";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@miniflare/d1/-/d1-2.9.0.tgz";
+ sha512 = "swK9nzxw1SvVh/4cH3bRR1SBuHQU/YsB8WvuHojxufmgviAD1xhms3XO3rkpAzfKoGM5Oy6DovMe0xUXV/GS0w==";
+ };
+ };
+ "@miniflare/durable-objects-2.9.0" = {
name = "_at_miniflare_slash_durable-objects";
packageName = "@miniflare/durable-objects";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.8.2.tgz";
- sha512 = "jKcnb6lfgVZKfTPom2d0yPiaVAuDJLyr4itzb3nqJNH5Ld2iKJv77iSGOEOv8Wb78YEEFU8PQZvvrAC/TmN6tQ==";
+ url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.9.0.tgz";
+ sha512 = "7uTvfEUXS7xqwrsWOwWrFUuKc4EiMpVkAWPeYGLB/0TJaJ6N+sZMpYYymdW79TQwPIDfgtpfkIy93MRydqpnrw==";
};
};
- "@miniflare/html-rewriter-2.8.2" = {
+ "@miniflare/html-rewriter-2.9.0" = {
name = "_at_miniflare_slash_html-rewriter";
packageName = "@miniflare/html-rewriter";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.8.2.tgz";
- sha512 = "xxrLO7XMpiaWi6HSIqvAxmD5z6RRHWENkWuWjQqaqC6E6qheN+d0ZeZshyP2SRbJUw9wfFUj5zkKTva5sovzbw==";
+ url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.9.0.tgz";
+ sha512 = "K5OB70PtkMo7M+tU46s/cX/j/qtjD9AlJ0hecYswrxVsfrT/YWyrCQJevmShFfJ92h7jPNigbeC3Od3JiVb6QA==";
};
};
- "@miniflare/http-server-2.8.2" = {
+ "@miniflare/http-server-2.9.0" = {
name = "_at_miniflare_slash_http-server";
packageName = "@miniflare/http-server";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.8.2.tgz";
- sha512 = "hrTRHHz+LWe7cLkP8Xg4hM3YRH7kI4ngOYozkEz1OC69SLBnxfT8xLkUkvz+fdJ3vquF+dpHyVQAa0dpvJShGA==";
+ url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.9.0.tgz";
+ sha512 = "IVJMkFfMpecq9WiCTvATEKhMuKPK9fMs2E6zmgexaefr3u1VlNtj2QxBxoPUXkT9xMJQlT5sSKstlRR1XKDz9Q==";
};
};
- "@miniflare/kv-2.8.2" = {
+ "@miniflare/kv-2.9.0" = {
name = "_at_miniflare_slash_kv";
packageName = "@miniflare/kv";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.8.2.tgz";
- sha512 = "radkyE6FtLGAoumf8S1VnPHAbgiP1DOzGnBnBVferMDkd86/3P8hre1a+C9PUTgt6e6KgLq4AKEFDwRJHc1MFw==";
+ url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.9.0.tgz";
+ sha512 = "EqG51okY5rDtgjYs2Ny6j6IUVdTlJzDjwBKBIuW+wOV9NsAAzEchKVdYAXc8CyxvkggpYX481HydTD2OzK3INQ==";
};
};
- "@miniflare/queues-2.8.2" = {
+ "@miniflare/queues-2.9.0" = {
name = "_at_miniflare_slash_queues";
packageName = "@miniflare/queues";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.8.2.tgz";
- sha512 = "WYlK5L7ukdcL86DdB/BsJhnX7jcLNzyYdcn5vPQbCnDyaK1Lz9lm1RCrtCz7qwJjTrq5z453pczm0ELTxa5n9g==";
+ url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.9.0.tgz";
+ sha512 = "cAHWIlLF57rxQaJl19AzXw1k0SOM/uLTlx8r2PylHajZ/RRSs7CkCox3oKA6E5zKyfyxk2M64bmsAFZ9RCA0gw==";
};
};
- "@miniflare/r2-2.8.2" = {
+ "@miniflare/r2-2.9.0" = {
name = "_at_miniflare_slash_r2";
packageName = "@miniflare/r2";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.8.2.tgz";
- sha512 = "cdqq1dcgfiTlCf3wjQjrhZuRb0vJImLwYSALVEAA/4leVhwNY9ABHIn71y29Nf4bUdv2YKVSfTuV0m0CRGmOqA==";
+ url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.9.0.tgz";
+ sha512 = "aMFWxxciAE3YsVok2OLy3A7hP5+2j/NaK7txmadgoe1CA8HYZyNuvv7v6bn8HKM5gWnJdT8sk4yEbMbBQ7Jv/A==";
};
};
- "@miniflare/runner-vm-2.8.2" = {
+ "@miniflare/runner-vm-2.9.0" = {
name = "_at_miniflare_slash_runner-vm";
packageName = "@miniflare/runner-vm";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.8.2.tgz";
- sha512 = "l9V/MedhH1Dc/xIEPEpXW57Y649lcTCYorwqnHPca3didiw75O8jI2g6MvuVlodmbimpg2WtwI7/2ac0WFZfWQ==";
+ url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.9.0.tgz";
+ sha512 = "vewP+Fy7Czb261GmB9x/YtQkoDs/QP9B5LbP0YfJ35bI2C2j940eJLm8JP72IHV7ILtWNOqMc3Ure8uAbpf9NQ==";
};
};
- "@miniflare/scheduler-2.8.2" = {
+ "@miniflare/scheduler-2.9.0" = {
name = "_at_miniflare_slash_scheduler";
packageName = "@miniflare/scheduler";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.8.2.tgz";
- sha512 = "vhtyPky+1Phq4Arul3mpzRWJuqJex2YgkPnf9MLA977dcxptRBOzGIxwVPzaUTtko4mHwwzEyl15diT/BXkPJA==";
+ url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.9.0.tgz";
+ sha512 = "eodSCGkJYi4Z+Imbx/bNScDfDSt5HOypVSYjbFHj+hA2aNOdkGw6a1b6mzwx49jJD3GadIkonZAKD0S114yWMA==";
};
};
- "@miniflare/shared-2.8.2" = {
+ "@miniflare/shared-2.9.0" = {
name = "_at_miniflare_slash_shared";
packageName = "@miniflare/shared";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.8.2.tgz";
- sha512 = "cjuLIeTAlqcb1POrK4nLa8Bt79SfzbglUr/w78xRAUUoOdB0Lsm3HnEERzD1o0lO2G/Q9F+VDAp2QyglPFV61A==";
+ url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.9.0.tgz";
+ sha512 = "5Ew/Ph0cHDQqKvOlmN70kz+qZW0hdgE9fQBStKLY3vDYhnBEhopbCUChSS+FCcL7WtxVJJVE7iB6J09NQTnQ/A==";
};
};
- "@miniflare/sites-2.8.2" = {
+ "@miniflare/sites-2.9.0" = {
name = "_at_miniflare_slash_sites";
packageName = "@miniflare/sites";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.8.2.tgz";
- sha512 = "zdzg8gm/I4bcUIQ4Yo9WqvTQJN+yOnpPqbQ/nKKd6tebrX4k+sw9wTTGl42MjQ4NN5XfNy3xFERo21i1jLgziA==";
+ url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.9.0.tgz";
+ sha512 = "+tWf7znxSQqXWGzPup8Xqkl8EmLmx+HaLC+UBtWPNnaJZrsjbbVxKwHpmGIdm+wZasEGfQk/82R21gUs9wdZnw==";
};
};
- "@miniflare/storage-file-2.8.2" = {
+ "@miniflare/storage-file-2.9.0" = {
name = "_at_miniflare_slash_storage-file";
packageName = "@miniflare/storage-file";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.8.2.tgz";
- sha512 = "M5f+vDVjkghix1sCGQy+apiokTBoOU/V7pBaIsHZTnD/58S6/T2s7glD12Dwfr+u1cCjWxEJx+jaXYIBAKbmQQ==";
+ url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.9.0.tgz";
+ sha512 = "HZHtHfJaLoDzQFddoIMcDGgAJ3/Nee98gwUYusQam7rj9pbEXnWmk54dzjzsDlkQpB/3MBFQNbtN5Bj1NIt0pg==";
};
};
- "@miniflare/storage-memory-2.8.2" = {
+ "@miniflare/storage-memory-2.9.0" = {
name = "_at_miniflare_slash_storage-memory";
packageName = "@miniflare/storage-memory";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.8.2.tgz";
- sha512 = "9OclkkWBbJwo6WJEz2QCbHsvMt+qraq/xIbuFOByytAcyjomp1gm1ZUaKZ5VkkqMXMgdQ1E+6wTq2iA1p+YRcg==";
+ url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.9.0.tgz";
+ sha512 = "p2yrr0omQhv6teDbdzhdBKzoQAFmUBMLEx+PtrO7CJHX15ICD08/pFAFAp96IcljNwZZDchU20Z3AcbldMj6Tw==";
};
};
- "@miniflare/watcher-2.8.2" = {
+ "@miniflare/watcher-2.9.0" = {
name = "_at_miniflare_slash_watcher";
packageName = "@miniflare/watcher";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.8.2.tgz";
- sha512 = "2+awQITWkUGb9GlpzVmYwoe+qiSibni7C6gVDnkxorBRoecwUAzjFRF09QjdEn40+q7peNdE0ui1oWjZMgOaHg==";
+ url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.9.0.tgz";
+ sha512 = "Yqz8Q1He/2chebXvmCft8sMamuUiDQ4FIn0bwiF0+GBP2vvGCmy6SejXZY4ZD4REluPqQSis3CLKcIOWlHnIsw==";
};
};
- "@miniflare/web-sockets-2.8.2" = {
+ "@miniflare/web-sockets-2.9.0" = {
name = "_at_miniflare_slash_web-sockets";
packageName = "@miniflare/web-sockets";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.8.2.tgz";
- sha512 = "oW9vG7zImwZZ/OKuAI4CEMtVqYVQqWe9MoO47VoxmB/WMMdaXJArx+k8xcJJJL7tcHVtbwBHsypJf69DOtrCmg==";
+ url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.9.0.tgz";
+ sha512 = "Nob9e84m78qeQCka6OQf/JdNOmMkKCkX+i3rg+TYKSSITiMVuyzWp3vz3Ma184lAZiLg44lxBF4ZzENEdi99Kg==";
};
};
"@mischnic/json-sourcemap-0.1.0" = {
@@ -7141,22 +7168,22 @@ let
sha512 = "7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==";
};
};
- "@nrwl/cli-14.7.5" = {
+ "@nrwl/cli-14.7.6" = {
name = "_at_nrwl_slash_cli";
packageName = "@nrwl/cli";
- version = "14.7.5";
+ version = "14.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/cli/-/cli-14.7.5.tgz";
- sha512 = "hkkavBDHPZKuxG9q8bcib9/TYnTn13t8CaePjx1JvYqWTYblWVLrzlPhJKFC44Dkch+rtvZ/USs5Fih76se25g==";
+ url = "https://registry.npmjs.org/@nrwl/cli/-/cli-14.7.6.tgz";
+ sha512 = "AGGkBodn5+aPGVCMK/jOImYNf54mzEKBkWM56cYRcONP19bJcs9mWO7je4uAgiX79z5M37bic0e608MA2GLcbQ==";
};
};
- "@nrwl/tao-14.7.5" = {
+ "@nrwl/tao-14.7.6" = {
name = "_at_nrwl_slash_tao";
packageName = "@nrwl/tao";
- version = "14.7.5";
+ version = "14.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/tao/-/tao-14.7.5.tgz";
- sha512 = "MzfJMqVbiMitYjWXaL5/7dDKw1hDG7acciGeu5SyUX8J2J0ymKzXhqjshPvn/Ga1E9QtnMckd6aKmLlvochVag==";
+ url = "https://registry.npmjs.org/@nrwl/tao/-/tao-14.7.6.tgz";
+ sha512 = "yiIjpMPDN7N2asrIYPsoQMY9HZmBE9m0/EQCu9dWtmevYSMygbaEFEBO8hkNG+clvylWOoUMBE4RfVOMYQRK3g==";
};
};
"@oclif/command-1.8.0" = {
@@ -7375,13 +7402,13 @@ let
sha512 = "VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==";
};
};
- "@octokit/openapi-types-13.9.1" = {
+ "@octokit/openapi-types-13.12.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "13.9.1";
+ version = "13.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-13.9.1.tgz";
- sha512 = "98zOxAAR8MDHjXI2xGKgn/qkZLwfcNjHka0baniuEpN1fCv3kDJeh5qc0mBwim5y31eaPaYer9QikzwOkQq3wQ==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-13.12.0.tgz";
+ sha512 = "1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -7402,13 +7429,13 @@ let
sha512 = "aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==";
};
};
- "@octokit/plugin-paginate-rest-4.2.3" = {
+ "@octokit/plugin-paginate-rest-4.3.1" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
- version = "4.2.3";
+ version = "4.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-4.2.3.tgz";
- sha512 = "1RXJZ7hnxSANMtxKSVIEByjhYqqlu2GaKmLJJE/OVDya1aI++hdmXP4ORCUlsN2rt4hJzRYbWizBHlGYKz3dhQ==";
+ url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-4.3.1.tgz";
+ sha512 = "h8KKxESmSFTcXX409CAxlaOYscEDvN2KGQRsLCGT1NSqRW+D6EXLVQ8vuHhFznS9MuH9QYw1GfsUN30bg8hjVA==";
};
};
"@octokit/plugin-request-log-1.0.4" = {
@@ -7429,13 +7456,13 @@ let
sha512 = "8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==";
};
};
- "@octokit/plugin-rest-endpoint-methods-6.5.2" = {
+ "@octokit/plugin-rest-endpoint-methods-6.6.2" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "6.5.2";
+ version = "6.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.5.2.tgz";
- sha512 = "zUscUePMC3KEKyTAfuG/dA6hw4Yn7CncVJs2kM9xc4931Iqk3ZiwHfVwTUnxkqQJIVgeBRYUk3rM4hMfgASUxg==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.6.2.tgz";
+ sha512 = "n9dL5KMpz9qVFSNdcVWC8ZPbl68QbTk7+CMPXCXqaMZOLn1n1YuoSFFCy84Ge0fx333fUqpnBHv8BFjwGtUQkA==";
};
};
"@octokit/plugin-retry-3.0.9" = {
@@ -7519,13 +7546,13 @@ let
sha512 = "eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==";
};
};
- "@octokit/types-7.3.1" = {
+ "@octokit/types-7.5.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "7.3.1";
+ version = "7.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-7.3.1.tgz";
- sha512 = "Vefohn8pHGFYWbSc6du0wXMK/Pmy6h0H4lttBw5WqquEuxjdXwyYX07CeZpJDkzSzpdKxBoWRNuDJGTE+FvtqA==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-7.5.0.tgz";
+ sha512 = "aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw==";
};
};
"@opencensus/core-0.0.8" = {
@@ -8257,13 +8284,13 @@ let
sha512 = "uD2pAV0yV6+e7JaWH4KVPbG+zRCrxr/OACyS9tIh+Q/R1vRmh8zGM3yhdrcoiZ7tFOnM72vd6xY11eTrUsSVig==";
};
};
- "@parcel/source-map-2.1.0" = {
+ "@parcel/source-map-2.1.1" = {
name = "_at_parcel_slash_source-map";
packageName = "@parcel/source-map";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.0.tgz";
- sha512 = "E7UOEIof2o89LrKk1agSLmwakjigmEdDp1ZaEdsLVEvq63R/bul4Ij5CT+0ZDcijGpl5tnTbQADY9EyYGtjYgQ==";
+ url = "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz";
+ sha512 = "Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==";
};
};
"@parcel/transformer-babel-2.7.0" = {
@@ -8734,22 +8761,22 @@ let
sha512 = "OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA==";
};
};
- "@redocly/ajv-8.6.5" = {
+ "@redocly/ajv-8.11.0" = {
name = "_at_redocly_slash_ajv";
packageName = "@redocly/ajv";
- version = "8.6.5";
+ version = "8.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.6.5.tgz";
- sha512 = "3P2TY/u4c6OBqkP+1cTH1iGAEv0O34PV3vV2Wnos/nNHu62OTrtC4zcaxttG0pHtPtn42StrhGq7SsiFgP4Bfw==";
+ url = "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.0.tgz";
+ sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==";
};
};
- "@redocly/openapi-core-1.0.0-beta.108" = {
+ "@redocly/openapi-core-1.0.0-beta.109" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.108";
+ version = "1.0.0-beta.109";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.108.tgz";
- sha512 = "4Lq7KB+XiBvVzpaY/M0a8qog/Zr8kGrvJbRW2z7Sk2Zpc/m+8LTuZbRh15eMoneVc13M9qbHFIRh3PG18g3Tng==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.109.tgz";
+ sha512 = "yc2T1grxXmwWry+gd5dWGEfgZI+JY498314Jza6Pfx/v/39AuRQnVRAw174XthuLkzLyFxiupqhpqBDJAyNPLQ==";
};
};
"@rollup/plugin-commonjs-20.0.0" = {
@@ -8806,13 +8833,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-14.2.2" = {
+ "@schematics/angular-14.2.3" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "14.2.2";
+ version = "14.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.2.tgz";
- sha512 = "ExejSuQrkhVzcvq1MH1hSHufp2HUrrCSb0ol1JVlekIkq6H3A5839/8mDC6U/stRMo/gNz01sibBBJmQwH2h6Q==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.3.tgz";
+ sha512 = "lHWeeWrhpyMwJRTK4RpFVptWZo5kTdI+bOOd+lZBTjOAs+PM8r9VXHzB6qhE6P2e3HsceXM59PonvekTUdOJtQ==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -9391,6 +9418,15 @@ let
sha512 = "dzyuzvUjv3m1wmhPfq82lCVYGcXG0xUYgqnWfCq3PCVR4BKFhjdkHrnJ+jIDoMKvXb05AZP/ObQF6+NpDo29IQ==";
};
};
+ "@stoplight/types-13.7.0" = {
+ name = "_at_stoplight_slash_types";
+ packageName = "@stoplight/types";
+ version = "13.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@stoplight/types/-/types-13.7.0.tgz";
+ sha512 = "7ePIccfTxjEhruv8VrkDv5whP5qd9ijRzAWEbjYpUYnDfaqPTfq8/wMMjMCAKIecboxsAVD9LZy/3puXddGsDQ==";
+ };
+ };
"@stoplight/yaml-4.2.3" = {
name = "_at_stoplight_slash_yaml";
packageName = "@stoplight/yaml";
@@ -9796,6 +9832,15 @@ let
sha512 = "G4yqdVlhr6YhzLXFKy5F7HtRBU8Y23+iWy7UKthMq/OSQnL1hbsoeXESQ2LY8zEDlknipDG3nRGhUC9tkwvy/w==";
};
};
+ "@types/better-sqlite3-7.6.0" = {
+ name = "_at_types_slash_better-sqlite3";
+ packageName = "@types/better-sqlite3";
+ version = "7.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.6.0.tgz";
+ sha512 = "rnSP9vY+fVsF3iJja5yRGBJV63PNBiezJlYrCkqUmQWFoB16cxAHwOkjsAYEu317miOfKaJpa65cbp0P4XJ/jw==";
+ };
+ };
"@types/bn.js-5.1.1" = {
name = "_at_types_slash_bn.js";
packageName = "@types/bn.js";
@@ -10111,6 +10156,15 @@ let
sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==";
};
};
+ "@types/express-4.17.14" = {
+ name = "_at_types_slash_express";
+ packageName = "@types/express";
+ version = "4.17.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz";
+ sha512 = "TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==";
+ };
+ };
"@types/express-serve-static-core-4.17.30" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
@@ -10120,6 +10174,15 @@ let
sha512 = "gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==";
};
};
+ "@types/express-serve-static-core-4.17.31" = {
+ name = "_at_types_slash_express-serve-static-core";
+ packageName = "@types/express-serve-static-core";
+ version = "4.17.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz";
+ sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==";
+ };
+ };
"@types/file-type-10.9.1" = {
name = "_at_types_slash_file-type";
packageName = "@types/file-type";
@@ -10507,15 +10570,6 @@ let
sha512 = "o0K1tSO0Dx5X6xlU5F1D6625FawhC3dU3iqr25lluNv/+/QIVH8RLNEiVokgIZo+mz+87w/3Mkg/VvQS+J51fQ==";
};
};
- "@types/mocha-7.0.2" = {
- name = "_at_types_slash_mocha";
- packageName = "@types/mocha";
- version = "7.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/mocha/-/mocha-7.0.2.tgz";
- sha512 = "ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==";
- };
- };
"@types/mongodb-4.0.6" = {
name = "_at_types_slash_mongodb";
packageName = "@types/mongodb";
@@ -10615,13 +10669,13 @@ let
sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==";
};
};
- "@types/node-14.18.28" = {
+ "@types/node-14.18.29" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.18.28";
+ version = "14.18.29";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.18.28.tgz";
- sha512 = "CK2fnrQlIgKlCV3N2kM+Gznb5USlwA1KFX3rJVHmgVk6NJxFPuQ86pAcvKnu37IA4BGlSRz7sEE1lHL1aLZ/eQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.18.29.tgz";
+ sha512 = "LhF+9fbIX4iPzhsRLpK5H7iPdvW8L4IwGciXQIOEcuF62+9nw/VQVsOViAOOGxY3OlOKGLFv0sWwJXdwQeTn6A==";
};
};
"@types/node-15.14.9" = {
@@ -10633,13 +10687,13 @@ let
sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==";
};
};
- "@types/node-16.11.58" = {
+ "@types/node-16.11.59" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.11.58";
+ version = "16.11.59";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.58.tgz";
- sha512 = "uMVxJ111wpHzkx/vshZFb6Qni3BOMnlWLq7q9jrwej7Yw/KvjsEbpxCCxw+hLKxexFMc8YmpG8J9tnEe/rKsIg==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.59.tgz";
+ sha512 = "6u+36Dj3aDzhfBVUf/mfmc92OEdzQ2kx2jcXGdigfl70E/neV21ZHE6UCz4MDzTRcVqGAM27fk+DLXvyDsn3Jw==";
};
};
"@types/node-16.11.6" = {
@@ -10696,13 +10750,13 @@ let
sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA==";
};
};
- "@types/node-18.7.17" = {
+ "@types/node-18.7.18" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "18.7.17";
+ version = "18.7.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-18.7.17.tgz";
- sha512 = "0UyfUnt02zIuqp7yC8RYtDkp/vo8bFaQ13KkSEvUAohPOAlnVNbj5Fi3fgPSuwzakS+EvvnnZ4x9y7i6ASaSPQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-18.7.18.tgz";
+ sha512 = "m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg==";
};
};
"@types/node-6.14.13" = {
@@ -10714,15 +10768,6 @@ let
sha512 = "J1F0XJ/9zxlZel5ZlbeSuHW2OpabrUAqpFuC2sm2I3by8sERQ8+KCjNKUcq8QHuzpGMWiJpo9ZxeHrqrP2KzQw==";
};
};
- "@types/node-8.10.66" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "8.10.66";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz";
- sha512 = "tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==";
- };
- };
"@types/node-fetch-2.6.2" = {
name = "_at_types_slash_node-fetch";
packageName = "@types/node-fetch";
@@ -10849,13 +10894,13 @@ let
sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA==";
};
};
- "@types/react-17.0.49" = {
+ "@types/react-17.0.50" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "17.0.49";
+ version = "17.0.50";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-17.0.49.tgz";
- sha512 = "CCBPMZaPhcKkYUTqFs/hOWqKjPxhTEmnZWjlHHgIMop67DsXywf9B5Os9Hz8KSacjNOgIdnZVJamwl232uxoPg==";
+ url = "https://registry.npmjs.org/@types/react/-/react-17.0.50.tgz";
+ sha512 = "ZCBHzpDb5skMnc1zFXAXnL3l1FAdi+xZvwxK+PkglMmBrwjpp9nKaWuEvrGnSifCJmBFGxZOOFuwC6KH/s0NuA==";
};
};
"@types/react-dom-17.0.17" = {
@@ -11218,15 +11263,6 @@ let
sha512 = "ZfJck4M7nrGasfs4A4YbUoxis3Vu24cETw3DERsNYtDZmYSYtk6ljKexKFKhImO/ZmY6ZMsmegu2FPkXoUFImA==";
};
};
- "@types/vscode-1.71.0" = {
- name = "_at_types_slash_vscode";
- packageName = "@types/vscode";
- version = "1.71.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.71.0.tgz";
- sha512 = "nB50bBC9H/x2CpwW9FzRRRDrTZ7G0/POttJojvN/LiVfzTGfLyQIje1L1QRMdFXK9G41k5UJN/1B9S4of7CSzA==";
- };
- };
"@types/webidl-conversions-7.0.0" = {
name = "_at_types_slash_webidl-conversions";
packageName = "@types/webidl-conversions";
@@ -11371,13 +11407,13 @@ let
sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==";
};
};
- "@typescript-eslint/eslint-plugin-5.37.0" = {
+ "@typescript-eslint/eslint-plugin-5.38.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.37.0.tgz";
- sha512 = "Fde6W0IafXktz1UlnhGkrrmnnGpAo1kyX7dnyHHVrmwJOn72Oqm3eYtddrpOwwel2W8PAK9F3pIL5S+lfoM0og==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.38.0.tgz";
+ sha512 = "GgHi/GNuUbTOeoJiEANi0oI6fF3gBQc3bGFYj40nnAPCbhrtEDf2rjBmefFadweBmO1Du1YovHeDP2h5JLhtTQ==";
};
};
"@typescript-eslint/experimental-utils-4.33.0" = {
@@ -11398,13 +11434,13 @@ let
sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==";
};
};
- "@typescript-eslint/parser-5.37.0" = {
+ "@typescript-eslint/parser-5.38.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.37.0.tgz";
- sha512 = "01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.38.0.tgz";
+ sha512 = "/F63giJGLDr0ms1Cr8utDAxP2SPiglaD6V+pCOcG35P2jCqdfR7uuEhz1GIC3oy4hkUF8xA1XSXmd9hOh/a5EA==";
};
};
"@typescript-eslint/scope-manager-4.33.0" = {
@@ -11416,22 +11452,22 @@ let
sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==";
};
};
- "@typescript-eslint/scope-manager-5.37.0" = {
+ "@typescript-eslint/scope-manager-5.38.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz";
- sha512 = "F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.38.0.tgz";
+ sha512 = "ByhHIuNyKD9giwkkLqzezZ9y5bALW8VNY6xXcP+VxoH4JBDKjU5WNnsiD4HJdglHECdV+lyaxhvQjTUbRboiTA==";
};
};
- "@typescript-eslint/type-utils-5.37.0" = {
+ "@typescript-eslint/type-utils-5.38.0" = {
name = "_at_typescript-eslint_slash_type-utils";
packageName = "@typescript-eslint/type-utils";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.37.0.tgz";
- sha512 = "BSx/O0Z0SXOF5tY0bNTBcDEKz2Ec20GVYvq/H/XNKiUorUFilH7NPbFUuiiyzWaSdN3PA8JV0OvYx0gH/5aFAQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.38.0.tgz";
+ sha512 = "iZq5USgybUcj/lfnbuelJ0j3K9dbs1I3RICAJY9NZZpDgBYXmuUlYQGzftpQA9wC8cKgtS6DASTvF3HrXwwozA==";
};
};
"@typescript-eslint/types-3.10.1" = {
@@ -11452,13 +11488,13 @@ let
sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==";
};
};
- "@typescript-eslint/types-5.37.0" = {
+ "@typescript-eslint/types-5.38.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz";
- sha512 = "3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.38.0.tgz";
+ sha512 = "HHu4yMjJ7i3Cb+8NUuRCdOGu2VMkfmKyIJsOr9PfkBVYLYrtMCK/Ap50Rpov+iKpxDTfnqvDbuPLgBE5FwUNfA==";
};
};
"@typescript-eslint/typescript-estree-3.10.1" = {
@@ -11479,22 +11515,22 @@ let
sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==";
};
};
- "@typescript-eslint/typescript-estree-5.37.0" = {
+ "@typescript-eslint/typescript-estree-5.38.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz";
- sha512 = "JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.38.0.tgz";
+ sha512 = "6P0RuphkR+UuV7Avv7MU3hFoWaGcrgOdi8eTe1NwhMp2/GjUJoODBTRWzlHpZh6lFOaPmSvgxGlROa0Sg5Zbyg==";
};
};
- "@typescript-eslint/utils-5.37.0" = {
+ "@typescript-eslint/utils-5.38.0" = {
name = "_at_typescript-eslint_slash_utils";
packageName = "@typescript-eslint/utils";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.37.0.tgz";
- sha512 = "jUEJoQrWbZhmikbcWSMDuUSxEE7ID2W/QCV/uz10WtQqfOuKZUqFGjqLJ+qhDd17rjgp+QJPqTdPIBWwoob2NQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.38.0.tgz";
+ sha512 = "6sdeYaBgk9Fh7N2unEXGz+D+som2QCQGPAf1SxrkEr+Z32gMreQ0rparXTNGRRfYUWk/JzbGdcM8NSSd6oqnTA==";
};
};
"@typescript-eslint/visitor-keys-3.10.1" = {
@@ -11515,13 +11551,13 @@ let
sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==";
};
};
- "@typescript-eslint/visitor-keys-5.37.0" = {
+ "@typescript-eslint/visitor-keys-5.38.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "5.37.0";
+ version = "5.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz";
- sha512 = "Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.38.0.tgz";
+ sha512 = "MxnrdIyArnTi+XyFLR+kt/uNAcdOnmT+879os7qDRI+EYySR4crXJq9BXPfRzzLGq0wgxkwidrCJ9WCAoacm1w==";
};
};
"@ungap/promise-all-settled-1.1.2" = {
@@ -12406,6 +12442,33 @@ let
sha512 = "+NzflVRaWl48Jdjq7FOxkmb8wLpSWtk6XKAEMfr/yDOqJS7HWxA+Rc5rTVqh2IRi6QZJyKGoaGKjOAqrGq07nA==";
};
};
+ "@withgraphite/graphite-cli-routes-0.22.0" = {
+ name = "_at_withgraphite_slash_graphite-cli-routes";
+ packageName = "@withgraphite/graphite-cli-routes";
+ version = "0.22.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@withgraphite/graphite-cli-routes/-/graphite-cli-routes-0.22.0.tgz";
+ sha512 = "0LqJ2UMyGkZgP/cp4x89nKibX8r/XMgC+G4Xhobxq34gSOrihqHQjEvPeTiVgjX4MsH7340v8cE2y5pKX6m0aA==";
+ };
+ };
+ "@withgraphite/retype-0.3.13" = {
+ name = "_at_withgraphite_slash_retype";
+ packageName = "@withgraphite/retype";
+ version = "0.3.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@withgraphite/retype/-/retype-0.3.13.tgz";
+ sha512 = "jGhsyvjRdZCMeOQ+NiNij/zd2FXRyoOCGoJnRT0lg35jfW55ikRPpQ5zOSbbW0H78UPpyz7X97NAKxa8uVBtVg==";
+ };
+ };
+ "@withgraphite/retyped-routes-0.3.5" = {
+ name = "_at_withgraphite_slash_retyped-routes";
+ packageName = "@withgraphite/retyped-routes";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@withgraphite/retyped-routes/-/retyped-routes-0.3.5.tgz";
+ sha512 = "sm55SgyPGE5gYq9qGrixg3fho3ZOlA6DlHFfYfCS0zrV0piKtCYOuyQB7fiQa8jOM2f89ZBHzlEr3JQmJTTaCA==";
+ };
+ };
"@xmldom/xmldom-0.7.5" = {
name = "_at_xmldom_slash_xmldom";
packageName = "@xmldom/xmldom";
@@ -15538,13 +15601,13 @@ let
sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw==";
};
};
- "aws-sdk-2.1214.0" = {
+ "aws-sdk-2.1218.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1214.0";
+ version = "2.1218.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1214.0.tgz";
- sha512 = "50WxqYgEDB5UxwPJ0IDFWXe3ipAHhHmqfRnMNaQaZhb2aJpprbT7c0zic8AH9E1xJ9s+6QkhYrwQf/vXEHnLwg==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1218.0.tgz";
+ sha512 = "oreF2jKfUZ8VKnIKh8TrOOOsdSfv87jHGtWQNAHdvfeyrYK5FrnvGkHUZ3bu6g6u1gHwu5FhTPiRMbgS8Re+NA==";
};
};
"aws-sign2-0.6.0" = {
@@ -15664,15 +15727,6 @@ let
sha512 = "RK2cLMgIsAQBDhlIsJR5dOhODPigvel18XUv1dDXW+4k1FzebyfRk+C+orot6WPZOYFKSfhLwHPwVmTVOODQ5w==";
};
};
- "azure-devops-node-api-10.2.2" = {
- name = "azure-devops-node-api";
- packageName = "azure-devops-node-api";
- version = "10.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-10.2.2.tgz";
- sha512 = "4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow==";
- };
- };
"azure-devops-node-api-11.2.0" = {
name = "azure-devops-node-api";
packageName = "azure-devops-node-api";
@@ -15763,13 +15817,13 @@ let
sha512 = "8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==";
};
};
- "babel-plugin-polyfill-corejs3-0.5.3" = {
+ "babel-plugin-polyfill-corejs3-0.6.0" = {
name = "babel-plugin-polyfill-corejs3";
packageName = "babel-plugin-polyfill-corejs3";
- version = "0.5.3";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz";
- sha512 = "zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz";
+ sha512 = "+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==";
};
};
"babel-plugin-polyfill-regenerator-0.4.1" = {
@@ -17788,13 +17842,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.21.3" = {
+ "browserslist-4.21.4" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.21.3";
+ version = "4.21.4";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz";
- sha512 = "898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz";
+ sha512 = "CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==";
};
};
"brq-0.1.8" = {
@@ -18590,6 +18644,15 @@ let
sha512 = "KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==";
};
};
+ "cacheable-request-10.1.2" = {
+ name = "cacheable-request";
+ packageName = "cacheable-request";
+ version = "10.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.1.2.tgz";
+ sha512 = "N7F4os5ZI+8mWHSbeJmxn+qimf5uK3WU53FD1b298XLGtOLPpSA/1xAchfP4NJlDwqgaviZ0SQfxTQD0K6lr9w==";
+ };
+ };
"cacheable-request-2.1.4" = {
name = "cacheable-request";
packageName = "cacheable-request";
@@ -18914,13 +18977,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001399" = {
+ "caniuse-lite-1.0.30001406" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001399";
+ version = "1.0.30001406";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001399.tgz";
- sha512 = "4vQ90tMKS+FkvuVWS5/QY1+d805ODxZiKFzsU8o/RsVJz49ZSRR8EjykLJbqhzdPgadbX6wB538wOzle3JniRA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001406.tgz";
+ sha512 = "bWTlaXUy/rq0BBtYShc/jArYfBPjEV95euvZ8JVtO43oQExEN/WquoqpufFjNu4kSpi5cy5kMbNvzztWDfv1Jg==";
};
};
"canvas-2.10.1" = {
@@ -19076,22 +19139,22 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-2.4.26" = {
+ "cdk8s-2.4.31" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "2.4.26";
+ version = "2.4.31";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.4.26.tgz";
- sha512 = "9e+o7OcmXT3aTaGH3pVXwqrHJiyhYngPRJDDrDiKhBeeUHXFME++QNK9S6dJOJSMymSLwWBciIPTkW/1oZyibQ==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.4.31.tgz";
+ sha512 = "9e2woEAlHoVkTCXhet69vfReOrr5ocjEWv8+bCDnXkdLwuE8u/weyDo8jQMu5krYBSU4n2LzSAilvkBxaIyW2w==";
};
};
- "cdk8s-plus-22-2.0.0-rc.111" = {
+ "cdk8s-plus-22-2.0.0-rc.123" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "2.0.0-rc.111";
+ version = "2.0.0-rc.123";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.111.tgz";
- sha512 = "KOdjsd/04OeFBEygf8U6FOIffs+ziTXjpJks2wYa5j3ed2dwUAyOmD3LLb70Drm9M2kNNG0Mpuzy42qGPyjK7A==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.123.tgz";
+ sha512 = "EGfDqx7/rRfFU8TdsnscB9HRBoviJayv1LU77AXNxdZkWXnN9sNB6rpOX+nAp32yZ5iIJU2X7l+EZWTtg+PDxg==";
};
};
"cdktf-0.12.2" = {
@@ -19589,15 +19652,6 @@ let
sha512 = "c4PR2egjNjI1um6bamCQ6bUNPDiyofNQruHvKgHQ4gDUP/ITSVSzNsiI5OWtHOsX323i5ha/kk4YmOZ1Ktg7KA==";
};
};
- "chokidar-3.5.1" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz";
- sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==";
- };
- };
"chokidar-3.5.3" = {
name = "chokidar";
packageName = "chokidar";
@@ -20129,6 +20183,15 @@ let
sha512 = "QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==";
};
};
+ "cli-table3-0.6.3" = {
+ name = "cli-table3";
+ packageName = "cli-table3";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz";
+ sha512 = "w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==";
+ };
+ };
"cli-tableau-2.0.1" = {
name = "cli-tableau";
packageName = "cli-tableau";
@@ -21767,13 +21830,13 @@ let
sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==";
};
};
- "constructs-10.1.101" = {
+ "constructs-10.1.106" = {
name = "constructs";
packageName = "constructs";
- version = "10.1.101";
+ version = "10.1.106";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.1.101.tgz";
- sha512 = "aaSEs7bcPs8i+ekugb8bnBCKc9t+ef2SjGcQKRo6w/sO+STOjD+AgTddqkaAHTb5/nK1F9SAwpZXpz6bbVy/eQ==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.1.106.tgz";
+ sha512 = "xcNB+/5jKk7+9w4pXe5jThpUEDDbhtWLeXlhy9GVdFa/tuasOVEiowZOZMjPvcXrujGgSkVleebo6ZNzvYyZug==";
};
};
"consume-http-header-1.0.0" = {
@@ -22389,31 +22452,31 @@ let
sha512 = "UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==";
};
};
- "core-js-3.25.1" = {
+ "core-js-3.25.2" = {
name = "core-js";
packageName = "core-js";
- version = "3.25.1";
+ version = "3.25.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.25.1.tgz";
- sha512 = "sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.25.2.tgz";
+ sha512 = "YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==";
};
};
- "core-js-compat-3.25.1" = {
+ "core-js-compat-3.25.2" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.25.1";
+ version = "3.25.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.1.tgz";
- sha512 = "pOHS7O0i8Qt4zlPW/eIFjwp+NrTPx+wTL0ctgI2fHn31sZOq89rDsmtc/A2vAX7r6shl+bmVI+678He46jgBlw==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.2.tgz";
+ sha512 = "TxfyECD4smdn3/CjWxczVtJqVLEEC2up7/82t7vC0AzNogr+4nQ8vyF7abxAuTXWvjTClSbvGhU0RgqA4ToQaQ==";
};
};
- "core-js-pure-3.25.1" = {
+ "core-js-pure-3.25.2" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.25.1";
+ version = "3.25.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz";
- sha512 = "7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.2.tgz";
+ sha512 = "ItD7YpW1cUB4jaqFLZXe1AXkyqIxz6GqPnsDV4uF4hVcWh/WAGIqSqw5p0/WdsILM0Xht9s3Koyw05R3K6RtiA==";
};
};
"core-util-is-1.0.2" = {
@@ -22524,13 +22587,13 @@ let
sha512 = "H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==";
};
};
- "cosmiconfig-typescript-loader-4.0.0" = {
+ "cosmiconfig-typescript-loader-4.1.0" = {
name = "cosmiconfig-typescript-loader";
packageName = "cosmiconfig-typescript-loader";
- version = "4.0.0";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.0.0.tgz";
- sha512 = "cVpucSc2Tf+VPwCCR7SZzmQTQkPbkk4O01yXsYqXBIbjE1bhwqSyAgYQkRK1un4i0OPziTleqFhdkmOc4RQ/9g==";
+ url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.1.0.tgz";
+ sha512 = "HbWIuR5O+XO5Oj9SZ5bzgrD4nN+rfhrm2PMb0FVx+t+XIvC45n8F0oTNnztXtspWGw0i2IzHaUWFD5LzV1JB4A==";
};
};
"count-trailing-zeros-1.0.1" = {
@@ -22929,58 +22992,58 @@ let
sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==";
};
};
- "cspell-gitignore-6.8.2" = {
+ "cspell-gitignore-6.10.0" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.8.2.tgz";
- sha512 = "JoU/rGeGrjSqOMvY5q+bloxtO5Y8QLpJEEIAvHHZ+oTOlExZ/CIAYnO6X3lC6ylNRYc1+I2KEOFa6R0+0OSdVQ==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.10.0.tgz";
+ sha512 = "1vmY1OwKaq8Pp6u4SxzNaKAo5gSbinbMid56OzcMODC1k1aX5VlyXlOBvnct0Al4mH2pw7MswhihePFlmiHScQ==";
};
};
- "cspell-glob-6.8.2" = {
+ "cspell-glob-6.10.0" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.8.2.tgz";
- sha512 = "FKy2EIdQKO9b/vP0r8yqxtGQNA8M48DkwMSjW2mN1Qku5wRT8SPByKg87BjK4oztlIiQJoJ6+8OTrWnJwdbpQw==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.10.0.tgz";
+ sha512 = "x3sbn4gz/NpTkbUx3xgaoF9hdl7oYYAKibmQ1Pp+S3t1TkOxfro2YkiyzdYsp2CJm4wzgr3Yh/cq8BAXVAg4Mw==";
};
};
- "cspell-grammar-6.8.2" = {
+ "cspell-grammar-6.10.0" = {
name = "cspell-grammar";
packageName = "cspell-grammar";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.8.2.tgz";
- sha512 = "RHvIsNRDlBYKddKAdob5XT2+odOiO3eJVaw/vt5+CRx1cJSjuaIOyHwXKH2Xl1ioUUhEb9Ew3pg7JktRdzKn5w==";
+ url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.10.0.tgz";
+ sha512 = "cOq2MZVH/ORPXDufIOUBWfhn3+iuOsyxMazziTvMaNUrphEO59s71RszCj6UP+afcYApLHNV4WuZlEQ3oZ0C0w==";
};
};
- "cspell-io-6.8.2" = {
+ "cspell-io-6.10.0" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.8.2.tgz";
- sha512 = "QpdePUXD8fTM2XuZdeS5ygTeIW9pnaQhTVWBWGbnrYlMn5iV9Jo81dHheHw4InxQJUjhyS/CuxdNGfYZXGJuaQ==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.10.0.tgz";
+ sha512 = "YBSQalrru1yELA3pqlHmmEa0zkjf+EivzR3fmpHEGh0kP5w5ywNtF6ivGmObLAGcFeB64pL8MOGb7hOBrfhY9w==";
};
};
- "cspell-lib-6.8.2" = {
+ "cspell-lib-6.10.0" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.8.2.tgz";
- sha512 = "K7UoaKB3qzq5KVnKynQM0+v8+4aXAA0coBKA6tH5czY2KDeuJSUu14b9WM+nxrUbMOOvNuSv+NaYw5lryaMFsg==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.10.0.tgz";
+ sha512 = "pVq+1JTagLnDBDJOTisYKjPjpX/yP2Jz8/iQCGK+USlJGa0Zm/+JuhmiOTebiWurp41Q2Rn7a7udP3XIuHWKug==";
};
};
- "cspell-trie-lib-6.8.2" = {
+ "cspell-trie-lib-6.10.0" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.8.2.tgz";
- sha512 = "jaNszLtSQglpz1BKejQ4RBFyJVSsYHQGW+1Rj4Zm103OcL+g6r/E1lm/dIbX/1UC4pBrNamjcGzXtPOBZJtUeQ==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.10.0.tgz";
+ sha512 = "hYI13C3a53bV7/HGHqh7bFjha3UlNj6OlUSxkF9EOB6Gbwrn4ypZTtv8o96OjvE7VpE0xZ1EgviJ5bajibCadA==";
};
};
"csrf-3.1.0" = {
@@ -24522,13 +24585,13 @@ let
sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==";
};
};
- "date-fns-2.29.2" = {
+ "date-fns-2.29.3" = {
name = "date-fns";
packageName = "date-fns";
- version = "2.29.2";
+ version = "2.29.3";
src = fetchurl {
- url = "https://registry.npmjs.org/date-fns/-/date-fns-2.29.2.tgz";
- sha512 = "0VNbwmWJDS/G3ySwFSJA3ayhbURMTJLtwM2DTxf9CWondCnh6DTNlO9JgRSq6ibf4eD0lfMJNBxUdEAHHix+bA==";
+ url = "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz";
+ sha512 = "dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==";
};
};
"date-format-1.2.0" = {
@@ -24873,13 +24936,13 @@ let
sha512 = "ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==";
};
};
- "decimal.js-10.4.0" = {
+ "decimal.js-10.4.1" = {
name = "decimal.js";
packageName = "decimal.js";
- version = "10.4.0";
+ version = "10.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz";
- sha512 = "Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg==";
+ url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz";
+ sha512 = "F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==";
};
};
"decimal.js-7.5.1" = {
@@ -25449,15 +25512,6 @@ let
sha512 = "mePZbE0tyYlOj7hXrQNyvMVn2NI6/K0obP9uIxZC11iTZMhFtJVUG+O18yWOLUCsDeCIDFJnrXDUc4HRbBndWw==";
};
};
- "denodeify-1.2.1" = {
- name = "denodeify";
- packageName = "denodeify";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz";
- sha512 = "KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==";
- };
- };
"denque-1.5.1" = {
name = "denque";
packageName = "denque";
@@ -27006,13 +27060,13 @@ let
sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==";
};
};
- "electron-18.3.12" = {
+ "electron-18.3.13" = {
name = "electron";
packageName = "electron";
- version = "18.3.12";
+ version = "18.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/electron/-/electron-18.3.12.tgz";
- sha512 = "kSDLleNSF5OBuzbVSvhvAa4TIYaLkmJn1AOU6J6Yi9A7dXouyN3MNfLgcvLPjIX5Ak+QQ6r1WQFn0L5EpLLpKg==";
+ url = "https://registry.npmjs.org/electron/-/electron-18.3.13.tgz";
+ sha512 = "/VodC4W9O4xdv2Xlj1eXbeqaBuIs0rkD2jeNPB/C0g2sqwGNfa/OHmD0XZDo7E8tgyiAcc9AR7H4Gsh8T4otrQ==";
};
};
"electron-notarize-1.2.1" = {
@@ -27051,13 +27105,13 @@ let
sha512 = "FkEZNFViUem3P0RLYbZkUjC8LUFIK+wKq09GHoOITSJjfDAVQv964hwaNseTTWt58sITQX3/5fHNYcTefqaCWw==";
};
};
- "electron-to-chromium-1.4.248" = {
+ "electron-to-chromium-1.4.254" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.248";
+ version = "1.4.254";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.248.tgz";
- sha512 = "qShjzEYpa57NnhbW2K+g+Fl+eNoDvQ7I+2MRwWnU6Z6F0HhXekzsECCLv+y2OJUsRodjqoSfwHkIX42VUFtUzg==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.254.tgz";
+ sha512 = "Sh/7YsHqQYkA6ZHuHMy24e6TE4eX6KZVsZb9E/DvU1nQRIrH4BflO/4k+83tfdYvDl+MObvlqHPRICzEdC9c6Q==";
};
};
"electrum-client-git+https://github.com/janoside/electrum-client" = {
@@ -27953,13 +28007,13 @@ let
sha512 = "+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==";
};
};
- "esbuild-0.14.54" = {
+ "esbuild-0.15.8" = {
name = "esbuild";
packageName = "esbuild";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz";
- sha512 = "Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==";
+ url = "https://registry.npmjs.org/esbuild/-/esbuild-0.15.8.tgz";
+ sha512 = "Remsk2dmr1Ia65sU+QasE6svJbsHe62lzR+CnjpUvbZ+uSYo1SitiOWPRfZQkCu82YWZBBKXiD/j0i//XWMZ+Q==";
};
};
"esbuild-android-64-0.14.47" = {
@@ -27980,13 +28034,13 @@ let
sha512 = "6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==";
};
};
- "esbuild-android-64-0.14.54" = {
+ "esbuild-android-64-0.15.8" = {
name = "esbuild-android-64";
packageName = "esbuild-android-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz";
- sha512 = "Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==";
+ url = "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.8.tgz";
+ sha512 = "bVh8FIKOolF7/d4AMzt7xHlL0Ljr+mYKSHI39TJWDkybVWHdn6+4ODL3xZGHOxPpdRpitemXA1WwMKYBsw8dGw==";
};
};
"esbuild-android-arm64-0.14.47" = {
@@ -28007,13 +28061,13 @@ let
sha512 = "vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==";
};
};
- "esbuild-android-arm64-0.14.54" = {
+ "esbuild-android-arm64-0.15.8" = {
name = "esbuild-android-arm64";
packageName = "esbuild-android-arm64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz";
- sha512 = "F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==";
+ url = "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.8.tgz";
+ sha512 = "ReAMDAHuo0H1h9LxRabI6gwYPn8k6WiUeyxuMvx17yTrJO+SCnIfNc/TSPFvDwtK9MiyiKG/2dBYHouT/M0BXQ==";
};
};
"esbuild-darwin-64-0.14.47" = {
@@ -28034,13 +28088,13 @@ let
sha512 = "YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==";
};
};
- "esbuild-darwin-64-0.14.54" = {
+ "esbuild-darwin-64-0.15.8" = {
name = "esbuild-darwin-64";
packageName = "esbuild-darwin-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz";
- sha512 = "jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==";
+ url = "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.8.tgz";
+ sha512 = "KaKcGfJ+yto7Fo5gAj3xwxHMd1fBIKatpCHK8znTJLVv+9+NN2/tIPBqA4w5rBwjX0UqXDeIE2v1xJP+nGEXgA==";
};
};
"esbuild-darwin-arm64-0.14.47" = {
@@ -28061,13 +28115,13 @@ let
sha512 = "juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==";
};
};
- "esbuild-darwin-arm64-0.14.54" = {
+ "esbuild-darwin-arm64-0.15.8" = {
name = "esbuild-darwin-arm64";
packageName = "esbuild-darwin-arm64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz";
- sha512 = "OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==";
+ url = "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.8.tgz";
+ sha512 = "8tjEaBgAKnXCkP7bhEJmEqdG9HEV6oLkF36BrMzpfW2rgaw0c48Zrxe+9RlfeGvs6gDF4w+agXyTjikzsS3izw==";
};
};
"esbuild-freebsd-64-0.14.47" = {
@@ -28088,13 +28142,13 @@ let
sha512 = "cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==";
};
};
- "esbuild-freebsd-64-0.14.54" = {
+ "esbuild-freebsd-64-0.15.8" = {
name = "esbuild-freebsd-64";
packageName = "esbuild-freebsd-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz";
- sha512 = "OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==";
+ url = "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.8.tgz";
+ sha512 = "jaxcsGHYzn2L0/lffON2WfH4Nc+d/EwozVTP5K2v016zxMb5UQMhLoJzvLgBqHT1SG0B/mO+a+THnJCMVg15zw==";
};
};
"esbuild-freebsd-arm64-0.14.47" = {
@@ -28115,13 +28169,13 @@ let
sha512 = "TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==";
};
};
- "esbuild-freebsd-arm64-0.14.54" = {
+ "esbuild-freebsd-arm64-0.15.8" = {
name = "esbuild-freebsd-arm64";
packageName = "esbuild-freebsd-arm64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz";
- sha512 = "sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==";
+ url = "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.8.tgz";
+ sha512 = "2xp2UlljMvX8HExtcg7VHaeQk8OBU0CSl1j18B5CcZmSDkLF9p3utuMXIopG3a08fr9Hv+Dz6+seSXUow/G51w==";
};
};
"esbuild-linux-32-0.14.47" = {
@@ -28142,13 +28196,13 @@ let
sha512 = "RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==";
};
};
- "esbuild-linux-32-0.14.54" = {
+ "esbuild-linux-32-0.15.8" = {
name = "esbuild-linux-32";
packageName = "esbuild-linux-32";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz";
- sha512 = "1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==";
+ url = "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.8.tgz";
+ sha512 = "9u1E54BRz1FQMl86iaHK146+4ID2KYNxL3trLZT4QLLx3M7Q9n4lGG3lrzqUatGR2cKy8c33b0iaCzsItZWkFg==";
};
};
"esbuild-linux-64-0.14.47" = {
@@ -28169,13 +28223,13 @@ let
sha512 = "dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==";
};
};
- "esbuild-linux-64-0.14.54" = {
+ "esbuild-linux-64-0.15.8" = {
name = "esbuild-linux-64";
packageName = "esbuild-linux-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz";
- sha512 = "EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==";
+ url = "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.8.tgz";
+ sha512 = "4HxrsN9eUzJXdVGMTYA5Xler82FuZUu21bXKN42zcLHHNKCAMPUzD62I+GwDhsdgUBAUj0tRXDdsQHgaP6v0HA==";
};
};
"esbuild-linux-arm-0.14.47" = {
@@ -28196,13 +28250,13 @@ let
sha512 = "LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==";
};
};
- "esbuild-linux-arm-0.14.54" = {
+ "esbuild-linux-arm-0.15.8" = {
name = "esbuild-linux-arm";
packageName = "esbuild-linux-arm";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz";
- sha512 = "qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==";
+ url = "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.8.tgz";
+ sha512 = "7DVBU9SFjX4+vBwt8tHsUCbE6Vvl6y6FQWHAgyw1lybC5gULqn/WnjHYHN2/LJaZRsDBvxWT4msEgwLGq1Wd3Q==";
};
};
"esbuild-linux-arm64-0.14.47" = {
@@ -28223,13 +28277,13 @@ let
sha512 = "D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==";
};
};
- "esbuild-linux-arm64-0.14.54" = {
+ "esbuild-linux-arm64-0.15.8" = {
name = "esbuild-linux-arm64";
packageName = "esbuild-linux-arm64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz";
- sha512 = "WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==";
+ url = "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.8.tgz";
+ sha512 = "1OCm7Aq0tEJT70PbxmHSGYDLYP8DKH8r4Nk7/XbVzWaduo9beCjGBB+tGZIHK6DdTQ3h00/4Tb/70YMH/bOtKg==";
};
};
"esbuild-linux-mips64le-0.14.47" = {
@@ -28250,13 +28304,13 @@ let
sha512 = "vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==";
};
};
- "esbuild-linux-mips64le-0.14.54" = {
+ "esbuild-linux-mips64le-0.15.8" = {
name = "esbuild-linux-mips64le";
packageName = "esbuild-linux-mips64le";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz";
- sha512 = "qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==";
+ url = "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.8.tgz";
+ sha512 = "yeFoNPVFPEzZvFYBfUQNG2TjGRaCyV1E27OcOg4LOtnGrxb2wA+mkW3luckyv1CEyd00mpAg7UdHx8nlx3ghgA==";
};
};
"esbuild-linux-ppc64le-0.14.47" = {
@@ -28277,13 +28331,13 @@ let
sha512 = "xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==";
};
};
- "esbuild-linux-ppc64le-0.14.54" = {
+ "esbuild-linux-ppc64le-0.15.8" = {
name = "esbuild-linux-ppc64le";
packageName = "esbuild-linux-ppc64le";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz";
- sha512 = "j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==";
+ url = "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.8.tgz";
+ sha512 = "CEyMMUUNabXibw8OSNmBXhOIGhnjNVl5Lpseiuf00iKN0V47oqDrbo4dsHz1wH62m49AR8iG8wpDlTqfYgKbtg==";
};
};
"esbuild-linux-riscv64-0.14.47" = {
@@ -28304,13 +28358,13 @@ let
sha512 = "syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==";
};
};
- "esbuild-linux-riscv64-0.14.54" = {
+ "esbuild-linux-riscv64-0.15.8" = {
name = "esbuild-linux-riscv64";
packageName = "esbuild-linux-riscv64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz";
- sha512 = "y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==";
+ url = "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.8.tgz";
+ sha512 = "OCGSOaspMUjexSCU8ZiA0UnV/NiRU+s2vIfEcAQWQ6u32R+2luyfh/4ZaY6jFbylJE07Esc/yRvb9Q5fXuClXA==";
};
};
"esbuild-linux-s390x-0.14.47" = {
@@ -28331,13 +28385,13 @@ let
sha512 = "kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==";
};
};
- "esbuild-linux-s390x-0.14.54" = {
+ "esbuild-linux-s390x-0.15.8" = {
name = "esbuild-linux-s390x";
packageName = "esbuild-linux-s390x";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz";
- sha512 = "zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==";
+ url = "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.8.tgz";
+ sha512 = "RHdpdfxRTSrZXZJlFSLazFU4YwXLB5Rgf6Zr5rffqSsO4y9JybgtKO38bFwxZNlDXliYISXN/YROKrG9s7mZQA==";
};
};
"esbuild-netbsd-64-0.14.47" = {
@@ -28358,13 +28412,13 @@ let
sha512 = "ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==";
};
};
- "esbuild-netbsd-64-0.14.54" = {
+ "esbuild-netbsd-64-0.15.8" = {
name = "esbuild-netbsd-64";
packageName = "esbuild-netbsd-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz";
- sha512 = "PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==";
+ url = "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.8.tgz";
+ sha512 = "VolFFRatBH09T5QMWhiohAWCOien1R1Uz9K0BRVVTBgBaVBt7eArsXTKxVhUgRf2vwu2c2SXkuP0r7HLG0eozw==";
};
};
"esbuild-openbsd-64-0.14.47" = {
@@ -28385,13 +28439,13 @@ let
sha512 = "7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==";
};
};
- "esbuild-openbsd-64-0.14.54" = {
+ "esbuild-openbsd-64-0.15.8" = {
name = "esbuild-openbsd-64";
packageName = "esbuild-openbsd-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz";
- sha512 = "Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==";
+ url = "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.8.tgz";
+ sha512 = "HTAPlg+n4kUeE/isQxlCfsOz0xJGNoT5LJ9oYZWFKABfVf4Ycu7Zlf5ITgOnrdheTkz8JeL/gISIOCFAoOXrSA==";
};
};
"esbuild-sunos-64-0.14.47" = {
@@ -28412,13 +28466,22 @@ let
sha512 = "HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==";
};
};
- "esbuild-sunos-64-0.14.54" = {
+ "esbuild-sunos-64-0.15.8" = {
name = "esbuild-sunos-64";
packageName = "esbuild-sunos-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz";
- sha512 = "28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==";
+ url = "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.8.tgz";
+ sha512 = "qMP/jR/FzcIOwKj+W+Lb+8Cfr8GZHbHUJxAPi7DUhNZMQ/6y7sOgRzlOSpRrbbUntrRZh0MqOyDhJ3Gpo6L1QA==";
+ };
+ };
+ "esbuild-wasm-0.15.8" = {
+ name = "esbuild-wasm";
+ packageName = "esbuild-wasm";
+ version = "0.15.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.15.8.tgz";
+ sha512 = "Y7uCl5RNO4URjlemjdx++ukVHEMt5s5AfMWYUnMiK4Sry+pPCvQIctzXq6r6FKCyGKjX6/NGMCqR2OX6aLxj0w==";
};
};
"esbuild-windows-32-0.14.47" = {
@@ -28439,13 +28502,13 @@ let
sha512 = "4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==";
};
};
- "esbuild-windows-32-0.14.54" = {
+ "esbuild-windows-32-0.15.8" = {
name = "esbuild-windows-32";
packageName = "esbuild-windows-32";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz";
- sha512 = "T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==";
+ url = "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.8.tgz";
+ sha512 = "RKR1QHh4iWzjUhkP8Yqi75PPz/KS+b8zw3wUrzw6oAkj+iU5Qtyj61ZDaSG3Qf2vc6hTIUiPqVTqBH0NpXFNwg==";
};
};
"esbuild-windows-64-0.14.47" = {
@@ -28466,13 +28529,13 @@ let
sha512 = "HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==";
};
};
- "esbuild-windows-64-0.14.54" = {
+ "esbuild-windows-64-0.15.8" = {
name = "esbuild-windows-64";
packageName = "esbuild-windows-64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz";
- sha512 = "AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==";
+ url = "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.8.tgz";
+ sha512 = "ag9ptYrsizgsR+PQE8QKeMqnosLvAMonQREpLw4evA4FFgOBMLEat/dY/9txbpozTw9eEOYyD3a4cE9yTu20FA==";
};
};
"esbuild-windows-arm64-0.14.47" = {
@@ -28493,13 +28556,13 @@ let
sha512 = "JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==";
};
};
- "esbuild-windows-arm64-0.14.54" = {
+ "esbuild-windows-arm64-0.15.8" = {
name = "esbuild-windows-arm64";
packageName = "esbuild-windows-arm64";
- version = "0.14.54";
+ version = "0.15.8";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz";
- sha512 = "M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==";
+ url = "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.8.tgz";
+ sha512 = "dbpAb0VyPaUs9mgw65KRfQ9rqiWCHpNzrJusoPu+LpEoswosjt/tFxN7cd2l68AT4qWdBkzAjDLRon7uqMeWcg==";
};
};
"esc-exit-3.0.0" = {
@@ -29519,6 +29582,15 @@ let
sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==";
};
};
+ "execa-6.1.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-6.1.0.tgz";
+ sha512 = "QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==";
+ };
+ };
"execall-1.0.0" = {
name = "execall";
packageName = "execall";
@@ -30509,13 +30581,13 @@ let
sha512 = "WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==";
};
};
- "faunadb-4.6.0" = {
+ "faunadb-4.7.0" = {
name = "faunadb";
packageName = "faunadb";
- version = "4.6.0";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/faunadb/-/faunadb-4.6.0.tgz";
- sha512 = "lBCS9wOLIdoeQmhzFvNAXM9B4T3Ptv2HUf0RrPsC2LA1zPtTQFBtdhH7fvTlwRyUawIKDjs1wn5pk2o8g0Cylg==";
+ url = "https://registry.npmjs.org/faunadb/-/faunadb-4.7.0.tgz";
+ sha512 = "bX5c2n+lEOrdu1PbkSFpDUdE/PLQ2x6jZptY4fAwOF9hCw6DIvmfk1ZjLipWUswOvydvlku2/7O3imqXa557iw==";
};
};
"faye-websocket-0.10.0" = {
@@ -31418,13 +31490,13 @@ let
sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==";
};
};
- "flow-parser-0.186.0" = {
+ "flow-parser-0.187.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.186.0";
+ version = "0.187.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.186.0.tgz";
- sha512 = "QaPJczRxNc/yvp3pawws439VZ/vHGq+i1/mZ3bEdSaRy8scPgZgiWklSB6jN7y5NR9sfgL4GGIiBcMXTj3Opqg==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.187.0.tgz";
+ sha512 = "wTOuvmW6YyrcqkuLggk/GeSl65R5KQPEbxh0eAfCvlwxp8X08r+5owgZjdbLf8/typZQl/cSJL6D9vVwCkzf3g==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -31571,13 +31643,13 @@ let
sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==";
};
};
- "follow-redirects-1.15.1" = {
+ "follow-redirects-1.15.2" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.15.1";
+ version = "1.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz";
- sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz";
+ sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==";
};
};
"follow-redirects-1.5.10" = {
@@ -33597,15 +33669,6 @@ let
sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==";
};
};
- "globby-11.0.4" = {
- name = "globby";
- packageName = "globby";
- version = "11.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz";
- sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==";
- };
- };
"globby-11.1.0" = {
name = "globby";
packageName = "globby";
@@ -33705,13 +33768,13 @@ let
sha512 = "5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==";
};
};
- "gm-1.23.1" = {
+ "gm-1.24.0" = {
name = "gm";
packageName = "gm";
- version = "1.23.1";
+ version = "1.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gm/-/gm-1.23.1.tgz";
- sha512 = "wYGVAa8/sh9ggF5qWoOs6eArcAgwEPkDNvf637jHRHkMUznvs7m/Q2vrc0KLN6B8px3nnRJqJcXK4mTK6lLFmg==";
+ url = "https://registry.npmjs.org/gm/-/gm-1.24.0.tgz";
+ sha512 = "HsB94GIi6D4KklPrcRtq85CUuQhgi292N7vOx00pBH95sKuuy9LfenL9UtqXV4XFU8AmP5EaIhYcCxYp9zjiGQ==";
};
};
"goldengate-11.2.2" = {
@@ -33894,13 +33957,13 @@ let
sha512 = "o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==";
};
};
- "got-12.4.1" = {
+ "got-12.5.0" = {
name = "got";
packageName = "got";
- version = "12.4.1";
+ version = "12.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-12.4.1.tgz";
- sha512 = "Sz1ojLt4zGNkcftIyJKnulZT/yEDvifhUjccHA8QzOuTgPs/+njXYNMFE3jR4/2OODQSSbH8SdnoLCkbh41ieA==";
+ url = "https://registry.npmjs.org/got/-/got-12.5.0.tgz";
+ sha512 = "/Bneo/L6bLN1wDyJCeRZ3CLoixvwb9v3rE3IHulFSfTHwP85xSr4QatA8K0c6GlL5+mc4IZ57BzluNZJiXvHIg==";
};
};
"got-3.3.1" = {
@@ -34236,13 +34299,13 @@ let
sha512 = "sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag==";
};
};
- "graphql-ws-5.10.2" = {
+ "graphql-ws-5.11.1" = {
name = "graphql-ws";
packageName = "graphql-ws";
- version = "5.10.2";
+ version = "5.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.10.2.tgz";
- sha512 = "QnLz0hbpTkmp/ATKAA3Tsg9LFZjWtgrLMgxc3W9G+3+rxUtzcYLwQh4YbXELYcpCqo8zdQxmERAtIQSgq75LTw==";
+ url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.11.1.tgz";
+ sha512 = "AlOO/Gt0fXuSHXe/Weo6o3rIQVnH5MW7ophzeYzL+vYNlkf0NbWRJ6IIFgtSLcv9JpTlQdxSpB3t0SnM47/BHA==";
};
};
"gray-matter-4.0.3" = {
@@ -34281,15 +34344,6 @@ let
sha512 = "/PiFUa7WIsl48dUeCvhIHnwNmAAzlI/eHoJl0vu3nsFA366JleY7Ff8EVTplZu5kO0MIdZjKTTnzItL61ahbnw==";
};
};
- "growl-1.10.5" = {
- name = "growl";
- packageName = "growl";
- version = "1.10.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz";
- sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==";
- };
- };
"growl-1.9.2" = {
name = "growl";
packageName = "growl";
@@ -36180,6 +36234,15 @@ let
sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==";
};
};
+ "human-signals-3.0.1" = {
+ name = "human-signals";
+ packageName = "human-signals";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/human-signals/-/human-signals-3.0.1.tgz";
+ sha512 = "rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==";
+ };
+ };
"humanize-0.0.9" = {
name = "humanize";
packageName = "humanize";
@@ -36324,13 +36387,13 @@ let
sha512 = "acJLCk38YMfEPjBR/1vS13SFY7rBQLs9E5m1tSRnWc9UW3f+SZszgH+NP1fZRA1+O+CdG2eLGGmuUMJW52EwzQ==";
};
};
- "ibm-openapi-validator-0.83.3" = {
+ "ibm-openapi-validator-0.88.3" = {
name = "ibm-openapi-validator";
packageName = "ibm-openapi-validator";
- version = "0.83.3";
+ version = "0.88.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ibm-openapi-validator/-/ibm-openapi-validator-0.83.3.tgz";
- sha512 = "ijbuMXpQX5WrVVGrGeZDouDFToKxzaDURDxkz2drJeU3aRIWtuLExXmtQx9vx1cFknMqoHIrDmUDNZrALjse4A==";
+ url = "https://registry.npmjs.org/ibm-openapi-validator/-/ibm-openapi-validator-0.88.3.tgz";
+ sha512 = "WHkkO5TXWSS12P8VybB04Stq+yFloMlHy2aVzcLAZo425PYIVMuIWhsH7zN9vwcZcOB/qAnWQ4T3PKn6wrcT+Q==";
};
};
"iconv-lite-0.4.19" = {
@@ -36882,13 +36945,13 @@ let
sha512 = "m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==";
};
};
- "inflection-1.13.2" = {
+ "inflection-1.13.4" = {
name = "inflection";
packageName = "inflection";
- version = "1.13.2";
+ version = "1.13.4";
src = fetchurl {
- url = "https://registry.npmjs.org/inflection/-/inflection-1.13.2.tgz";
- sha512 = "cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw==";
+ url = "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz";
+ sha512 = "6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==";
};
};
"inflight-1.0.6" = {
@@ -37935,13 +37998,13 @@ let
sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==";
};
};
- "is-callable-1.2.5" = {
+ "is-callable-1.2.6" = {
name = "is-callable";
packageName = "is-callable";
- version = "1.2.5";
+ version = "1.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.5.tgz";
- sha512 = "ZIWRujF6MvYGkEuHMYtFRkL2wAtFw89EHfKlXrkPkjQZZRWeh9L1q3SV13NIfHnqxugjLvAOkEHx9mb1zcMnEw==";
+ url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.6.tgz";
+ sha512 = "krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q==";
};
};
"is-canonical-base64-1.1.1" = {
@@ -40132,15 +40195,6 @@ let
sha512 = "BLv3oxhfET+w5fjPwq3PsAsxzi9i3qzU//HMpWVz0A6KplF86HdR9x2TGnv9DXhSUrO7LO8czUiTd3yb3mLSvg==";
};
};
- "js-yaml-4.0.0" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz";
- sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==";
- };
- };
"js-yaml-4.1.0" = {
name = "js-yaml";
packageName = "js-yaml";
@@ -40249,13 +40303,13 @@ let
sha512 = "kYeYuos/pYp0V/V8VAoGnUc0va0UZjTjwCsldBFZNBrOi9Q5kUXrvsw6W5/lQllB7hKXBARC4HRk1Sfk4dPFtA==";
};
};
- "jsep-1.3.6" = {
+ "jsep-1.3.7" = {
name = "jsep";
packageName = "jsep";
- version = "1.3.6";
+ version = "1.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/jsep/-/jsep-1.3.6.tgz";
- sha512 = "o7fP1eZVROIChADx7HKiwGRVI0tUqgUUGhaok6DP7cMxpDeparuooREDBDeNk2G5KIB49MBSkRYsCOu4PmZ+1w==";
+ url = "https://registry.npmjs.org/jsep/-/jsep-1.3.7.tgz";
+ sha512 = "NFbZTr1t13fPKw53swmZFKwBkEDWDnno7uLJk+a+Rw9tGDTkGgnGdZJ8A/o3gR1+XaAXmSsbpfIBIBgqRBZWDA==";
};
};
"jsesc-0.5.0" = {
@@ -40321,13 +40375,13 @@ let
sha512 = "hXUwB2NMZCsjDYItuLAoy6GAUDfUHzcPpC5vBjXC3ol33B7CI6OC8FxLj9wX/+aKweTuN1g51JIcYH5hM7jN6A==";
};
};
- "jsii-srcmak-0.1.673" = {
+ "jsii-srcmak-0.1.679" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.673";
+ version = "0.1.679";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.673.tgz";
- sha512 = "5rhN/8Fvqq1YkyQI2FnrbnZ96GdRXnCr7DLww5dRNuqTGQKItsx4tDD/xKYQBlZzwABLvzMuOQdON5QuUbZQSA==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.679.tgz";
+ sha512 = "RojB5VQ50ghFxKQB8XSuFaDvu0J1MY8NNhXDVhFdIETaPLqhlyDIjQog4LETIUAwqMmlsDSjdUmLJ1YvfvjU9g==";
};
};
"json-bigint-1.0.0" = {
@@ -40663,13 +40717,13 @@ let
sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA==";
};
};
- "json2jsii-0.3.121" = {
+ "json2jsii-0.3.127" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.3.121";
+ version = "0.3.127";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.121.tgz";
- sha512 = "OIYlTYqRMefrNLDnQY3/idWUjCRGmY6B0wecbxIQVSYPQ9WMAuiJIzIkNiCruxkvQbRq9oqlJhh8siBkZ9Xl4Q==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.127.tgz";
+ sha512 = "085FrWNc6ORaJU0uxgA+g82JQxpe7SZOfBKOSknYyerzIjrEe0srIJH7OgVwXk/d0E4w9eNeSbcJDwNdd4wrAw==";
};
};
"json3-3.2.6" = {
@@ -42283,85 +42337,85 @@ let
sha512 = "Rha4U1yZS/SHwW/GJ+IeEaxI6vqJ1bx/upQkY5RIZNCn4YoMvqd4inQUt9GNtuLy/pXus8Bms4DL2B9DkujBKQ==";
};
};
- "lightningcss-1.14.0" = {
+ "lightningcss-1.15.1" = {
name = "lightningcss";
packageName = "lightningcss";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.14.0.tgz";
- sha512 = "Vwa1JWiLGRLntf4TXRu/zF2RaHRfJjbZwUzkl2C4LhnRQzsEwkyeAQjAxtpJ5NDnVVUf10q1olEzkFF4AWZLOw==";
+ url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.15.1.tgz";
+ sha512 = "d4fqKl8sqpdM27OsseAbKKxhD2otiu6stS7yWlm/DA7wOQAIDKMu/dke54cEN8ED19v9H2pEzMPGTsRfnq3Rdg==";
};
};
- "lightningcss-darwin-arm64-1.14.0" = {
+ "lightningcss-darwin-arm64-1.15.1" = {
name = "lightningcss-darwin-arm64";
packageName = "lightningcss-darwin-arm64";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.14.0.tgz";
- sha512 = "AFt8Qs9Qjbg5AlB/3cYljanVEeyJI4C9bPqO8hI7bNa2HdDIINI4NgfGpri8BNwA3zcAlFPH38caIqcG3LWC+g==";
+ url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.15.1.tgz";
+ sha512 = "4bqe9OCWzj8gPgwzpDK7TPopIoKx9CQMPVN83/+T5LVLkh9sSS0ltZLjAFI399GIkC6idl6rguUQ5qPeq4yxsQ==";
};
};
- "lightningcss-darwin-x64-1.14.0" = {
+ "lightningcss-darwin-x64-1.15.1" = {
name = "lightningcss-darwin-x64";
packageName = "lightningcss-darwin-x64";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.14.0.tgz";
- sha512 = "xF9YSNxHiAOyYp5/Ogo4K+SybcQExWUi+vkIGnpO6zQsQda7KFgJt2aA3AwaEj9ouf2yUHHKcsk2TiixlZTtTg==";
+ url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.15.1.tgz";
+ sha512 = "1W7kt2Nd0lPFkZ5VzieJfs/ePVADysM3FS33HcUUzktE52vWL2B6S4ntWibHj6Ccg/lDH5o6GiLcCYwpOPLHug==";
};
};
- "lightningcss-linux-arm-gnueabihf-1.14.0" = {
+ "lightningcss-linux-arm-gnueabihf-1.15.1" = {
name = "lightningcss-linux-arm-gnueabihf";
packageName = "lightningcss-linux-arm-gnueabihf";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.14.0.tgz";
- sha512 = "8cH/qwZnoU3zIruVNWGLBDVm6f1w/ZC3eMDkFOTEF4FaW3jCpxEg/BH5r04lNUM/SO6Zu2C+vgJaEKdUm58dQg==";
+ url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.15.1.tgz";
+ sha512 = "8FijfM4HGJPCQPB9nAaTjdOE2PGQYE66t1wvV+SR915dEePn4yyRdCBJitlas5B6aTAE2AMwEuEl1i/pVDmkGw==";
};
};
- "lightningcss-linux-arm64-gnu-1.14.0" = {
+ "lightningcss-linux-arm64-gnu-1.15.1" = {
name = "lightningcss-linux-arm64-gnu";
packageName = "lightningcss-linux-arm64-gnu";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.14.0.tgz";
- sha512 = "88NmNwTRa10MRDJa2DghZuGZq8rvFeZIm0G4k/oA2P5XaJJw7f6IhDEjCtBoruYOZhulBkEq2xQY+q0AWYMFcw==";
+ url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.15.1.tgz";
+ sha512 = "ZhCv3MlApRTIwszlNQ2t7FST7qK+M1iP6apTvOetPwDlzOMZ5dcH0a1453JPm4CwOSzHZ8079gnb5EqtU4+pjg==";
};
};
- "lightningcss-linux-arm64-musl-1.14.0" = {
+ "lightningcss-linux-arm64-musl-1.15.1" = {
name = "lightningcss-linux-arm64-musl";
packageName = "lightningcss-linux-arm64-musl";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.14.0.tgz";
- sha512 = "8FSXmV7yPqk+1vErgdEO6OvDXDT/MkJMF+jSaUuL5wEvCC5yiJsaktNEJvn5EHsFbODi9DNvUt71sjeFCJma1w==";
+ url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.15.1.tgz";
+ sha512 = "cGhslFivvMLSIsesZbEaUurXRJMGUftHukiY5DjWtXkA2iIqqV7TyK3j6ZJPy76hlRKsjU/WO8CrabAvr6kmsw==";
};
};
- "lightningcss-linux-x64-gnu-1.14.0" = {
+ "lightningcss-linux-x64-gnu-1.15.1" = {
name = "lightningcss-linux-x64-gnu";
packageName = "lightningcss-linux-x64-gnu";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.14.0.tgz";
- sha512 = "+dcNezLgUdAozcc6c0YSnZyRcOpro/yOOdy6ZjIwQtxej/5sEVJhXWbyHhdwSSlJssg/d+/7ihxEJIdZ8oDIfw==";
+ url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.15.1.tgz";
+ sha512 = "uVfUgRUjq7laAR9A027oqGPcq72Y/hPVEEqb9agWzNqYvZyT0VAqNxp9g2ncL//gOD1vTwQntcwDhrI5VE2PCw==";
};
};
- "lightningcss-linux-x64-musl-1.14.0" = {
+ "lightningcss-linux-x64-musl-1.15.1" = {
name = "lightningcss-linux-x64-musl";
packageName = "lightningcss-linux-x64-musl";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.14.0.tgz";
- sha512 = "TI8tIaYv6SBpoBGatCG8gKQMxMCUcc+rvBSrqU7geHFBwzzyxOEHflENMclfwiYjTEM/HMdgJbWuHsIY3xvkuQ==";
+ url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.15.1.tgz";
+ sha512 = "n2cRPHxL57N+YMsBodF9HogieOicmlQVUCFM+RF0FOzayA8LdypacNWI3EDzbERWfkBAWtx2eLvV50DOJrkQdg==";
};
};
- "lightningcss-win32-x64-msvc-1.14.0" = {
+ "lightningcss-win32-x64-msvc-1.15.1" = {
name = "lightningcss-win32-x64-msvc";
packageName = "lightningcss-win32-x64-msvc";
- version = "1.14.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.14.0.tgz";
- sha512 = "l2H8GoDn+WJAENKrIgNgRunqP3gvyBQwBmFqIXpuxx9G6ll2aTlyQsvsVxzJWJ5ePl3atNRGFQO+ZkiTNSm71A==";
+ url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.15.1.tgz";
+ sha512 = "wHGJZnCmHU14cL3mmVNZm1yDz55m8EKxwPhACZTq+/QOvLMeIXQ4qLvNzdvtVL5KESPwz4hjYsYsSNCtpcTfOA==";
};
};
"lilconfig-2.0.6" = {
@@ -44218,15 +44272,6 @@ let
sha512 = "dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==";
};
};
- "log-symbols-4.0.0" = {
- name = "log-symbols";
- packageName = "log-symbols";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz";
- sha512 = "FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==";
- };
- };
"log-symbols-4.1.0" = {
name = "log-symbols";
packageName = "log-symbols";
@@ -47018,6 +47063,15 @@ let
sha512 = "Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==";
};
};
+ "mimic-fn-4.0.0" = {
+ name = "mimic-fn";
+ packageName = "mimic-fn";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz";
+ sha512 = "vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==";
+ };
+ };
"mimic-response-1.0.1" = {
name = "mimic-response";
packageName = "mimic-response";
@@ -47045,6 +47099,15 @@ let
sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==";
};
};
+ "mimic-response-4.0.0" = {
+ name = "mimic-response";
+ packageName = "mimic-response";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz";
+ sha512 = "e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==";
+ };
+ };
"min-document-2.19.0" = {
name = "min-document";
packageName = "min-document";
@@ -47099,13 +47162,13 @@ let
sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA==";
};
};
- "miniflare-2.8.2" = {
+ "miniflare-2.9.0" = {
name = "miniflare";
packageName = "miniflare";
- version = "2.8.2";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/miniflare/-/miniflare-2.8.2.tgz";
- sha512 = "t9/QeSSsUFuqafLVAPlmWmoG+egfJ99xtoOWw1C9Wt6nlXz9ox3y1TfAw06YUPp4xVHcQnHQcir7aL4QvRPgfw==";
+ url = "https://registry.npmjs.org/miniflare/-/miniflare-2.9.0.tgz";
+ sha512 = "HBGQ5Jj6sMU1B1hX6G3ML46ThtUvu1nvxgXjDDmhp2RhWKYj0XvcohW/nPPL/MTP1gpvfT880De9EHmobVsDsw==";
};
};
"minilog-3.1.0" = {
@@ -47558,15 +47621,6 @@ let
sha512 = "jNt2iEk9FPmZLzL+sm4FNyOIDYXf2wUU6L4Cc8OIKK/kzgMHKPi4YhTZqG4bW4kQVdIv6wutDybRhXfdnujA1Q==";
};
};
- "mocha-8.4.0" = {
- name = "mocha";
- packageName = "mocha";
- version = "8.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz";
- sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==";
- };
- };
"mock-require-3.0.3" = {
name = "mock-require";
packageName = "mock-require";
@@ -47684,13 +47738,13 @@ let
sha512 = "uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==";
};
};
- "mongodb-4.9.1" = {
+ "mongodb-4.10.0" = {
name = "mongodb";
packageName = "mongodb";
- version = "4.9.1";
+ version = "4.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mongodb/-/mongodb-4.9.1.tgz";
- sha512 = "ZhgI/qBf84fD7sI4waZBoLBNJYPQN5IOC++SBCiPiyhzpNKOxN/fi0tBHvH2dEC42HXtNEbFB0zmNz4+oVtorQ==";
+ url = "https://registry.npmjs.org/mongodb/-/mongodb-4.10.0.tgz";
+ sha512 = "My2QxLTw0Cc1O9gih0mz4mqo145Jq4rLAQx0Glk/Ha9iYBzYpt4I2QFNRIh35uNFNfe8KFQcdwY1/HKxXBkinw==";
};
};
"mongodb-connection-string-url-2.5.3" = {
@@ -47936,13 +47990,13 @@ let
sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg==";
};
};
- "msgpackr-1.6.2" = {
+ "msgpackr-1.6.3" = {
name = "msgpackr";
packageName = "msgpackr";
- version = "1.6.2";
+ version = "1.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.6.2.tgz";
- sha512 = "bqSQ0DYJbXbrJcrZFmMygUZmqQiDfI2ewFVWcrZY12w5XHWtPuW4WppDT/e63Uu311ajwkRRXSoF0uILroBeTA==";
+ url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.6.3.tgz";
+ sha512 = "Wtwnt2W06wNOLzV3N0XLLAJCxpwlCfFpvSZAXsu+xf71X7KuqBEDhDSjAy9nwNhQ2aK74Rd1RiRln+62tffoXw==";
};
};
"msgpackr-extract-2.1.2" = {
@@ -48449,15 +48503,6 @@ let
sha512 = "s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==";
};
};
- "nanoid-3.1.20" = {
- name = "nanoid";
- packageName = "nanoid";
- version = "3.1.20";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz";
- sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==";
- };
- };
"nanoid-3.3.3" = {
name = "nanoid";
packageName = "nanoid";
@@ -50016,6 +50061,15 @@ let
sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==";
};
};
+ "normalize-url-7.1.0" = {
+ name = "normalize-url";
+ packageName = "normalize-url";
+ version = "7.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-url/-/normalize-url-7.1.0.tgz";
+ sha512 = "JgkdydFdLe1E5Q7DpLvKVyBZOOwXYGhIbMbOMm3lJ06XKzaiit+qo1HciO3z3IFklStfarzJHVQf9ZcNPTvZlw==";
+ };
+ };
"normalize.css-8.0.1" = {
name = "normalize.css";
packageName = "normalize.css";
@@ -50340,6 +50394,15 @@ let
sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==";
};
};
+ "npm-run-path-5.1.0" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz";
+ sha512 = "sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==";
+ };
+ };
"npmconf-2.1.3" = {
name = "npmconf";
packageName = "npmconf";
@@ -50394,6 +50457,15 @@ let
sha512 = "I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==";
};
};
+ "npx-import-1.1.3" = {
+ name = "npx-import";
+ packageName = "npx-import";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npx-import/-/npx-import-1.1.3.tgz";
+ sha512 = "zy6249FJ81OtPsvz2y0+rgis31EN5wbdwBG2umtEh65W/4onYArHuoUSZ+W+T7BQYK7YF+h9G4CuGPusMCcLOw==";
+ };
+ };
"nssocket-0.6.0" = {
name = "nssocket";
packageName = "nssocket";
@@ -50529,13 +50601,13 @@ let
sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==";
};
};
- "nx-14.7.5" = {
+ "nx-14.7.6" = {
name = "nx";
packageName = "nx";
- version = "14.7.5";
+ version = "14.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/nx/-/nx-14.7.5.tgz";
- sha512 = "hp8TYk/t15MJVXQCafSduriZqoxR2zvw5mDHqg32Mjt2jFEFKaPWtaO5l/qKj+rlLE8cPYTeGL5qAS9WZkAWtg==";
+ url = "https://registry.npmjs.org/nx/-/nx-14.7.6.tgz";
+ sha512 = "G+QaLMdTtFsWTmVno89SP/5St40IGmFW5wgrIwDGSeosV91G6S0OpU0Yot0D1exgH7gYLh5tE45qGpXFpGGbww==";
};
};
"nyc-15.1.0" = {
@@ -51142,6 +51214,15 @@ let
sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==";
};
};
+ "onetime-6.0.0" = {
+ name = "onetime";
+ packageName = "onetime";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz";
+ sha512 = "1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==";
+ };
+ };
"only-0.0.2" = {
name = "only";
packageName = "only";
@@ -51448,6 +51529,15 @@ let
sha512 = "TxhYBMoqx9frXyOgnRHufjQfPXomTIHYKhSKJ6jHfj13kS8OEIhvmE8CTuQyKtjjWttAjX5DPxM1vmalEpo8Qw==";
};
};
+ "openapi3-ts-3.0.2" = {
+ name = "openapi3-ts";
+ packageName = "openapi3-ts";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-3.0.2.tgz";
+ sha512 = "KF/06OkQPFSr9A+oadYYC3cIj8TZlzonREkQYFqx8i+wLllAxm6Bp8Fizo3jWXeIxZj/7V5LKtuNN/GxueWtcw==";
+ };
+ };
"opencollective-postinstall-2.0.3" = {
name = "opencollective-postinstall";
packageName = "opencollective-postinstall";
@@ -52906,6 +52996,15 @@ let
sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==";
};
};
+ "parse-package-name-1.0.0" = {
+ name = "parse-package-name";
+ packageName = "parse-package-name";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-package-name/-/parse-package-name-1.0.0.tgz";
+ sha512 = "kBeTUtcj+SkyfaW4+KBe0HtsloBJ/mKTPoxpVdA57GZiPerREsUWJOhVj9anXweFiJkm5y8FG1sxFZkZ0SN6wg==";
+ };
+ };
"parse-passwd-1.0.0" = {
name = "parse-passwd";
packageName = "parse-passwd";
@@ -53410,6 +53509,15 @@ let
sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==";
};
};
+ "path-key-4.0.0" = {
+ name = "path-key";
+ packageName = "path-key";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz";
+ sha512 = "haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==";
+ };
+ };
"path-loader-1.0.12" = {
name = "path-loader";
packageName = "path-loader";
@@ -57316,13 +57424,13 @@ let
sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==";
};
};
- "pyright-1.1.270" = {
+ "pyright-1.1.271" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.270";
+ version = "1.1.271";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.270.tgz";
- sha512 = "9SmZfgAhByPeMk0AAb41lAXENjoC1gGXKCP4qaexGAEu9pOYSUMQFgNTyRzKizafa6LtIBGGhgSaJrpWZyBn7w==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.271.tgz";
+ sha512 = "46QQLQLT5U+wmKqG9R193loBASqqcIZYwWrwTCWNTHIRYTxEbaHwGWDlmX19R3lmlIBDu9I9m5MyPmYs/2v5dg==";
};
};
"q-0.9.7" = {
@@ -57667,13 +57775,13 @@ let
sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==";
};
};
- "queue-tick-1.0.0" = {
+ "queue-tick-1.0.1" = {
name = "queue-tick";
packageName = "queue-tick";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.0.tgz";
- sha512 = "ULWhjjE8BmiICGn3G8+1L9wFpERNxkf8ysxkAer4+TFdRefDaXOCV5m92aMB9FtBVmn/8sETXLXY6BfW7hyaWQ==";
+ url = "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz";
+ sha512 = "kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==";
};
};
"quick-format-unescaped-4.0.4" = {
@@ -58180,13 +58288,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.25.0" = {
+ "react-devtools-core-4.26.0" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.25.0";
+ version = "4.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.25.0.tgz";
- sha512 = "iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.26.0.tgz";
+ sha512 = "OO0Q+vXtHYCXvRQ6elLiOUph3MjsCpuYktGTLnBpizYm46f8tAPuJKihGkwsceitHSJNpzNIjJaYHgX96CyTUQ==";
};
};
"react-dom-17.0.2" = {
@@ -58729,15 +58837,6 @@ let
sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
};
};
- "readdirp-3.5.0" = {
- name = "readdirp";
- packageName = "readdirp";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz";
- sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==";
- };
- };
"readdirp-3.6.0" = {
name = "readdirp";
packageName = "readdirp";
@@ -59044,13 +59143,13 @@ let
sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==";
};
};
- "regenerate-unicode-properties-10.0.1" = {
+ "regenerate-unicode-properties-10.1.0" = {
name = "regenerate-unicode-properties";
packageName = "regenerate-unicode-properties";
- version = "10.0.1";
+ version = "10.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz";
- sha512 = "vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==";
+ url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz";
+ sha512 = "d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==";
};
};
"regenerator-runtime-0.11.1" = {
@@ -59143,13 +59242,13 @@ let
sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==";
};
};
- "regexpu-core-5.1.0" = {
+ "regexpu-core-5.2.1" = {
name = "regexpu-core";
packageName = "regexpu-core";
- version = "5.1.0";
+ version = "5.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz";
- sha512 = "bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==";
+ url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz";
+ sha512 = "HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==";
};
};
"register-protocol-win32-1.1.0" = {
@@ -59224,22 +59323,22 @@ let
sha512 = "+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==";
};
};
- "regjsgen-0.6.0" = {
+ "regjsgen-0.7.1" = {
name = "regjsgen";
packageName = "regjsgen";
- version = "0.6.0";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz";
- sha512 = "ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==";
+ url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz";
+ sha512 = "RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==";
};
};
- "regjsparser-0.8.4" = {
+ "regjsparser-0.9.1" = {
name = "regjsparser";
packageName = "regjsparser";
- version = "0.8.4";
+ version = "0.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz";
- sha512 = "J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==";
+ url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz";
+ sha512 = "dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==";
};
};
"rehype-parse-6.0.2" = {
@@ -60817,13 +60916,13 @@ let
sha512 = "bkzdIZ5Xyim12j0jq6CQAHpfdsa2VqieWF6eN8vT2MXxCxLAZhgVUyu5EEMevJyXML+XWTxVbZ7mLaKx5F/DZw==";
};
};
- "retry-request-5.0.1" = {
+ "retry-request-5.0.2" = {
name = "retry-request";
packageName = "retry-request";
- version = "5.0.1";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/retry-request/-/retry-request-5.0.1.tgz";
- sha512 = "lxFKrlBt0OZzCWh/V0uPEN0vlr3OhdeXnpeY5OES+ckslm791Cb1D5P7lJUSnY7J5hiCjcyaUGmzCnIGDCUBig==";
+ url = "https://registry.npmjs.org/retry-request/-/retry-request-5.0.2.tgz";
+ sha512 = "wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==";
};
};
"reusify-1.0.4" = {
@@ -61465,13 +61564,13 @@ let
sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==";
};
};
- "safe-stable-stringify-2.3.1" = {
+ "safe-stable-stringify-2.4.0" = {
name = "safe-stable-stringify";
packageName = "safe-stable-stringify";
- version = "2.3.1";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz";
- sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==";
+ url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.0.tgz";
+ sha512 = "eehKHKpab6E741ud7ZIMcXhKcP6TSIezPkNZhy5U8xC6+VvrRdUA2tMgxGxaGl4cz7c2Ew5+mg5+wNB16KQqrA==";
};
};
"safer-buffer-2.1.2" = {
@@ -62212,15 +62311,6 @@ let
sha512 = "GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==";
};
};
- "serialize-javascript-5.0.1" = {
- name = "serialize-javascript";
- packageName = "serialize-javascript";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz";
- sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==";
- };
- };
"serialize-javascript-6.0.0" = {
name = "serialize-javascript";
packageName = "serialize-javascript";
@@ -62833,13 +62923,13 @@ let
sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A==";
};
};
- "simple-git-3.14.0" = {
+ "simple-git-3.14.1" = {
name = "simple-git";
packageName = "simple-git";
- version = "3.14.0";
+ version = "3.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.0.tgz";
- sha512 = "Paad1BkrI7vWhImLybDRYOHnh3WPsHSKXJpmKM+iGjjKNV91XaOdd+yIdZ/gqdzncHDEKYff4k+74oNo1R+U8Q==";
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-3.14.1.tgz";
+ sha512 = "1ThF4PamK9wBORVGMK9HK5si4zoGS2GpRO7tkAFObA4FZv6dKaCVHLQT+8zlgiBm6K2h+wEU9yOaFCu/SR3OyA==";
};
};
"simple-markdown-0.4.4" = {
@@ -64372,15 +64462,6 @@ let
sha512 = "rjvqHFUaSGnzxDy2AHCwhHy6Zp6MNJzCPGYju4kD8yi6bze4d1/zMTg6C7JI49b7/EM7jKMTvyfN/4ylBKdwfw==";
};
};
- "sqlite3-5.0.11" = {
- name = "sqlite3";
- packageName = "sqlite3";
- version = "5.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.11.tgz";
- sha512 = "4akFOr7u9lJEeAWLJxmwiV43DJcGV7w3ab7SjQFAFaTVyknY3rZjvXTKIVtWqUoY4xwhjwoHKYs2HDW2SoHVsA==";
- };
- };
"sqlite3-5.0.2" = {
name = "sqlite3";
packageName = "sqlite3";
@@ -64390,6 +64471,15 @@ let
sha512 = "1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA==";
};
};
+ "sqlite3-5.1.1" = {
+ name = "sqlite3";
+ packageName = "sqlite3";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.1.tgz";
+ sha512 = "mMinkrQr/LKJqFiFF+AF7imPSzRCCpTCreusZO3D/ssJHVjZOrbu2Caz+zPH5KTmGGXBxXMGSRDssL+44CLxvg==";
+ };
+ };
"sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" = {
name = "sqlite3";
packageName = "sqlite3";
@@ -64445,22 +64535,22 @@ let
sha512 = "8K3qi9fIr6PYQCWWPDTijDThZ89tYRkIKO7xpS/kM8dDuDfx4FsBoMsBkgl8VOV3TB24UnAF0IbcxRBNL5Pf4w==";
};
};
- "ssb-bfe-3.5.0" = {
+ "ssb-bfe-3.6.0" = {
name = "ssb-bfe";
packageName = "ssb-bfe";
- version = "3.5.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-bfe/-/ssb-bfe-3.5.0.tgz";
- sha512 = "+ADruC6EESvo6HOb6c4jH9Ogz/ZI2+Zj7m6WVOmp2cEtdYpYbB4UcfuxXp82Gi653O+x8t0XGrfelAoRHtfnwQ==";
+ url = "https://registry.npmjs.org/ssb-bfe/-/ssb-bfe-3.6.0.tgz";
+ sha512 = "yvGFGZTWB0S/gMTI+CC2kQDveujid3Y4it829w6gES1BNw4QTfwyU/Rtkq2o01ITanZ2fvm3g7f0326yaNDZRg==";
};
};
- "ssb-bfe-spec-0.6.0" = {
+ "ssb-bfe-spec-0.7.0" = {
name = "ssb-bfe-spec";
packageName = "ssb-bfe-spec";
- version = "0.6.0";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-bfe-spec/-/ssb-bfe-spec-0.6.0.tgz";
- sha512 = "Wk0c7nRz0Lo3eWsSYvIkhg7sTnmre18MJAGiUSqJqFS6Gm2iGquj/BxozvLX4K5sRw9j4lIp2oQoHIGRoE48Xw==";
+ url = "https://registry.npmjs.org/ssb-bfe-spec/-/ssb-bfe-spec-0.7.0.tgz";
+ sha512 = "7Ab2lsbGXbVD0p8UQpqbekk7ENcioA8rmS+e1iMNhntROrR6ThdxS7TY8Q910UBNdtRKRXtDpqImA7fMN8W8LA==";
};
};
"ssb-blobs-1.2.2" = {
@@ -64598,13 +64688,13 @@ let
sha512 = "FPeyYU/3LpxcagnbmVWE+Q/qzg6keqeOBPbD7sEH9UKixUASeufPKiORDgh8nVX7J9Z+0vUaHt/WG999kGjvVQ==";
};
};
- "ssb-keys-8.4.1" = {
+ "ssb-keys-8.5.0" = {
name = "ssb-keys";
packageName = "ssb-keys";
- version = "8.4.1";
+ version = "8.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.4.1.tgz";
- sha512 = "1HnP80HaBoCawYOBYk6b91NWmrBULVDTbhfnuVfRmGUiT9vwlWKKvJmp2b7dthkHWpaQcI7Wu6+nGQK/YOFUJw==";
+ url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.5.0.tgz";
+ sha512 = "Fdgnz5QQ/oK/bMf5Hkaqss/INqiKHFHG4RKDk3StWrQC4fUKMSL/GfnkxFlcLFGhVomzxUmhtAnhJQx2WecEKQ==";
};
};
"ssb-links-3.0.10" = {
@@ -64787,13 +64877,13 @@ let
sha512 = "HkgRbZeFe3YhBLfv5C6AgJaz1ESlQ5MP7sAdRTpCYwU4wo0U+d/irvVUsnUimPq6FO/Zn6gmW8BiCk+JBv3rGw==";
};
};
- "ssb-uri2-2.0.2" = {
+ "ssb-uri2-2.1.0" = {
name = "ssb-uri2";
packageName = "ssb-uri2";
- version = "2.0.2";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-2.0.2.tgz";
- sha512 = "epjRE0lNfpfTPh2HeGQrIObdMHs6CJwYqPHJ8lVkM8irdGomcp9hU5eNUVzOrwqfFMeW36trNIRtDHEcMtJZQA==";
+ url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-2.1.0.tgz";
+ sha512 = "s7+gH8385NiWC8+P99TnW/t0tN+Wj5tZ9DJ8u7Ay8nkBPzNuOFvjk8o07P6QvHwLKa5tAh/pBCjv6QKIBI10vg==";
};
};
"ssb-validate-4.1.4" = {
@@ -66083,6 +66173,15 @@ let
sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==";
};
};
+ "strip-final-newline-3.0.0" = {
+ name = "strip-final-newline";
+ packageName = "strip-final-newline";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz";
+ sha512 = "dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==";
+ };
+ };
"strip-hex-prefix-1.0.0" = {
name = "strip-hex-prefix";
packageName = "strip-hex-prefix";
@@ -66389,13 +66488,13 @@ let
sha512 = "dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw==";
};
};
- "sucrase-3.26.0" = {
+ "sucrase-3.27.0" = {
name = "sucrase";
packageName = "sucrase";
- version = "3.26.0";
+ version = "3.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sucrase/-/sucrase-3.26.0.tgz";
- sha512 = "iWWppLcRrEwHaHefYJaJP9XQdRJO+tZfy/kDZizar5Ur1IK8XN48nwMFnDupXw2uvNtjWd8I58vVH42inBT/2Q==";
+ url = "https://registry.npmjs.org/sucrase/-/sucrase-3.27.0.tgz";
+ sha512 = "IjpEeFzOWCGrB/e2DnPawkFajW6ONFFgs+lQT1+Ts5Z5ZM9gPnxpDh0q8tu7HVLt6IfRiUTbSsjfhqjHOP/cwQ==";
};
};
"sudo-block-1.2.0" = {
@@ -66677,13 +66776,13 @@ let
sha512 = "sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==";
};
};
- "svelte2tsx-0.5.17" = {
+ "svelte2tsx-0.5.18" = {
name = "svelte2tsx";
packageName = "svelte2tsx";
- version = "0.5.17";
+ version = "0.5.18";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.17.tgz";
- sha512 = "4NAWuDhNu8AfBqivnbc9YZlWiHjLqoIPX6Fz2TwzzXM8a2qs3t6brAYa+C+vc2Gm5hNltDNJMmF0sC9D01PoCA==";
+ url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.18.tgz";
+ sha512 = "yhfEv1xvTYJZR/6Abygw09IH7uhAprKbar6Vk/YsfJyNcz4PQc/EHlG0LJbsm+FW8Us6ihZ9KJC4u+FnNW99lg==";
};
};
"sver-compat-1.5.0" = {
@@ -68928,15 +69027,6 @@ let
sha512 = "HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==";
};
};
- "ts-loader-8.4.0" = {
- name = "ts-loader";
- packageName = "ts-loader";
- version = "8.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ts-loader/-/ts-loader-8.4.0.tgz";
- sha512 = "6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==";
- };
- };
"ts-loader-9.2.6" = {
name = "ts-loader";
packageName = "ts-loader";
@@ -68946,22 +69036,22 @@ let
sha512 = "QMTC4UFzHmu9wU2VHZEmWWE9cUajjfcdcws+Gh7FhiO+Dy0RnR1bNz0YCHqhI0yRowCE9arVnNxYHqELOy9Hjw==";
};
};
- "ts-loader-9.3.1" = {
+ "ts-loader-9.4.0" = {
name = "ts-loader";
packageName = "ts-loader";
- version = "9.3.1";
+ version = "9.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.3.1.tgz";
- sha512 = "OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==";
+ url = "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.0.tgz";
+ sha512 = "0G3UMhk1bjgsgiwF4rnZRAeTi69j9XMDtmDDMghGSqlWESIAS3LFgJe//GYfE4vcjbyzuURLB9Us2RZIWp2clQ==";
};
};
- "ts-log-2.2.4" = {
+ "ts-log-2.2.5" = {
name = "ts-log";
packageName = "ts-log";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ts-log/-/ts-log-2.2.4.tgz";
- sha512 = "DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==";
+ url = "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz";
+ sha512 = "PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==";
};
};
"ts-morph-12.0.0" = {
@@ -70278,13 +70368,13 @@ let
sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==";
};
};
- "unicode-property-aliases-ecmascript-2.0.0" = {
+ "unicode-property-aliases-ecmascript-2.1.0" = {
name = "unicode-property-aliases-ecmascript";
packageName = "unicode-property-aliases-ecmascript";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz";
- sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==";
+ url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz";
+ sha512 = "6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==";
};
};
"unicode-trie-0.3.1" = {
@@ -71088,13 +71178,13 @@ let
sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==";
};
};
- "update-browserslist-db-1.0.8" = {
+ "update-browserslist-db-1.0.9" = {
name = "update-browserslist-db";
packageName = "update-browserslist-db";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.8.tgz";
- sha512 = "GHg7C4M7oJSJYW/ED/5QOJ7nL/E0lwTOBGsOorA7jqHr8ExUhPfwAotIAmdSw/LWv3SMLSNpzTAgeLG9zaZKTA==";
+ url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz";
+ sha512 = "/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==";
};
};
"update-check-1.5.2" = {
@@ -72771,15 +72861,6 @@ let
sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==";
};
};
- "vsce-1.88.0" = {
- name = "vsce";
- packageName = "vsce";
- version = "1.88.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vsce/-/vsce-1.88.0.tgz";
- sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw==";
- };
- };
"vsce-2.11.0" = {
name = "vsce";
packageName = "vsce";
@@ -72825,31 +72906,13 @@ let
sha512 = "DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg==";
};
};
- "vscode-css-languageservice-6.1.0" = {
+ "vscode-css-languageservice-6.1.1" = {
name = "vscode-css-languageservice";
packageName = "vscode-css-languageservice";
- version = "6.1.0";
+ version = "6.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.1.0.tgz";
- sha512 = "GFXmy6EVceVc/OPKENnoW31EiIksekz9yruczIAkA0eX5BSkNh/ojgeCzwW1ERRFpDymVZj0aLYKSrYZmvU6VA==";
- };
- };
- "vscode-debugadapter-testsupport-1.51.0" = {
- name = "vscode-debugadapter-testsupport";
- packageName = "vscode-debugadapter-testsupport";
- version = "1.51.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.51.0.tgz";
- sha512 = "rb8tfn7J3kxLi1rRhEyG5ggGkFcJH2WrYYrq6Vb1tDAcHoFXF580M1dAA2jPOrc0I14GuWxMnndvfGkfG10VxA==";
- };
- };
- "vscode-debugprotocol-1.51.0" = {
- name = "vscode-debugprotocol";
- packageName = "vscode-debugprotocol";
- version = "1.51.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.51.0.tgz";
- sha512 = "dzKWTMMyebIMPF1VYMuuQj7gGFq7guR8AFya0mKacu+ayptJfaRuM0mdHCqiOth4FnRP8mPhEroFPx6Ift8wHA==";
+ url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.1.1.tgz";
+ sha512 = "7d2NCq2plT0njAKmGZ11uof95y2fwbgq8QuToE3kX9uYQfVmejHX2/lFGKbK5AV5+Ja0L80UZoU0QspwqMKMHA==";
};
};
"vscode-emmet-helper-1.2.17" = {
@@ -72897,13 +72960,13 @@ let
sha512 = "dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw==";
};
};
- "vscode-html-languageservice-5.0.1" = {
+ "vscode-html-languageservice-5.0.2" = {
name = "vscode-html-languageservice";
packageName = "vscode-html-languageservice";
- version = "5.0.1";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.1.tgz";
- sha512 = "OYsyn5HGAhxs0OIG+M0jc34WnftLtD67Wg7+TfrYwvf0waOkkr13zUqtdrVm2JPNQ6fJx+qnuM+vTbq7o1dCdQ==";
+ url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.0.2.tgz";
+ sha512 = "TQmeyE14Ure/w/S+RV2IItuRWmw/i1QaS+om6t70iHCpamuTTWnACQPMSltVGm/DlbdyMquUePJREjd/h3AVkQ==";
};
};
"vscode-json-languageservice-3.11.0" = {
@@ -73401,13 +73464,22 @@ let
sha512 = "8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==";
};
};
- "vscode-uri-3.0.3" = {
+ "vscode-uri-3.0.4" = {
name = "vscode-uri";
packageName = "vscode-uri";
- version = "3.0.3";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz";
- sha512 = "EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==";
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.4.tgz";
+ sha512 = "aEmKD6H8Sg8gaQAUrnadG0BMeWXtiWhRsj1a94n2FYsMkDpgnK7BRVzZjOUYIvkv2B+bp5Bmt4ImZCpYbnJwkg==";
+ };
+ };
+ "vscode-uri-3.0.6" = {
+ name = "vscode-uri";
+ packageName = "vscode-uri";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.6.tgz";
+ sha512 = "fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==";
};
};
"vstream-0.1.0" = {
@@ -73869,13 +73941,13 @@ let
sha512 = "flC9JJmTII9uAeeYpWF8hxDJ7bfY+leldQryetll8Nv4WgI+MXc6h7TiyAZASWl9uC9TvmfdgOjZn1DAQecb3A==";
};
};
- "web3-utils-1.7.5" = {
+ "web3-utils-1.8.0" = {
name = "web3-utils";
packageName = "web3-utils";
- version = "1.7.5";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.7.5.tgz";
- sha512 = "9AqNOziQky4wNQadEwEfHiBdOZqopIHzQQVzmvvv6fJwDSMhP+khqmAZC7YTiGjs0MboyZ8tWNivqSO1699XQw==";
+ url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.8.0.tgz";
+ sha512 = "7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ==";
};
};
"webassemblyjs-1.11.1" = {
@@ -74409,15 +74481,6 @@ let
sha512 = "Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==";
};
};
- "wide-align-1.1.3" = {
- name = "wide-align";
- packageName = "wide-align";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
- sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
- };
- };
"wide-align-1.1.5" = {
name = "wide-align";
packageName = "wide-align";
@@ -74796,15 +74859,6 @@ let
sha512 = "P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==";
};
};
- "workerpool-6.1.0" = {
- name = "workerpool";
- packageName = "workerpool";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz";
- sha512 = "toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==";
- };
- };
"workerpool-6.2.1" = {
name = "workerpool";
packageName = "workerpool";
@@ -76441,15 +76495,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "14.2.2";
+ version = "14.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.2.tgz";
- sha512 = "oRsKFn8grq+mZrirDD2Ea0CFx5+eeb928ltI/B3ML7s3mOpTfhuuF04033TARY/UzcGsX31V2L9kORJXN30Ycw==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.3.tgz";
+ sha512 = "pFo/h3ImjebjKzdw6yWcaERSIzWsSu4eqH9qQ/dWD1ChkSph+krBw3+5Q+Kda5l3dLgl7mQXX6mC5u8IHTdvDg==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1402.2"
- sources."@angular-devkit/core-14.2.2"
- sources."@angular-devkit/schematics-14.2.2"
+ sources."@angular-devkit/architect-0.1402.3"
+ sources."@angular-devkit/core-14.2.3"
+ sources."@angular-devkit/schematics-14.2.3"
sources."@gar/promisify-1.1.3"
sources."@npmcli/fs-2.1.2"
sources."@npmcli/git-3.0.2"
@@ -76458,7 +76512,7 @@ in
sources."@npmcli/node-gyp-2.0.0"
sources."@npmcli/promise-spawn-3.0.0"
sources."@npmcli/run-script-4.2.1"
- sources."@schematics/angular-14.2.2"
+ sources."@schematics/angular-14.2.3"
sources."@tootallnate/once-2.0.0"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -76765,7 +76819,7 @@ in
sources."readable-stream-4.1.0"
sources."real-require-0.2.0"
sources."safe-buffer-5.2.1"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."secure-json-parse-2.5.0"
sources."sonic-boom-3.2.0"
sources."split2-4.1.0"
@@ -76964,7 +77018,7 @@ in
sources."require-from-string-2.0.2"
sources."resolve-options-1.1.0"
sources."safe-buffer-5.1.2"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."secure-json-parse-2.5.0"
sources."sha.js-2.4.11"
sources."should-proxy-1.0.4"
@@ -77027,10 +77081,10 @@ in
"@astrojs/language-server" = nodeEnv.buildNodePackage {
name = "_at_astrojs_slash_language-server";
packageName = "@astrojs/language-server";
- version = "0.24.1";
+ version = "0.26.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.24.1.tgz";
- sha512 = "+7D0540yq3PyTEJT/tI2TXX+yBOx9Nj+r1xeNCe+gA7/CcyqbR5SUqiLdPxbCa0GzszeyghP9cp4gGO7TEcTHQ==";
+ url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.26.2.tgz";
+ sha512 = "9nkfdd6CMXLDIJojnwbYu5XrYfOI+g63JlktOlpFCwFjFNpm1u0e/+pXXmj6Zs+PkSTo0kV1UM77dRKRS5OC1Q==";
};
dependencies = [
sources."@astrojs/compiler-0.23.5"
@@ -77069,15 +77123,15 @@ in
sources."synckit-0.7.3"
sources."tiny-glob-0.2.9"
sources."tslib-2.4.0"
- sources."vscode-css-languageservice-6.1.0"
- sources."vscode-html-languageservice-5.0.1"
+ sources."vscode-css-languageservice-6.1.1"
+ sources."vscode-html-languageservice-5.0.2"
sources."vscode-jsonrpc-8.0.2"
sources."vscode-languageserver-8.0.2"
sources."vscode-languageserver-protocol-3.17.2"
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.17.2"
sources."vscode-nls-5.2.0"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."which-2.0.2"
];
buildInputs = globalBuildInputs;
@@ -77156,7 +77210,7 @@ in
})
sources."data-urls-2.0.0"
sources."debug-4.3.4"
- sources."decimal.js-10.4.0"
+ sources."decimal.js-10.4.1"
sources."deep-equal-1.0.1"
sources."deep-is-0.1.4"
sources."define-lazy-prop-2.0.0"
@@ -77364,7 +77418,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -77406,7 +77460,7 @@ in
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-14.18.28"
+ sources."@types/node-14.18.29"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."JSONStream-1.3.5"
@@ -77429,7 +77483,7 @@ in
sources."conventional-changelog-angular-5.0.13"
sources."conventional-commits-parser-3.2.4"
sources."cosmiconfig-7.0.1"
- sources."cosmiconfig-typescript-loader-4.0.0"
+ sources."cosmiconfig-typescript-loader-4.1.0"
sources."create-require-1.1.1"
sources."cross-spawn-7.0.3"
sources."dargs-7.0.0"
@@ -77662,15 +77716,15 @@ in
];
})
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- sources."@babel/core-7.19.0"
+ sources."@babel/compat-data-7.19.1"
+ sources."@babel/core-7.19.1"
(sources."@babel/generator-7.19.0" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- sources."@babel/helper-compilation-targets-7.19.0"
+ sources."@babel/helper-compilation-targets-7.19.1"
sources."@babel/helper-create-class-features-plugin-7.19.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
@@ -77680,16 +77734,16 @@ in
sources."@babel/helper-module-transforms-7.19.0"
sources."@babel/helper-optimise-call-expression-7.18.6"
sources."@babel/helper-plugin-utils-7.19.0"
- sources."@babel/helper-replace-supers-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-numeric-separator-7.18.6"
sources."@babel/plugin-proposal-optional-chaining-7.18.9"
@@ -77698,11 +77752,12 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-typescript-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
- sources."@babel/plugin-transform-typescript-7.19.0"
+ sources."@babel/plugin-transform-typescript-7.19.1"
sources."@babel/preset-typescript-7.18.6"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
+ sources."@colors/colors-1.5.0"
sources."@discoveryjs/json-ext-0.5.7"
sources."@forge/api-2.7.0"
sources."@forge/auth-0.0.1"
@@ -77733,7 +77788,7 @@ in
sources."@types/estree-0.0.51"
sources."@types/html-minifier-terser-6.1.0"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/node-fetch-2.6.2"
sources."@typescript-eslint/types-3.10.1"
(sources."@typescript-eslint/typescript-estree-3.10.1" // {
@@ -77827,7 +77882,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-4.9.2"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
@@ -77847,7 +77902,7 @@ in
sources."tslib-2.4.0"
];
})
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."case-1.6.3"
sources."chainsaw-0.1.0"
sources."chalk-2.4.2"
@@ -77872,7 +77927,7 @@ in
sources."cli-color-2.0.3"
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.7.0"
- sources."cli-table3-0.6.2"
+ sources."cli-table3-0.6.3"
sources."cli-width-3.0.0"
sources."cliui-7.0.4"
sources."clone-1.0.4"
@@ -77954,7 +78009,7 @@ in
];
})
sources."duplexer3-0.1.5"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -78096,7 +78151,7 @@ in
sources."io-ts-2.2.18"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-core-module-2.10.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
@@ -78427,7 +78482,7 @@ in
})
sources."traverse-0.3.9"
sources."truncate-utf8-bytes-1.0.2"
- (sources."ts-loader-9.3.1" // {
+ (sources."ts-loader-9.4.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -78459,7 +78514,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
(sources."uri-js-4.4.1" // {
dependencies = [
sources."punycode-2.1.1"
@@ -78545,7 +78600,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -78562,7 +78617,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/normalize-package-data-2.4.1"
sources."@types/responselike-1.0.0"
sources."abort-controller-3.0.0"
@@ -78839,7 +78894,7 @@ in
sha512 = "tCI9Znr2FdQJREIvAFLpznskYOGigICd9wEA71Q7xHEka4RNlhKBZwzVCBH4NAPZoCLZbLYCDzW/7ursgi87Ew==";
};
dependencies = [
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@medable/mdctl-api-1.0.66"
sources."@medable/mdctl-api-driver-1.0.66"
sources."@medable/mdctl-axon-tools-1.0.66"
@@ -78874,7 +78929,7 @@ in
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -79096,7 +79151,7 @@ in
})
sources."fill-range-7.0.1"
sources."find-up-3.0.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-in-1.0.2"
sources."foreach-2.0.6"
sources."forever-agent-0.6.1"
@@ -79181,7 +79236,7 @@ in
sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."immediate-3.0.6"
- sources."inflection-1.13.2"
+ sources."inflection-1.13.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
@@ -79882,7 +79937,7 @@ in
];
})
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -79918,7 +79973,7 @@ in
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -79953,11 +80008,11 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.3"
@@ -79975,7 +80030,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enhanced-resolve-5.10.0"
@@ -80154,7 +80209,7 @@ in
sources."type-fest-0.21.3"
sources."typescript-4.8.3"
sources."universalify-2.0.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."watchpack-2.4.0"
@@ -80278,10 +80333,10 @@ in
"@tailwindcss/language-server" = nodeEnv.buildNodePackage {
name = "_at_tailwindcss_slash_language-server";
packageName = "@tailwindcss/language-server";
- version = "0.0.8";
+ version = "0.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@tailwindcss/language-server/-/language-server-0.0.8.tgz";
- sha512 = "WIGh9lImzgELxxY6Y9C2thtQH9caiH2/BD6ptCj7QQ2cowjcd9VjK46/V4LSC4vZH+kEM4itXNbKJznALD6rcA==";
+ url = "https://registry.npmjs.org/@tailwindcss/language-server/-/language-server-0.0.9.tgz";
+ sha512 = "x0rvJkO8TmwhJWjBH7z4Qn1SLaaYYtvY8Liw5SnMX62u6QuNZ0R0XU9P7nVQg+x0rxakC8oQgS2+wfYRNUyHgQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -80357,7 +80412,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."accepts-1.3.8"
sources."ansi-styles-4.3.0"
@@ -80365,7 +80420,7 @@ in
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."available-typed-arrays-1.0.5"
- sources."aws-sdk-2.1214.0"
+ sources."aws-sdk-2.1218.0"
sources."base64-js-1.5.1"
(sources."basic-auth-2.0.1" // {
dependencies = [
@@ -80474,7 +80529,7 @@ in
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-generator-function-1.0.10"
sources."is-nan-1.3.2"
@@ -80658,8 +80713,8 @@ in
sources."@apollographql/apollo-tools-0.5.4"
sources."@apollographql/graphql-playground-html-1.6.29"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- (sources."@babel/core-7.19.0" // {
+ sources."@babel/compat-data-7.19.1"
+ (sources."@babel/core-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -80671,7 +80726,7 @@ in
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.0" // {
+ (sources."@babel/helper-compilation-targets-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -80693,12 +80748,12 @@ in
sources."@babel/helper-optimise-call-expression-7.18.6"
sources."@babel/helper-plugin-utils-7.19.0"
sources."@babel/helper-remap-async-to-generator-7.18.9"
- sources."@babel/helper-replace-supers-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
sources."@babel/helpers-7.19.0"
@@ -80712,10 +80767,10 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.0"
+ sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -80766,7 +80821,7 @@ in
sources."@babel/plugin-transform-modules-commonjs-7.18.6"
sources."@babel/plugin-transform-modules-systemjs-7.19.0"
sources."@babel/plugin-transform-modules-umd-7.18.6"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
sources."@babel/plugin-transform-parameters-7.18.8"
@@ -80778,10 +80833,10 @@ in
sources."@babel/plugin-transform-sticky-regex-7.18.6"
sources."@babel/plugin-transform-template-literals-7.18.9"
sources."@babel/plugin-transform-typeof-symbol-7.18.9"
- sources."@babel/plugin-transform-typescript-7.19.0"
+ sources."@babel/plugin-transform-typescript-7.19.1"
sources."@babel/plugin-transform-unicode-escapes-7.18.10"
sources."@babel/plugin-transform-unicode-regex-7.18.6"
- (sources."@babel/preset-env-7.19.0" // {
+ (sources."@babel/preset-env-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -80798,7 +80853,7 @@ in
})
sources."@babel/runtime-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@graphql-tools/merge-8.3.1"
(sources."@graphql-tools/mock-8.7.6" // {
@@ -80852,7 +80907,7 @@ in
})
sources."@types/long-4.0.2"
sources."@types/mime-3.0.1"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -80914,7 +80969,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.5.3"
+ sources."babel-plugin-polyfill-corejs3-0.6.0"
sources."babel-plugin-polyfill-regenerator-0.4.1"
sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
@@ -80937,7 +80992,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -80955,7 +81010,7 @@ in
})
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."caw-2.0.1"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
@@ -81008,7 +81063,7 @@ in
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-compat-3.25.1"
+ sources."core-js-compat-3.25.2"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -81070,7 +81125,7 @@ in
sources."easy-stack-1.0.1"
sources."ee-first-1.1.1"
sources."ejs-3.1.8"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -81173,7 +81228,7 @@ in
sources."which-2.0.2"
];
})
- sources."flow-parser-0.186.0"
+ sources."flow-parser-0.187.0"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
@@ -81481,13 +81536,13 @@ in
sources."readable-stream-3.6.0"
sources."recast-0.20.5"
sources."regenerate-1.4.2"
- sources."regenerate-unicode-properties-10.0.1"
+ sources."regenerate-unicode-properties-10.1.0"
sources."regenerator-runtime-0.13.9"
sources."regenerator-transform-0.15.0"
sources."regex-not-1.0.2"
- sources."regexpu-core-5.1.0"
- sources."regjsgen-0.6.0"
- (sources."regjsparser-0.8.4" // {
+ sources."regexpu-core-5.2.1"
+ sources."regjsgen-0.7.1"
+ (sources."regjsparser-0.9.1" // {
dependencies = [
sources."jsesc-0.5.0"
];
@@ -81670,7 +81725,7 @@ in
sources."unicode-canonical-property-names-ecmascript-2.0.0"
sources."unicode-match-property-ecmascript-2.0.0"
sources."unicode-match-property-value-ecmascript-2.0.0"
- sources."unicode-property-aliases-ecmascript-2.0.0"
+ sources."unicode-property-aliases-ecmascript-2.1.0"
sources."union-value-1.0.1"
sources."universalify-2.0.0"
sources."unpipe-1.0.0"
@@ -81684,7 +81739,7 @@ in
sources."has-values-0.1.4"
];
})
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."urix-0.1.0"
sources."url-parse-lax-3.0.0"
sources."url-to-options-1.0.1"
@@ -81873,9 +81928,9 @@ in
sources."@babel/code-frame-7.18.6"
sources."@babel/generator-7.19.0"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/template-7.18.10"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.3.2"
@@ -81956,7 +82011,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
@@ -82437,14 +82492,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- sources."@babel/core-7.19.0"
+ sources."@babel/compat-data-7.19.1"
+ sources."@babel/core-7.19.1"
(sources."@babel/generator-7.19.0" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.0"
+ sources."@babel/helper-compilation-targets-7.19.1"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -82453,13 +82508,13 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -82473,8 +82528,8 @@ in
sources."async-3.2.4"
sources."balanced-match-1.0.2"
sources."brace-expansion-2.0.1"
- sources."browserslist-4.21.3"
- sources."caniuse-lite-1.0.30001399"
+ sources."browserslist-4.21.4"
+ sources."caniuse-lite-1.0.30001406"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -82484,7 +82539,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.4"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -82565,7 +82620,7 @@ in
sources."to-fast-properties-2.0.0"
sources."underscore-1.6.0"
sources."universalify-0.1.2"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."walk-sync-0.3.4"
sources."which-1.3.1"
sources."xml2js-0.2.8"
@@ -82638,7 +82693,7 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fresh-0.5.2"
@@ -82786,7 +82841,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -82864,22 +82919,22 @@ in
autoprefixer = nodeEnv.buildNodePackage {
name = "autoprefixer";
packageName = "autoprefixer";
- version = "10.4.9";
+ version = "10.4.11";
src = fetchurl {
- url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.9.tgz";
- sha512 = "Uu67eduPEmOeA0vyJby5ghu1AAELCCNSsLAjK+lz6kYzNM5sqnBO36MqfsjhPjQF/BaJM5U/UuFYyl7PavY/wQ==";
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.11.tgz";
+ sha512 = "5lHp6DgRodxlBLSkzHOTcufWFflH1ewfy2hvFQyjrblBFlP/0Yh4O/Wrg4ow8WRlN3AAUFFLAQwX8hTptzqVHg==";
};
dependencies = [
- sources."browserslist-4.21.3"
- sources."caniuse-lite-1.0.30001399"
- sources."electron-to-chromium-1.4.248"
+ sources."browserslist-4.21.4"
+ sources."caniuse-lite-1.0.30001406"
+ sources."electron-to-chromium-1.4.254"
sources."escalade-3.1.1"
sources."fraction.js-4.2.0"
sources."node-releases-2.0.6"
sources."normalize-range-0.1.2"
sources."picocolors-1.0.0"
sources."postcss-value-parser-4.2.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
];
buildInputs = globalBuildInputs;
meta = {
@@ -82901,7 +82956,7 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
@@ -82909,7 +82964,7 @@ in
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1214.0" // {
+ (sources."aws-sdk-2.1218.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -83015,7 +83070,7 @@ in
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
@@ -83156,10 +83211,10 @@ in
aws-cdk = nodeEnv.buildNodePackage {
name = "aws-cdk";
packageName = "aws-cdk";
- version = "2.41.0";
+ version = "2.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.41.0.tgz";
- sha512 = "Ubko4X8VcbaLzcXvCQZPKBtgwBq033m5sSWtdrbdlDp7s2J4uWtY6KdO1uYKAvHyWjm7kGVmDyL1Wj1zx3TPUg==";
+ url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.42.0.tgz";
+ sha512 = "BdkPhkj2PRkGSfsXh7kduUkJg+y234heWOaKzMEiauCt2Bj72wYwZhYG60TAFue7K7ngSjKzUeQ+G7SfKZcudg==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -83184,7 +83239,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -83644,10 +83699,10 @@ in
sources."@types/caseless-0.12.2"
sources."@types/connect-3.4.35"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.30"
+ sources."@types/express-serve-static-core-4.17.31"
sources."@types/long-4.0.2"
sources."@types/mime-3.0.1"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.8"
@@ -84113,7 +84168,7 @@ in
sources."rx-4.1.0"
sources."rxjs-7.5.6"
sources."safe-buffer-5.1.2"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."safer-buffer-2.1.2"
sources."sanitize-filename-1.6.3"
(sources."send-0.18.0" // {
@@ -84583,7 +84638,7 @@ in
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-core-module-2.10.0"
sources."is-date-object-1.0.5"
sources."is-generator-function-1.0.10"
@@ -84716,7 +84771,7 @@ in
sources."@socket.io/component-emitter-3.1.0"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."accepts-1.3.8"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -84781,7 +84836,7 @@ in
sources."ms-2.0.0"
];
})
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."fresh-0.5.2"
sources."fs-extra-3.0.1"
sources."fsevents-2.3.2"
@@ -84933,9 +84988,9 @@ in
dependencies = [
sources."@babel/code-frame-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/types-7.19.0"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
@@ -85056,7 +85111,7 @@ in
sources."map-obj-1.0.1"
];
})
- sources."decimal.js-10.4.0"
+ sources."decimal.js-10.4.1"
sources."delayed-stream-1.0.0"
sources."denque-1.5.1"
sources."depd-2.0.0"
@@ -85104,7 +85159,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
@@ -85401,7 +85456,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -85659,7 +85714,7 @@ in
sources."qs-6.5.3"
sources."query-string-1.0.1"
sources."queue-microtask-1.2.3"
- sources."queue-tick-1.0.0"
+ sources."queue-tick-1.0.1"
sources."random-access-file-2.2.1"
sources."random-access-storage-1.4.3"
sources."random-iterate-1.0.1"
@@ -86497,10 +86552,10 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "2.0.110";
+ version = "2.0.115";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.110.tgz";
- sha512 = "yr5qyJN3jLoAxWYtZ7EVNhl9vN/Qt03ZY2SpW9T9/yzrQu5czV1hEZ6dQsBUIx1jIMjPlmFelArNAiXfEPeOmw==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.115.tgz";
+ sha512 = "+12xjYoRYF6+bOuev12qwHjvRLPNVuO4xDaBbX52ok7Edq6w4ccfuLRwN6zftH5l6S/5cRY8qWLisuhZJY81ag==";
};
dependencies = [
sources."@jsii/check-node-1.67.0"
@@ -86517,8 +86572,8 @@ in
sources."braces-3.0.2"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdk8s-2.4.26"
- sources."cdk8s-plus-22-2.0.0-rc.111"
+ sources."cdk8s-2.4.31"
+ sources."cdk8s-plus-22-2.0.0-rc.123"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
@@ -86531,7 +86586,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-10.1.101"
+ sources."constructs-10.1.106"
sources."date-format-4.0.13"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
@@ -86585,14 +86640,14 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.673" // {
+ (sources."jsii-srcmak-0.1.679" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.3.121"
+ sources."json2jsii-0.3.127"
sources."jsonfile-6.1.0"
sources."locate-path-5.0.0"
sources."log4js-6.6.1"
@@ -86680,9 +86735,9 @@ in
sources."@babel/code-frame-7.18.6"
sources."@babel/generator-7.19.0"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/template-7.18.10"
sources."@babel/types-7.19.0"
sources."@cdktf/hcl2cdk-0.12.2"
@@ -86713,7 +86768,7 @@ in
sources."@sentry/node-6.19.7"
sources."@sentry/types-6.19.7"
sources."@sentry/utils-6.19.7"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/node-fetch-2.6.2"
sources."@types/yargs-17.0.12"
sources."@types/yargs-parser-21.0.0"
@@ -86748,7 +86803,7 @@ in
sources."combined-stream-1.0.8"
sources."commonmark-0.30.0"
sources."concat-map-0.0.1"
- sources."constructs-10.1.101"
+ sources."constructs-10.1.106"
sources."cookie-0.4.2"
sources."cross-spawn-7.0.3"
sources."date-format-4.0.13"
@@ -86860,7 +86915,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-srcmak-0.1.673" // {
+ (sources."jsii-srcmak-0.1.679" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -87041,7 +87096,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
@@ -87473,7 +87528,7 @@ in
sources."isexe-2.0.0"
sources."tslib-2.4.0"
sources."vscode-languageserver-textdocument-1.0.7"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."which-2.0.2"
];
buildInputs = globalBuildInputs;
@@ -87699,7 +87754,7 @@ in
sources."fast-diff-1.2.0"
sources."fb-watchman-2.0.1"
sources."flatted-3.2.7"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."fp-ts-2.12.3"
sources."fs-extra-8.1.0"
sources."fs-minipass-2.1.0"
@@ -87733,7 +87788,7 @@ in
sources."internal-slot-1.0.3"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-negative-zero-2.0.2"
@@ -87894,13 +87949,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.270";
+ version = "1.1.271";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.270.tgz";
- sha512 = "Js6tmneYGTRm8yiJzb7ncypvUUqPKM7OyND484BhILX+ZjH9q3luVnYKERmR8ZUa22iNWCy4AEl/hvh7ENZhQg==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.271.tgz";
+ sha512 = "tbfBTGm9rjKWC6QkcR4cbSU8O2NAniRqhoJ4lUYXIhseUCmqwxzyu2tR4dOf8sBn4gKfxjbDLM4ZskESbhB6cQ==";
};
dependencies = [
- sources."pyright-1.1.270"
+ sources."pyright-1.1.271"
];
buildInputs = globalBuildInputs;
meta = {
@@ -88143,14 +88198,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- sources."@babel/core-7.19.0"
+ sources."@babel/compat-data-7.19.1"
+ sources."@babel/core-7.19.1"
(sources."@babel/generator-7.19.0" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.0"
+ sources."@babel/helper-compilation-targets-7.19.1"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -88159,7 +88214,7 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
(sources."@babel/highlight-7.18.6" // {
@@ -88167,9 +88222,9 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -88205,11 +88260,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -88246,7 +88301,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -88450,7 +88505,7 @@ in
sources."unist-util-find-all-after-3.0.2"
sources."unist-util-is-4.1.0"
sources."unist-util-stringify-position-2.0.3"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
@@ -88589,7 +88644,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."ansi-styles-3.2.1"
sources."argparse-1.0.10"
@@ -88677,10 +88732,10 @@ in
coc-tsserver = nodeEnv.buildNodePackage {
name = "coc-tsserver";
packageName = "coc-tsserver";
- version = "1.11.7";
+ version = "1.11.9";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.11.7.tgz";
- sha512 = "xW8D5bKgZQm0Fp26SqAjzAKCIseRUe9JXMLcXCZz9mKh+PTWec4fxz4Uj9y01N0ZbURqmhWnxIqq+1APAlkuNg==";
+ url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.11.9.tgz";
+ sha512 = "Uai869DPQ8UO/LdylzVstihOJUNL0nQGnUnWxtvWeToksA/xLT8afK+bva/7XlYR1p+iQ7bf+VRtWzJJQVpivQ==";
};
dependencies = [
sources."typescript-4.8.3"
@@ -88723,7 +88778,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
@@ -89222,7 +89277,7 @@ in
sources."colors-1.4.0"
sources."commander-2.20.3"
sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."has-flag-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."log-symbols-2.2.0"
@@ -89265,7 +89320,7 @@ in
sources."cliui-7.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."date-fns-2.29.2"
+ sources."date-fns-2.29.3"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
sources."get-caller-file-2.0.5"
@@ -89319,7 +89374,7 @@ in
sources."eventemitter3-4.0.7"
sources."fecha-4.2.3"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."http-proxy-1.18.1"
sources."inherits-2.0.4"
sources."is-arrayish-0.3.2"
@@ -89332,7 +89387,7 @@ in
sources."readable-stream-3.6.0"
sources."requires-port-1.0.0"
sources."safe-buffer-5.2.1"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."simple-swizzle-0.2.2"
sources."stack-trace-0.0.10"
sources."strftime-0.10.1"
@@ -89364,7 +89419,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@hutson/parse-repository-url-3.0.2"
sources."@types/minimist-1.2.2"
@@ -90205,7 +90260,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -90345,7 +90400,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -90610,14 +90665,14 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "6.8.2";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-6.8.2.tgz";
- sha512 = "WHF8tQXetHgAjyG6f0rDhWXRQllSpZULOIuDZj6PeZyHubuObzsMsW0asDvL8j+EGKXr8NPo4J3vjxahYmSJ+w==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-6.10.0.tgz";
+ sha512 = "8+mqR+DZARwJgjlY7ioQ4dGxaZS0+hT08HwoIUvNoo7xjU2K8zJjGkKhAJxc672ux0wD6ovcDnBztTaR9QrhNA==";
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -90628,14 +90683,14 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@cspell/cspell-bundled-dicts-6.8.2"
- sources."@cspell/cspell-pipe-6.8.2"
- sources."@cspell/cspell-service-bus-6.8.2"
- sources."@cspell/cspell-types-6.8.2"
+ sources."@cspell/cspell-bundled-dicts-6.10.0"
+ sources."@cspell/cspell-pipe-6.10.0"
+ sources."@cspell/cspell-service-bus-6.10.0"
+ sources."@cspell/cspell-types-6.10.0"
sources."@cspell/dict-ada-2.0.1"
sources."@cspell/dict-aws-2.0.0"
sources."@cspell/dict-bash-2.0.4"
- sources."@cspell/dict-companies-2.0.13"
+ sources."@cspell/dict-companies-2.0.14"
sources."@cspell/dict-cpp-3.2.1"
sources."@cspell/dict-cryptocurrencies-2.0.0"
sources."@cspell/dict-csharp-3.0.1"
@@ -90669,10 +90724,10 @@ in
sources."@cspell/dict-ruby-2.0.2"
sources."@cspell/dict-rust-2.0.1"
sources."@cspell/dict-scala-2.0.0"
- sources."@cspell/dict-software-terms-2.2.7"
+ sources."@cspell/dict-software-terms-2.2.9"
sources."@cspell/dict-sql-1.0.4"
sources."@cspell/dict-swift-1.0.3"
- sources."@cspell/dict-typescript-2.0.1"
+ sources."@cspell/dict-typescript-2.0.2"
sources."@cspell/dict-vue-2.0.2"
sources."@types/parse-json-4.0.0"
sources."ansi-regex-5.0.1"
@@ -90693,12 +90748,12 @@ in
sources."core-util-is-1.0.3"
sources."cosmiconfig-7.0.1"
sources."crypto-random-string-2.0.0"
- sources."cspell-gitignore-6.8.2"
- sources."cspell-glob-6.8.2"
- sources."cspell-grammar-6.8.2"
- sources."cspell-io-6.8.2"
- sources."cspell-lib-6.8.2"
- sources."cspell-trie-lib-6.8.2"
+ sources."cspell-gitignore-6.10.0"
+ sources."cspell-glob-6.10.0"
+ sources."cspell-grammar-6.10.0"
+ sources."cspell-io-6.10.0"
+ sources."cspell-lib-6.10.0"
+ sources."cspell-trie-lib-6.10.0"
sources."dot-prop-5.3.0"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
@@ -90779,7 +90834,7 @@ in
sources."unique-string-2.0.0"
sources."universalify-2.0.0"
sources."vscode-languageserver-textdocument-1.0.7"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.4"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."wrappy-1.0.2"
@@ -91227,7 +91282,7 @@ in
sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."qs-6.5.3"
- sources."queue-tick-1.0.0"
+ sources."queue-tick-1.0.1"
sources."random-access-file-2.2.1"
sources."random-access-memory-3.1.4"
sources."random-access-storage-1.4.3"
@@ -91468,8 +91523,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- sources."@babel/core-7.19.0"
+ sources."@babel/compat-data-7.19.1"
+ sources."@babel/core-7.19.1"
(sources."@babel/generator-7.19.0" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
@@ -91477,7 +91532,7 @@ in
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- sources."@babel/helper-compilation-targets-7.19.0"
+ sources."@babel/helper-compilation-targets-7.19.1"
sources."@babel/helper-create-class-features-plugin-7.19.0"
sources."@babel/helper-create-regexp-features-plugin-7.19.0"
sources."@babel/helper-define-polyfill-provider-0.3.3"
@@ -91491,20 +91546,20 @@ in
sources."@babel/helper-optimise-call-expression-7.18.6"
sources."@babel/helper-plugin-utils-7.19.0"
sources."@babel/helper-remap-async-to-generator-7.18.9"
- sources."@babel/helper-replace-supers-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.0"
+ sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -91553,7 +91608,7 @@ in
sources."@babel/plugin-transform-modules-commonjs-7.18.6"
sources."@babel/plugin-transform-modules-systemjs-7.19.0"
sources."@babel/plugin-transform-modules-umd-7.18.6"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
sources."@babel/plugin-transform-parameters-7.18.8"
@@ -91571,16 +91626,16 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.18.9"
sources."@babel/plugin-transform-unicode-escapes-7.18.10"
sources."@babel/plugin-transform-unicode-regex-7.18.6"
- sources."@babel/preset-env-7.19.0"
+ sources."@babel/preset-env-7.19.1"
sources."@babel/preset-modules-0.1.5"
sources."@babel/preset-react-7.18.6"
sources."@babel/runtime-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@blueprintjs/colors-4.1.6"
- sources."@blueprintjs/core-4.9.4"
- sources."@blueprintjs/icons-4.4.2"
+ sources."@blueprintjs/core-4.10.1"
+ sources."@blueprintjs/icons-4.5.0"
sources."@deltachat/message_parser_wasm-0.4.0"
sources."@deltachat/react-qr-reader-4.0.0"
sources."@electron/get-1.14.1"
@@ -91613,10 +91668,10 @@ in
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
sources."@types/minimist-1.2.2"
- sources."@types/node-14.18.28"
+ sources."@types/node-14.18.29"
sources."@types/prop-types-15.7.5"
sources."@types/rc-1.2.1"
- sources."@types/react-17.0.49"
+ sources."@types/react-17.0.50"
sources."@types/react-dom-17.0.17"
sources."@types/react-window-1.8.5"
sources."@types/react-window-infinite-loader-1.0.6"
@@ -91642,7 +91697,7 @@ in
sources."atob-2.1.2"
sources."babel-plugin-dynamic-import-node-2.3.3"
sources."babel-plugin-polyfill-corejs2-0.3.3"
- sources."babel-plugin-polyfill-corejs3-0.5.3"
+ sources."babel-plugin-polyfill-corejs3-0.6.0"
sources."babel-plugin-polyfill-regenerator-0.4.1"
(sources."base-0.11.2" // {
dependencies = [
@@ -91657,7 +91712,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."cache-base-1.0.1"
@@ -91669,7 +91724,7 @@ in
})
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."capital-case-1.0.4"
sources."chalk-2.4.2"
sources."change-case-4.1.2"
@@ -91702,7 +91757,7 @@ in
sources."constant-case-3.0.4"
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
- sources."core-js-compat-3.25.1"
+ sources."core-js-compat-3.25.2"
sources."core-util-is-1.0.3"
sources."csscolorparser-1.0.3"
sources."csstype-3.1.1"
@@ -91722,12 +91777,12 @@ in
sources."dot-case-3.0.4"
sources."duplexer3-0.1.5"
sources."earcut-2.2.4"
- (sources."electron-18.3.12" // {
+ (sources."electron-18.3.13" // {
dependencies = [
- sources."@types/node-16.11.58"
+ sources."@types/node-16.11.59"
];
})
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -91976,14 +92031,14 @@ in
sources."readable-stream-2.3.7"
sources."readdirp-2.2.1"
sources."regenerate-1.4.2"
- sources."regenerate-unicode-properties-10.0.1"
+ sources."regenerate-unicode-properties-10.1.0"
sources."regenerator-runtime-0.13.9"
sources."regenerator-transform-0.15.0"
sources."regex-not-1.0.2"
sources."regexp.prototype.flags-1.4.3"
- sources."regexpu-core-5.1.0"
- sources."regjsgen-0.6.0"
- (sources."regjsparser-0.8.4" // {
+ sources."regexpu-core-5.2.1"
+ sources."regjsgen-0.7.1"
+ (sources."regjsparser-0.9.1" // {
dependencies = [
sources."jsesc-0.5.0"
];
@@ -92113,7 +92168,7 @@ in
sources."unicode-canonical-property-names-ecmascript-2.0.0"
sources."unicode-match-property-ecmascript-2.0.0"
sources."unicode-match-property-value-ecmascript-2.0.0"
- sources."unicode-property-aliases-ecmascript-2.0.0"
+ sources."unicode-property-aliases-ecmascript-2.1.0"
sources."union-value-1.0.1"
sources."universalify-0.1.2"
(sources."unset-value-1.0.0" // {
@@ -92127,7 +92182,7 @@ in
];
})
sources."upath-1.2.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."upper-case-2.0.2"
sources."upper-case-first-2.0.2"
sources."urix-0.1.0"
@@ -92301,7 +92356,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.28"
+ sources."@types/node-14.18.29"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -92491,7 +92546,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.10.0"
sources."abbrev-1.1.1"
@@ -93019,8 +93074,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- (sources."@babel/core-7.19.0" // {
+ sources."@babel/compat-data-7.19.1"
+ (sources."@babel/core-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -93031,7 +93086,7 @@ in
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- (sources."@babel/helper-compilation-targets-7.19.0" // {
+ (sources."@babel/helper-compilation-targets-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -93045,11 +93100,11 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-proposal-object-rest-spread-7.18.9"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -93057,7 +93112,7 @@ in
sources."@babel/plugin-transform-parameters-7.18.8"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -93082,13 +93137,13 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."caller-callsite-4.1.0"
sources."caller-path-3.0.1"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -93117,7 +93172,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -93242,7 +93297,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.25.0"
+ sources."react-devtools-core-4.26.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
@@ -93298,7 +93353,7 @@ in
sources."trim-newlines-3.0.1"
sources."type-fest-0.12.0"
sources."unicode-emoji-modifier-base-1.0.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."uri-js-4.4.1"
sources."validate-npm-package-license-3.0.4"
sources."which-1.3.1"
@@ -93350,7 +93405,7 @@ in
src = ../../applications/video/epgstation;
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -93387,10 +93442,10 @@ in
sources."@fluentui/foundation-legacy-8.2.20"
sources."@fluentui/keyboard-key-0.4.2"
sources."@fluentui/merge-styles-8.5.3"
- sources."@fluentui/react-8.94.4"
+ sources."@fluentui/react-8.96.0"
sources."@fluentui/react-focus-8.8.5"
sources."@fluentui/react-hooks-8.6.11"
- sources."@fluentui/react-portal-compat-context-9.0.1"
+ sources."@fluentui/react-portal-compat-context-9.0.2"
sources."@fluentui/react-window-provider-2.2.2"
sources."@fluentui/set-version-8.2.2"
sources."@fluentui/style-utilities-8.7.12"
@@ -93449,7 +93504,7 @@ in
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.30"
+ sources."@types/express-serve-static-core-4.17.31"
sources."@types/file-type-10.9.1"
sources."@types/js-yaml-4.0.4"
sources."@types/json-schema-7.0.11"
@@ -93961,7 +94016,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-in-1.0.2"
sources."for-own-1.0.0"
sources."forever-agent-0.6.1"
@@ -94343,7 +94398,7 @@ in
];
})
sources."mkdirp-1.0.4"
- sources."mongodb-4.9.1"
+ sources."mongodb-4.10.0"
sources."mongodb-connection-string-url-2.5.3"
(sources."morgan-1.10.0" // {
dependencies = [
@@ -94813,7 +94868,7 @@ in
sources."tough-cookie-2.5.0"
sources."tr46-3.0.0"
sources."ts-loader-9.2.6"
- sources."ts-log-2.2.4"
+ sources."ts-log-2.2.5"
(sources."ts-node-10.4.0" // {
dependencies = [
sources."acorn-8.8.0"
@@ -94965,7 +95020,7 @@ in
dependencies = [
sources."@achrinza/node-ipc-9.2.2"
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
(sources."@eslint/eslintrc-0.4.3" // {
dependencies = [
@@ -95004,8 +95059,8 @@ in
sources."@types/body-parser-1.19.2"
sources."@types/connect-3.4.35"
sources."@types/connect-history-api-fallback-1.3.5"
- sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.30"
+ sources."@types/express-4.17.14"
+ sources."@types/express-serve-static-core-4.17.31"
sources."@types/glob-7.2.0"
sources."@types/hls.js-0.13.3"
sources."@types/http-proxy-1.17.9"
@@ -95015,7 +95070,7 @@ in
sources."@types/mime-3.0.1"
sources."@types/minimatch-5.1.2"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
@@ -95289,7 +95344,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-4.9.2"
sources."buffer-from-1.1.2"
sources."buffer-indexof-1.1.1"
@@ -95331,7 +95386,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
@@ -95495,7 +95550,7 @@ in
})
sources."cyclist-1.0.1"
sources."dashdash-1.14.1"
- sources."date-fns-2.29.2"
+ sources."date-fns-2.29.3"
sources."de-indent-1.0.2"
sources."debug-4.3.4"
sources."decache-4.6.1"
@@ -95572,7 +95627,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -95748,7 +95803,7 @@ in
})
sources."flatted-3.2.7"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
(sources."fork-ts-checker-webpack-plugin-3.1.1" // {
@@ -95935,7 +95990,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-ci-1.2.1"
sources."is-color-stop-1.1.0"
sources."is-core-module-2.10.0"
@@ -96685,7 +96740,7 @@ in
];
})
sources."upath-1.2.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."upper-case-1.1.3"
sources."uri-js-4.4.1"
sources."urix-0.1.0"
@@ -97259,26 +97314,27 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helpers-7.19.0"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/runtime-7.9.0"
(sources."@babel/template-7.18.10" // {
dependencies = [
sources."@babel/code-frame-7.18.6"
];
})
- (sources."@babel/traverse-7.19.0" // {
+ (sources."@babel/traverse-7.19.1" // {
dependencies = [
sources."@babel/code-frame-7.18.6"
];
})
sources."@babel/types-7.19.0"
+ sources."@colors/colors-1.5.0"
sources."@expo/apple-utils-0.0.0-alpha.31"
sources."@expo/bunyan-4.0.0"
sources."@expo/config-6.0.24"
@@ -97365,7 +97421,7 @@ in
sources."@types/json-schema-7.0.11"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/q-1.5.5"
sources."@types/responselike-1.0.0"
sources."@types/retry-0.12.2"
@@ -97516,7 +97572,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-4.9.2"
sources."buffer-from-1.1.2"
sources."buffer-indexof-1.1.1"
@@ -97545,7 +97601,7 @@ in
})
sources."camelcase-6.3.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -97596,7 +97652,7 @@ in
sources."cli-boxes-2.2.1"
sources."cli-cursor-2.1.0"
sources."cli-spinners-2.7.0"
- sources."cli-table3-0.6.2"
+ sources."cli-table3-0.6.3"
(sources."cliui-5.0.0" // {
dependencies = [
sources."ansi-regex-4.1.1"
@@ -97795,7 +97851,7 @@ in
sources."duplexer3-0.1.5"
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -97928,7 +97984,7 @@ in
sources."find-up-5.0.0"
sources."find-yarn-workspace-root-2.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-in-1.0.2"
(sources."fork-ts-checker-webpack-plugin-4.1.6" // {
dependencies = [
@@ -98093,7 +98149,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-color-stop-1.1.0"
sources."is-core-module-2.10.0"
sources."is-data-descriptor-1.0.0"
@@ -98876,7 +98932,7 @@ in
sources."postcss-selector-parser-3.1.2"
];
})
- (sources."sucrase-3.26.0" // {
+ (sources."sucrase-3.27.0" // {
dependencies = [
sources."commander-4.1.1"
];
@@ -98997,7 +99053,7 @@ in
})
sources."untildify-3.0.3"
sources."upath-1.2.0"
- (sources."update-browserslist-db-1.0.8" // {
+ (sources."update-browserslist-db-1.0.9" // {
dependencies = [
sources."picocolors-1.0.0"
];
@@ -99255,15 +99311,15 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- sources."@babel/core-7.19.0"
+ sources."@babel/compat-data-7.19.1"
+ sources."@babel/core-7.19.1"
(sources."@babel/generator-7.19.0" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- sources."@babel/helper-compilation-targets-7.19.0"
+ sources."@babel/helper-compilation-targets-7.19.1"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -99273,11 +99329,11 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-proposal-object-rest-spread-7.18.9"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -99285,7 +99341,7 @@ in
sources."@babel/plugin-transform-parameters-7.18.8"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -99293,7 +99349,7 @@ in
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.15"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.10.0"
sources."@types/yoga-layout-1.9.2"
@@ -99312,7 +99368,7 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."caller-callsite-4.1.0"
@@ -99320,7 +99376,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -99345,7 +99401,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.981744"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -99442,7 +99498,7 @@ in
})
sources."quick-lru-4.0.1"
sources."react-17.0.2"
- sources."react-devtools-core-4.25.0"
+ sources."react-devtools-core-4.26.0"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
@@ -99502,7 +99558,7 @@ in
sources."trim-newlines-3.0.1"
sources."type-fest-0.12.0"
sources."unbzip2-stream-1.4.3"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
sources."webidl-conversions-3.0.1"
@@ -99703,7 +99759,7 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.13.0"
- sources."faunadb-4.6.0"
+ sources."faunadb-4.7.0"
(sources."figures-3.2.0" // {
dependencies = [
sources."escape-string-regexp-1.0.5"
@@ -99934,7 +99990,7 @@ in
sources."js-yaml-4.1.0"
];
})
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@colors/colors-1.5.0"
sources."@dabh/diagnostics-2.0.3"
sources."@gar/promisify-1.1.3"
@@ -99977,7 +100033,7 @@ in
sources."@types/long-4.0.2"
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
@@ -100092,7 +100148,7 @@ in
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.7.0"
sources."cli-table-0.3.11"
- sources."cli-table3-0.6.2"
+ sources."cli-table3-0.6.3"
sources."cli-width-3.0.0"
sources."cliui-7.0.4"
sources."clone-1.0.4"
@@ -100634,7 +100690,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
sources."retry-0.13.1"
- sources."retry-request-5.0.1"
+ sources."retry-request-5.0.2"
sources."rimraf-3.0.2"
(sources."router-1.3.7" // {
dependencies = [
@@ -100646,7 +100702,7 @@ in
sources."run-async-2.4.1"
sources."rxjs-7.5.6"
sources."safe-buffer-5.2.1"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."safer-buffer-2.1.2"
sources."semver-5.7.1"
(sources."semver-diff-3.1.1" // {
@@ -100885,7 +100941,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -101109,7 +101165,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.1"
sources."@types/inquirer-6.5.0"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -101297,7 +101353,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."verror-1.10.0"
- sources."web3-utils-1.7.5"
+ sources."web3-utils-1.8.0"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-module-2.0.0"
@@ -101525,7 +101581,7 @@ in
sources."is-binary-path-1.0.1"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -101655,7 +101711,7 @@ in
sources."rimraf-2.7.1"
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
(sources."set-value-2.0.1" // {
dependencies = [
sources."extend-shallow-2.0.1"
@@ -101857,8 +101913,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- (sources."@babel/core-7.19.0" // {
+ sources."@babel/compat-data-7.19.1"
+ (sources."@babel/core-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -101869,7 +101925,7 @@ in
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- (sources."@babel/helper-compilation-targets-7.19.0" // {
+ (sources."@babel/helper-compilation-targets-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -101883,11 +101939,11 @@ in
sources."@babel/helper-module-transforms-7.19.0"
sources."@babel/helper-optimise-call-expression-7.18.6"
sources."@babel/helper-plugin-utils-7.19.0"
- sources."@babel/helper-replace-supers-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
(sources."@babel/highlight-7.18.6" // {
@@ -101895,13 +101951,13 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-syntax-typescript-7.18.6"
- sources."@babel/plugin-transform-typescript-7.19.0"
+ sources."@babel/plugin-transform-typescript-7.19.1"
sources."@babel/preset-typescript-7.18.6"
sources."@babel/runtime-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
@@ -101934,7 +101990,7 @@ in
sources."@types/common-tags-1.8.1"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/node-fetch-2.6.2"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -101953,7 +102009,7 @@ in
sources."boolbase-1.0.0"
sources."boxen-5.1.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.2" // {
dependencies = [
@@ -101961,7 +102017,7 @@ in
];
})
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -102024,7 +102080,7 @@ in
sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.5"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
@@ -102141,7 +102197,7 @@ in
sources."minimatch-3.1.2"
sources."minimist-1.2.6"
sources."ms-2.1.2"
- sources."msgpackr-1.6.2"
+ sources."msgpackr-1.6.3"
sources."msgpackr-extract-2.1.2"
sources."mute-stream-0.0.8"
sources."nice-try-1.0.5"
@@ -102273,7 +102329,7 @@ in
sources."typedarray-to-buffer-3.1.5"
sources."unique-string-2.0.0"
sources."universalify-2.0.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."update-notifier-5.1.0"
sources."url-parse-lax-3.0.0"
sources."util-deprecate-1.0.2"
@@ -102331,7 +102387,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -102706,7 +102762,7 @@ in
dependencies = [
(sources."ssb-config-3.4.6" // {
dependencies = [
- sources."ssb-keys-8.4.1"
+ sources."ssb-keys-8.5.0"
];
})
];
@@ -102735,7 +102791,7 @@ in
sources."ssb-pull-requests-1.0.0"
sources."ssb-ref-2.16.0"
sources."ssb-typescript-2.8.0"
- sources."ssb-uri2-2.0.2"
+ sources."ssb-uri2-2.1.0"
(sources."stream-to-pull-stream-1.7.3" // {
dependencies = [
sources."looper-3.0.0"
@@ -102794,7 +102850,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -102905,7 +102961,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -103472,7 +103528,7 @@ in
dependencies = [
sources."@ardatan/aggregate-error-0.0.6"
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -103575,7 +103631,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -103770,7 +103826,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -104056,9 +104112,9 @@ in
sources."@ardatan/sync-fetch-0.0.1"
sources."@babel/code-frame-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/polyfill-7.12.1"
sources."@babel/types-7.19.0"
sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2"
@@ -104070,9 +104126,9 @@ in
sources."@graphql-tools/load-7.7.7"
sources."@graphql-tools/merge-8.3.6"
sources."@graphql-tools/schema-9.0.4"
- sources."@graphql-tools/url-loader-7.16.1"
+ sources."@graphql-tools/url-loader-7.16.2"
sources."@graphql-tools/utils-8.12.0"
- sources."@graphql-tools/wrap-9.2.0"
+ sources."@graphql-tools/wrap-9.2.1"
sources."@iarna/toml-2.2.5"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -104080,7 +104136,7 @@ in
sources."@peculiar/asn1-schema-2.3.0"
sources."@peculiar/json-schema-1.1.12"
sources."@peculiar/webcrypto-1.4.0"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."@whatwg-node/fetch-0.4.3"
@@ -104138,7 +104194,7 @@ in
})
sources."graphql-language-service-5.1.0"
sources."graphql-language-service-server-2.8.4"
- sources."graphql-ws-5.10.2"
+ sources."graphql-ws-5.11.1"
sources."has-flag-3.0.0"
sources."ignore-5.2.0"
(sources."import-fresh-3.3.0" // {
@@ -104205,7 +104261,7 @@ in
sources."vscode-languageserver-8.0.2"
sources."vscode-languageserver-protocol-3.17.2"
sources."vscode-languageserver-types-3.17.2"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."web-streams-polyfill-3.2.1"
sources."webcrypto-core-1.7.5"
sources."webidl-conversions-3.0.1"
@@ -104247,7 +104303,7 @@ in
dependencies = [
sources."@ardatan/sync-fetch-0.0.1"
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -104269,14 +104325,14 @@ in
sources."@graphql-tools/load-7.7.7"
sources."@graphql-tools/merge-8.3.6"
sources."@graphql-tools/schema-9.0.4"
- (sources."@graphql-tools/url-loader-7.16.1" // {
+ (sources."@graphql-tools/url-loader-7.16.2" // {
dependencies = [
sources."isomorphic-ws-5.0.0"
sources."ws-8.8.1"
];
})
sources."@graphql-tools/utils-8.12.0"
- sources."@graphql-tools/wrap-9.2.0"
+ sources."@graphql-tools/wrap-9.2.1"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/sourcemap-codec-1.4.14"
@@ -104321,7 +104377,7 @@ in
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
sources."@types/json-schema-7.0.9"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."@whatwg-node/fetch-0.4.3"
@@ -104383,7 +104439,7 @@ in
sources."cookie-signature-1.0.6"
sources."cosmiconfig-7.0.1"
sources."cosmiconfig-toml-loader-1.0.0"
- sources."cosmiconfig-typescript-loader-4.0.0"
+ sources."cosmiconfig-typescript-loader-4.1.0"
sources."create-require-1.1.1"
(sources."cross-spawn-6.0.5" // {
dependencies = [
@@ -104448,7 +104504,7 @@ in
sources."graphql-language-service-parser-1.10.4"
sources."graphql-language-service-types-1.8.7"
sources."graphql-language-service-utils-2.5.1"
- sources."graphql-ws-5.10.2"
+ sources."graphql-ws-5.11.1"
sources."has-flag-4.0.0"
sources."http-errors-1.6.3"
sources."hyperlinker-1.0.0"
@@ -104853,6 +104909,7 @@ in
sha512 = "LkZYdWebxn7qeQApnDN7Q50rwCg4raayL4DIQNPdhIyNKwwm3rbKHeX4+K4cV0SKBen7jVkY4s1c7aIdxGsF8A==";
};
dependencies = [
+ sources."@colors/colors-1.5.0"
sources."abbrev-1.1.1"
sources."ansi-escapes-5.0.0"
sources."ansi-regex-2.1.1"
@@ -104866,7 +104923,7 @@ in
sources."cardinal-2.1.1"
sources."chalk-1.1.3"
sources."charm-0.1.2"
- sources."cli-table3-0.6.2"
+ sources."cli-table3-0.6.3"
sources."core-util-is-1.0.3"
sources."drawille-blessed-contrib-1.0.0"
sources."drawille-canvas-blessed-contrib-0.1.3"
@@ -105897,7 +105954,7 @@ in
sources."corser-2.0.1"
sources."debug-3.2.7"
sources."eventemitter3-4.0.7"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.3"
sources."has-1.0.3"
@@ -106109,7 +106166,7 @@ in
sources."@colors/colors-1.5.0"
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.28"
+ sources."@types/node-14.18.29"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -106119,7 +106176,7 @@ in
sources."async-2.6.4"
sources."asynckit-0.4.0"
sources."available-typed-arrays-1.0.5"
- sources."aws-sdk-2.1214.0"
+ sources."aws-sdk-2.1218.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -106198,7 +106255,7 @@ in
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
@@ -106703,7 +106760,7 @@ in
sources."execa-5.1.1"
sources."exifr-7.1.3"
sources."fdir-5.2.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."form-data-4.0.0"
sources."get-stream-6.0.1"
sources."get-video-duration-4.1.0"
@@ -107056,7 +107113,7 @@ in
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.17.0-next.1"
sources."vscode-nls-5.2.0"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."wrappy-1.0.2"
sources."yallist-2.1.2"
];
@@ -107637,97 +107694,97 @@ in
sources."tslib-1.14.1"
];
})
- sources."@aws-sdk/abort-controller-3.168.0"
- sources."@aws-sdk/chunked-blob-reader-3.168.0"
- sources."@aws-sdk/chunked-blob-reader-native-3.168.0"
- (sources."@aws-sdk/client-s3-3.169.0" // {
+ sources."@aws-sdk/abort-controller-3.171.0"
+ sources."@aws-sdk/chunked-blob-reader-3.170.0"
+ sources."@aws-sdk/chunked-blob-reader-native-3.170.0"
+ (sources."@aws-sdk/client-s3-3.171.0" // {
dependencies = [
sources."fast-xml-parser-3.19.0"
];
})
- sources."@aws-sdk/client-sso-3.169.0"
- (sources."@aws-sdk/client-sts-3.169.0" // {
+ sources."@aws-sdk/client-sso-3.171.0"
+ (sources."@aws-sdk/client-sts-3.171.0" // {
dependencies = [
sources."fast-xml-parser-3.19.0"
];
})
- sources."@aws-sdk/config-resolver-3.168.0"
- sources."@aws-sdk/credential-provider-env-3.168.0"
- sources."@aws-sdk/credential-provider-imds-3.168.0"
- sources."@aws-sdk/credential-provider-ini-3.169.0"
- sources."@aws-sdk/credential-provider-node-3.169.0"
- sources."@aws-sdk/credential-provider-process-3.168.0"
- sources."@aws-sdk/credential-provider-sso-3.169.0"
- sources."@aws-sdk/credential-provider-web-identity-3.168.0"
- sources."@aws-sdk/eventstream-codec-3.168.0"
- sources."@aws-sdk/eventstream-serde-browser-3.168.0"
- sources."@aws-sdk/eventstream-serde-config-resolver-3.168.0"
- sources."@aws-sdk/eventstream-serde-node-3.168.0"
- sources."@aws-sdk/eventstream-serde-universal-3.168.0"
- sources."@aws-sdk/fetch-http-handler-3.168.0"
- sources."@aws-sdk/hash-blob-browser-3.168.0"
- sources."@aws-sdk/hash-node-3.168.0"
- sources."@aws-sdk/hash-stream-node-3.168.0"
- sources."@aws-sdk/invalid-dependency-3.168.0"
- sources."@aws-sdk/is-array-buffer-3.168.0"
- sources."@aws-sdk/md5-js-3.168.0"
- sources."@aws-sdk/middleware-bucket-endpoint-3.168.0"
- sources."@aws-sdk/middleware-content-length-3.168.0"
- sources."@aws-sdk/middleware-expect-continue-3.168.0"
- sources."@aws-sdk/middleware-flexible-checksums-3.168.0"
- sources."@aws-sdk/middleware-host-header-3.168.0"
- sources."@aws-sdk/middleware-location-constraint-3.168.0"
- sources."@aws-sdk/middleware-logger-3.168.0"
- sources."@aws-sdk/middleware-recursion-detection-3.168.0"
- (sources."@aws-sdk/middleware-retry-3.169.0" // {
+ sources."@aws-sdk/config-resolver-3.171.0"
+ sources."@aws-sdk/credential-provider-env-3.171.0"
+ sources."@aws-sdk/credential-provider-imds-3.171.0"
+ sources."@aws-sdk/credential-provider-ini-3.171.0"
+ sources."@aws-sdk/credential-provider-node-3.171.0"
+ sources."@aws-sdk/credential-provider-process-3.171.0"
+ sources."@aws-sdk/credential-provider-sso-3.171.0"
+ sources."@aws-sdk/credential-provider-web-identity-3.171.0"
+ sources."@aws-sdk/eventstream-codec-3.171.0"
+ sources."@aws-sdk/eventstream-serde-browser-3.171.0"
+ sources."@aws-sdk/eventstream-serde-config-resolver-3.171.0"
+ sources."@aws-sdk/eventstream-serde-node-3.171.0"
+ sources."@aws-sdk/eventstream-serde-universal-3.171.0"
+ sources."@aws-sdk/fetch-http-handler-3.171.0"
+ sources."@aws-sdk/hash-blob-browser-3.171.0"
+ sources."@aws-sdk/hash-node-3.171.0"
+ sources."@aws-sdk/hash-stream-node-3.171.0"
+ sources."@aws-sdk/invalid-dependency-3.171.0"
+ sources."@aws-sdk/is-array-buffer-3.170.0"
+ sources."@aws-sdk/md5-js-3.171.0"
+ sources."@aws-sdk/middleware-bucket-endpoint-3.171.0"
+ sources."@aws-sdk/middleware-content-length-3.171.0"
+ sources."@aws-sdk/middleware-expect-continue-3.171.0"
+ sources."@aws-sdk/middleware-flexible-checksums-3.171.0"
+ sources."@aws-sdk/middleware-host-header-3.171.0"
+ sources."@aws-sdk/middleware-location-constraint-3.171.0"
+ sources."@aws-sdk/middleware-logger-3.171.0"
+ sources."@aws-sdk/middleware-recursion-detection-3.171.0"
+ (sources."@aws-sdk/middleware-retry-3.171.0" // {
dependencies = [
sources."uuid-8.3.2"
];
})
- sources."@aws-sdk/middleware-sdk-s3-3.168.0"
- sources."@aws-sdk/middleware-sdk-sts-3.168.0"
- sources."@aws-sdk/middleware-serde-3.168.0"
- sources."@aws-sdk/middleware-signing-3.168.0"
- sources."@aws-sdk/middleware-ssec-3.168.0"
- sources."@aws-sdk/middleware-stack-3.168.0"
- sources."@aws-sdk/middleware-user-agent-3.168.0"
- sources."@aws-sdk/node-config-provider-3.168.0"
- sources."@aws-sdk/node-http-handler-3.168.0"
- sources."@aws-sdk/property-provider-3.168.0"
- sources."@aws-sdk/protocol-http-3.168.0"
- sources."@aws-sdk/querystring-builder-3.168.0"
- sources."@aws-sdk/querystring-parser-3.168.0"
- sources."@aws-sdk/s3-request-presigner-3.169.0"
- sources."@aws-sdk/service-error-classification-3.168.0"
- sources."@aws-sdk/shared-ini-file-loader-3.168.0"
- sources."@aws-sdk/signature-v4-3.168.0"
- sources."@aws-sdk/signature-v4-multi-region-3.168.0"
- sources."@aws-sdk/smithy-client-3.168.0"
- sources."@aws-sdk/types-3.168.0"
- sources."@aws-sdk/url-parser-3.168.0"
- sources."@aws-sdk/util-arn-parser-3.168.0"
- sources."@aws-sdk/util-base64-browser-3.168.0"
- sources."@aws-sdk/util-base64-node-3.168.0"
- sources."@aws-sdk/util-body-length-browser-3.168.0"
- sources."@aws-sdk/util-body-length-node-3.168.0"
- sources."@aws-sdk/util-buffer-from-3.168.0"
- sources."@aws-sdk/util-config-provider-3.168.0"
- sources."@aws-sdk/util-create-request-3.168.0"
- sources."@aws-sdk/util-defaults-mode-browser-3.168.0"
- sources."@aws-sdk/util-defaults-mode-node-3.168.0"
- sources."@aws-sdk/util-format-url-3.168.0"
- sources."@aws-sdk/util-hex-encoding-3.168.0"
- sources."@aws-sdk/util-locate-window-3.168.0"
- sources."@aws-sdk/util-middleware-3.168.0"
- sources."@aws-sdk/util-stream-browser-3.168.0"
- sources."@aws-sdk/util-stream-node-3.168.0"
- sources."@aws-sdk/util-uri-escape-3.168.0"
- sources."@aws-sdk/util-user-agent-browser-3.168.0"
- sources."@aws-sdk/util-user-agent-node-3.168.0"
- sources."@aws-sdk/util-utf8-browser-3.168.0"
- sources."@aws-sdk/util-utf8-node-3.168.0"
- sources."@aws-sdk/util-waiter-3.168.0"
- sources."@aws-sdk/xml-builder-3.168.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.171.0"
+ sources."@aws-sdk/middleware-sdk-sts-3.171.0"
+ sources."@aws-sdk/middleware-serde-3.171.0"
+ sources."@aws-sdk/middleware-signing-3.171.0"
+ sources."@aws-sdk/middleware-ssec-3.171.0"
+ sources."@aws-sdk/middleware-stack-3.171.0"
+ sources."@aws-sdk/middleware-user-agent-3.171.0"
+ sources."@aws-sdk/node-config-provider-3.171.0"
+ sources."@aws-sdk/node-http-handler-3.171.0"
+ sources."@aws-sdk/property-provider-3.171.0"
+ sources."@aws-sdk/protocol-http-3.171.0"
+ sources."@aws-sdk/querystring-builder-3.171.0"
+ sources."@aws-sdk/querystring-parser-3.171.0"
+ sources."@aws-sdk/s3-request-presigner-3.173.0"
+ sources."@aws-sdk/service-error-classification-3.171.0"
+ sources."@aws-sdk/shared-ini-file-loader-3.171.0"
+ sources."@aws-sdk/signature-v4-3.171.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.171.0"
+ sources."@aws-sdk/smithy-client-3.171.0"
+ sources."@aws-sdk/types-3.171.0"
+ sources."@aws-sdk/url-parser-3.171.0"
+ sources."@aws-sdk/util-arn-parser-3.170.0"
+ sources."@aws-sdk/util-base64-browser-3.170.0"
+ sources."@aws-sdk/util-base64-node-3.170.0"
+ sources."@aws-sdk/util-body-length-browser-3.170.0"
+ sources."@aws-sdk/util-body-length-node-3.170.0"
+ sources."@aws-sdk/util-buffer-from-3.170.0"
+ sources."@aws-sdk/util-config-provider-3.170.0"
+ sources."@aws-sdk/util-create-request-3.171.0"
+ sources."@aws-sdk/util-defaults-mode-browser-3.171.0"
+ sources."@aws-sdk/util-defaults-mode-node-3.171.0"
+ sources."@aws-sdk/util-format-url-3.171.0"
+ sources."@aws-sdk/util-hex-encoding-3.170.0"
+ sources."@aws-sdk/util-locate-window-3.170.0"
+ sources."@aws-sdk/util-middleware-3.171.0"
+ sources."@aws-sdk/util-stream-browser-3.171.0"
+ sources."@aws-sdk/util-stream-node-3.171.0"
+ sources."@aws-sdk/util-uri-escape-3.170.0"
+ sources."@aws-sdk/util-user-agent-browser-3.171.0"
+ sources."@aws-sdk/util-user-agent-node-3.171.0"
+ sources."@aws-sdk/util-utf8-browser-3.170.0"
+ sources."@aws-sdk/util-utf8-node-3.170.0"
+ sources."@aws-sdk/util-waiter-3.171.0"
+ sources."@aws-sdk/xml-builder-3.170.0"
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.1"
sources."@gar/promisify-1.1.3"
@@ -107837,7 +107894,7 @@ in
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1214.0" // {
+ (sources."aws-sdk-2.1218.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-8.0.0"
@@ -108058,7 +108115,7 @@ in
sources."file-type-10.11.0"
sources."fill-range-7.0.1"
sources."find-up-2.1.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."font-awesome-filetypes-2.1.0"
sources."for-each-0.3.3"
sources."for-each-property-0.0.4"
@@ -108179,7 +108236,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -108506,7 +108563,7 @@ in
sources."source-map-url-0.4.1"
sources."split-skip-0.0.2"
sources."sprintf-js-1.1.2"
- (sources."sqlite3-5.0.11" // {
+ (sources."sqlite3-5.1.1" // {
dependencies = [
sources."chownr-2.0.0"
sources."fs-minipass-2.1.0"
@@ -108734,7 +108791,7 @@ in
sha512 = "8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg==";
};
dependencies = [
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@types/linkify-it-3.0.2"
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
@@ -109910,7 +109967,7 @@ in
})
sources."fill-range-7.0.1"
sources."find-up-3.0.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."form-data-3.0.1"
sources."fs-extra-8.1.0"
sources."function-bind-1.1.1"
@@ -110064,7 +110121,7 @@ in
sources."@socket.io/component-emitter-3.1.0"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -110116,7 +110173,7 @@ in
];
})
sources."flatted-3.2.7"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -110238,8 +110295,8 @@ in
sources."@ampproject/remapping-2.2.0"
sources."@babel/cli-7.18.10"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- (sources."@babel/core-7.19.0" // {
+ sources."@babel/compat-data-7.19.1"
+ (sources."@babel/core-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -110250,7 +110307,7 @@ in
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- (sources."@babel/helper-compilation-targets-7.19.0" // {
+ (sources."@babel/helper-compilation-targets-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -110264,17 +110321,17 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/node-7.18.10"
- sources."@babel/parser-7.19.0"
+ sources."@babel/node-7.19.1"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/register-7.18.9"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -110363,12 +110420,12 @@ in
sources."braces-3.0.2"
sources."browser-or-node-1.3.0"
sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."bytes-3.1.2"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."chalk-2.4.2"
sources."chardet-1.4.0"
sources."chownr-1.1.4"
@@ -110397,7 +110454,7 @@ in
sources."convert-source-map-1.8.0"
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
@@ -110416,7 +110473,7 @@ in
];
})
sources."debug-4.3.4"
- sources."decimal.js-10.4.0"
+ sources."decimal.js-10.4.1"
sources."decode-uri-component-0.2.0"
sources."decompress-response-4.2.1"
sources."deep-extend-0.6.0"
@@ -110436,7 +110493,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -110475,7 +110532,7 @@ in
})
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -110549,7 +110606,7 @@ in
})
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-core-module-2.9.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
@@ -110770,7 +110827,7 @@ in
sources."unbox-primitive-1.0.2"
sources."universalify-0.2.0"
sources."unpipe-1.0.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."url-parse-1.5.10"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
@@ -111441,7 +111498,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -111576,8 +111633,8 @@ in
sources."@npmcli/package-json-2.0.0"
sources."@npmcli/promise-spawn-3.0.0"
sources."@npmcli/run-script-4.2.1"
- sources."@nrwl/cli-14.7.5"
- sources."@nrwl/tao-14.7.5"
+ sources."@nrwl/cli-14.7.6"
+ sources."@nrwl/tao-14.7.6"
sources."@octokit/auth-token-3.0.1"
sources."@octokit/core-4.0.5"
(sources."@octokit/endpoint-7.0.2" // {
@@ -111586,11 +111643,11 @@ in
];
})
sources."@octokit/graphql-5.0.1"
- sources."@octokit/openapi-types-13.9.1"
+ sources."@octokit/openapi-types-13.12.0"
sources."@octokit/plugin-enterprise-rest-6.0.1"
- sources."@octokit/plugin-paginate-rest-4.2.3"
+ sources."@octokit/plugin-paginate-rest-4.3.1"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-6.5.2"
+ sources."@octokit/plugin-rest-endpoint-methods-6.6.2"
(sources."@octokit/request-6.2.1" // {
dependencies = [
sources."is-plain-object-5.0.0"
@@ -111598,7 +111655,7 @@ in
})
sources."@octokit/request-error-3.0.1"
sources."@octokit/rest-19.0.4"
- sources."@octokit/types-7.3.1"
+ sources."@octokit/types-7.5.0"
sources."@parcel/watcher-2.0.4"
sources."@tootallnate/once-2.0.0"
sources."@types/json5-0.0.29"
@@ -112000,7 +112057,7 @@ in
})
sources."npm-run-path-4.0.1"
sources."npmlog-6.0.2"
- (sources."nx-14.7.5" // {
+ (sources."nx-14.7.6" // {
dependencies = [
sources."chalk-4.1.0"
sources."cli-spinners-2.6.1"
@@ -113156,7 +113213,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.5"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -114062,7 +114119,7 @@ in
sha512 = "pE81Zfvni1qMAhqW4RkpwJ2L7Y5OFs+svSWq6cW5IQHWR8Dd8BBZL4p93GgqiVoLPTJ2heGVBKZFsgA2RPR6ng==";
};
dependencies = [
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."balanced-match-1.0.2"
@@ -114401,7 +114458,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -114415,15 +114472,11 @@ in
sources."@jest/environment-27.5.1"
sources."@jest/fake-timers-27.5.1"
sources."@jest/types-27.5.1"
- (sources."@ledgerhq/devices-7.0.0" // {
- dependencies = [
- sources."@ledgerhq/logs-6.10.0"
- ];
- })
- sources."@ledgerhq/errors-6.10.1"
- sources."@ledgerhq/hw-transport-6.27.3"
- sources."@ledgerhq/hw-transport-node-hid-6.27.3"
- sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.3"
+ sources."@ledgerhq/devices-7.0.1"
+ sources."@ledgerhq/errors-6.10.2"
+ sources."@ledgerhq/hw-transport-6.27.4"
+ sources."@ledgerhq/hw-transport-node-hid-6.27.4"
+ sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.4"
(sources."@ledgerhq/hw-transport-u2f-5.36.0-deprecated" // {
dependencies = [
sources."@ledgerhq/devices-5.51.1"
@@ -114448,7 +114501,7 @@ in
sources."@ledgerhq/logs-5.50.0"
];
})
- sources."@ledgerhq/logs-6.10.1-nightly.0"
+ sources."@ledgerhq/logs-6.10.0"
sources."@segment/loosely-validate-event-2.0.0"
sources."@sindresorhus/is-0.14.0"
sources."@sinonjs/commons-1.8.3"
@@ -114457,7 +114510,7 @@ in
sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/stack-utils-2.0.1"
sources."@types/yargs-16.0.4"
sources."@types/yargs-parser-21.0.0"
@@ -114551,7 +114604,7 @@ in
sources."file-uri-to-path-1.0.0"
sources."fill-range-7.0.1"
sources."flagged-respawn-1.0.1"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."form-data-4.0.0"
sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
@@ -114813,7 +114866,7 @@ in
sources."one-time-1.0.0"
sources."readable-stream-3.6.0"
sources."safe-buffer-5.2.1"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."semver-7.3.7"
sources."simple-swizzle-0.2.2"
sources."stack-trace-0.0.10"
@@ -115424,7 +115477,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -115540,7 +115593,7 @@ in
sources."express-session-1.17.3"
sources."fast-deep-equal-3.1.3"
sources."finalhandler-1.2.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."form-data-4.0.0"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -115988,10 +116041,10 @@ in
nodemon = nodeEnv.buildNodePackage {
name = "nodemon";
packageName = "nodemon";
- version = "2.0.19";
+ version = "2.0.20";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz";
- sha512 = "4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz";
+ sha512 = "Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -116050,7 +116103,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -116076,7 +116129,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-3.0.0"
@@ -116570,10 +116623,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "8.19.1";
+ version = "8.19.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-8.19.1.tgz";
- sha512 = "FtWzipzng+NmtTQDXSCvA9D7H4d7vkA7ciahmY89fGK/Eo95pbnKn0hatEUfomj1jUDEXvAEi/tKiQ2nrAc7Jg==";
+ url = "https://registry.npmjs.org/npm/-/npm-8.19.2.tgz";
+ sha512 = "MWkISVv5f7iZbfNkry5/5YBqSYJEDAKSJdL+uzSQuyLg+hgLQUyZynu3SH6bOZlvR9ZvJYk2EiJO6B1r+ynwHg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -116588,10 +116641,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "16.1.2";
+ version = "16.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.1.2.tgz";
- sha512 = "6ZnDkrGkQQ+tnCeMXIO7sxdTWwXiodzO02sOtyZzj9HbJqAf4qY0wdmTEkG7wBNggwlIksVxgyjCzSejMdv6qg==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.1.3.tgz";
+ sha512 = "cjFV+Mb5I5rZWVElJugp1cArdzlHQy6Tzi+1i6T72nzLNFN10x7OjA7iQXgFpqeN+U5Zwv8u0/XVCEWM9KxqhQ==";
};
dependencies = [
sources."@gar/promisify-1.1.3"
@@ -116610,11 +116663,6 @@ in
sources."@sindresorhus/is-5.3.0"
sources."@szmarczak/http-timer-5.0.1"
sources."@tootallnate/once-2.0.0"
- sources."@types/cacheable-request-6.0.2"
- sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
- sources."@types/responselike-3.0.0"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
sources."agentkeepalive-4.2.1"
@@ -116645,13 +116693,7 @@ in
];
})
sources."cacheable-lookup-6.1.0"
- (sources."cacheable-request-7.0.2" // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- sources."responselike-2.0.1"
- ];
- })
+ sources."cacheable-request-10.1.2"
sources."camelcase-7.0.0"
sources."chalk-5.0.1"
sources."chownr-2.0.0"
@@ -116659,7 +116701,6 @@ in
sources."clean-stack-2.2.0"
sources."cli-boxes-3.0.0"
sources."cli-table-0.3.11"
- sources."clone-response-1.0.3"
sources."color-support-1.1.3"
sources."colors-1.0.3"
sources."commander-9.4.0"
@@ -116691,7 +116732,6 @@ in
sources."eastasianwidth-0.2.0"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
- sources."end-of-stream-1.4.4"
sources."env-paths-2.2.1"
sources."err-code-2.0.3"
sources."escape-goat-4.0.0"
@@ -116717,7 +116757,7 @@ in
sources."glob-parent-5.1.2"
sources."global-dirs-3.0.0"
sources."globby-11.1.0"
- sources."got-12.4.1"
+ sources."got-12.5.0"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
sources."has-unicode-2.0.1"
@@ -116771,7 +116811,7 @@ in
sources."make-fetch-happen-10.2.1"
sources."merge2-1.4.1"
sources."micromatch-4.0.5"
- sources."mimic-response-1.0.1"
+ sources."mimic-response-4.0.0"
sources."minimatch-5.1.0"
sources."minimist-1.2.6"
sources."minipass-3.3.5"
@@ -116788,7 +116828,7 @@ in
sources."node-gyp-9.1.0"
sources."nopt-5.0.0"
sources."normalize-package-data-4.0.1"
- sources."normalize-url-6.1.0"
+ sources."normalize-url-7.1.0"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-5.0.0"
sources."npm-normalize-package-bin-1.0.1"
@@ -116825,7 +116865,6 @@ in
sources."promise-retry-2.0.1"
sources."prompts-ncu-2.5.1"
sources."proto-list-1.2.4"
- sources."pump-3.0.0"
sources."pupa-3.1.0"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
@@ -116888,6 +116927,7 @@ in
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
sources."unique-string-3.0.0"
+ sources."untildify-4.0.0"
sources."update-notifier-6.0.2"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
@@ -117067,10 +117107,10 @@ in
orval = nodeEnv.buildNodePackage {
name = "orval";
packageName = "orval";
- version = "6.9.6";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/orval/-/orval-6.9.6.tgz";
- sha512 = "PbZguPW/4jvIfbkpCGeTxmOjgiMazYYSNNBE568trC9LhCqve4/B8tzEczg4sxJpJNQPBVnpAZyKwkYe3E5/tA==";
+ url = "https://registry.npmjs.org/orval/-/orval-6.10.0.tgz";
+ sha512 = "N+ihf8ug+GWqlKG0FlTe0a7tHnXYoSmV/rI3HsCElCUwVCA0JOf28zwgtwafEHJGk4q9QF8iQhGZKsqvYRED6A==";
};
dependencies = [
sources."@apidevtools/json-schema-ref-parser-9.0.6"
@@ -117078,12 +117118,13 @@ in
sources."@apidevtools/swagger-methods-3.0.2"
sources."@apidevtools/swagger-parser-10.1.0"
sources."@asyncapi/specs-2.14.0"
- sources."@esbuild/linux-loong64-0.14.54"
+ sources."@esbuild/android-arm-0.15.8"
+ sources."@esbuild/linux-loong64-0.15.8"
sources."@exodus/schemasafe-1.0.0-rc.7"
- sources."@ibm-cloud/openapi-ruleset-0.32.3"
+ sources."@ibm-cloud/openapi-ruleset-0.37.3"
sources."@jsdevtools/ono-7.1.3"
- sources."@jsep-plugin/regex-1.0.2"
- sources."@jsep-plugin/ternary-1.1.2"
+ sources."@jsep-plugin/regex-1.0.3"
+ sources."@jsep-plugin/ternary-1.1.3"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -117115,7 +117156,11 @@ in
sources."fast-glob-3.2.7"
];
})
- sources."@stoplight/spectral-core-1.14.1"
+ (sources."@stoplight/spectral-core-1.14.1" // {
+ dependencies = [
+ sources."@stoplight/types-13.6.0"
+ ];
+ })
sources."@stoplight/spectral-formats-1.2.0"
sources."@stoplight/spectral-functions-1.7.1"
sources."@stoplight/spectral-parsers-1.0.2"
@@ -117132,14 +117177,14 @@ in
sources."@stoplight/types-12.5.0"
];
})
- sources."@stoplight/types-13.6.0"
+ sources."@stoplight/types-13.7.0"
sources."@stoplight/yaml-4.2.3"
sources."@stoplight/yaml-ast-parser-0.0.48"
sources."@tootallnate/once-1.1.2"
sources."@types/es-aggregate-error-1.0.2"
sources."@types/estree-0.0.39"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/urijs-1.19.19"
sources."abort-controller-3.0.0"
sources."acorn-8.8.0"
@@ -117214,27 +117259,28 @@ in
sources."es-aggregate-error-1.0.8"
sources."es-to-primitive-1.2.1"
sources."es6-promise-3.3.1"
- sources."esbuild-0.14.54"
- sources."esbuild-android-64-0.14.54"
- sources."esbuild-android-arm64-0.14.54"
- sources."esbuild-darwin-64-0.14.54"
- sources."esbuild-darwin-arm64-0.14.54"
- sources."esbuild-freebsd-64-0.14.54"
- sources."esbuild-freebsd-arm64-0.14.54"
- sources."esbuild-linux-32-0.14.54"
- sources."esbuild-linux-64-0.14.54"
- sources."esbuild-linux-arm-0.14.54"
- sources."esbuild-linux-arm64-0.14.54"
- sources."esbuild-linux-mips64le-0.14.54"
- sources."esbuild-linux-ppc64le-0.14.54"
- sources."esbuild-linux-riscv64-0.14.54"
- sources."esbuild-linux-s390x-0.14.54"
- sources."esbuild-netbsd-64-0.14.54"
- sources."esbuild-openbsd-64-0.14.54"
- sources."esbuild-sunos-64-0.14.54"
- sources."esbuild-windows-32-0.14.54"
- sources."esbuild-windows-64-0.14.54"
- sources."esbuild-windows-arm64-0.14.54"
+ sources."esbuild-0.15.8"
+ sources."esbuild-android-64-0.15.8"
+ sources."esbuild-android-arm64-0.15.8"
+ sources."esbuild-darwin-64-0.15.8"
+ sources."esbuild-darwin-arm64-0.15.8"
+ sources."esbuild-freebsd-64-0.15.8"
+ sources."esbuild-freebsd-arm64-0.15.8"
+ sources."esbuild-linux-32-0.15.8"
+ sources."esbuild-linux-64-0.15.8"
+ sources."esbuild-linux-arm-0.15.8"
+ sources."esbuild-linux-arm64-0.15.8"
+ sources."esbuild-linux-mips64le-0.15.8"
+ sources."esbuild-linux-ppc64le-0.15.8"
+ sources."esbuild-linux-riscv64-0.15.8"
+ sources."esbuild-linux-s390x-0.15.8"
+ sources."esbuild-netbsd-64-0.15.8"
+ sources."esbuild-openbsd-64-0.15.8"
+ sources."esbuild-sunos-64-0.15.8"
+ sources."esbuild-wasm-0.15.8"
+ sources."esbuild-windows-32-0.15.8"
+ sources."esbuild-windows-64-0.15.8"
+ sources."esbuild-windows-arm64-0.15.8"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.14.3"
@@ -117282,7 +117328,7 @@ in
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
sources."globalthis-1.0.3"
- sources."globby-11.0.4"
+ sources."globby-11.1.0"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
sources."has-bigints-1.0.2"
@@ -117295,7 +117341,7 @@ in
sources."http2-client-1.3.5"
sources."https-proxy-agent-5.0.1"
sources."human-signals-2.1.0"
- (sources."ibm-openapi-validator-0.83.3" // {
+ (sources."ibm-openapi-validator-0.88.3" // {
dependencies = [
sources."find-up-3.0.0"
sources."locate-path-3.0.0"
@@ -117316,7 +117362,7 @@ in
sources."is-bigint-1.0.4"
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-core-module-2.10.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
@@ -117337,7 +117383,7 @@ in
sources."isarray-0.0.1"
sources."isexe-2.0.0"
sources."js-yaml-3.14.1"
- sources."jsep-1.3.6"
+ sources."jsep-1.3.7"
sources."json-dup-key-validator-1.0.3"
(sources."json-schema-ref-parser-5.1.3" // {
dependencies = [
@@ -117385,17 +117431,29 @@ in
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."oas-kit-common-1.0.8"
- sources."oas-linter-3.2.2"
- sources."oas-resolver-2.5.6"
+ (sources."oas-linter-3.2.2" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
+ (sources."oas-resolver-2.5.6" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
sources."oas-schema-walker-1.1.5"
- sources."oas-validator-5.0.8"
+ (sources."oas-validator-5.0.8" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
sources."object-inspect-1.12.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.4"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."ono-4.0.11"
- sources."openapi3-ts-2.0.2"
+ sources."openapi3-ts-3.0.2"
sources."optionator-0.8.3"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
@@ -117473,7 +117531,11 @@ in
sources."strip-final-newline-2.0.0"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."swagger2openapi-7.0.8"
+ (sources."swagger2openapi-7.0.8" // {
+ dependencies = [
+ sources."yaml-1.10.2"
+ ];
+ })
sources."text-table-0.2.0"
sources."through-2.3.8"
sources."tmp-0.0.33"
@@ -117512,7 +117574,7 @@ in
sources."xregexp-2.0.0"
sources."y18n-5.0.8"
sources."yallist-3.1.1"
- sources."yaml-1.10.2"
+ sources."yaml-2.1.1"
sources."yaml-js-0.2.3"
sources."yargs-17.3.1"
sources."yargs-parser-21.1.1"
@@ -117539,8 +117601,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- (sources."@babel/core-7.19.0" // {
+ sources."@babel/compat-data-7.19.1"
+ (sources."@babel/core-7.19.1" // {
dependencies = [
sources."json5-2.2.1"
sources."semver-6.3.0"
@@ -117553,7 +117615,7 @@ in
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.0" // {
+ (sources."@babel/helper-compilation-targets-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -117575,20 +117637,20 @@ in
sources."@babel/helper-optimise-call-expression-7.18.6"
sources."@babel/helper-plugin-utils-7.19.0"
sources."@babel/helper-remap-async-to-generator-7.18.9"
- sources."@babel/helper-replace-supers-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.0"
+ sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -117639,7 +117701,7 @@ in
sources."@babel/plugin-transform-modules-commonjs-7.18.6"
sources."@babel/plugin-transform-modules-systemjs-7.19.0"
sources."@babel/plugin-transform-modules-umd-7.18.6"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
sources."@babel/plugin-transform-parameters-7.18.8"
@@ -117654,7 +117716,7 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.18.9"
sources."@babel/plugin-transform-unicode-escapes-7.18.10"
sources."@babel/plugin-transform-unicode-regex-7.18.6"
- (sources."@babel/preset-env-7.19.0" // {
+ (sources."@babel/preset-env-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -117662,7 +117724,7 @@ in
sources."@babel/preset-modules-0.1.5"
sources."@babel/runtime-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/gen-mapping-0.1.1"
@@ -117734,7 +117796,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.5.3"
+ sources."babel-plugin-polyfill-corejs3-0.6.0"
sources."babel-plugin-polyfill-regenerator-0.4.1"
(sources."babel-runtime-6.26.0" // {
dependencies = [
@@ -117779,7 +117841,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -117796,7 +117858,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -117822,7 +117884,7 @@ in
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- sources."core-js-compat-3.25.1"
+ sources."core-js-compat-3.25.2"
sources."core-util-is-1.0.3"
sources."cosmiconfig-5.2.1"
(sources."create-ecdh-4.0.4" // {
@@ -117929,7 +117991,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -118074,7 +118136,7 @@ in
sources."is-binary-path-1.0.1"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-color-stop-1.1.0"
sources."is-core-module-2.10.0"
(sources."is-data-descriptor-1.0.0" // {
@@ -118346,7 +118408,7 @@ in
})
sources."readdirp-2.2.1"
sources."regenerate-1.4.2"
- sources."regenerate-unicode-properties-10.0.1"
+ sources."regenerate-unicode-properties-10.1.0"
sources."regenerator-runtime-0.13.9"
sources."regenerator-transform-0.15.0"
(sources."regex-not-1.0.2" // {
@@ -118356,9 +118418,9 @@ in
];
})
sources."regexp.prototype.flags-1.4.3"
- sources."regexpu-core-5.1.0"
- sources."regjsgen-0.6.0"
- (sources."regjsparser-0.8.4" // {
+ sources."regexpu-core-5.2.1"
+ sources."regjsgen-0.7.1"
+ (sources."regjsparser-0.9.1" // {
dependencies = [
sources."jsesc-0.5.0"
];
@@ -118501,7 +118563,7 @@ in
sources."unicode-canonical-property-names-ecmascript-2.0.0"
sources."unicode-match-property-ecmascript-2.0.0"
sources."unicode-match-property-value-ecmascript-2.0.0"
- sources."unicode-property-aliases-ecmascript-2.0.0"
+ sources."unicode-property-aliases-ecmascript-2.1.0"
sources."unicode-trie-0.3.1"
sources."union-value-1.0.1"
sources."uniq-1.0.1"
@@ -118519,7 +118581,7 @@ in
];
})
sources."upath-1.2.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."uri-js-4.4.1"
sources."urix-0.1.0"
(sources."url-0.11.0" // {
@@ -118581,7 +118643,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
@@ -118644,7 +118706,7 @@ in
sources."@parcel/runtime-js-2.7.0"
sources."@parcel/runtime-react-refresh-2.7.0"
sources."@parcel/runtime-service-worker-2.7.0"
- sources."@parcel/source-map-2.1.0"
+ sources."@parcel/source-map-2.1.1"
sources."@parcel/transformer-babel-2.7.0"
sources."@parcel/transformer-css-2.7.0"
(sources."@parcel/transformer-html-2.7.0" // {
@@ -118684,10 +118746,10 @@ in
sources."ansi-styles-3.2.1"
sources."base-x-3.0.9"
sources."boolbase-1.0.0"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -118718,7 +118780,7 @@ in
sources."domutils-2.8.0"
sources."dotenv-7.0.0"
sources."dotenv-expand-5.1.0"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."entities-3.0.1"
sources."error-ex-1.3.2"
sources."escalade-3.1.1"
@@ -118734,19 +118796,19 @@ in
sources."js-tokens-4.0.0"
sources."json-parse-even-better-errors-2.3.1"
sources."json5-2.2.1"
- sources."lightningcss-1.14.0"
- sources."lightningcss-darwin-arm64-1.14.0"
- sources."lightningcss-darwin-x64-1.14.0"
- sources."lightningcss-linux-arm-gnueabihf-1.14.0"
- sources."lightningcss-linux-arm64-gnu-1.14.0"
- sources."lightningcss-linux-arm64-musl-1.14.0"
- sources."lightningcss-linux-x64-gnu-1.14.0"
- sources."lightningcss-linux-x64-musl-1.14.0"
- sources."lightningcss-win32-x64-msvc-1.14.0"
+ sources."lightningcss-1.15.1"
+ sources."lightningcss-darwin-arm64-1.15.1"
+ sources."lightningcss-darwin-x64-1.15.1"
+ sources."lightningcss-linux-arm-gnueabihf-1.15.1"
+ sources."lightningcss-linux-arm64-gnu-1.15.1"
+ sources."lightningcss-linux-arm64-musl-1.15.1"
+ sources."lightningcss-linux-x64-gnu-1.15.1"
+ sources."lightningcss-linux-x64-musl-1.15.1"
+ sources."lightningcss-win32-x64-msvc-1.15.1"
sources."lines-and-columns-1.2.4"
sources."lmdb-2.5.2"
sources."mdn-data-2.0.14"
- sources."msgpackr-1.6.2"
+ sources."msgpackr-1.6.3"
sources."msgpackr-extract-2.1.2"
sources."node-addon-api-4.3.0"
sources."node-gyp-build-4.5.0"
@@ -118783,7 +118845,7 @@ in
sources."timsort-0.3.0"
sources."tslib-2.4.0"
sources."type-fest-0.20.2"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."utility-types-3.10.0"
sources."v8-compile-cache-2.3.0"
sources."weak-lru-cache-1.2.2"
@@ -119381,7 +119443,7 @@ in
sources."process-nextick-args-2.0.1"
sources."pump-2.0.1"
sources."queue-microtask-1.2.3"
- sources."queue-tick-1.0.0"
+ sources."queue-tick-1.0.1"
sources."random-access-file-2.2.1"
sources."random-access-storage-1.4.3"
sources."random-iterate-1.0.1"
@@ -119746,7 +119808,7 @@ in
sources."punycode-2.1.1"
sources."qs-6.10.3"
sources."queue-microtask-1.2.3"
- sources."queue-tick-1.0.0"
+ sources."queue-tick-1.0.1"
sources."random-access-file-2.2.1"
sources."random-access-storage-1.4.3"
sources."random-bytes-1.0.0"
@@ -119883,7 +119945,7 @@ in
};
dependencies = [
sources."@babel/generator-7.18.2"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/parser-7.18.4"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.3.2"
@@ -120150,7 +120212,7 @@ in
sources."fclone-1.0.11"
sources."file-uri-to-path-2.0.0"
sources."fill-range-7.0.1"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -120294,10 +120356,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "7.11.0";
+ version = "7.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-7.11.0.tgz";
- sha512 = "cxh4TfCE8L4ZbLBN72kTGKTYP7X08nrIzoQ2rQCKihAcIHAdNIgsk4bEJyE1xHjE+bNJt9skwr7aJv3LpvUawQ==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-7.12.0.tgz";
+ sha512 = "Zc38WaMNkomazbIFl5nq2TR1e97R4iG+G7f9QKUL+YHbHOnkOYV3UuR45xYPhhpn1ArLfTpxjxmRu1H3gn6SPw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -120604,14 +120666,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- sources."@babel/core-7.19.0"
+ sources."@babel/compat-data-7.19.1"
+ sources."@babel/core-7.19.1"
(sources."@babel/generator-7.19.0" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.0"
+ sources."@babel/helper-compilation-targets-7.19.1"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -120620,13 +120682,13 @@ in
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@istanbuljs/load-nyc-config-1.1.0"
sources."@istanbuljs/schema-0.1.3"
@@ -120645,10 +120707,10 @@ in
sources."argparse-1.0.10"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."caching-transform-4.0.0"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."chalk-2.4.2"
sources."clean-stack-2.2.0"
sources."cliui-6.0.0"
@@ -120661,7 +120723,7 @@ in
sources."debug-4.3.4"
sources."decamelize-1.2.0"
sources."default-require-extensions-3.0.0"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."emoji-regex-8.0.0"
sources."es6-error-4.1.1"
sources."escalade-3.1.1"
@@ -120750,7 +120812,7 @@ in
sources."to-fast-properties-2.0.0"
sources."type-fest-0.8.1"
sources."typedarray-to-buffer-3.1.5"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."uuid-8.3.2"
sources."vscode-jsonrpc-8.0.2"
sources."vscode-languageserver-8.0.2"
@@ -121218,7 +121280,7 @@ in
sources."define-lazy-prop-2.0.0"
sources."duplexer3-0.1.5"
sources."end-of-stream-1.4.4"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."fs-extra-10.1.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.3"
@@ -121293,10 +121355,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.270";
+ version = "1.1.271";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.270.tgz";
- sha512 = "9SmZfgAhByPeMk0AAb41lAXENjoC1gGXKCP4qaexGAEu9pOYSUMQFgNTyRzKizafa6LtIBGGhgSaJrpWZyBn7w==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.271.tgz";
+ sha512 = "46QQLQLT5U+wmKqG9R193loBASqqcIZYwWrwTCWNTHIRYTxEbaHwGWDlmX19R3lmlIBDu9I9m5MyPmYs/2v5dg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -121583,7 +121645,7 @@ in
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.2"
@@ -121657,8 +121719,8 @@ in
sources."@ampproject/remapping-2.2.0"
sources."@babel/cli-7.18.10"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.0"
- (sources."@babel/core-7.19.0" // {
+ sources."@babel/compat-data-7.19.1"
+ (sources."@babel/core-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -121670,7 +121732,7 @@ in
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.0" // {
+ (sources."@babel/helper-compilation-targets-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -121692,20 +121754,20 @@ in
sources."@babel/helper-optimise-call-expression-7.18.6"
sources."@babel/helper-plugin-utils-7.19.0"
sources."@babel/helper-remap-async-to-generator-7.18.9"
- sources."@babel/helper-replace-supers-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.18.6"
sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
sources."@babel/helpers-7.19.0"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.0"
+ sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -121756,7 +121818,7 @@ in
sources."@babel/plugin-transform-modules-commonjs-7.18.6"
sources."@babel/plugin-transform-modules-systemjs-7.19.0"
sources."@babel/plugin-transform-modules-umd-7.18.6"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.0"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
sources."@babel/plugin-transform-parameters-7.18.8"
@@ -121767,7 +121829,7 @@ in
sources."@babel/plugin-transform-react-pure-annotations-7.18.6"
sources."@babel/plugin-transform-regenerator-7.18.6"
sources."@babel/plugin-transform-reserved-words-7.18.6"
- (sources."@babel/plugin-transform-runtime-7.18.10" // {
+ (sources."@babel/plugin-transform-runtime-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -121779,7 +121841,7 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.18.9"
sources."@babel/plugin-transform-unicode-escapes-7.18.10"
sources."@babel/plugin-transform-unicode-regex-7.18.6"
- (sources."@babel/preset-env-7.19.0" // {
+ (sources."@babel/preset-env-7.19.1" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -121790,7 +121852,7 @@ in
sources."@babel/register-7.18.9"
sources."@babel/runtime-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -121802,7 +121864,7 @@ in
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.11"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -121901,7 +121963,7 @@ in
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.5.3"
+ sources."babel-plugin-polyfill-corejs3-0.6.0"
sources."babel-plugin-polyfill-regenerator-0.4.1"
sources."babel-plugin-transform-react-remove-prop-types-0.4.24"
sources."babel-plugin-universal-import-4.0.2"
@@ -121961,7 +122023,7 @@ in
];
})
sources."browserify-zlib-0.1.4"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -121995,7 +122057,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -122075,7 +122137,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- sources."core-js-compat-3.25.1"
+ sources."core-js-compat-3.25.2"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."cosmiconfig-6.0.0"
@@ -122212,7 +122274,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -122349,7 +122411,7 @@ in
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
@@ -122512,7 +122574,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-color-stop-1.1.0"
sources."is-core-module-2.10.0"
sources."is-data-descriptor-1.0.0"
@@ -122932,16 +122994,16 @@ in
sources."readable-stream-2.3.7"
sources."readdirp-3.6.0"
sources."regenerate-1.4.2"
- sources."regenerate-unicode-properties-10.0.1"
+ sources."regenerate-unicode-properties-10.1.0"
sources."regenerator-runtime-0.13.9"
sources."regenerator-transform-0.15.0"
sources."regex-not-1.0.2"
sources."regexp.prototype.flags-1.4.3"
- sources."regexpu-core-5.1.0"
+ sources."regexpu-core-5.2.1"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
- sources."regjsgen-0.6.0"
- (sources."regjsparser-0.8.4" // {
+ sources."regjsgen-0.7.1"
+ (sources."regjsparser-0.9.1" // {
dependencies = [
sources."jsesc-0.5.0"
];
@@ -123248,7 +123310,7 @@ in
sources."unicode-canonical-property-names-ecmascript-2.0.0"
sources."unicode-match-property-ecmascript-2.0.0"
sources."unicode-match-property-value-ecmascript-2.0.0"
- sources."unicode-property-aliases-ecmascript-2.0.0"
+ sources."unicode-property-aliases-ecmascript-2.1.0"
sources."union-value-1.0.1"
sources."uniq-1.0.1"
sources."uniqs-2.0.0"
@@ -123268,7 +123330,7 @@ in
];
})
sources."upath-1.2.0"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."update-check-1.5.2"
sources."upper-case-1.1.3"
sources."uri-js-4.4.1"
@@ -123514,7 +123576,7 @@ in
];
})
sources."debug-4.3.4"
- sources."decimal.js-10.4.0"
+ sources."decimal.js-10.4.1"
sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
sources."domexception-4.0.0"
@@ -123602,12 +123664,12 @@ in
sources."@babel/helper-module-imports-7.18.6"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.18.10"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.0"
+ sources."@babel/parser-7.19.1"
sources."@babel/runtime-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.0"
+ sources."@babel/traverse-7.19.1"
sources."@babel/types-7.19.0"
sources."@emotion/is-prop-valid-1.2.0"
sources."@emotion/memoize-0.8.0"
@@ -123619,12 +123681,12 @@ in
sources."@jridgewell/set-array-1.1.2"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.15"
- sources."@redocly/ajv-8.6.5"
- sources."@redocly/openapi-core-1.0.0-beta.108"
+ sources."@redocly/ajv-8.11.0"
+ sources."@redocly/openapi-core-1.0.0-beta.109"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/json-schema-7.0.11"
- sources."@types/node-14.18.28"
+ sources."@types/node-14.18.29"
sources."ansi-align-3.0.1"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
@@ -124548,14 +124610,14 @@ in
sources."@types/json-schema-7.0.11"
sources."@types/node-14.17.34"
sources."@types/vscode-1.66.0"
- sources."@typescript-eslint/eslint-plugin-5.37.0"
- sources."@typescript-eslint/parser-5.37.0"
- sources."@typescript-eslint/scope-manager-5.37.0"
- sources."@typescript-eslint/type-utils-5.37.0"
- sources."@typescript-eslint/types-5.37.0"
- sources."@typescript-eslint/typescript-estree-5.37.0"
- sources."@typescript-eslint/utils-5.37.0"
- sources."@typescript-eslint/visitor-keys-5.37.0"
+ sources."@typescript-eslint/eslint-plugin-5.38.0"
+ sources."@typescript-eslint/parser-5.38.0"
+ sources."@typescript-eslint/scope-manager-5.38.0"
+ sources."@typescript-eslint/type-utils-5.38.0"
+ sources."@typescript-eslint/types-5.38.0"
+ sources."@typescript-eslint/typescript-estree-5.38.0"
+ sources."@typescript-eslint/utils-5.38.0"
+ sources."@typescript-eslint/visitor-keys-5.38.0"
sources."@vscode/test-electron-2.1.5"
sources."acorn-8.8.0"
sources."acorn-jsx-5.3.2"
@@ -124720,7 +124782,6 @@ in
];
})
sources."function-bind-1.1.1"
- sources."functional-red-black-tree-1.0.1"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.3"
sources."github-from-package-0.0.0"
@@ -124982,7 +125043,7 @@ in
sources."commander-1.3.2"
];
})
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."formidable-1.0.11"
sources."fresh-0.2.0"
sources."function-bind-1.1.1"
@@ -125254,7 +125315,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
sources."@types/lodash-4.14.185"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."adm-zip-0.5.9"
sources."agent-base-6.0.2"
@@ -125282,7 +125343,7 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1214.0" // {
+ (sources."aws-sdk-2.1218.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -125456,7 +125517,7 @@ in
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-each-0.3.3"
sources."form-data-4.0.0"
(sources."formidable-2.0.1" // {
@@ -125506,7 +125567,7 @@ in
sources."is-bigint-1.0.4"
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -125662,7 +125723,7 @@ in
sources."shebang-regex-1.0.0"
sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
- sources."simple-git-3.14.0"
+ sources."simple-git-3.14.1"
sources."slash-3.0.0"
sources."sort-keys-1.1.2"
sources."sort-keys-length-1.0.1"
@@ -126395,10 +126456,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.1002.0";
+ version = "1.1006.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.1002.0.tgz";
- sha512 = "CS7MdL/1t13464fgztszli4lkAHqZr9ZkwNNb3Ef2OokJnbC0LkvMIbI9U/rBBtFMKFKcgdCJCYxwzbwtTicMw==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.1006.0.tgz";
+ sha512 = "xnMLyyvRS0nbRrISiHOLYu7XCC/Hzk+Bvkt72ugmTH/gOc9EVqR5iCMdTo9iLoY/8lzINxsKeHZk8/eP5l2muA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -126421,7 +126482,7 @@ in
sources."@socket.io/component-emitter-3.1.0"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."cookie-0.4.2"
@@ -126459,7 +126520,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -126935,7 +126996,7 @@ in
sources."is-binary-path-1.0.1"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-canonical-base64-1.1.1"
sources."is-core-module-2.10.0"
(sources."is-data-descriptor-1.0.0" // {
@@ -127214,7 +127275,7 @@ in
sources."push-stream-11.0.1"
];
})
- sources."queue-tick-1.0.0"
+ sources."queue-tick-1.0.1"
sources."quicktask-1.0.1"
sources."railroad-diagrams-1.0.0"
sources."randexp-0.4.6"
@@ -127389,22 +127450,22 @@ in
sources."split-string-3.1.0"
(sources."ssb-bendy-butt-0.12.5" // {
dependencies = [
- (sources."ssb-keys-8.4.1" // {
+ (sources."ssb-keys-8.5.0" // {
dependencies = [
- sources."ssb-uri2-2.0.2"
+ sources."ssb-uri2-2.1.0"
];
})
sources."ssb-uri2-1.9.0"
];
})
- sources."ssb-bfe-3.5.0"
- sources."ssb-bfe-spec-0.6.0"
+ sources."ssb-bfe-3.6.0"
+ sources."ssb-bfe-spec-0.7.0"
sources."ssb-blobs-1.2.2"
sources."ssb-caps-1.1.0"
sources."ssb-client-4.9.0"
(sources."ssb-config-3.4.6" // {
dependencies = [
- sources."ssb-keys-8.4.1"
+ sources."ssb-keys-8.5.0"
];
})
sources."ssb-db-19.2.0"
@@ -127422,10 +127483,10 @@ in
sources."mkdirp-1.0.4"
sources."push-stream-11.0.1"
sources."rimraf-3.0.2"
- (sources."ssb-keys-8.4.1" // {
+ (sources."ssb-keys-8.5.0" // {
dependencies = [
sources."mkdirp-0.5.6"
- sources."ssb-uri2-2.0.2"
+ sources."ssb-uri2-2.1.0"
];
})
sources."ssb-uri2-1.9.0"
@@ -127466,10 +127527,10 @@ in
sources."ssb-replicate-1.3.3"
sources."ssb-typescript-2.8.0"
sources."ssb-unix-socket-1.0.0"
- sources."ssb-uri2-2.0.2"
+ sources."ssb-uri2-2.1.0"
(sources."ssb-validate-4.1.4" // {
dependencies = [
- sources."ssb-keys-8.4.1"
+ sources."ssb-keys-8.5.0"
];
})
sources."ssb-validate2-0.1.2"
@@ -127678,7 +127739,7 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1214.0" // {
+ (sources."aws-sdk-2.1218.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -127870,7 +127931,7 @@ in
sources."fd-slicer-1.1.0"
sources."finalhandler-1.2.0"
sources."find-up-3.0.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."for-each-0.3.3"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
@@ -127893,7 +127954,7 @@ in
];
})
sources."glob-6.0.4"
- (sources."gm-1.23.1" // {
+ (sources."gm-1.24.0" // {
dependencies = [
sources."debug-3.2.7"
];
@@ -127946,7 +128007,7 @@ in
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-core-module-2.10.0"
sources."is-date-object-1.0.5"
(sources."is-expression-3.0.0" // {
@@ -128496,14 +128557,14 @@ in
stylelint = nodeEnv.buildNodePackage {
name = "stylelint";
packageName = "stylelint";
- version = "14.11.0";
+ version = "14.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/stylelint/-/stylelint-14.11.0.tgz";
- sha512 = "OTLjLPxpvGtojEfpESWM8Ir64Z01E89xsisaBMUP/ngOx1+4VG2DPRcUyCCiin9Rd3kPXPsh/uwHd9eqnvhsYA==";
+ url = "https://registry.npmjs.org/stylelint/-/stylelint-14.12.0.tgz";
+ sha512 = "9Sa+IsT31PN9zf9q5ZVZNvhT6jMVu6YhpI38g3Akn7vONipGL0GNd9QCblwtJ3ysaoM80P/+9mOcFB1xnytiQQ==";
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@csstools/selector-specificity-2.0.2"
sources."@nodelib/fs.scandir-2.1.5"
@@ -128857,7 +128918,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -128929,10 +128990,10 @@ in
svelte-language-server = nodeEnv.buildNodePackage {
name = "svelte-language-server";
packageName = "svelte-language-server";
- version = "0.14.34";
+ version = "0.14.35";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.34.tgz";
- sha512 = "VXSZ4nkXyItxpG32adzRF3utN7YgwImPFP86B/LTvleIPz9oYrsLf/2V+oXpymdTA+dzomYLXWDCgtN4CvPPOQ==";
+ url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.35.tgz";
+ sha512 = "vQgIS8yf4NYUpEI+todZXrSmYbRVU2uDc9ejxWKRJ1ZMkyoEZ+jz6+C/0Jx+SG3whlaLxqP7KJHy6+ITbGqIjw==";
};
dependencies = [
sources."@emmetio/abbreviation-2.2.3"
@@ -128944,7 +129005,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -129003,7 +129064,7 @@ in
sources."strip-indent-3.0.0"
sources."svelte-3.50.1"
sources."svelte-preprocess-4.10.7"
- sources."svelte2tsx-0.5.17"
+ sources."svelte2tsx-0.5.18"
sources."to-regex-range-5.0.1"
sources."tslib-2.4.0"
sources."typescript-4.8.3"
@@ -129029,7 +129090,7 @@ in
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.2.0"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -130340,7 +130401,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
@@ -131255,7 +131316,7 @@ in
sources."internal-slot-1.0.3"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-capitalized-1.0.0"
sources."is-date-object-1.0.5"
sources."is-negative-zero-2.0.2"
@@ -131340,7 +131401,7 @@ in
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -131391,7 +131452,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -131488,7 +131549,7 @@ in
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
@@ -131684,7 +131745,7 @@ in
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -131735,7 +131796,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -131832,7 +131893,7 @@ in
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-callable-1.2.5"
+ sources."is-callable-1.2.6"
sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
@@ -132103,7 +132164,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -132695,7 +132756,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -132775,7 +132836,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -133160,7 +133221,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -133240,7 +133301,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -134056,7 +134117,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.4"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/responselike-1.0.0"
sources."@xmldom/xmldom-0.8.2"
sources."ajv-6.12.6"
@@ -134562,7 +134623,7 @@ in
sources."vscode-languageserver-protocol-3.17.2"
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.17.2"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."which-2.0.2"
sources."yallist-4.0.0"
sources."yocto-queue-1.0.0"
@@ -134629,13 +134690,9 @@ in
sources."@sindresorhus/is-5.3.0"
sources."@socket.io/component-emitter-3.1.0"
sources."@szmarczak/http-timer-5.0.1"
- sources."@types/cacheable-request-6.0.2"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.4"
- sources."@types/node-16.11.58"
- sources."@types/responselike-3.0.0"
+ sources."@types/node-16.11.59"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
@@ -134656,17 +134713,10 @@ in
sources."brace-expansion-1.1.11"
sources."bytes-3.1.2"
sources."cacheable-lookup-6.1.0"
- (sources."cacheable-request-7.0.2" // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- sources."responselike-2.0.1"
- ];
- })
+ sources."cacheable-request-10.1.2"
sources."call-bind-1.0.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- sources."clone-response-1.0.3"
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -134705,7 +134755,6 @@ in
sources."emoji-regex-8.0.0"
sources."enabled-2.0.0"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.4"
(sources."engine.io-6.2.0" // {
dependencies = [
sources."debug-4.3.4"
@@ -134741,7 +134790,7 @@ in
sources."get-stream-6.0.1"
sources."getmac-5.20.0"
sources."glob-7.2.3"
- sources."got-12.4.1"
+ sources."got-12.5.0"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
sources."has-symbols-1.0.3"
@@ -134795,7 +134844,7 @@ in
sources."mime-1.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."mimic-response-1.0.1"
+ sources."mimic-response-4.0.0"
sources."minimatch-3.1.2"
sources."minimist-1.2.6"
sources."mkdirp-1.0.4"
@@ -134805,7 +134854,7 @@ in
sources."node-cache-5.1.2"
sources."node-watch-0.7.3"
sources."nopt-1.0.10"
- sources."normalize-url-6.1.0"
+ sources."normalize-url-7.1.0"
sources."nprogress-0.2.0"
sources."object-assign-4.1.1"
sources."object-inspect-1.12.2"
@@ -134829,7 +134878,6 @@ in
sources."proto-list-1.2.4"
sources."proxy-addr-2.0.7"
sources."pseudomap-1.0.2"
- sources."pump-3.0.0"
sources."qs-6.10.3"
sources."quick-lru-5.1.1"
sources."random-bytes-1.0.0"
@@ -134849,7 +134897,7 @@ in
sources."responselike-3.0.0"
sources."rimraf-3.0.2"
sources."safe-buffer-5.2.1"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."safer-buffer-2.1.2"
(sources."semver-7.3.7" // {
dependencies = [
@@ -134959,7 +135007,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@npmcli/config-4.2.2"
sources."@npmcli/map-workspaces-2.0.4"
@@ -134968,7 +135016,7 @@ in
sources."@types/debug-4.1.7"
sources."@types/is-empty-1.2.1"
sources."@types/ms-0.7.31"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
sources."abbrev-1.1.1"
@@ -135298,7 +135346,7 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@ts-morph/common-0.11.1"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@vercel/build-utils-5.4.2"
sources."@vercel/go-2.2.5"
sources."@vercel/hydrogen-0.0.18"
@@ -135578,7 +135626,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
@@ -135873,7 +135921,7 @@ in
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.17.2"
sources."vscode-nls-4.1.2"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
];
buildInputs = globalBuildInputs;
meta = {
@@ -135944,14 +135992,14 @@ in
sha512 = "sWXDFmAvXMUhF5E+6v4e77SwhVPSvdLxGGfkOz15LmAsfKoamKMnW7aARnu6mRWOzqz3hKJqVZN4hnCpdvtLKg==";
};
dependencies = [
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."jsonc-parser-3.2.0"
sources."picomatch-2.3.1"
sources."regenerator-runtime-0.13.9"
sources."request-light-0.5.8"
sources."typescript-4.8.3"
- sources."vscode-css-languageservice-6.1.0"
- sources."vscode-html-languageservice-5.0.1"
+ sources."vscode-css-languageservice-6.1.1"
+ sources."vscode-html-languageservice-5.0.2"
sources."vscode-json-languageservice-5.1.0"
sources."vscode-jsonrpc-8.0.2"
sources."vscode-languageserver-8.0.2"
@@ -135960,7 +136008,7 @@ in
sources."vscode-languageserver-types-3.17.2"
sources."vscode-markdown-languageservice-0.0.0"
sources."vscode-nls-5.2.0"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
];
buildInputs = globalBuildInputs;
meta = {
@@ -136261,7 +136309,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
sources."@emmetio/extract-abbreviation-0.1.6"
sources."@mrmlnc/readdir-enhanced-2.2.1"
@@ -136278,7 +136326,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -137210,7 +137258,7 @@ in
sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg==";
};
dependencies = [
- sources."@babel/runtime-corejs3-7.19.0"
+ sources."@babel/runtime-corejs3-7.19.1"
sources."@mapbox/node-pre-gyp-1.0.10"
sources."@tootallnate/once-1.1.2"
sources."@types/raf-3.4.0"
@@ -137245,7 +137293,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.25.1"
+ sources."core-js-pure-3.25.2"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -137260,7 +137308,7 @@ in
];
})
sources."debug-4.3.4"
- sources."decimal.js-10.4.0"
+ sources."decimal.js-10.4.1"
sources."decompress-response-4.2.1"
sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
@@ -137412,7 +137460,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/helper-validator-identifier-7.18.6"
+ sources."@babel/helper-validator-identifier-7.19.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -137447,12 +137495,8 @@ in
sources."@pnpm/npm-conf-1.0.5"
sources."@sindresorhus/is-5.3.0"
sources."@szmarczak/http-timer-5.0.1"
- sources."@types/cacheable-request-6.0.2"
- sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-18.7.17"
- sources."@types/responselike-3.0.0"
+ sources."@types/node-18.7.18"
sources."@types/yauzl-2.10.0"
sources."abort-controller-3.0.0"
sources."acorn-8.8.0"
@@ -137499,10 +137543,9 @@ in
sources."buffer-from-1.1.2"
sources."bunyan-1.8.15"
sources."cacheable-lookup-6.1.0"
- (sources."cacheable-request-7.0.2" // {
+ (sources."cacheable-request-10.1.2" // {
dependencies = [
- sources."lowercase-keys-2.0.0"
- sources."responselike-2.0.1"
+ sources."get-stream-6.0.1"
];
})
sources."callsites-3.1.0"
@@ -137521,7 +137564,6 @@ in
];
})
sources."clone-1.0.4"
- sources."clone-response-1.0.3"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."columnify-1.6.0"
@@ -137672,7 +137714,7 @@ in
sources."global-dirs-3.0.0"
sources."globals-13.17.0"
sources."globby-11.1.0"
- (sources."got-12.4.1" // {
+ (sources."got-12.5.0" // {
dependencies = [
sources."get-stream-6.0.1"
];
@@ -137790,7 +137832,7 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimic-fn-2.1.0"
- sources."mimic-response-1.0.1"
+ sources."mimic-response-4.0.0"
sources."minimatch-3.1.2"
sources."minimist-1.2.6"
sources."mkdirp-1.0.4"
@@ -137815,7 +137857,7 @@ in
sources."ncp-2.0.0"
sources."node-forge-1.3.1"
sources."node-notifier-10.0.1"
- sources."normalize-url-6.1.0"
+ sources."normalize-url-7.1.0"
sources."npm-run-path-4.0.1"
sources."nth-check-2.1.1"
sources."oauth-sign-0.9.0"
@@ -137907,7 +137949,7 @@ in
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
sources."safe-json-stringify-1.2.0"
- sources."safe-stable-stringify-2.3.1"
+ sources."safe-stable-stringify-2.4.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."semver-7.3.7"
@@ -138044,7 +138086,7 @@ in
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -138066,12 +138108,12 @@ in
sources."acorn-import-assertions-1.8.0"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.21.3"
+ sources."browserslist-4.21.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001399"
+ sources."caniuse-lite-1.0.30001406"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.248"
+ sources."electron-to-chromium-1.4.254"
sources."enhanced-resolve-5.10.0"
sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
@@ -138109,7 +138151,7 @@ in
sources."tapable-2.2.1"
sources."terser-5.15.0"
sources."terser-webpack-plugin-5.3.6"
- sources."update-browserslist-db-1.0.8"
+ sources."update-browserslist-db-1.0.9"
sources."uri-js-4.4.1"
sources."watchpack-2.4.0"
sources."webpack-sources-3.2.3"
@@ -138186,10 +138228,10 @@ in
webpack-dev-server = nodeEnv.buildNodePackage {
name = "webpack-dev-server";
packageName = "webpack-dev-server";
- version = "4.11.0";
+ version = "4.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.0.tgz";
- sha512 = "L5S4Q2zT57SK7tazgzjMiSMBdsw+rGYIX27MgPgx7LDhWO0lViPrHKoLS7jo5In06PWYAhlYu3PbyoC6yAThbw==";
+ url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz";
+ sha512 = "lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==";
};
dependencies = [
sources."@leichtgewicht/ip-codec-2.0.4"
@@ -138197,12 +138239,12 @@ in
sources."@types/bonjour-3.5.10"
sources."@types/connect-3.4.35"
sources."@types/connect-history-api-fallback-1.3.5"
- sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.30"
+ sources."@types/express-4.17.14"
+ sources."@types/express-serve-static-core-4.17.31"
sources."@types/http-proxy-1.17.9"
sources."@types/json-schema-7.0.11"
sources."@types/mime-3.0.1"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/retry-0.12.0"
@@ -138270,7 +138312,7 @@ in
sources."faye-websocket-0.11.4"
sources."fill-range-7.0.1"
sources."finalhandler-1.2.0"
- sources."follow-redirects-1.15.1"
+ sources."follow-redirects-1.15.2"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-monkey-1.0.3"
@@ -138514,7 +138556,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@webtorrent/http-node-1.3.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
@@ -138750,7 +138792,7 @@ in
sources."pump-3.0.0"
sources."qap-3.3.1"
sources."queue-microtask-1.2.3"
- sources."queue-tick-1.0.0"
+ sources."queue-tick-1.0.1"
sources."random-access-file-2.2.1"
sources."random-access-storage-1.4.3"
sources."random-iterate-1.0.1"
@@ -138880,46 +138922,127 @@ in
bypassCache = true;
reconstructLock = true;
};
+ "@withgraphite/graphite-cli" = nodeEnv.buildNodePackage {
+ name = "_at_withgraphite_slash_graphite-cli";
+ packageName = "@withgraphite/graphite-cli";
+ version = "0.20.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.20.10.tgz";
+ sha512 = "NT0jJZZmmPf/LPnwOoTi9jhgOTW1Nj8n4zWID3rvpJASEXvXnH7k9j16atAoJK3KhSEFvfPRf7NV+35QmHZkPA==";
+ };
+ dependencies = [
+ sources."@withgraphite/graphite-cli-routes-0.22.0"
+ sources."@withgraphite/retype-0.3.13"
+ sources."@withgraphite/retyped-routes-0.3.5"
+ sources."ansi-regex-5.0.1"
+ sources."ansi-styles-4.3.0"
+ sources."balanced-match-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."chalk-4.1.2"
+ sources."cliui-7.0.4"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."concat-map-0.0.1"
+ sources."define-lazy-prop-2.0.0"
+ sources."emoji-regex-8.0.0"
+ sources."escalade-3.1.1"
+ sources."fs-extra-10.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."get-caller-file-2.0.5"
+ sources."glob-7.2.3"
+ sources."graceful-fs-4.2.10"
+ sources."has-flag-4.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."is-docker-2.2.1"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."is-wsl-2.2.0"
+ sources."isomorphic-fetch-3.0.0"
+ sources."jsonfile-6.1.0"
+ sources."kleur-3.0.3"
+ sources."lru-cache-6.0.0"
+ sources."minimatch-3.1.2"
+ sources."node-fetch-2.6.7"
+ sources."once-1.4.0"
+ sources."open-8.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-6.2.1"
+ sources."prompts-2.4.2"
+ sources."require-directory-2.1.1"
+ sources."rimraf-3.0.2"
+ sources."semver-7.3.7"
+ sources."sisteransi-1.0.5"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ sources."supports-color-7.2.0"
+ sources."tmp-0.2.1"
+ sources."tr46-0.0.3"
+ sources."universalify-2.0.0"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-fetch-3.6.2"
+ sources."whatwg-url-5.0.0"
+ sources."wrap-ansi-7.0.0"
+ sources."wrappy-1.0.2"
+ sources."y18n-5.0.8"
+ sources."yallist-4.0.0"
+ sources."yargs-17.5.1"
+ sources."yargs-parser-21.1.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ 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";
+ homepage = "https://github.com/withgraphite/graphite-cli";
+ license = "None";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
wrangler = nodeEnv.buildNodePackage {
name = "wrangler";
packageName = "wrangler";
- version = "2.1.2";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.2.tgz";
- sha512 = "6L+nFTjHTjWiY033f97pwhuc/b07t5kUAzrnsulVWKso8/hVXCgMrAXpVH6ujvFws1cACxNAUfVZ200T8mgVuw==";
+ url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.4.tgz";
+ sha512 = "vHgA3/naF6n7GrIujTxPQDrlEgY+A0VluxJiqnWWWvmBSvfIjmsJGjHg0LAJ/NONx3cp77cT96ehszv790d+tA==";
};
dependencies = [
sources."@cloudflare/kv-asset-handler-0.2.0"
sources."@esbuild-plugins/node-globals-polyfill-0.1.1"
sources."@esbuild-plugins/node-modules-polyfill-0.1.4"
sources."@iarna/toml-2.2.5"
- sources."@miniflare/cache-2.8.2"
- sources."@miniflare/cli-parser-2.8.2"
- sources."@miniflare/core-2.8.2"
- sources."@miniflare/durable-objects-2.8.2"
- sources."@miniflare/html-rewriter-2.8.2"
- sources."@miniflare/http-server-2.8.2"
- sources."@miniflare/kv-2.8.2"
- sources."@miniflare/queues-2.8.2"
- sources."@miniflare/r2-2.8.2"
- sources."@miniflare/runner-vm-2.8.2"
- sources."@miniflare/scheduler-2.8.2"
- sources."@miniflare/shared-2.8.2"
- sources."@miniflare/sites-2.8.2"
- sources."@miniflare/storage-file-2.8.2"
- sources."@miniflare/storage-memory-2.8.2"
- sources."@miniflare/watcher-2.8.2"
- sources."@miniflare/web-sockets-2.8.2"
+ sources."@miniflare/cache-2.9.0"
+ sources."@miniflare/cli-parser-2.9.0"
+ sources."@miniflare/core-2.9.0"
+ sources."@miniflare/d1-2.9.0"
+ sources."@miniflare/durable-objects-2.9.0"
+ sources."@miniflare/html-rewriter-2.9.0"
+ sources."@miniflare/http-server-2.9.0"
+ sources."@miniflare/kv-2.9.0"
+ sources."@miniflare/queues-2.9.0"
+ sources."@miniflare/r2-2.9.0"
+ sources."@miniflare/runner-vm-2.9.0"
+ sources."@miniflare/scheduler-2.9.0"
+ sources."@miniflare/shared-2.9.0"
+ sources."@miniflare/sites-2.9.0"
+ sources."@miniflare/storage-file-2.9.0"
+ sources."@miniflare/storage-memory-2.9.0"
+ sources."@miniflare/watcher-2.9.0"
+ sources."@miniflare/web-sockets-2.9.0"
+ sources."@types/better-sqlite3-7.6.0"
+ sources."@types/node-18.7.18"
sources."@types/stack-trace-0.0.29"
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
sources."blake3-wasm-2.1.5"
sources."braces-3.0.2"
sources."buffer-from-1.1.2"
+ sources."builtins-5.0.1"
sources."busboy-1.6.0"
sources."chokidar-3.5.3"
sources."cookie-0.4.2"
sources."cron-schedule-3.0.6"
+ sources."cross-spawn-7.0.3"
sources."dotenv-10.0.0"
sources."esbuild-0.14.51"
sources."esbuild-android-64-0.14.51"
@@ -138944,23 +139067,40 @@ in
sources."esbuild-windows-arm64-0.14.51"
sources."escape-string-regexp-4.0.0"
sources."estree-walker-0.6.1"
+ sources."execa-6.1.0"
sources."fill-range-7.0.1"
sources."fsevents-2.3.2"
+ sources."get-stream-6.0.1"
sources."glob-parent-5.1.2"
sources."html-rewriter-wasm-0.4.1"
sources."http-cache-semantics-4.1.0"
+ sources."human-signals-3.0.1"
sources."is-binary-path-2.1.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
+ sources."is-stream-3.0.0"
+ sources."isexe-2.0.0"
sources."kleur-4.1.5"
+ sources."lru-cache-6.0.0"
sources."magic-string-0.25.9"
+ sources."merge-stream-2.0.0"
sources."mime-3.0.0"
- sources."miniflare-2.8.2"
+ sources."mimic-fn-4.0.0"
+ sources."miniflare-2.9.0"
sources."mustache-4.2.0"
sources."nanoid-3.3.4"
sources."node-forge-1.3.1"
sources."normalize-path-3.0.0"
+ (sources."npm-run-path-5.1.0" // {
+ dependencies = [
+ sources."path-key-4.0.0"
+ ];
+ })
+ sources."npx-import-1.1.3"
+ sources."onetime-6.0.0"
+ sources."parse-package-name-1.0.0"
+ sources."path-key-3.1.1"
sources."path-to-regexp-6.2.1"
sources."picomatch-2.3.1"
sources."readdirp-3.6.0"
@@ -138969,7 +139109,11 @@ in
sources."rollup-pluginutils-2.8.2"
sources."selfsigned-2.1.1"
sources."semiver-1.1.0"
+ sources."semver-7.3.7"
sources."set-cookie-parser-2.5.1"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
+ sources."signal-exit-3.0.7"
sources."source-map-0.7.4"
(sources."source-map-support-0.5.21" // {
dependencies = [
@@ -138979,11 +139123,15 @@ in
sources."sourcemap-codec-1.4.8"
sources."stack-trace-0.0.10"
sources."streamsearch-1.1.0"
+ sources."strip-final-newline-3.0.0"
sources."to-regex-range-5.0.1"
sources."undici-5.9.1"
sources."urlpattern-polyfill-4.0.3"
+ sources."validate-npm-package-name-4.0.0"
+ sources."which-2.0.2"
sources."ws-8.8.1"
sources."xxhash-wasm-1.0.1"
+ sources."yallist-4.0.0"
sources."youch-2.2.2"
];
buildInputs = globalBuildInputs;
@@ -139087,7 +139235,7 @@ in
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.17.2"
sources."vscode-nls-5.2.0"
- sources."vscode-uri-3.0.3"
+ sources."vscode-uri-3.0.6"
sources."yaml-2.0.0-11"
];
buildInputs = globalBuildInputs;
@@ -139353,7 +139501,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.25.1"
+ sources."core-js-3.25.2"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -140204,7 +140352,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.7.17"
+ sources."@types/node-18.7.18"
sources."@types/ps-tree-1.1.2"
sources."@types/which-2.0.1"
sources."braces-3.0.2"
diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix
index 0d231f60b0a9..afea6a15085c 100644
--- a/pkgs/development/node-packages/overrides.nix
+++ b/pkgs/development/node-packages/overrides.nix
@@ -167,6 +167,10 @@ final: prev: {
meta = oldAttrs.meta // { broken = since "10"; };
});
+ graphite-cli = prev."@withgraphite/graphite-cli".override {
+ name = "graphite-cli";
+ };
+
graphql-language-service-cli = prev.graphql-language-service-cli.override {
nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];
postInstall = ''
diff --git a/pkgs/development/ocaml-modules/checkseum/default.nix b/pkgs/development/ocaml-modules/checkseum/default.nix
index e3a455e4a2d2..fd35b468cc6f 100644
--- a/pkgs/development/ocaml-modules/checkseum/default.nix
+++ b/pkgs/development/ocaml-modules/checkseum/default.nix
@@ -1,27 +1,24 @@
{ lib, fetchurl, buildDunePackage, ocaml, dune-configurator, pkg-config
-, bigarray-compat, optint
+, optint
, fmt, rresult, bos, fpath, astring, alcotest
, withFreestanding ? false
, ocaml-freestanding
}:
buildDunePackage rec {
- version = "0.3.2";
+ version = "0.3.4";
pname = "checkseum";
- useDune2 = true;
-
- minimumOCamlVersion = "4.07";
+ minimalOCamlVersion = "4.07";
src = fetchurl {
- url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz";
- sha256 = "9cdd282ea1cfc424095d7284e39e4d0ad091de3c3f2580539d03f6966d45ccd5";
+ url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-${version}.tbz";
+ sha256 = "sha256-BL4BOwxXORrkOOba4QjRSetm8bF9JmlKHSFPq24+1zg=";
};
buildInputs = [ dune-configurator ];
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [
- bigarray-compat
optint
] ++ lib.optionals withFreestanding [
ocaml-freestanding
diff --git a/pkgs/development/ocaml-modules/h2/default.nix b/pkgs/development/ocaml-modules/h2/default.nix
index 4973de7c183c..95272890e15f 100644
--- a/pkgs/development/ocaml-modules/h2/default.nix
+++ b/pkgs/development/ocaml-modules/h2/default.nix
@@ -28,10 +28,9 @@ buildDunePackage rec {
inherit (hpack)
version
src
- useDune2
;
- minimumOCamlVersion = "4.06";
+ minimalOCamlVersion = "4.06";
propagatedBuildInputs = [
angstrom
@@ -42,7 +41,7 @@ buildDunePackage rec {
httpaf
];
- # Tests fail with 4.06
+ # Tests fail with ≤ 4.07
doCheck = lib.versionAtLeast ocaml.version "4.08";
preCheck = ''
ln -s "${http2-frame-test-case}" lib_test/http2-frame-test-case
diff --git a/pkgs/development/ocaml-modules/happy-eyeballs/lwt.nix b/pkgs/development/ocaml-modules/happy-eyeballs/lwt.nix
new file mode 100644
index 000000000000..63c5a0b61baf
--- /dev/null
+++ b/pkgs/development/ocaml-modules/happy-eyeballs/lwt.nix
@@ -0,0 +1,26 @@
+{ buildDunePackage
+, happy-eyeballs
+, cmdliner
+, dns-client
+, logs
+, lwt
+}:
+
+buildDunePackage {
+ pname = "happy-eyeballs-lwt";
+ inherit (happy-eyeballs) src version;
+
+ buildInputs = [ cmdliner ];
+
+ propagatedBuildInputs = [
+ dns-client
+ happy-eyeballs
+ logs
+ lwt
+ ];
+
+ meta = happy-eyeballs.meta // {
+ description = "Connecting to a remote host via IP version 4 or 6 using Lwt_unix";
+ };
+
+}
diff --git a/pkgs/development/ocaml-modules/happy-eyeballs/mirage.nix b/pkgs/development/ocaml-modules/happy-eyeballs/mirage.nix
new file mode 100644
index 000000000000..a47f7afa00c7
--- /dev/null
+++ b/pkgs/development/ocaml-modules/happy-eyeballs/mirage.nix
@@ -0,0 +1,25 @@
+{ buildDunePackage
+, happy-eyeballs
+, dns-client
+, logs
+, lwt
+, tcpip
+}:
+
+buildDunePackage {
+ pname = "happy-eyeballs-mirage";
+ inherit (happy-eyeballs) src version;
+
+ propagatedBuildInputs = [
+ dns-client
+ happy-eyeballs
+ logs
+ lwt
+ tcpip
+ ];
+
+ meta = happy-eyeballs.meta // {
+ description = "Connecting to a remote host via IP version 4 or 6 using Mirage";
+ };
+
+}
diff --git a/pkgs/development/ocaml-modules/hpack/default.nix b/pkgs/development/ocaml-modules/hpack/default.nix
index ec967312b874..5ebb14f30b88 100644
--- a/pkgs/development/ocaml-modules/hpack/default.nix
+++ b/pkgs/development/ocaml-modules/hpack/default.nix
@@ -7,15 +7,14 @@
buildDunePackage rec {
pname = "hpack";
- version = "0.8.0";
+ version = "0.9.0";
src = fetchurl {
url = "https://github.com/anmonteiro/ocaml-h2/releases/download/${version}/h2-${version}.tbz";
- sha256 = "0qcn3yvyz0h419fjg9nb20csfmwmh3ihz0zb0jfzdycf5w4mlry6";
+ sha256 = "sha256-7gjRhJs2mufQbImAXiKFT9mZ1kHGSHHwjCVZM5f0C14=";
};
- useDune2 = true;
- minimumOCamlVersion = "4.04";
+ minimalOCamlVersion = "4.04";
propagatedBuildInputs = [
angstrom
diff --git a/pkgs/development/ocaml-modules/ogg/default.nix b/pkgs/development/ocaml-modules/ogg/default.nix
index fb31063b9743..c450d6ad1522 100644
--- a/pkgs/development/ocaml-modules/ogg/default.nix
+++ b/pkgs/development/ocaml-modules/ogg/default.nix
@@ -2,17 +2,17 @@
buildDunePackage rec {
pname = "ogg";
- version = "0.7.2";
-
- useDune2 = true;
+ version = "0.7.3";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-ogg";
rev = "v${version}";
- sha256 = "sha256-EY1iVtB5M8//KJPT9FMDYVeBrE/lT30fCqTjjKKnWZU=";
+ sha256 = "sha256-D6tLKBSGfWBoMfQrWmamd8jo2AOphJV9xeSm+l06L5c=";
};
+ minimalOCamlVersion = "4.08";
+
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ libogg ];
diff --git a/pkgs/development/ocaml-modules/paf/cohttp.nix b/pkgs/development/ocaml-modules/paf/cohttp.nix
index b1a6321032cc..fe0505fe7ea6 100644
--- a/pkgs/development/ocaml-modules/paf/cohttp.nix
+++ b/pkgs/development/ocaml-modules/paf/cohttp.nix
@@ -22,8 +22,6 @@ buildDunePackage {
inherit (paf)
version
src
- useDune2
- minimumOCamlVersion
;
propagatedBuildInputs = [
@@ -34,7 +32,7 @@ buildDunePackage {
ipaddr
];
- doCheck = false; # tests fail
+ doCheck = true;
checkInputs = [
alcotest-lwt
fmt
diff --git a/pkgs/development/ocaml-modules/paf/default.nix b/pkgs/development/ocaml-modules/paf/default.nix
index 05d0edcebd49..cf7a25b81d0e 100644
--- a/pkgs/development/ocaml-modules/paf/default.nix
+++ b/pkgs/development/ocaml-modules/paf/default.nix
@@ -25,15 +25,14 @@
buildDunePackage rec {
pname = "paf";
- version = "0.0.8";
+ version = "0.1.0";
src = fetchurl {
url = "https://github.com/dinosaure/paf-le-chien/releases/download/${version}/paf-${version}.tbz";
- sha256 = "CyIIV11G7oUPPHuhov52LP4Ih4pY6bcUApD23/9q39k=";
+ sha256 = "sha256-JIJjECEbajauowbXot19vtiDhTpGAQiSCBY0AHZOyZM=";
};
- useDune2 = true;
- minimumOCamlVersion = "4.08";
+ minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
mirage-stack
@@ -49,7 +48,7 @@ buildDunePackage rec {
tcpip
];
- doCheck = false;
+ doCheck = true;
checkInputs = [
lwt
logs
diff --git a/pkgs/development/ocaml-modules/paf/le.nix b/pkgs/development/ocaml-modules/paf/le.nix
index 06a8d9b51eb3..5c07eba3aab0 100644
--- a/pkgs/development/ocaml-modules/paf/le.nix
+++ b/pkgs/development/ocaml-modules/paf/le.nix
@@ -17,8 +17,6 @@ buildDunePackage {
inherit (paf)
version
src
- useDune2
- minimumOCamlVersion
;
propagatedBuildInputs = [
diff --git a/pkgs/development/ocaml-modules/sedlex/default.nix b/pkgs/development/ocaml-modules/sedlex/default.nix
index 0a18424acac2..e49f03d3f537 100644
--- a/pkgs/development/ocaml-modules/sedlex/default.nix
+++ b/pkgs/development/ocaml-modules/sedlex/default.nix
@@ -9,20 +9,20 @@
}:
let
- unicodeVersion = "14.0.0";
+ unicodeVersion = "15.0.0";
baseUrl = "https://www.unicode.org/Public/${unicodeVersion}";
DerivedCoreProperties = fetchurl {
url = "${baseUrl}/ucd/DerivedCoreProperties.txt";
- sha256 = "sha256:1g77s8g9443dd92f82pbkim7rk51s7xdwa3mxpzb1lcw8ryxvvg3";
+ sha256 = "sha256-02cpC8CGfmtITGg3BTC90aCLazJARgG4x6zK+D4FYo0=";
};
DerivedGeneralCategory = fetchurl {
url = "${baseUrl}/ucd/extracted/DerivedGeneralCategory.txt";
- sha256 = "sha256:080l3bwwppm7gnyga1hzhd07b55viklimxpdsx0fsxhr8v47krnd";
+ sha256 = "sha256-/imkXAiCUA5ZEUCqpcT1Bn5qXXRoBhSK80QAxIucBvk=";
};
PropList = fetchurl {
url = "${baseUrl}/ucd/PropList.txt";
- sha256 = "sha256:08k75jzl7ws9l3sm1ywsj24qa4qvzn895wggdpp5nyj1a2wgvpbb";
+ sha256 = "sha256-4FwKKBHRE9rkq9gyiEGZo+qNGH7huHLYJAp4ipZUC/0=";
};
in
buildDunePackage rec {
diff --git a/pkgs/development/ocaml-modules/tcpip/default.nix b/pkgs/development/ocaml-modules/tcpip/default.nix
index bcabb6a3626f..696ffe517e01 100644
--- a/pkgs/development/ocaml-modules/tcpip/default.nix
+++ b/pkgs/development/ocaml-modules/tcpip/default.nix
@@ -13,13 +13,13 @@
buildDunePackage rec {
pname = "tcpip";
- version = "7.1.0";
+ version = "7.1.2";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/mirage-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
- sha256 = "sha256-4nd2OVZa4w22I4bgglnS8lrNfjTk40PL5n6Oh6n+osw=";
+ sha256 = "sha256-lraur6NfFD9yddG+y21jlHKt82gLgYBBbedltlgcRm0=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/ocaml-modules/uucd/default.nix b/pkgs/development/ocaml-modules/uucd/default.nix
index 0c71ddf0d700..c89a40a50b28 100644
--- a/pkgs/development/ocaml-modules/uucd/default.nix
+++ b/pkgs/development/ocaml-modules/uucd/default.nix
@@ -6,11 +6,11 @@ let
in
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
- version = "14.0.0";
+ version = "15.0.0";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
- sha256 = "sha256:0fc737v5gj3339jx4x9xr096lxrpwvp6vaiylhavcvsglcwbgm30";
+ sha256 = "sha256-DksDi6Dfe/fNGBmeubwxv9dScTHPJRuaPrlX7M8QRrw=";
};
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
diff --git a/pkgs/development/ocaml-modules/uucp/default.nix b/pkgs/development/ocaml-modules/uucp/default.nix
index 42705e20d3f5..476a4529f3fe 100644
--- a/pkgs/development/ocaml-modules/uucp/default.nix
+++ b/pkgs/development/ocaml-modules/uucp/default.nix
@@ -2,7 +2,7 @@
let
pname = "uucp";
- version = "14.0.0";
+ version = "15.0.0";
webpage = "https://erratique.ch/software/${pname}";
minimumOCamlVersion = "4.03";
doCheck = true;
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
- sha256 = "sha256:1yx9nih3d9prb9zizq8fzmmqylf24a6yifhf81h33znrj5xn1mpj";
+ sha256 = "sha256-rEeU9AWpCzuAtAOe7hJHBmJjP97BZsQsPFQQ8uZLUzA=";
};
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
diff --git a/pkgs/development/ocaml-modules/uuseg/default.nix b/pkgs/development/ocaml-modules/uuseg/default.nix
index 9d19de1c3ce8..6a97c5bbc33a 100644
--- a/pkgs/development/ocaml-modules/uuseg/default.nix
+++ b/pkgs/development/ocaml-modules/uuseg/default.nix
@@ -1,4 +1,6 @@
-{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uucp, uutf, cmdliner }:
+{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uucp, uutf, cmdliner
+, cmdlinerSupport ? lib.versionAtLeast cmdliner.version "1.1"
+}:
let
pname = "uuseg";
@@ -8,20 +10,29 @@ in
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-${pname}-${version}";
- version = "14.0.0";
+ version = "15.0.0";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
- sha256 = "sha256:1g9zyzjkhqxgbb9mh3cgaawscwdazv6y8kdqvmy6yhnimmfqv25p";
+ sha256 = "sha256-q8x3bia1QaKpzrWFxUmLWIraKqby7TuPNGvbSjkY4eM=";
};
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
- buildInputs = [ topkg cmdliner uutf ];
+ buildInputs = [ topkg uutf ]
+ ++ lib.optional cmdlinerSupport cmdliner;
propagatedBuildInputs = [ uucp ];
strictDeps = true;
- inherit (topkg) buildPhase installPhase;
+ buildPhase = ''
+ runHook preBuild
+ ${topkg.run} build \
+ --with-uutf true \
+ --with-cmdliner ${lib.boolToString cmdlinerSupport}
+ runHook postBuild
+ '';
+
+ inherit (topkg) installPhase;
meta = with lib; {
description = "An OCaml library for segmenting Unicode text";
diff --git a/pkgs/development/python-modules/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix
index bf27864d8908..78e94dc07416 100644
--- a/pkgs/development/python-modules/ailment/default.nix
+++ b/pkgs/development/python-modules/ailment/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "ailment";
- version = "9.2.15";
+ version = "9.2.18";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "angr";
repo = pname;
rev = "v${version}";
- hash = "sha256-CXJ9UVTrJzXumDJ6wghDbxVfZo9ZC67qBpz8B5D0DLo=";
+ hash = "sha256-9l1TlJwwmc51z+Dwl8uDNlUSOhGaI1bIMoqokaT/IFE=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/aioaladdinconnect/default.nix b/pkgs/development/python-modules/aioaladdinconnect/default.nix
index 56298ca0b373..7264e11959e2 100644
--- a/pkgs/development/python-modules/aioaladdinconnect/default.nix
+++ b/pkgs/development/python-modules/aioaladdinconnect/default.nix
@@ -7,7 +7,7 @@
buildPythonPackage rec {
pname = "aioaladdinconnect";
- version = "0.1.44";
+ version = "0.1.45";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "AIOAladdinConnect";
inherit version;
- hash = "sha256-TtqCbU3NYrRy4upBOZNSC3+TrcBg4ol7JXqeOI6+IhA=";
+ hash = "sha256-Fc34DPhN27wzEGSkRSpynqi9EGw1r3Iwp5rtT4eMMBI=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/aioimaplib/default.nix b/pkgs/development/python-modules/aioimaplib/default.nix
index 97e21dc61522..6936ac4ac448 100644
--- a/pkgs/development/python-modules/aioimaplib/default.nix
+++ b/pkgs/development/python-modules/aioimaplib/default.nix
@@ -16,7 +16,7 @@
buildPythonPackage rec {
pname = "aioimaplib";
- version = "1.0.0";
+ version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.5";
@@ -43,9 +43,13 @@ buildPythonPackage rec {
disabledTests = [
# https://github.com/bamthomas/aioimaplib/issues/77
"test_get_quotaroot"
+ # asyncio.exceptions.TimeoutError
+ "test_idle"
];
- pythonImportsCheck = [ "aioimaplib" ];
+ pythonImportsCheck = [
+ "aioimaplib"
+ ];
meta = with lib; {
description = "Python asyncio IMAP4rev1 client library";
diff --git a/pkgs/development/python-modules/aioitertools/default.nix b/pkgs/development/python-modules/aioitertools/default.nix
index 4db5cde15f61..e5544df68ee1 100644
--- a/pkgs/development/python-modules/aioitertools/default.nix
+++ b/pkgs/development/python-modules/aioitertools/default.nix
@@ -2,7 +2,6 @@
, buildPythonPackage
, fetchpatch
, fetchPypi
-, pythonAtLeast
, pythonOlder
# native
@@ -17,14 +16,14 @@
buildPythonPackage rec {
pname = "aioitertools";
- version = "0.10.0";
+ version = "0.11.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-fR0dSgPUYsWghAeH098JjxJYR+DTi4M7MPj4y8RaFCA=";
+ hash = "sha256-QsaLjdOmnCv38iM7999LtYtVe8pSUqwC7VGHu8Z9aDE=";
};
nativeBuildInputs = [
@@ -45,8 +44,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables";
+ homepage = "https://aioitertools.omnilib.dev/";
license = licenses.mit;
- homepage = "https://pypi.org/project/aioitertools/";
maintainers = with maintainers; [ teh ];
};
}
diff --git a/pkgs/development/python-modules/angr/default.nix b/pkgs/development/python-modules/angr/default.nix
index 3e2de613cc25..a5c023c394c7 100644
--- a/pkgs/development/python-modules/angr/default.nix
+++ b/pkgs/development/python-modules/angr/default.nix
@@ -46,7 +46,7 @@ in
buildPythonPackage rec {
pname = "angr";
- version = "9.2.15";
+ version = "9.2.18";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -55,7 +55,7 @@ buildPythonPackage rec {
owner = pname;
repo = pname;
rev = "v${version}";
- hash = "sha256-9KWk4uB7VlYsnQbDCRgnVkis0UAZfiI2xH9cAD1Dd7M=";
+ hash = "sha256-wy+0VojvgRjIkiPxnJN+r3R4dkIqhHCP/jZqurf+1CY=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/angrop/default.nix b/pkgs/development/python-modules/angrop/default.nix
index cfd27ae4cbfe..ea47444d47ce 100644
--- a/pkgs/development/python-modules/angrop/default.nix
+++ b/pkgs/development/python-modules/angrop/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "angrop";
- version = "9.2.6";
+ version = "9.2.7";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "angr";
repo = pname;
rev = "v${version}";
- hash = "sha256-qaDAicmYZxLPTl17il61ij01prRv2H4xxe07Xg4KWhI=";
+ hash = "sha256-wIPk7Cz7FSPviPFBSLrBjLr9M0o3pyoJM7wiAhHrg9Q=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix
index 5c3c8c8c682c..5994f1413de8 100644
--- a/pkgs/development/python-modules/b2sdk/default.nix
+++ b/pkgs/development/python-modules/b2sdk/default.nix
@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "b2sdk";
- version = "1.17.3";
+ version = "1.18.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-pyPjjdQ8wzvQitlchGlfNTPwqs0PH6xgplSPUWpjtwM=";
+ hash = "sha256-knLyjRjUmLZtM9dJoPBeSdm7GpE0+UJhwLi/obVvPuw=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/beartype/default.nix b/pkgs/development/python-modules/beartype/default.nix
index 8aeda35741cf..1a238a3937c5 100644
--- a/pkgs/development/python-modules/beartype/default.nix
+++ b/pkgs/development/python-modules/beartype/default.nix
@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "beartype";
- version = "0.10.4";
+ version = "0.11.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-JOxp9qf05ul69APQjeJw3vMkhRgGAycJXSOxxN9kvyo=";
+ hash = "sha256-OFS1Dqqpi7iUkL5X5zxpx3eg8wRXTnBDrH2pisanNaY=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix
index 00fd16ed8b00..adc59654c72f 100644
--- a/pkgs/development/python-modules/claripy/default.nix
+++ b/pkgs/development/python-modules/claripy/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "claripy";
- version = "9.2.15";
+ version = "9.2.18";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "angr";
repo = pname;
rev = "v${version}";
- hash = "sha256-3v5te+j3I4yzxoBO8kY8VGLCrWfb1iOz9GHzun1DT0I=";
+ hash = "sha256-LhLRuEHhNdr7WSnsbfv0ol+/MbEq+rAdw5UjxY/i9b8=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/cocotb/default.nix b/pkgs/development/python-modules/cocotb/default.nix
index 104fe1de99df..688fc7c367bc 100644
--- a/pkgs/development/python-modules/cocotb/default.nix
+++ b/pkgs/development/python-modules/cocotb/default.nix
@@ -1,7 +1,7 @@
{ lib
, stdenv
, buildPythonPackage
-, fetchPypi
+, fetchFromGitHub
, setuptools
, setuptools-scm
, cocotb-bus
@@ -12,15 +12,14 @@
buildPythonPackage rec {
pname = "cocotb";
- version = "1.7.0";
+ version = "1.7.1";
- # - we need to use the tarball from PyPi
- # or the full git checkout (with .git)
- # - using fetchFromGitHub will cause a build failure,
- # because it does not include required metadata
- src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-CF/ZXkEQDDPwTN2+ngyUKy55XwShR6/Fr5az/aYcY/Q=";
+ # pypi source doesn't include tests
+ src = fetchFromGitHub {
+ owner = "cocotb";
+ repo = "cocotb";
+ rev = "v${version}";
+ sha256 = "sha256-wACgT5r0YmSYvLhTsuFhTcJqeCtGGLifOmr7/Lz2Vug=";
};
nativeBuildInputs = [ setuptools-scm ];
@@ -52,11 +51,13 @@ buildPythonPackage rec {
];
checkInputs = [ cocotb-bus pytestCheckHook swig verilog ];
-
- checkPhase = ''
+ preCheck = ''
export PATH=$out/bin:$PATH
+ mv cocotb cocotb.hidden
'';
+ pythonImportsCheck = [ "cocotb" ];
+
meta = with lib; {
description = "Coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python";
homepage = "https://github.com/cocotb/cocotb";
diff --git a/pkgs/development/python-modules/dask-image/default.nix b/pkgs/development/python-modules/dask-image/default.nix
index 1d2189f8a739..7f278b50a592 100644
--- a/pkgs/development/python-modules/dask-image/default.nix
+++ b/pkgs/development/python-modules/dask-image/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "dask-image";
- version = "2021.12.0";
+ version = "2022.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-Nb5JYmvQHD44khKBJqJ9XuMmahmKjjx+MNWervcS/Pk=";
+ hash = "sha256-8SPf0Wp9FcdmYqasFHeFCe1e7ZtJT0Mi5ZRemxWSNUc=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix
index 58cde9e14e05..f766248a6dfb 100644
--- a/pkgs/development/python-modules/dbus-fast/default.nix
+++ b/pkgs/development/python-modules/dbus-fast/default.nix
@@ -2,6 +2,8 @@
, buildPythonPackage
, fetchFromGitHub
, poetry-core
+, pytest-asyncio
+, pytestCheckHook
, pythonOlder
}:
@@ -9,24 +11,30 @@ buildPythonPackage rec {
pname = "dbus-fast";
version = "1.4.0";
format = "pyproject";
+
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = pname;
- rev = "refs/tags/v${version}";
+ rev = "v${version}";
hash = "sha256-vbsigiUSGeetY+1MEeQ/cO3Oj8Ah0Yg9BUPo2Gc06KU=";
};
- postPatch = ''
- substituteInPlace pyproject.toml \
- --replace "--cov=dbus_fast --cov-report=term-missing:skip-covered" ""
- '';
-
nativeBuildInputs = [
poetry-core
];
+ checkInputs = [
+ pytest-asyncio
+ pytestCheckHook
+ ];
+
+ postPatch = ''
+ substituteInPlace pyproject.toml \
+ --replace " --cov=dbus_fast --cov-report=term-missing:skip-covered" ""
+ '';
+
pythonImportsCheck = [
"dbus_fast"
"dbus_fast.aio"
@@ -34,14 +42,42 @@ buildPythonPackage rec {
"dbus_fast.message"
];
- # requires a running dbus daemon
- doCheck = false;
+ disabledTests = [
+ # Test require a running Dbus instance
+ "test_aio_big_message"
+ "test_aio_properties"
+ "test_aio_proxy_object"
+ "test_bus_disconnect_before_reply"
+ "test_export_alias"
+ "test_export_introspection"
+ "test_export_unexport"
+ "test_glib_big_message"
+ "test_high_level_service_fd_passing"
+ "test_interface_add_remove_signal"
+ "test_introspectable_interface"
+ "test_methods"
+ "test_name_requests"
+ "test_object_manager"
+ "test_peer_interface"
+ "test_property_changed_signal"
+ "test_property_changed_signal"
+ "test_property_methods"
+ "test_sending_file_descriptor_low_level"
+ "test_sending_file_descriptor_with_proxy"
+ "test_sending_messages_between_buses"
+ "test_sending_signals_between_buses"
+ "test_signals"
+ "test_standard_interface_properties"
+ "test_standard_interfaces"
+ "test_tcp_connection_with_forwarding"
+ "test_unexpected_disconnect"
+ ];
meta = with lib; {
changelog = "https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v${version}";
- description = "A faster version of dbus-next";
- homepage = "https://github.com/Bluetooth-Devices/dbus-fast";
+ description = "Faster version of dbus-next";
+ homepage = "https://github.com/bluetooth-devices/dbus-fast";
license = licenses.mit;
- maintainers = lib.teams.home-assistant.members;
+ maintainers = with maintainers; [ fab ];
};
}
diff --git a/pkgs/development/python-modules/dnslib/default.nix b/pkgs/development/python-modules/dnslib/default.nix
index 16d1dd356861..2d70c00579eb 100644
--- a/pkgs/development/python-modules/dnslib/default.nix
+++ b/pkgs/development/python-modules/dnslib/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "dnslib";
- version = "0.9.20";
+ version = "0.9.21";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-ApCrXQj6vR74XvFD0cM/3NVJyy5Qd57BpCOZiw0LKUU=";
+ sha256 = "sha256-IXabARWP5wvokSF1Q0nyg13M3yHVwBHOyfoopI+lVdQ=";
};
checkPhase = "VERSIONS=${python.interpreter} ./run_tests.sh";
diff --git a/pkgs/development/python-modules/forecast-solar/default.nix b/pkgs/development/python-modules/forecast-solar/default.nix
index a1d3741584ca..3485ab85c6cb 100644
--- a/pkgs/development/python-modules/forecast-solar/default.nix
+++ b/pkgs/development/python-modules/forecast-solar/default.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "forecast-solar";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "forecast_solar";
- rev = version;
- sha256 = "sha256-2gex50QEN55uUa8SfAQA7iDZ3SVnpOTXfD3Sxq7KvNw=";
+ rev = "refs/tags/${version}";
+ sha256 = "sha256-1xRbTOeBHzLmf0FJwsrg/4+Z2Fs7uwbQwS2Tm41mNRk=";
};
PACKAGE_VERSION = version;
diff --git a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
index 558872f718ef..0af64ef9f686 100644
--- a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
+++ b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "google-cloud-securitycenter";
- version = "1.15.0";
+ version = "1.16.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-rWV7lY0CHrVJFOA/Yix/o3OE++wKSK5EEXOV6o5lwIo=";
+ hash = "sha256-LuC8zMJP4SF/pOUSmA0TV/U/12bo9Wg+UYxdpHaGFfM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-vision/default.nix b/pkgs/development/python-modules/google-cloud-vision/default.nix
index 0627c2b6277d..cb28a3467efb 100644
--- a/pkgs/development/python-modules/google-cloud-vision/default.nix
+++ b/pkgs/development/python-modules/google-cloud-vision/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "google-cloud-vision";
- version = "3.1.1";
+ version = "3.1.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-X8YR2tTEgcYeN6j4VfXa4AaU+uRbxabWQydc0UYXFbI=";
+ hash = "sha256-ZPuKE2GNUWD26nR+dlKAVDpQViCTCFyx+8W/448MgX4=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/hiyapyco/default.nix b/pkgs/development/python-modules/hiyapyco/default.nix
index 5ecad9656783..0742496f8a91 100644
--- a/pkgs/development/python-modules/hiyapyco/default.nix
+++ b/pkgs/development/python-modules/hiyapyco/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "hiyapyco";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchFromGitHub {
owner = "zerwes";
repo = pname;
rev = "refs/tags/release-${version}";
- sha256 = "sha256-v+q7MOJvRc8rzBzwf27jmuIHpZeYGDK7VbzB98qnhrQ=";
+ sha256 = "sha256-MVJoMnEi+319ZkhffYWYVi/wj0Ihm0nfVeEXvx7Ac/4=";
};
propagatedBuildInputs = [
@@ -21,13 +21,6 @@ buildPythonPackage rec {
jinja2
];
- postPatch = ''
- # Should no longer be needed with the next release
- # https://github.com/zerwes/hiyapyco/pull/42
- substituteInPlace setup.py \
- --replace "Jinja2>1,<3" "Jinja2>1"
- '';
-
checkPhase = ''
set -e
find test -name 'test_*.py' -exec python {} \;
diff --git a/pkgs/development/python-modules/holidays/default.nix b/pkgs/development/python-modules/holidays/default.nix
index 86a905a57e6b..ef86bbfc9ff9 100644
--- a/pkgs/development/python-modules/holidays/default.nix
+++ b/pkgs/development/python-modules/holidays/default.nix
@@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "holidays";
- version = "0.15";
+ version = "0.16";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-vfRsiuLvGO9bOoDgoY+OLVxDw0dW6siTDGKNxI1R3g4=";
+ hash = "sha256-HX9P1rGYApj7uzMWsNV/pvFbUxMHTNrMEqOrk788pc0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/hvac/default.nix b/pkgs/development/python-modules/hvac/default.nix
index c30566a45109..9cbc361c1da6 100644
--- a/pkgs/development/python-modules/hvac/default.nix
+++ b/pkgs/development/python-modules/hvac/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "hvac";
- version = "0.11.2";
+ version = "1.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "f905c59d32d88d3f67571fe5a8a78de4659e04798ad809de439f667247d13626";
+ sha256 = "sha256-5AKMXA7Me3/PalTSkPmSQOWrzbn/5ELRwU8GExDUxhw=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/miniupnpc/default.nix b/pkgs/development/python-modules/miniupnpc/default.nix
index 316f5c0853f6..3eb92d770df0 100644
--- a/pkgs/development/python-modules/miniupnpc/default.nix
+++ b/pkgs/development/python-modules/miniupnpc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, buildPythonPackage, fetchPypi }:
+{ stdenv, lib, buildPythonPackage, fetchPypi, cctools, which }:
buildPythonPackage rec {
pname = "miniupnpc";
@@ -9,8 +9,9 @@ buildPythonPackage rec {
sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y";
};
+ nativeBuildInputs = lib.optionals stdenv.isDarwin [ cctools which ];
+
meta = with lib; {
- broken = stdenv.isDarwin;
description = "miniUPnP client";
homepage = "http://miniupnp.free.fr/";
license = licenses.mit;
diff --git a/pkgs/development/python-modules/mwdblib/default.nix b/pkgs/development/python-modules/mwdblib/default.nix
index 69a191f16f97..74ec8b4d7505 100644
--- a/pkgs/development/python-modules/mwdblib/default.nix
+++ b/pkgs/development/python-modules/mwdblib/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "mwdblib";
- version = "4.2.1";
+ version = "4.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -22,8 +22,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
- rev = "v${version}";
- hash = "sha256-Wkqvi/buYKDoGi+4C9zkxWEiGynk9Ds8gLsdoaZCdKg=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-ovF5DljtJynIXxmq9kkqjwzAjP/Yc60CTVPXQg4Rnq8=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/packageurl-python/default.nix b/pkgs/development/python-modules/packageurl-python/default.nix
index 3caa8a5a5b68..f4fdacf2b878 100644
--- a/pkgs/development/python-modules/packageurl-python/default.nix
+++ b/pkgs/development/python-modules/packageurl-python/default.nix
@@ -1,17 +1,29 @@
-{ buildPythonPackage, fetchPypi, lib, pytestCheckHook }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, pythonOlder
+}:
buildPythonPackage rec {
pname = "packageurl-python";
- version = "0.10.1";
+ version = "0.10.3";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-86VSrHQxFs154lz7uMqPk4sG+RyipS3rqA8GoqcBB0k=";
+ hash = "sha256-oBNxqQFftcGjxi6y9yULh9FzP87VfwdeMHFeuOFeB10=";
};
- checkInputs = [ pytestCheckHook ];
+ checkInputs = [
+ pytestCheckHook
+ ];
- pythonImportsCheck = [ "packageurl" ];
+ pythonImportsCheck = [
+ "packageurl"
+ ];
meta = with lib; {
description = "Python parser and builder for package URLs";
diff --git a/pkgs/development/python-modules/persistent/default.nix b/pkgs/development/python-modules/persistent/default.nix
index 5b5462cf4757..cb0b8ecf091d 100644
--- a/pkgs/development/python-modules/persistent/default.nix
+++ b/pkgs/development/python-modules/persistent/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "persistent";
- version = "4.9.0";
+ version = "4.9.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-RwGzHYHBBCJlclrzkEUOnZFq10ucF4twEAU4U1keDGo=";
+ hash = "sha256-pfkeAJD5OS/TJNl/TCpjbJI5lYKCOM2i4/vMaxu8RoY=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/psycopg/default.nix b/pkgs/development/python-modules/psycopg/default.nix
index 1f096ccac321..a2c4e8dcc897 100644
--- a/pkgs/development/python-modules/psycopg/default.nix
+++ b/pkgs/development/python-modules/psycopg/default.nix
@@ -32,13 +32,13 @@
let
pname = "psycopg";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchFromGitHub {
owner = "psycopg";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-PrWHjs8PLmx7bgKtyhXaiSKmz9oT2OhXDkKd4xi7e0A=";
+ hash = "sha256-44aJeefBpNcD+ns4WD8/G8NVsPKLQFJ72lhAJ4pP1g0=";
};
patches = [
diff --git a/pkgs/development/python-modules/pycurl/default.nix b/pkgs/development/python-modules/pycurl/default.nix
index 4b0e215f22c1..ab8a5a7e01dc 100644
--- a/pkgs/development/python-modules/pycurl/default.nix
+++ b/pkgs/development/python-modules/pycurl/default.nix
@@ -1,4 +1,5 @@
{ lib
+, stdenv
, buildPythonPackage
, isPyPy
, fetchPypi
@@ -72,6 +73,9 @@ buildPythonPackage rec {
"test_libcurl_ssl_gnutls"
# AssertionError: assert 'crypto' in ['curl']
"test_ssl_in_static_libs"
+ ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
+ # Fatal Python error: Segmentation fault
+ "cadata_test"
];
meta = with lib; {
diff --git a/pkgs/development/python-modules/pykeyatome/default.nix b/pkgs/development/python-modules/pykeyatome/default.nix
index a9bfb58a9c18..a3d6195471ea 100644
--- a/pkgs/development/python-modules/pykeyatome/default.nix
+++ b/pkgs/development/python-modules/pykeyatome/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "pykeyatome";
- version = "1.5.2";
+ version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "jugla";
repo = "pyKeyAtome";
rev = "refs/tags/V${version}";
- sha256 = "sha256-9J8MaQs3+/Ld+v3WmA98lSu3iMrX4Se4q1jD1KeRTpw=";
+ sha256 = "sha256-rmiZ687h8imJXxyepDZor9JyjT2jbg1Lsd5oUtsQtro=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pylitterbot/default.nix b/pkgs/development/python-modules/pylitterbot/default.nix
index 93c5fb3b2684..f08235d9abdd 100644
--- a/pkgs/development/python-modules/pylitterbot/default.nix
+++ b/pkgs/development/python-modules/pylitterbot/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "pylitterbot";
- version = "2022.9.2";
+ version = "2022.9.5";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "natekspencer";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-iGif349AhrqcJnaZZdGc7x4KD7u4oStmKWxIY/knMww=";
+ hash = "sha256-sTHMu2HNO0VA86bym0lt810aJ9yYN9PYHcw18Qu7e7c=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/pyoverkiz/default.nix b/pkgs/development/python-modules/pyoverkiz/default.nix
index 43a99ef73be0..640cad81a5e6 100644
--- a/pkgs/development/python-modules/pyoverkiz/default.nix
+++ b/pkgs/development/python-modules/pyoverkiz/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "pyoverkiz";
- version = "1.5.2";
+ version = "1.5.3";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "iMicknl";
repo = "python-overkiz-api";
rev = "refs/tags/v${version}";
- hash = "sha256-UIArc0NBg4FM2FjW7r798xbvw5S8gsGiTq7RdQp969E=";
+ hash = "sha256-1PTlNW40lqg10c1wtAqwIvUwanDFgg81DIZNbfaHhXE=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/pyupgrade/default.nix b/pkgs/development/python-modules/pyupgrade/default.nix
index b8d4fee93c2a..8c7bf8bbb607 100644
--- a/pkgs/development/python-modules/pyupgrade/default.nix
+++ b/pkgs/development/python-modules/pyupgrade/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "pyupgrade";
- version = "2.37.3";
+ version = "2.38.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "asottile";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-woHYMzk1xLDfJ14UycPlbaMG8mHeBixqDvs9vO0TKQI=";
+ sha256 = "sha256-dSCo6qB7ON0V2BZoVVaV3X2VMgrjBwZ18wiiDj/+U94=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/pyxbe/default.nix b/pkgs/development/python-modules/pyxbe/default.nix
index 22e19cd3bbfb..929a02ac4751 100644
--- a/pkgs/development/python-modules/pyxbe/default.nix
+++ b/pkgs/development/python-modules/pyxbe/default.nix
@@ -7,7 +7,7 @@
buildPythonPackage rec {
pname = "pyxbe";
- version = "1.0.0";
+ version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "mborgerson";
repo = pname;
- rev = "v${version}";
+ rev = "refs/tags/v${version}";
hash = "sha256-oOY0g1F5sxGUxXAT19Ygq5q7pnxEhIAKmyYELR1PHEA=";
};
diff --git a/pkgs/development/python-modules/pyxnat/default.nix b/pkgs/development/python-modules/pyxnat/default.nix
index a72b46037753..1dcacf19a13a 100644
--- a/pkgs/development/python-modules/pyxnat/default.nix
+++ b/pkgs/development/python-modules/pyxnat/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "pyxnat";
- version = "1.4";
+ version = "1.5";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "22524120d744b50d25ef6bfc7052637e4ead9e2afac92563231ec89848f5adf5";
+ sha256 = "sha256-Y8mj6OfZXyE1q3C8HyVzGySuZB6rLSsL/CV/7axxaec=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/schwifty/default.nix b/pkgs/development/python-modules/schwifty/default.nix
index 84b411de9059..1ebbda5481a4 100644
--- a/pkgs/development/python-modules/schwifty/default.nix
+++ b/pkgs/development/python-modules/schwifty/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "schwifty";
- version = "2022.7.1";
+ version = "2022.9.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-X0zp35iF/nQhHxm5WfRvrODRt7mkHTKP6zYMZlCTAa8=";
+ sha256 = "sha256-/zxK0pUfg5G5w9E+QBt1H12Ld5gWc+WakQdNVRMSFiA=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/streamdeck/default.nix b/pkgs/development/python-modules/streamdeck/default.nix
index 7d7f00710377..28d547f52ad1 100644
--- a/pkgs/development/python-modules/streamdeck/default.nix
+++ b/pkgs/development/python-modules/streamdeck/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "streamdeck";
- version = "0.9.1";
+ version = "0.9.2";
src = fetchPypi {
inherit pname version;
- sha256 = "0116a376afc18f3abbf79cc1a4409f81472e19197d5641b9e97e697d105cbdc0";
+ sha256 = "sha256-XhNB/flNju2XdOMbVo7X4dhGCqNEV1314PDFC9Ma3nw=";
};
patches = [
diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix
index 9eae17b3e178..7f50fc8f3023 100644
--- a/pkgs/development/python-modules/tempest/default.nix
+++ b/pkgs/development/python-modules/tempest/default.nix
@@ -28,11 +28,11 @@
buildPythonApplication rec {
pname = "tempest";
- version = "31.1.0";
+ version = "32.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-EaDFnIxaAGBDViAVzMjZev3jXmb3NIlMlcg4BiwoAq4=";
+ sha256 = "sha256-MPaGhT2H8Hzk29qylQru9Z6QaRrHM+9I7N5qhe9Wts4=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/textdistance/default.nix b/pkgs/development/python-modules/textdistance/default.nix
index 598d6022d393..9b50727e7312 100644
--- a/pkgs/development/python-modules/textdistance/default.nix
+++ b/pkgs/development/python-modules/textdistance/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "textdistance";
- version = "4.4.0";
+ version = "4.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-MzGJQ/TV1fBdV3oNvtseToO/ajUVPovOrOUsxR4fCOM=";
+ sha256 = "sha256-Nk1D9PZjV0JmLj5s9TcqhoWUFshKPJsu+dZtRPWkOFw=";
};
# There aren't tests
diff --git a/pkgs/development/python-modules/thermobeacon-ble/default.nix b/pkgs/development/python-modules/thermobeacon-ble/default.nix
index db9f5746ba6c..cce24dae6b5e 100644
--- a/pkgs/development/python-modules/thermobeacon-ble/default.nix
+++ b/pkgs/development/python-modules/thermobeacon-ble/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "thermobeacon-ble";
- version = "0.3.1";
+ version = "0.3.2";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "bluetooth-devices";
repo = pname;
rev = "v${version}";
- hash = "sha256-OvSvhOcJSThKyLXHhiwEZtCrYt6+KB5iArUKjfoi2OI=";
+ hash = "sha256-wzDujKJkUzbzZZ9FYTz78cYF06n8REF1TQiAbePDFJc=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/transformers/default.nix b/pkgs/development/python-modules/transformers/default.nix
index 6fa19c410c52..3b6fa67467d2 100644
--- a/pkgs/development/python-modules/transformers/default.nix
+++ b/pkgs/development/python-modules/transformers/default.nix
@@ -24,7 +24,7 @@
buildPythonPackage rec {
pname = "transformers";
- version = "4.21.3";
+ version = "4.22.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -33,7 +33,7 @@ buildPythonPackage rec {
owner = "huggingface";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-rIiue8GEeZy2tF/cjsXvX9WC9nQnZKNMykNMTeneMjo=";
+ hash = "sha256-Vp+/zAlmTExOyvwLyGQSVLupGk+G9lCXMgbbJiCFOuc=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/types-protobuf/default.nix b/pkgs/development/python-modules/types-protobuf/default.nix
index 645b495852b0..803e6fce2512 100644
--- a/pkgs/development/python-modules/types-protobuf/default.nix
+++ b/pkgs/development/python-modules/types-protobuf/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "types-protobuf";
- version = "3.20.2";
+ version = "3.20.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-z7drXrpRSAd5ZgMAYTTMw2FDLdBhqMy42yz5EIpFQ2k=";
+ sha256 = "sha256-quZASpyQKXDaM5d9G8RM665JV6XO7O1lC5r6+zYFG7I=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix
index b31af8f36f52..e001ce95d03e 100644
--- a/pkgs/development/python-modules/velbus-aio/default.nix
+++ b/pkgs/development/python-modules/velbus-aio/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "velbus-aio";
- version = "20212.6.2";
+ version = "2022.9.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "Cereal2nd";
repo = pname;
rev = version;
- sha256 = "sha256-MqSqwyfNICEU6h7+HAep3z1Uak30rlQ6noWEB3awVpA=";
+ sha256 = "sha256-sJ90vfw3JefDsafmEc5sUtPxlQJ4CPtWHpY+mp1cMw8=";
fetchSubmodules = true;
};
diff --git a/pkgs/development/tools/backblaze-b2/default.nix b/pkgs/development/tools/backblaze-b2/default.nix
index f8065c4f7b70..78224176e5a0 100644
--- a/pkgs/development/tools/backblaze-b2/default.nix
+++ b/pkgs/development/tools/backblaze-b2/default.nix
@@ -2,12 +2,12 @@
python3Packages.buildPythonApplication rec {
pname = "backblaze-b2";
- version = "3.5.0";
+ version = "3.6.0";
src = python3Packages.fetchPypi {
inherit version;
pname = "b2";
- sha256 = "sha256-vyqExulsV0wDijLotPO3RAOk9o4ne0Vq74KJKhSBrvo=";
+ sha256 = "sha256-qHnnUTSLY1yncqIjG+IMLoNauvgwU04qsvH7dZZ8AlI=";
};
postPatch = ''
@@ -32,6 +32,7 @@ python3Packages.buildPythonApplication rec {
checkInputs = with python3Packages; [
backoff
+ more-itertools
pytestCheckHook
];
diff --git a/pkgs/development/tools/buf/default.nix b/pkgs/development/tools/buf/default.nix
index 95d919155cc6..afd39ecc2d3b 100644
--- a/pkgs/development/tools/buf/default.nix
+++ b/pkgs/development/tools/buf/default.nix
@@ -10,26 +10,22 @@
buildGoModule rec {
pname = "buf";
- version = "1.7.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "bufbuild";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-ALqyl5GLOxwsojR0/hfjO4yD3AEkyQK+faa3smMW94c=";
+ sha256 = "sha256-yU1xPOnSQXrYdF24EsXb/x+IfoQFjIbW1KEt//7Fl5Q=";
};
- vendorSha256 = "sha256-K+CAC2OrmjzpRF0DLSYp21BgvkxtJCF2FdpzYx/CqGI=";
+ vendorSha256 = "sha256-zEcKfMib/4/GfQC7M3f8R3v/hGh9F/KtjFs+pXDzbFk=";
patches = [
# Skip a test that requires networking to be available to work.
./skip_test_requiring_network.patch
# Skip TestWorkspaceGit which requires .git and commits.
./skip_test_requiring_dotgit.patch
- # Skips the invalid_upstream test as it is flakey. Based on upstream commit
- # 27930caf2eb35c2592a77f59ed5afe4d9e2fb7ea.
- # This patch may be removed on the next buf update.
- ./skip_test_invalid_upstream_flakey.patch
];
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/development/tools/buf/skip_test_invalid_upstream_flakey.patch b/pkgs/development/tools/buf/skip_test_invalid_upstream_flakey.patch
deleted file mode 100644
index db62f6a40260..000000000000
--- a/pkgs/development/tools/buf/skip_test_invalid_upstream_flakey.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/private/bufpkg/bufstudioagent/bufstudioagent_test.go b/private/bufpkg/bufstudioagent/bufstudioagent_test.go
-index 6e010937..9cacc082 100644
---- a/private/bufpkg/bufstudioagent/bufstudioagent_test.go
-+++ b/private/bufpkg/bufstudioagent/bufstudioagent_test.go
-@@ -186,6 +186,19 @@ func testPlainPostHandlerErrors(t *testing.T, upstreamServer *httptest.Server) {
- })
-
- t.Run("invalid_upstream", func(t *testing.T) {
-+ // TODO: unskip this test. This is flaky because of two reasons:
-+ //
-+ // 1. When a connection is closed, the underlying HTTP client does not
-+ // always knows it, since the http handler implementation in go has no way
-+ // of changing the connection timeout. See:
-+ // https://github.com/golang/go/issues/16100
-+ //
-+ // 2. The expected status code is `StatusBadGateway` since the issue
-+ // happened client-side (a response never came back from the server). This
-+ // is not deterministic in the business logic because we're based on the
-+ // connect error code that's returned. See
-+ // https://linear.app/bufbuild/issue/BSR-383/flaky-test-in-bufstudioagent-testgo
-+ t.SkipNow()
- listener, err := net.Listen("tcp", "127.0.0.1:")
- require.NoError(t, err)
- go func() {
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_3/default.nix b/pkgs/development/tools/build-managers/bazel/bazel_3/default.nix
index 6544db85a7f3..9703590bd4a7 100644
--- a/pkgs/development/tools/build-managers/bazel/bazel_3/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/bazel_3/default.nix
@@ -211,6 +211,10 @@ stdenv.mkDerivation rec {
src = ../bazel_rc.patch;
bazelSystemBazelRCPath = bazelRC;
})
+
+ # disable suspend detection during a build inside Nix as this is
+ # not available inside the darwin sandbox
+ ../bazel_darwin_sandbox.patch
] ++ lib.optional enableNixHacks ../nix-hacks.patch;
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_4/default.nix b/pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
index 511234a1e595..99897364e6af 100644
--- a/pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/bazel_4/default.nix
@@ -246,6 +246,10 @@ stdenv.mkDerivation rec {
src = ../bazel_rc.patch;
bazelSystemBazelRCPath = bazelRC;
})
+
+ # disable suspend detection during a build inside Nix as this is
+ # not available inside the darwin sandbox
+ ../bazel_darwin_sandbox.patch
] ++ lib.optional enableNixHacks ../nix-hacks.patch;
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_5/bazel_darwin_sandbox.patch b/pkgs/development/tools/build-managers/bazel/bazel_5/bazel_darwin_sandbox.patch
new file mode 100644
index 000000000000..725b901f893e
--- /dev/null
+++ b/pkgs/development/tools/build-managers/bazel/bazel_5/bazel_darwin_sandbox.patch
@@ -0,0 +1,11 @@
+diff -ru a/src/main/native/unix_jni_darwin.cc b/src/main/native/unix_jni_darwin.cc
+--- a/src/main/native/unix_jni_darwin.cc 1980-01-01 00:00:00.000000000 -0500
++++ b/src/main/native/unix_jni_darwin.cc 2021-11-27 20:35:29.000000000 -0500
+@@ -270,6 +270,7 @@
+ }
+
+ void portable_start_suspend_monitoring() {
++ if (getenv("NIX_BUILD_TOP")) return;
+ static dispatch_once_t once_token;
+ static SuspendState suspend_state;
+ dispatch_once(&once_token, ^{
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix b/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
index 0c06d6128317..491a02d74d0d 100644
--- a/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
@@ -9,7 +9,7 @@
# updater
, python27, python3, writeScript
# Apple dependencies
-, cctools, libcxx, CoreFoundation, CoreServices, Foundation
+, cctools, libcxx, sigtool, CoreFoundation, CoreServices, Foundation
# Allow to independently override the jdks used to build and run respectively
, buildJdk, runJdk
, runtimeShell
@@ -208,6 +208,10 @@ stdenv.mkDerivation rec {
src = ../bazel_rc.patch;
bazelSystemBazelRCPath = bazelRC;
})
+
+ # disable suspend detection during a build inside Nix as this is
+ # not available inside the darwin sandbox
+ ./bazel_darwin_sandbox.patch
] ++ lib.optional enableNixHacks ../nix-hacks.patch;
@@ -378,7 +382,7 @@ stdenv.mkDerivation rec {
# clang installed from Xcode has a compatibility wrapper that forwards
# invocations of gcc to clang, but vanilla clang doesn't
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
-
+ 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
sed -i -e 's;"/usr/bin/libtool";_find_generic(repository_ctx, "libtool", "LIBTOOL", overriden_tools);g' tools/cpp/unix_cc_configure.bzl
wrappers=( tools/cpp/osx_cc_wrapper.sh tools/cpp/osx_cc_wrapper.sh.tpl )
for wrapper in "''${wrappers[@]}"; do
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_darwin_sandbox.patch b/pkgs/development/tools/build-managers/bazel/bazel_darwin_sandbox.patch
new file mode 100644
index 000000000000..87e6c99287fb
--- /dev/null
+++ b/pkgs/development/tools/build-managers/bazel/bazel_darwin_sandbox.patch
@@ -0,0 +1,11 @@
+diff -ru a/src/main/native/unix_jni_darwin.cc b/src/main/native/unix_jni_darwin.cc
+--- a/src/main/native/unix_jni_darwin.cc 1980-01-01 00:00:00.000000000 -0500
++++ b/src/main/native/unix_jni_darwin.cc 2021-11-27 20:35:29.000000000 -0500
+@@ -270,6 +270,7 @@
+ }
+
+ int portable_suspend_count() {
++ if (getenv("NIX_BUILD_TOP")) return 0;
+ static dispatch_once_t once_token;
+ static SuspendState suspend_state;
+ dispatch_once(&once_token, ^{
diff --git a/pkgs/development/tools/database/pg_activity/default.nix b/pkgs/development/tools/database/pg_activity/default.nix
index efa32358b2dc..f7e034a9a77c 100644
--- a/pkgs/development/tools/database/pg_activity/default.nix
+++ b/pkgs/development/tools/database/pg_activity/default.nix
@@ -2,14 +2,14 @@
python3Packages.buildPythonApplication rec {
pname = "pg_activity";
- version = "2.3.1";
+ version = "3.0.0";
disabled = python3Packages.pythonOlder "3.6";
src = fetchFromGitHub {
owner = "dalibo";
repo = pname;
rev = "refs/tags/v${version}";
- sha256 = "sha256-oStoZVFf0g1Dj2m+T+8caiKS0o1CnhtQNe/GbnlVUCM=";
+ sha256 = "sha256-MJZS5+i3s5fTFcgw5zt3GeJKKZ/GS66scuUAW9Fu73A=";
};
propagatedBuildInputs = with python3Packages; [
diff --git a/pkgs/development/tools/dyff/default.nix b/pkgs/development/tools/dyff/default.nix
index c124749b6fd0..beb3cd3f98a3 100644
--- a/pkgs/development/tools/dyff/default.nix
+++ b/pkgs/development/tools/dyff/default.nix
@@ -52,6 +52,6 @@ buildGoModule rec {
'';
homepage = "https://github.com/homeport/dyff";
license = licenses.mit;
- maintainers = with maintainers; [ edlimerkaj ];
+ maintainers = with maintainers; [ edlimerkaj jceb ];
};
}
diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix
index 7ce4e8c6e4e6..c44b6b506e21 100644
--- a/pkgs/development/tools/esbuild/default.nix
+++ b/pkgs/development/tools/esbuild/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "esbuild";
- version = "0.15.7";
+ version = "0.15.8";
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
- sha256 = "sha256-iud6nSZYclIPfM1n7xG2XCo90FjaHK/nd40jEcSnuIc=";
+ sha256 = "sha256-9CECbM/0sl9RR0OudyABcchbMZa8Ug5CmaWZ/DYS0m8=";
};
vendorSha256 = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
diff --git a/pkgs/development/tools/misc/circleci-cli/default.nix b/pkgs/development/tools/misc/circleci-cli/default.nix
index 4df111b7a8bb..012cf9301d21 100644
--- a/pkgs/development/tools/misc/circleci-cli/default.nix
+++ b/pkgs/development/tools/misc/circleci-cli/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "circleci-cli";
- version = "0.1.21091";
+ version = "0.1.21194";
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-k8NeqGlhxYLZ4KAuX7eyCi5dIjYIx2z8Xb2JJb2H5Y0=";
+ sha256 = "sha256-YBo0Td4UEr27AU1yqwXNKWjfWYMuKdgmRNmNUfgL3F0=";
};
- vendorSha256 = "sha256-jrAd1G/NCjXfaJmzOhMjMZfJoGHsQ1bi3HudBM0e8rE=";
+ vendorSha256 = "sha256-vydx3ZaVSpIn5nncuQhRVQqZ7920n1NAoZIHFvzrQgo=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/development/tools/mold/default.nix b/pkgs/development/tools/mold/default.nix
index 63a2fd581269..1d4a64d4467e 100644
--- a/pkgs/development/tools/mold/default.nix
+++ b/pkgs/development/tools/mold/default.nix
@@ -1,48 +1,54 @@
-{ stdenv
+{ lib
+, stdenv
, fetchFromGitHub
-, lib
-, autoPatchelfHook
, cmake
-, llvmPackages_latest
-, xxHash
-, zlib
+, mimalloc
+, ninja
, openssl
-, nix-update-script
+, zlib
+, testers
+, mold
}:
stdenv.mkDerivation rec {
pname = "mold";
- version = "1.4.0";
+ version = "1.4.2";
src = fetchFromGitHub {
owner = "rui314";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-d1rSmDPiVHpYbDPWQKkDhcJJklKlM1+vGdzvjICTT14=";
+ hash = "sha256-omi4vx8KDpgZ/y3MvE5c/9MxSLXIA4IHJAMue3XpfD8=";
};
- buildInputs = [ zlib openssl ];
- nativeBuildInputs = [ autoPatchelfHook cmake xxHash ];
+ nativeBuildInputs = [ cmake ninja ];
- enableParallelBuilding = true;
- dontUseCmakeConfigure = true;
- EXTRA_LDFLAGS = "-fuse-ld=${llvmPackages_latest.lld}/bin/ld.lld";
- LTO = 1;
- makeFlags = [ "PREFIX=${placeholder "out"}" ];
+ buildInputs = [ openssl zlib ]
+ ++ lib.optionals (!stdenv.isDarwin) [ mimalloc ];
- passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
- };
+ postPatch = ''
+ sed -i CMakeLists.txt -e '/.*set(DEST\ .*/d'
+ '';
+
+ cmakeFlags = [ "-DMOLD_USE_SYSTEM_MIMALLOC:BOOL=ON" ];
+
+ NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [ "-faligned-allocation" ];
+
+ passthru.tests.version = testers.testVersion { package = mold; };
meta = with lib; {
- description = "A high performance drop-in replacement for existing unix linkers";
+ description = "A faster drop-in replacement for existing Unix linkers";
+ longDescription = ''
+ mold is a faster drop-in replacement for existing Unix linkers. It is
+ several times faster than the LLVM lld linker. mold is designed to
+ increase developer productivity by reducing build time, especially in
+ rapid debug-edit-rebuild cycles.
+ '';
homepage = "https://github.com/rui314/mold";
- license = lib.licenses.agpl3Plus;
- maintainers = with maintainers; [ nitsky ];
+ license = licenses.agpl3Plus;
+ maintainers = with maintainers; [ azahi nitsky ];
platforms = platforms.unix;
- # error: aligned deallocation function of type 'void (void *, std::align_val_t) noexcept' is only available on macOS 10.14 or newer
- broken = stdenv.isAarch64 || stdenv.isDarwin;
+ # https://github.com/NixOS/nixpkgs/pull/189712#issuecomment-1237791234
+ broken = (stdenv.isLinux && stdenv.isAarch64);
};
}
diff --git a/pkgs/development/tools/nil/default.nix b/pkgs/development/tools/nil/default.nix
index 72684f89e1d4..f32f4693ed2f 100644
--- a/pkgs/development/tools/nil/default.nix
+++ b/pkgs/development/tools/nil/default.nix
@@ -1,7 +1,7 @@
{ lib, rustPlatform, fetchFromGitHub }:
let
- date = "2022-09-10";
+ date = "2022-09-19";
in
rustPlatform.buildRustPackage rec {
@@ -12,10 +12,10 @@ rustPlatform.buildRustPackage rec {
owner = "oxalica";
repo = pname;
rev = date;
- sha256 = "sha256-yqg46An5TPl6wsv5xflK4T90fTho4KXIILoV71jSl28=";
+ sha256 = "sha256-WdBRfp0shz6Xhwx0fEUQwROK52XNDTkmhC2xkdT+INA=";
};
- cargoSha256 = "sha256-MabVHbNGWpeUztwedXRXHBfgEostxk0aWpGCHlpnhJo=";
+ cargoSha256 = "sha256-J1CRe5xPl428mwOO4kDxLyPBc0mtzl3iU4mUqW5d4+E=";
CFG_DATE = date;
diff --git a/pkgs/development/tools/remodel/default.nix b/pkgs/development/tools/remodel/default.nix
index 4f3eb67b7fef..75c5ff2df3da 100644
--- a/pkgs/development/tools/remodel/default.nix
+++ b/pkgs/development/tools/remodel/default.nix
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "remodel";
- version = "0.10.0";
+ version = "0.11.0";
src = fetchFromGitHub {
owner = "rojo-rbx";
repo = "remodel";
rev = "v${version}";
- sha256 = "sha256-bUwTryGc4Y614nXKToPXp5KZqO12MmtdT3FUST4OvQY=";
+ sha256 = "sha256-tZ6ptGeNBULJaoFomMFN294wY8YUu1SrJh4UfOL/MnI=";
};
- cargoSha256 = "sha256-b9+eV2co4hcKLZxJRqDIX2U0O25Ba5UHQiNpfjE4fN4=";
+ cargoSha256 = "sha256-YCYs+MMTxnJEKhzjddBp7lnSYPrpf3G+ktr1ez/ZKkg=";
nativeBuildInputs = [
pkg-config
diff --git a/pkgs/development/tools/rust/cargo-espflash/default.nix b/pkgs/development/tools/rust/cargo-espflash/default.nix
index cd9e85c06697..0e3876cbe9b0 100644
--- a/pkgs/development/tools/rust/cargo-espflash/default.nix
+++ b/pkgs/development/tools/rust/cargo-espflash/default.nix
@@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-espflash";
- version = "1.6.0";
+ version = "1.7.0";
src = fetchFromGitHub {
owner = "esp-rs";
repo = "espflash";
rev = "v${version}";
- sha256 = "sha256-YQ621YbdEy2sS4uEYvgnQU1G9iW5SpWNObPH4BfyeF0=";
+ sha256 = "sha256-AauIneSnacnY4mulD/qUgfN4K9tLzZXFug0oEsDuj18=";
};
nativeBuildInputs = [
@@ -19,12 +19,12 @@ rustPlatform.buildRustPackage rec {
udev
];
- cargoSha256 = "sha256-mDSNjeaEtYpEGpiIg2F+e8x/XCssNQxUx+6Cj+8XX5Q=";
+ cargoSha256 = "sha256-82o3B6qmBVPpBVAogClmTbxrBRXY8Lmd2sHmonP5/s8=";
meta = with lib; {
description = "Serial flasher utility for Espressif SoCs and modules based on esptool.py";
homepage = "https://github.com/esp-rs/cargo-espflash";
- license = licenses.gpl2Only;
+ license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ matthiasbeyer ];
};
}
diff --git a/pkgs/development/tools/rust/cargo-fund/default.nix b/pkgs/development/tools/rust/cargo-fund/default.nix
index 116f408fb1ea..d5fbb47f7bb4 100644
--- a/pkgs/development/tools/rust/cargo-fund/default.nix
+++ b/pkgs/development/tools/rust/cargo-fund/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-fund";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "acfoltzer";
repo = pname;
rev = version;
- sha256 = "sha256-MlAFnwX++OYRzqhEcSjxNzmSyJiVE5t6UuCKy9J+SsQ=";
+ sha256 = "sha256-hUTBDC2XU82jc9TbyCYVKgWxrKG/OIc1a+fEdj5566M=";
};
- cargoSha256 = "sha256-pI5iz/V7/2jH3t3W3fuLzqd6oJC3PqHIWEJhDLmjLI0=";
+ cargoSha256 = "sha256-cU/X+oNTMjUSODkdm+P+vVLmBJlkeQ9WTJGvQmUOQKw=";
# The tests need a GitHub API token.
doCheck = false;
diff --git a/pkgs/development/tools/rust/cargo-hack/default.nix b/pkgs/development/tools/rust/cargo-hack/default.nix
new file mode 100644
index 000000000000..08cc12967d1e
--- /dev/null
+++ b/pkgs/development/tools/rust/cargo-hack/default.nix
@@ -0,0 +1,24 @@
+{ lib, rustPlatform, fetchCrate }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "cargo-hack";
+ version = "0.5.18";
+
+ src = fetchCrate {
+ inherit pname version;
+ sha256 = "sha256-EtM5nGbsvwWiQGKrakMiToz7Hy6xoE3C6JsD2+JBpaA=";
+ };
+
+ cargoSha256 = "sha256-3O9j9I6iMsgQl1nhXfdI5sNnnt71FBidQh+bqjpuPhc=";
+
+ # some necessary files are absent in the crate version
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Cargo subcommand to provide various options useful for testing and continuous integration";
+ changelog = "https://github.com/taiki-e/cargo-hack/blob/v${version}/CHANGELOG.md";
+ homepage = "https://github.com/taiki-e/cargo-hack";
+ license = with licenses; [ asl20 /* or */ mit ];
+ maintainers = with maintainers; [ figsoda ];
+ };
+}
diff --git a/pkgs/development/tools/rust/cargo-license/default.nix b/pkgs/development/tools/rust/cargo-license/default.nix
index 8d6e8ca6ebfe..5d2f8765cdf9 100644
--- a/pkgs/development/tools/rust/cargo-license/default.nix
+++ b/pkgs/development/tools/rust/cargo-license/default.nix
@@ -2,19 +2,19 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-license";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-z68idQqjH0noNZLwoTtnLrIOXZPG4kAYS9+7yrFXKOA=";
+ sha256 = "sha256-M/QGM8jPLrDIoF1TVYDoVcHni1qaRCyZwHlYgia24Ro=";
};
- cargoSha256 = "sha256-8QgDKgJC5l2h5ysQaICjToI7gGxnmlolTwEtxHJMlj8=";
+ cargoSha256 = "sha256-2m+ornrQQzijyF30uQ6xpEiid6r6I1wTa8nn6Q0wNKo=";
meta = with lib; {
description = "Cargo subcommand to see license of dependencies";
homepage = "https://github.com/onur/cargo-license";
license = with licenses; [ mit ];
- maintainers = with maintainers; [ basvandijk ];
+ maintainers = with maintainers; [ basvandijk figsoda ];
};
}
diff --git a/pkgs/development/tools/rust/sqlx-cli/default.nix b/pkgs/development/tools/rust/sqlx-cli/default.nix
index f34efb944180..df451e863481 100644
--- a/pkgs/development/tools/rust/sqlx-cli/default.nix
+++ b/pkgs/development/tools/rust/sqlx-cli/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "sqlx-cli";
- version = "0.6.1";
+ version = "0.6.2";
src = fetchFromGitHub {
owner = "launchbadge";
repo = "sqlx";
rev = "v${version}";
- sha256 = "sha256-4XJ0dNbACCcbN5+d05H++jlRKuL+au3iOLMoBR/whOs=";
+ sha256 = "sha256-pQlrKjhOJfjNEmLxqnFmmBY1naheZUsaq2tGdLKGxjg=";
};
- cargoSha256 = "sha256-sIe+uVCzTVUTePNIBekCA/uwRG+GWGonnvzhRDwh5Y4=";
+ cargoSha256 = "sha256-AbA8L7rkyZfKW0vvjyrcW5eU6jGD+zAqIcEUOJmeqJs=";
doCheck = false;
cargoBuildFlags = [ "-p sqlx-cli" ];
diff --git a/pkgs/development/tools/selene/default.nix b/pkgs/development/tools/selene/default.nix
index 235689d97e21..e5e8d822debc 100644
--- a/pkgs/development/tools/selene/default.nix
+++ b/pkgs/development/tools/selene/default.nix
@@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "selene";
- version = "0.21.0";
+ version = "0.21.1";
src = fetchFromGitHub {
owner = "kampfkarren";
repo = pname;
rev = version;
- sha256 = "sha256-iqPQD0oDPhhD7jgnbiJvUiaxj1YZeGkgQu6p1vr1Vlw=";
+ sha256 = "sha256-a3mslAqDzUlMLBMjxScMkR4GePmpBeH+Ottd1ENum/c=";
};
- cargoSha256 = "sha256-gl4vgS/164eYP3MWRBaI3NrmlqbYZUHOwySUA7/42Qg=";
+ cargoSha256 = "sha256-nFtZDoNbUxO5YY+Mqu5W6AR+tH2zsBLMQ7EDK6A8qAg=";
nativeBuildInputs = lib.optional robloxSupport pkg-config;
diff --git a/pkgs/development/tools/vendir/default.nix b/pkgs/development/tools/vendir/default.nix
index b20db017ce3c..a4cf7d5b5956 100644
--- a/pkgs/development/tools/vendir/default.nix
+++ b/pkgs/development/tools/vendir/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "vendir";
- version = "0.30.0";
+ version = "0.31.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-vendir";
rev = "v${version}";
- sha256 = "sha256-iIqfm07qO5qf7mYHdBJVRiokRLHdE7qS2mjaeU9G3U4=";
+ sha256 = "sha256-iWEUFJAc3BNEqANByHTeGSa7KD4H14kIKEPS7eyl6PU=";
};
vendorSha256 = null;
diff --git a/pkgs/games/freedroidrpg/default.nix b/pkgs/games/freedroidrpg/default.nix
index 84fd9c154a24..dcec52a3fa6d 100644
--- a/pkgs/games/freedroidrpg/default.nix
+++ b/pkgs/games/freedroidrpg/default.nix
@@ -18,6 +18,9 @@ in stdenv.mkDerivation {
url = "https://gitlab.com/freedroid/freedroid-src/-/commit/e610d427374226b79da5258d979936459f30c761.patch";
sha256 = "1s7sw4dkc7b6i72j6x47driq6v0k3wss48l9ivd4fw40n3iaxjb1";
})
+
+ # Do not embed build flags in the binary to reduce closure size.
+ ./drop-build-deps.patch
];
nativeBuildInputs = [ pkg-config gettext python3 ];
diff --git a/pkgs/games/freedroidrpg/drop-build-deps.patch b/pkgs/games/freedroidrpg/drop-build-deps.patch
new file mode 100644
index 000000000000..d9f2d37b57c7
--- /dev/null
+++ b/pkgs/games/freedroidrpg/drop-build-deps.patch
@@ -0,0 +1,15 @@
+Do not embed paths to build-only depends (-I...SDL2-dev and friends)
+into savefile lua comments.
+--- a/src/savestruct_internal.c
++++ b/src/savestruct_internal.c
+@@ -486,8 +486,8 @@ void save_game_data(struct auto_string *strout)
+ autostr_append(strout,
+ "SAVEGAME: %s %s %s;sizeof(tux_t)=%d;sizeof(enemy)=%d;sizeof(bullet)=%d;MAXBULLETS=%d\n",
+ SAVEGAME_VERSION, SAVEGAME_REVISION, VERSION, (int)sizeof(tux_t), (int)sizeof(enemy), (int)sizeof(bullet), (int)MAXBULLETS);
+- autostr_append(strout, "BUILD_CFLAGS: %s\n", BUILD_CFLAGS);
+- autostr_append(strout, "BUILD_LDFLAGS: %s\n", BUILD_LDFLAGS);
++ autostr_append(strout, "BUILD_CFLAGS: %s\n", "");
++ autostr_append(strout, "BUILD_LDFLAGS: %s\n", "");
+ autostr_append(strout, "VERSION: %s\n", freedroid_version);
+ autostr_append(strout, "--]]\n");
+
diff --git a/pkgs/games/pokete/default.nix b/pkgs/games/pokete/default.nix
index 391faaa52b76..c11e65ad6357 100644
--- a/pkgs/games/pokete/default.nix
+++ b/pkgs/games/pokete/default.nix
@@ -7,15 +7,15 @@
python3.pkgs.buildPythonApplication rec {
pname = "pokete";
- version = "0.8.2";
+ version = "0.9.0";
format = "other";
src = fetchFromGitHub {
owner = "lxgr-linux";
repo = "pokete";
- rev = "v${version}";
- sha256 = "sha256-carQ/m7akdXLO4h5o0cE0EiQmsAyarMAV4AtG3KATYQ=";
+ rev = "refs/tags/${version}";
+ sha256 = "sha256-55BqUSZJPDz5g1FTdkuWa9wcsrLwh6YagD5bQ9ZpQv4=";
};
pythonPath = with python3.pkgs; [
diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix
index 1e6d4024270e..f2dad8812874 100644
--- a/pkgs/misc/tmux-plugins/default.nix
+++ b/pkgs/misc/tmux-plugins/default.nix
@@ -596,12 +596,12 @@ in rec {
vim-tmux-navigator = mkTmuxPlugin {
pluginName = "vim-tmux-navigator";
rtpFilePath = "vim-tmux-navigator.tmux";
- version = "unstable-2019-12-10";
+ version = "unstable-2022-08-21";
src = fetchFromGitHub {
owner = "christoomey";
repo = "vim-tmux-navigator";
- rev = "8fdf78292bb3aed1c9de880be7e03efdbf23d306";
- sha256 = "0y92na4dcfcsj5zbs3m7y6csl3sd46a9968id78cdn9cgg8iwzac";
+ rev = "afb45a55b452b9238159047ce7c6e161bd4a9907";
+ hash = "sha256-8A+Yt9uhhAP76EiqUopE8vl7/UXkgU2x000EOcF7pl0=";
};
};
diff --git a/pkgs/os-specific/linux/usbrelay/daemon.nix b/pkgs/os-specific/linux/usbrelay/daemon.nix
index e5e4baae9e99..7aa1c3f153bb 100644
--- a/pkgs/os-specific/linux/usbrelay/daemon.nix
+++ b/pkgs/os-specific/linux/usbrelay/daemon.nix
@@ -1,4 +1,4 @@
-{ stdenv, usbrelay, python3 }:
+{ stdenv, usbrelay, python3, installShellFiles }:
let
python = python3.withPackages (ps: with ps; [ usbrelay-py paho-mqtt ]);
in
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
--replace '/usr/sbin/usbrelayd' "$out/bin/usbrelayd"
'';
+ nativeBuildInputs = [ installShellFiles ];
+
buildInputs = [ python ];
dontBuild = true;
@@ -26,6 +28,7 @@ stdenv.mkDerivation rec {
install -m 644 -D usbrelayd.service $out/lib/systemd/system/usbrelayd.service
install -m 644 -D 50-usbrelay.rules $out/lib/udev/rules.d/50-usbrelay.rules
install -m 644 -D usbrelayd.conf $out/etc/usbrelayd.conf # include this as an example
+ installManPage usbrelayd.8
runHook postInstall
'';
diff --git a/pkgs/os-specific/linux/usbrelay/default.nix b/pkgs/os-specific/linux/usbrelay/default.nix
index 25388d3b2308..c5b4f2b8a53f 100644
--- a/pkgs/os-specific/linux/usbrelay/default.nix
+++ b/pkgs/os-specific/linux/usbrelay/default.nix
@@ -1,13 +1,13 @@
{ stdenv, lib, fetchFromGitHub, hidapi, installShellFiles }:
stdenv.mkDerivation rec {
pname = "usbrelay";
- version = "1.0";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "darrylb123";
repo = "usbrelay";
rev = version;
- sha256 = "sha256-5zgpN4a+r0tmw0ISTJM+d9mo+L/qwUvpWPSsykuG0cg=";
+ sha256 = "sha256-2elDrO+WaaRYdTrG40Ez00qSsNVQjXE6GdOJbWPfugE=";
};
nativeBuildInputs = [
diff --git a/pkgs/os-specific/linux/usbrelay/python.nix b/pkgs/os-specific/linux/usbrelay/python.nix
index 02d5ac284eda..b87798940909 100644
--- a/pkgs/os-specific/linux/usbrelay/python.nix
+++ b/pkgs/os-specific/linux/usbrelay/python.nix
@@ -4,6 +4,10 @@ buildPythonPackage rec {
pname = "usbrelay_py";
inherit (usbrelay) version src;
+ preConfigure = ''
+ cd usbrelay_py
+ '';
+
buildInputs = [ usbrelay ];
pythonImportsCheck = [ "usbrelay_py" ];
diff --git a/pkgs/os-specific/linux/usbrelay/test.nix b/pkgs/os-specific/linux/usbrelay/test.nix
index dc5847558a69..58e4375dab8d 100644
--- a/pkgs/os-specific/linux/usbrelay/test.nix
+++ b/pkgs/os-specific/linux/usbrelay/test.nix
@@ -42,6 +42,7 @@ import ../../../../nixos/tests/make-test-python.nix ({ pkgs, ... }: {
};
testScript = ''
+ import os
if os.waitstatus_to_exitcode(os.system("lsusb -d 16c0:05df")) != 0:
print("No USB relay detected, skipping test")
import sys
diff --git a/pkgs/servers/caddy/xcaddy/default.nix b/pkgs/servers/caddy/xcaddy/default.nix
new file mode 100644
index 000000000000..634a6aed1402
--- /dev/null
+++ b/pkgs/servers/caddy/xcaddy/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "xcaddy";
+ version = "0.3.1";
+
+ subPackages = [ "cmd/xcaddy" ];
+
+ src = fetchFromGitHub {
+ owner = "caddyserver";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-oGTtS5UlEebIqv4SM4q0YclASJNu8DNOLrGLRRAtkd8=";
+ };
+
+ patches = [
+ ./use_tmpdir_on_darwin.diff
+ ];
+
+ vendorHash = "sha256-RpbnoXyTrqGOI7DpgkO+J47P17T4QCVvM1CfS6kRO9Y=";
+
+ meta = with lib; {
+ homepage = "https://github.com/caddyserver/xcaddy";
+ description = "Build Caddy with plugins";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ tjni ];
+ };
+}
diff --git a/pkgs/servers/caddy/xcaddy/use_tmpdir_on_darwin.diff b/pkgs/servers/caddy/xcaddy/use_tmpdir_on_darwin.diff
new file mode 100644
index 000000000000..064d8feb5a05
--- /dev/null
+++ b/pkgs/servers/caddy/xcaddy/use_tmpdir_on_darwin.diff
@@ -0,0 +1,13 @@
+diff --git a/builder.go b/builder.go
+index ed6c5ef..36e8055 100644
+--- a/builder.go
++++ b/builder.go
+@@ -200,7 +200,7 @@ func NewReplace(old, new string) Replace {
+ // It is the caller's responsibility to remove the folder when finished.
+ func newTempFolder() (string, error) {
+ var parentDir string
+- if runtime.GOOS == "darwin" {
++ if false && runtime.GOOS == "darwin" {
+ // After upgrading to macOS High Sierra, Caddy builds mysteriously
+ // started missing the embedded version information that -ldflags
+ // was supposed to produce. But it only happened on macOS after
diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix
index bc347398115f..92c1e9b4a30a 100644
--- a/pkgs/servers/coturn/default.nix
+++ b/pkgs/servers/coturn/default.nix
@@ -14,13 +14,13 @@
stdenv.mkDerivation rec {
pname = "coturn";
- version = "4.5.2";
+ version = "4.6.0";
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
rev = version;
- sha256 = "1s7ncc82ny4bb3qkn3fqr0144xsr7h2y8xmzsf5037h6j8f7j3v8";
+ sha256 = "sha256-QXApGJme/uteeKS8oiVLPOYUKzxTKdSC4WMlKS0VW5Q=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/servers/dns/coredns/default.nix b/pkgs/servers/dns/coredns/default.nix
index 208c59a3ccbe..95f1565f863e 100644
--- a/pkgs/servers/dns/coredns/default.nix
+++ b/pkgs/servers/dns/coredns/default.nix
@@ -6,16 +6,16 @@
buildGoModule rec {
pname = "coredns";
- version = "1.9.4";
+ version = "1.10.0";
src = fetchFromGitHub {
owner = "coredns";
repo = "coredns";
rev = "v${version}";
- sha256 = "sha256-9+DwOSfhX+sNnvLMgHKUQSozXzT9k8u7Q1p8FvbvsTE=";
+ sha256 = "sha256-Kb4nkxuyZHJT5dqFSkqReFkN8q1uYm7wbhSIiLd8Hck=";
};
- vendorSha256 = "sha256-L4GzOY7oZlC3Et/kEBXrrQGt5/c3jHZimY7NnjXYSro=";
+ vendorSha256 = "sha256-nyMeKmGoypDrpZHYHGjhRnjgC3tbOX/dlj96pnXrdLE=";
postPatch = ''
substituteInPlace test/file_cname_proxy_test.go \
diff --git a/pkgs/servers/monitoring/prometheus/statsd-exporter.nix b/pkgs/servers/monitoring/prometheus/statsd-exporter.nix
index dbda3a7cf055..b9b130eee3ba 100644
--- a/pkgs/servers/monitoring/prometheus/statsd-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/statsd-exporter.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "statsd_exporter";
- version = "0.22.7";
+ version = "0.22.8";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "statsd_exporter";
- sha256 = "sha256-hkzgLjxFczqKKJHdVfCKPqMXVFShlS5lZoX8NA27u90=";
+ sha256 = "sha256-fzBVG3XPvaJnfsebA4muWDmkgw8kwzpOv/C68/j/tSs=";
};
- vendorSha256 = "sha256-/qc3Ui18uSDfHsXiNA63+uPSfxShz7cs3kv0rQPgCok=";
+ vendorSha256 = "sha256-EQl3ME/l0mEkqjy2DCjUBv6LVbR6OaEUkwNIBPfXiDA=";
meta = with lib; {
description = "Receives StatsD-style metrics and exports them to Prometheus";
diff --git a/pkgs/servers/web-apps/dokuwiki/default.nix b/pkgs/servers/web-apps/dokuwiki/default.nix
index 439576ed8100..e77defae33ab 100644
--- a/pkgs/servers/web-apps/dokuwiki/default.nix
+++ b/pkgs/servers/web-apps/dokuwiki/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "dokuwiki";
- version = "2022-07-31";
+ version = "2022-07-31a";
src = fetchFromGitHub {
owner = "splitbrain";
repo = pname;
rev = "release_stable_${version}";
- sha256 = "sha256-FreJsajdfoefQHo6rBzkImDUvR3Zb7rBQTYhYvyRJC4=";
+ sha256 = "sha256-gtWEtc3kbMokKycTx71XXblkDF39i926uN2kU3oOeVw=";
};
preload = writeText "preload.php" ''
diff --git a/pkgs/servers/web-apps/netbox/default.nix b/pkgs/servers/web-apps/netbox/default.nix
index 6fd8782f5826..8ef20c0aa8b5 100644
--- a/pkgs/servers/web-apps/netbox/default.nix
+++ b/pkgs/servers/web-apps/netbox/default.nix
@@ -17,13 +17,13 @@ let
in
py.pkgs.buildPythonApplication rec {
pname = "netbox";
- version = "3.3.2";
+ version = "3.3.4";
src = fetchFromGitHub {
owner = "netbox-community";
repo = pname;
rev = "refs/tags/v${version}";
- sha256 = "sha256-G7d9CG7mxdtdShWOdbbcWTVD3qrTKjh7j3MX/cTJbPw=";
+ sha256 = "sha256-bXrolmpXrO86CbS+5D8ik+Iv/Gb8f7om2ddGs/g61Sg=";
};
format = "other";
diff --git a/pkgs/shells/rc/default.nix b/pkgs/shells/rc/default.nix
index 5783607751ad..3a23a7fcc8bd 100644
--- a/pkgs/shells/rc/default.nix
+++ b/pkgs/shells/rc/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, byacc
-, ncurses, readline
+, ncurses, readline, pkgsStatic
, historySupport ? false, readlineSupport ? true }:
stdenv.mkDerivation rec {
@@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses ]
++ lib.optionals readlineSupport [ readline ];
+ CPPFLAGS = ["-DSIGCLD=SIGCHLD"];
+
configureFlags = [
"--enable-def-interp=${stdenv.shell}" #183
] ++ lib.optionals historySupport [ "--with-history" ]
@@ -31,7 +33,10 @@ stdenv.mkDerivation rec {
--replace "$(git describe || echo '(git description unavailable)')" "${builtins.substring 0 7 src.rev}"
'';
- passthru.shellPath = "/bin/rc";
+ passthru = {
+ shellPath = "/bin/rc";
+ tests.static = pkgsStatic.rc;
+ };
meta = with lib; {
description = "The Plan 9 shell";
diff --git a/pkgs/tools/admin/eksctl/default.nix b/pkgs/tools/admin/eksctl/default.nix
index f4d45b003186..7410aa0d5018 100644
--- a/pkgs/tools/admin/eksctl/default.nix
+++ b/pkgs/tools/admin/eksctl/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "eksctl";
- version = "0.111.0";
+ version = "0.112.0";
src = fetchFromGitHub {
owner = "weaveworks";
repo = pname;
rev = version;
- sha256 = "sha256-I/EYq83snTphHlOk6SgZSYpRS3RNpD2JX1fkwqEG9j0=";
+ sha256 = "sha256-kY2AE5lLP1awxfPj16MAhcxO59S3lOZOUXV2EzXDHTY=";
};
- vendorSha256 = "sha256-Dka0UbTxR2UsMkClq8t0//m+Ky7NEw3g9XP6PtTWOe4=";
+ vendorSha256 = "sha256-z/3aUSuAZSVsQ67JgUy6z3T91vKHlBjjQS4oSljl/nk=";
doCheck = false;
diff --git a/pkgs/tools/backup/rdedup/default.nix b/pkgs/tools/backup/rdedup/default.nix
index 8f3cc71de1bc..a922dcda9e44 100644
--- a/pkgs/tools/backup/rdedup/default.nix
+++ b/pkgs/tools/backup/rdedup/default.nix
@@ -28,6 +28,5 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/dpc/rdedup";
license = licenses.mpl20;
maintainers = with maintainers; [ dywedir ];
- broken = stdenv.isDarwin;
};
}
diff --git a/pkgs/tools/misc/chezmoi/default.nix b/pkgs/tools/misc/chezmoi/default.nix
index 1173deeef180..d23c4faa7e54 100644
--- a/pkgs/tools/misc/chezmoi/default.nix
+++ b/pkgs/tools/misc/chezmoi/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "chezmoi";
- version = "2.22.1";
+ version = "2.23.0";
src = fetchFromGitHub {
owner = "twpayne";
repo = "chezmoi";
rev = "v${version}";
- sha256 = "sha256-IVXrFoSpwKC96oYqMrWz5Pouf2RPUJZxQppkfmNoZIg=";
+ sha256 = "sha256-h9FtmiOrzHdweZQr0xTw12MavbyWwTw3KeOtzXbVt8E=";
};
- vendorSha256 = "sha256-riGN7d+am9DXCcFVkc2WIxmHvsNaZxHm/aEDcb8kCz4=";
+ vendorSha256 = "sha256-TNFplcN6vmt0z3WuMXZPYeM9xWMXfmsY912MItqRG6U=";
doCheck = false;
diff --git a/pkgs/tools/misc/fntsample/default.nix b/pkgs/tools/misc/fntsample/default.nix
index a124d0808415..6600b7fab72b 100644
--- a/pkgs/tools/misc/fntsample/default.nix
+++ b/pkgs/tools/misc/fntsample/default.nix
@@ -17,8 +17,8 @@
let
ucd-blocks = fetchurl {
- url = "https://www.unicode.org/Public/14.0.0/ucd/Blocks.txt";
- hash = "sha256-WYhw3d73s0talykWUoxFav8nZbec1Plkf7WM63Z+fxc=";
+ url = "https://www.unicode.org/Public/15.0.0/ucd/Blocks.txt";
+ hash = "sha256-Up3F0PY4bVLy9W4AS7+rSM4tWH7qnTi6VGxAUkkb2CA=";
};
in
stdenv.mkDerivation rec {
diff --git a/pkgs/tools/misc/goreleaser/default.nix b/pkgs/tools/misc/goreleaser/default.nix
index 66102a29288a..ff6458243a62 100644
--- a/pkgs/tools/misc/goreleaser/default.nix
+++ b/pkgs/tools/misc/goreleaser/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "goreleaser";
- version = "1.11.3";
+ version = "1.11.4";
src = fetchFromGitHub {
owner = "goreleaser";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-aWaNJVNd3CUTU6ap4sUMo2EqDDkA4iMe9xdxqaA+wl0=";
+ sha256 = "sha256-hbgInZZ1ahFPIGHiHs68GqbMfFfYMcJy92iL2fvGxr0=";
};
vendorSha256 = "sha256-iUXbvwh04W8cZ4pa+OS4bRi3bCyFQ2shPzHNh6/e3Vs=";
diff --git a/pkgs/tools/misc/miniserve/default.nix b/pkgs/tools/misc/miniserve/default.nix
index 3d4cccbb18ec..0bf6e0927bf6 100644
--- a/pkgs/tools/misc/miniserve/default.nix
+++ b/pkgs/tools/misc/miniserve/default.nix
@@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "miniserve";
- version = "0.21.0";
+ version = "0.22.0";
src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
- hash = "sha256-tps/TKkG2To80zokNoSHQQPrzZnoS+lBWks/PIV586Q=";
+ hash = "sha256-pi+dBJE+EqQpyZAkIV7duK1g378J6BgjIiFcjV5H1fQ=";
};
- cargoSha256 = "sha256-9xRxUnDEji5+3drHQtdK1ozW8nezushxZZAaUlp+jJQ=";
+ cargoSha256 = "sha256-nRTGKW33NO2vRkvpNVk4pT1DrHPEsSfhwf8y5pJ+n9U=";
nativeBuildInputs = [
installShellFiles
@@ -30,6 +30,8 @@ rustPlatform.buildRustPackage rec {
checkFlags = [
"--skip=bind_ipv4_ipv6::case_2"
"--skip=cant_navigate_up_the_root"
+ "--skip=qrcode_hidden_in_tty_when_disabled"
+ "--skip=qrcode_shown_in_tty_when_enabled"
];
postInstall = ''
diff --git a/pkgs/tools/misc/ripdrag/default.nix b/pkgs/tools/misc/ripdrag/default.nix
index f6c7c79bfd81..a995cf1e7567 100644
--- a/pkgs/tools/misc/ripdrag/default.nix
+++ b/pkgs/tools/misc/ripdrag/default.nix
@@ -2,14 +2,14 @@
rustPlatform.buildRustPackage rec {
pname = "ripdrag";
- version = "0.1.5";
+ version = "0.2.0";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-Pa/QYxdPt95deEjSXEVhm2jR3r8rTaKQj2DltT7EVAw=";
+ sha256 = "sha256-bXyJcSJfKHkcwTayEbX9sZZEBeP9qoH36QqBIDnmKQM=";
};
- cargoSha256 = "sha256-jI7nF8Q8sA4AxkXvQ43r5GqcbTWffuf453DLGUs7I98=";
+ cargoSha256 = "sha256-PqoIJ0mbpaE4UX+kz3pFiqmTS1Vp+jF2OT5+3K2A0MQ=";
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/tools/misc/unicode/default.nix b/pkgs/tools/misc/unicode/default.nix
index 967332f5fd4b..9761fd73f4f3 100644
--- a/pkgs/tools/misc/unicode/default.nix
+++ b/pkgs/tools/misc/unicode/default.nix
@@ -12,8 +12,8 @@ python3Packages.buildPythonApplication rec {
};
ucdtxt = fetchurl {
- url = "https://www.unicode.org/Public/14.0.0/ucd/UnicodeData.txt";
- sha256 = "sha256-NgGOaGV/3LNIX2NmMP/oyFMuAcl3cD0oA/W4nWxf6vs=";
+ url = "https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt";
+ sha256 = "sha256-gG6a7WUDcZfx7IXhK+bozYcPxWCLTeD//ZkPaJ83anM=";
};
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index f4e7594b7716..d4c099feb108 100644
--- a/pkgs/tools/misc/uutils-coreutils/default.nix
+++ b/pkgs/tools/misc/uutils-coreutils/default.nix
@@ -12,19 +12,19 @@
stdenv.mkDerivation rec {
pname = "uutils-coreutils";
- version = "0.0.14";
+ version = "0.0.15";
src = fetchFromGitHub {
owner = "uutils";
repo = "coreutils";
rev = version;
- sha256 = "sha256-BLNWtf5RLeHQGH97M6vfZCXvCdPxUAU+hY1PBsGZ8jU=";
+ sha256 = "sha256-q17YR95Iuw2382xDP1xA/X6u7NM6pW4OkJu4FpohtkA=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
- hash = "sha256-lHyIrzf286Hjef6cqy3tJF6U2OnnokGXcH4yMotZay4=";
+ hash = "sha256-8/nMf1NHGn4ITPnx5315XdirrMPkRtYd2IV9MvxVVAE=";
};
nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];
diff --git a/pkgs/tools/networking/oha/default.nix b/pkgs/tools/networking/oha/default.nix
index 6afe1a241a07..e81eb7b0a448 100644
--- a/pkgs/tools/networking/oha/default.nix
+++ b/pkgs/tools/networking/oha/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "oha";
- version = "0.5.4";
+ version = "0.5.5";
src = fetchFromGitHub {
owner = "hatoo";
repo = pname;
rev = "refs/tags/v${version}";
- sha256 = "sha256-dk9OXUt31UIZLH3E50R8iE8zJqvdT1pBu1oU25QrOro=";
+ sha256 = "sha256-NSre4OHzREVM8y9njMkS/whQ0+Ed+R+cLYfRWKmhA98=";
};
- cargoSha256 = "sha256-WlAAuFz7DZ4PhlTgEXNK9sZKkS95pCrbX2AXC3c1rh8=";
+ cargoSha256 = "sha256-GPP2eespnxDQoKZkqoPXEthRKk84szFl0LNTeqJQLNs=";
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;
diff --git a/pkgs/tools/networking/tracebox/default.nix b/pkgs/tools/networking/tracebox/default.nix
index 3c3277e2bc7d..33bb443e3710 100644
--- a/pkgs/tools/networking/tracebox/default.nix
+++ b/pkgs/tools/networking/tracebox/default.nix
@@ -5,6 +5,8 @@
, libpcap
, lua5_1
, json_c
+, testers
+, tracebox
}:
stdenv.mkDerivation rec {
pname = "tracebox";
@@ -25,6 +27,11 @@ stdenv.mkDerivation rec {
json_c
];
+ postPatch = ''
+ sed -i configure.ac \
+ -e 's,$(git describe .*),${version},'
+ '';
+
configureFlags = [
"--with-lua=yes"
"--with-libpcap=yes"
@@ -35,6 +42,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ passthru.tests.version = testers.testVersion {
+ package = tracebox;
+ command = "tracebox -V";
+ };
+
meta = with lib; {
homepage = "http://www.tracebox.org/";
description = "A middlebox detection tool";
diff --git a/pkgs/tools/security/dbmonster/default.nix b/pkgs/tools/security/dbmonster/default.nix
new file mode 100644
index 000000000000..13d0cded0a3e
--- /dev/null
+++ b/pkgs/tools/security/dbmonster/default.nix
@@ -0,0 +1,56 @@
+{ lib
+, aircrack-ng
+, fetchFromGitHub
+, iproute2
+, networkmanager
+, python3
+, tshark
+, wirelesstools
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "dbmonster";
+ version = "unstable-2022-09-17";
+ format = "other";
+
+ src = fetchFromGitHub {
+ owner = "90N45-d3v";
+ repo = "dBmonster";
+ rev = "4c79549079782a2991309120a55c8158701a9b70";
+ hash = "sha256-9RP3LmZF7P2c0+Jt/kMSVPb4cBtyH6P3FZ5UrQpBP0I=";
+ };
+
+ propagatedBuildInputs = [
+ aircrack-ng
+ iproute2
+ networkmanager
+ tshark
+ wirelesstools
+ ] ++ (with python3.pkgs; [
+ matplotlib
+ ]);
+
+ dontBuild = true;
+
+ installPhase = ''
+ runHook preInstall
+
+ install -vD dBmonster.py $out/bin/$pname.py
+
+ makeWrapper ${python3.interpreter} $out/bin/$pname \
+ --set PYTHONPATH "$PYTHONPATH:$out/bin/$pname" \
+ --add-flags "-O $out/bin/$pname.py"
+
+ runHook postInstall
+ '';
+
+ # Only script available
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Tool to track WiFi devices by signal strength";
+ homepage = "https://github.com/90N45-d3v/dBmonster";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/rustscan/default.nix b/pkgs/tools/security/rustscan/default.nix
index 8f7498083cc2..79a1fd1195f0 100644
--- a/pkgs/tools/security/rustscan/default.nix
+++ b/pkgs/tools/security/rustscan/default.nix
@@ -1,38 +1,36 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, nmap, Security }:
+{ lib, rustPlatform, fetchCrate, nmap, stdenv, Security, perl, python3 }:
rustPlatform.buildRustPackage rec {
pname = "rustscan";
- version = "2.0.1";
+ version = "2.1.0";
- src = fetchFromGitHub {
- owner = "RustScan";
- repo = pname;
- rev = version;
- sha256 = "0fdbsz1v7bb5dm3zqjs1qf73lb1m4qzkqyb3h3hbyrp9vklgxsgw";
+ src = fetchCrate {
+ inherit pname version;
+ sha256 = "sha256-f9QFsVGGKoWqZGIg8Z8FgZGcUo5M8MFNUavK69SgHkg=";
};
- cargoSha256 = "0658jbx59qrsgpfczzlfrbp2qm7kh0c5561bsxzmgiri7fcz9w0n";
+ cargoSha256 = "sha256-ZoDE7SJ6snWTFvYXHZdVCC6UCug2wGghH93FfDTDsv0=";
postPatch = ''
- substituteInPlace src/main.rs \
- --replace 'Command::new("nmap")' 'Command::new("${nmap}/bin/nmap")'
+ substituteInPlace src/scripts/mod.rs \
+ --replace 'call_format = "nmap' 'call_format = "${nmap}/bin/nmap'
+ patchShebangs fixtures/.rustscan_scripts/*
'';
buildInputs = lib.optional stdenv.isDarwin Security;
+ checkInputs = [ perl python3 ];
+
+ # these tests require network access
checkFlags = [
- "--skip=infer_ulimit_lowering_no_panic"
- "--skip=google_dns_runs"
"--skip=parse_correct_host_addresses"
"--skip=parse_hosts_file_and_incorrect_hosts"
- "--skip=run_perl_script"
- "--skip=run_python_script"
];
meta = with lib; {
description = "Faster Nmap Scanning with Rust";
homepage = "https://github.com/RustScan/RustScan";
license = licenses.gpl3Only;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ figsoda ];
};
}
diff --git a/pkgs/tools/system/systeroid/default.nix b/pkgs/tools/system/systeroid/default.nix
index 8e414f9e3c06..4fd26b5d487c 100644
--- a/pkgs/tools/system/systeroid/default.nix
+++ b/pkgs/tools/system/systeroid/default.nix
@@ -7,13 +7,13 @@
rustPlatform.buildRustPackage rec {
pname = "systeroid";
- version = "0.2.2";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Xkpa5W+smNMrcWXylOy0fU1wI7jBF9Bw16pzI5IDFI4=";
+ sha256 = "sha256-VkkobNYkz8FunyaS6EJpfqOvDdwZJE+P2YTSJCgHZI0=";
};
postPatch = ''
@@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec {
--replace '"/usr/share/doc/kernel-doc-*/Documentation/*",' '"${linux-doc}/share/doc/linux-doc/*",'
'';
- cargoSha256 = "sha256-A9yd/Z94B6beWyiiRl7rJQOj7YMNFHkjhtu5MHG8/XA=";
+ cargoSha256 = "sha256-ulmU33j2edzMA/L4KXiM5M6RhH3MmMAkA2DuHxdj2uk=";
buildInputs = [
xorg.libxcb
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 2ef9fe599e26..e4efe034cd98 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2756,6 +2756,8 @@ with pkgs;
goku = callPackage ../os-specific/darwin/goku { };
+ grb = callPackage ../applications/misc/grb { };
+
kerf = kerf_1; /* kerf2 is WIP */
kerf_1 = callPackage ../development/interpreters/kerf {
stdenv = clangStdenv;
@@ -3223,6 +3225,8 @@ with pkgs;
caddy = callPackage ../servers/caddy { };
+ xcaddy = callPackage ../servers/caddy/xcaddy { };
+
traefik = callPackage ../servers/traefik { };
traefik-certs-dumper = callPackage ../tools/misc/traefik-certs-dumper { };
@@ -13268,6 +13272,8 @@ with pkgs;
dbmate = callPackage ../development/tools/database/dbmate { };
+ dbmonster = callPackage ../tools/security/dbmonster { };
+
devpi-client = python3Packages.callPackage ../development/tools/devpi-client {};
devpi-server = callPackage ../development/tools/devpi-server {};
@@ -14550,6 +14556,7 @@ with pkgs;
};
cargo-kcov = callPackage ../development/tools/rust/cargo-kcov { };
cargo-graph = callPackage ../development/tools/rust/cargo-graph { };
+ cargo-hack = callPackage ../development/tools/rust/cargo-hack { };
cargo-license = callPackage ../development/tools/rust/cargo-license { };
cargo-llvm-lines = callPackage ../development/tools/rust/cargo-llvm-lines { };
cargo-outdated = callPackage ../development/tools/rust/cargo-outdated {
@@ -15824,7 +15831,7 @@ with pkgs;
};
bazel_5 = callPackage ../development/tools/build-managers/bazel/bazel_5 {
- inherit (darwin) cctools;
+ inherit (darwin) cctools sigtool;
inherit (darwin.apple_sdk.frameworks) CoreFoundation CoreServices Foundation;
buildJdk = jdk11_headless;
runJdk = jdk11_headless;
@@ -16816,7 +16823,7 @@ with pkgs;
modd = callPackage ../development/tools/modd { };
mold = callPackage ../development/tools/mold {
- stdenv = llvmPackages_latest.stdenv;
+ inherit (llvmPackages) stdenv;
};
msgpack-tools = callPackage ../development/tools/msgpack-tools { };
@@ -18252,6 +18259,8 @@ with pkgs;
freetype = callPackage ../development/libraries/freetype { };
+ freexl = callPackage ../development/libraries/freexl { };
+
frei0r = callPackage ../development/libraries/frei0r { };
fribidi = callPackage ../development/libraries/fribidi { };
@@ -20531,7 +20540,7 @@ with pkgs;
lirc = callPackage ../development/libraries/lirc { };
- liquid-dsp = callPackage ../development/libraries/liquid-dsp { };
+ liquid-dsp = callPackage ../development/libraries/liquid-dsp { inherit (darwin) cctools; };
liquidfun = callPackage ../development/libraries/liquidfun { };
@@ -21772,8 +21781,6 @@ with pkgs;
spaceship-prompt = callPackage ../shells/zsh/spaceship-prompt {};
- spatialite_tools = callPackage ../development/libraries/spatialite-tools { };
-
spdk = callPackage ../development/libraries/spdk { };
speechd = callPackage ../development/libraries/speechd { };
@@ -26403,6 +26410,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
+ spatialite_tools = callPackage ../applications/gis/spatialite-tools { };
+
udig = callPackage ../applications/gis/udig { };
whitebox-tools = callPackage ../applications/gis/whitebox-tools {
diff --git a/pkgs/top-level/java-packages.nix b/pkgs/top-level/java-packages.nix
index ddcf5f9c742b..302b301b115e 100644
--- a/pkgs/top-level/java-packages.nix
+++ b/pkgs/top-level/java-packages.nix
@@ -127,7 +127,7 @@ in {
inherit openjdk15-bootstrap;
});
- openjdk17-bootstrap = mkBootstrap adoptopenjdk-16
+ openjdk17-bootstrap = mkBootstrap adoptopenjdk-17
../development/compilers/openjdk/16.nix
(bootstrapArgs // {
inherit openjdk16-bootstrap;
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index a7c3386d4972..4f2260ab7bb5 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -520,6 +520,10 @@ let
happy-eyeballs = callPackage ../development/ocaml-modules/happy-eyeballs { };
+ happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { };
+
+ happy-eyeballs-mirage = callPackage ../development/ocaml-modules/happy-eyeballs/mirage.nix { };
+
hashcons = callPackage ../development/ocaml-modules/hashcons { };
herelib = callPackage ../development/ocaml-modules/herelib { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 1e0aed2dc707..dd695ca308a0 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -119,6 +119,7 @@ in {
pythonCatchConflictsHook
pythonImportsCheckHook
pythonNamespacesHook
+ pythonOutputDistHook
pythonRecompileBytecodeHook
pythonRelaxDepsHook
pythonRemoveBinBytecodeHook
@@ -5712,7 +5713,9 @@ in {
minio = callPackage ../development/python-modules/minio { };
- miniupnpc = callPackage ../development/python-modules/miniupnpc { };
+ miniupnpc = callPackage ../development/python-modules/miniupnpc {
+ inherit (pkgs.darwin) cctools;
+ };
misaka = callPackage ../development/python-modules/misaka { };