From 3bfabd012873e5022f341aca75566966d91870f1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 17:28:11 +0800 Subject: [PATCH] chore(deps): update dependency jest to v30.0.0-alpha.3 (#16106) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: fisker Cheung --- .github/workflows/prod-test.yml | 7 +- package.json | 2 +- scripts/prepare-nodejs-14-test.js | 77 +++ yarn.lock | 864 +++++++++++++----------------- 4 files changed, 458 insertions(+), 492 deletions(-) create mode 100644 scripts/prepare-nodejs-14-test.js diff --git a/.github/workflows/prod-test.yml b/.github/workflows/prod-test.yml index 411cf9c10405..48a37152540e 100644 --- a/.github/workflows/prod-test.yml +++ b/.github/workflows/prod-test.yml @@ -91,10 +91,15 @@ jobs: node-version: ${{ matrix.node }} cache: "yarn" + # `jest@30.0.0-alpha.2` is the last version that supports Node.js v14 + - name: Install jest@30.0.0-alpha.2 + if: ${{ matrix.node == '14' }} + run: node ./scripts/prepare-nodejs-14-test.js + - name: Install Dependencies(yarn@3,mutable) + if: ${{ matrix.node == '14' || matrix.node == '16' }} env: YARN_ENABLE_IMMUTABLE_INSTALLS: false - if: ${{ matrix.node == '14' || matrix.node == '16' }} run: yarn install - name: Install Dependencies diff --git a/package.json b/package.json index 2b5f01a9afcc..586e92ec58b6 100644 --- a/package.json +++ b/package.json @@ -140,7 +140,7 @@ "eslint-plugin-unicorn": "51.0.1", "esm-utils": "4.2.1", "execa": "7.2.0", - "jest": "30.0.0-alpha.2", + "jest": "30.0.0-alpha.3", "jest-light-runner": "0.6.0", "jest-snapshot-serializer-ansi": "2.1.0", "jest-snapshot-serializer-raw": "2.0.0", diff --git a/scripts/prepare-nodejs-14-test.js b/scripts/prepare-nodejs-14-test.js new file mode 100644 index 000000000000..97b70a344164 --- /dev/null +++ b/scripts/prepare-nodejs-14-test.js @@ -0,0 +1,77 @@ +import fs from "node:fs"; + +const packageJsonFile = new URL("../package.json", import.meta.url); +const packageJson = JSON.parse(fs.readFileSync(packageJsonFile)); + +// Script to get dependencies +// console.log( +// Object.fromEntries( +// Array.from( +// fs +// .readFileSync("./yarn.lock", "utf8") +// .matchAll(/"(.*?)@npm:30\.0\.0-alpha\.3[",]/g), +// (match) => match[1], +// ) +// .sort() +// .map((dependency) => [dependency, "30.0.0-alpha.2"]), +// ), +// ); + +fs.writeFileSync( + packageJsonFile, + JSON.stringify( + { + ...packageJson, + resolutions: { + ...packageJson.resolutions, + "@jest/console": "30.0.0-alpha.2", + "@jest/core": "30.0.0-alpha.2", + "@jest/environment": "30.0.0-alpha.2", + "@jest/expect": "30.0.0-alpha.2", + "@jest/expect-utils": "30.0.0-alpha.2", + "@jest/fake-timers": "30.0.0-alpha.2", + "@jest/globals": "30.0.0-alpha.2", + "@jest/reporters": "30.0.0-alpha.2", + "@jest/schemas": "30.0.0-alpha.2", + "@jest/source-map": "30.0.0-alpha.2", + "@jest/test-result": "30.0.0-alpha.2", + "@jest/test-sequencer": "30.0.0-alpha.2", + "@jest/transform": "30.0.0-alpha.2", + // "@jest/types": "30.0.0-alpha.2", + "babel-jest": "30.0.0-alpha.2", + "babel-plugin-jest-hoist": "30.0.0-alpha.2", + "babel-preset-jest": "30.0.0-alpha.2", + "diff-sequences": "30.0.0-alpha.2", + expect: "30.0.0-alpha.2", + jest: "30.0.0-alpha.2", + "jest-changed-files": "30.0.0-alpha.2", + "jest-circus": "30.0.0-alpha.2", + "jest-cli": "30.0.0-alpha.2", + "jest-config": "30.0.0-alpha.2", + "jest-diff": "30.0.0-alpha.2", + // "jest-docblock": "30.0.0-alpha.2", + "jest-each": "30.0.0-alpha.2", + "jest-environment-node": "30.0.0-alpha.2", + "jest-get-type": "30.0.0-alpha.2", + "jest-haste-map": "30.0.0-alpha.2", + "jest-leak-detector": "30.0.0-alpha.2", + "jest-matcher-utils": "30.0.0-alpha.2", + "jest-message-util": "30.0.0-alpha.2", + "jest-mock": "30.0.0-alpha.2", + "jest-regex-util": "30.0.0-alpha.2", + "jest-resolve": "30.0.0-alpha.2", + "jest-resolve-dependencies": "30.0.0-alpha.2", + "jest-runner": "30.0.0-alpha.2", + "jest-runtime": "30.0.0-alpha.2", + "jest-snapshot": "30.0.0-alpha.2", + "jest-util": "30.0.0-alpha.2", + "jest-validate": "30.0.0-alpha.2", + "jest-watcher": "30.0.0-alpha.2", + "jest-worker": "30.0.0-alpha.2", + "pretty-format": "30.0.0-alpha.2", + }, + }, + undefined, + 2, + ), +); diff --git a/yarn.lock b/yarn.lock index f54a69fe8e6b..d33493733ac9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1268,17 +1268,17 @@ __metadata: languageName: node linkType: hard -"@jest/console@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/console@npm:30.0.0-alpha.2" +"@jest/console@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/console@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" chalk: "npm:^4.0.0" - jest-message-util: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" + jest-message-util: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" - checksum: 10/9a22e29339f86eaefce146a0c913b1499eb0e27d2c2970ec3b0b09039f37c939acd53e95be8b96915ba94e3d51a8bb3bffe724f75bcb572dd72128262e452d67 + checksum: 10/83ffeca2309ee139c719003ee6b5065dfc35d6fc5127b2fc46b7662773a57e0d0140aaea5629f98e10c739fed09ba25879b62526a7b7bc4832607c65af802e6d languageName: node linkType: hard @@ -1296,36 +1296,36 @@ __metadata: languageName: node linkType: hard -"@jest/core@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/core@npm:30.0.0-alpha.2" +"@jest/core@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/core@npm:30.0.0-alpha.3" dependencies: - "@jest/console": "npm:30.0.0-alpha.2" - "@jest/reporters": "npm:30.0.0-alpha.2" - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/transform": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/console": "npm:30.0.0-alpha.3" + "@jest/reporters": "npm:30.0.0-alpha.3" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/transform": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" ansi-escapes: "npm:^4.2.1" chalk: "npm:^4.0.0" ci-info: "npm:^4.0.0" exit: "npm:^0.1.2" graceful-fs: "npm:^4.2.9" - jest-changed-files: "npm:30.0.0-alpha.2" - jest-config: "npm:30.0.0-alpha.2" - jest-haste-map: "npm:30.0.0-alpha.2" - jest-message-util: "npm:30.0.0-alpha.2" - jest-regex-util: "npm:30.0.0-alpha.2" - jest-resolve: "npm:30.0.0-alpha.2" - jest-resolve-dependencies: "npm:30.0.0-alpha.2" - jest-runner: "npm:30.0.0-alpha.2" - jest-runtime: "npm:30.0.0-alpha.2" - jest-snapshot: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - jest-validate: "npm:30.0.0-alpha.2" - jest-watcher: "npm:30.0.0-alpha.2" + jest-changed-files: "npm:30.0.0-alpha.3" + jest-config: "npm:30.0.0-alpha.3" + jest-haste-map: "npm:30.0.0-alpha.3" + jest-message-util: "npm:30.0.0-alpha.3" + jest-regex-util: "npm:30.0.0-alpha.3" + jest-resolve: "npm:30.0.0-alpha.3" + jest-resolve-dependencies: "npm:30.0.0-alpha.3" + jest-runner: "npm:30.0.0-alpha.3" + jest-runtime: "npm:30.0.0-alpha.3" + jest-snapshot: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + jest-validate: "npm:30.0.0-alpha.3" + jest-watcher: "npm:30.0.0-alpha.3" micromatch: "npm:^4.0.4" - pretty-format: "npm:30.0.0-alpha.2" + pretty-format: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" strip-ansi: "npm:^6.0.0" peerDependencies: @@ -1333,28 +1333,28 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 10/4de076fb223c1425dff17b42049aeab751c286b787b18da4db337b827076ce866623fe1f1d9828aa1d88ce067a982231630b08048ee47cca16908286b42dd53e + checksum: 10/6eef36f7de2b7431fff6dfd98aea9126989a01a1f4c0855583f70cc3de6af098c770d9bd10e3e3c0692e44da10b69a55d4eb550d166758460a04b674576998fc languageName: node linkType: hard -"@jest/environment@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/environment@npm:30.0.0-alpha.2" +"@jest/environment@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/environment@npm:30.0.0-alpha.3" dependencies: - "@jest/fake-timers": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/fake-timers": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" - jest-mock: "npm:30.0.0-alpha.2" - checksum: 10/f7a1318daa97bb9476f3112b7e787c2a5b78700c59012ef7b3e036afe2d21b4f0b35d37af18f8c4936aee821864e81fcaa4b565c283733bcab99ea7b2c47f2ba + jest-mock: "npm:30.0.0-alpha.3" + checksum: 10/06cfbd7cfec7946289c293416b9cac00ac80dfe74001dde678e2b06b3add6af081ba536c25a1cde18a5ed73093b4b3d02d59e810bb23e83d198246d40de4bdc5 languageName: node linkType: hard -"@jest/expect-utils@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/expect-utils@npm:30.0.0-alpha.2" +"@jest/expect-utils@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/expect-utils@npm:30.0.0-alpha.3" dependencies: - jest-get-type: "npm:30.0.0-alpha.2" - checksum: 10/0849a10011d6b1cdadde60754d084d5f05a157be3a5011bf5bc035c26c8486b541d8550679a623f4666ed9e41278b60878f5e876a83943b309236719dd721cb9 + jest-get-type: "npm:30.0.0-alpha.3" + checksum: 10/0ec2c908af9cc4e9b69eb3691a1ffc57808767a5f048ea59cee1018a2db1a8ba7cb8474a2e56e99c0e5ef0ebeb428676eacc4a02a12d1434fa9ed418384f4649 languageName: node linkType: hard @@ -1367,66 +1367,66 @@ __metadata: languageName: node linkType: hard -"@jest/expect@npm:30.0.0-alpha.2, @jest/expect@npm:^30.0.0-alpha.1": - version: 30.0.0-alpha.2 - resolution: "@jest/expect@npm:30.0.0-alpha.2" +"@jest/expect@npm:30.0.0-alpha.3, @jest/expect@npm:^30.0.0-alpha.1": + version: 30.0.0-alpha.3 + resolution: "@jest/expect@npm:30.0.0-alpha.3" dependencies: - expect: "npm:30.0.0-alpha.2" - jest-snapshot: "npm:30.0.0-alpha.2" - checksum: 10/47d53321abc40554786de69250fff7a3342da2f6e85901309e0bb02ab0940aac7842438acffeec2563ef00e301955ebd7242a7b43b2418ad4237c117da013a6b + expect: "npm:30.0.0-alpha.3" + jest-snapshot: "npm:30.0.0-alpha.3" + checksum: 10/95420075da38e6803bb9f44e3191a3627221d175ba9f36929e535220aba1aaa2370b53d05bb8b9466a2dd4e39cdf3e7b74ec6364abe0a09d26ad72a1b47425c6 languageName: node linkType: hard -"@jest/fake-timers@npm:30.0.0-alpha.2, @jest/fake-timers@npm:^30.0.0-alpha.1": - version: 30.0.0-alpha.2 - resolution: "@jest/fake-timers@npm:30.0.0-alpha.2" +"@jest/fake-timers@npm:30.0.0-alpha.3, @jest/fake-timers@npm:^30.0.0-alpha.1": + version: 30.0.0-alpha.3 + resolution: "@jest/fake-timers@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@sinonjs/fake-timers": "npm:^11.1.0" "@types/node": "npm:*" - jest-message-util: "npm:30.0.0-alpha.2" - jest-mock: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - checksum: 10/7e113acf68688bb5ebe130de7c887dd7d48124b0d3308d634377b7ed4ead9784234f3ca5637aeb24f82538f1b97b66f00e155273e25282e13997c8d71fe47ed6 + jest-message-util: "npm:30.0.0-alpha.3" + jest-mock: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + checksum: 10/46cd25112e035112b08d1ee1af5942a90063f92a9cd52b5354207e752a217e79af589e4616431392ee0908324cae1c2c93b019cf4025c8c5de4a52634bdec41d languageName: node linkType: hard -"@jest/globals@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/globals@npm:30.0.0-alpha.2" +"@jest/globals@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/globals@npm:30.0.0-alpha.3" dependencies: - "@jest/environment": "npm:30.0.0-alpha.2" - "@jest/expect": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" - jest-mock: "npm:30.0.0-alpha.2" - checksum: 10/31cbff192b6dfe793818585d53dee77621f9635ee2fd0ea2c2b5227bbc82f8cea6bd69ba45fee71a8ee5aa9adc88393f1e2eb87351ad5e308e5fe21dfcc381a4 + "@jest/environment": "npm:30.0.0-alpha.3" + "@jest/expect": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" + jest-mock: "npm:30.0.0-alpha.3" + checksum: 10/d3c39c152956d350544c41946f98e5df34cc0c5bc4f8f69a28a309370be9beb7e53d0b68260e2ed0a571552aa9705f951479b7d60a6f88a98edeacca98417169 languageName: node linkType: hard -"@jest/reporters@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/reporters@npm:30.0.0-alpha.2" +"@jest/reporters@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/reporters@npm:30.0.0-alpha.3" dependencies: "@bcoe/v8-coverage": "npm:^0.2.3" - "@jest/console": "npm:30.0.0-alpha.2" - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/transform": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/console": "npm:30.0.0-alpha.3" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/transform": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@jridgewell/trace-mapping": "npm:^0.3.18" "@types/node": "npm:*" chalk: "npm:^4.0.0" collect-v8-coverage: "npm:^1.0.0" exit: "npm:^0.1.2" - glob: "npm:^7.1.3" + glob: "npm:^10.3.10" graceful-fs: "npm:^4.2.9" istanbul-lib-coverage: "npm:^3.0.0" istanbul-lib-instrument: "npm:^6.0.0" istanbul-lib-report: "npm:^3.0.0" istanbul-lib-source-maps: "npm:^4.0.0" istanbul-reports: "npm:^3.1.3" - jest-message-util: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - jest-worker: "npm:30.0.0-alpha.2" + jest-message-util: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + jest-worker: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" string-length: "npm:^4.0.1" strip-ansi: "npm:^6.0.0" @@ -1436,16 +1436,16 @@ __metadata: peerDependenciesMeta: node-notifier: optional: true - checksum: 10/f98c667de117585f483256a5bab816306c5a5f51ef108cc0855800e28352da7cf7165f273ced98edff7ffd3137585515986f7d7d327dbc51a01b3bc3132f95d0 + checksum: 10/d9dcfd8f2a2bc24339553b97922d7e57ca8616a4f7dd2c3bd8189aaf2d68be6d10317b9ef0bf1567400f598db7ee5900204d609c8d195b21e683b50285bfd36b languageName: node linkType: hard -"@jest/schemas@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/schemas@npm:30.0.0-alpha.2" +"@jest/schemas@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/schemas@npm:30.0.0-alpha.3" dependencies: - "@sinclair/typebox": "npm:^0.31.0" - checksum: 10/cb99a995c55554db30f2f397eb9fae3fb61ad5250411f9de21a5ee87ee06a9704544bcc8415a70f2c0c2398ab8195c2a7f0f0d8c029d847e91b67dea7d34b32e + "@sinclair/typebox": "npm:^0.32.1" + checksum: 10/c7646443197076e85dcd40deecd1073ce7aac73f701fd57e62138400e81ca8e3759ebcc0a225a87f9d10f0e68ffdb2e9974bcd714d6ce1727ee21ab8d1866a10 languageName: node linkType: hard @@ -1458,26 +1458,26 @@ __metadata: languageName: node linkType: hard -"@jest/source-map@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/source-map@npm:30.0.0-alpha.2" +"@jest/source-map@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/source-map@npm:30.0.0-alpha.3" dependencies: "@jridgewell/trace-mapping": "npm:^0.3.18" callsites: "npm:^3.0.0" graceful-fs: "npm:^4.2.9" - checksum: 10/f2fbd7ce0cdfb29817cb97eddedbf71f56acd51cc8c3fc3cf03ccfc1264ab3a63bce264a61654228390851e2bfe6bfb9879fead05ee9ecac7a6ad9bbce9fd90c + checksum: 10/8b4c8a0283b927339c4c50d1fa46802540af1f297c3f5e0b764f8789654288a12fd545ee484470556f1065432f89eb85245a734aa7dcaa7ec7752d8652c9a069 languageName: node linkType: hard -"@jest/test-result@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/test-result@npm:30.0.0-alpha.2" +"@jest/test-result@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/test-result@npm:30.0.0-alpha.3" dependencies: - "@jest/console": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/console": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/istanbul-lib-coverage": "npm:^2.0.0" collect-v8-coverage: "npm:^1.0.0" - checksum: 10/d5f73c7e54bc731958d660dba97d2842b77935532eba5886da34faf43d4d821fdd0b756905bd6c3a3346d16a5914b40e309136baae4e16d58c1c067eba9be50a + checksum: 10/62f12d38870585ee146e115d718af0be5b65e575797db692bfb113008631f81c46d388bb2a9ae15427da00ad6831106108bcd44fd2d0f6c03c24f8064367b040 languageName: node linkType: hard @@ -1493,38 +1493,38 @@ __metadata: languageName: node linkType: hard -"@jest/test-sequencer@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/test-sequencer@npm:30.0.0-alpha.2" +"@jest/test-sequencer@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/test-sequencer@npm:30.0.0-alpha.3" dependencies: - "@jest/test-result": "npm:30.0.0-alpha.2" + "@jest/test-result": "npm:30.0.0-alpha.3" graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:30.0.0-alpha.2" + jest-haste-map: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" - checksum: 10/95557e9402f8146b374d7539e45e5b58fc313107932e3442daa641c5bd60e324030219f514003a9fbe48ea980c903268e91296fdbb9b8670bc0f6e3ec662a1ef + checksum: 10/4d398ad9bd5dd3d444f27491d64077de2e3d9783433e87a4ecc016047e6267479f10dcf2579eb3f03de6ea7167f31d0919e5b70f03bf3d413ef9341854313f12 languageName: node linkType: hard -"@jest/transform@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/transform@npm:30.0.0-alpha.2" +"@jest/transform@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/transform@npm:30.0.0-alpha.3" dependencies: "@babel/core": "npm:^7.11.6" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@jridgewell/trace-mapping": "npm:^0.3.18" babel-plugin-istanbul: "npm:^6.1.1" chalk: "npm:^4.0.0" convert-source-map: "npm:^2.0.0" fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:30.0.0-alpha.2" - jest-regex-util: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" + jest-haste-map: "npm:30.0.0-alpha.3" + jest-regex-util: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" micromatch: "npm:^4.0.4" pirates: "npm:^4.0.4" slash: "npm:^3.0.0" write-file-atomic: "npm:^5.0.0" - checksum: 10/9144d4ecc381d2ee67bb256f2bf5c8fce1d8ea025e734a97be2668aa1fa9db4036ff536f641e80447e4a7c247c5c3e014c1037945e2fd9dbc9399c1676033d81 + checksum: 10/9531fab519b1a66c97319e1fa584338af1d59be7c9d673ebe6135997063a919ab2e6792cef19f004c5689ec0a0c60d4c8b012f17dca38d2ea00ed382d7eb5082 languageName: node linkType: hard @@ -1551,17 +1551,17 @@ __metadata: languageName: node linkType: hard -"@jest/types@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "@jest/types@npm:30.0.0-alpha.2" +"@jest/types@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "@jest/types@npm:30.0.0-alpha.3" dependencies: - "@jest/schemas": "npm:30.0.0-alpha.2" + "@jest/schemas": "npm:30.0.0-alpha.3" "@types/istanbul-lib-coverage": "npm:^2.0.0" "@types/istanbul-reports": "npm:^3.0.0" "@types/node": "npm:*" "@types/yargs": "npm:^17.0.8" chalk: "npm:^4.0.0" - checksum: 10/02dd71a6f51e3c9fd4e35bae9fd6df0d53f311f8a5331f73ff521c2ae0b70867e7051b26b7e6e2b83eb4b25c5631034096f1feebaa180ef40c3ebfffe719e6ed + checksum: 10/ce37c69a236f4cef9a846abab034c616c2c0cb4edd35d02cf843ed39fc21face355e1251a21397afbbe722493811c918cd3f595e6c86079c50f21119224a7b38 languageName: node linkType: hard @@ -1691,17 +1691,10 @@ __metadata: languageName: node linkType: hard -"@pkgr/utils@npm:^2.3.1": - version: 2.4.2 - resolution: "@pkgr/utils@npm:2.4.2" - dependencies: - cross-spawn: "npm:^7.0.3" - fast-glob: "npm:^3.3.0" - is-glob: "npm:^4.0.3" - open: "npm:^9.1.0" - picocolors: "npm:^1.0.0" - tslib: "npm:^2.6.0" - checksum: 10/f0b0b305a83bd65fac5637d28ad3e33f19194043e03ceef6b4e13d260bfa2678b73df76dc56ed906469ffe0494d4bd214e6b92ca80684f38547982edf982dd15 +"@pkgr/core@npm:^0.1.0": + version: 0.1.1 + resolution: "@pkgr/core@npm:0.1.1" + checksum: 10/6f25fd2e3008f259c77207ac9915b02f1628420403b2630c92a07ff963129238c9262afc9e84344c7a23b5cc1f3965e2cd17e3798219f5fd78a63d144d3cceba languageName: node linkType: hard @@ -1733,10 +1726,10 @@ __metadata: languageName: node linkType: hard -"@sinclair/typebox@npm:^0.31.0": - version: 0.31.28 - resolution: "@sinclair/typebox@npm:0.31.28" - checksum: 10/27c3af5539a12af9b3cda4432959c69fb500920f1dd3739700a1437cfa9de809a292398a0b3b871c7471e96e4088d58406105bed5407d089c91c56090c526013 +"@sinclair/typebox@npm:^0.32.1": + version: 0.32.14 + resolution: "@sinclair/typebox@npm:0.32.14" + checksum: 10/3faaf7090c101a3b3eb594531f387b3348e21af127795bc1de12ecfe4acb5682ae84211f286d1ac9034d66aff967b696b2038d33aff9f5cd10c17dcaf4c5d06c languageName: node linkType: hard @@ -2454,20 +2447,20 @@ __metadata: languageName: node linkType: hard -"babel-jest@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "babel-jest@npm:30.0.0-alpha.2" +"babel-jest@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "babel-jest@npm:30.0.0-alpha.3" dependencies: - "@jest/transform": "npm:30.0.0-alpha.2" + "@jest/transform": "npm:30.0.0-alpha.3" "@types/babel__core": "npm:^7.1.14" babel-plugin-istanbul: "npm:^6.1.1" - babel-preset-jest: "npm:30.0.0-alpha.2" + babel-preset-jest: "npm:30.0.0-alpha.3" chalk: "npm:^4.0.0" graceful-fs: "npm:^4.2.9" slash: "npm:^3.0.0" peerDependencies: "@babel/core": ^7.11.0 - checksum: 10/1b1d718bfe9124d408f43014ade3a2314b15e839558e2d62700580f22fccbca06c11e92121e003f4649e96df0dd39038d8b3ce5162c5ab57b2388132cc9fa5e0 + checksum: 10/81610701cc7fd13c418bb7d939dfdc43741daee39ce744247cd9707da4da3d3ffa876966145b2afb8a58d88bcaed34bdc9797e88b50cb4624c89d30580bb0751 languageName: node linkType: hard @@ -2484,15 +2477,15 @@ __metadata: languageName: node linkType: hard -"babel-plugin-jest-hoist@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "babel-plugin-jest-hoist@npm:30.0.0-alpha.2" +"babel-plugin-jest-hoist@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "babel-plugin-jest-hoist@npm:30.0.0-alpha.3" dependencies: "@babel/template": "npm:^7.3.3" "@babel/types": "npm:^7.3.3" "@types/babel__core": "npm:^7.1.14" "@types/babel__traverse": "npm:^7.0.6" - checksum: 10/0313df6597d7be4239f1bf83406f1c640bcffbb75d91e0adca5ecb9d926e503fd60d832208a483f3354ef6f60a1ab677cb52a2b0758c809a5277715036b03d30 + checksum: 10/6465b607bfeb9a34993c340f8e022f448fa504de1868d104fdfb41868238180aa1b99afa8236943f3b96224992e0d17222367dbc43a06f822d4f403c33f01f71 languageName: node linkType: hard @@ -2518,15 +2511,15 @@ __metadata: languageName: node linkType: hard -"babel-preset-jest@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "babel-preset-jest@npm:30.0.0-alpha.2" +"babel-preset-jest@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "babel-preset-jest@npm:30.0.0-alpha.3" dependencies: - babel-plugin-jest-hoist: "npm:30.0.0-alpha.2" + babel-plugin-jest-hoist: "npm:30.0.0-alpha.3" babel-preset-current-node-syntax: "npm:^1.0.0" peerDependencies: "@babel/core": ^7.11.0 - checksum: 10/2ea53710b330ec0117a29e0ba519df46b6f37fed1418fe7d64f2c5e10c87bce0a0127a6b06d60a62c2a35bb0a4ca55637276700744b898c7565277fa8a8b833d + checksum: 10/8c2738a63d1c3efa90bdc7aec06fcedba184f7c51ecca9eef2388eac071f00bc233009d5cdc09a5a20c1ecf818cdf5bf296317ac5de8d49dae68dcfcdfcbe546 languageName: node linkType: hard @@ -2554,22 +2547,6 @@ __metadata: languageName: node linkType: hard -"big-integer@npm:^1.6.44": - version: 1.6.52 - resolution: "big-integer@npm:1.6.52" - checksum: 10/4bc6ae152a96edc9f95020f5fc66b13d26a9ad9a021225a9f0213f7e3dc44269f423aa8c42e19d6ac4a63bb2b22140b95d10be8f9ca7a6d9aa1b22b330d1f514 - languageName: node - linkType: hard - -"bplist-parser@npm:^0.2.0": - version: 0.2.0 - resolution: "bplist-parser@npm:0.2.0" - dependencies: - big-integer: "npm:^1.6.44" - checksum: 10/15d31c1b0c7e0fb384e96349453879a33609d92d91b55a9ccee04b4be4b0645f1c823253d73326a1a23104521fbc45c2dd97fb05adf61863841b68cbb2ca7a3d - languageName: node - linkType: hard - "brace-expansion@npm:^1.1.7": version: 1.1.11 resolution: "brace-expansion@npm:1.1.11" @@ -2657,15 +2634,6 @@ __metadata: languageName: node linkType: hard -"bundle-name@npm:^3.0.0": - version: 3.0.0 - resolution: "bundle-name@npm:3.0.0" - dependencies: - run-applescript: "npm:^5.0.0" - checksum: 10/edf2b1fbe6096ed32e7566947ace2ea937ee427391744d7510a2880c4b9a5b3543d3f6c551236a29e5c87d3195f8e2912516290e638c15bcbede7b37cc375615 - languageName: node - linkType: hard - "c8@npm:9.1.0": version: 9.1.0 resolution: "c8@npm:9.1.0" @@ -3279,28 +3247,6 @@ __metadata: languageName: node linkType: hard -"default-browser-id@npm:^3.0.0": - version: 3.0.0 - resolution: "default-browser-id@npm:3.0.0" - dependencies: - bplist-parser: "npm:^0.2.0" - untildify: "npm:^4.0.0" - checksum: 10/279c7ad492542e5556336b6c254a4eaf31b2c63a5433265655ae6e47301197b6cfb15c595a6fdc6463b2ff8e1a1a1ed3cba56038a60e1527ba4ab1628c6b9941 - languageName: node - linkType: hard - -"default-browser@npm:^4.0.0": - version: 4.0.0 - resolution: "default-browser@npm:4.0.0" - dependencies: - bundle-name: "npm:^3.0.0" - default-browser-id: "npm:^3.0.0" - execa: "npm:^7.1.1" - titleize: "npm:^3.0.0" - checksum: 10/40c5af984799042b140300be5639c9742599bda76dc9eba5ac9ad5943c83dd36cebc4471eafcfddf8e0ec817166d5ba89d56f08e66a126c7c7908a179cead1a7 - languageName: node - linkType: hard - "define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.1": version: 1.1.1 resolution: "define-data-property@npm:1.1.1" @@ -3319,13 +3265,6 @@ __metadata: languageName: node linkType: hard -"define-lazy-prop@npm:^3.0.0": - version: 3.0.0 - resolution: "define-lazy-prop@npm:3.0.0" - checksum: 10/f28421cf9ee86eecaf5f3b8fe875f13d7009c2625e97645bfff7a2a49aca678270b86c39f9c32939e5ca7ab96b551377ed4139558c795e076774287ad3af1aa4 - languageName: node - linkType: hard - "define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" @@ -3344,10 +3283,10 @@ __metadata: languageName: node linkType: hard -"diff-sequences@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "diff-sequences@npm:30.0.0-alpha.2" - checksum: 10/9408f618d494c6e8f9179595dfd2d56dee68bb052cac022314c34f4945abaea777b9420605a09a5a3d77f258b0b75d63cc9daaf89e6e64cc1339bbd085c0c0e3 +"diff-sequences@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "diff-sequences@npm:30.0.0-alpha.3" + checksum: 10/195c372a54cf3ac1f27704bba543dc0150330bc678ad361ddb91d5c431413a2b3647e092fe10ef634dc73901076122bb3e4ee867ff60a52ef0c9b3ef95ff0fdf languageName: node linkType: hard @@ -4133,7 +4072,7 @@ __metadata: languageName: node linkType: hard -"execa@npm:7.2.0, execa@npm:^7.1.1": +"execa@npm:7.2.0": version: 7.2.0 resolution: "execa@npm:7.2.0" dependencies: @@ -4174,16 +4113,16 @@ __metadata: languageName: node linkType: hard -"expect@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "expect@npm:30.0.0-alpha.2" +"expect@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "expect@npm:30.0.0-alpha.3" dependencies: - "@jest/expect-utils": "npm:30.0.0-alpha.2" - jest-get-type: "npm:30.0.0-alpha.2" - jest-matcher-utils: "npm:30.0.0-alpha.2" - jest-message-util: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - checksum: 10/3337af62dd57b438b83bda10daf4683e9c006c2ec510a48f297f9ddedc632cc496f90443db16b00f7274b619532fa414984ed33667a2bc2acbdf6ebc03c689b5 + "@jest/expect-utils": "npm:30.0.0-alpha.3" + jest-get-type: "npm:30.0.0-alpha.3" + jest-matcher-utils: "npm:30.0.0-alpha.3" + jest-message-util: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + checksum: 10/a0f31685b99404dde97700bc4d0c5fbc779d310269b888a866ae884f8195e3c2e0eb017773a6e63a71199b1ab4a68516cc1c3e7e051a20732e7fde01e087e109 languageName: node linkType: hard @@ -4228,7 +4167,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:3.3.2, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.2": +"fast-glob@npm:3.3.2, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: @@ -5098,15 +5037,6 @@ __metadata: languageName: node linkType: hard -"is-docker@npm:^3.0.0": - version: 3.0.0 - resolution: "is-docker@npm:3.0.0" - bin: - is-docker: cli.js - checksum: 10/b698118f04feb7eaf3338922bd79cba064ea54a1c3db6ec8c0c8d8ee7613e7e5854d802d3ef646812a8a3ace81182a085dfa0a71cc68b06f3fa794b9783b3c90 - languageName: node - linkType: hard - "is-extglob@npm:^2.1.1": version: 2.1.1 resolution: "is-extglob@npm:2.1.1" @@ -5162,17 +5092,6 @@ __metadata: languageName: node linkType: hard -"is-inside-container@npm:^1.0.0": - version: 1.0.0 - resolution: "is-inside-container@npm:1.0.0" - dependencies: - is-docker: "npm:^3.0.0" - bin: - is-inside-container: cli.js - checksum: 10/c50b75a2ab66ab3e8b92b3bc534e1ea72ca25766832c0623ac22d134116a98bcf012197d1caabe1d1c4bd5f84363d4aa5c36bb4b585fbcaf57be172cd10a1a03 - languageName: node - linkType: hard - "is-lambda@npm:^1.0.1": version: 1.0.1 resolution: "is-lambda@npm:1.0.1" @@ -5475,58 +5394,58 @@ __metadata: languageName: node linkType: hard -"jest-changed-files@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-changed-files@npm:30.0.0-alpha.2" +"jest-changed-files@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-changed-files@npm:30.0.0-alpha.3" dependencies: execa: "npm:^5.0.0" - jest-util: "npm:30.0.0-alpha.2" + jest-util: "npm:30.0.0-alpha.3" p-limit: "npm:^3.1.0" - checksum: 10/cc381c763055d449c6e4c29b99f21cf0e417d5bd09ab83e7a2f72369d73dcd4e0f451b75d3e0fd47bbeea1579add3cbd4360c4be6cc6ecda5f315595d387aa7c + checksum: 10/05b49941d7c2f3ed267fc96bcdad61a4da0a7a17f29a3856cc914be954174c59019fac66981692e789ebdaf032485a603028f747c86babdd3d4a97dab075c40e languageName: node linkType: hard -"jest-circus@npm:30.0.0-alpha.2, jest-circus@npm:^30.0.0-alpha.1": - version: 30.0.0-alpha.2 - resolution: "jest-circus@npm:30.0.0-alpha.2" +"jest-circus@npm:30.0.0-alpha.3, jest-circus@npm:^30.0.0-alpha.1": + version: 30.0.0-alpha.3 + resolution: "jest-circus@npm:30.0.0-alpha.3" dependencies: - "@jest/environment": "npm:30.0.0-alpha.2" - "@jest/expect": "npm:30.0.0-alpha.2" - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/environment": "npm:30.0.0-alpha.3" + "@jest/expect": "npm:30.0.0-alpha.3" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" chalk: "npm:^4.0.0" co: "npm:^4.6.0" dedent: "npm:^1.0.0" is-generator-fn: "npm:^2.0.0" - jest-each: "npm:30.0.0-alpha.2" - jest-matcher-utils: "npm:30.0.0-alpha.2" - jest-message-util: "npm:30.0.0-alpha.2" - jest-runtime: "npm:30.0.0-alpha.2" - jest-snapshot: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" + jest-each: "npm:30.0.0-alpha.3" + jest-matcher-utils: "npm:30.0.0-alpha.3" + jest-message-util: "npm:30.0.0-alpha.3" + jest-runtime: "npm:30.0.0-alpha.3" + jest-snapshot: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" p-limit: "npm:^3.1.0" - pretty-format: "npm:30.0.0-alpha.2" + pretty-format: "npm:30.0.0-alpha.3" pure-rand: "npm:^6.0.0" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.3" - checksum: 10/b453a9004aa5c0d4fbbc6551646cf691075fda0c19920acb864b046136b123ea175565adae004f21b4265c79f62b37738a71a5652bfeb6146a0e783f00b68d6f + checksum: 10/1fa77e481d453aa56e128f72cc77486df10ab26c27aeb8de137009b1d1fe011cf7f21f8e88f2a2695c12f35dfd8f1081fa4e508e7c0893a2ebba3baf845d4359 languageName: node linkType: hard -"jest-cli@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-cli@npm:30.0.0-alpha.2" +"jest-cli@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-cli@npm:30.0.0-alpha.3" dependencies: - "@jest/core": "npm:30.0.0-alpha.2" - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/core": "npm:30.0.0-alpha.3" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" chalk: "npm:^4.0.0" exit: "npm:^0.1.2" import-local: "npm:^3.0.2" - jest-config: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - jest-validate: "npm:30.0.0-alpha.2" + jest-config: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + jest-validate: "npm:30.0.0-alpha.3" yargs: "npm:^17.3.1" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -5535,34 +5454,34 @@ __metadata: optional: true bin: jest: bin/jest.js - checksum: 10/03727c301e3488150eb21e39d1b33fb852689eea605c949c56fa9d6ac551c3c9e288c4715d69e5697ddd5c765724c40fe4fcbfcbab7033fe4075f15ee0e32009 + checksum: 10/77b27168417ecc1a7f839a7d8ebe8213f49746fe5aa7af11d5e2b4fdc903ab4006f4b19eb9adfc0d6fe66ea4ad941138e2d35fa5a67af8c97f81bae33f8db9bc languageName: node linkType: hard -"jest-config@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-config@npm:30.0.0-alpha.2" +"jest-config@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-config@npm:30.0.0-alpha.3" dependencies: "@babel/core": "npm:^7.11.6" - "@jest/test-sequencer": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" - babel-jest: "npm:30.0.0-alpha.2" + "@jest/test-sequencer": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" + babel-jest: "npm:30.0.0-alpha.3" chalk: "npm:^4.0.0" ci-info: "npm:^4.0.0" deepmerge: "npm:^4.2.2" - glob: "npm:^7.1.3" + glob: "npm:^10.3.10" graceful-fs: "npm:^4.2.9" - jest-circus: "npm:30.0.0-alpha.2" - jest-environment-node: "npm:30.0.0-alpha.2" - jest-get-type: "npm:30.0.0-alpha.2" - jest-regex-util: "npm:30.0.0-alpha.2" - jest-resolve: "npm:30.0.0-alpha.2" - jest-runner: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - jest-validate: "npm:30.0.0-alpha.2" + jest-circus: "npm:30.0.0-alpha.3" + jest-environment-node: "npm:30.0.0-alpha.3" + jest-get-type: "npm:30.0.0-alpha.3" + jest-regex-util: "npm:30.0.0-alpha.3" + jest-resolve: "npm:30.0.0-alpha.3" + jest-runner: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + jest-validate: "npm:30.0.0-alpha.3" micromatch: "npm:^4.0.4" parse-json: "npm:^5.2.0" - pretty-format: "npm:30.0.0-alpha.2" + pretty-format: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" strip-json-comments: "npm:^3.1.1" peerDependencies: @@ -5573,19 +5492,19 @@ __metadata: optional: true ts-node: optional: true - checksum: 10/aaafd194792c95571911306c96bcd7953d08b5dd49e19e1816eed35009fd8c952af435da879ec7dc609036014fe0bd5943d2ff2076a9f461328d1041c10a4b43 + checksum: 10/5d13ca15d2b3c68de46aa7b0ee6753c8dae4675b724b53f26f492765fe2d8686de7c8f50f924548e534fd4261ec661954c24091e17ca82ca8a85598b9d27afb2 languageName: node linkType: hard -"jest-diff@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-diff@npm:30.0.0-alpha.2" +"jest-diff@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-diff@npm:30.0.0-alpha.3" dependencies: chalk: "npm:^4.0.0" - diff-sequences: "npm:30.0.0-alpha.2" - jest-get-type: "npm:30.0.0-alpha.2" - pretty-format: "npm:30.0.0-alpha.2" - checksum: 10/3adef5722c99e4368653d6df87e5754ed04c254684e68d28c2c26a10eef509bf70d7a7fa874471583e88c5227eddbc852e81dca94a0925bb044ed1c3dcb49fa3 + diff-sequences: "npm:30.0.0-alpha.3" + jest-get-type: "npm:30.0.0-alpha.3" + pretty-format: "npm:30.0.0-alpha.3" + checksum: 10/749052859ad707f6f47e27064a20adba5c1586d5ffaa42006f37894cfda154035233b2ab40002f81072c85501d809f4afaa5ddd4243fabb6d3ec782cddd6cff1 languageName: node linkType: hard @@ -5610,46 +5529,46 @@ __metadata: languageName: node linkType: hard -"jest-docblock@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-docblock@npm:30.0.0-alpha.2" +"jest-docblock@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-docblock@npm:30.0.0-alpha.3" dependencies: detect-newline: "npm:^3.0.0" - checksum: 10/c97d06fde7b894af14d9f3542fe61f3a9d3e9bf4c62e5abb5a16ac5e86fb6a56b69f3b0f466f8370352c9c28ad2e0b7e7a257774b87d506fda3529b3127028f0 + checksum: 10/a2cff4ef2a0fb3ba46f5a1650103f35351890b2b3e0471e65dbcdc4ec58ac4758300ed796e0c298185fcd5754db9615f30911b9974f562f1bea6158e4fb2d03d languageName: node linkType: hard -"jest-each@npm:30.0.0-alpha.2, jest-each@npm:^30.0.0-alpha.1": - version: 30.0.0-alpha.2 - resolution: "jest-each@npm:30.0.0-alpha.2" +"jest-each@npm:30.0.0-alpha.3, jest-each@npm:^30.0.0-alpha.1": + version: 30.0.0-alpha.3 + resolution: "jest-each@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" chalk: "npm:^4.0.0" - jest-get-type: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - pretty-format: "npm:30.0.0-alpha.2" - checksum: 10/f9448939a20f4a13fcf41475d683099888a0d70969009913e470ee3097751902d8ff8c87de20cc3a231655b51f93a0629dc5f8959d81f6aa9140b11386ef9f44 + jest-get-type: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + pretty-format: "npm:30.0.0-alpha.3" + checksum: 10/a3e3f89e0b0efd1a2d0df7aae7dc8836c4388700a4d74130fb30e376a3b898be38f7f6c0899caaf9db0cef4786e53f5f17d18edbac66562ecd0b67c2b6bd7ac5 languageName: node linkType: hard -"jest-environment-node@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-environment-node@npm:30.0.0-alpha.2" +"jest-environment-node@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-environment-node@npm:30.0.0-alpha.3" dependencies: - "@jest/environment": "npm:30.0.0-alpha.2" - "@jest/fake-timers": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/environment": "npm:30.0.0-alpha.3" + "@jest/fake-timers": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" - jest-mock: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - checksum: 10/0dcc1ec7bbbf84544eca2a66a8724d87af21238169607b4114b7aab591f7b0375276d358416dfc891a964df144abd5e5cf37e44710e35553734040f9dc86a66d + jest-mock: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + checksum: 10/946e7da2735703124d3257d2ec0b0ba15c19eece00e2fd77f4538a0f4f532a00eb3ead88871a3e2138c52d3b2127375f60d87de719da808d20bad91d9a3984d8 languageName: node linkType: hard -"jest-get-type@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-get-type@npm:30.0.0-alpha.2" - checksum: 10/327a7cf615206854f8f3bde0295a93965a4eb7a1760078eee21096f9fe5a3111024c10244c6058c4ed3d538f441b4b8abaf21b1a9b706abef3929b9dcbe98b58 +"jest-get-type@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-get-type@npm:30.0.0-alpha.3" + checksum: 10/f94466cfc3e4ad7838a7472aac08bf270b90222fda476c1beb7bb8e468e4b469e3013e24fa3bb351a8c7fa74d7090bec6f4693f91998b7115b542b120831e155 languageName: node linkType: hard @@ -5660,25 +5579,25 @@ __metadata: languageName: node linkType: hard -"jest-haste-map@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-haste-map@npm:30.0.0-alpha.2" +"jest-haste-map@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-haste-map@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" anymatch: "npm:^3.0.3" fb-watchman: "npm:^2.0.0" fsevents: "npm:^2.3.2" graceful-fs: "npm:^4.2.9" - jest-regex-util: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - jest-worker: "npm:30.0.0-alpha.2" + jest-regex-util: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + jest-worker: "npm:30.0.0-alpha.3" micromatch: "npm:^4.0.4" walker: "npm:^1.0.8" dependenciesMeta: fsevents: optional: true - checksum: 10/fee48919794d37a106ccfd415ae7c2280cce8a74ebb11857c3ea7a53ae6c8fbc52c0810174d65ee6ad558146f356f8b5b0915b4ee42cb18683ae435cf8f0361b + checksum: 10/5758bc95254893096c80f0ca0954eddedde196e4cf8f5a17162f38ceb1f4650585ac06e218afb5c101c03a22191272e3476ea6020a0ed094060c3d01ca92e479 languageName: node linkType: hard @@ -5705,13 +5624,13 @@ __metadata: languageName: node linkType: hard -"jest-leak-detector@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-leak-detector@npm:30.0.0-alpha.2" +"jest-leak-detector@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-leak-detector@npm:30.0.0-alpha.3" dependencies: - jest-get-type: "npm:30.0.0-alpha.2" - pretty-format: "npm:30.0.0-alpha.2" - checksum: 10/e8589191da06b0379ce749bbf00c05b9ed50f0c9fa99734d8a6ebfb40772a9eba5035ac06a4e7a95d926d6ae75cdbbc7f42c88dba6f8daf1d2a389e0e800ea70 + jest-get-type: "npm:30.0.0-alpha.3" + pretty-format: "npm:30.0.0-alpha.3" + checksum: 10/369d5ef5ac27297bd5c4c3e61bfc6a764e9f813daa7113f69eb73126323be9730f4510c14ea50616b3f8cd38e3fae08f3888da781359cf7f78bd775c871e855c languageName: node linkType: hard @@ -5733,15 +5652,15 @@ __metadata: languageName: node linkType: hard -"jest-matcher-utils@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-matcher-utils@npm:30.0.0-alpha.2" +"jest-matcher-utils@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-matcher-utils@npm:30.0.0-alpha.3" dependencies: chalk: "npm:^4.0.0" - jest-diff: "npm:30.0.0-alpha.2" - jest-get-type: "npm:30.0.0-alpha.2" - pretty-format: "npm:30.0.0-alpha.2" - checksum: 10/33090994c0e17ce2bc204b528d81ac2d318722e17f13d853deffbf4cbece9b0078f96f4507d4a5235122894faca2f4ebd3a1c245e07773d28e09a245247c104b + jest-diff: "npm:30.0.0-alpha.3" + jest-get-type: "npm:30.0.0-alpha.3" + pretty-format: "npm:30.0.0-alpha.3" + checksum: 10/c091a50ae220ff2ac1b96e5d0831b8edf9671ea6c5a60fd13e999d2caf407e0c76fd2ffa85adf1795195591181502aaa397a8608cb603120445878d894dff920 languageName: node linkType: hard @@ -5757,20 +5676,20 @@ __metadata: languageName: node linkType: hard -"jest-message-util@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-message-util@npm:30.0.0-alpha.2" +"jest-message-util@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-message-util@npm:30.0.0-alpha.3" dependencies: "@babel/code-frame": "npm:^7.12.13" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@types/stack-utils": "npm:^2.0.0" chalk: "npm:^4.0.0" graceful-fs: "npm:^4.2.9" micromatch: "npm:^4.0.4" - pretty-format: "npm:30.0.0-alpha.2" + pretty-format: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" stack-utils: "npm:^2.0.3" - checksum: 10/c90372b2d566270d36c1f98b2b9b90d02f6fb7732590a0530cafb55d2614fb843956d27ecacae89def1260fd77263077555b8013fd59b8170e65a425d4db47fa + checksum: 10/d9daf2bc52279ad8627019635c8b4c5cd7511691919bbead6aadb18ae8fc90514ff83c2bbe5ffb752e7e055be144c612f80bff4d104e646f42f876024c1820d1 languageName: node linkType: hard @@ -5791,14 +5710,14 @@ __metadata: languageName: node linkType: hard -"jest-mock@npm:30.0.0-alpha.2, jest-mock@npm:^30.0.0-alpha.1": - version: 30.0.0-alpha.2 - resolution: "jest-mock@npm:30.0.0-alpha.2" +"jest-mock@npm:30.0.0-alpha.3, jest-mock@npm:^30.0.0-alpha.1": + version: 30.0.0-alpha.3 + resolution: "jest-mock@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" - jest-util: "npm:30.0.0-alpha.2" - checksum: 10/d028912d880066c9770e6c91072b4be16a2c733b50ec1be6ad3bf74bfaff15279791402b101791d735d993ceadb47639fd8f6e26b1ae229acfd5dee827e24280 + jest-util: "npm:30.0.0-alpha.3" + checksum: 10/24fb6f994dfdf7c1967684f4a5ae466314c8a7ab43003a0f61d9880c87bcbb3849532fe219f60b9bc05163d79cc013b6b8bd48e28aedccedc509de927f5613b3 languageName: node linkType: hard @@ -5814,10 +5733,10 @@ __metadata: languageName: node linkType: hard -"jest-regex-util@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-regex-util@npm:30.0.0-alpha.2" - checksum: 10/edfd975eeb63d6fc4907ccffa4df3afdc2d3dcf97f0ec738661bad76dc3319c192574bc56c17567916f8e6becd983c95e0d41f54d59db3bd746af0c0083fb8b4 +"jest-regex-util@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-regex-util@npm:30.0.0-alpha.3" + checksum: 10/1cd1a488303c106b830fdd5642e0c7b882ee6cfe3530bbcdd125c0e3b7da2290b5c7d1ef58a25e56932de0fb232a2f9df039ea9e146b7e126cf313be0fd67923 languageName: node linkType: hard @@ -5828,89 +5747,89 @@ __metadata: languageName: node linkType: hard -"jest-resolve-dependencies@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-resolve-dependencies@npm:30.0.0-alpha.2" +"jest-resolve-dependencies@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-resolve-dependencies@npm:30.0.0-alpha.3" dependencies: - jest-regex-util: "npm:30.0.0-alpha.2" - jest-snapshot: "npm:30.0.0-alpha.2" - checksum: 10/496ffe48408e4a351516eb2550f63587abcf9eed06ac966cbb7be8c8840321df9066ba855cb893c1b429d7b60ee862c9265ca36e0de79d9f706817845619f3c5 + jest-regex-util: "npm:30.0.0-alpha.3" + jest-snapshot: "npm:30.0.0-alpha.3" + checksum: 10/cfc5ee65564d113f93bb5724bafea013f23162dc26cff5ab480378f4666c749c4e442718c0b03b0d6f2c8471989db4a69d52e7a1d8371d03a1c1ed4598799c5d languageName: node linkType: hard -"jest-resolve@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-resolve@npm:30.0.0-alpha.2" +"jest-resolve@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-resolve@npm:30.0.0-alpha.3" dependencies: chalk: "npm:^4.0.0" graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:30.0.0-alpha.2" + jest-haste-map: "npm:30.0.0-alpha.3" jest-pnp-resolver: "npm:^1.2.2" - jest-util: "npm:30.0.0-alpha.2" - jest-validate: "npm:30.0.0-alpha.2" + jest-util: "npm:30.0.0-alpha.3" + jest-validate: "npm:30.0.0-alpha.3" resolve: "npm:^1.20.0" resolve.exports: "npm:^2.0.0" slash: "npm:^3.0.0" - checksum: 10/09a41f2e815ef43a740953df2e8c4dbc9ca380067fcbd60956e0eedf6d456501d24d5fd502ec9c96af21bf691744308dc71d33fe25dac88deb22099dbedd8d2f + checksum: 10/890c832e59bfcbae3a3beb9561c693c12654ba783836e32a09c56d47abcef58d4eb62ef21da25c7fa3bbdbd0f1c54a65a4e29fbf095f9df53b0ac98e1fe85a5a languageName: node linkType: hard -"jest-runner@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-runner@npm:30.0.0-alpha.2" +"jest-runner@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-runner@npm:30.0.0-alpha.3" dependencies: - "@jest/console": "npm:30.0.0-alpha.2" - "@jest/environment": "npm:30.0.0-alpha.2" - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/transform": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/console": "npm:30.0.0-alpha.3" + "@jest/environment": "npm:30.0.0-alpha.3" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/transform": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" chalk: "npm:^4.0.0" emittery: "npm:^0.13.1" graceful-fs: "npm:^4.2.9" - jest-docblock: "npm:30.0.0-alpha.2" - jest-environment-node: "npm:30.0.0-alpha.2" - jest-haste-map: "npm:30.0.0-alpha.2" - jest-leak-detector: "npm:30.0.0-alpha.2" - jest-message-util: "npm:30.0.0-alpha.2" - jest-resolve: "npm:30.0.0-alpha.2" - jest-runtime: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" - jest-watcher: "npm:30.0.0-alpha.2" - jest-worker: "npm:30.0.0-alpha.2" + jest-docblock: "npm:30.0.0-alpha.3" + jest-environment-node: "npm:30.0.0-alpha.3" + jest-haste-map: "npm:30.0.0-alpha.3" + jest-leak-detector: "npm:30.0.0-alpha.3" + jest-message-util: "npm:30.0.0-alpha.3" + jest-resolve: "npm:30.0.0-alpha.3" + jest-runtime: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" + jest-watcher: "npm:30.0.0-alpha.3" + jest-worker: "npm:30.0.0-alpha.3" p-limit: "npm:^3.1.0" source-map-support: "npm:0.5.13" - checksum: 10/c2a0ce4ae506a4944a2c3e5bbaa9bd2cd951aec6ed3c804ef97374bbca5d683d1b898838dbfbeedeb6720a3c8a07c154385fbb8802c6c63f1d91e60122ef658f + checksum: 10/4d788e0bb3d4d25caab62dbcc7416be9178a47159ddf80d725cec4016cd7d583c1aad730134c7f76a04f67299f18efd82a2e85a2c09008366fdf19a57bcae3df languageName: node linkType: hard -"jest-runtime@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-runtime@npm:30.0.0-alpha.2" +"jest-runtime@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-runtime@npm:30.0.0-alpha.3" dependencies: - "@jest/environment": "npm:30.0.0-alpha.2" - "@jest/fake-timers": "npm:30.0.0-alpha.2" - "@jest/globals": "npm:30.0.0-alpha.2" - "@jest/source-map": "npm:30.0.0-alpha.2" - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/transform": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/environment": "npm:30.0.0-alpha.3" + "@jest/fake-timers": "npm:30.0.0-alpha.3" + "@jest/globals": "npm:30.0.0-alpha.3" + "@jest/source-map": "npm:30.0.0-alpha.3" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/transform": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" chalk: "npm:^4.0.0" cjs-module-lexer: "npm:^1.0.0" collect-v8-coverage: "npm:^1.0.0" - glob: "npm:^7.1.3" + glob: "npm:^10.3.10" graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:30.0.0-alpha.2" - jest-message-util: "npm:30.0.0-alpha.2" - jest-mock: "npm:30.0.0-alpha.2" - jest-regex-util: "npm:30.0.0-alpha.2" - jest-resolve: "npm:30.0.0-alpha.2" - jest-snapshot: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" + jest-haste-map: "npm:30.0.0-alpha.3" + jest-message-util: "npm:30.0.0-alpha.3" + jest-mock: "npm:30.0.0-alpha.3" + jest-regex-util: "npm:30.0.0-alpha.3" + jest-resolve: "npm:30.0.0-alpha.3" + jest-snapshot: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" slash: "npm:^3.0.0" strip-bom: "npm:^4.0.0" - checksum: 10/c7ea5a3dba6c380ad6b3807902acd2093f04033f371de73c9da39535635d2f598a871059b3bf201b6159b721d22229db00c6ba1785537efd5d572f8ae1bd7501 + checksum: 10/d5c3d2add85d985e7fe5c130789a57c14988558efc6c06f2d553507cc9ec36debf799d018081bbfa760d058d7122e6100677d1fa96327bbb94e9892db40ca578 languageName: node linkType: hard @@ -5931,32 +5850,32 @@ __metadata: languageName: node linkType: hard -"jest-snapshot@npm:30.0.0-alpha.2, jest-snapshot@npm:^30.0.0-alpha.1": - version: 30.0.0-alpha.2 - resolution: "jest-snapshot@npm:30.0.0-alpha.2" +"jest-snapshot@npm:30.0.0-alpha.3, jest-snapshot@npm:^30.0.0-alpha.1": + version: 30.0.0-alpha.3 + resolution: "jest-snapshot@npm:30.0.0-alpha.3" dependencies: "@babel/core": "npm:^7.11.6" "@babel/generator": "npm:^7.7.2" "@babel/plugin-syntax-jsx": "npm:^7.7.2" "@babel/plugin-syntax-typescript": "npm:^7.7.2" "@babel/types": "npm:^7.3.3" - "@jest/expect-utils": "npm:30.0.0-alpha.2" - "@jest/transform": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/expect-utils": "npm:30.0.0-alpha.3" + "@jest/transform": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" babel-preset-current-node-syntax: "npm:^1.0.0" chalk: "npm:^4.0.0" - expect: "npm:30.0.0-alpha.2" + expect: "npm:30.0.0-alpha.3" graceful-fs: "npm:^4.2.9" - jest-diff: "npm:30.0.0-alpha.2" - jest-get-type: "npm:30.0.0-alpha.2" - jest-matcher-utils: "npm:30.0.0-alpha.2" - jest-message-util: "npm:30.0.0-alpha.2" - jest-util: "npm:30.0.0-alpha.2" + jest-diff: "npm:30.0.0-alpha.3" + jest-get-type: "npm:30.0.0-alpha.3" + jest-matcher-utils: "npm:30.0.0-alpha.3" + jest-message-util: "npm:30.0.0-alpha.3" + jest-util: "npm:30.0.0-alpha.3" natural-compare: "npm:^1.4.0" - pretty-format: "npm:30.0.0-alpha.2" + pretty-format: "npm:30.0.0-alpha.3" semver: "npm:^7.5.3" - synckit: "npm:^0.8.5" - checksum: 10/aa4666b26ba2e9467d27ebfc64c221c8cdb972b05411ff2801cb8714c33e0c0b306a83e67385b7c1d6771322cefcfc6ef1d2c07ad046c2ee68c466c3182c745f + synckit: "npm:^0.9.0" + checksum: 10/daead8e8bad56b70fe38e587c5bf6c5a4a608060b3319fdfd8f89fd52dad2a291b120485d0735d459dd12e45e7adfb9b1fdc040e00aa3083548841b4ac4616cf languageName: node linkType: hard @@ -5988,17 +5907,17 @@ __metadata: languageName: node linkType: hard -"jest-util@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-util@npm:30.0.0-alpha.2" +"jest-util@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-util@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" chalk: "npm:^4.0.0" ci-info: "npm:^4.0.0" graceful-fs: "npm:^4.2.9" picomatch: "npm:^3.0.0" - checksum: 10/0f42c4fb1219de2a26c9a0cb7e772b63fb514cbcd43ce6567f7170554495a7ccd8431bb06d7bfc22f27dd339edcd5e891ce127dc4e4b307ef0c7c9f2cb875624 + checksum: 10/bfcaaa2737c9b8c98721b2ecd198671d617241d240df9fd1c76584ce7368de730ca68577f43927eed676a129e4bff3f0ab3d1d0bd5b2c3f2ab1584697a1cc3e8 languageName: node linkType: hard @@ -6016,17 +5935,17 @@ __metadata: languageName: node linkType: hard -"jest-validate@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-validate@npm:30.0.0-alpha.2" +"jest-validate@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-validate@npm:30.0.0-alpha.3" dependencies: - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/types": "npm:30.0.0-alpha.3" camelcase: "npm:^6.2.0" chalk: "npm:^4.0.0" - jest-get-type: "npm:30.0.0-alpha.2" + jest-get-type: "npm:30.0.0-alpha.3" leven: "npm:^3.1.0" - pretty-format: "npm:30.0.0-alpha.2" - checksum: 10/0e0b376fa0117f7b04391abf6fe8b98b51a69d0c75594f4f000391a3b1e4ce5acb5325aa9d3e9ea9b353d1ccd04b53b4f5c492127b979fa0136097098a04fd4d + pretty-format: "npm:30.0.0-alpha.3" + checksum: 10/f3d3b02e0a73cf787a9ebc79e8939c4183b99956ff43f999f4f4dbdbc16554f78f6e28a7ca1e00ce19fdba8cb7353ba34b8a1447ed42d994b1e8e468263bf58a languageName: node linkType: hard @@ -6047,19 +5966,19 @@ __metadata: languageName: node linkType: hard -"jest-watcher@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-watcher@npm:30.0.0-alpha.2" +"jest-watcher@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-watcher@npm:30.0.0-alpha.3" dependencies: - "@jest/test-result": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/test-result": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" "@types/node": "npm:*" ansi-escapes: "npm:^4.2.1" chalk: "npm:^4.0.0" emittery: "npm:^0.13.1" - jest-util: "npm:30.0.0-alpha.2" + jest-util: "npm:30.0.0-alpha.3" string-length: "npm:^4.0.1" - checksum: 10/cfa38863564fa2640fcebac52253611740129e695ca7014d98e792e38ec4c452a1a1bd2896cdf6a2302405d1aaede884692746f3074fd2d5346407b93cd43e74 + checksum: 10/8f867aa27156ecd496eef660f62e1210ac596448d4a5bf837aa7df1e0401ff6fb275770b87f14e451d8fd677c7cb61c042563979cf3bb4b622f0fdbe799da622 languageName: node linkType: hard @@ -6079,15 +5998,15 @@ __metadata: languageName: node linkType: hard -"jest-worker@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest-worker@npm:30.0.0-alpha.2" +"jest-worker@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest-worker@npm:30.0.0-alpha.3" dependencies: "@types/node": "npm:*" - jest-util: "npm:30.0.0-alpha.2" + jest-util: "npm:30.0.0-alpha.3" merge-stream: "npm:^2.0.0" supports-color: "npm:^8.0.0" - checksum: 10/d2a60df295fd581016310689daaa109ffd6957febc6f5c2ba42288317e43865b029a73cc4e82b359d288b96ef7e951dcff1f7ec02fb6676ad47f22bfa0e4d5d6 + checksum: 10/a85d90123bde780f6171251760fdcf5c35b38dfe316d18609fb5198cf330dbac7b4b9a2da88c4a8a2eacf8740a44e264d3b54e0f9ca4e0962ef325c5755654c6 languageName: node linkType: hard @@ -6103,14 +6022,14 @@ __metadata: languageName: node linkType: hard -"jest@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "jest@npm:30.0.0-alpha.2" +"jest@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "jest@npm:30.0.0-alpha.3" dependencies: - "@jest/core": "npm:30.0.0-alpha.2" - "@jest/types": "npm:30.0.0-alpha.2" + "@jest/core": "npm:30.0.0-alpha.3" + "@jest/types": "npm:30.0.0-alpha.3" import-local: "npm:^3.0.2" - jest-cli: "npm:30.0.0-alpha.2" + jest-cli: "npm:30.0.0-alpha.3" peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -6118,7 +6037,7 @@ __metadata: optional: true bin: jest: bin/jest.js - checksum: 10/44b49f965069dd81ae407a9e643c89e07527735839e11107e293ec7a6a64b9f79444aed20210173303ec2abd44aae40187592354308aecc796c7bcd6186aca79 + checksum: 10/76b4422f18adb529507770db4f3549d55fafea0ed1bc1d5ba002b84810f678b97bbd158431def8f502ec1d860c2e969330fc4e8e0376ad65aba5c286f8d22c38 languageName: node linkType: hard @@ -6962,18 +6881,6 @@ __metadata: languageName: node linkType: hard -"open@npm:^9.1.0": - version: 9.1.0 - resolution: "open@npm:9.1.0" - dependencies: - default-browser: "npm:^4.0.0" - define-lazy-prop: "npm:^3.0.0" - is-inside-container: "npm:^1.0.0" - is-wsl: "npm:^2.2.0" - checksum: 10/b45bcc7a6795804a2f560f0ca9f5e5344114bc40754d10c28a811c0c8f7027356979192931a6a7df2ab9e5bab3058988c99ae55f4fb71db2ce9fc77c40f619aa - languageName: node - linkType: hard - "optionator@npm:^0.9.3": version: 0.9.3 resolution: "optionator@npm:0.9.3" @@ -7435,7 +7342,7 @@ __metadata: ignore: "npm:5.3.1" import-meta-resolve: "npm:4.0.0" iterate-directory-up: "npm:1.1.1" - jest: "npm:30.0.0-alpha.2" + jest: "npm:30.0.0-alpha.3" jest-docblock: "npm:29.7.0" jest-light-runner: "npm:0.6.0" jest-snapshot-serializer-ansi: "npm:2.1.0" @@ -7495,14 +7402,14 @@ __metadata: languageName: node linkType: hard -"pretty-format@npm:30.0.0-alpha.2": - version: 30.0.0-alpha.2 - resolution: "pretty-format@npm:30.0.0-alpha.2" +"pretty-format@npm:30.0.0-alpha.3": + version: 30.0.0-alpha.3 + resolution: "pretty-format@npm:30.0.0-alpha.3" dependencies: - "@jest/schemas": "npm:30.0.0-alpha.2" + "@jest/schemas": "npm:30.0.0-alpha.3" ansi-styles: "npm:^5.0.0" react-is: "npm:^18.0.0" - checksum: 10/26fdd95bee7d4da086f320e779aeeffbdbc6c1180677dfa0938299af93a40280999202f251ec349b7cd990788d146149f8a45967eea661889bd441208a5a34cd + checksum: 10/ad86b6cb5415b45b52f09621dedfba0e03ae45fbc977a5708880d943264d19fe622e8d12ab60af8dd89a058448b50eec528b435ed0b0b44b76dce1c0d2f013bc languageName: node linkType: hard @@ -7898,15 +7805,6 @@ __metadata: languageName: node linkType: hard -"run-applescript@npm:^5.0.0": - version: 5.0.0 - resolution: "run-applescript@npm:5.0.0" - dependencies: - execa: "npm:^5.0.0" - checksum: 10/d00c2dbfa5b2d774de7451194b8b125f40f65fc183de7d9dcae97f57f59433586d3c39b9001e111c38bfa24c3436c99df1bb4066a2a0c90d39a8c4cd6889af77 - languageName: node - linkType: hard - "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -8488,13 +8386,13 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.8.5": - version: 0.8.5 - resolution: "synckit@npm:0.8.5" +"synckit@npm:^0.9.0": + version: 0.9.0 + resolution: "synckit@npm:0.9.0" dependencies: - "@pkgr/utils": "npm:^2.3.1" - tslib: "npm:^2.5.0" - checksum: 10/fb6798a2db2650ca3a2435ad32d4fc14842da807993a1a350b64d267e0e770aa7f26492b119aa7500892d3d07a5af1eec7bfbd6e23a619451558be0f226a6094 + "@pkgr/core": "npm:^0.1.0" + tslib: "npm:^2.6.2" + checksum: 10/e93f3f5ee43fa71d3bb2a345049642d9034f34fa9528706b5ef26e825335ca5446143c56c2b041810afe26aa6e343583ff08525f5530618a4707375270f87be1 languageName: node linkType: hard @@ -8556,13 +8454,6 @@ __metadata: languageName: node linkType: hard -"titleize@npm:^3.0.0": - version: 3.0.0 - resolution: "titleize@npm:3.0.0" - checksum: 10/71fbbeabbfb36ccd840559f67f21e356e1d03da2915b32d2ae1a60ddcc13a124be2739f696d2feb884983441d159a18649e8d956648d591bdad35c430a6b6d28 - languageName: node - linkType: hard - "tmpl@npm:1.0.5": version: 1.0.5 resolution: "tmpl@npm:1.0.5" @@ -8649,7 +8540,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0, tslib@npm:^2.6.2": +"tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.6.0, tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" checksum: 10/bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca @@ -8954,13 +8845,6 @@ __metadata: languageName: node linkType: hard -"untildify@npm:^4.0.0": - version: 4.0.0 - resolution: "untildify@npm:4.0.0" - checksum: 10/39ced9c418a74f73f0a56e1ba4634b4d959422dff61f4c72a8e39f60b99380c1b45ed776fbaa0a4101b157e4310d873ad7d114e8534ca02609b4916bb4187fb9 - languageName: node - linkType: hard - "update-browserslist-db@npm:^1.0.13": version: 1.0.13 resolution: "update-browserslist-db@npm:1.0.13"