Compare commits

...

4 commits

Author SHA1 Message Date
Graham Christensen
42aa906d7f
Merge pull request #161 from detsys-pr-bot/detsys-ts-update-8d9725c4856301321cd2508f5b8725cfb99366e2
Some checks are pending
CI / typescript-action (push) Waiting to run
CI / validate (push) Waiting to run
Update `detsys-ts`: Merge pull request #81 from DeterminateSystems/dont-capture-some-crashes
2025-03-27 12:00:09 -04:00
grahamc
8b0105d445 Update detsys-ts for: Merge pull request #81 from DeterminateSystems/dont-capture-some-crashes (8d9725c4856301321cd2508f5b8725cfb99366e2) 2025-03-27 15:57:16 +00:00
Luc Perkins
9e4b6cbbef
Merge pull request #160 from detsys-pr-bot/detsys-ts-update-38df301720b69972f084538dd44c181269f264b0
Update `detsys-ts`: Merge pull request #80 from DeterminateSystems/fixup-traces
2025-03-27 11:09:14 -03:00
grahamc
43a3cfc807 Update detsys-ts for: Merge pull request #80 from DeterminateSystems/fixup-traces (38df301720b69972f084538dd44c181269f264b0) 2025-03-27 13:47:43 +00:00
3 changed files with 124 additions and 108 deletions

36
dist/index.js vendored
View file

@ -87214,7 +87214,7 @@ var cache = __nccwpck_require__(7389);
const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:child_process"); const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:child_process");
;// CONCATENATED MODULE: external "node:path" ;// CONCATENATED MODULE: external "node:path"
const external_node_path_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:path"); const external_node_path_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:path");
;// CONCATENATED MODULE: ./node_modules/.pnpm/detsys-ts@https+++codeload.github.com+DeterminateSystems+detsys-ts+tar.gz+cf33e9577ca75_0fc2d146cb6170d3ae5bda7fe67f485d/node_modules/detsys-ts/dist/index.js ;// CONCATENATED MODULE: ./node_modules/.pnpm/detsys-ts@https+++codeload.github.com+DeterminateSystems+detsys-ts+tar.gz+8d9725c485630_cc2c1096494a1fd83f38014785db8a80/node_modules/detsys-ts/dist/index.js
var __defProp = Object.defineProperty; var __defProp = Object.defineProperty;
var __export = (target, all) => { var __export = (target, all) => {
for (var name in all) for (var name in all)
@ -87441,16 +87441,25 @@ function stringifyError(e) {
async function collectBacktraces(prefixes, startTimestampMs) { var START_SLOP_SECONDS = 5;
async function collectBacktraces(prefixes, programNameDenyList, startTimestampMs) {
if (isMacOS) { if (isMacOS) {
return await collectBacktracesMacOS(prefixes, startTimestampMs); return await collectBacktracesMacOS(
prefixes,
programNameDenyList,
startTimestampMs
);
} }
if (isLinux) { if (isLinux) {
return await collectBacktracesSystemd(prefixes, startTimestampMs); return await collectBacktracesSystemd(
prefixes,
programNameDenyList,
startTimestampMs
);
} }
return /* @__PURE__ */ new Map(); return /* @__PURE__ */ new Map();
} }
async function collectBacktracesMacOS(prefixes, startTimestampMs) { async function collectBacktracesMacOS(prefixes, programNameDenyList, startTimestampMs) {
const backtraces = /* @__PURE__ */ new Map(); const backtraces = /* @__PURE__ */ new Map();
try { try {
const { stdout: logJson } = await exec.getExecOutput( const { stdout: logJson } = await exec.getExecOutput(
@ -87492,6 +87501,10 @@ async function collectBacktracesMacOS(prefixes, startTimestampMs) {
for (const [source, dir] of dirs) { for (const [source, dir] of dirs) {
const fileNames = (await (0,promises_namespaceObject.readdir)(dir)).filter((fileName) => { const fileNames = (await (0,promises_namespaceObject.readdir)(dir)).filter((fileName) => {
return prefixes.some((prefix) => fileName.startsWith(prefix)); return prefixes.some((prefix) => fileName.startsWith(prefix));
}).filter((fileName) => {
return !programNameDenyList.some(
(programName) => fileName.startsWith(`${programName}_${(/* @__PURE__ */ new Date()).getFullYear()}`)
);
}).filter((fileName) => { }).filter((fileName) => {
return !fileName.endsWith(".diag"); return !fileName.endsWith(".diag");
}); });
@ -87516,8 +87529,8 @@ async function collectBacktracesMacOS(prefixes, startTimestampMs) {
} }
return backtraces; return backtraces;
} }
async function collectBacktracesSystemd(prefixes, startTimestampMs) { async function collectBacktracesSystemd(prefixes, programNameDenyList, startTimestampMs) {
const sinceSeconds = Math.ceil((Date.now() - startTimestampMs) / 1e3); const sinceSeconds = Math.ceil((Date.now() - startTimestampMs) / 1e3) + START_SLOP_SECONDS;
const backtraces = /* @__PURE__ */ new Map(); const backtraces = /* @__PURE__ */ new Map();
const coredumps = []; const coredumps = [];
try { try {
@ -87538,7 +87551,7 @@ async function collectBacktracesSystemd(prefixes, startTimestampMs) {
if (typeof sussyObject.exe == "string" && typeof sussyObject.pid == "number") { if (typeof sussyObject.exe == "string" && typeof sussyObject.pid == "number") {
const execParts = sussyObject.exe.split("/"); const execParts = sussyObject.exe.split("/");
const binaryName = execParts[execParts.length - 1]; const binaryName = execParts[execParts.length - 1];
if (prefixes.some((prefix) => binaryName.startsWith(prefix))) { if (prefixes.some((prefix) => binaryName.startsWith(prefix)) && !programNameDenyList.includes(binaryName)) {
coredumps.push({ coredumps.push({
exe: sussyObject.exe, exe: sussyObject.exe,
pid: sussyObject.pid pid: sussyObject.pid
@ -88106,6 +88119,7 @@ var STATE_KEY_CROSS_PHASE_ID = "detsys_cross_phase_id";
var STATE_BACKTRACE_START_TIMESTAMP = "detsys_backtrace_start_timestamp"; var STATE_BACKTRACE_START_TIMESTAMP = "detsys_backtrace_start_timestamp";
var DIAGNOSTIC_ENDPOINT_TIMEOUT_MS = 1e4; var DIAGNOSTIC_ENDPOINT_TIMEOUT_MS = 1e4;
var CHECK_IN_ENDPOINT_TIMEOUT_MS = 1e3; var CHECK_IN_ENDPOINT_TIMEOUT_MS = 1e3;
var PROGRAM_NAME_CRASH_DENY_LIST = ["nix-expr-tests"];
var DetSysAction = class { var DetSysAction = class {
determineExecutionPhase() { determineExecutionPhase() {
const currentPhase = core.getState(STATE_KEY_EXECUTION_PHASE); const currentPhase = core.getState(STATE_KEY_EXECUTION_PHASE);
@ -88638,7 +88652,7 @@ var DetSysAction = class {
} }
} }
collectBacktraceSetup() { collectBacktraceSetup() {
if (process.env.DETSYS_BACKTRACE_COLLECTOR === "") { if (!process.env.DETSYS_BACKTRACE_COLLECTOR) {
core.exportVariable( core.exportVariable(
"DETSYS_BACKTRACE_COLLECTOR", "DETSYS_BACKTRACE_COLLECTOR",
this.getCrossPhaseId() this.getCrossPhaseId()
@ -88653,6 +88667,7 @@ var DetSysAction = class {
} }
const backtraces = await collectBacktraces( const backtraces = await collectBacktraces(
this.actionOptions.binaryNamePrefixes, this.actionOptions.binaryNamePrefixes,
this.actionOptions.binaryNamesDenyList,
parseInt(core.getState(STATE_BACKTRACE_START_TIMESTAMP)) parseInt(core.getState(STATE_BACKTRACE_START_TIMESTAMP))
); );
core.debug(`Backtraces identified: ${backtraces.size}`); core.debug(`Backtraces identified: ${backtraces.size}`);
@ -88797,7 +88812,8 @@ function makeOptionsConfident(actionOptions) {
"nix", "nix",
"determinate-nixd", "determinate-nixd",
actionOptions.name actionOptions.name
] ],
binaryNamesDenyList: actionOptions.binaryNamePrefixes ?? PROGRAM_NAME_CRASH_DENY_LIST
}; };
core.debug("idslib options:"); core.debug("idslib options:");
core.debug(JSON.stringify(finalOpts, void 0, 2)); core.debug(JSON.stringify(finalOpts, void 0, 2));

View file

@ -35,7 +35,7 @@
"@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/eslint-plugin": "^7.18.0",
"@vercel/ncc": "^0.38.3", "@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1", "eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.9.1", "eslint-import-resolver-typescript": "^3.10.0",
"eslint-plugin-github": "^4.10.2", "eslint-plugin-github": "^4.10.2",
"eslint-plugin-import": "^2.31.0", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.5", "eslint-plugin-prettier": "^5.2.5",

View file

@ -16,7 +16,7 @@ importers:
version: 1.1.1 version: 1.1.1
detsys-ts: detsys-ts:
specifier: github:DeterminateSystems/detsys-ts specifier: github:DeterminateSystems/detsys-ts
version: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/cf33e9577ca7571bf9ebbfe298b4e3e457a58813 version: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/8d9725c4856301321cd2508f5b8725cfb99366e2
devDependencies: devDependencies:
'@trivago/prettier-plugin-sort-imports': '@trivago/prettier-plugin-sort-imports':
specifier: ^4.3.0 specifier: ^4.3.0
@ -31,14 +31,14 @@ importers:
specifier: ^8.57.1 specifier: ^8.57.1
version: 8.57.1 version: 8.57.1
eslint-import-resolver-typescript: eslint-import-resolver-typescript:
specifier: ^3.9.1 specifier: ^3.10.0
version: 3.9.1(eslint-plugin-import@2.31.0)(eslint@8.57.1) version: 3.10.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
eslint-plugin-github: eslint-plugin-github:
specifier: ^4.10.2 specifier: ^4.10.2
version: 4.10.2(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1)(typescript@5.8.2) version: 4.10.2(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1)(typescript@5.8.2)
eslint-plugin-import: eslint-plugin-import:
specifier: ^2.31.0 specifier: ^2.31.0
version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1) version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1)
eslint-plugin-prettier: eslint-plugin-prettier:
specifier: ^5.2.5 specifier: ^5.2.5
version: 5.2.5(eslint-config-prettier@10.1.1(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.3) version: 5.2.5(eslint-config-prettier@10.1.1(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.3)
@ -649,78 +649,78 @@ packages:
'@ungap/structured-clone@1.3.0': '@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
'@unrs/rspack-resolver-binding-darwin-arm64@1.3.0': '@unrs/resolver-binding-darwin-arm64@1.3.2':
resolution: {integrity: sha512-EcjI0Hh2HiNOM0B9UuYH1PfLWgE6/SBQ4dKoHXWNloERfveha/n6aUZSBThtPGnJenmdfaJYXXZtqyNbWtJAFw==} resolution: {integrity: sha512-ddnlXgRi0Fog5+7U5Q1qY62wl95Q1lB4tXQX1UIA9YHmRCHN2twaQW0/4tDVGCvTVEU3xEayU7VemEr7GcBYUw==}
cpu: [arm64] cpu: [arm64]
os: [darwin] os: [darwin]
'@unrs/rspack-resolver-binding-darwin-x64@1.3.0': '@unrs/resolver-binding-darwin-x64@1.3.2':
resolution: {integrity: sha512-3CgG+mhfudDfnaDqwEl0W1mcGTto5f5mqPyJSXcWDxrnNc7pr/p01khIgWOoOD1eCwVejmgpYvRKGBwJPwgHOQ==} resolution: {integrity: sha512-tnl9xoEeg503jis+LW5cuq4hyLGQyqaoBL8VdPSqcewo/FL1C8POHbzl+AL25TidWYJD+R6bGUTE381kA1sT9w==}
cpu: [x64] cpu: [x64]
os: [darwin] os: [darwin]
'@unrs/rspack-resolver-binding-freebsd-x64@1.3.0': '@unrs/resolver-binding-freebsd-x64@1.3.2':
resolution: {integrity: sha512-ww8BwryDrpXlSajwSIEUXEv8oKDkw04L2ke3hxjaxWohuBV8pAQie9XBS4yQTyREuL2ypcqbARfoCXJJzVp7ig==} resolution: {integrity: sha512-zyPn9LFCCjhKPeCtECZaiMUgkYN/VpLb4a9Xv7QriJmTaQxsuDtXqOHifrzUXIhorJTyS+5MOKDuNL0X9I4EHA==}
cpu: [x64] cpu: [x64]
os: [freebsd] os: [freebsd]
'@unrs/rspack-resolver-binding-linux-arm-gnueabihf@1.3.0': '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.2':
resolution: {integrity: sha512-WyhonI1mkuAlnG2iaMjk7uy4aWX+FWi2Au8qCCwj57wVHbAEfrN6xN2YhzbrsCC+ciumKhj5c01MqwsnYDNzWQ==} resolution: {integrity: sha512-UWx56Wh59Ro69fe+Wfvld4E1n9KG0e3zeouWLn8eSasyi/yVH/7ZW3CLTVFQ81oMKSpXwr5u6RpzttDXZKiO4g==}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-arm-musleabihf@1.3.0': '@unrs/resolver-binding-linux-arm-musleabihf@1.3.2':
resolution: {integrity: sha512-+uCP6hIAMVWHKQnLZHESJ1U1TFVGLR3FTeaS2A4zB0k8w+IbZlWwl9FiBUOwOiqhcCCyKiUEifgnYFNGpxi3pw==} resolution: {integrity: sha512-VYGQXsOEJtfaoY2fOm8Z9ii5idFaHFYlrq3yMFZPaFKo8ufOXYm8hnfru7qetbM9MX116iWaPC0ZX5sK+1Dr+g==}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-arm64-gnu@1.3.0': '@unrs/resolver-binding-linux-arm64-gnu@1.3.2':
resolution: {integrity: sha512-p+s/Wp8rf75Qqs2EPw4HC0xVLLW+/60MlVAsB7TYLoeg1e1CU/QCis36FxpziLS0ZY2+wXdTnPUxr+5kkThzwQ==} resolution: {integrity: sha512-3zP420zxJfYPD1rGp2/OTIBxF8E3+/6VqCG+DEO6kkDgBiloa7Y8pw1o7N9BfgAC+VC8FPZsFXhV2lpx+lLRMQ==}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-arm64-musl@1.3.0': '@unrs/resolver-binding-linux-arm64-musl@1.3.2':
resolution: {integrity: sha512-cZEL9jmZ2kAN53MEk+fFCRJM8pRwOEboDn7sTLjZW+hL6a0/8JNfHP20n8+MBDrhyD34BSF4A6wPCj/LNhtOIQ==} resolution: {integrity: sha512-ZWjSleUgr88H4Kei7yT4PlPqySTuWN1OYDDcdbmMCtLWFly3ed+rkrcCb3gvqXdDbYrGOtzv3g2qPEN+WWNv5Q==}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-ppc64-gnu@1.3.0': '@unrs/resolver-binding-linux-ppc64-gnu@1.3.2':
resolution: {integrity: sha512-IOeRhcMXTNlk2oApsOozYVcOHu4t1EKYKnTz4huzdPyKNPX0Y9C7X8/6rk4aR3Inb5s4oVMT9IVKdgNXLcpGAQ==} resolution: {integrity: sha512-p+5OvYJ2UOlpjes3WfBlxyvQok2u26hLyPxLFHkYlfzhZW0juhvBf/tvewz1LDFe30M7zL9cF4OOO5dcvtk+cw==}
cpu: [ppc64] cpu: [ppc64]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-s390x-gnu@1.3.0': '@unrs/resolver-binding-linux-s390x-gnu@1.3.2':
resolution: {integrity: sha512-op54XrlEbhgVRCxzF1pHFcLamdOmHDapwrqJ9xYRB7ZjwP/zQCKzz/uAsSaAlyQmbSi/PXV7lwfca4xkv860/Q==} resolution: {integrity: sha512-yweY7I6SqNn3kvj6vE4PQRo7j8Oz6+NiUhmgciBNAUOuI3Jq0bnW29hbHJdxZRSN1kYkQnSkbbA1tT8VnK816w==}
cpu: [s390x] cpu: [s390x]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-x64-gnu@1.3.0': '@unrs/resolver-binding-linux-x64-gnu@1.3.2':
resolution: {integrity: sha512-orbQF7sN02N/b9QF8Xp1RBO5YkfI+AYo9VZw0H2Gh4JYWSuiDHjOPEeFPDIRyWmXbQJuiVNSB+e1pZOjPPKIyg==} resolution: {integrity: sha512-fNIvtzJcGN9hzWTIayrTSk2+KHQrqKbbY+I88xMVMOFV9t4AXha4veJdKaIuuks+2JNr6GuuNdsL7+exywZ32w==}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-linux-x64-musl@1.3.0': '@unrs/resolver-binding-linux-x64-musl@1.3.2':
resolution: {integrity: sha512-kpjqjIAC9MfsjmlgmgeC8U9gZi6g/HTuCqpI7SBMjsa7/9MvBaQ6TJ7dtnsV/+DXvfJ2+L5teBBXG+XxfpvIFA==} resolution: {integrity: sha512-OaFEw8WAjiwBGxutQgkWhoAGB5BQqZJ8Gjt/mW+m6DWNjimcxU22uWCuEtfw1CIwLlKPOzsgH0429fWmZcTGkg==}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
'@unrs/rspack-resolver-binding-wasm32-wasi@1.3.0': '@unrs/resolver-binding-wasm32-wasi@1.3.2':
resolution: {integrity: sha512-JAg0hY3kGsCPk7Jgh16yMTBZ6VEnoNR1DFZxiozjKwH+zSCfuDuM5S15gr50ofbwVw9drobIP2TTHdKZ15MJZQ==} resolution: {integrity: sha512-u+sumtO7M0AGQ9bNQrF4BHNpUyxo23FM/yXZfmVAicTQ+mXtG06O7pm5zQUw3Mr4jRs2I84uh4O0hd8bdouuvQ==}
engines: {node: '>=14.0.0'} engines: {node: '>=14.0.0'}
cpu: [wasm32] cpu: [wasm32]
'@unrs/rspack-resolver-binding-win32-arm64-msvc@1.3.0': '@unrs/resolver-binding-win32-arm64-msvc@1.3.2':
resolution: {integrity: sha512-h5N83i407ntS3ndDkhT/3vC3Dj8oP0BIwMtekETNJcxk7IuWccSXifzCEhdxxu/FOX4OICGIHdHrxf5fJuAjfw==} resolution: {integrity: sha512-ZAJKy95vmDIHsRFuPNqPQRON8r2mSMf3p9DoX+OMOhvu2c8OXGg8MvhGRf3PNg45ozRrPdXDnngURKgaFfpGoQ==}
cpu: [arm64] cpu: [arm64]
os: [win32] os: [win32]
'@unrs/rspack-resolver-binding-win32-ia32-msvc@1.3.0': '@unrs/resolver-binding-win32-ia32-msvc@1.3.2':
resolution: {integrity: sha512-9QH7Gq3dRL8Q/D6PGS3Dwtjx9yw6kbCEu6iBkAUhFTDAuVUk2L0H/5NekRVA13AQaSc3OsEUKt60EOn/kq5Dug==} resolution: {integrity: sha512-nQG4YFAS2BLoKVQFK/FrWJvFATI5DQUWQrcPcsWG9Ve5BLLHZuPOrJ2SpAJwLXQrRv6XHSFAYGI8wQpBg/CiFA==}
cpu: [ia32] cpu: [ia32]
os: [win32] os: [win32]
'@unrs/rspack-resolver-binding-win32-x64-msvc@1.3.0': '@unrs/resolver-binding-win32-x64-msvc@1.3.2':
resolution: {integrity: sha512-IYuXJCuwBOVV0H73l6auaZwtAPHjCPBJkxd4Co0yO6dSjDM5Na5OceaxhUmJLZ3z8kuEGhTYWIHH7PchGztnlg==} resolution: {integrity: sha512-XBWpUP0mHya6yGBwNefhyEa6V7HgYKCxEAY4qhTm/PcAQyBPNmjj97VZJOJkVdUsyuuii7xmq0pXWX/c2aToHQ==}
cpu: [x64] cpu: [x64]
os: [win32] os: [win32]
@ -1014,8 +1014,8 @@ packages:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'} engines: {node: '>=0.4.0'}
detsys-ts@https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/cf33e9577ca7571bf9ebbfe298b4e3e457a58813: detsys-ts@https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/8d9725c4856301321cd2508f5b8725cfb99366e2:
resolution: {tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/cf33e9577ca7571bf9ebbfe298b4e3e457a58813} resolution: {tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/8d9725c4856301321cd2508f5b8725cfb99366e2}
version: 1.0.0 version: 1.0.0
dir-glob@3.0.1: dir-glob@3.0.1:
@ -1037,8 +1037,8 @@ packages:
eastasianwidth@0.2.0: eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
electron-to-chromium@1.5.124: electron-to-chromium@1.5.126:
resolution: {integrity: sha512-riELkpDUqBi00gqreV3RIGoowxGrfueEKBd6zPdOk/I8lvuFpBGNkYoHof3zUHbiTBsIU8oxdIIL/WNrAG1/7A==} resolution: {integrity: sha512-AtH1uLcTC72LA4vfYcEJJkrMk/MY/X0ub8Hv7QGAePW2JkeUFHEL/QfS4J77R6M87Sss8O0OcqReSaN1bpyA+Q==}
emoji-regex@8.0.0: emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@ -1103,8 +1103,8 @@ packages:
eslint-import-resolver-node@0.3.9: eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
eslint-import-resolver-typescript@3.9.1: eslint-import-resolver-typescript@3.10.0:
resolution: {integrity: sha512-euxa5rTGqHeqVxmOHT25hpk58PxkQ4mNoX6Yun4ooGaCHAxOCojJYNvjmyeOQxj/LyW+3fulH0+xtk+p2kPPTw==} resolution: {integrity: sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==}
engines: {node: ^14.18.0 || >=16.0.0} engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: '*' eslint: '*'
@ -1478,8 +1478,8 @@ packages:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
is-bun-module@1.3.0: is-bun-module@2.0.0:
resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
is-callable@1.2.7: is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
@ -1857,8 +1857,8 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'} engines: {node: '>=12'}
pirates@4.0.6: pirates@4.0.7:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'} engines: {node: '>= 6'}
possible-typed-array-names@1.1.0: possible-typed-array-names@1.1.0:
@ -1960,9 +1960,6 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'} engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true hasBin: true
rspack-resolver@1.3.0:
resolution: {integrity: sha512-az/PLDwa1xijNv4bAFBS8mtqqJC1Y3lVyFag4cuyIUOHq/ft5kSZlHbqYaLZLpsQtPWv4ZGDo5ycySKJzUvU/A==}
run-parallel@1.2.0: run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@ -2261,6 +2258,9 @@ packages:
resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==} resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==}
engines: {node: '>=14.0'} engines: {node: '>=14.0'}
unrs-resolver@1.3.2:
resolution: {integrity: sha512-ZKQBC351Ubw0PY8xWhneIfb6dygTQeUHtCcNGd0QB618zabD/WbFMYdRyJ7xeVT+6G82K5v/oyZO0QSHFtbIuw==}
update-browserslist-db@1.1.3: update-browserslist-db@1.1.3:
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true hasBin: true
@ -3015,51 +3015,51 @@ snapshots:
'@ungap/structured-clone@1.3.0': {} '@ungap/structured-clone@1.3.0': {}
'@unrs/rspack-resolver-binding-darwin-arm64@1.3.0': '@unrs/resolver-binding-darwin-arm64@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-darwin-x64@1.3.0': '@unrs/resolver-binding-darwin-x64@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-freebsd-x64@1.3.0': '@unrs/resolver-binding-freebsd-x64@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-arm-gnueabihf@1.3.0': '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-arm-musleabihf@1.3.0': '@unrs/resolver-binding-linux-arm-musleabihf@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-arm64-gnu@1.3.0': '@unrs/resolver-binding-linux-arm64-gnu@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-arm64-musl@1.3.0': '@unrs/resolver-binding-linux-arm64-musl@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-ppc64-gnu@1.3.0': '@unrs/resolver-binding-linux-ppc64-gnu@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-s390x-gnu@1.3.0': '@unrs/resolver-binding-linux-s390x-gnu@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-x64-gnu@1.3.0': '@unrs/resolver-binding-linux-x64-gnu@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-linux-x64-musl@1.3.0': '@unrs/resolver-binding-linux-x64-musl@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-wasm32-wasi@1.3.0': '@unrs/resolver-binding-wasm32-wasi@1.3.2':
dependencies: dependencies:
'@napi-rs/wasm-runtime': 0.2.7 '@napi-rs/wasm-runtime': 0.2.7
optional: true optional: true
'@unrs/rspack-resolver-binding-win32-arm64-msvc@1.3.0': '@unrs/resolver-binding-win32-arm64-msvc@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-win32-ia32-msvc@1.3.0': '@unrs/resolver-binding-win32-ia32-msvc@1.3.2':
optional: true optional: true
'@unrs/rspack-resolver-binding-win32-x64-msvc@1.3.0': '@unrs/resolver-binding-win32-x64-msvc@1.3.2':
optional: true optional: true
'@vercel/ncc@0.38.3': {} '@vercel/ncc@0.38.3': {}
@ -3223,7 +3223,7 @@ snapshots:
browserslist@4.24.4: browserslist@4.24.4:
dependencies: dependencies:
caniuse-lite: 1.0.30001707 caniuse-lite: 1.0.30001707
electron-to-chromium: 1.5.124 electron-to-chromium: 1.5.126
node-releases: 2.0.19 node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4) update-browserslist-db: 1.1.3(browserslist@4.24.4)
@ -3360,7 +3360,7 @@ snapshots:
delayed-stream@1.0.0: {} delayed-stream@1.0.0: {}
detsys-ts@https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/cf33e9577ca7571bf9ebbfe298b4e3e457a58813: detsys-ts@https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/8d9725c4856301321cd2508f5b8725cfb99366e2:
dependencies: dependencies:
'@actions/cache': 4.0.3 '@actions/cache': 4.0.3
'@actions/core': 1.11.1 '@actions/core': 1.11.1
@ -3391,7 +3391,7 @@ snapshots:
eastasianwidth@0.2.0: {} eastasianwidth@0.2.0: {}
electron-to-chromium@1.5.124: {} electron-to-chromium@1.5.126: {}
emoji-regex@8.0.0: {} emoji-regex@8.0.0: {}
@ -3524,29 +3524,29 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0)(eslint@8.57.1): eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies: dependencies:
'@nolyfill/is-core-module': 1.0.39 '@nolyfill/is-core-module': 1.0.39
debug: 4.4.0 debug: 4.4.0
eslint: 8.57.1 eslint: 8.57.1
get-tsconfig: 4.10.0 get-tsconfig: 4.10.0
is-bun-module: 1.3.0 is-bun-module: 2.0.0
rspack-resolver: 1.3.0
stable-hash: 0.0.5 stable-hash: 0.0.5
tinyglobby: 0.2.12 tinyglobby: 0.2.12
unrs-resolver: 1.3.2
optionalDependencies: optionalDependencies:
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1) eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1): eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1):
dependencies: dependencies:
debug: 3.2.7 debug: 3.2.7
optionalDependencies: optionalDependencies:
'@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.8.2) '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.8.2)
eslint: 8.57.1 eslint: 8.57.1
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0)(eslint@8.57.1) eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
@ -3569,7 +3569,7 @@ snapshots:
lodash.snakecase: 4.1.1 lodash.snakecase: 4.1.1
lodash.upperfirst: 4.3.1 lodash.upperfirst: 4.3.1
eslint-plugin-github@4.10.2(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1)(typescript@5.8.2): eslint-plugin-github@4.10.2(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1)(typescript@5.8.2):
dependencies: dependencies:
'@github/browserslist-config': 1.0.0 '@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.2))(eslint@8.57.1)(typescript@5.8.2) '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2)
@ -3581,7 +3581,7 @@ snapshots:
eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1) eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1)
eslint-plugin-filenames: 1.3.2(eslint@8.57.1) eslint-plugin-filenames: 1.3.2(eslint@8.57.1)
eslint-plugin-i18n-text: 1.0.1(eslint@8.57.1) eslint-plugin-i18n-text: 1.0.1(eslint@8.57.1)
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1) eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1)
eslint-plugin-jsx-a11y: 6.10.2(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-no-only-tests: 3.3.0
eslint-plugin-prettier: 5.2.5(eslint-config-prettier@10.1.1(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.3) eslint-plugin-prettier: 5.2.5(eslint-config-prettier@10.1.1(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.3)
@ -3600,7 +3600,7 @@ snapshots:
dependencies: dependencies:
eslint: 8.57.1 eslint: 8.57.1
eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1): eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1):
dependencies: dependencies:
'@rtsao/scc': 1.1.0 '@rtsao/scc': 1.1.0
array-includes: 3.1.8 array-includes: 3.1.8
@ -3611,7 +3611,7 @@ snapshots:
doctrine: 2.1.0 doctrine: 2.1.0
eslint: 8.57.1 eslint: 8.57.1
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1)(eslint@8.57.1) eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@8.57.1)
hasown: 2.0.2 hasown: 2.0.2
is-core-module: 2.16.1 is-core-module: 2.16.1
is-glob: 4.0.3 is-glob: 4.0.3
@ -4010,7 +4010,7 @@ snapshots:
call-bound: 1.0.4 call-bound: 1.0.4
has-tostringtag: 1.0.2 has-tostringtag: 1.0.2
is-bun-module@1.3.0: is-bun-module@2.0.0:
dependencies: dependencies:
semver: 7.7.1 semver: 7.7.1
@ -4338,7 +4338,7 @@ snapshots:
picomatch@4.0.2: {} picomatch@4.0.2: {}
pirates@4.0.6: {} pirates@4.0.7: {}
possible-typed-array-names@1.1.0: {} possible-typed-array-names@1.1.0: {}
@ -4440,24 +4440,6 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.37.0 '@rollup/rollup-win32-x64-msvc': 4.37.0
fsevents: 2.3.3 fsevents: 2.3.3
rspack-resolver@1.3.0:
optionalDependencies:
'@unrs/rspack-resolver-binding-darwin-arm64': 1.3.0
'@unrs/rspack-resolver-binding-darwin-x64': 1.3.0
'@unrs/rspack-resolver-binding-freebsd-x64': 1.3.0
'@unrs/rspack-resolver-binding-linux-arm-gnueabihf': 1.3.0
'@unrs/rspack-resolver-binding-linux-arm-musleabihf': 1.3.0
'@unrs/rspack-resolver-binding-linux-arm64-gnu': 1.3.0
'@unrs/rspack-resolver-binding-linux-arm64-musl': 1.3.0
'@unrs/rspack-resolver-binding-linux-ppc64-gnu': 1.3.0
'@unrs/rspack-resolver-binding-linux-s390x-gnu': 1.3.0
'@unrs/rspack-resolver-binding-linux-x64-gnu': 1.3.0
'@unrs/rspack-resolver-binding-linux-x64-musl': 1.3.0
'@unrs/rspack-resolver-binding-wasm32-wasi': 1.3.0
'@unrs/rspack-resolver-binding-win32-arm64-msvc': 1.3.0
'@unrs/rspack-resolver-binding-win32-ia32-msvc': 1.3.0
'@unrs/rspack-resolver-binding-win32-x64-msvc': 1.3.0
run-parallel@1.2.0: run-parallel@1.2.0:
dependencies: dependencies:
queue-microtask: 1.2.3 queue-microtask: 1.2.3
@ -4627,7 +4609,7 @@ snapshots:
glob: 10.4.5 glob: 10.4.5
lines-and-columns: 1.2.4 lines-and-columns: 1.2.4
mz: 2.7.0 mz: 2.7.0
pirates: 4.0.6 pirates: 4.0.7
ts-interface-checker: 0.1.13 ts-interface-checker: 0.1.13
supports-color@7.2.0: supports-color@7.2.0:
@ -4784,6 +4766,24 @@ snapshots:
dependencies: dependencies:
'@fastify/busboy': 2.1.1 '@fastify/busboy': 2.1.1
unrs-resolver@1.3.2:
optionalDependencies:
'@unrs/resolver-binding-darwin-arm64': 1.3.2
'@unrs/resolver-binding-darwin-x64': 1.3.2
'@unrs/resolver-binding-freebsd-x64': 1.3.2
'@unrs/resolver-binding-linux-arm-gnueabihf': 1.3.2
'@unrs/resolver-binding-linux-arm-musleabihf': 1.3.2
'@unrs/resolver-binding-linux-arm64-gnu': 1.3.2
'@unrs/resolver-binding-linux-arm64-musl': 1.3.2
'@unrs/resolver-binding-linux-ppc64-gnu': 1.3.2
'@unrs/resolver-binding-linux-s390x-gnu': 1.3.2
'@unrs/resolver-binding-linux-x64-gnu': 1.3.2
'@unrs/resolver-binding-linux-x64-musl': 1.3.2
'@unrs/resolver-binding-wasm32-wasi': 1.3.2
'@unrs/resolver-binding-win32-arm64-msvc': 1.3.2
'@unrs/resolver-binding-win32-ia32-msvc': 1.3.2
'@unrs/resolver-binding-win32-x64-msvc': 1.3.2
update-browserslist-db@1.1.3(browserslist@4.24.4): update-browserslist-db@1.1.3(browserslist@4.24.4):
dependencies: dependencies:
browserslist: 4.24.4 browserslist: 4.24.4