mirror of
https://github.com/github/codeql-action.git
synced 2026-04-26 08:48:46 +00:00
Merge pull request #3821 from github/dependabot/npm_and_yarn/npm-minor-345b938e93
Bump the npm-minor group across 1 directory with 6 updates
This commit is contained in:
Generated
+38
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path9, name, argument) {
|
||||
if (Array.isArray(path9)) {
|
||||
this.path = path9;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve6(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path9 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path9, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -161584,6 +161592,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -161640,8 +161653,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -161654,8 +161670,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info7) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info7.retryCount + 1;
|
||||
if (maxRetries > info7.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -161667,7 +161683,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -161689,11 +161705,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -161704,6 +161716,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
|
||||
Generated
+46
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path16, name, argument) {
|
||||
if (Array.isArray(path16)) {
|
||||
this.path = path16;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve8(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path16 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path16, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash: hash2 } = resolvedUrl;
|
||||
return pathname + search + hash2;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -106452,6 +106460,7 @@ var ExhaustivityCheckingError = class extends Error {
|
||||
super("Internal error: exhaustivity checking failure");
|
||||
this.expectedExhaustiveValue = expectedExhaustiveValue;
|
||||
}
|
||||
expectedExhaustiveValue;
|
||||
};
|
||||
function assertNever(value) {
|
||||
throw new ExhaustivityCheckingError(value);
|
||||
@@ -106818,6 +106827,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -106975,8 +106989,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -106989,8 +107006,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -107002,7 +107019,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -107024,11 +107041,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -107039,6 +107052,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -108201,6 +108219,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -108349,6 +108368,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
@@ -110611,6 +110633,9 @@ var CodeQLAnalysisError = class extends Error {
|
||||
this.error = error3;
|
||||
this.name = "CodeQLAnalysisError";
|
||||
}
|
||||
queriesStatusReport;
|
||||
message;
|
||||
error;
|
||||
};
|
||||
async function setupPythonExtractor(logger) {
|
||||
const codeqlPython = process.env["CODEQL_PYTHON"];
|
||||
|
||||
Generated
+42
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path9, name, argument) {
|
||||
if (Array.isArray(path9)) {
|
||||
this.path = path9;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve6(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path9 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path9, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -103591,6 +103599,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -103638,8 +103651,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -103652,8 +103668,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -103665,7 +103681,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -103687,11 +103703,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -103702,6 +103714,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -104659,6 +104676,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -104807,6 +104825,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
|
||||
Generated
+45
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path19, name, argument) {
|
||||
if (Array.isArray(path19)) {
|
||||
this.path = path19;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve8(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path19 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path19, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash: hash2 } = resolvedUrl;
|
||||
return pathname + search + hash2;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -164394,6 +164402,7 @@ var ExhaustivityCheckingError = class extends Error {
|
||||
super("Internal error: exhaustivity checking failure");
|
||||
this.expectedExhaustiveValue = expectedExhaustiveValue;
|
||||
}
|
||||
expectedExhaustiveValue;
|
||||
};
|
||||
function assertNever(value) {
|
||||
throw new ExhaustivityCheckingError(value);
|
||||
@@ -164612,6 +164621,7 @@ var Success = class {
|
||||
constructor(value) {
|
||||
this.value = value;
|
||||
}
|
||||
value;
|
||||
isSuccess() {
|
||||
return true;
|
||||
}
|
||||
@@ -164626,6 +164636,7 @@ var Failure = class {
|
||||
constructor(value) {
|
||||
this.value = value;
|
||||
}
|
||||
value;
|
||||
isSuccess() {
|
||||
return false;
|
||||
}
|
||||
@@ -164786,6 +164797,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -164866,8 +164882,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -164880,8 +164899,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info7) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info7.retryCount + 1;
|
||||
if (maxRetries > info7.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -164893,7 +164912,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -164915,11 +164934,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -164930,6 +164945,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -166122,6 +166142,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -166270,6 +166291,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
|
||||
Generated
+47
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path18, name, argument) {
|
||||
if (Array.isArray(path18)) {
|
||||
this.path = path18;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve9(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path18 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path18, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -103796,6 +103804,7 @@ var ExhaustivityCheckingError = class extends Error {
|
||||
super("Internal error: exhaustivity checking failure");
|
||||
this.expectedExhaustiveValue = expectedExhaustiveValue;
|
||||
}
|
||||
expectedExhaustiveValue;
|
||||
};
|
||||
function assertNever(value) {
|
||||
throw new ExhaustivityCheckingError(value);
|
||||
@@ -104040,6 +104049,7 @@ var Success = class {
|
||||
constructor(value) {
|
||||
this.value = value;
|
||||
}
|
||||
value;
|
||||
isSuccess() {
|
||||
return true;
|
||||
}
|
||||
@@ -104054,6 +104064,7 @@ var Failure = class {
|
||||
constructor(value) {
|
||||
this.value = value;
|
||||
}
|
||||
value;
|
||||
isSuccess() {
|
||||
return false;
|
||||
}
|
||||
@@ -104204,6 +104215,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -104345,8 +104361,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -104359,8 +104378,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -104372,7 +104391,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -104394,11 +104413,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -104409,6 +104424,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -105210,6 +105230,8 @@ var GitVersionInfo = class {
|
||||
this.truncatedVersion = truncatedVersion;
|
||||
this.fullVersion = fullVersion;
|
||||
}
|
||||
truncatedVersion;
|
||||
fullVersion;
|
||||
isAtLeast(minVersion) {
|
||||
return semver3.gte(this.truncatedVersion, minVersion);
|
||||
}
|
||||
@@ -105764,6 +105786,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -105912,6 +105935,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
|
||||
Generated
+38
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path7, name, argument) {
|
||||
if (Array.isArray(path7)) {
|
||||
this.path = path7;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve5(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path7 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path7, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -103599,6 +103607,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -103646,8 +103659,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -103660,8 +103676,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -103673,7 +103689,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -103695,11 +103711,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -103710,6 +103722,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
|
||||
Generated
+43
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path10, name, argument) {
|
||||
if (Array.isArray(path10)) {
|
||||
this.path = path10;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve4(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path10 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path10, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -103444,6 +103452,7 @@ var ExhaustivityCheckingError = class extends Error {
|
||||
super("Internal error: exhaustivity checking failure");
|
||||
this.expectedExhaustiveValue = expectedExhaustiveValue;
|
||||
}
|
||||
expectedExhaustiveValue;
|
||||
};
|
||||
function assertNever(value) {
|
||||
throw new ExhaustivityCheckingError(value);
|
||||
@@ -103707,6 +103716,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -103754,8 +103768,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -103768,8 +103785,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -103781,7 +103798,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -103803,11 +103820,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -103818,6 +103831,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -104510,6 +104528,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -104658,6 +104677,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
|
||||
Generated
+33
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path4, name, argument) {
|
||||
if (Array.isArray(path4)) {
|
||||
this.path = path4;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve3(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path4 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path4, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -161518,8 +161526,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -161532,8 +161543,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info7) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info7.retryCount + 1;
|
||||
if (maxRetries > info7.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -161545,7 +161556,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -161567,11 +161578,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -161582,6 +161589,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
|
||||
Generated
+39
-21
@@ -48126,7 +48126,6 @@ var require_tool_cache = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path5, name, argument) {
|
||||
if (Array.isArray(path5)) {
|
||||
this.path = path5;
|
||||
@@ -48201,7 +48200,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -48216,7 +48215,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -48240,12 +48241,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve2(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path5 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path5, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -48439,6 +48440,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -49114,7 +49123,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -49125,12 +49133,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -49182,7 +49191,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -49247,7 +49255,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -49342,8 +49350,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -120772,8 +120780,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -120786,8 +120797,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request3, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -120799,7 +120810,7 @@ async function wrapRequest(state, octokit, request3, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request3, options) {
|
||||
const response = await request3(request3, options);
|
||||
const response = await request3(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -120821,11 +120832,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -120836,6 +120843,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -121291,6 +121303,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -121439,6 +121452,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
@@ -122651,12 +122667,14 @@ var ReachabilityError = class extends Error {
|
||||
super();
|
||||
this.statusCode = statusCode;
|
||||
}
|
||||
statusCode;
|
||||
};
|
||||
var NetworkReachabilityBackend = class {
|
||||
constructor(proxy) {
|
||||
this.proxy = proxy;
|
||||
this.agent = new import_https_proxy_agent.HttpsProxyAgent(`http://${proxy.host}:${proxy.port}`);
|
||||
}
|
||||
proxy;
|
||||
agent;
|
||||
async checkConnection(url) {
|
||||
return new Promise((resolve2, reject) => {
|
||||
|
||||
Generated
+39
-21
@@ -21494,7 +21494,6 @@ Support boolean input list: \`true | True | TRUE | false | False | FALSE\``);
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path12, name, argument) {
|
||||
if (Array.isArray(path12)) {
|
||||
this.path = path12;
|
||||
@@ -21569,7 +21568,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -21584,7 +21583,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -21608,12 +21609,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve6(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path12 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path12, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -21807,6 +21808,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash: hash2 } = resolvedUrl;
|
||||
return pathname + search + hash2;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -22482,7 +22491,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -22493,12 +22501,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -22550,7 +22559,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -22615,7 +22623,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -22710,8 +22718,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -106275,6 +106283,7 @@ var ExhaustivityCheckingError = class extends Error {
|
||||
super("Internal error: exhaustivity checking failure");
|
||||
this.expectedExhaustiveValue = expectedExhaustiveValue;
|
||||
}
|
||||
expectedExhaustiveValue;
|
||||
};
|
||||
function assertNever(value) {
|
||||
throw new ExhaustivityCheckingError(value);
|
||||
@@ -106503,6 +106512,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -106633,8 +106647,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -106647,8 +106664,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -106660,7 +106677,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -106682,11 +106699,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -106697,6 +106710,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
|
||||
Generated
+33
-21
@@ -149550,7 +149550,6 @@ var require_artifact_client2 = __commonJS({
|
||||
var require_helpers3 = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path3, name, argument) {
|
||||
if (Array.isArray(path3)) {
|
||||
this.path = path3;
|
||||
@@ -149625,7 +149624,7 @@ var require_helpers3 = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -149640,7 +149639,9 @@ var require_helpers3 = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -149664,12 +149665,12 @@ var require_helpers3 = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve2(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path3 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path3, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -149863,6 +149864,14 @@ var require_helpers3 = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash } = resolvedUrl;
|
||||
return pathname + search + hash;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -150538,7 +150547,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers3();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -150549,12 +150557,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -150606,7 +150615,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers3();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -150671,7 +150679,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -150766,8 +150774,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -161518,8 +161526,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -161532,8 +161543,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info7) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info7.retryCount + 1;
|
||||
if (maxRetries > info7.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -161545,7 +161556,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -161567,11 +161578,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -161582,6 +161589,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
|
||||
Generated
+43
-21
@@ -47304,7 +47304,6 @@ var require_light = __commonJS({
|
||||
var require_helpers = __commonJS({
|
||||
"node_modules/jsonschema/lib/helpers.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var uri = require("url");
|
||||
var ValidationError = exports2.ValidationError = function ValidationError2(message, instance, schema2, path13, name, argument) {
|
||||
if (Array.isArray(path13)) {
|
||||
this.path = path13;
|
||||
@@ -47379,7 +47378,7 @@ var require_helpers = __commonJS({
|
||||
} });
|
||||
module2.exports.ValidatorResultError = ValidatorResultError;
|
||||
function ValidatorResultError(result) {
|
||||
if (Error.captureStackTrace) {
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, ValidatorResultError);
|
||||
}
|
||||
this.instance = result.instance;
|
||||
@@ -47394,7 +47393,9 @@ var require_helpers = __commonJS({
|
||||
this.message = msg;
|
||||
this.schema = schema2;
|
||||
Error.call(this, msg);
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
if (typeof Error.captureStackTrace === "function") {
|
||||
Error.captureStackTrace(this, SchemaError2);
|
||||
}
|
||||
};
|
||||
SchemaError.prototype = Object.create(
|
||||
Error.prototype,
|
||||
@@ -47418,12 +47419,12 @@ var require_helpers = __commonJS({
|
||||
this.schemas = schemas;
|
||||
};
|
||||
SchemaContext.prototype.resolve = function resolve6(target) {
|
||||
return uri.resolve(this.base, target);
|
||||
return (() => resolveUrl(this.base, target))();
|
||||
};
|
||||
SchemaContext.prototype.makeChild = function makeChild(schema2, propertyName) {
|
||||
var path13 = propertyName === void 0 ? this.path : this.path.concat([propertyName]);
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = uri.resolve(this.base, id || "");
|
||||
let base = (() => resolveUrl(this.base, id || ""))();
|
||||
var ctx = new SchemaContext(schema2, this.options, path13, base, Object.create(this.schemas));
|
||||
if (id && !ctx.schemas[base]) {
|
||||
ctx.schemas[base] = schema2;
|
||||
@@ -47617,6 +47618,14 @@ var require_helpers = __commonJS({
|
||||
exports2.isSchema = function isSchema(val) {
|
||||
return typeof val === "object" && val || typeof val === "boolean";
|
||||
};
|
||||
var resolveUrl = exports2.resolveUrl = function resolveUrl2(from, to) {
|
||||
const resolvedUrl = new URL(to, new URL(from, "resolve://"));
|
||||
if (resolvedUrl.protocol === "resolve:") {
|
||||
const { pathname, search, hash: hash2 } = resolvedUrl;
|
||||
return pathname + search + hash2;
|
||||
}
|
||||
return resolvedUrl.toString();
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@@ -48292,7 +48301,6 @@ var require_attribute = __commonJS({
|
||||
var require_scan = __commonJS({
|
||||
"node_modules/jsonschema/lib/scan.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var helpers = require_helpers();
|
||||
module2.exports.SchemaScanResult = SchemaScanResult;
|
||||
function SchemaScanResult(found, ref) {
|
||||
@@ -48303,12 +48311,13 @@ var require_scan = __commonJS({
|
||||
function scanSchema(baseuri, schema3) {
|
||||
if (!schema3 || typeof schema3 != "object") return;
|
||||
if (schema3.$ref) {
|
||||
var resolvedUri = urilib.resolve(baseuri, schema3.$ref);
|
||||
let resolvedUri = helpers.resolveUrl(baseuri, schema3.$ref);
|
||||
ref[resolvedUri] = ref[resolvedUri] ? ref[resolvedUri] + 1 : 0;
|
||||
return;
|
||||
}
|
||||
var id = schema3.$id || schema3.id;
|
||||
var ourBase = id ? urilib.resolve(baseuri, id) : baseuri;
|
||||
let resolvedBase = helpers.resolveUrl(baseuri, id);
|
||||
var ourBase = id ? resolvedBase : baseuri;
|
||||
if (ourBase) {
|
||||
if (ourBase.indexOf("#") < 0) ourBase += "#";
|
||||
if (found[ourBase]) {
|
||||
@@ -48360,7 +48369,6 @@ var require_scan = __commonJS({
|
||||
var require_validator = __commonJS({
|
||||
"node_modules/jsonschema/lib/validator.js"(exports2, module2) {
|
||||
"use strict";
|
||||
var urilib = require("url");
|
||||
var attribute = require_attribute();
|
||||
var helpers = require_helpers();
|
||||
var scanSchema = require_scan().scan;
|
||||
@@ -48425,7 +48433,7 @@ var require_validator = __commonJS({
|
||||
options = {};
|
||||
}
|
||||
var id = schema2.$id || schema2.id;
|
||||
var base = urilib.resolve(options.base || anonymousBase, id || "");
|
||||
let base = helpers.resolveUrl(options.base, id || "");
|
||||
if (!ctx) {
|
||||
ctx = new SchemaContext(schema2, options, [], base, Object.create(this.schemas));
|
||||
if (!ctx.schemas[base]) {
|
||||
@@ -48520,8 +48528,8 @@ var require_validator = __commonJS({
|
||||
if (ctx.schemas[switchSchema]) {
|
||||
return { subschema: ctx.schemas[switchSchema], switchSchema };
|
||||
}
|
||||
var parsed = urilib.parse(switchSchema);
|
||||
var fragment = parsed && parsed.hash;
|
||||
let parsed = new URL(switchSchema, "thismessage::/");
|
||||
let fragment = parsed.hash;
|
||||
var document2 = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
|
||||
if (!document2 || !ctx.schemas[document2]) {
|
||||
throw new SchemaError("no such schema <" + switchSchema + ">", schema2);
|
||||
@@ -106249,6 +106257,7 @@ var ExhaustivityCheckingError = class extends Error {
|
||||
super("Internal error: exhaustivity checking failure");
|
||||
this.expectedExhaustiveValue = expectedExhaustiveValue;
|
||||
}
|
||||
expectedExhaustiveValue;
|
||||
};
|
||||
function assertNever(value) {
|
||||
throw new ExhaustivityCheckingError(value);
|
||||
@@ -106534,6 +106543,11 @@ var CommandInvocationError = class extends Error {
|
||||
this.stderr = stderr;
|
||||
this.stdout = stdout;
|
||||
}
|
||||
cmd;
|
||||
args;
|
||||
exitCode;
|
||||
stderr;
|
||||
stdout;
|
||||
};
|
||||
function ensureEndsInPeriod(text) {
|
||||
return text[text.length - 1] === "." ? text : `${text}.`;
|
||||
@@ -106681,8 +106695,11 @@ var githubUtils = __toESM(require_utils5());
|
||||
var import_light = __toESM(require_light(), 1);
|
||||
init_dist_src();
|
||||
var VERSION7 = "0.0.0-development";
|
||||
function isRequestError(error3) {
|
||||
return error3.request !== void 0;
|
||||
}
|
||||
async function errorRequest(state, octokit, error3, options) {
|
||||
if (!error3.request || !error3.request.request) {
|
||||
if (!isRequestError(error3) || !error3?.request.request) {
|
||||
throw error3;
|
||||
}
|
||||
if (error3.status >= 400 && !state.doNotRetry.includes(error3.status)) {
|
||||
@@ -106695,8 +106712,8 @@ async function errorRequest(state, octokit, error3, options) {
|
||||
async function wrapRequest(state, octokit, request2, options) {
|
||||
const limiter = new import_light.default();
|
||||
limiter.on("failed", function(error3, info6) {
|
||||
const maxRetries = ~~error3.request.request.retries;
|
||||
const after = ~~error3.request.request.retryAfter;
|
||||
const maxRetries = ~~error3.request.request?.retries;
|
||||
const after = ~~error3.request.request?.retryAfter;
|
||||
options.request.retryCount = info6.retryCount + 1;
|
||||
if (maxRetries > info6.retryCount) {
|
||||
return after * state.retryAfterBaseValue;
|
||||
@@ -106708,7 +106725,7 @@ async function wrapRequest(state, octokit, request2, options) {
|
||||
);
|
||||
}
|
||||
async function requestWithGraphqlErrorHandling(state, octokit, request2, options) {
|
||||
const response = await request2(request2, options);
|
||||
const response = await request2(options);
|
||||
if (response.data && response.data.errors && response.data.errors.length > 0 && /Something went wrong while executing your query/.test(
|
||||
response.data.errors[0].message
|
||||
)) {
|
||||
@@ -106730,11 +106747,7 @@ function retry(octokit, octokitOptions) {
|
||||
},
|
||||
octokitOptions.retry
|
||||
);
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, octokit));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, octokit));
|
||||
}
|
||||
return {
|
||||
const retryPlugin = {
|
||||
retry: {
|
||||
retryRequest: (error3, retries, retryAfter) => {
|
||||
error3.request.request = Object.assign({}, error3.request.request, {
|
||||
@@ -106745,6 +106758,11 @@ function retry(octokit, octokitOptions) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (state.enabled) {
|
||||
octokit.hook.error("request", errorRequest.bind(null, state, retryPlugin));
|
||||
octokit.hook.wrap("request", wrapRequest.bind(null, state, retryPlugin));
|
||||
}
|
||||
return retryPlugin;
|
||||
}
|
||||
retry.VERSION = VERSION7;
|
||||
|
||||
@@ -107485,6 +107503,7 @@ var OfflineFeatures = class {
|
||||
constructor(logger) {
|
||||
this.logger = logger;
|
||||
}
|
||||
logger;
|
||||
async getDefaultCliVersion(_variant) {
|
||||
return {
|
||||
cliVersion,
|
||||
@@ -107633,6 +107652,9 @@ var GitHubFeatureFlags = class {
|
||||
this.logger = logger;
|
||||
this.hasAccessedRemoteFeatureFlags = false;
|
||||
}
|
||||
repositoryNwo;
|
||||
featureFlagsFile;
|
||||
logger;
|
||||
cachedApiResponse;
|
||||
// We cache whether the feature flags were accessed or not in order to accurately report whether flags were
|
||||
// incorrectly configured vs. inaccessible in our telemetry.
|
||||
|
||||
Generated
+616
-130
@@ -22,14 +22,14 @@
|
||||
"@actions/http-client": "^3.0.0",
|
||||
"@actions/io": "^2.0.0",
|
||||
"@actions/tool-cache": "^3.0.1",
|
||||
"@octokit/plugin-retry": "^8.0.0",
|
||||
"@octokit/plugin-retry": "^8.1.0",
|
||||
"archiver": "^7.0.1",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"follow-redirects": "^1.15.11",
|
||||
"get-folder-size": "^5.0.0",
|
||||
"https-proxy-agent": "^7.0.6",
|
||||
"js-yaml": "^4.1.1",
|
||||
"jsonschema": "1.4.1",
|
||||
"jsonschema": "1.5.0",
|
||||
"long": "^5.3.2",
|
||||
"node-forge": "^1.4.0",
|
||||
"semver": "^7.7.4",
|
||||
@@ -37,7 +37,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ava/typescript": "6.0.0",
|
||||
"@eslint/compat": "^2.0.3",
|
||||
"@eslint/compat": "^2.0.4",
|
||||
"@microsoft/eslint-formatter-sarif": "^3.1.0",
|
||||
"@octokit/types": "^16.0.0",
|
||||
"@types/archiver": "^7.0.0",
|
||||
@@ -47,9 +47,9 @@
|
||||
"@types/node-forge": "^1.3.14",
|
||||
"@types/sarif": "^2.1.7",
|
||||
"@types/semver": "^7.7.1",
|
||||
"@types/sinon": "^21.0.0",
|
||||
"@types/sinon": "^21.0.1",
|
||||
"ava": "^7.0.0",
|
||||
"esbuild": "^0.27.4",
|
||||
"esbuild": "^0.28.0",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-import-resolver-typescript": "^3.8.7",
|
||||
"eslint-plugin-github": "^6.0.0",
|
||||
@@ -58,7 +58,7 @@
|
||||
"eslint-plugin-no-async-foreach": "^0.1.1",
|
||||
"glob": "^11.1.0",
|
||||
"globals": "^17.4.0",
|
||||
"nock": "^14.0.11",
|
||||
"nock": "^14.0.12",
|
||||
"sinon": "^21.0.3",
|
||||
"typescript": "^6.0.2",
|
||||
"typescript-eslint": "^8.58.0"
|
||||
@@ -862,9 +862,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/aix-ppc64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz",
|
||||
"integrity": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.0.tgz",
|
||||
"integrity": "sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
@@ -879,9 +879,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/android-arm": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz",
|
||||
"integrity": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.0.tgz",
|
||||
"integrity": "sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
@@ -896,9 +896,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/android-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -913,9 +913,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/android-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -930,9 +930,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/darwin-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -947,9 +947,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/darwin-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -964,9 +964,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/freebsd-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -981,9 +981,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/freebsd-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -998,9 +998,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-arm": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz",
|
||||
"integrity": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.0.tgz",
|
||||
"integrity": "sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
@@ -1015,9 +1015,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1032,9 +1032,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-ia32": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz",
|
||||
"integrity": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.0.tgz",
|
||||
"integrity": "sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
@@ -1049,9 +1049,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-loong64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz",
|
||||
"integrity": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.0.tgz",
|
||||
"integrity": "sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==",
|
||||
"cpu": [
|
||||
"loong64"
|
||||
],
|
||||
@@ -1066,9 +1066,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-mips64el": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz",
|
||||
"integrity": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.0.tgz",
|
||||
"integrity": "sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==",
|
||||
"cpu": [
|
||||
"mips64el"
|
||||
],
|
||||
@@ -1083,9 +1083,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-ppc64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz",
|
||||
"integrity": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.0.tgz",
|
||||
"integrity": "sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
@@ -1100,9 +1100,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-riscv64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz",
|
||||
"integrity": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.0.tgz",
|
||||
"integrity": "sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==",
|
||||
"cpu": [
|
||||
"riscv64"
|
||||
],
|
||||
@@ -1117,9 +1117,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-s390x": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz",
|
||||
"integrity": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.0.tgz",
|
||||
"integrity": "sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==",
|
||||
"cpu": [
|
||||
"s390x"
|
||||
],
|
||||
@@ -1134,9 +1134,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/linux-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1151,9 +1151,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/netbsd-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1168,9 +1168,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/netbsd-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1185,9 +1185,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/openbsd-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1202,9 +1202,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/openbsd-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1219,9 +1219,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/openharmony-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1236,9 +1236,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/sunos-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1253,9 +1253,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/win32-arm64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz",
|
||||
"integrity": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -1270,9 +1270,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/win32-ia32": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz",
|
||||
"integrity": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.0.tgz",
|
||||
"integrity": "sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
@@ -1287,9 +1287,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@esbuild/win32-x64": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz",
|
||||
"integrity": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1333,13 +1333,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@eslint/compat": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/compat/-/compat-2.0.3.tgz",
|
||||
"integrity": "sha512-SjIJhGigp8hmd1YGIBwh7Ovri7Kisl42GYFjrOyHhtfYGGoLW6teYi/5p8W50KSsawUPpuLOSmsq1bD0NGQLBw==",
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/compat/-/compat-2.0.4.tgz",
|
||||
"integrity": "sha512-o598tCGstJv9Kk4XapwP+oDij9HD9Qr3V37ABzTfdzVvbFciV+sfg9zSW6olj6G/IXj7p89SwSzPnZ+JUEPIPg==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@eslint/core": "^1.1.1"
|
||||
"@eslint/core": "^1.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^20.19.0 || ^22.13.0 || >=24"
|
||||
@@ -1395,9 +1395,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@eslint/core": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.1.1.tgz",
|
||||
"integrity": "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==",
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz",
|
||||
"integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
@@ -2147,9 +2147,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/plugin-retry": {
|
||||
"version": "8.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-8.0.3.tgz",
|
||||
"integrity": "sha512-vKGx1i3MC0za53IzYBSBXcrhmd+daQDzuZfYDd52X5S0M2otf3kVZTVP8bLA3EkU0lTvd1WEC2OlNNa4G+dohA==",
|
||||
"version": "8.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-8.1.0.tgz",
|
||||
"integrity": "sha512-O1FZgXeiGb2sowEr/hYTr6YunGdSAFWnr2fyW39Ah85H8O33ELASQxcvOFF5LE6Tjekcyu2ms4qAzJVhSaJxTw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/request-error": "^7.0.2",
|
||||
@@ -2534,9 +2534,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@types/sinon": {
|
||||
"version": "21.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-21.0.0.tgz",
|
||||
"integrity": "sha512-+oHKZ0lTI+WVLxx1IbJDNmReQaIsQJjN2e7UUrJHEeByG7bFeKJYsv1E75JxTQ9QKJDp21bAa/0W2Xo4srsDnw==",
|
||||
"version": "21.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-21.0.1.tgz",
|
||||
"integrity": "sha512-5yoJSqLbjH8T9V2bksgRayuhpZy+723/z6wBOR+Soe4ZlXC0eW8Na71TeaZPUWDQvM7LYKa9UGFc6LRqxiR5fQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -4699,9 +4699,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/esbuild": {
|
||||
"version": "0.27.4",
|
||||
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.4.tgz",
|
||||
"integrity": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==",
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.0.tgz",
|
||||
"integrity": "sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
@@ -4712,32 +4712,32 @@
|
||||
"node": ">=18"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@esbuild/aix-ppc64": "0.27.4",
|
||||
"@esbuild/android-arm": "0.27.4",
|
||||
"@esbuild/android-arm64": "0.27.4",
|
||||
"@esbuild/android-x64": "0.27.4",
|
||||
"@esbuild/darwin-arm64": "0.27.4",
|
||||
"@esbuild/darwin-x64": "0.27.4",
|
||||
"@esbuild/freebsd-arm64": "0.27.4",
|
||||
"@esbuild/freebsd-x64": "0.27.4",
|
||||
"@esbuild/linux-arm": "0.27.4",
|
||||
"@esbuild/linux-arm64": "0.27.4",
|
||||
"@esbuild/linux-ia32": "0.27.4",
|
||||
"@esbuild/linux-loong64": "0.27.4",
|
||||
"@esbuild/linux-mips64el": "0.27.4",
|
||||
"@esbuild/linux-ppc64": "0.27.4",
|
||||
"@esbuild/linux-riscv64": "0.27.4",
|
||||
"@esbuild/linux-s390x": "0.27.4",
|
||||
"@esbuild/linux-x64": "0.27.4",
|
||||
"@esbuild/netbsd-arm64": "0.27.4",
|
||||
"@esbuild/netbsd-x64": "0.27.4",
|
||||
"@esbuild/openbsd-arm64": "0.27.4",
|
||||
"@esbuild/openbsd-x64": "0.27.4",
|
||||
"@esbuild/openharmony-arm64": "0.27.4",
|
||||
"@esbuild/sunos-x64": "0.27.4",
|
||||
"@esbuild/win32-arm64": "0.27.4",
|
||||
"@esbuild/win32-ia32": "0.27.4",
|
||||
"@esbuild/win32-x64": "0.27.4"
|
||||
"@esbuild/aix-ppc64": "0.28.0",
|
||||
"@esbuild/android-arm": "0.28.0",
|
||||
"@esbuild/android-arm64": "0.28.0",
|
||||
"@esbuild/android-x64": "0.28.0",
|
||||
"@esbuild/darwin-arm64": "0.28.0",
|
||||
"@esbuild/darwin-x64": "0.28.0",
|
||||
"@esbuild/freebsd-arm64": "0.28.0",
|
||||
"@esbuild/freebsd-x64": "0.28.0",
|
||||
"@esbuild/linux-arm": "0.28.0",
|
||||
"@esbuild/linux-arm64": "0.28.0",
|
||||
"@esbuild/linux-ia32": "0.28.0",
|
||||
"@esbuild/linux-loong64": "0.28.0",
|
||||
"@esbuild/linux-mips64el": "0.28.0",
|
||||
"@esbuild/linux-ppc64": "0.28.0",
|
||||
"@esbuild/linux-riscv64": "0.28.0",
|
||||
"@esbuild/linux-s390x": "0.28.0",
|
||||
"@esbuild/linux-x64": "0.28.0",
|
||||
"@esbuild/netbsd-arm64": "0.28.0",
|
||||
"@esbuild/netbsd-x64": "0.28.0",
|
||||
"@esbuild/openbsd-arm64": "0.28.0",
|
||||
"@esbuild/openbsd-x64": "0.28.0",
|
||||
"@esbuild/openharmony-arm64": "0.28.0",
|
||||
"@esbuild/sunos-x64": "0.28.0",
|
||||
"@esbuild/win32-arm64": "0.28.0",
|
||||
"@esbuild/win32-ia32": "0.28.0",
|
||||
"@esbuild/win32-x64": "0.28.0"
|
||||
}
|
||||
},
|
||||
"node_modules/escalade": {
|
||||
@@ -7080,7 +7080,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/jsonschema": {
|
||||
"version": "1.4.1",
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.5.0.tgz",
|
||||
"integrity": "sha512-K+A9hhqbn0f3pJX17Q/7H6yQfD/5OXgdrR5UE12gMXCiN9D5Xq2o5mddV2QEcX/bjla99ASsAAQUyMCCRWAEhw==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "*"
|
||||
@@ -7468,9 +7470,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/nock": {
|
||||
"version": "14.0.11",
|
||||
"resolved": "https://registry.npmjs.org/nock/-/nock-14.0.11.tgz",
|
||||
"integrity": "sha512-u5xUnYE+UOOBA6SpELJheMCtj2Laqx15Vl70QxKo43Wz/6nMHXS7PrEioXLjXAwhmawdEMNImwKCcPhBJWbKVw==",
|
||||
"version": "14.0.12",
|
||||
"resolved": "https://registry.npmjs.org/nock/-/nock-14.0.12.tgz",
|
||||
"integrity": "sha512-kZM3bHV0KzhHH6E2eRszHyML/w87AUzLBwupNTHohtYWP9fZYgUPmCbSKq6ITfEEmHqN4/p0MscvUipT4P5Qsg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
@@ -9205,6 +9207,490 @@
|
||||
"fsevents": "~2.3.3"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/aix-ppc64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
|
||||
"integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"aix"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/android-arm": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
|
||||
"integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/android-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/android-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/darwin-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/darwin-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/freebsd-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/freebsd-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-arm": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
|
||||
"integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-ia32": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
|
||||
"integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-loong64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
|
||||
"integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
|
||||
"cpu": [
|
||||
"loong64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-mips64el": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
|
||||
"integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
|
||||
"cpu": [
|
||||
"mips64el"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-ppc64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
|
||||
"integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-riscv64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
|
||||
"integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
|
||||
"cpu": [
|
||||
"riscv64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-s390x": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
|
||||
"integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
|
||||
"cpu": [
|
||||
"s390x"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/linux-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/netbsd-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"netbsd"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/netbsd-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"netbsd"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/openbsd-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"openbsd"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/openbsd-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"openbsd"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/openharmony-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"openharmony"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/sunos-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"sunos"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/win32-arm64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
|
||||
"integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/win32-ia32": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
|
||||
"integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/@esbuild/win32-x64": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
|
||||
"integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/tsx/node_modules/esbuild": {
|
||||
"version": "0.27.7",
|
||||
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
|
||||
"integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"esbuild": "bin/esbuild"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@esbuild/aix-ppc64": "0.27.7",
|
||||
"@esbuild/android-arm": "0.27.7",
|
||||
"@esbuild/android-arm64": "0.27.7",
|
||||
"@esbuild/android-x64": "0.27.7",
|
||||
"@esbuild/darwin-arm64": "0.27.7",
|
||||
"@esbuild/darwin-x64": "0.27.7",
|
||||
"@esbuild/freebsd-arm64": "0.27.7",
|
||||
"@esbuild/freebsd-x64": "0.27.7",
|
||||
"@esbuild/linux-arm": "0.27.7",
|
||||
"@esbuild/linux-arm64": "0.27.7",
|
||||
"@esbuild/linux-ia32": "0.27.7",
|
||||
"@esbuild/linux-loong64": "0.27.7",
|
||||
"@esbuild/linux-mips64el": "0.27.7",
|
||||
"@esbuild/linux-ppc64": "0.27.7",
|
||||
"@esbuild/linux-riscv64": "0.27.7",
|
||||
"@esbuild/linux-s390x": "0.27.7",
|
||||
"@esbuild/linux-x64": "0.27.7",
|
||||
"@esbuild/netbsd-arm64": "0.27.7",
|
||||
"@esbuild/netbsd-x64": "0.27.7",
|
||||
"@esbuild/openbsd-arm64": "0.27.7",
|
||||
"@esbuild/openbsd-x64": "0.27.7",
|
||||
"@esbuild/openharmony-arm64": "0.27.7",
|
||||
"@esbuild/sunos-x64": "0.27.7",
|
||||
"@esbuild/win32-arm64": "0.27.7",
|
||||
"@esbuild/win32-ia32": "0.27.7",
|
||||
"@esbuild/win32-x64": "0.27.7"
|
||||
}
|
||||
},
|
||||
"node_modules/tunnel": {
|
||||
"version": "0.0.6",
|
||||
"license": "MIT",
|
||||
|
||||
+6
-6
@@ -29,14 +29,14 @@
|
||||
"@actions/http-client": "^3.0.0",
|
||||
"@actions/io": "^2.0.0",
|
||||
"@actions/tool-cache": "^3.0.1",
|
||||
"@octokit/plugin-retry": "^8.0.0",
|
||||
"@octokit/plugin-retry": "^8.1.0",
|
||||
"archiver": "^7.0.1",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"follow-redirects": "^1.15.11",
|
||||
"get-folder-size": "^5.0.0",
|
||||
"https-proxy-agent": "^7.0.6",
|
||||
"js-yaml": "^4.1.1",
|
||||
"jsonschema": "1.4.1",
|
||||
"jsonschema": "1.5.0",
|
||||
"long": "^5.3.2",
|
||||
"node-forge": "^1.4.0",
|
||||
"semver": "^7.7.4",
|
||||
@@ -44,7 +44,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ava/typescript": "6.0.0",
|
||||
"@eslint/compat": "^2.0.3",
|
||||
"@eslint/compat": "^2.0.4",
|
||||
"@microsoft/eslint-formatter-sarif": "^3.1.0",
|
||||
"@octokit/types": "^16.0.0",
|
||||
"@types/archiver": "^7.0.0",
|
||||
@@ -54,9 +54,9 @@
|
||||
"@types/node-forge": "^1.3.14",
|
||||
"@types/sarif": "^2.1.7",
|
||||
"@types/semver": "^7.7.1",
|
||||
"@types/sinon": "^21.0.0",
|
||||
"@types/sinon": "^21.0.1",
|
||||
"ava": "^7.0.0",
|
||||
"esbuild": "^0.27.4",
|
||||
"esbuild": "^0.28.0",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-import-resolver-typescript": "^3.8.7",
|
||||
"eslint-plugin-github": "^6.0.0",
|
||||
@@ -65,7 +65,7 @@
|
||||
"eslint-plugin-no-async-foreach": "^0.1.1",
|
||||
"glob": "^11.1.0",
|
||||
"globals": "^17.4.0",
|
||||
"nock": "^14.0.11",
|
||||
"nock": "^14.0.12",
|
||||
"sinon": "^21.0.3",
|
||||
"typescript": "^6.0.2",
|
||||
"typescript-eslint": "^8.58.0"
|
||||
|
||||
Reference in New Issue
Block a user