diff --git a/dist/index.js b/dist/index.js index 6d3ad5f..05a9a14 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ import { createRequire as __WEBPACK_EXTERNAL_createRequire } from "module"; /******/ var __webpack_modules__ = ({ -/***/ 7389: +/***/ 95291: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -41,12 +41,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.saveCache = exports.restoreCache = exports.isFeatureAvailable = exports.ReserveCacheError = exports.ValidationError = void 0; const core = __importStar(__nccwpck_require__(59999)); const path = __importStar(__nccwpck_require__(16928)); -const utils = __importStar(__nccwpck_require__(77246)); -const cacheHttpClient = __importStar(__nccwpck_require__(1868)); -const cacheTwirpClient = __importStar(__nccwpck_require__(19188)); -const config_1 = __nccwpck_require__(6643); -const tar_1 = __nccwpck_require__(73866); -const constants_1 = __nccwpck_require__(5896); +const utils = __importStar(__nccwpck_require__(37056)); +const cacheHttpClient = __importStar(__nccwpck_require__(83558)); +const cacheTwirpClient = __importStar(__nccwpck_require__(90146)); +const config_1 = __nccwpck_require__(60421); +const tar_1 = __nccwpck_require__(35512); +const constants_1 = __nccwpck_require__(43538); +const http_client_1 = __nccwpck_require__(80787); class ValidationError extends Error { constructor(message) { super(message); @@ -83,7 +84,17 @@ function checkKey(key) { * @returns boolean return true if Actions cache service feature is available, otherwise false */ function isFeatureAvailable() { - return !!process.env['ACTIONS_CACHE_URL']; + const cacheServiceVersion = (0, config_1.getCacheServiceVersion)(); + // Check availability based on cache service version + switch (cacheServiceVersion) { + case 'v2': + // For v2, we need ACTIONS_RESULTS_URL + return !!process.env['ACTIONS_RESULTS_URL']; + case 'v1': + default: + // For v1, we only need ACTIONS_CACHE_URL + return !!process.env['ACTIONS_CACHE_URL']; + } } exports.isFeatureAvailable = isFeatureAvailable; /** @@ -168,8 +179,16 @@ function restoreCacheV1(paths, primaryKey, restoreKeys, options, enableCrossOsAr throw error; } else { - // Supress all non-validation cache related errors because caching should be optional - core.warning(`Failed to restore: ${error.message}`); + // warn on cache restore failure and continue build + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to restore: ${error.message}`); + } + else { + core.warning(`Failed to restore: ${error.message}`); + } } } finally { @@ -222,7 +241,13 @@ function restoreCacheV2(paths, primaryKey, restoreKeys, options, enableCrossOsAr core.debug(`Cache not found for version ${request.version} of keys: ${keys.join(', ')}`); return undefined; } - core.info(`Cache hit for: ${request.key}`); + const isRestoreKeyMatch = request.key !== response.matchedKey; + if (isRestoreKeyMatch) { + core.info(`Cache hit for restore-key: ${response.matchedKey}`); + } + else { + core.info(`Cache hit for: ${response.matchedKey}`); + } if (options === null || options === void 0 ? void 0 : options.lookupOnly) { core.info('Lookup only - skipping download'); return response.matchedKey; @@ -247,7 +272,15 @@ function restoreCacheV2(paths, primaryKey, restoreKeys, options, enableCrossOsAr } else { // Supress all non-validation cache related errors because caching should be optional - core.warning(`Failed to restore: ${error.message}`); + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to restore: ${error.message}`); + } + else { + core.warning(`Failed to restore: ${error.message}`); + } } } finally { @@ -350,7 +383,15 @@ function saveCacheV1(paths, key, options, enableCrossOsArchive = false) { core.info(`Failed to save: ${typedError.message}`); } else { - core.warning(`Failed to save: ${typedError.message}`); + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to save: ${typedError.message}`); + } + else { + core.warning(`Failed to save: ${typedError.message}`); + } } } finally { @@ -446,7 +487,15 @@ function saveCacheV2(paths, key, options, enableCrossOsArchive = false) { core.info(`Failed to save: ${typedError.message}`); } else { - core.warning(`Failed to save: ${typedError.message}`); + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to save: ${typedError.message}`); + } + else { + core.warning(`Failed to save: ${typedError.message}`); + } } } finally { @@ -465,7 +514,7 @@ function saveCacheV2(paths, key, options, enableCrossOsArchive = false) { /***/ }), -/***/ 70823: +/***/ 78173: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { @@ -480,7 +529,7 @@ const runtime_2 = __nccwpck_require__(66765); const runtime_3 = __nccwpck_require__(66765); const runtime_4 = __nccwpck_require__(66765); const runtime_5 = __nccwpck_require__(66765); -const cachemetadata_1 = __nccwpck_require__(3954); +const cachemetadata_1 = __nccwpck_require__(69511); // @generated message type with reflection information, may provide speed optimized methods class CreateCacheEntryRequest$Type extends runtime_5.MessageType { constructor() { @@ -859,13 +908,13 @@ exports.CacheService = new runtime_rpc_1.ServiceType("github.actions.results.api /***/ }), -/***/ 13231: +/***/ 44045: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.CacheServiceClientProtobuf = exports.CacheServiceClientJSON = void 0; -const cache_1 = __nccwpck_require__(70823); +const cache_1 = __nccwpck_require__(78173); class CacheServiceClientJSON { constructor(rpc) { this.rpc = rpc; @@ -933,7 +982,7 @@ exports.CacheServiceClientProtobuf = CacheServiceClientProtobuf; /***/ }), -/***/ 3954: +/***/ 69511: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { @@ -944,7 +993,7 @@ const runtime_2 = __nccwpck_require__(66765); const runtime_3 = __nccwpck_require__(66765); const runtime_4 = __nccwpck_require__(66765); const runtime_5 = __nccwpck_require__(66765); -const cachescope_1 = __nccwpck_require__(47182); +const cachescope_1 = __nccwpck_require__(35096); // @generated message type with reflection information, may provide speed optimized methods class CacheMetadata$Type extends runtime_5.MessageType { constructor() { @@ -1003,7 +1052,7 @@ exports.CacheMetadata = new CacheMetadata$Type(); /***/ }), -/***/ 47182: +/***/ 35096: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { @@ -1072,7 +1121,7 @@ exports.CacheScope = new CacheScope$Type(); /***/ }), -/***/ 1868: +/***/ 83558: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -1115,13 +1164,13 @@ const http_client_1 = __nccwpck_require__(80787); const auth_1 = __nccwpck_require__(63673); const fs = __importStar(__nccwpck_require__(79896)); const url_1 = __nccwpck_require__(87016); -const utils = __importStar(__nccwpck_require__(77246)); -const uploadUtils_1 = __nccwpck_require__(67471); -const downloadUtils_1 = __nccwpck_require__(42148); -const options_1 = __nccwpck_require__(17633); -const requestUtils_1 = __nccwpck_require__(91151); -const config_1 = __nccwpck_require__(6643); -const user_agent_1 = __nccwpck_require__(30444); +const utils = __importStar(__nccwpck_require__(37056)); +const uploadUtils_1 = __nccwpck_require__(73129); +const downloadUtils_1 = __nccwpck_require__(30458); +const options_1 = __nccwpck_require__(78815); +const requestUtils_1 = __nccwpck_require__(93273); +const config_1 = __nccwpck_require__(60421); +const user_agent_1 = __nccwpck_require__(89810); function getCacheApiUrl(resource) { const baseUrl = (0, config_1.getCacheServiceURL)(); if (!baseUrl) { @@ -1334,7 +1383,7 @@ exports.saveCache = saveCache; /***/ }), -/***/ 77246: +/***/ 37056: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -1388,7 +1437,7 @@ const fs = __importStar(__nccwpck_require__(79896)); const path = __importStar(__nccwpck_require__(16928)); const semver = __importStar(__nccwpck_require__(88804)); const util = __importStar(__nccwpck_require__(39023)); -const constants_1 = __nccwpck_require__(5896); +const constants_1 = __nccwpck_require__(43538); const versionSalt = '1.0'; // From https://github.com/actions/toolkit/blob/main/packages/tool-cache/src/tool-cache.ts#L23 function createTempDirectory() { @@ -1556,7 +1605,7 @@ exports.getRuntimeToken = getRuntimeToken; /***/ }), -/***/ 6643: +/***/ 60421: /***/ ((__unused_webpack_module, exports) => { @@ -1599,7 +1648,7 @@ exports.getCacheServiceURL = getCacheServiceURL; /***/ }), -/***/ 5896: +/***/ 43538: /***/ ((__unused_webpack_module, exports) => { @@ -1642,7 +1691,7 @@ exports.CacheFileSizeLimit = 10 * Math.pow(1024, 3); // 10GiB per repository /***/ }), -/***/ 42148: +/***/ 30458: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -1687,9 +1736,9 @@ const buffer = __importStar(__nccwpck_require__(20181)); const fs = __importStar(__nccwpck_require__(79896)); const stream = __importStar(__nccwpck_require__(2203)); const util = __importStar(__nccwpck_require__(39023)); -const utils = __importStar(__nccwpck_require__(77246)); -const constants_1 = __nccwpck_require__(5896); -const requestUtils_1 = __nccwpck_require__(91151); +const utils = __importStar(__nccwpck_require__(37056)); +const constants_1 = __nccwpck_require__(43538); +const requestUtils_1 = __nccwpck_require__(93273); const abort_controller_1 = __nccwpck_require__(80349); /** * Pipes the body of a HTTP response to a stream @@ -2026,7 +2075,7 @@ const promiseWithTimeout = (timeoutMs, promise) => __awaiter(void 0, void 0, voi /***/ }), -/***/ 91151: +/***/ 93273: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -2066,7 +2115,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.retryHttpClientResponse = exports.retryTypedResponse = exports.retry = exports.isRetryableStatusCode = exports.isServerErrorStatusCode = exports.isSuccessStatusCode = void 0; const core = __importStar(__nccwpck_require__(59999)); const http_client_1 = __nccwpck_require__(80787); -const constants_1 = __nccwpck_require__(5896); +const constants_1 = __nccwpck_require__(43538); function isSuccessStatusCode(statusCode) { if (!statusCode) { return false; @@ -2169,7 +2218,7 @@ exports.retryHttpClientResponse = retryHttpClientResponse; /***/ }), -/***/ 19188: +/***/ 90146: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -2185,14 +2234,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge Object.defineProperty(exports, "__esModule", ({ value: true })); exports.internalCacheTwirpClient = void 0; const core_1 = __nccwpck_require__(59999); -const user_agent_1 = __nccwpck_require__(30444); -const errors_1 = __nccwpck_require__(58676); -const config_1 = __nccwpck_require__(6643); -const cacheUtils_1 = __nccwpck_require__(77246); +const user_agent_1 = __nccwpck_require__(89810); +const errors_1 = __nccwpck_require__(59054); +const config_1 = __nccwpck_require__(60421); +const cacheUtils_1 = __nccwpck_require__(37056); const auth_1 = __nccwpck_require__(63673); const http_client_1 = __nccwpck_require__(80787); -const cache_twirp_client_1 = __nccwpck_require__(13231); -const util_1 = __nccwpck_require__(92163); +const cache_twirp_client_1 = __nccwpck_require__(44045); +const util_1 = __nccwpck_require__(12177); /** * This class is a wrapper around the CacheServiceClientJSON class generated by Twirp. * @@ -2337,7 +2386,7 @@ exports.internalCacheTwirpClient = internalCacheTwirpClient; /***/ }), -/***/ 58676: +/***/ 59054: /***/ ((__unused_webpack_module, exports) => { @@ -2413,14 +2462,14 @@ UsageError.isUsageErrorMessage = (msg) => { /***/ }), -/***/ 30444: +/***/ 89810: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getUserAgentString = void 0; // eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports -const packageJson = __nccwpck_require__(9027); +const packageJson = __nccwpck_require__(93965); /** * Ensure that this User Agent String is used in all HTTP calls so that we can monitor telemetry between different versions of this package */ @@ -2432,7 +2481,7 @@ exports.getUserAgentString = getUserAgentString; /***/ }), -/***/ 92163: +/***/ 12177: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { @@ -2512,7 +2561,7 @@ exports.maskSecretUrls = maskSecretUrls; /***/ }), -/***/ 73866: +/***/ 35512: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -2554,8 +2603,8 @@ const exec_1 = __nccwpck_require__(58872); const io = __importStar(__nccwpck_require__(73357)); const fs_1 = __nccwpck_require__(79896); const path = __importStar(__nccwpck_require__(16928)); -const utils = __importStar(__nccwpck_require__(77246)); -const constants_1 = __nccwpck_require__(5896); +const utils = __importStar(__nccwpck_require__(37056)); +const constants_1 = __nccwpck_require__(43538); const IS_WINDOWS = process.platform === 'win32'; // Returns tar path and type: BSD or GNU function getTarPath() { @@ -2790,7 +2839,7 @@ exports.createTar = createTar; /***/ }), -/***/ 67471: +/***/ 73129: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -2830,7 +2879,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.uploadCacheArchiveSDK = exports.UploadProgress = void 0; const core = __importStar(__nccwpck_require__(59999)); const storage_blob_1 = __nccwpck_require__(34228); -const errors_1 = __nccwpck_require__(58676); +const errors_1 = __nccwpck_require__(59054); /** * Class for tracking the upload state and displaying stats. */ @@ -2963,7 +3012,7 @@ exports.uploadCacheArchiveSDK = uploadCacheArchiveSDK; /***/ }), -/***/ 17633: +/***/ 78815: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { @@ -90681,10 +90730,10 @@ function randomUUID() { /***/ }), -/***/ 9027: +/***/ 93965: /***/ ((module) => { -module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.3","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.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/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/node":"^22.13.9","@types/semver":"^6.0.0","typescript":"^5.2.2"}}'); +module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.5","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.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/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^22.13.9","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"}}'); /***/ }) @@ -92220,7 +92269,7 @@ class PCancelable { Object.setPrototypeOf(PCancelable.prototype, Promise.prototype); -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/errors.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/errors.js // A hacky check to prevent circular references. function isRequest(x) { @@ -93991,13 +94040,13 @@ getContentLength_fn = function() { // EXTERNAL MODULE: external "node:util" var external_node_util_ = __nccwpck_require__(57975); -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/is-form-data.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/is-form-data.js function is_form_data_isFormData(body) { return distribution.nodeStream(body) && distribution.function(body.getBoundary); } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/get-body-size.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/get-body-size.js @@ -94021,7 +94070,7 @@ async function getBodySize(body, headers) { return undefined; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/proxy-events.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/proxy-events.js function proxyEvents(from, to, events) { const eventFunctions = {}; for (const event of events) { @@ -94040,7 +94089,7 @@ function proxyEvents(from, to, events) { ;// CONCATENATED MODULE: external "node:net" const external_node_net_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:net"); -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/unhandle.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/unhandle.js // When attaching listeners, it's very easy to forget about them. // Especially if you do error handling and set timeouts. // So instead of checking if it's proper to throw an error on every timeout ever, @@ -94062,7 +94111,7 @@ function unhandle() { }; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/timed-out.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/timed-out.js const reentry = Symbol('reentry'); @@ -94201,7 +94250,7 @@ function timedOut(request, delays, options) { return cancelTimeouts; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/url-to-options.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/url-to-options.js function urlToOptions(url) { // Cast to URL @@ -94225,7 +94274,7 @@ function urlToOptions(url) { return options; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/weakable-map.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/weakable-map.js class WeakableMap { weakMap; map; @@ -94255,7 +94304,7 @@ class WeakableMap { } } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/calculate-retry-delay.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/calculate-retry-delay.js const calculateRetryDelay = ({ attemptCount, retryOptions, error, retryAfter, computedValue, }) => { if (error.name === 'RetryError') { return 1; @@ -94744,7 +94793,7 @@ class CacheableLookup { // EXTERNAL MODULE: ./node_modules/.pnpm/http2-wrapper@2.2.1/node_modules/http2-wrapper/source/index.js var http2_wrapper_source = __nccwpck_require__(55409); -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/parse-link-header.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/parse-link-header.js function parseLinkHeader(link) { const parsed = []; const items = link.split(','); @@ -94779,7 +94828,7 @@ function parseLinkHeader(link) { return parsed; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/options.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/options.js @@ -95141,7 +95190,10 @@ class Options { return; } if (options instanceof Options) { - for (const init of options._init) { + // Create a copy of the _init array to avoid infinite loop + // when merging an Options instance with itself + const initArray = [...options._init]; + for (const init of initArray) { this.merge(init); } return; @@ -96416,7 +96468,7 @@ class Options { } } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/response.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/response.js const isResponseOk = (response) => { const { statusCode } = response; @@ -96459,19 +96511,19 @@ const parseBody = (response, responseType, parseJson, encoding) => { }, response); }; -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/is-client-request.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/is-client-request.js function isClientRequest(clientRequest) { return clientRequest.writable && !clientRequest.writableEnded; } /* harmony default export */ const is_client_request = (isClientRequest); -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/utils/is-unix-socket-url.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/utils/is-unix-socket-url.js // eslint-disable-next-line @typescript-eslint/naming-convention function isUnixSocketURL(url) { return url.protocol === 'unix:' || url.hostname === 'unix'; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/core/index.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/core/index.js @@ -97478,7 +97530,7 @@ class Request extends external_node_stream_.Duplex { } } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/as-promise/types.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/as-promise/types.js /** An error to be thrown when the request is aborted with `.cancel()`. @@ -97497,7 +97549,7 @@ class types_CancelError extends RequestError { } } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/as-promise/index.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/as-promise/index.js @@ -97663,7 +97715,7 @@ function asPromise(firstRequest) { return promise; } -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/create.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/create.js @@ -97845,7 +97897,7 @@ const create = (defaults) => { }; /* harmony default export */ const source_create = (create); -;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.7/node_modules/got/dist/source/index.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/got@14.4.8/node_modules/got/dist/source/index.js const defaults = { @@ -97870,11 +97922,11 @@ const got = source_create(defaults); ;// CONCATENATED MODULE: external "dns/promises" const external_dns_promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("dns/promises"); -// EXTERNAL MODULE: ./node_modules/.pnpm/@actions+cache@4.0.3/node_modules/@actions/cache/lib/cache.js -var cache = __nccwpck_require__(7389); +// EXTERNAL MODULE: ./node_modules/.pnpm/@actions+cache@4.0.5/node_modules/@actions/cache/lib/cache.js +var cache = __nccwpck_require__(95291); // EXTERNAL MODULE: external "child_process" var external_child_process_ = __nccwpck_require__(35317); -;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@6d3f1c5a5781e58b3cd8060cfb578c0c95eeb51e_bvn77zcfgaq354qwk77dpm6bpe/node_modules/detsys-ts/dist/index.js +;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@c7303495f43d348cac78091ef434443b1ef22485_h2fzlraxriek6yk4idylwpjmou/node_modules/detsys-ts/dist/index.js var __defProp = Object.defineProperty; var __export = (target, all) => { for (var name in all) @@ -98770,6 +98822,7 @@ var FACT_OS = "$os"; var FACT_OS_VERSION = "$os_version"; var FACT_SOURCE_URL = "source_url"; var FACT_SOURCE_URL_ETAG = "source_url_etag"; +var FACT_NIX_VERSION = "nix_version"; var FACT_NIX_LOCATION = "nix_location"; var FACT_NIX_STORE_TRUST = "nix_store_trusted"; var FACT_NIX_STORE_VERSION = "nix_store_version"; @@ -99028,10 +99081,12 @@ var DetSysAction = class { return; } else { await this.preflightNixStoreInfo(); + await this.preflightNixVersion(); this.addFact(FACT_NIX_STORE_TRUST, this.nixStoreTrust); } if (this.isMain) { await this.main(); + await this.preflightNixVersion(); } else if (this.isPost) { await this.post(); } @@ -99495,6 +99550,21 @@ var DetSysAction = class { this.addFact(FACT_NIX_STORE_CHECK_ERROR, stringifyError2(e)); } } + async preflightNixVersion() { + let output = "unknown"; + try { + ({ stdout: output } = await exec.getExecOutput( + "nix", + ["--version"], + { + silent: true + } + )); + output = output.trim() || "unknown"; + } catch { + } + this.addFact(FACT_NIX_VERSION, output); + } async submitEvents() { const diagnosticsUrl = await this.idsHost.getDiagnosticsUrl(); if (diagnosticsUrl === void 0) { diff --git a/package.json b/package.json index b9d4d40..4e12c55 100644 --- a/package.json +++ b/package.json @@ -30,13 +30,13 @@ "@actions/exec": "^1.1.1", "@actions/github": "^6.0.1", "detsys-ts": "github:DeterminateSystems/detsys-ts", - "got": "^14.4.7", + "got": "^14.4.8", "string-argv": "^0.3.2", "vitest": "^3.2.4" }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^4.3.0", - "@types/node": "^20.19.9", + "@types/node": "^20.19.12", "@types/uuid": "^9.0.8", "@typescript-eslint/eslint-plugin": "^7.18.0", "@vercel/ncc": "^0.38.3", @@ -44,9 +44,9 @@ "eslint-import-resolver-typescript": "^3.10.1", "eslint-plugin-github": "^4.10.2", "eslint-plugin-import": "^2.32.0", - "eslint-plugin-prettier": "^5.5.3", + "eslint-plugin-prettier": "^5.5.4", "prettier": "^3.6.2", "tsup": "^8.5.0", - "typescript": "^5.8.3" + "typescript": "^5.9.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9617d3e..0bc5414 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,30 +16,30 @@ dependencies: version: 6.0.1 detsys-ts: specifier: github:DeterminateSystems/detsys-ts - version: github.com/DeterminateSystems/detsys-ts/6d3f1c5a5781e58b3cd8060cfb578c0c95eeb51e + version: github.com/DeterminateSystems/detsys-ts/c7303495f43d348cac78091ef434443b1ef22485 got: - specifier: ^14.4.7 - version: 14.4.7 + specifier: ^14.4.8 + version: 14.4.8 string-argv: specifier: ^0.3.2 version: 0.3.2 vitest: specifier: ^3.2.4 - version: 3.2.4(@types/node@20.19.9) + version: 3.2.4(@types/node@20.19.12) devDependencies: "@trivago/prettier-plugin-sort-imports": specifier: ^4.3.0 version: 4.3.0(prettier@3.6.2) "@types/node": - specifier: ^20.19.9 - version: 20.19.9 + specifier: ^20.19.12 + version: 20.19.12 "@types/uuid": specifier: ^9.0.8 version: 9.0.8 "@typescript-eslint/eslint-plugin": specifier: ^7.18.0 - version: 7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.1)(typescript@5.8.3) + version: 7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.1)(typescript@5.9.2) "@vercel/ncc": specifier: ^0.38.3 version: 0.38.3 @@ -51,28 +51,28 @@ devDependencies: version: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1) eslint-plugin-github: specifier: ^4.10.2 - version: 4.10.2(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.8.3) + version: 4.10.2(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.9.2) eslint-plugin-import: specifier: ^2.32.0 version: 2.32.0(@typescript-eslint/parser@7.18.0)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) eslint-plugin-prettier: - specifier: ^5.5.3 - version: 5.5.3(eslint-config-prettier@10.1.8)(eslint@8.57.1)(prettier@3.6.2) + specifier: ^5.5.4 + version: 5.5.4(eslint-config-prettier@10.1.8)(eslint@8.57.1)(prettier@3.6.2) prettier: specifier: ^3.6.2 version: 3.6.2 tsup: specifier: ^8.5.0 - version: 8.5.0(typescript@5.8.3) + version: 8.5.0(typescript@5.9.2) typescript: - specifier: ^5.8.3 - version: 5.8.3 + specifier: ^5.9.2 + version: 5.9.2 packages: - /@actions/cache@4.0.3: + /@actions/cache@4.0.5: resolution: { - integrity: sha512-SvrqFtYJ7I48A/uXNkoJrnukx5weQv1fGquhs3+4nkByZThBH109KTIqj5x/cGV7JGNvb8dLPVywUOqX1fjiXg==, + integrity: sha512-RjLz1/vvntOfp3FpkY3wB0MjVRbLq7bfQEuQG9UUTKwdtcYmFrKVmuD+9B6ADbzbkSfHM+dM4sMjdr3R4XIkFg==, } dependencies: "@actions/core": 1.11.1 @@ -83,7 +83,7 @@ packages: "@azure/abort-controller": 1.1.0 "@azure/ms-rest-js": 2.7.0 "@azure/storage-blob": 12.28.0 - "@protobuf-ts/plugin": 2.11.1 + "@protobuf-ts/runtime-rpc": 2.11.1 semver: 6.3.1 transitivePeerDependencies: - encoding @@ -396,17 +396,17 @@ packages: source-map: 0.5.7 dev: true - /@babel/generator@7.28.0: + /@babel/generator@7.28.3: resolution: { - integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==, + integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/parser": 7.28.0 + "@babel/parser": 7.28.3 "@babel/types": 7.28.2 - "@jridgewell/gen-mapping": 0.3.12 - "@jridgewell/trace-mapping": 0.3.29 + "@jridgewell/gen-mapping": 0.3.13 + "@jridgewell/trace-mapping": 0.3.30 jsesc: 3.1.0 dev: true @@ -467,10 +467,10 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/parser@7.28.0: + /@babel/parser@7.28.3: resolution: { - integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==, + integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==, } engines: { node: ">=6.0.0" } hasBin: true @@ -486,7 +486,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.27.1 - "@babel/parser": 7.28.0 + "@babel/parser": 7.28.3 "@babel/types": 7.28.2 dev: true @@ -498,12 +498,12 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.27.1 - "@babel/generator": 7.28.0 + "@babel/generator": 7.28.3 "@babel/helper-environment-visitor": 7.24.7 "@babel/helper-function-name": 7.24.7 "@babel/helper-hoist-variables": 7.24.7 "@babel/helper-split-export-declaration": 7.24.7 - "@babel/parser": 7.28.0 + "@babel/parser": 7.28.3 "@babel/types": 7.28.2 debug: 4.4.1 globals: 11.12.0 @@ -533,42 +533,22 @@ packages: "@babel/helper-validator-identifier": 7.27.1 dev: true - /@bufbuild/protobuf@2.6.2: - resolution: - { - integrity: sha512-vLu7SRY84CV/Dd+NUdgtidn2hS5hSMUC1vDBY0VcviTdgRYkU43vIz3vIFbmx14cX1r+mM7WjzE5Fl1fGEM0RQ==, - } - dev: false - - /@bufbuild/protoplugin@2.6.2: - resolution: - { - integrity: sha512-EYVPnRXOkWuqBDqRYhLsquOnk5SGU2Ce3lAOBDEZyntHwu0xcjcIZeTI+as+HnArtcJwrXK0u6x3Rtmt2IcHlA==, - } - dependencies: - "@bufbuild/protobuf": 2.6.2 - "@typescript/vfs": 1.6.1(typescript@5.4.5) - typescript: 5.4.5 - transitivePeerDependencies: - - supports-color - dev: false - - /@emnapi/core@1.4.5: + /@emnapi/core@1.5.0: resolution: { - integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==, + integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==, } requiresBuild: true dependencies: - "@emnapi/wasi-threads": 1.0.4 + "@emnapi/wasi-threads": 1.1.0 tslib: 2.8.1 dev: true optional: true - /@emnapi/runtime@1.4.5: + /@emnapi/runtime@1.5.0: resolution: { - integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==, + integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==, } requiresBuild: true dependencies: @@ -576,10 +556,10 @@ packages: dev: true optional: true - /@emnapi/wasi-threads@1.0.4: + /@emnapi/wasi-threads@1.1.0: resolution: { - integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==, + integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==, } requiresBuild: true dependencies: @@ -587,10 +567,10 @@ packages: dev: true optional: true - /@esbuild/aix-ppc64@0.25.8: + /@esbuild/aix-ppc64@0.25.9: resolution: { - integrity: sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==, + integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==, } engines: { node: ">=18" } cpu: [ppc64] @@ -598,10 +578,10 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm64@0.25.8: + /@esbuild/android-arm64@0.25.9: resolution: { - integrity: sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==, + integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==, } engines: { node: ">=18" } cpu: [arm64] @@ -609,10 +589,10 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm@0.25.8: + /@esbuild/android-arm@0.25.9: resolution: { - integrity: sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==, + integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==, } engines: { node: ">=18" } cpu: [arm] @@ -620,10 +600,10 @@ packages: requiresBuild: true optional: true - /@esbuild/android-x64@0.25.8: + /@esbuild/android-x64@0.25.9: resolution: { - integrity: sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==, + integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==, } engines: { node: ">=18" } cpu: [x64] @@ -631,10 +611,10 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-arm64@0.25.8: + /@esbuild/darwin-arm64@0.25.9: resolution: { - integrity: sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==, + integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==, } engines: { node: ">=18" } cpu: [arm64] @@ -642,10 +622,10 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-x64@0.25.8: + /@esbuild/darwin-x64@0.25.9: resolution: { - integrity: sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==, + integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==, } engines: { node: ">=18" } cpu: [x64] @@ -653,10 +633,10 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-arm64@0.25.8: + /@esbuild/freebsd-arm64@0.25.9: resolution: { - integrity: sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==, + integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==, } engines: { node: ">=18" } cpu: [arm64] @@ -664,10 +644,10 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-x64@0.25.8: + /@esbuild/freebsd-x64@0.25.9: resolution: { - integrity: sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==, + integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==, } engines: { node: ">=18" } cpu: [x64] @@ -675,10 +655,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm64@0.25.8: + /@esbuild/linux-arm64@0.25.9: resolution: { - integrity: sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==, + integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==, } engines: { node: ">=18" } cpu: [arm64] @@ -686,10 +666,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm@0.25.8: + /@esbuild/linux-arm@0.25.9: resolution: { - integrity: sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==, + integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==, } engines: { node: ">=18" } cpu: [arm] @@ -697,10 +677,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ia32@0.25.8: + /@esbuild/linux-ia32@0.25.9: resolution: { - integrity: sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==, + integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==, } engines: { node: ">=18" } cpu: [ia32] @@ -708,10 +688,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64@0.25.8: + /@esbuild/linux-loong64@0.25.9: resolution: { - integrity: sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==, + integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==, } engines: { node: ">=18" } cpu: [loong64] @@ -719,10 +699,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-mips64el@0.25.8: + /@esbuild/linux-mips64el@0.25.9: resolution: { - integrity: sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==, + integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==, } engines: { node: ">=18" } cpu: [mips64el] @@ -730,10 +710,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ppc64@0.25.8: + /@esbuild/linux-ppc64@0.25.9: resolution: { - integrity: sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==, + integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==, } engines: { node: ">=18" } cpu: [ppc64] @@ -741,10 +721,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-riscv64@0.25.8: + /@esbuild/linux-riscv64@0.25.9: resolution: { - integrity: sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==, + integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==, } engines: { node: ">=18" } cpu: [riscv64] @@ -752,10 +732,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x@0.25.8: + /@esbuild/linux-s390x@0.25.9: resolution: { - integrity: sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==, + integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==, } engines: { node: ">=18" } cpu: [s390x] @@ -763,10 +743,10 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-x64@0.25.8: + /@esbuild/linux-x64@0.25.9: resolution: { - integrity: sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==, + integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==, } engines: { node: ">=18" } cpu: [x64] @@ -774,10 +754,10 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-arm64@0.25.8: + /@esbuild/netbsd-arm64@0.25.9: resolution: { - integrity: sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==, + integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==, } engines: { node: ">=18" } cpu: [arm64] @@ -785,10 +765,10 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-x64@0.25.8: + /@esbuild/netbsd-x64@0.25.9: resolution: { - integrity: sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==, + integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==, } engines: { node: ">=18" } cpu: [x64] @@ -796,10 +776,10 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-arm64@0.25.8: + /@esbuild/openbsd-arm64@0.25.9: resolution: { - integrity: sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==, + integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==, } engines: { node: ">=18" } cpu: [arm64] @@ -807,10 +787,10 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-x64@0.25.8: + /@esbuild/openbsd-x64@0.25.9: resolution: { - integrity: sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==, + integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==, } engines: { node: ">=18" } cpu: [x64] @@ -818,10 +798,10 @@ packages: requiresBuild: true optional: true - /@esbuild/openharmony-arm64@0.25.8: + /@esbuild/openharmony-arm64@0.25.9: resolution: { - integrity: sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==, + integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==, } engines: { node: ">=18" } cpu: [arm64] @@ -829,10 +809,10 @@ packages: requiresBuild: true optional: true - /@esbuild/sunos-x64@0.25.8: + /@esbuild/sunos-x64@0.25.9: resolution: { - integrity: sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==, + integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==, } engines: { node: ">=18" } cpu: [x64] @@ -840,10 +820,10 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-arm64@0.25.8: + /@esbuild/win32-arm64@0.25.9: resolution: { - integrity: sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==, + integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==, } engines: { node: ">=18" } cpu: [arm64] @@ -851,10 +831,10 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-ia32@0.25.8: + /@esbuild/win32-ia32@0.25.9: resolution: { - integrity: sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==, + integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==, } engines: { node: ">=18" } cpu: [ia32] @@ -862,10 +842,10 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-x64@0.25.8: + /@esbuild/win32-x64@0.25.9: resolution: { - integrity: sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==, + integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==, } engines: { node: ">=18" } cpu: [x64] @@ -873,10 +853,10 @@ packages: requiresBuild: true optional: true - /@eslint-community/eslint-utils@4.7.0(eslint@8.57.1): + /@eslint-community/eslint-utils@4.8.0(eslint@8.57.1): resolution: { - integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==, + integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -983,14 +963,14 @@ packages: wrap-ansi-cjs: /wrap-ansi@7.0.0 dev: true - /@jridgewell/gen-mapping@0.3.12: + /@jridgewell/gen-mapping@0.3.13: resolution: { - integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==, + integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==, } dependencies: - "@jridgewell/sourcemap-codec": 1.5.4 - "@jridgewell/trace-mapping": 0.3.29 + "@jridgewell/sourcemap-codec": 1.5.5 + "@jridgewell/trace-mapping": 0.3.30 dev: true /@jridgewell/resolve-uri@3.1.2: @@ -1001,20 +981,20 @@ packages: engines: { node: ">=6.0.0" } dev: true - /@jridgewell/sourcemap-codec@1.5.4: + /@jridgewell/sourcemap-codec@1.5.5: resolution: { - integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==, + integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, } - /@jridgewell/trace-mapping@0.3.29: + /@jridgewell/trace-mapping@0.3.30: resolution: { - integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==, + integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==, } dependencies: "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.5.4 + "@jridgewell/sourcemap-codec": 1.5.5 dev: true /@napi-rs/wasm-runtime@0.2.12: @@ -1024,8 +1004,8 @@ packages: } requiresBuild: true dependencies: - "@emnapi/core": 1.4.5 - "@emnapi/runtime": 1.4.5 + "@emnapi/core": 1.5.0 + "@emnapi/runtime": 1.5.0 "@tybys/wasm-util": 0.10.0 dev: true optional: true @@ -1216,31 +1196,6 @@ packages: engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } dev: true - /@protobuf-ts/plugin@2.11.1: - resolution: - { - integrity: sha512-HyuprDcw0bEEJqkOWe1rnXUP0gwYLij8YhPuZyZk6cJbIgc/Q0IFgoHQxOXNIXAcXM4Sbehh6kjVnCzasElw1A==, - } - hasBin: true - dependencies: - "@bufbuild/protobuf": 2.6.2 - "@bufbuild/protoplugin": 2.6.2 - "@protobuf-ts/protoc": 2.11.1 - "@protobuf-ts/runtime": 2.11.1 - "@protobuf-ts/runtime-rpc": 2.11.1 - typescript: 3.9.10 - transitivePeerDependencies: - - supports-color - dev: false - - /@protobuf-ts/protoc@2.11.1: - resolution: - { - integrity: sha512-mUZJaV0daGO6HUX90o/atzQ6A7bbN2RSuHtdwo8SSF2Qoe3zHwa4IHyCN1evftTeHfLmdz+45qo47sL+5P8nyg==, - } - hasBin: true - dev: false - /@protobuf-ts/runtime-rpc@2.11.1: resolution: { @@ -1257,200 +1212,210 @@ packages: } dev: false - /@rollup/rollup-android-arm-eabi@4.46.2: + /@rollup/rollup-android-arm-eabi@4.50.0: resolution: { - integrity: sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==, + integrity: sha512-lVgpeQyy4fWN5QYebtW4buT/4kn4p4IJ+kDNB4uYNT5b8c8DLJDg6titg20NIg7E8RWwdWZORW6vUFfrLyG3KQ==, } cpu: [arm] os: [android] requiresBuild: true optional: true - /@rollup/rollup-android-arm64@4.46.2: + /@rollup/rollup-android-arm64@4.50.0: resolution: { - integrity: sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==, + integrity: sha512-2O73dR4Dc9bp+wSYhviP6sDziurB5/HCym7xILKifWdE9UsOe2FtNcM+I4xZjKrfLJnq5UR8k9riB87gauiQtw==, } cpu: [arm64] os: [android] requiresBuild: true optional: true - /@rollup/rollup-darwin-arm64@4.46.2: + /@rollup/rollup-darwin-arm64@4.50.0: resolution: { - integrity: sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==, + integrity: sha512-vwSXQN8T4sKf1RHr1F0s98Pf8UPz7pS6P3LG9NSmuw0TVh7EmaE+5Ny7hJOZ0M2yuTctEsHHRTMi2wuHkdS6Hg==, } cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@rollup/rollup-darwin-x64@4.46.2: + /@rollup/rollup-darwin-x64@4.50.0: resolution: { - integrity: sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==, + integrity: sha512-cQp/WG8HE7BCGyFVuzUg0FNmupxC+EPZEwWu2FCGGw5WDT1o2/YlENbm5e9SMvfDFR6FRhVCBePLqj0o8MN7Vw==, } cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@rollup/rollup-freebsd-arm64@4.46.2: + /@rollup/rollup-freebsd-arm64@4.50.0: resolution: { - integrity: sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==, + integrity: sha512-UR1uTJFU/p801DvvBbtDD7z9mQL8J80xB0bR7DqW7UGQHRm/OaKzp4is7sQSdbt2pjjSS72eAtRh43hNduTnnQ==, } cpu: [arm64] os: [freebsd] requiresBuild: true optional: true - /@rollup/rollup-freebsd-x64@4.46.2: + /@rollup/rollup-freebsd-x64@4.50.0: resolution: { - integrity: sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==, + integrity: sha512-G/DKyS6PK0dD0+VEzH/6n/hWDNPDZSMBmqsElWnCRGrYOb2jC0VSupp7UAHHQ4+QILwkxSMaYIbQ72dktp8pKA==, } cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.46.2: + /@rollup/rollup-linux-arm-gnueabihf@4.50.0: resolution: { - integrity: sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==, + integrity: sha512-u72Mzc6jyJwKjJbZZcIYmd9bumJu7KNmHYdue43vT1rXPm2rITwmPWF0mmPzLm9/vJWxIRbao/jrQmxTO0Sm9w==, } cpu: [arm] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-arm-musleabihf@4.46.2: + /@rollup/rollup-linux-arm-musleabihf@4.50.0: resolution: { - integrity: sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==, + integrity: sha512-S4UefYdV0tnynDJV1mdkNawp0E5Qm2MtSs330IyHgaccOFrwqsvgigUD29uT+B/70PDY1eQ3t40+xf6wIvXJyg==, } cpu: [arm] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-arm64-gnu@4.46.2: + /@rollup/rollup-linux-arm64-gnu@4.50.0: resolution: { - integrity: sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==, + integrity: sha512-1EhkSvUQXJsIhk4msxP5nNAUWoB4MFDHhtc4gAYvnqoHlaL9V3F37pNHabndawsfy/Tp7BPiy/aSa6XBYbaD1g==, } cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-arm64-musl@4.46.2: + /@rollup/rollup-linux-arm64-musl@4.50.0: resolution: { - integrity: sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==, + integrity: sha512-EtBDIZuDtVg75xIPIK1l5vCXNNCIRM0OBPUG+tbApDuJAy9mKago6QxX+tfMzbCI6tXEhMuZuN1+CU8iDW+0UQ==, } cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-loongarch64-gnu@4.46.2: + /@rollup/rollup-linux-loongarch64-gnu@4.50.0: resolution: { - integrity: sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==, + integrity: sha512-BGYSwJdMP0hT5CCmljuSNx7+k+0upweM2M4YGfFBjnFSZMHOLYR0gEEj/dxyYJ6Zc6AiSeaBY8dWOa11GF/ppQ==, } cpu: [loong64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-ppc64-gnu@4.46.2: + /@rollup/rollup-linux-ppc64-gnu@4.50.0: resolution: { - integrity: sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==, + integrity: sha512-I1gSMzkVe1KzAxKAroCJL30hA4DqSi+wGc5gviD0y3IL/VkvcnAqwBf4RHXHyvH66YVHxpKO8ojrgc4SrWAnLg==, } cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-riscv64-gnu@4.46.2: + /@rollup/rollup-linux-riscv64-gnu@4.50.0: resolution: { - integrity: sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==, + integrity: sha512-bSbWlY3jZo7molh4tc5dKfeSxkqnf48UsLqYbUhnkdnfgZjgufLS/NTA8PcP/dnvct5CCdNkABJ56CbclMRYCA==, } cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-riscv64-musl@4.46.2: + /@rollup/rollup-linux-riscv64-musl@4.50.0: resolution: { - integrity: sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==, + integrity: sha512-LSXSGumSURzEQLT2e4sFqFOv3LWZsEF8FK7AAv9zHZNDdMnUPYH3t8ZlaeYYZyTXnsob3htwTKeWtBIkPV27iQ==, } cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-s390x-gnu@4.46.2: + /@rollup/rollup-linux-s390x-gnu@4.50.0: resolution: { - integrity: sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==, + integrity: sha512-CxRKyakfDrsLXiCyucVfVWVoaPA4oFSpPpDwlMcDFQvrv3XY6KEzMtMZrA+e/goC8xxp2WSOxHQubP8fPmmjOQ==, } cpu: [s390x] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-x64-gnu@4.46.2: + /@rollup/rollup-linux-x64-gnu@4.50.0: resolution: { - integrity: sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==, + integrity: sha512-8PrJJA7/VU8ToHVEPu14FzuSAqVKyo5gg/J8xUerMbyNkWkO9j2ExBho/68RnJsMGNJq4zH114iAttgm7BZVkA==, } cpu: [x64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-linux-x64-musl@4.46.2: + /@rollup/rollup-linux-x64-musl@4.50.0: resolution: { - integrity: sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==, + integrity: sha512-SkE6YQp+CzpyOrbw7Oc4MgXFvTw2UIBElvAvLCo230pyxOLmYwRPwZ/L5lBe/VW/qT1ZgND9wJfOsdy0XptRvw==, } cpu: [x64] os: [linux] requiresBuild: true optional: true - /@rollup/rollup-win32-arm64-msvc@4.46.2: + /@rollup/rollup-openharmony-arm64@4.50.0: + resolution: + { + integrity: sha512-PZkNLPfvXeIOgJWA804zjSFH7fARBBCpCXxgkGDRjjAhRLOR8o0IGS01ykh5GYfod4c2yiiREuDM8iZ+pVsT+Q==, + } + cpu: [arm64] + os: [openharmony] + requiresBuild: true + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.50.0: resolution: { - integrity: sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==, + integrity: sha512-q7cIIdFvWQoaCbLDUyUc8YfR3Jh2xx3unO8Dn6/TTogKjfwrax9SyfmGGK6cQhKtjePI7jRfd7iRYcxYs93esg==, } cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@rollup/rollup-win32-ia32-msvc@4.46.2: + /@rollup/rollup-win32-ia32-msvc@4.50.0: resolution: { - integrity: sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==, + integrity: sha512-XzNOVg/YnDOmFdDKcxxK410PrcbcqZkBmz+0FicpW5jtjKQxcW1BZJEQOF0NJa6JO7CZhett8GEtRN/wYLYJuw==, } cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@rollup/rollup-win32-x64-msvc@4.46.2: + /@rollup/rollup-win32-x64-msvc@4.50.0: resolution: { - integrity: sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==, + integrity: sha512-xMmiWRR8sp72Zqwjgtf3QbZfF1wdh8X2ABu3EaozvZcyHJeU0r+XAnXdKgs4cCAp6ORoYoCygipYP1mjmbjrsg==, } cpu: [x64] os: [win32] @@ -1502,7 +1467,7 @@ packages: optional: true dependencies: "@babel/generator": 7.17.7 - "@babel/parser": 7.28.0 + "@babel/parser": 7.28.3 "@babel/traverse": 7.23.2 "@babel/types": 7.17.0 javascript-natural-sort: 0.7.1 @@ -1559,10 +1524,10 @@ packages: } dev: true - /@types/node@20.19.9: + /@types/node@20.19.12: resolution: { - integrity: sha512-cuVNgarYWZqxRJDQHEB58GEONhOK79QVR/qYx4S7kcUObQvUwvFnYxJuuHUKm2aieN9X3yZB4LZsuYNU1Qphsw==, + integrity: sha512-lSOjyS6vdO2G2g2CWrETTV3Jz2zlCXHpu1rcubLKpz9oj+z/1CceHlj+yq53W+9zgb98nSov/wjEKYDNauD+Hw==, } dependencies: undici-types: 6.21.0 @@ -1574,7 +1539,7 @@ packages: } dev: true - /@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.1)(typescript@5.8.3): + /@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.1)(typescript@5.9.2): resolution: { integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==, @@ -1589,22 +1554,22 @@ packages: optional: true dependencies: "@eslint-community/regexpp": 4.12.1 - "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.8.3) + "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.9.2) "@typescript-eslint/scope-manager": 7.18.0 - "@typescript-eslint/type-utils": 7.18.0(eslint@8.57.1)(typescript@5.8.3) - "@typescript-eslint/utils": 7.18.0(eslint@8.57.1)(typescript@5.8.3) + "@typescript-eslint/type-utils": 7.18.0(eslint@8.57.1)(typescript@5.9.2) + "@typescript-eslint/utils": 7.18.0(eslint@8.57.1)(typescript@5.9.2) "@typescript-eslint/visitor-keys": 7.18.0 eslint: 8.57.1 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.4.3(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 1.4.3(typescript@5.9.2) + typescript: 5.9.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.3): + /@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2): resolution: { integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==, @@ -1619,11 +1584,11 @@ packages: dependencies: "@typescript-eslint/scope-manager": 7.18.0 "@typescript-eslint/types": 7.18.0 - "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.8.3) + "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.9.2) "@typescript-eslint/visitor-keys": 7.18.0 debug: 4.4.1 eslint: 8.57.1 - typescript: 5.8.3 + typescript: 5.9.2 transitivePeerDependencies: - supports-color dev: true @@ -1639,7 +1604,7 @@ packages: "@typescript-eslint/visitor-keys": 7.18.0 dev: true - /@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.8.3): + /@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.9.2): resolution: { integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==, @@ -1652,12 +1617,12 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.8.3) - "@typescript-eslint/utils": 7.18.0(eslint@8.57.1)(typescript@5.8.3) + "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.9.2) + "@typescript-eslint/utils": 7.18.0(eslint@8.57.1)(typescript@5.9.2) debug: 4.4.1 eslint: 8.57.1 - ts-api-utils: 1.4.3(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 1.4.3(typescript@5.9.2) + typescript: 5.9.2 transitivePeerDependencies: - supports-color dev: true @@ -1670,7 +1635,7 @@ packages: engines: { node: ^18.18.0 || >=20.0.0 } dev: true - /@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.3): + /@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.2): resolution: { integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==, @@ -1689,13 +1654,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.2 - ts-api-utils: 1.4.3(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 1.4.3(typescript@5.9.2) + typescript: 5.9.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.8.3): + /@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.9.2): resolution: { integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==, @@ -1704,10 +1669,10 @@ packages: peerDependencies: eslint: ^8.56.0 dependencies: - "@eslint-community/eslint-utils": 4.7.0(eslint@8.57.1) + "@eslint-community/eslint-utils": 4.8.0(eslint@8.57.1) "@typescript-eslint/scope-manager": 7.18.0 "@typescript-eslint/types": 7.18.0 - "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.8.3) + "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.9.2) eslint: 8.57.1 transitivePeerDependencies: - supports-color @@ -1725,20 +1690,6 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@typescript/vfs@1.6.1(typescript@5.4.5): - resolution: - { - integrity: sha512-JwoxboBh7Oz1v38tPbkrZ62ZXNHAk9bJ7c9x0eI5zBfBnBYGhURdbnh7Z4smN/MV48Y5OCcZb58n972UtbazsA==, - } - peerDependencies: - typescript: "*" - dependencies: - debug: 4.4.1 - typescript: 5.4.5 - transitivePeerDependencies: - - supports-color - dev: false - /@typespec/ts-http-runtime@0.3.0: resolution: { @@ -1988,11 +1939,11 @@ packages: "@types/chai": 5.2.2 "@vitest/spy": 3.2.4 "@vitest/utils": 3.2.4 - chai: 5.2.1 + chai: 5.3.3 tinyrainbow: 2.0.0 dev: false - /@vitest/mocker@3.2.4(vite@7.0.6): + /@vitest/mocker@3.2.4(vite@7.1.4): resolution: { integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==, @@ -2008,8 +1959,8 @@ packages: dependencies: "@vitest/spy": 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.17 - vite: 7.0.6(@types/node@20.19.9) + magic-string: 0.30.18 + vite: 7.1.4(@types/node@20.19.12) dev: false /@vitest/pretty-format@3.2.4: @@ -2039,7 +1990,7 @@ packages: } dependencies: "@vitest/pretty-format": 3.2.4 - magic-string: 0.30.17 + magic-string: 0.30.18 pathe: 2.0.3 dev: false @@ -2059,7 +2010,7 @@ packages: } dependencies: "@vitest/pretty-format": 3.2.4 - loupe: 3.2.0 + loupe: 3.2.1 tinyrainbow: 2.0.0 dev: false @@ -2121,10 +2072,10 @@ packages: engines: { node: ">=8" } dev: true - /ansi-regex@6.1.0: + /ansi-regex@6.2.0: resolution: { - integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, + integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==, } engines: { node: ">=12" } dev: true @@ -2360,21 +2311,21 @@ packages: fill-range: 7.1.1 dev: true - /browserslist@4.25.1: + /browserslist@4.25.4: resolution: { - integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==, + integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==, } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: - caniuse-lite: 1.0.30001731 - electron-to-chromium: 1.5.192 + caniuse-lite: 1.0.30001739 + electron-to-chromium: 1.5.213 node-releases: 2.0.19 - update-browserslist-db: 1.1.3(browserslist@4.25.1) + update-browserslist-db: 1.1.3(browserslist@4.25.4) dev: true - /bundle-require@5.1.0(esbuild@0.25.8): + /bundle-require@5.1.0(esbuild@0.25.9): resolution: { integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==, @@ -2383,7 +2334,7 @@ packages: peerDependencies: esbuild: ">=0.18" dependencies: - esbuild: 0.25.8 + esbuild: 0.25.9 load-tsconfig: 0.2.5 dev: true @@ -2460,24 +2411,24 @@ packages: engines: { node: ">=6" } dev: true - /caniuse-lite@1.0.30001731: + /caniuse-lite@1.0.30001739: resolution: { - integrity: sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==, + integrity: sha512-y+j60d6ulelrNSwpPyrHdl+9mJnQzHBr08xm48Qno0nSk4h3Qojh+ziv2qE6rXf4k3tadF4o1J/1tAbVm1NtnA==, } dev: true - /chai@5.2.1: + /chai@5.3.3: resolution: { - integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==, + integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==, } engines: { node: ">=18" } dependencies: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.2.0 + loupe: 3.2.1 pathval: 2.0.1 dev: false @@ -2769,10 +2720,10 @@ packages: } dev: true - /electron-to-chromium@1.5.192: + /electron-to-chromium@1.5.213: resolution: { - integrity: sha512-rP8Ez0w7UNw/9j5eSXCe10o1g/8B1P5SM90PCCMVkIRQn2R0LEHWz4Eh9RnxkniuDe1W0cTSOB3MLlkTGDcuCg==, + integrity: sha512-xr9eRzSLNa4neDO0xVFrkXu3vyIzG4Ay08dApecw42Z1NbmCt+keEpXdvlYGVe0wtvY5dhW0Ay0lY0IOfsCg0Q==, } dev: true @@ -2917,41 +2868,41 @@ packages: is-symbol: 1.1.1 dev: true - /esbuild@0.25.8: + /esbuild@0.25.9: resolution: { - integrity: sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==, + integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==, } engines: { node: ">=18" } hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/aix-ppc64": 0.25.8 - "@esbuild/android-arm": 0.25.8 - "@esbuild/android-arm64": 0.25.8 - "@esbuild/android-x64": 0.25.8 - "@esbuild/darwin-arm64": 0.25.8 - "@esbuild/darwin-x64": 0.25.8 - "@esbuild/freebsd-arm64": 0.25.8 - "@esbuild/freebsd-x64": 0.25.8 - "@esbuild/linux-arm": 0.25.8 - "@esbuild/linux-arm64": 0.25.8 - "@esbuild/linux-ia32": 0.25.8 - "@esbuild/linux-loong64": 0.25.8 - "@esbuild/linux-mips64el": 0.25.8 - "@esbuild/linux-ppc64": 0.25.8 - "@esbuild/linux-riscv64": 0.25.8 - "@esbuild/linux-s390x": 0.25.8 - "@esbuild/linux-x64": 0.25.8 - "@esbuild/netbsd-arm64": 0.25.8 - "@esbuild/netbsd-x64": 0.25.8 - "@esbuild/openbsd-arm64": 0.25.8 - "@esbuild/openbsd-x64": 0.25.8 - "@esbuild/openharmony-arm64": 0.25.8 - "@esbuild/sunos-x64": 0.25.8 - "@esbuild/win32-arm64": 0.25.8 - "@esbuild/win32-ia32": 0.25.8 - "@esbuild/win32-x64": 0.25.8 + "@esbuild/aix-ppc64": 0.25.9 + "@esbuild/android-arm": 0.25.9 + "@esbuild/android-arm64": 0.25.9 + "@esbuild/android-x64": 0.25.9 + "@esbuild/darwin-arm64": 0.25.9 + "@esbuild/darwin-x64": 0.25.9 + "@esbuild/freebsd-arm64": 0.25.9 + "@esbuild/freebsd-x64": 0.25.9 + "@esbuild/linux-arm": 0.25.9 + "@esbuild/linux-arm64": 0.25.9 + "@esbuild/linux-ia32": 0.25.9 + "@esbuild/linux-loong64": 0.25.9 + "@esbuild/linux-mips64el": 0.25.9 + "@esbuild/linux-ppc64": 0.25.9 + "@esbuild/linux-riscv64": 0.25.9 + "@esbuild/linux-s390x": 0.25.9 + "@esbuild/linux-x64": 0.25.9 + "@esbuild/netbsd-arm64": 0.25.9 + "@esbuild/netbsd-x64": 0.25.9 + "@esbuild/openbsd-arm64": 0.25.9 + "@esbuild/openbsd-x64": 0.25.9 + "@esbuild/openharmony-arm64": 0.25.9 + "@esbuild/sunos-x64": 0.25.9 + "@esbuild/win32-arm64": 0.25.9 + "@esbuild/win32-ia32": 0.25.9 + "@esbuild/win32-x64": 0.25.9 /escalade@3.2.0: resolution: @@ -3055,7 +3006,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.8.3) + "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.9.2) debug: 3.2.7 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 @@ -3072,7 +3023,7 @@ packages: peerDependencies: eslint: ">=5.14.1" dependencies: - browserslist: 4.25.1 + browserslist: 4.25.4 eslint: 8.57.1 dev: true @@ -3105,7 +3056,7 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /eslint-plugin-github@4.10.2(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.8.3): + /eslint-plugin-github@4.10.2(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.9.2): resolution: { integrity: sha512-F1F5aAFgi1Y5hYoTFzGQACBkw5W1hu2Fu5FSTrMlXqrojJnKl1S2pWO/rprlowRQpt+hzHhqSpsfnodJEVd5QA==, @@ -3115,8 +3066,8 @@ packages: eslint: ^8.0.1 dependencies: "@github/browserslist-config": 1.0.0 - "@typescript-eslint/eslint-plugin": 7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.1)(typescript@5.8.3) - "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.8.3) + "@typescript-eslint/eslint-plugin": 7.18.0(@typescript-eslint/parser@7.18.0)(eslint@8.57.1)(typescript@5.9.2) + "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.9.2) aria-query: 5.3.2 eslint: 8.57.1 eslint-config-prettier: 10.1.8(eslint@8.57.1) @@ -3127,7 +3078,7 @@ packages: eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-prettier: 5.5.3(eslint-config-prettier@10.1.8)(eslint@8.57.1)(prettier@3.6.2) + eslint-plugin-prettier: 5.5.4(eslint-config-prettier@10.1.8)(eslint@8.57.1)(prettier@3.6.2) eslint-rule-documentation: 1.0.23 jsx-ast-utils: 3.3.5 prettier: 3.6.2 @@ -3165,7 +3116,7 @@ packages: optional: true dependencies: "@rtsao/scc": 1.1.0 - "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.8.3) + "@typescript-eslint/parser": 7.18.0(eslint@8.57.1)(typescript@5.9.2) array-includes: 3.1.9 array.prototype.findlastindex: 1.2.6 array.prototype.flat: 1.3.3 @@ -3226,10 +3177,10 @@ packages: engines: { node: ">=5.0.0" } dev: true - /eslint-plugin-prettier@5.5.3(eslint-config-prettier@10.1.8)(eslint@8.57.1)(prettier@3.6.2): + /eslint-plugin-prettier@5.5.4(eslint-config-prettier@10.1.8)(eslint@8.57.1)(prettier@3.6.2): resolution: { - integrity: sha512-NAdMYww51ehKfDyDhv59/eIItUVzU0Io9H2E8nHNGKEeeqlnci+1gCvrHib6EmZdf6GxF+LCV5K7UC65Ezvw7w==, + integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==, } engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: @@ -3286,7 +3237,7 @@ packages: deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true dependencies: - "@eslint-community/eslint-utils": 4.7.0(eslint@8.57.1) + "@eslint-community/eslint-utils": 4.8.0(eslint@8.57.1) "@eslint-community/regexpp": 4.12.1 "@eslint/eslintrc": 2.1.4 "@eslint/js": 8.57.1 @@ -3470,11 +3421,12 @@ packages: reusify: 1.1.0 dev: true - /fdir@6.4.6(picomatch@4.0.3): + /fdir@6.5.0(picomatch@4.0.3): resolution: { - integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==, + integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==, } + engines: { node: ">=12.0.0" } peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -3520,9 +3472,9 @@ packages: integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==, } dependencies: - magic-string: 0.30.17 - mlly: 1.7.4 - rollup: 4.46.2 + magic-string: 0.30.18 + mlly: 1.8.0 + rollup: 4.50.0 dev: true /flat-cache@3.2.0: @@ -3794,10 +3746,10 @@ packages: } engines: { node: ">= 0.4" } - /got@14.4.7: + /got@14.4.8: resolution: { - integrity: sha512-DI8zV1231tqiGzOiOzQWDhsBmncFW7oQDH6Zgy6pDPrqJuVZMtoSgPLLsBZQj8Jg4JFfwoOsDA8NGtLQLnIx2g==, + integrity: sha512-vxwU4HuR0BIl+zcT1LYrgBjM+IJjNElOjCzs0aPgHorQyr/V6H6Y73Sn3r3FOlUffvWD+Q5jtRuGWaXkU8Jbhg==, } engines: { node: ">=20" } dependencies: @@ -4515,10 +4467,10 @@ packages: } dev: true - /loupe@3.2.0: + /loupe@3.2.1: resolution: { - integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==, + integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==, } dev: false @@ -4537,13 +4489,13 @@ packages: } dev: true - /magic-string@0.30.17: + /magic-string@0.30.18: resolution: { - integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==, + integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==, } dependencies: - "@jridgewell/sourcemap-codec": 1.5.4 + "@jridgewell/sourcemap-codec": 1.5.5 /math-intrinsics@1.1.0: resolution: @@ -4638,10 +4590,10 @@ packages: engines: { node: ">=16 || 14 >=14.17" } dev: true - /mlly@1.7.4: + /mlly@1.8.0: resolution: { - integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==, + integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==, } dependencies: acorn: 8.15.0 @@ -4676,10 +4628,10 @@ packages: hasBin: true dev: false - /napi-postinstall@0.3.2: + /napi-postinstall@0.3.3: resolution: { - integrity: sha512-tWVJxJHmBWLy69PvO96TZMZDrzmw5KeiZBz3RHmiM2XZ9grBJ2WgMAFVVg25nqp3ZjTFUs2Ftw1JhscL3Teliw==, + integrity: sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==, } engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } hasBin: true @@ -4979,7 +4931,7 @@ packages: } dependencies: confbox: 0.1.8 - mlly: 1.7.4 + mlly: 1.8.0 pathe: 2.0.3 dev: true @@ -5189,36 +5141,37 @@ packages: glob: 7.2.3 dev: true - /rollup@4.46.2: + /rollup@4.50.0: resolution: { - integrity: sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==, + integrity: sha512-/Zl4D8zPifNmyGzJS+3kVoyXeDeT/GrsJM94sACNg9RtUE0hrHa1bNPtRSrfHTMH5HjRzce6K7rlTh3Khiw+pw==, } engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true dependencies: "@types/estree": 1.0.8 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.46.2 - "@rollup/rollup-android-arm64": 4.46.2 - "@rollup/rollup-darwin-arm64": 4.46.2 - "@rollup/rollup-darwin-x64": 4.46.2 - "@rollup/rollup-freebsd-arm64": 4.46.2 - "@rollup/rollup-freebsd-x64": 4.46.2 - "@rollup/rollup-linux-arm-gnueabihf": 4.46.2 - "@rollup/rollup-linux-arm-musleabihf": 4.46.2 - "@rollup/rollup-linux-arm64-gnu": 4.46.2 - "@rollup/rollup-linux-arm64-musl": 4.46.2 - "@rollup/rollup-linux-loongarch64-gnu": 4.46.2 - "@rollup/rollup-linux-ppc64-gnu": 4.46.2 - "@rollup/rollup-linux-riscv64-gnu": 4.46.2 - "@rollup/rollup-linux-riscv64-musl": 4.46.2 - "@rollup/rollup-linux-s390x-gnu": 4.46.2 - "@rollup/rollup-linux-x64-gnu": 4.46.2 - "@rollup/rollup-linux-x64-musl": 4.46.2 - "@rollup/rollup-win32-arm64-msvc": 4.46.2 - "@rollup/rollup-win32-ia32-msvc": 4.46.2 - "@rollup/rollup-win32-x64-msvc": 4.46.2 + "@rollup/rollup-android-arm-eabi": 4.50.0 + "@rollup/rollup-android-arm64": 4.50.0 + "@rollup/rollup-darwin-arm64": 4.50.0 + "@rollup/rollup-darwin-x64": 4.50.0 + "@rollup/rollup-freebsd-arm64": 4.50.0 + "@rollup/rollup-freebsd-x64": 4.50.0 + "@rollup/rollup-linux-arm-gnueabihf": 4.50.0 + "@rollup/rollup-linux-arm-musleabihf": 4.50.0 + "@rollup/rollup-linux-arm64-gnu": 4.50.0 + "@rollup/rollup-linux-arm64-musl": 4.50.0 + "@rollup/rollup-linux-loongarch64-gnu": 4.50.0 + "@rollup/rollup-linux-ppc64-gnu": 4.50.0 + "@rollup/rollup-linux-riscv64-gnu": 4.50.0 + "@rollup/rollup-linux-riscv64-musl": 4.50.0 + "@rollup/rollup-linux-s390x-gnu": 4.50.0 + "@rollup/rollup-linux-x64-gnu": 4.50.0 + "@rollup/rollup-linux-x64-musl": 4.50.0 + "@rollup/rollup-openharmony-arm64": 4.50.0 + "@rollup/rollup-win32-arm64-msvc": 4.50.0 + "@rollup/rollup-win32-ia32-msvc": 4.50.0 + "@rollup/rollup-win32-x64-msvc": 4.50.0 fsevents: 2.3.3 /run-parallel@1.2.0: @@ -5591,7 +5544,7 @@ packages: } engines: { node: ">=12" } dependencies: - ansi-regex: 6.1.0 + ansi-regex: 6.2.0 dev: true /strip-bom@3.0.0: @@ -5634,7 +5587,7 @@ packages: engines: { node: ">=16 || 14 >=14.17" } hasBin: true dependencies: - "@jridgewell/gen-mapping": 0.3.12 + "@jridgewell/gen-mapping": 0.3.13 commander: 4.1.1 glob: 10.4.5 lines-and-columns: 1.2.4 @@ -5724,7 +5677,7 @@ packages: } engines: { node: ">=12.0.0" } dependencies: - fdir: 6.4.6(picomatch@4.0.3) + fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 /tinypool@1.1.1: @@ -5793,7 +5746,7 @@ packages: hasBin: true dev: true - /ts-api-utils@1.4.3(typescript@5.8.3): + /ts-api-utils@1.4.3(typescript@5.9.2): resolution: { integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==, @@ -5802,7 +5755,7 @@ packages: peerDependencies: typescript: ">=4.2.0" dependencies: - typescript: 5.8.3 + typescript: 5.9.2 dev: true /ts-interface-checker@0.1.13: @@ -5837,7 +5790,7 @@ packages: integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, } - /tsup@8.5.0(typescript@5.8.3): + /tsup@8.5.0(typescript@5.9.2): resolution: { integrity: sha512-VmBp77lWNQq6PfuMqCHD3xWl22vEoWsKajkF8t+yMBawlUS8JzEI+vOVMeuNZIuMML8qXRizFKi9oD5glKQVcQ==, @@ -5859,24 +5812,24 @@ packages: typescript: optional: true dependencies: - bundle-require: 5.1.0(esbuild@0.25.8) + bundle-require: 5.1.0(esbuild@0.25.9) cac: 6.7.14 chokidar: 4.0.3 consola: 3.4.2 debug: 4.4.1 - esbuild: 0.25.8 + esbuild: 0.25.9 fix-dts-default-cjs-exports: 1.0.1 joycon: 3.1.1 picocolors: 1.1.1 postcss-load-config: 6.0.1 resolve-from: 5.0.0 - rollup: 4.46.2 + rollup: 4.50.0 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyexec: 0.3.2 tinyglobby: 0.2.14 tree-kill: 1.2.2 - typescript: 5.8.3 + typescript: 5.9.2 transitivePeerDependencies: - jiti - supports-color @@ -5975,28 +5928,10 @@ packages: reflect.getprototypeof: 1.0.10 dev: true - /typescript@3.9.10: - resolution: - { - integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==, - } - engines: { node: ">=4.2.0" } - hasBin: true - dev: false - - /typescript@5.4.5: - resolution: - { - integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==, - } - engines: { node: ">=14.17" } - hasBin: true - dev: false - - /typescript@5.8.3: + /typescript@5.9.2: resolution: { - integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==, + integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==, } engines: { node: ">=14.17" } hasBin: true @@ -6052,7 +5987,7 @@ packages: } requiresBuild: true dependencies: - napi-postinstall: 0.3.2 + napi-postinstall: 0.3.3 optionalDependencies: "@unrs/resolver-binding-android-arm-eabi": 1.11.1 "@unrs/resolver-binding-android-arm64": 1.11.1 @@ -6075,7 +6010,7 @@ packages: "@unrs/resolver-binding-win32-x64-msvc": 1.11.1 dev: true - /update-browserslist-db@1.1.3(browserslist@4.25.1): + /update-browserslist-db@1.1.3(browserslist@4.25.4): resolution: { integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==, @@ -6084,7 +6019,7 @@ packages: peerDependencies: browserslist: ">= 4.21.0" dependencies: - browserslist: 4.25.1 + browserslist: 4.25.4 escalade: 3.2.0 picocolors: 1.1.1 dev: true @@ -6106,7 +6041,7 @@ packages: hasBin: true dev: false - /vite-node@3.2.4(@types/node@20.19.9): + /vite-node@3.2.4(@types/node@20.19.12): resolution: { integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==, @@ -6118,7 +6053,7 @@ packages: debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.0.6(@types/node@20.19.9) + vite: 7.1.4(@types/node@20.19.12) transitivePeerDependencies: - "@types/node" - jiti @@ -6134,10 +6069,10 @@ packages: - yaml dev: false - /vite@7.0.6(@types/node@20.19.9): + /vite@7.1.4(@types/node@20.19.12): resolution: { - integrity: sha512-MHFiOENNBd+Bd9uvc8GEsIzdkn1JxMmEeYX35tI3fv0sJBUTfW5tQsoaOwuY4KhBI09A3dUJ/DXf2yxPVPUceg==, + integrity: sha512-X5QFK4SGynAeeIt+A7ZWnApdUyHYm+pzv/8/A57LqSGcI88U6R6ipOs3uCesdc6yl7nl+zNO0t8LmqAdXcQihw==, } engines: { node: ^20.19.0 || >=22.12.0 } hasBin: true @@ -6177,18 +6112,18 @@ packages: yaml: optional: true dependencies: - "@types/node": 20.19.9 - esbuild: 0.25.8 - fdir: 6.4.6(picomatch@4.0.3) + "@types/node": 20.19.12 + esbuild: 0.25.9 + fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.46.2 + rollup: 4.50.0 tinyglobby: 0.2.14 optionalDependencies: fsevents: 2.3.3 dev: false - /vitest@3.2.4(@types/node@20.19.9): + /vitest@3.2.4(@types/node@20.19.12): resolution: { integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==, @@ -6220,18 +6155,18 @@ packages: optional: true dependencies: "@types/chai": 5.2.2 - "@types/node": 20.19.9 + "@types/node": 20.19.12 "@vitest/expect": 3.2.4 - "@vitest/mocker": 3.2.4(vite@7.0.6) + "@vitest/mocker": 3.2.4(vite@7.1.4) "@vitest/pretty-format": 3.2.4 "@vitest/runner": 3.2.4 "@vitest/snapshot": 3.2.4 "@vitest/spy": 3.2.4 "@vitest/utils": 3.2.4 - chai: 5.2.1 + chai: 5.3.3 debug: 4.4.1 expect-type: 1.2.2 - magic-string: 0.30.17 + magic-string: 0.30.18 pathe: 2.0.3 picomatch: 4.0.3 std-env: 3.9.0 @@ -6240,8 +6175,8 @@ packages: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.0.6(@types/node@20.19.9) - vite-node: 3.2.4(@types/node@20.19.9) + vite: 7.1.4(@types/node@20.19.12) + vite-node: 3.2.4(@types/node@20.19.12) why-is-node-running: 2.3.0 transitivePeerDependencies: - jiti @@ -6446,18 +6381,18 @@ packages: engines: { node: ">=10" } dev: true - github.com/DeterminateSystems/detsys-ts/6d3f1c5a5781e58b3cd8060cfb578c0c95eeb51e: + github.com/DeterminateSystems/detsys-ts/c7303495f43d348cac78091ef434443b1ef22485: resolution: { - tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/6d3f1c5a5781e58b3cd8060cfb578c0c95eeb51e, + tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/c7303495f43d348cac78091ef434443b1ef22485, } name: detsys-ts version: 1.0.0 dependencies: - "@actions/cache": 4.0.3 + "@actions/cache": 4.0.5 "@actions/core": 1.11.1 "@actions/exec": 1.1.1 - got: 14.4.7 + got: 14.4.8 type-fest: 4.41.0 transitivePeerDependencies: - encoding