Merge pull request #3195 from github/dependabot/npm_and_yarn/npm-minor-37415c9066

Bump the npm-minor group with 3 updates
This commit is contained in:
Henry Mercer
2025-10-10 15:22:52 +01:00
committed by GitHub
13 changed files with 384 additions and 141 deletions

View File

@@ -24680,6 +24680,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -24786,7 +24789,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -25547,6 +25568,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug2("comp", comp, options); debug2("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug2("caret", comp); debug2("caret", comp);
@@ -26487,7 +26509,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -26505,7 +26527,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

28
lib/analyze-action.js generated
View File

@@ -30529,6 +30529,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -30635,7 +30638,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -31396,6 +31417,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug3("comp", comp, options); debug3("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug3("caret", comp); debug3("caret", comp);
@@ -32336,7 +32358,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -32354,7 +32376,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -24680,6 +24680,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -24786,7 +24789,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -25547,6 +25568,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug3("comp", comp, options); debug3("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug3("caret", comp); debug3("caret", comp);
@@ -26487,7 +26509,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -26505,7 +26527,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -30529,6 +30529,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -30635,7 +30638,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -31396,6 +31417,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug3("comp", comp, options); debug3("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug3("caret", comp); debug3("caret", comp);
@@ -32336,7 +32358,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -32354,7 +32376,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

28
lib/init-action.js generated
View File

@@ -19971,6 +19971,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -20077,7 +20080,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -20838,6 +20859,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug3("comp", comp, options); debug3("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug3("caret", comp); debug3("caret", comp);
@@ -32336,7 +32358,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -32354,7 +32376,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -24680,6 +24680,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -24786,7 +24789,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -25547,6 +25568,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug3("comp", comp, options); debug3("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug3("caret", comp); debug3("caret", comp);
@@ -26487,7 +26509,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -26505,7 +26527,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -24680,6 +24680,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -24786,7 +24789,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -25547,6 +25568,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug2("comp", comp, options); debug2("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug2("caret", comp); debug2("caret", comp);
@@ -26487,7 +26509,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -26505,7 +26527,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -19971,6 +19971,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -20077,7 +20080,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -20838,6 +20859,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug3("comp", comp, options); debug3("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug3("caret", comp); debug3("caret", comp);
@@ -45023,7 +45045,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -45041,7 +45063,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

28
lib/upload-lib.js generated
View File

@@ -31826,6 +31826,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -31932,7 +31935,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -32693,6 +32714,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug2("comp", comp, options); debug2("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug2("caret", comp); debug2("caret", comp);
@@ -33633,7 +33655,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -33651,7 +33673,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -24680,6 +24680,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -24786,7 +24789,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -25547,6 +25568,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug2("comp", comp, options); debug2("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug2("caret", comp); debug2("caret", comp);
@@ -26487,7 +26509,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -26505,7 +26527,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

View File

@@ -30529,6 +30529,9 @@ var require_identifiers = __commonJS({
"use strict"; "use strict";
var numeric = /^[0-9]+$/; var numeric = /^[0-9]+$/;
var compareIdentifiers = (a, b) => { var compareIdentifiers = (a, b) => {
if (typeof a === "number" && typeof b === "number") {
return a === b ? 0 : a < b ? -1 : 1;
}
const anum = numeric.test(a); const anum = numeric.test(a);
const bnum = numeric.test(b); const bnum = numeric.test(b);
if (anum && bnum) { if (anum && bnum) {
@@ -30635,7 +30638,25 @@ var require_semver = __commonJS({
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
other = new _SemVer(other, this.options); other = new _SemVer(other, this.options);
} }
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch); if (this.major < other.major) {
return -1;
}
if (this.major > other.major) {
return 1;
}
if (this.minor < other.minor) {
return -1;
}
if (this.minor > other.minor) {
return 1;
}
if (this.patch < other.patch) {
return -1;
}
if (this.patch > other.patch) {
return 1;
}
return 0;
} }
comparePre(other) { comparePre(other) {
if (!(other instanceof _SemVer)) { if (!(other instanceof _SemVer)) {
@@ -31396,6 +31417,7 @@ var require_range = __commonJS({
return result; return result;
}; };
var parseComparator = (comp, options) => { var parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], "");
debug4("comp", comp, options); debug4("comp", comp, options);
comp = replaceCarets(comp, options); comp = replaceCarets(comp, options);
debug4("caret", comp); debug4("caret", comp);
@@ -32336,7 +32358,7 @@ var require_package = __commonJS({
long: "^5.3.2", long: "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
octokit: "^5.0.3", octokit: "^5.0.3",
semver: "^7.7.2", semver: "^7.7.3",
uuid: "^13.0.0" uuid: "^13.0.0"
}, },
devDependencies: { devDependencies: {
@@ -32354,7 +32376,7 @@ var require_package = __commonJS({
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
ava: "^6.4.1", ava: "^6.4.1",
esbuild: "^0.25.10", esbuild: "^0.25.10",

213
package-lock.json generated
View File

@@ -34,7 +34,7 @@
"long": "^5.3.2", "long": "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
"octokit": "^5.0.3", "octokit": "^5.0.3",
"semver": "^7.7.2", "semver": "^7.7.3",
"uuid": "^13.0.0" "uuid": "^13.0.0"
}, },
"devDependencies": { "devDependencies": {
@@ -52,7 +52,7 @@
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
"ava": "^6.4.1", "ava": "^6.4.1",
"esbuild": "^0.25.10", "esbuild": "^0.25.10",
@@ -2697,17 +2697,17 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@typescript-eslint/eslint-plugin": { "node_modules/@typescript-eslint/eslint-plugin": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.0.tgz",
"integrity": "sha512-HC3y9CVuevvWCl/oyZuI47dOeDF9ztdMEfMH8/DW/Mhwa9cCLnK1oD7JoTVGW/u7kFzNZUKUoyJEqkaJh5y3Wg==", "integrity": "sha512-hA8gxBq4ukonVXPy0OKhiaUh/68D0E88GSmtC1iAEnGaieuDi38LhS7jdCHRLi6ErJBNDGCzvh5EnzdPwUc0DA==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@eslint-community/regexpp": "^4.10.0", "@eslint-community/regexpp": "^4.10.0",
"@typescript-eslint/scope-manager": "8.45.0", "@typescript-eslint/scope-manager": "8.46.0",
"@typescript-eslint/type-utils": "8.45.0", "@typescript-eslint/type-utils": "8.46.0",
"@typescript-eslint/utils": "8.45.0", "@typescript-eslint/utils": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0", "@typescript-eslint/visitor-keys": "8.46.0",
"graphemer": "^1.4.0", "graphemer": "^1.4.0",
"ignore": "^7.0.0", "ignore": "^7.0.0",
"natural-compare": "^1.4.0", "natural-compare": "^1.4.0",
@@ -2721,20 +2721,20 @@
"url": "https://opencollective.com/typescript-eslint" "url": "https://opencollective.com/typescript-eslint"
}, },
"peerDependencies": { "peerDependencies": {
"@typescript-eslint/parser": "^8.45.0", "@typescript-eslint/parser": "^8.46.0",
"eslint": "^8.57.0 || ^9.0.0", "eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0" "typescript": ">=4.8.4 <6.0.0"
} }
}, },
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": { "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.0.tgz",
"integrity": "sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==", "integrity": "sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0" "@typescript-eslint/visitor-keys": "8.46.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -2745,9 +2745,9 @@
} }
}, },
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": { "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz",
"integrity": "sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==", "integrity": "sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"engines": { "engines": {
@@ -2759,16 +2759,16 @@
} }
}, },
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": { "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.0.tgz",
"integrity": "sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==", "integrity": "sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/project-service": "8.45.0", "@typescript-eslint/project-service": "8.46.0",
"@typescript-eslint/tsconfig-utils": "8.45.0", "@typescript-eslint/tsconfig-utils": "8.46.0",
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0", "@typescript-eslint/visitor-keys": "8.46.0",
"debug": "^4.3.4", "debug": "^4.3.4",
"fast-glob": "^3.3.2", "fast-glob": "^3.3.2",
"is-glob": "^4.0.3", "is-glob": "^4.0.3",
@@ -2788,16 +2788,16 @@
} }
}, },
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.0.tgz",
"integrity": "sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==", "integrity": "sha512-nD6yGWPj1xiOm4Gk0k6hLSZz2XkNXhuYmyIrOWcHoPuAhjT9i5bAG+xbWPgFeNR8HPHHtpNKdYUXJl/D3x7f5g==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@eslint-community/eslint-utils": "^4.7.0", "@eslint-community/eslint-utils": "^4.7.0",
"@typescript-eslint/scope-manager": "8.45.0", "@typescript-eslint/scope-manager": "8.46.0",
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/typescript-estree": "8.45.0" "@typescript-eslint/typescript-estree": "8.46.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -2812,13 +2812,13 @@
} }
}, },
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": { "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.0.tgz",
"integrity": "sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==", "integrity": "sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"eslint-visitor-keys": "^4.2.1" "eslint-visitor-keys": "^4.2.1"
}, },
"engines": { "engines": {
@@ -2891,16 +2891,16 @@
} }
}, },
"node_modules/@typescript-eslint/parser": { "node_modules/@typescript-eslint/parser": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.46.0.tgz",
"integrity": "sha512-TGf22kon8KW+DeKaUmOibKWktRY8b2NSAZNdtWh798COm1NWx8+xJ6iFBtk3IvLdv6+LGLJLRlyhrhEDZWargQ==", "integrity": "sha512-n1H6IcDhmmUEG7TNVSspGmiHHutt7iVKtZwRppD7e04wha5MrkV1h3pti9xQLcCMt6YWsncpoT0HMjkH1FNwWQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/scope-manager": "8.45.0", "@typescript-eslint/scope-manager": "8.46.0",
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/typescript-estree": "8.45.0", "@typescript-eslint/typescript-estree": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0", "@typescript-eslint/visitor-keys": "8.46.0",
"debug": "^4.3.4" "debug": "^4.3.4"
}, },
"engines": { "engines": {
@@ -2916,14 +2916,14 @@
} }
}, },
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": { "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.0.tgz",
"integrity": "sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==", "integrity": "sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0" "@typescript-eslint/visitor-keys": "8.46.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -2934,9 +2934,9 @@
} }
}, },
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz",
"integrity": "sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==", "integrity": "sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"engines": { "engines": {
@@ -2948,16 +2948,16 @@
} }
}, },
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.0.tgz",
"integrity": "sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==", "integrity": "sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/project-service": "8.45.0", "@typescript-eslint/project-service": "8.46.0",
"@typescript-eslint/tsconfig-utils": "8.45.0", "@typescript-eslint/tsconfig-utils": "8.46.0",
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0", "@typescript-eslint/visitor-keys": "8.46.0",
"debug": "^4.3.4", "debug": "^4.3.4",
"fast-glob": "^3.3.2", "fast-glob": "^3.3.2",
"is-glob": "^4.0.3", "is-glob": "^4.0.3",
@@ -2977,13 +2977,13 @@
} }
}, },
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": { "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.0.tgz",
"integrity": "sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==", "integrity": "sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"eslint-visitor-keys": "^4.2.1" "eslint-visitor-keys": "^4.2.1"
}, },
"engines": { "engines": {
@@ -3047,14 +3047,14 @@
} }
}, },
"node_modules/@typescript-eslint/project-service": { "node_modules/@typescript-eslint/project-service": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.46.0.tgz",
"integrity": "sha512-3pcVHwMG/iA8afdGLMuTibGR7pDsn9RjDev6CCB+naRsSYs2pns5QbinF4Xqw6YC/Sj3lMrm/Im0eMfaa61WUg==", "integrity": "sha512-OEhec0mH+U5Je2NZOeK1AbVCdm0ChyapAyTeXVIYTPXDJ3F07+cu87PPXcGoYqZ7M9YJVvFnfpGg1UmCIqM+QQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/tsconfig-utils": "^8.45.0", "@typescript-eslint/tsconfig-utils": "^8.46.0",
"@typescript-eslint/types": "^8.45.0", "@typescript-eslint/types": "^8.46.0",
"debug": "^4.3.4" "debug": "^4.3.4"
}, },
"engines": { "engines": {
@@ -3069,9 +3069,9 @@
} }
}, },
"node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types": { "node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz",
"integrity": "sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==", "integrity": "sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"engines": { "engines": {
@@ -3101,9 +3101,9 @@
} }
}, },
"node_modules/@typescript-eslint/tsconfig-utils": { "node_modules/@typescript-eslint/tsconfig-utils": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.0.tgz",
"integrity": "sha512-aFdr+c37sc+jqNMGhH+ajxPXwjv9UtFZk79k8pLoJ6p4y0snmYpPA52GuWHgt2ZF4gRRW6odsEj41uZLojDt5w==", "integrity": "sha512-WrYXKGAHY836/N7zoK/kzi6p8tXFhasHh8ocFL9VZSAkvH956gfeRfcnhs3xzRy8qQ/dq3q44v1jvQieMFg2cw==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"engines": { "engines": {
@@ -3118,15 +3118,15 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils": { "node_modules/@typescript-eslint/type-utils": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.46.0.tgz",
"integrity": "sha512-bpjepLlHceKgyMEPglAeULX1vixJDgaKocp0RVJ5u4wLJIMNuKtUXIczpJCPcn2waII0yuvks/5m5/h3ZQKs0A==", "integrity": "sha512-hy+lvYV1lZpVs2jRaEYvgCblZxUoJiPyCemwbQZ+NGulWkQRy0HRPYAoef/CNSzaLt+MLvMptZsHXHlkEilaeg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/typescript-estree": "8.45.0", "@typescript-eslint/typescript-estree": "8.46.0",
"@typescript-eslint/utils": "8.45.0", "@typescript-eslint/utils": "8.46.0",
"debug": "^4.3.4", "debug": "^4.3.4",
"ts-api-utils": "^2.1.0" "ts-api-utils": "^2.1.0"
}, },
@@ -3143,14 +3143,14 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/scope-manager": { "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/scope-manager": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.0.tgz",
"integrity": "sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==", "integrity": "sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0" "@typescript-eslint/visitor-keys": "8.46.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -3161,9 +3161,9 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz",
"integrity": "sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==", "integrity": "sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"engines": { "engines": {
@@ -3175,16 +3175,16 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.0.tgz",
"integrity": "sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==", "integrity": "sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/project-service": "8.45.0", "@typescript-eslint/project-service": "8.46.0",
"@typescript-eslint/tsconfig-utils": "8.45.0", "@typescript-eslint/tsconfig-utils": "8.46.0",
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/visitor-keys": "8.45.0", "@typescript-eslint/visitor-keys": "8.46.0",
"debug": "^4.3.4", "debug": "^4.3.4",
"fast-glob": "^3.3.2", "fast-glob": "^3.3.2",
"is-glob": "^4.0.3", "is-glob": "^4.0.3",
@@ -3204,16 +3204,16 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": { "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.0.tgz",
"integrity": "sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==", "integrity": "sha512-nD6yGWPj1xiOm4Gk0k6hLSZz2XkNXhuYmyIrOWcHoPuAhjT9i5bAG+xbWPgFeNR8HPHHtpNKdYUXJl/D3x7f5g==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@eslint-community/eslint-utils": "^4.7.0", "@eslint-community/eslint-utils": "^4.7.0",
"@typescript-eslint/scope-manager": "8.45.0", "@typescript-eslint/scope-manager": "8.46.0",
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"@typescript-eslint/typescript-estree": "8.45.0" "@typescript-eslint/typescript-estree": "8.46.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -3228,13 +3228,13 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": {
"version": "8.45.0", "version": "8.46.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.45.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.0.tgz",
"integrity": "sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==", "integrity": "sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@typescript-eslint/types": "8.45.0", "@typescript-eslint/types": "8.46.0",
"eslint-visitor-keys": "^4.2.1" "eslint-visitor-keys": "^4.2.1"
}, },
"engines": { "engines": {
@@ -8210,9 +8210,10 @@
"license": "ISC" "license": "ISC"
}, },
"node_modules/semver": { "node_modules/semver": {
"version": "7.7.2", "version": "7.7.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
"license": "ISC",
"bin": { "bin": {
"semver": "bin/semver.js" "semver": "bin/semver.js"
}, },

View File

@@ -49,7 +49,7 @@
"long": "^5.3.2", "long": "^5.3.2",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
"octokit": "^5.0.3", "octokit": "^5.0.3",
"semver": "^7.7.2", "semver": "^7.7.3",
"uuid": "^13.0.0" "uuid": "^13.0.0"
}, },
"devDependencies": { "devDependencies": {
@@ -67,7 +67,7 @@
"@types/node-forge": "^1.3.14", "@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1", "@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4", "@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.41.0", "@typescript-eslint/parser": "^8.41.0",
"ava": "^6.4.1", "ava": "^6.4.1",
"esbuild": "^0.25.10", "esbuild": "^0.25.10",