mirror of
https://gitee.com/actions-mirror/upload-artifact.git
synced 2025-12-14 11:31:22 +08:00
Merge pull request #744 from actions/fix-storage-blob
fix: update @actions/artifact for Node.js 24 punycode deprecation
This commit is contained in:
commit
017748b48f
BIN
.licenses/npm/@actions/artifact.dep.yml
generated
BIN
.licenses/npm/@actions/artifact.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/abort-controller-1.1.0.dep.yml
generated
BIN
.licenses/npm/@azure/abort-controller-1.1.0.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/core-http.dep.yml
generated
BIN
.licenses/npm/@azure/core-http.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@opentelemetry/api.dep.yml
generated
BIN
.licenses/npm/@opentelemetry/api.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@types/node-fetch.dep.yml
generated
BIN
.licenses/npm/@types/node-fetch.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@types/node.dep.yml
generated
BIN
.licenses/npm/@types/node.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@types/tunnel.dep.yml
generated
BIN
.licenses/npm/@types/tunnel.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/asynckit.dep.yml
generated
BIN
.licenses/npm/asynckit.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/call-bind-apply-helpers.dep.yml
generated
BIN
.licenses/npm/call-bind-apply-helpers.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/combined-stream.dep.yml
generated
BIN
.licenses/npm/combined-stream.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/delayed-stream.dep.yml
generated
BIN
.licenses/npm/delayed-stream.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/dunder-proto.dep.yml
generated
BIN
.licenses/npm/dunder-proto.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/es-define-property.dep.yml
generated
BIN
.licenses/npm/es-define-property.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/es-errors.dep.yml
generated
BIN
.licenses/npm/es-errors.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/es-object-atoms.dep.yml
generated
BIN
.licenses/npm/es-object-atoms.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/es-set-tostringtag.dep.yml
generated
BIN
.licenses/npm/es-set-tostringtag.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/form-data.dep.yml
generated
BIN
.licenses/npm/form-data.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/function-bind.dep.yml
generated
BIN
.licenses/npm/function-bind.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/get-intrinsic.dep.yml
generated
BIN
.licenses/npm/get-intrinsic.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/get-proto.dep.yml
generated
BIN
.licenses/npm/get-proto.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/gopd.dep.yml
generated
BIN
.licenses/npm/gopd.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/has-symbols.dep.yml
generated
BIN
.licenses/npm/has-symbols.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/has-tostringtag.dep.yml
generated
BIN
.licenses/npm/has-tostringtag.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/hasown.dep.yml
generated
BIN
.licenses/npm/hasown.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/math-intrinsics.dep.yml
generated
BIN
.licenses/npm/math-intrinsics.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/mime-db.dep.yml
generated
BIN
.licenses/npm/mime-db.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/mime-types.dep.yml
generated
BIN
.licenses/npm/mime-types.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/node-fetch.dep.yml
generated
BIN
.licenses/npm/node-fetch.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/sax.dep.yml
generated
BIN
.licenses/npm/sax.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/tr46.dep.yml
generated
BIN
.licenses/npm/tr46.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/undici-types.dep.yml
generated
BIN
.licenses/npm/undici-types.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/uuid.dep.yml
generated
BIN
.licenses/npm/uuid.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/webidl-conversions.dep.yml
generated
BIN
.licenses/npm/webidl-conversions.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/whatwg-url.dep.yml
generated
BIN
.licenses/npm/whatwg-url.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/xml2js.dep.yml
generated
BIN
.licenses/npm/xml2js.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/xmlbuilder.dep.yml
generated
BIN
.licenses/npm/xmlbuilder.dep.yml
generated
Binary file not shown.
516
dist/merge/index.js
vendored
516
dist/merge/index.js
vendored
@ -82214,6 +82214,59 @@ module.exports = require("zlib");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 22563:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 60583:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(22563);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 31875:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
@ -87953,7 +88006,7 @@ function tlsPolicy(tlsSettings) {
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.tracingPolicyName = void 0;
|
||||
exports.tracingPolicy = tracingPolicy;
|
||||
const core_tracing_1 = __nccwpck_require__(951);
|
||||
const core_tracing_1 = __nccwpck_require__(19363);
|
||||
const constants_js_1 = __nccwpck_require__(43171);
|
||||
const userAgent_js_1 = __nccwpck_require__(96158);
|
||||
const log_js_1 = __nccwpck_require__(30648);
|
||||
@ -88628,7 +88681,7 @@ function wrapAbortSignalLike(abortSignalLike) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 951:
|
||||
/***/ 19363:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
@ -88637,15 +88690,15 @@ function wrapAbortSignalLike(abortSignalLike) {
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = exports.useInstrumenter = void 0;
|
||||
var instrumenter_js_1 = __nccwpck_require__(88397);
|
||||
var instrumenter_js_1 = __nccwpck_require__(63418);
|
||||
Object.defineProperty(exports, "useInstrumenter", ({ enumerable: true, get: function () { return instrumenter_js_1.useInstrumenter; } }));
|
||||
var tracingClient_js_1 = __nccwpck_require__(47369);
|
||||
var tracingClient_js_1 = __nccwpck_require__(69254);
|
||||
Object.defineProperty(exports, "createTracingClient", ({ enumerable: true, get: function () { return tracingClient_js_1.createTracingClient; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 88397:
|
||||
/***/ 63418:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
@ -88657,8 +88710,8 @@ exports.createDefaultTracingSpan = createDefaultTracingSpan;
|
||||
exports.createDefaultInstrumenter = createDefaultInstrumenter;
|
||||
exports.useInstrumenter = useInstrumenter;
|
||||
exports.getInstrumenter = getInstrumenter;
|
||||
const tracingContext_js_1 = __nccwpck_require__(23971);
|
||||
const state_js_1 = __nccwpck_require__(8058);
|
||||
const tracingContext_js_1 = __nccwpck_require__(18110);
|
||||
const state_js_1 = __nccwpck_require__(81241);
|
||||
function createDefaultTracingSpan() {
|
||||
return {
|
||||
end: () => {
|
||||
@ -88721,7 +88774,7 @@ function getInstrumenter() {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 8058:
|
||||
/***/ 81241:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
@ -88742,7 +88795,7 @@ exports.state = {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 47369:
|
||||
/***/ 69254:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
@ -88751,8 +88804,8 @@ exports.state = {
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = createTracingClient;
|
||||
const instrumenter_js_1 = __nccwpck_require__(88397);
|
||||
const tracingContext_js_1 = __nccwpck_require__(23971);
|
||||
const instrumenter_js_1 = __nccwpck_require__(63418);
|
||||
const tracingContext_js_1 = __nccwpck_require__(18110);
|
||||
/**
|
||||
* Creates a new tracing client.
|
||||
*
|
||||
@ -88830,7 +88883,7 @@ function createTracingClient(options) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 23971:
|
||||
/***/ 18110:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
@ -88929,7 +88982,7 @@ async function cancelablePromiseRace(abortablePromiseBuilders, options) {
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createAbortablePromise = createAbortablePromise;
|
||||
const abort_controller_1 = __nccwpck_require__(54812);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
/**
|
||||
* Creates an abortable promise.
|
||||
* @param buildPromise - A function that takes the resolve and reject functions as parameters.
|
||||
@ -89266,59 +89319,6 @@ function objectHasProperty(thing, property) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 42118:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 54812:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(42118);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 17309:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
@ -110921,7 +110921,7 @@ exports.AvroReadable = AvroReadable;
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AvroReadableFromStream = void 0;
|
||||
const AvroReadable_js_1 = __nccwpck_require__(15192);
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const buffer_1 = __nccwpck_require__(14300);
|
||||
const ABORT_ERROR = new abort_controller_1.AbortError("Reading from the avro stream was aborted.");
|
||||
class AvroReadableFromStream extends AvroReadable_js_1.AvroReadable {
|
||||
@ -111598,7 +111598,7 @@ function storageCorrectContentLengthPolicy() {
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.StorageRetryPolicy = void 0;
|
||||
exports.NewRetryPolicyFactory = NewRetryPolicyFactory;
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const RequestPolicy_js_1 = __nccwpck_require__(33847);
|
||||
const constants_js_1 = __nccwpck_require__(81865);
|
||||
const utils_common_js_1 = __nccwpck_require__(16673);
|
||||
@ -111856,7 +111856,7 @@ var StorageRetryPolicyType;
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.storageRetryPolicyName = void 0;
|
||||
exports.storageRetryPolicy = storageRetryPolicy;
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const core_rest_pipeline_1 = __nccwpck_require__(29146);
|
||||
const core_util_1 = __nccwpck_require__(80637);
|
||||
const StorageRetryPolicyFactory_js_1 = __nccwpck_require__(98637);
|
||||
@ -114831,7 +114831,7 @@ exports.Mutex = Mutex;
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.RetriableReadableStream = void 0;
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const node_stream_1 = __nccwpck_require__(84492);
|
||||
/**
|
||||
* ONLY AVAILABLE IN NODE.JS RUNTIME.
|
||||
@ -115288,7 +115288,7 @@ exports.PathStylePorts = [
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.tracingClient = void 0;
|
||||
const core_tracing_1 = __nccwpck_require__(46897);
|
||||
const core_tracing_1 = __nccwpck_require__(19363);
|
||||
const constants_js_1 = __nccwpck_require__(81865);
|
||||
/**
|
||||
* Creates a span using the global tracer.
|
||||
@ -116264,321 +116264,6 @@ exports.fsCreateReadStream = node_fs_1.default.createReadStream;
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 58412:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 1753:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(58412);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 46897:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = exports.useInstrumenter = void 0;
|
||||
var instrumenter_js_1 = __nccwpck_require__(37009);
|
||||
Object.defineProperty(exports, "useInstrumenter", ({ enumerable: true, get: function () { return instrumenter_js_1.useInstrumenter; } }));
|
||||
var tracingClient_js_1 = __nccwpck_require__(9535);
|
||||
Object.defineProperty(exports, "createTracingClient", ({ enumerable: true, get: function () { return tracingClient_js_1.createTracingClient; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 37009:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createDefaultTracingSpan = createDefaultTracingSpan;
|
||||
exports.createDefaultInstrumenter = createDefaultInstrumenter;
|
||||
exports.useInstrumenter = useInstrumenter;
|
||||
exports.getInstrumenter = getInstrumenter;
|
||||
const tracingContext_js_1 = __nccwpck_require__(95236);
|
||||
const state_js_1 = __nccwpck_require__(12995);
|
||||
function createDefaultTracingSpan() {
|
||||
return {
|
||||
end: () => {
|
||||
// noop
|
||||
},
|
||||
isRecording: () => false,
|
||||
recordException: () => {
|
||||
// noop
|
||||
},
|
||||
setAttribute: () => {
|
||||
// noop
|
||||
},
|
||||
setStatus: () => {
|
||||
// noop
|
||||
},
|
||||
addEvent: () => {
|
||||
// noop
|
||||
},
|
||||
};
|
||||
}
|
||||
function createDefaultInstrumenter() {
|
||||
return {
|
||||
createRequestHeaders: () => {
|
||||
return {};
|
||||
},
|
||||
parseTraceparentHeader: () => {
|
||||
return undefined;
|
||||
},
|
||||
startSpan: (_name, spanOptions) => {
|
||||
return {
|
||||
span: createDefaultTracingSpan(),
|
||||
tracingContext: (0, tracingContext_js_1.createTracingContext)({ parentContext: spanOptions.tracingContext }),
|
||||
};
|
||||
},
|
||||
withContext(_context, callback, ...callbackArgs) {
|
||||
return callback(...callbackArgs);
|
||||
},
|
||||
};
|
||||
}
|
||||
/**
|
||||
* Extends the Azure SDK with support for a given instrumenter implementation.
|
||||
*
|
||||
* @param instrumenter - The instrumenter implementation to use.
|
||||
*/
|
||||
function useInstrumenter(instrumenter) {
|
||||
state_js_1.state.instrumenterImplementation = instrumenter;
|
||||
}
|
||||
/**
|
||||
* Gets the currently set instrumenter, a No-Op instrumenter by default.
|
||||
*
|
||||
* @returns The currently set instrumenter
|
||||
*/
|
||||
function getInstrumenter() {
|
||||
if (!state_js_1.state.instrumenterImplementation) {
|
||||
state_js_1.state.instrumenterImplementation = createDefaultInstrumenter();
|
||||
}
|
||||
return state_js_1.state.instrumenterImplementation;
|
||||
}
|
||||
//# sourceMappingURL=instrumenter.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 12995:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.state = void 0;
|
||||
/**
|
||||
* @internal
|
||||
*
|
||||
* Holds the singleton instrumenter, to be shared across CJS and ESM imports.
|
||||
*/
|
||||
exports.state = {
|
||||
instrumenterImplementation: undefined,
|
||||
};
|
||||
//# sourceMappingURL=state-cjs.cjs.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 9535:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = createTracingClient;
|
||||
const instrumenter_js_1 = __nccwpck_require__(37009);
|
||||
const tracingContext_js_1 = __nccwpck_require__(95236);
|
||||
/**
|
||||
* Creates a new tracing client.
|
||||
*
|
||||
* @param options - Options used to configure the tracing client.
|
||||
* @returns - An instance of {@link TracingClient}.
|
||||
*/
|
||||
function createTracingClient(options) {
|
||||
const { namespace, packageName, packageVersion } = options;
|
||||
function startSpan(name, operationOptions, spanOptions) {
|
||||
const startSpanResult = (0, instrumenter_js_1.getInstrumenter)().startSpan(name, {
|
||||
...spanOptions,
|
||||
packageName: packageName,
|
||||
packageVersion: packageVersion,
|
||||
tracingContext: operationOptions?.tracingOptions?.tracingContext,
|
||||
});
|
||||
let tracingContext = startSpanResult.tracingContext;
|
||||
const span = startSpanResult.span;
|
||||
if (!tracingContext.getValue(tracingContext_js_1.knownContextKeys.namespace)) {
|
||||
tracingContext = tracingContext.setValue(tracingContext_js_1.knownContextKeys.namespace, namespace);
|
||||
}
|
||||
span.setAttribute("az.namespace", tracingContext.getValue(tracingContext_js_1.knownContextKeys.namespace));
|
||||
const updatedOptions = Object.assign({}, operationOptions, {
|
||||
tracingOptions: { ...operationOptions?.tracingOptions, tracingContext },
|
||||
});
|
||||
return {
|
||||
span,
|
||||
updatedOptions,
|
||||
};
|
||||
}
|
||||
async function withSpan(name, operationOptions, callback, spanOptions) {
|
||||
const { span, updatedOptions } = startSpan(name, operationOptions, spanOptions);
|
||||
try {
|
||||
const result = await withContext(updatedOptions.tracingOptions.tracingContext, () => Promise.resolve(callback(updatedOptions, span)));
|
||||
span.setStatus({ status: "success" });
|
||||
return result;
|
||||
}
|
||||
catch (err) {
|
||||
span.setStatus({ status: "error", error: err });
|
||||
throw err;
|
||||
}
|
||||
finally {
|
||||
span.end();
|
||||
}
|
||||
}
|
||||
function withContext(context, callback, ...callbackArgs) {
|
||||
return (0, instrumenter_js_1.getInstrumenter)().withContext(context, callback, ...callbackArgs);
|
||||
}
|
||||
/**
|
||||
* Parses a traceparent header value into a span identifier.
|
||||
*
|
||||
* @param traceparentHeader - The traceparent header to parse.
|
||||
* @returns An implementation-specific identifier for the span.
|
||||
*/
|
||||
function parseTraceparentHeader(traceparentHeader) {
|
||||
return (0, instrumenter_js_1.getInstrumenter)().parseTraceparentHeader(traceparentHeader);
|
||||
}
|
||||
/**
|
||||
* Creates a set of request headers to propagate tracing information to a backend.
|
||||
*
|
||||
* @param tracingContext - The context containing the span to serialize.
|
||||
* @returns The set of headers to add to a request.
|
||||
*/
|
||||
function createRequestHeaders(tracingContext) {
|
||||
return (0, instrumenter_js_1.getInstrumenter)().createRequestHeaders(tracingContext);
|
||||
}
|
||||
return {
|
||||
startSpan,
|
||||
withSpan,
|
||||
withContext,
|
||||
parseTraceparentHeader,
|
||||
createRequestHeaders,
|
||||
};
|
||||
}
|
||||
//# sourceMappingURL=tracingClient.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 95236:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.TracingContextImpl = exports.knownContextKeys = void 0;
|
||||
exports.createTracingContext = createTracingContext;
|
||||
/** @internal */
|
||||
exports.knownContextKeys = {
|
||||
span: Symbol.for("@azure/core-tracing span"),
|
||||
namespace: Symbol.for("@azure/core-tracing namespace"),
|
||||
};
|
||||
/**
|
||||
* Creates a new {@link TracingContext} with the given options.
|
||||
* @param options - A set of known keys that may be set on the context.
|
||||
* @returns A new {@link TracingContext} with the given options.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
function createTracingContext(options = {}) {
|
||||
let context = new TracingContextImpl(options.parentContext);
|
||||
if (options.span) {
|
||||
context = context.setValue(exports.knownContextKeys.span, options.span);
|
||||
}
|
||||
if (options.namespace) {
|
||||
context = context.setValue(exports.knownContextKeys.namespace, options.namespace);
|
||||
}
|
||||
return context;
|
||||
}
|
||||
/** @internal */
|
||||
class TracingContextImpl {
|
||||
_contextMap;
|
||||
constructor(initialContext) {
|
||||
this._contextMap =
|
||||
initialContext instanceof TracingContextImpl
|
||||
? new Map(initialContext._contextMap)
|
||||
: new Map();
|
||||
}
|
||||
setValue(key, value) {
|
||||
const newContext = new TracingContextImpl(this);
|
||||
newContext._contextMap.set(key, value);
|
||||
return newContext;
|
||||
}
|
||||
getValue(key) {
|
||||
return this._contextMap.get(key);
|
||||
}
|
||||
deleteValue(key) {
|
||||
const newContext = new TracingContextImpl(this);
|
||||
newContext._contextMap.delete(key);
|
||||
return newContext;
|
||||
}
|
||||
}
|
||||
exports.TracingContextImpl = TracingContextImpl;
|
||||
//# sourceMappingURL=tracingContext.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 80974:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
@ -117666,7 +117351,7 @@ function storageRequestFailureDetailsParserPolicy() {
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.StorageRetryPolicy = void 0;
|
||||
exports.NewRetryPolicyFactory = NewRetryPolicyFactory;
|
||||
const abort_controller_1 = __nccwpck_require__(31514);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const RequestPolicy_js_1 = __nccwpck_require__(76584);
|
||||
const constants_js_1 = __nccwpck_require__(77807);
|
||||
const utils_common_js_1 = __nccwpck_require__(61876);
|
||||
@ -117924,7 +117609,7 @@ var StorageRetryPolicyType;
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.storageRetryPolicyName = void 0;
|
||||
exports.storageRetryPolicy = storageRetryPolicy;
|
||||
const abort_controller_1 = __nccwpck_require__(31514);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const core_rest_pipeline_1 = __nccwpck_require__(29146);
|
||||
const core_util_1 = __nccwpck_require__(80637);
|
||||
const StorageRetryPolicyFactory_js_1 = __nccwpck_require__(26508);
|
||||
@ -119125,59 +118810,6 @@ function assertResponse(response) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 81577:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 31514:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(81577);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 92960:
|
||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||
|
||||
@ -133391,7 +133023,7 @@ module.exports = index;
|
||||
/***/ ((module) => {
|
||||
|
||||
"use strict";
|
||||
module.exports = JSON.parse('{"name":"@actions/artifact","version":"5.0.0","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^2.0.0","@actions/github":"^6.0.1","@actions/http-client":"^3.0.0","@azure/core-http":"^3.0.5","@azure/storage-blob":"^12.15.0","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
||||
module.exports = JSON.parse('{"name":"@actions/artifact","version":"5.0.1","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^2.0.0","@actions/github":"^6.0.1","@actions/http-client":"^3.0.0","@azure/storage-blob":"^12.29.1","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
||||
|
||||
/***/ })
|
||||
|
||||
|
||||
516
dist/upload/index.js
vendored
516
dist/upload/index.js
vendored
@ -82223,6 +82223,59 @@ module.exports = require("zlib");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 22563:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 60583:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(22563);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 31875:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
@ -87962,7 +88015,7 @@ function tlsPolicy(tlsSettings) {
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.tracingPolicyName = void 0;
|
||||
exports.tracingPolicy = tracingPolicy;
|
||||
const core_tracing_1 = __nccwpck_require__(951);
|
||||
const core_tracing_1 = __nccwpck_require__(19363);
|
||||
const constants_js_1 = __nccwpck_require__(43171);
|
||||
const userAgent_js_1 = __nccwpck_require__(96158);
|
||||
const log_js_1 = __nccwpck_require__(30648);
|
||||
@ -88637,7 +88690,7 @@ function wrapAbortSignalLike(abortSignalLike) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 951:
|
||||
/***/ 19363:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
@ -88646,15 +88699,15 @@ function wrapAbortSignalLike(abortSignalLike) {
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = exports.useInstrumenter = void 0;
|
||||
var instrumenter_js_1 = __nccwpck_require__(88397);
|
||||
var instrumenter_js_1 = __nccwpck_require__(63418);
|
||||
Object.defineProperty(exports, "useInstrumenter", ({ enumerable: true, get: function () { return instrumenter_js_1.useInstrumenter; } }));
|
||||
var tracingClient_js_1 = __nccwpck_require__(47369);
|
||||
var tracingClient_js_1 = __nccwpck_require__(69254);
|
||||
Object.defineProperty(exports, "createTracingClient", ({ enumerable: true, get: function () { return tracingClient_js_1.createTracingClient; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 88397:
|
||||
/***/ 63418:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
@ -88666,8 +88719,8 @@ exports.createDefaultTracingSpan = createDefaultTracingSpan;
|
||||
exports.createDefaultInstrumenter = createDefaultInstrumenter;
|
||||
exports.useInstrumenter = useInstrumenter;
|
||||
exports.getInstrumenter = getInstrumenter;
|
||||
const tracingContext_js_1 = __nccwpck_require__(23971);
|
||||
const state_js_1 = __nccwpck_require__(8058);
|
||||
const tracingContext_js_1 = __nccwpck_require__(18110);
|
||||
const state_js_1 = __nccwpck_require__(81241);
|
||||
function createDefaultTracingSpan() {
|
||||
return {
|
||||
end: () => {
|
||||
@ -88730,7 +88783,7 @@ function getInstrumenter() {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 8058:
|
||||
/***/ 81241:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
@ -88751,7 +88804,7 @@ exports.state = {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 47369:
|
||||
/***/ 69254:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
@ -88760,8 +88813,8 @@ exports.state = {
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = createTracingClient;
|
||||
const instrumenter_js_1 = __nccwpck_require__(88397);
|
||||
const tracingContext_js_1 = __nccwpck_require__(23971);
|
||||
const instrumenter_js_1 = __nccwpck_require__(63418);
|
||||
const tracingContext_js_1 = __nccwpck_require__(18110);
|
||||
/**
|
||||
* Creates a new tracing client.
|
||||
*
|
||||
@ -88839,7 +88892,7 @@ function createTracingClient(options) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 23971:
|
||||
/***/ 18110:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
@ -88938,7 +88991,7 @@ async function cancelablePromiseRace(abortablePromiseBuilders, options) {
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createAbortablePromise = createAbortablePromise;
|
||||
const abort_controller_1 = __nccwpck_require__(54812);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
/**
|
||||
* Creates an abortable promise.
|
||||
* @param buildPromise - A function that takes the resolve and reject functions as parameters.
|
||||
@ -89275,59 +89328,6 @@ function objectHasProperty(thing, property) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 42118:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 54812:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(42118);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 17309:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
@ -110930,7 +110930,7 @@ exports.AvroReadable = AvroReadable;
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AvroReadableFromStream = void 0;
|
||||
const AvroReadable_js_1 = __nccwpck_require__(15192);
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const buffer_1 = __nccwpck_require__(14300);
|
||||
const ABORT_ERROR = new abort_controller_1.AbortError("Reading from the avro stream was aborted.");
|
||||
class AvroReadableFromStream extends AvroReadable_js_1.AvroReadable {
|
||||
@ -111607,7 +111607,7 @@ function storageCorrectContentLengthPolicy() {
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.StorageRetryPolicy = void 0;
|
||||
exports.NewRetryPolicyFactory = NewRetryPolicyFactory;
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const RequestPolicy_js_1 = __nccwpck_require__(33847);
|
||||
const constants_js_1 = __nccwpck_require__(81865);
|
||||
const utils_common_js_1 = __nccwpck_require__(16673);
|
||||
@ -111865,7 +111865,7 @@ var StorageRetryPolicyType;
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.storageRetryPolicyName = void 0;
|
||||
exports.storageRetryPolicy = storageRetryPolicy;
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const core_rest_pipeline_1 = __nccwpck_require__(29146);
|
||||
const core_util_1 = __nccwpck_require__(80637);
|
||||
const StorageRetryPolicyFactory_js_1 = __nccwpck_require__(98637);
|
||||
@ -114840,7 +114840,7 @@ exports.Mutex = Mutex;
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.RetriableReadableStream = void 0;
|
||||
const abort_controller_1 = __nccwpck_require__(1753);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const node_stream_1 = __nccwpck_require__(84492);
|
||||
/**
|
||||
* ONLY AVAILABLE IN NODE.JS RUNTIME.
|
||||
@ -115297,7 +115297,7 @@ exports.PathStylePorts = [
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.tracingClient = void 0;
|
||||
const core_tracing_1 = __nccwpck_require__(46897);
|
||||
const core_tracing_1 = __nccwpck_require__(19363);
|
||||
const constants_js_1 = __nccwpck_require__(81865);
|
||||
/**
|
||||
* Creates a span using the global tracer.
|
||||
@ -116273,321 +116273,6 @@ exports.fsCreateReadStream = node_fs_1.default.createReadStream;
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 58412:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 1753:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(58412);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 46897:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = exports.useInstrumenter = void 0;
|
||||
var instrumenter_js_1 = __nccwpck_require__(37009);
|
||||
Object.defineProperty(exports, "useInstrumenter", ({ enumerable: true, get: function () { return instrumenter_js_1.useInstrumenter; } }));
|
||||
var tracingClient_js_1 = __nccwpck_require__(9535);
|
||||
Object.defineProperty(exports, "createTracingClient", ({ enumerable: true, get: function () { return tracingClient_js_1.createTracingClient; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 37009:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createDefaultTracingSpan = createDefaultTracingSpan;
|
||||
exports.createDefaultInstrumenter = createDefaultInstrumenter;
|
||||
exports.useInstrumenter = useInstrumenter;
|
||||
exports.getInstrumenter = getInstrumenter;
|
||||
const tracingContext_js_1 = __nccwpck_require__(95236);
|
||||
const state_js_1 = __nccwpck_require__(12995);
|
||||
function createDefaultTracingSpan() {
|
||||
return {
|
||||
end: () => {
|
||||
// noop
|
||||
},
|
||||
isRecording: () => false,
|
||||
recordException: () => {
|
||||
// noop
|
||||
},
|
||||
setAttribute: () => {
|
||||
// noop
|
||||
},
|
||||
setStatus: () => {
|
||||
// noop
|
||||
},
|
||||
addEvent: () => {
|
||||
// noop
|
||||
},
|
||||
};
|
||||
}
|
||||
function createDefaultInstrumenter() {
|
||||
return {
|
||||
createRequestHeaders: () => {
|
||||
return {};
|
||||
},
|
||||
parseTraceparentHeader: () => {
|
||||
return undefined;
|
||||
},
|
||||
startSpan: (_name, spanOptions) => {
|
||||
return {
|
||||
span: createDefaultTracingSpan(),
|
||||
tracingContext: (0, tracingContext_js_1.createTracingContext)({ parentContext: spanOptions.tracingContext }),
|
||||
};
|
||||
},
|
||||
withContext(_context, callback, ...callbackArgs) {
|
||||
return callback(...callbackArgs);
|
||||
},
|
||||
};
|
||||
}
|
||||
/**
|
||||
* Extends the Azure SDK with support for a given instrumenter implementation.
|
||||
*
|
||||
* @param instrumenter - The instrumenter implementation to use.
|
||||
*/
|
||||
function useInstrumenter(instrumenter) {
|
||||
state_js_1.state.instrumenterImplementation = instrumenter;
|
||||
}
|
||||
/**
|
||||
* Gets the currently set instrumenter, a No-Op instrumenter by default.
|
||||
*
|
||||
* @returns The currently set instrumenter
|
||||
*/
|
||||
function getInstrumenter() {
|
||||
if (!state_js_1.state.instrumenterImplementation) {
|
||||
state_js_1.state.instrumenterImplementation = createDefaultInstrumenter();
|
||||
}
|
||||
return state_js_1.state.instrumenterImplementation;
|
||||
}
|
||||
//# sourceMappingURL=instrumenter.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 12995:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.state = void 0;
|
||||
/**
|
||||
* @internal
|
||||
*
|
||||
* Holds the singleton instrumenter, to be shared across CJS and ESM imports.
|
||||
*/
|
||||
exports.state = {
|
||||
instrumenterImplementation: undefined,
|
||||
};
|
||||
//# sourceMappingURL=state-cjs.cjs.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 9535:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.createTracingClient = createTracingClient;
|
||||
const instrumenter_js_1 = __nccwpck_require__(37009);
|
||||
const tracingContext_js_1 = __nccwpck_require__(95236);
|
||||
/**
|
||||
* Creates a new tracing client.
|
||||
*
|
||||
* @param options - Options used to configure the tracing client.
|
||||
* @returns - An instance of {@link TracingClient}.
|
||||
*/
|
||||
function createTracingClient(options) {
|
||||
const { namespace, packageName, packageVersion } = options;
|
||||
function startSpan(name, operationOptions, spanOptions) {
|
||||
const startSpanResult = (0, instrumenter_js_1.getInstrumenter)().startSpan(name, {
|
||||
...spanOptions,
|
||||
packageName: packageName,
|
||||
packageVersion: packageVersion,
|
||||
tracingContext: operationOptions?.tracingOptions?.tracingContext,
|
||||
});
|
||||
let tracingContext = startSpanResult.tracingContext;
|
||||
const span = startSpanResult.span;
|
||||
if (!tracingContext.getValue(tracingContext_js_1.knownContextKeys.namespace)) {
|
||||
tracingContext = tracingContext.setValue(tracingContext_js_1.knownContextKeys.namespace, namespace);
|
||||
}
|
||||
span.setAttribute("az.namespace", tracingContext.getValue(tracingContext_js_1.knownContextKeys.namespace));
|
||||
const updatedOptions = Object.assign({}, operationOptions, {
|
||||
tracingOptions: { ...operationOptions?.tracingOptions, tracingContext },
|
||||
});
|
||||
return {
|
||||
span,
|
||||
updatedOptions,
|
||||
};
|
||||
}
|
||||
async function withSpan(name, operationOptions, callback, spanOptions) {
|
||||
const { span, updatedOptions } = startSpan(name, operationOptions, spanOptions);
|
||||
try {
|
||||
const result = await withContext(updatedOptions.tracingOptions.tracingContext, () => Promise.resolve(callback(updatedOptions, span)));
|
||||
span.setStatus({ status: "success" });
|
||||
return result;
|
||||
}
|
||||
catch (err) {
|
||||
span.setStatus({ status: "error", error: err });
|
||||
throw err;
|
||||
}
|
||||
finally {
|
||||
span.end();
|
||||
}
|
||||
}
|
||||
function withContext(context, callback, ...callbackArgs) {
|
||||
return (0, instrumenter_js_1.getInstrumenter)().withContext(context, callback, ...callbackArgs);
|
||||
}
|
||||
/**
|
||||
* Parses a traceparent header value into a span identifier.
|
||||
*
|
||||
* @param traceparentHeader - The traceparent header to parse.
|
||||
* @returns An implementation-specific identifier for the span.
|
||||
*/
|
||||
function parseTraceparentHeader(traceparentHeader) {
|
||||
return (0, instrumenter_js_1.getInstrumenter)().parseTraceparentHeader(traceparentHeader);
|
||||
}
|
||||
/**
|
||||
* Creates a set of request headers to propagate tracing information to a backend.
|
||||
*
|
||||
* @param tracingContext - The context containing the span to serialize.
|
||||
* @returns The set of headers to add to a request.
|
||||
*/
|
||||
function createRequestHeaders(tracingContext) {
|
||||
return (0, instrumenter_js_1.getInstrumenter)().createRequestHeaders(tracingContext);
|
||||
}
|
||||
return {
|
||||
startSpan,
|
||||
withSpan,
|
||||
withContext,
|
||||
parseTraceparentHeader,
|
||||
createRequestHeaders,
|
||||
};
|
||||
}
|
||||
//# sourceMappingURL=tracingClient.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 95236:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.TracingContextImpl = exports.knownContextKeys = void 0;
|
||||
exports.createTracingContext = createTracingContext;
|
||||
/** @internal */
|
||||
exports.knownContextKeys = {
|
||||
span: Symbol.for("@azure/core-tracing span"),
|
||||
namespace: Symbol.for("@azure/core-tracing namespace"),
|
||||
};
|
||||
/**
|
||||
* Creates a new {@link TracingContext} with the given options.
|
||||
* @param options - A set of known keys that may be set on the context.
|
||||
* @returns A new {@link TracingContext} with the given options.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
function createTracingContext(options = {}) {
|
||||
let context = new TracingContextImpl(options.parentContext);
|
||||
if (options.span) {
|
||||
context = context.setValue(exports.knownContextKeys.span, options.span);
|
||||
}
|
||||
if (options.namespace) {
|
||||
context = context.setValue(exports.knownContextKeys.namespace, options.namespace);
|
||||
}
|
||||
return context;
|
||||
}
|
||||
/** @internal */
|
||||
class TracingContextImpl {
|
||||
_contextMap;
|
||||
constructor(initialContext) {
|
||||
this._contextMap =
|
||||
initialContext instanceof TracingContextImpl
|
||||
? new Map(initialContext._contextMap)
|
||||
: new Map();
|
||||
}
|
||||
setValue(key, value) {
|
||||
const newContext = new TracingContextImpl(this);
|
||||
newContext._contextMap.set(key, value);
|
||||
return newContext;
|
||||
}
|
||||
getValue(key) {
|
||||
return this._contextMap.get(key);
|
||||
}
|
||||
deleteValue(key) {
|
||||
const newContext = new TracingContextImpl(this);
|
||||
newContext._contextMap.delete(key);
|
||||
return newContext;
|
||||
}
|
||||
}
|
||||
exports.TracingContextImpl = TracingContextImpl;
|
||||
//# sourceMappingURL=tracingContext.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 80974:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
@ -117675,7 +117360,7 @@ function storageRequestFailureDetailsParserPolicy() {
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.StorageRetryPolicy = void 0;
|
||||
exports.NewRetryPolicyFactory = NewRetryPolicyFactory;
|
||||
const abort_controller_1 = __nccwpck_require__(31514);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const RequestPolicy_js_1 = __nccwpck_require__(76584);
|
||||
const constants_js_1 = __nccwpck_require__(77807);
|
||||
const utils_common_js_1 = __nccwpck_require__(61876);
|
||||
@ -117933,7 +117618,7 @@ var StorageRetryPolicyType;
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.storageRetryPolicyName = void 0;
|
||||
exports.storageRetryPolicy = storageRetryPolicy;
|
||||
const abort_controller_1 = __nccwpck_require__(31514);
|
||||
const abort_controller_1 = __nccwpck_require__(60583);
|
||||
const core_rest_pipeline_1 = __nccwpck_require__(29146);
|
||||
const core_util_1 = __nccwpck_require__(80637);
|
||||
const StorageRetryPolicyFactory_js_1 = __nccwpck_require__(26508);
|
||||
@ -119134,59 +118819,6 @@ function assertResponse(response) {
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 81577:
|
||||
/***/ ((__unused_webpack_module, exports) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
/**
|
||||
* This error is thrown when an asynchronous operation has been aborted.
|
||||
* Check for this error by testing the `name` that the name property of the
|
||||
* error matches `"AbortError"`.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const controller = new AbortController();
|
||||
* controller.abort();
|
||||
* try {
|
||||
* doAsyncWork(controller.signal)
|
||||
* } catch (e) {
|
||||
* if (e.name === 'AbortError') {
|
||||
* // handle abort error here.
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class AbortError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "AbortError";
|
||||
}
|
||||
}
|
||||
exports.AbortError = AbortError;
|
||||
//# sourceMappingURL=AbortError.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 31514:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.AbortError = void 0;
|
||||
var AbortError_js_1 = __nccwpck_require__(81577);
|
||||
Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } }));
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 92960:
|
||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||
|
||||
@ -133400,7 +133032,7 @@ module.exports = index;
|
||||
/***/ ((module) => {
|
||||
|
||||
"use strict";
|
||||
module.exports = JSON.parse('{"name":"@actions/artifact","version":"5.0.0","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^2.0.0","@actions/github":"^6.0.1","@actions/http-client":"^3.0.0","@azure/core-http":"^3.0.5","@azure/storage-blob":"^12.15.0","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
||||
module.exports = JSON.parse('{"name":"@actions/artifact","version":"5.0.1","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^2.0.0","@actions/github":"^6.0.1","@actions/http-client":"^3.0.0","@azure/storage-blob":"^12.29.1","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
||||
|
||||
/***/ })
|
||||
|
||||
|
||||
386
package-lock.json
generated
386
package-lock.json
generated
@ -41,16 +41,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@actions/artifact": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@actions/artifact/-/artifact-5.0.0.tgz",
|
||||
"integrity": "sha512-PboymiO3U0QEi50gVPO7omhwlJ24yYwVCq9hyWI5x7qab6PqF5mFErdp5cIGigHYswZm+vACH4i7Xc6WV8RA9w==",
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@actions/artifact/-/artifact-5.0.1.tgz",
|
||||
"integrity": "sha512-dHJ5rHduhCKUikKTT9eXeWoUvfKia3IjR1sO/VTAV3DVAL4yMTRnl2iO5mcfiBjySHLwPNezwENAVskKYU5ymw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "^2.0.0",
|
||||
"@actions/github": "^6.0.1",
|
||||
"@actions/http-client": "^3.0.0",
|
||||
"@azure/core-http": "^3.0.5",
|
||||
"@azure/storage-blob": "^12.15.0",
|
||||
"@azure/storage-blob": "^12.29.1",
|
||||
"@octokit/core": "^5.2.1",
|
||||
"@octokit/plugin-request-log": "^1.0.4",
|
||||
"@octokit/plugin-retry": "^3.0.9",
|
||||
@ -190,15 +189,15 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@azure/abort-controller": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.1.0.tgz",
|
||||
"integrity": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==",
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.2.0"
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12.0.0"
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-auth": {
|
||||
@ -215,18 +214,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-auth/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-client": {
|
||||
"version": "1.10.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.10.1.tgz",
|
||||
@ -245,56 +232,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-client/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-client/node_modules/@azure/core-tracing": {
|
||||
"version": "1.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.1.tgz",
|
||||
"integrity": "sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-http": {
|
||||
"version": "3.0.5",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-3.0.5.tgz",
|
||||
"integrity": "sha512-T8r2q/c3DxNu6mEJfPuJtptUVqwchxzjj32gKcnMi06rdiVONS9rar7kT9T2Am+XvER7uOzpsP79WsqNbdgdWg==",
|
||||
"deprecated": "This package is no longer supported. Please refer to https://github.com/Azure/azure-sdk-for-js/blob/490ce4dfc5b98ba290dee3b33a6d0876c5f138e2/sdk/core/README.md",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@azure/abort-controller": "^1.0.0",
|
||||
"@azure/core-auth": "^1.3.0",
|
||||
"@azure/core-tracing": "1.0.0-preview.13",
|
||||
"@azure/core-util": "^1.1.1",
|
||||
"@azure/logger": "^1.0.0",
|
||||
"@types/node-fetch": "^2.5.0",
|
||||
"@types/tunnel": "^0.0.3",
|
||||
"form-data": "^4.0.0",
|
||||
"node-fetch": "^2.6.7",
|
||||
"process": "^0.11.10",
|
||||
"tslib": "^2.2.0",
|
||||
"tunnel": "^0.0.6",
|
||||
"uuid": "^8.3.0",
|
||||
"xml2js": "^0.5.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-http-compat": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-http-compat/-/core-http-compat-2.3.1.tgz",
|
||||
@ -309,18 +246,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-http-compat/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-lro": {
|
||||
"version": "2.7.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.7.2.tgz",
|
||||
@ -336,18 +261,6 @@
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-lro/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-paging": {
|
||||
"version": "1.6.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.6.2.tgz",
|
||||
@ -378,19 +291,7 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-rest-pipeline/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-rest-pipeline/node_modules/@azure/core-tracing": {
|
||||
"node_modules/@azure/core-tracing": {
|
||||
"version": "1.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.1.tgz",
|
||||
"integrity": "sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==",
|
||||
@ -402,19 +303,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-tracing": {
|
||||
"version": "1.0.0-preview.13",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.13.tgz",
|
||||
"integrity": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@opentelemetry/api": "^1.0.1",
|
||||
"tslib": "^2.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-util": {
|
||||
"version": "1.13.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.13.1.tgz",
|
||||
@ -429,18 +317,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-util/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/core-xml": {
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-xml/-/core-xml-1.5.0.tgz",
|
||||
@ -492,30 +368,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/storage-blob/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/storage-blob/node_modules/@azure/core-tracing": {
|
||||
"version": "1.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.1.tgz",
|
||||
"integrity": "sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/storage-common": {
|
||||
"version": "12.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/storage-common/-/storage-common-12.1.1.tgz",
|
||||
@ -536,30 +388,6 @@
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/storage-common/node_modules/@azure/abort-controller": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
||||
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@azure/storage-common/node_modules/@azure/core-tracing": {
|
||||
"version": "1.3.1",
|
||||
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.1.tgz",
|
||||
"integrity": "sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/code-frame": {
|
||||
"version": "7.27.1",
|
||||
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
||||
@ -591,7 +419,6 @@
|
||||
"integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.27.1",
|
||||
"@babel/generator": "^7.28.5",
|
||||
@ -2108,15 +1935,6 @@
|
||||
"@octokit/openapi-types": "^24.2.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@opentelemetry/api": {
|
||||
"version": "1.9.0",
|
||||
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
|
||||
"integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@pkgjs/parseargs": {
|
||||
"version": "0.11.0",
|
||||
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
|
||||
@ -2333,21 +2151,12 @@
|
||||
"version": "24.10.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.3.tgz",
|
||||
"integrity": "sha512-gqkrWUsS8hcm0r44yn7/xZeV1ERva/nLgrLxFRUGb7aoNMIJfZJ3AC261zDQuOAKC7MiXai1WCpYc48jAHoShQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"undici-types": "~7.16.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/node-fetch": {
|
||||
"version": "2.6.13",
|
||||
"resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.13.tgz",
|
||||
"integrity": "sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@types/node": "*",
|
||||
"form-data": "^4.0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/stack-utils": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
|
||||
@ -2355,15 +2164,6 @@
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@types/tunnel": {
|
||||
"version": "0.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.3.tgz",
|
||||
"integrity": "sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/yargs": {
|
||||
"version": "17.0.35",
|
||||
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz",
|
||||
@ -2974,12 +2774,6 @@
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/asynckit": {
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/available-typed-arrays": {
|
||||
"version": "1.0.7",
|
||||
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
|
||||
@ -3197,9 +2991,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/baseline-browser-mapping": {
|
||||
"version": "2.9.6",
|
||||
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.6.tgz",
|
||||
"integrity": "sha512-v9BVVpOTLB59C9E7aSnmIF8h7qRsFpx+A2nugVMTszEOMcfjlZMsXRm4LF23I3Z9AJxc8ANpIvzbzONoX9VJlg==",
|
||||
"version": "2.9.7",
|
||||
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.7.tgz",
|
||||
"integrity": "sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"bin": {
|
||||
@ -3382,6 +3176,7 @@
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
||||
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0",
|
||||
@ -3575,18 +3370,6 @@
|
||||
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/combined-stream": {
|
||||
"version": "1.0.8",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"delayed-stream": "~1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.8"
|
||||
}
|
||||
},
|
||||
"node_modules/compress-commons": {
|
||||
"version": "6.0.2",
|
||||
"resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz",
|
||||
@ -3874,15 +3657,6 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/delayed-stream": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/deprecation": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz",
|
||||
@ -3939,6 +3713,7 @@
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
||||
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"call-bind-apply-helpers": "^1.0.1",
|
||||
@ -4064,6 +3839,7 @@
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
||||
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
@ -4073,6 +3849,7 @@
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
||||
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
@ -4082,6 +3859,7 @@
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
||||
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0"
|
||||
@ -4094,6 +3872,7 @@
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
||||
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0",
|
||||
@ -5026,22 +4805,6 @@
|
||||
"url": "https://github.com/sponsors/isaacs"
|
||||
}
|
||||
},
|
||||
"node_modules/form-data": {
|
||||
"version": "4.0.5",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
||||
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"asynckit": "^0.4.0",
|
||||
"combined-stream": "^1.0.8",
|
||||
"es-set-tostringtag": "^2.1.0",
|
||||
"hasown": "^2.0.2",
|
||||
"mime-types": "^2.1.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
}
|
||||
},
|
||||
"node_modules/fs.realpath": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
||||
@ -5068,6 +4831,7 @@
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
||||
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
@ -5138,6 +4902,7 @@
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
||||
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"call-bind-apply-helpers": "^1.0.2",
|
||||
@ -5172,6 +4937,7 @@
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
||||
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"dunder-proto": "^1.0.1",
|
||||
@ -5317,6 +5083,7 @@
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
||||
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
@ -5416,6 +5183,7 @@
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
||||
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
@ -5428,6 +5196,7 @@
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
||||
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"has-symbols": "^1.0.3"
|
||||
@ -5443,6 +5212,7 @@
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
||||
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.2"
|
||||
@ -7142,6 +6912,7 @@
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
||||
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
@ -7178,27 +6949,6 @@
|
||||
"node": ">=8.6"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-db": {
|
||||
"version": "1.52.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
||||
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-types": {
|
||||
"version": "2.1.35",
|
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
||||
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"mime-db": "1.52.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/mimic-fn": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
||||
@ -7274,26 +7024,6 @@
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/node-fetch": {
|
||||
"version": "2.7.0",
|
||||
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
||||
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"whatwg-url": "^5.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "4.x || >=6.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"encoding": "^0.1.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"encoding": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/node-int64": {
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
|
||||
@ -8225,12 +7955,6 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/sax": {
|
||||
"version": "1.4.3",
|
||||
"resolved": "https://registry.npmjs.org/sax/-/sax-1.4.3.tgz",
|
||||
"integrity": "sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==",
|
||||
"license": "BlueOak-1.0.0"
|
||||
},
|
||||
"node_modules/semver": {
|
||||
"version": "7.7.3",
|
||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
||||
@ -8881,12 +8605,6 @@
|
||||
"node": ">=8.0"
|
||||
}
|
||||
},
|
||||
"node_modules/tr46": {
|
||||
"version": "0.0.3",
|
||||
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/traverse": {
|
||||
"version": "0.3.9",
|
||||
"resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz",
|
||||
@ -9213,6 +8931,7 @@
|
||||
"version": "7.16.0",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
|
||||
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/universal-user-agent": {
|
||||
@ -9276,15 +8995,6 @@
|
||||
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/uuid": {
|
||||
"version": "8.3.2",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
||||
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"uuid": "dist/bin/uuid"
|
||||
}
|
||||
},
|
||||
"node_modules/v8-to-istanbul": {
|
||||
"version": "9.3.0",
|
||||
"resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
|
||||
@ -9310,22 +9020,6 @@
|
||||
"makeerror": "1.0.12"
|
||||
}
|
||||
},
|
||||
"node_modules/webidl-conversions": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
||||
"license": "BSD-2-Clause"
|
||||
},
|
||||
"node_modules/whatwg-url": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tr46": "~0.0.3",
|
||||
"webidl-conversions": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/which": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
||||
@ -9503,28 +9197,6 @@
|
||||
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/xml2js": {
|
||||
"version": "0.5.0",
|
||||
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz",
|
||||
"integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"sax": ">=0.6.0",
|
||||
"xmlbuilder": "~11.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/xmlbuilder": {
|
||||
"version": "11.0.1",
|
||||
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
|
||||
"integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/y18n": {
|
||||
"version": "5.0.8",
|
||||
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user