From abdf427f7176b603a72dc079c3f9ed91eb01894a Mon Sep 17 00:00:00 2001 From: Ian Clanton-Thuon Date: Thu, 30 Mar 2023 12:19:38 -0700 Subject: [PATCH 01/20] Convert the EnvironmentVariableNames object from an enum to a const. --- ...ean-up-env-vars-enum_2023-03-30-19-39.json | 10 +++++ common/reviews/api/rush-lib.api.md | 40 +++++++++--------- .../src/api/EnvironmentConfiguration.ts | 41 ++++++++++--------- libraries/rush-sdk/src/index.ts | 13 +++--- 4 files changed, 59 insertions(+), 45 deletions(-) create mode 100644 common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json diff --git a/common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json b/common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json new file mode 100644 index 00000000000..7550d199d04 --- /dev/null +++ b/common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@microsoft/rush", + "comment": "Convert the `EnvironmentVariableNames` from an enum to a const so that its values can be referred to by type.", + "type": "none" + } + ], + "packageName": "@microsoft/rush" +} \ No newline at end of file diff --git a/common/reviews/api/rush-lib.api.md b/common/reviews/api/rush-lib.api.md index cbf4bb27366..9e050f485ac 100644 --- a/common/reviews/api/rush-lib.api.md +++ b/common/reviews/api/rush-lib.api.md @@ -166,26 +166,26 @@ export class EnvironmentConfiguration { } // @beta -export enum EnvironmentVariableNames { - RUSH_ABSOLUTE_SYMLINKS = "RUSH_ABSOLUTE_SYMLINKS", - RUSH_ALLOW_UNSUPPORTED_NODEJS = "RUSH_ALLOW_UNSUPPORTED_NODEJS", - RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD = "RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD", - RUSH_BUILD_CACHE_CREDENTIAL = "RUSH_BUILD_CACHE_CREDENTIAL", - RUSH_BUILD_CACHE_ENABLED = "RUSH_BUILD_CACHE_ENABLED", - RUSH_BUILD_CACHE_WRITE_ALLOWED = "RUSH_BUILD_CACHE_WRITE_ALLOWED", - RUSH_DEPLOY_TARGET_FOLDER = "RUSH_DEPLOY_TARGET_FOLDER", - RUSH_GIT_BINARY_PATH = "RUSH_GIT_BINARY_PATH", - RUSH_GLOBAL_FOLDER = "RUSH_GLOBAL_FOLDER", - RUSH_INVOKED_FOLDER = "RUSH_INVOKED_FOLDER", - RUSH_LIB_PATH = "_RUSH_LIB_PATH", - RUSH_PARALLELISM = "RUSH_PARALLELISM", - RUSH_PNPM_STORE_PATH = "RUSH_PNPM_STORE_PATH", - RUSH_PNPM_VERIFY_STORE_INTEGRITY = "RUSH_PNPM_VERIFY_STORE_INTEGRITY", - RUSH_PREVIEW_VERSION = "RUSH_PREVIEW_VERSION", - RUSH_TAR_BINARY_PATH = "RUSH_TAR_BINARY_PATH", - RUSH_TEMP_FOLDER = "RUSH_TEMP_FOLDER", - RUSH_VARIANT = "RUSH_VARIANT" -} +export const EnvironmentVariableNames: { + readonly RUSH_TEMP_FOLDER: "RUSH_TEMP_FOLDER"; + readonly RUSH_PREVIEW_VERSION: "RUSH_PREVIEW_VERSION"; + readonly RUSH_ALLOW_UNSUPPORTED_NODEJS: "RUSH_ALLOW_UNSUPPORTED_NODEJS"; + readonly RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD: "RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD"; + readonly RUSH_VARIANT: "RUSH_VARIANT"; + readonly RUSH_PARALLELISM: "RUSH_PARALLELISM"; + readonly RUSH_ABSOLUTE_SYMLINKS: "RUSH_ABSOLUTE_SYMLINKS"; + readonly RUSH_PNPM_STORE_PATH: "RUSH_PNPM_STORE_PATH"; + readonly RUSH_PNPM_VERIFY_STORE_INTEGRITY: "RUSH_PNPM_VERIFY_STORE_INTEGRITY"; + readonly RUSH_DEPLOY_TARGET_FOLDER: "RUSH_DEPLOY_TARGET_FOLDER"; + readonly RUSH_GLOBAL_FOLDER: "RUSH_GLOBAL_FOLDER"; + readonly RUSH_BUILD_CACHE_CREDENTIAL: "RUSH_BUILD_CACHE_CREDENTIAL"; + readonly RUSH_BUILD_CACHE_ENABLED: "RUSH_BUILD_CACHE_ENABLED"; + readonly RUSH_BUILD_CACHE_WRITE_ALLOWED: "RUSH_BUILD_CACHE_WRITE_ALLOWED"; + readonly RUSH_GIT_BINARY_PATH: "RUSH_GIT_BINARY_PATH"; + readonly RUSH_TAR_BINARY_PATH: "RUSH_TAR_BINARY_PATH"; + readonly RUSH_LIB_PATH: "_RUSH_LIB_PATH"; + readonly RUSH_INVOKED_FOLDER: "RUSH_INVOKED_FOLDER"; +}; // @beta export enum Event { diff --git a/libraries/rush-lib/src/api/EnvironmentConfiguration.ts b/libraries/rush-lib/src/api/EnvironmentConfiguration.ts index 99b34ff369b..96bc34cac99 100644 --- a/libraries/rush-lib/src/api/EnvironmentConfiguration.ts +++ b/libraries/rush-lib/src/api/EnvironmentConfiguration.ts @@ -18,7 +18,8 @@ export interface IEnvironmentConfigurationInitializeOptions { * Names of environment variables used by Rush. * @beta */ -export enum EnvironmentVariableNames { +// eslint-disable-next-line @typescript-eslint/typedef +export const EnvironmentVariableNames = { /** * This variable overrides the temporary folder used by Rush. * The default value is "common/temp" under the repository root. @@ -26,28 +27,28 @@ export enum EnvironmentVariableNames { * @remarks This environment variable is not compatible with workspace installs. If attempting * to move the PNPM store path, see the `RUSH_PNPM_STORE_PATH` environment variable. */ - RUSH_TEMP_FOLDER = 'RUSH_TEMP_FOLDER', + RUSH_TEMP_FOLDER: 'RUSH_TEMP_FOLDER', /** * This variable overrides the version of Rush that will be installed by * the version selector. The default value is determined by the "rushVersion" * field from rush.json. */ - RUSH_PREVIEW_VERSION = 'RUSH_PREVIEW_VERSION', + RUSH_PREVIEW_VERSION: 'RUSH_PREVIEW_VERSION', /** * If this variable is set to "1", Rush will not fail the build when running a version * of Node that does not match the criteria specified in the "nodeSupportedVersionRange" * field from rush.json. */ - RUSH_ALLOW_UNSUPPORTED_NODEJS = 'RUSH_ALLOW_UNSUPPORTED_NODEJS', + RUSH_ALLOW_UNSUPPORTED_NODEJS: 'RUSH_ALLOW_UNSUPPORTED_NODEJS', /** * Setting this environment variable overrides the value of `allowWarningsInSuccessfulBuild` * in the `command-line.json` configuration file. Specify `1` to allow warnings in a successful build, * or `0` to disallow them. (See the comments in the command-line.json file for more information). */ - RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD = 'RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD', + RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD: 'RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD', /** * This variable selects a specific installation variant for Rush to use when installing @@ -55,20 +56,20 @@ export enum EnvironmentVariableNames { * For more information, see the command-line help for the `--variant` parameter * and this article: https://rushjs.io/pages/advanced/installation_variants/ */ - RUSH_VARIANT = 'RUSH_VARIANT', + RUSH_VARIANT: 'RUSH_VARIANT', /** * Specifies the maximum number of concurrent processes to launch during a build. * For more information, see the command-line help for the `--parallelism` parameter for "rush build". */ - RUSH_PARALLELISM = 'RUSH_PARALLELISM', + RUSH_PARALLELISM: 'RUSH_PARALLELISM', /** * If this variable is set to "1", Rush will create symlinks with absolute paths instead * of relative paths. This can be necessary when a repository is moved during a build or * if parts of a repository are moved into a sandbox. */ - RUSH_ABSOLUTE_SYMLINKS = 'RUSH_ABSOLUTE_SYMLINKS', + RUSH_ABSOLUTE_SYMLINKS: 'RUSH_ABSOLUTE_SYMLINKS', /** * When using PNPM as the package manager, this variable can be used to configure the path that @@ -77,20 +78,20 @@ export enum EnvironmentVariableNames { * If a relative path is used, then the store path will be resolved relative to the process's * current working directory. An absolute path is recommended. */ - RUSH_PNPM_STORE_PATH = 'RUSH_PNPM_STORE_PATH', + RUSH_PNPM_STORE_PATH: 'RUSH_PNPM_STORE_PATH', /** * When using PNPM as the package manager, this variable can be used to control whether or not PNPM * validates the integrity of the PNPM store during installation. The value of this environment variable must be * `1` (for true) or `0` (for false). If not specified, defaults to the value in .npmrc. */ - RUSH_PNPM_VERIFY_STORE_INTEGRITY = 'RUSH_PNPM_VERIFY_STORE_INTEGRITY', + RUSH_PNPM_VERIFY_STORE_INTEGRITY: 'RUSH_PNPM_VERIFY_STORE_INTEGRITY', /** * This environment variable can be used to specify the `--target-folder` parameter * for the "rush deploy" command. */ - RUSH_DEPLOY_TARGET_FOLDER = 'RUSH_DEPLOY_TARGET_FOLDER', + RUSH_DEPLOY_TARGET_FOLDER: 'RUSH_DEPLOY_TARGET_FOLDER', /** * Overrides the location of the `~/.rush` global folder where Rush stores temporary files. @@ -108,7 +109,7 @@ export enum EnvironmentVariableNames { * * POSIX is a registered trademark of the Institute of Electrical and Electronic Engineers, Inc. */ - RUSH_GLOBAL_FOLDER = 'RUSH_GLOBAL_FOLDER', + RUSH_GLOBAL_FOLDER: 'RUSH_GLOBAL_FOLDER', /** * Provides a credential for a remote build cache, if configured. This credential overrides any cached credentials. @@ -123,7 +124,7 @@ export enum EnvironmentVariableNames { * * For information on SAS tokens, see here: https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview */ - RUSH_BUILD_CACHE_CREDENTIAL = 'RUSH_BUILD_CACHE_CREDENTIAL', + RUSH_BUILD_CACHE_CREDENTIAL: 'RUSH_BUILD_CACHE_CREDENTIAL', /** * Setting this environment variable overrides the value of `buildCacheEnabled` in the `build-cache.json` @@ -134,30 +135,30 @@ export enum EnvironmentVariableNames { * * If there is no build cache configured, then this environment variable is ignored. */ - RUSH_BUILD_CACHE_ENABLED = 'RUSH_BUILD_CACHE_ENABLED', + RUSH_BUILD_CACHE_ENABLED: 'RUSH_BUILD_CACHE_ENABLED', /** * Overrides the value of `isCacheWriteAllowed` in the `build-cache.json` configuration file. The value of this * environment variable must be `1` (for true) or `0` (for false). If there is no build cache configured, then * this environment variable is ignored. */ - RUSH_BUILD_CACHE_WRITE_ALLOWED = 'RUSH_BUILD_CACHE_WRITE_ALLOWED', + RUSH_BUILD_CACHE_WRITE_ALLOWED: 'RUSH_BUILD_CACHE_WRITE_ALLOWED', /** * Explicitly specifies the path for the Git binary that is invoked by certain Rush operations. */ - RUSH_GIT_BINARY_PATH = 'RUSH_GIT_BINARY_PATH', + RUSH_GIT_BINARY_PATH: 'RUSH_GIT_BINARY_PATH', /** * Explicitly specifies the path for the `tar` binary that is invoked by certain Rush operations. */ - RUSH_TAR_BINARY_PATH = 'RUSH_TAR_BINARY_PATH', + RUSH_TAR_BINARY_PATH: 'RUSH_TAR_BINARY_PATH', /** * Internal variable that explicitly specifies the path for the version of `@microsoft/rush-lib` being executed. * Will be set upon loading Rush. */ - RUSH_LIB_PATH = '_RUSH_LIB_PATH', + RUSH_LIB_PATH: '_RUSH_LIB_PATH', /** * When Rush executes shell scripts, it sometimes changes the working directory to be a project folder or @@ -168,8 +169,8 @@ export enum EnvironmentVariableNames { * The `RUSH_INVOKED_FOLDER` variable is the same idea as the `INIT_CWD` variable that package managers * assign when they execute lifecycle scripts. */ - RUSH_INVOKED_FOLDER = 'RUSH_INVOKED_FOLDER' -} + RUSH_INVOKED_FOLDER: 'RUSH_INVOKED_FOLDER' +} as const; /** * Provides Rush-specific environment variable data. All Rush environment variables must start with "RUSH_". This class diff --git a/libraries/rush-sdk/src/index.ts b/libraries/rush-sdk/src/index.ts index 2677e9bef8d..0e7e9baf6d0 100644 --- a/libraries/rush-sdk/src/index.ts +++ b/libraries/rush-sdk/src/index.ts @@ -14,8 +14,10 @@ import { ConsoleTerminalProvider } from '@rushstack/node-core-library'; import type { SpawnSyncReturns } from 'child_process'; +import type { EnvironmentVariableNames } from '@microsoft/rush-lib'; const RUSH_LIB_NAME: '@microsoft/rush-lib' = '@microsoft/rush-lib'; +const RUSH_LIB_PATH_ENV_VAR_NAME: typeof EnvironmentVariableNames.RUSH_LIB_PATH = '_RUSH_LIB_PATH'; const verboseEnabled: boolean = typeof process !== 'undefined' && process.env.RUSH_SDK_DEBUG === '1'; const terminal: Terminal = new Terminal( @@ -95,23 +97,24 @@ if (rushLibModule === undefined) { // SCENARIO 3: A tool or script has been invoked as a child process by an instance of "rush-lib" and can use the // version that invoked it. In this case, use process.env._RUSH_LIB_PATH to find "rush-lib". if (rushLibModule === undefined) { - const rushLibVariable: '_RUSH_LIB_PATH' = '_RUSH_LIB_PATH'; - const rushLibPath: string | undefined = process.env[rushLibVariable]; + const rushLibPath: string | undefined = process.env[RUSH_LIB_PATH_ENV_VAR_NAME]; if (rushLibPath) { terminal.writeVerboseLine( - `Try to load ${RUSH_LIB_NAME} from process.env.${rushLibVariable} from caller package` + `Try to load ${RUSH_LIB_NAME} from process.env.${RUSH_LIB_PATH_ENV_VAR_NAME} from caller package` ); try { rushLibModule = _require(rushLibPath); } catch (error) { // Log this as a warning, since it is unexpected to define an incorrect value of the variable. - terminal.writeWarningLine(`Failed to load ${RUSH_LIB_NAME} via process.env.${rushLibVariable}`); + terminal.writeWarningLine( + `Failed to load ${RUSH_LIB_NAME} via process.env.${RUSH_LIB_PATH_ENV_VAR_NAME}` + ); } if (rushLibModule !== undefined) { // to track which scenario is active and how it got initialized. global.___rush___rushLibModuleFromEnvironment = rushLibModule; - terminal.writeVerboseLine(`Loaded ${RUSH_LIB_NAME} from process.env.${rushLibVariable}`); + terminal.writeVerboseLine(`Loaded ${RUSH_LIB_NAME} from process.env.${RUSH_LIB_PATH_ENV_VAR_NAME}`); } } } From fdddf765b2dce3dc588e5f811865c7078ade5a65 Mon Sep 17 00:00:00 2001 From: Elliot Nelson Date: Sat, 1 Apr 2023 10:55:21 -0400 Subject: [PATCH 02/20] Ignore common/temp in test repo folders --- libraries/rush-lib/src/cli/actions/test/removeRepo/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 libraries/rush-lib/src/cli/actions/test/removeRepo/.gitignore diff --git a/libraries/rush-lib/src/cli/actions/test/removeRepo/.gitignore b/libraries/rush-lib/src/cli/actions/test/removeRepo/.gitignore new file mode 100644 index 00000000000..6ddd556a5a2 --- /dev/null +++ b/libraries/rush-lib/src/cli/actions/test/removeRepo/.gitignore @@ -0,0 +1 @@ +common/temp From 97772814a5e72fa3184fe389f318f04ceae783f4 Mon Sep 17 00:00:00 2001 From: Elliot Nelson Date: Sat, 1 Apr 2023 10:57:08 -0400 Subject: [PATCH 03/20] rush change --- .../rush/enelson-fix-lock_2023-04-01-14-57.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json diff --git a/common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json b/common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json new file mode 100644 index 00000000000..bd7ff97cb34 --- /dev/null +++ b/common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@microsoft/rush", + "comment": "", + "type": "none" + } + ], + "packageName": "@microsoft/rush" +} \ No newline at end of file From d602df81d23393ebc6ccc3ba84156b98169ade50 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Tue, 4 Apr 2023 20:03:53 +0000 Subject: [PATCH 04/20] Bump Jest to latest version of 29 --- .../heft-jest-reporters-test/package.json | 4 ++-- heft-plugins/heft-jest-plugin/package.json | 18 +++++++++--------- rigs/heft-node-rig/package.json | 2 +- rigs/heft-web-rig/package.json | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/build-tests/heft-jest-reporters-test/package.json b/build-tests/heft-jest-reporters-test/package.json index dc07a7d9b18..edbf26d2316 100644 --- a/build-tests/heft-jest-reporters-test/package.json +++ b/build-tests/heft-jest-reporters-test/package.json @@ -10,8 +10,8 @@ "_phase:test": "heft test --no-build" }, "devDependencies": { - "@jest/reporters": "~29.3.1", - "@jest/types": "29.3.1", + "@jest/reporters": "~29.5.0", + "@jest/types": "29.5.0", "@rushstack/eslint-config": "workspace:*", "@rushstack/heft": "workspace:*", "@rushstack/heft-jest-plugin": "workspace:*", diff --git a/heft-plugins/heft-jest-plugin/package.json b/heft-plugins/heft-jest-plugin/package.json index ff207e28202..fee0d8dad1d 100644 --- a/heft-plugins/heft-jest-plugin/package.json +++ b/heft-plugins/heft-jest-plugin/package.json @@ -21,18 +21,18 @@ "@rushstack/heft": "^0.50.0" }, "dependencies": { - "@jest/core": "~29.3.1", - "@jest/reporters": "~29.3.1", - "@jest/transform": "~29.3.1", + "@jest/core": "~29.5.0", + "@jest/reporters": "~29.5.0", + "@jest/transform": "~29.5.0", "@rushstack/heft-config-file": "workspace:*", "@rushstack/node-core-library": "workspace:*", - "jest-config": "~29.3.1", - "jest-resolve": "~29.3.1", - "jest-snapshot": "~29.3.1", + "jest-config": "~29.5.0", + "jest-resolve": "~29.5.0", + "jest-snapshot": "~29.5.0", "lodash": "~4.17.15" }, "devDependencies": { - "@jest/types": "29.3.1", + "@jest/types": "29.5.0", "@microsoft/api-extractor": "workspace:*", "@rushstack/eslint-config": "workspace:*", "@rushstack/heft": "workspace:*", @@ -40,8 +40,8 @@ "@types/lodash": "4.14.116", "@types/node": "14.18.36", "eslint": "~8.7.0", - "jest-environment-jsdom": "~29.3.1", - "jest-environment-node": "~29.3.1", + "jest-environment-jsdom": "~29.5.0", + "jest-environment-node": "~29.5.0", "jest-watch-select-projects": "2.0.0", "typescript": "~4.8.4" } diff --git a/rigs/heft-node-rig/package.json b/rigs/heft-node-rig/package.json index 6ff63c5f4a3..ba1357f395f 100644 --- a/rigs/heft-node-rig/package.json +++ b/rigs/heft-node-rig/package.json @@ -19,7 +19,7 @@ "@microsoft/api-extractor": "workspace:*", "@rushstack/heft-jest-plugin": "workspace:*", "eslint": "~8.7.0", - "jest-environment-node": "~29.3.1", + "jest-environment-node": "~29.5.0", "typescript": "~4.8.4" }, "devDependencies": { diff --git a/rigs/heft-web-rig/package.json b/rigs/heft-web-rig/package.json index edb447d3086..0c133496fad 100644 --- a/rigs/heft-web-rig/package.json +++ b/rigs/heft-web-rig/package.json @@ -25,7 +25,7 @@ "css-minimizer-webpack-plugin": "~3.4.1", "eslint": "~8.7.0", "html-webpack-plugin": "~5.5.0", - "jest-environment-jsdom": "~29.3.1", + "jest-environment-jsdom": "~29.5.0", "mini-css-extract-plugin": "~2.5.3", "postcss-loader": "~6.2.1", "postcss": "~8.4.6", From b75941104dfb5b524e414d027a0c58ce3d06ae73 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Tue, 4 Apr 2023 20:05:10 +0000 Subject: [PATCH 05/20] rush change --- .../thelarkinn-jest-latest-bump_2023-04-04-20-04.json | 10 ++++++++++ .../thelarkinn-jest-latest-bump_2023-04-04-20-04.json | 10 ++++++++++ .../thelarkinn-jest-latest-bump_2023-04-04-20-04.json | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json create mode 100644 common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json create mode 100644 common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json diff --git a/common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json b/common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json new file mode 100644 index 00000000000..8bd842604d3 --- /dev/null +++ b/common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-jest-plugin", + "comment": "Upgrade Jest to 29.5.0.", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-jest-plugin" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json b/common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json new file mode 100644 index 00000000000..cd62544b553 --- /dev/null +++ b/common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-node-rig", + "comment": "Upgrade Jest to 29.5.0.", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-node-rig" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json b/common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json new file mode 100644 index 00000000000..12c211929b1 --- /dev/null +++ b/common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-web-rig", + "comment": "Upgrade Jest to 29.5.0.", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-web-rig" +} \ No newline at end of file From 7a1ccff8a563437e1b9fc8efca035ea7991f1ebe Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Tue, 4 Apr 2023 20:05:23 +0000 Subject: [PATCH 06/20] DROP: rush update --- common/config/rush/pnpm-lock.yaml | 714 +++++++++++++++-------------- common/config/rush/repo-state.json | 2 +- 2 files changed, 368 insertions(+), 348 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index f89b3af0b1e..d5db103640d 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -914,8 +914,8 @@ importers: ../../build-tests/heft-jest-reporters-test: specifiers: - '@jest/reporters': ~29.3.1 - '@jest/types': 29.3.1 + '@jest/reporters': ~29.5.0 + '@jest/types': 29.5.0 '@rushstack/eslint-config': workspace:* '@rushstack/heft': workspace:* '@rushstack/heft-jest-plugin': workspace:* @@ -923,8 +923,8 @@ importers: eslint: ~8.7.0 typescript: ~4.8.4 devDependencies: - '@jest/reporters': 29.3.1 - '@jest/types': 29.3.1 + '@jest/reporters': 29.5.0 + '@jest/types': 29.5.0 '@rushstack/eslint-config': link:../../eslint/eslint-config '@rushstack/heft': link:../../apps/heft '@rushstack/heft-jest-plugin': link:../../heft-plugins/heft-jest-plugin @@ -1537,10 +1537,10 @@ importers: ../../heft-plugins/heft-jest-plugin: specifiers: - '@jest/core': ~29.3.1 - '@jest/reporters': ~29.3.1 - '@jest/transform': ~29.3.1 - '@jest/types': 29.3.1 + '@jest/core': ~29.5.0 + '@jest/reporters': ~29.5.0 + '@jest/transform': ~29.5.0 + '@jest/types': 29.5.0 '@microsoft/api-extractor': workspace:* '@rushstack/eslint-config': workspace:* '@rushstack/heft': workspace:* @@ -1550,26 +1550,26 @@ importers: '@types/lodash': 4.14.116 '@types/node': 14.18.36 eslint: ~8.7.0 - jest-config: ~29.3.1 - jest-environment-jsdom: ~29.3.1 - jest-environment-node: ~29.3.1 - jest-resolve: ~29.3.1 - jest-snapshot: ~29.3.1 + jest-config: ~29.5.0 + jest-environment-jsdom: ~29.5.0 + jest-environment-node: ~29.5.0 + jest-resolve: ~29.5.0 + jest-snapshot: ~29.5.0 jest-watch-select-projects: 2.0.0 lodash: ~4.17.15 typescript: ~4.8.4 dependencies: - '@jest/core': 29.3.1 - '@jest/reporters': 29.3.1 - '@jest/transform': 29.3.1 + '@jest/core': 29.5.0 + '@jest/reporters': 29.5.0 + '@jest/transform': 29.5.0 '@rushstack/heft-config-file': link:../../libraries/heft-config-file '@rushstack/node-core-library': link:../../libraries/node-core-library - jest-config: 29.3.1_@types+node@14.18.36 - jest-resolve: 29.3.1 - jest-snapshot: 29.3.1 + jest-config: 29.5.0_@types+node@14.18.36 + jest-resolve: 29.5.0 + jest-snapshot: 29.5.0 lodash: 4.17.21 devDependencies: - '@jest/types': 29.3.1 + '@jest/types': 29.5.0 '@microsoft/api-extractor': link:../../apps/api-extractor '@rushstack/eslint-config': link:../../eslint/eslint-config '@rushstack/heft': link:../../apps/heft @@ -1577,8 +1577,8 @@ importers: '@types/lodash': 4.14.116 '@types/node': 14.18.36 eslint: 8.7.0 - jest-environment-jsdom: 29.3.1 - jest-environment-node: 29.3.1 + jest-environment-jsdom: 29.5.0 + jest-environment-node: 29.5.0 jest-watch-select-projects: 2.0.0 typescript: 4.8.4 @@ -2279,13 +2279,13 @@ importers: '@rushstack/heft': workspace:* '@rushstack/heft-jest-plugin': workspace:* eslint: ~8.7.0 - jest-environment-node: ~29.3.1 + jest-environment-node: ~29.5.0 typescript: ~4.8.4 dependencies: '@microsoft/api-extractor': link:../../apps/api-extractor '@rushstack/heft-jest-plugin': link:../../heft-plugins/heft-jest-plugin eslint: 8.7.0 - jest-environment-node: 29.3.1 + jest-environment-node: 29.5.0 typescript: 4.8.4 devDependencies: '@rushstack/heft': link:../../apps/heft @@ -2302,7 +2302,7 @@ importers: css-minimizer-webpack-plugin: ~3.4.1 eslint: ~8.7.0 html-webpack-plugin: ~5.5.0 - jest-environment-jsdom: ~29.3.1 + jest-environment-jsdom: ~29.5.0 mini-css-extract-plugin: ~2.5.3 postcss: ~8.4.6 postcss-loader: ~6.2.1 @@ -2326,7 +2326,7 @@ importers: css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 eslint: 8.7.0 html-webpack-plugin: 5.5.0_webpack@5.75.0 - jest-environment-jsdom: 29.3.1 + jest-environment-jsdom: 29.5.0 mini-css-extract-plugin: 2.5.3_webpack@5.75.0 postcss: 8.4.21 postcss-loader: 6.2.1_6jdsrmfenkuhhw3gx4zvjlznce @@ -5215,15 +5215,15 @@ packages: slash: 3.0.0 dev: true - /@jest/console/29.4.1: - resolution: {integrity: sha512-m+XpwKSi3PPM9znm5NGS8bBReeAJJpSkL1OuFCqaMaJL2YX9YXLkkI+MBchMPwu+ZuM2rynL51sgfkQteQ1CKQ==} + /@jest/console/29.5.0: + resolution: {integrity: sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@types/node': 14.18.36 chalk: 4.1.2 - jest-message-util: 29.4.1 - jest-util: 29.4.1 + jest-message-util: 29.5.0 + jest-util: 29.5.0 slash: 3.0.0 /@jest/core/27.4.7: @@ -5280,9 +5280,9 @@ packages: node-notifier: optional: true dependencies: - '@jest/console': 29.4.1 + '@jest/console': 29.5.0 '@jest/reporters': 29.3.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 + '@jest/test-result': 29.5.0_@types+node@14.18.36 '@jest/transform': 29.3.1 '@jest/types': 29.3.1 '@types/node': 14.18.36 @@ -5291,29 +5291,30 @@ packages: ci-info: 3.7.1 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 29.4.0 + jest-changed-files: 29.5.0 jest-config: 29.3.1_@types+node@14.18.36 - jest-haste-map: 29.4.1 - jest-message-util: 29.4.1 - jest-regex-util: 29.2.0 + jest-haste-map: 29.5.0 + jest-message-util: 29.5.0 + jest-regex-util: 29.4.3 jest-resolve: 29.3.1 - jest-resolve-dependencies: 29.4.1 - jest-runner: 29.4.1 - jest-runtime: 29.4.1 + jest-resolve-dependencies: 29.5.0 + jest-runner: 29.5.0 + jest-runtime: 29.5.0 jest-snapshot: 29.3.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 - jest-watcher: 29.4.1 + jest-util: 29.5.0 + jest-validate: 29.5.0 + jest-watcher: 29.5.0 micromatch: 4.0.5 - pretty-format: 29.4.1 + pretty-format: 29.5.0 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: - supports-color - ts-node + dev: true - /@jest/core/29.4.1: - resolution: {integrity: sha512-RXFTohpBqpaTebNdg5l3I5yadnKo9zLBajMT0I38D0tDhreVBYv3fA8kywthI00sWxPztWLD3yjiUkewwu/wKA==} + /@jest/core/29.5.0: + resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -5321,38 +5322,37 @@ packages: node-notifier: optional: true dependencies: - '@jest/console': 29.4.1 - '@jest/reporters': 29.4.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 + '@jest/console': 29.5.0 + '@jest/reporters': 29.5.0 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/transform': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 14.18.36 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.7.1 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 29.4.0 - jest-config: 29.4.1_@types+node@14.18.36 - jest-haste-map: 29.4.1 - jest-message-util: 29.4.1 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-resolve-dependencies: 29.4.1 - jest-runner: 29.4.1 - jest-runtime: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 - jest-watcher: 29.4.1 + jest-changed-files: 29.5.0 + jest-config: 29.5.0_@types+node@14.18.36 + jest-haste-map: 29.5.0 + jest-message-util: 29.5.0 + jest-regex-util: 29.4.3 + jest-resolve: 29.5.0 + jest-resolve-dependencies: 29.5.0 + jest-runner: 29.5.0 + jest-runtime: 29.5.0 + jest-snapshot: 29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 + jest-watcher: 29.5.0 micromatch: 4.0.5 - pretty-format: 29.4.1 + pretty-format: 29.5.0 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: - supports-color - ts-node - dev: true /@jest/environment/27.5.1: resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} @@ -5364,27 +5364,27 @@ packages: jest-mock: 27.5.1 dev: true - /@jest/environment/29.4.1: - resolution: {integrity: sha512-pJ14dHGSQke7Q3mkL/UZR9ZtTOxqskZaC91NzamEH4dlKRt42W+maRBXiw/LWkdJe+P0f/zDR37+SPMplMRlPg==} + /@jest/environment/29.5.0: + resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 29.4.1 - '@jest/types': 29.4.1 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 14.18.36 - jest-mock: 29.4.1 + jest-mock: 29.5.0 - /@jest/expect-utils/29.4.1: - resolution: {integrity: sha512-w6YJMn5DlzmxjO00i9wu2YSozUYRBhIoJ6nQwpMYcBMtiqMGJm1QBzOf6DDgRao8dbtpDoaqLg6iiQTvv0UHhQ==} + /@jest/expect-utils/29.5.0: + resolution: {integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - jest-get-type: 29.2.0 + jest-get-type: 29.4.3 - /@jest/expect/29.4.1: - resolution: {integrity: sha512-ZxKJP5DTUNF2XkpJeZIzvnzF1KkfrhEF6Rz0HGG69fHl6Bgx5/GoU3XyaeFYEjuuKSOOsbqD/k72wFvFxc3iTw==} + /@jest/expect/29.5.0: + resolution: {integrity: sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - expect: 29.4.1 - jest-snapshot: 29.4.1 + expect: 29.5.0 + jest-snapshot: 29.5.0 transitivePeerDependencies: - supports-color @@ -5400,16 +5400,16 @@ packages: jest-util: 27.5.1 dev: true - /@jest/fake-timers/29.4.1: - resolution: {integrity: sha512-/1joI6rfHFmmm39JxNfmNAO3Nwm6Y0VoL5fJDy7H1AtWrD1CgRtqJbN9Ld6rhAkGO76qqp4cwhhxJ9o9kYjQMw==} + /@jest/fake-timers/29.5.0: + resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@sinonjs/fake-timers': 10.0.2 '@types/node': 14.18.36 - jest-message-util: 29.4.1 - jest-mock: 29.4.1 - jest-util: 29.4.1 + jest-message-util: 29.5.0 + jest-mock: 29.5.0 + jest-util: 29.5.0 /@jest/globals/27.5.1: resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} @@ -5420,14 +5420,14 @@ packages: expect: 27.5.1 dev: true - /@jest/globals/29.4.1: - resolution: {integrity: sha512-znoK2EuFytbHH0ZSf2mQK2K1xtIgmaw4Da21R2C/NE/+NnItm5mPEFQmn8gmF3f0rfOlmZ3Y3bIf7bFj7DHxAA==} + /@jest/globals/29.5.0: + resolution: {integrity: sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.4.1 - '@jest/expect': 29.4.1 - '@jest/types': 29.4.1 - jest-mock: 29.4.1 + '@jest/environment': 29.5.0 + '@jest/expect': 29.5.0 + '@jest/types': 29.5.0 + jest-mock: 29.5.0 transitivePeerDependencies: - supports-color @@ -5519,8 +5519,8 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.4.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 + '@jest/console': 29.5.0 + '@jest/test-result': 29.5.0_@types+node@14.18.36 '@jest/transform': 29.3.1 '@jest/types': 29.3.1 '@jridgewell/trace-mapping': 0.3.17 @@ -5536,18 +5536,19 @@ packages: istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 - jest-message-util: 29.4.1 - jest-util: 29.4.1 - jest-worker: 29.4.1 + jest-message-util: 29.5.0 + jest-util: 29.5.0 + jest-worker: 29.5.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 v8-to-istanbul: 9.0.1 transitivePeerDependencies: - supports-color + dev: true - /@jest/reporters/29.4.1: - resolution: {integrity: sha512-AISY5xpt2Xpxj9R6y0RF1+O6GRy9JsGa8+vK23Lmzdy1AYcpQn5ItX79wJSsTmfzPKSAcsY1LNt/8Y5Xe5LOSg==} + /@jest/reporters/29.5.0: + resolution: {integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -5556,10 +5557,10 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.4.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 + '@jest/console': 29.5.0 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/transform': 29.5.0 + '@jest/types': 29.5.0 '@jridgewell/trace-mapping': 0.3.17 '@types/istanbul-lib-coverage': 2.0.4 '@types/node': 14.18.36 @@ -5573,19 +5574,18 @@ packages: istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 - jest-message-util: 29.4.1 - jest-util: 29.4.1 - jest-worker: 29.4.1 + jest-message-util: 29.5.0 + jest-util: 29.5.0 + jest-worker: 29.5.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 v8-to-istanbul: 9.0.1 transitivePeerDependencies: - supports-color - dev: true - /@jest/schemas/29.4.0: - resolution: {integrity: sha512-0E01f/gOZeNTG76i5eWWSupvSHaIINrTie7vCyjiYFKgzNdyEGd12BUv4oNBFHOqlHDbtoJi3HrQ38KCC90NsQ==} + /@jest/schemas/29.4.3: + resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.25.21 @@ -5599,8 +5599,8 @@ packages: source-map: 0.6.1 dev: true - /@jest/source-map/29.2.0: - resolution: {integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==} + /@jest/source-map/29.4.3: + resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jridgewell/trace-mapping': 0.3.17 @@ -5621,16 +5621,16 @@ packages: - '@types/node' dev: true - /@jest/test-result/29.4.1_@types+node@14.18.36: - resolution: {integrity: sha512-WRt29Lwt+hEgfN8QDrXqXGgCTidq1rLyFqmZ4lmJOpVArC8daXrZWkWjiaijQvgd3aOUj2fM8INclKHsQW9YyQ==} + /@jest/test-result/29.5.0_@types+node@14.18.36: + resolution: {integrity: sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.4.1 - '@jest/types': 29.4.1 + '@jest/console': 29.5.0 + '@jest/types': 29.5.0 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1_@types+node@14.18.36 - jest-haste-map: 29.4.1 - jest-resolve: 29.4.1 + jest-haste-map: 29.5.0 + jest-resolve: 29.5.0 transitivePeerDependencies: - '@types/node' @@ -5647,13 +5647,13 @@ packages: - supports-color dev: true - /@jest/test-sequencer/29.4.1_@types+node@14.18.36: - resolution: {integrity: sha512-v5qLBNSsM0eHzWLXsQ5fiB65xi49A3ILPSFQKPXzGL4Vyux0DPZAIN7NAFJa9b4BiTDP9MBF/Zqc/QA1vuiJ0w==} + /@jest/test-sequencer/29.5.0_@types+node@14.18.36: + resolution: {integrity: sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.4.1_@types+node@14.18.36 + '@jest/test-result': 29.5.0_@types+node@14.18.36 graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 + jest-haste-map: 29.5.0 slash: 3.0.0 transitivePeerDependencies: - '@types/node' @@ -5739,35 +5739,36 @@ packages: convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-regex-util: 29.2.0 - jest-util: 29.4.1 + jest-haste-map: 29.5.0 + jest-regex-util: 29.4.3 + jest-util: 29.5.0 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color + dev: true - /@jest/transform/29.4.1: - resolution: {integrity: sha512-5w6YJrVAtiAgr0phzKjYd83UPbCXsBRTeYI4BXokv9Er9CcrH9hfXL/crCvP2d2nGOcovPUnlYiLPFLZrkG5Hg==} + /@jest/transform/29.5.0: + resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.20.12 - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-regex-util: 29.2.0 - jest-util: 29.4.1 + jest-haste-map: 29.5.0 + jest-regex-util: 29.4.3 + jest-util: 29.5.0 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 - write-file-atomic: 5.0.0 + write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color @@ -5797,18 +5798,19 @@ packages: resolution: {integrity: sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.4.0 + '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 '@types/node': 14.18.36 '@types/yargs': 17.0.20 chalk: 4.1.2 + dev: true - /@jest/types/29.4.1: - resolution: {integrity: sha512-zbrAXDUOnpJ+FMST2rV7QZOgec8rskg2zv8g2ajeqitp4tvZiyqTCYXANrKsM+ryj5o+LI+ZN2EgU9drrkiwSA==} + /@jest/types/29.5.0: + resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.4.0 + '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 '@types/node': 14.18.36 @@ -10248,17 +10250,17 @@ packages: - supports-color dev: true - /babel-jest/29.4.1_@babel+core@7.20.12: - resolution: {integrity: sha512-xBZa/pLSsF/1sNpkgsiT3CmY7zV1kAsZ9OxxtrFqYucnOuRftXAfcJqcDVyOPeN4lttWTwhLdu0T9f8uvoPEUg==} + /babel-jest/29.5.0_@babel+core@7.20.12: + resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: '@babel/core': 7.20.12 - '@jest/transform': 29.4.1 + '@jest/transform': 29.5.0 '@types/babel__core': 7.20.0 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.4.0_@babel+core@7.20.12 + babel-preset-jest: 29.5.0_@babel+core@7.20.12 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -10337,8 +10339,8 @@ packages: '@types/babel__traverse': 7.18.3 dev: true - /babel-plugin-jest-hoist/29.4.0: - resolution: {integrity: sha512-a/sZRLQJEmsmejQ2rPEUe35nO1+C9dc9O1gplH1SXmJxveQSRUYdBk8yGZG/VOUuZs1u2aHZJusEGoRMbhhwCg==} + /babel-plugin-jest-hoist/29.5.0: + resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.20.7 @@ -10463,14 +10465,14 @@ packages: babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 dev: true - /babel-preset-jest/29.4.0_@babel+core@7.20.12: - resolution: {integrity: sha512-fUB9vZflUSM3dO/6M2TCAepTzvA4VkOvl67PjErcrQMGt9Eve7uazaeyCZ2th3UtI7ljpiBJES0F7A1vBRsLZA==} + /babel-preset-jest/29.5.0_@babel+core@7.20.12: + resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.20.12 - babel-plugin-jest-hoist: 29.4.0 + babel-plugin-jest-hoist: 29.5.0 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 /bail/1.0.5: @@ -12211,8 +12213,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /diff-sequences/29.3.1: - resolution: {integrity: sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==} + /diff-sequences/29.4.3: + resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} /diff/4.0.2: @@ -13413,11 +13415,21 @@ packages: resolution: {integrity: sha512-OKrGESHOaMxK3b6zxIq9SOW8kEXztKff/Dvg88j4xIJxur1hspEbedVkR3GpHe5LO+WB2Qw7OWN0RMTdp6as5A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/expect-utils': 29.4.1 - jest-get-type: 29.2.0 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-util: 29.4.1 + '@jest/expect-utils': 29.5.0 + jest-get-type: 29.4.3 + jest-matcher-utils: 29.5.0 + jest-message-util: 29.5.0 + jest-util: 29.5.0 + + /expect/29.5.0: + resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/expect-utils': 29.5.0 + jest-get-type: 29.4.3 + jest-matcher-utils: 29.5.0 + jest-message-util: 29.5.0 + jest-util: 29.5.0 /express/4.18.1: resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} @@ -15539,8 +15551,8 @@ packages: throat: 6.0.2 dev: true - /jest-changed-files/29.4.0: - resolution: {integrity: sha512-rnI1oPxgFghoz32Y8eZsGJMjW54UlqT17ycQeCEktcxxwqqKdlj9afl8LNeO0Pbu+h2JQHThQP0BzS67eTRx4w==} + /jest-changed-files/29.5.0: + resolution: {integrity: sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: execa: 5.1.1 @@ -15573,27 +15585,28 @@ packages: - supports-color dev: true - /jest-circus/29.4.1: - resolution: {integrity: sha512-v02NuL5crMNY4CGPHBEflLzl4v91NFb85a+dH9a1pUNx6Xjggrd8l9pPy4LZ1VYNRXlb+f65+7O/MSIbLir6pA==} + /jest-circus/29.5.0: + resolution: {integrity: sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.4.1 - '@jest/expect': 29.4.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/types': 29.4.1 + '@jest/environment': 29.5.0 + '@jest/expect': 29.5.0 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/types': 29.5.0 '@types/node': 14.18.36 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 is-generator-fn: 2.1.0 - jest-each: 29.4.1 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-runtime: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 + jest-each: 29.5.0 + jest-matcher-utils: 29.5.0 + jest-message-util: 29.5.0 + jest-runtime: 29.5.0 + jest-snapshot: 29.5.0 + jest-util: 29.5.0 p-limit: 3.1.0 - pretty-format: 29.4.1 + pretty-format: 29.5.0 + pure-rand: 6.0.1 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: @@ -15609,16 +15622,16 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.4.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/types': 29.4.1 + '@jest/core': 29.5.0 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/types': 29.5.0 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.4.1_@types+node@14.18.36 - jest-util: 29.4.1 - jest-validate: 29.4.1 + jest-config: 29.5.0_@types+node@14.18.36 + jest-util: 29.5.0 + jest-validate: 29.5.0 prompts: 2.4.2 yargs: 17.6.2 transitivePeerDependencies: @@ -15720,33 +15733,34 @@ packages: optional: true dependencies: '@babel/core': 7.20.12 - '@jest/test-sequencer': 29.4.1_@types+node@14.18.36 + '@jest/test-sequencer': 29.5.0_@types+node@14.18.36 '@jest/types': 29.3.1 '@types/node': 14.18.36 - babel-jest: 29.4.1_@babel+core@7.20.12 + babel-jest: 29.5.0_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.7.1 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 29.4.1 + jest-circus: 29.5.0 jest-environment-node: 29.3.1 - jest-get-type: 29.2.0 - jest-regex-util: 29.2.0 + jest-get-type: 29.4.3 + jest-regex-util: 29.4.3 jest-resolve: 29.3.1 - jest-runner: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 + jest-runner: 29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.4.1 + pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: true - /jest-config/29.4.1_@types+node@14.18.36: - resolution: {integrity: sha512-g7p3q4NuXiM4hrS4XFATTkd+2z0Ml2RhFmFPM8c3WyKwVDNszbl4E7cV7WIx1YZeqqCtqbtTtZhGZWJlJqngzg==} + /jest-config/29.5.0_@types+node@14.18.36: + resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@types/node': '*' @@ -15758,31 +15772,30 @@ packages: optional: true dependencies: '@babel/core': 7.20.12 - '@jest/test-sequencer': 29.4.1_@types+node@14.18.36 - '@jest/types': 29.4.1 + '@jest/test-sequencer': 29.5.0_@types+node@14.18.36 + '@jest/types': 29.5.0 '@types/node': 14.18.36 - babel-jest: 29.4.1_@babel+core@7.20.12 + babel-jest: 29.5.0_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.7.1 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 29.4.1 - jest-environment-node: 29.4.1 - jest-get-type: 29.2.0 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-runner: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 + jest-circus: 29.5.0 + jest-environment-node: 29.5.0 + jest-get-type: 29.4.3 + jest-regex-util: 29.4.3 + jest-resolve: 29.5.0 + jest-runner: 29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.4.1 + pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true /jest-diff/27.5.1: resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} @@ -15794,14 +15807,14 @@ packages: pretty-format: 27.5.1 dev: true - /jest-diff/29.4.1: - resolution: {integrity: sha512-uazdl2g331iY56CEyfbNA0Ut7Mn2ulAG5vUaEHXycf1L6IPyuImIxSz4F0VYBKi7LYIuxOwTZzK3wh5jHzASMw==} + /jest-diff/29.5.0: + resolution: {integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - diff-sequences: 29.3.1 - jest-get-type: 29.2.0 - pretty-format: 29.4.1 + diff-sequences: 29.4.3 + jest-get-type: 29.4.3 + pretty-format: 29.5.0 /jest-docblock/27.5.1: resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} @@ -15810,8 +15823,8 @@ packages: detect-newline: 3.1.0 dev: true - /jest-docblock/29.2.0: - resolution: {integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==} + /jest-docblock/29.4.3: + resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 @@ -15827,15 +15840,15 @@ packages: pretty-format: 27.5.1 dev: true - /jest-each/29.4.1: - resolution: {integrity: sha512-QlYFiX3llJMWUV0BtWht/esGEz9w+0i7BHwODKCze7YzZzizgExB9MOfiivF/vVT0GSQ8wXLhvHXh3x2fVD4QQ==} + /jest-each/29.5.0: + resolution: {integrity: sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 chalk: 4.1.2 - jest-get-type: 29.2.0 - jest-util: 29.4.1 - pretty-format: 29.4.1 + jest-get-type: 29.4.3 + jest-util: 29.5.0 + pretty-format: 29.5.0 /jest-environment-jsdom/27.5.1: resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} @@ -15855,8 +15868,8 @@ packages: - utf-8-validate dev: true - /jest-environment-jsdom/29.3.1: - resolution: {integrity: sha512-G46nKgiez2Gy4zvYNhayfMEAFlVHhWfncqvqS6yCd0i+a4NsSUD2WtrKSaYQrYiLQaupHXxCRi8xxVL2M9PbhA==} + /jest-environment-jsdom/29.5.0: + resolution: {integrity: sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: canvas: ^2.5.0 @@ -15864,13 +15877,13 @@ packages: canvas: optional: true dependencies: - '@jest/environment': 29.4.1 - '@jest/fake-timers': 29.4.1 - '@jest/types': 29.3.1 + '@jest/environment': 29.5.0 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 '@types/jsdom': 20.0.1 '@types/node': 14.18.36 - jest-mock: 29.4.1 - jest-util: 29.4.1 + jest-mock: 29.5.0 + jest-util: 29.5.0 jsdom: 20.0.3 transitivePeerDependencies: - bufferutil @@ -15905,31 +15918,32 @@ packages: resolution: {integrity: sha512-xm2THL18Xf5sIHoU7OThBPtuH6Lerd+Y1NLYiZJlkE3hbE+7N7r8uvHIl/FkZ5ymKXJe/11SQuf3fv4v6rUMag==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.4.1 - '@jest/fake-timers': 29.4.1 + '@jest/environment': 29.5.0 + '@jest/fake-timers': 29.5.0 '@jest/types': 29.3.1 '@types/node': 14.18.36 - jest-mock: 29.4.1 - jest-util: 29.4.1 + jest-mock: 29.5.0 + jest-util: 29.5.0 + dev: true - /jest-environment-node/29.4.1: - resolution: {integrity: sha512-x/H2kdVgxSkxWAIlIh9MfMuBa0hZySmfsC5lCsWmWr6tZySP44ediRKDUiNggX/eHLH7Cd5ZN10Rw+XF5tXsqg==} + /jest-environment-node/29.5.0: + resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.4.1 - '@jest/fake-timers': 29.4.1 - '@jest/types': 29.4.1 + '@jest/environment': 29.5.0 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 14.18.36 - jest-mock: 29.4.1 - jest-util: 29.4.1 + jest-mock: 29.5.0 + jest-util: 29.5.0 /jest-get-type/27.5.1: resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /jest-get-type/29.2.0: - resolution: {integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==} + /jest-get-type/29.4.3: + resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} /jest-haste-map/26.6.2: @@ -15973,19 +15987,19 @@ packages: fsevents: 2.3.2 dev: true - /jest-haste-map/29.4.1: - resolution: {integrity: sha512-imTjcgfVVTvg02khXL11NNLTx9ZaofbAWhilrMg/G8dIkp+HYCswhxf0xxJwBkfhWb3e8dwbjuWburvxmcr58w==} + /jest-haste-map/29.5.0: + resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@types/graceful-fs': 4.1.6 '@types/node': 14.18.36 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 - jest-regex-util: 29.2.0 - jest-util: 29.4.1 - jest-worker: 29.4.1 + jest-regex-util: 29.4.3 + jest-util: 29.5.0 + jest-worker: 29.5.0 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: @@ -16024,12 +16038,12 @@ packages: pretty-format: 27.5.1 dev: true - /jest-leak-detector/29.4.1: - resolution: {integrity: sha512-akpZv7TPyGMnH2RimOCgy+hPmWZf55EyFUvymQ4LMsQP8xSPlZumCPtXGoDhFNhUE2039RApZkTQDKU79p/FiQ==} + /jest-leak-detector/29.5.0: + resolution: {integrity: sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - jest-get-type: 29.2.0 - pretty-format: 29.4.1 + jest-get-type: 29.4.3 + pretty-format: 29.5.0 /jest-matcher-utils/27.5.1: resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} @@ -16041,14 +16055,14 @@ packages: pretty-format: 27.5.1 dev: true - /jest-matcher-utils/29.4.1: - resolution: {integrity: sha512-k5h0u8V4nAEy6lSACepxL/rw78FLDkBnXhZVgFneVpnJONhb2DhZj/Gv4eNe+1XqQ5IhgUcqj745UwH0HJmMnA==} + /jest-matcher-utils/29.5.0: + resolution: {integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 29.4.1 - jest-get-type: 29.2.0 - pretty-format: 29.4.1 + jest-diff: 29.5.0 + jest-get-type: 29.4.3 + pretty-format: 29.5.0 /jest-message-util/27.5.1: resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} @@ -16065,17 +16079,17 @@ packages: stack-utils: 2.0.6 dev: true - /jest-message-util/29.4.1: - resolution: {integrity: sha512-H4/I0cXUaLeCw6FM+i4AwCnOwHRgitdaUFOdm49022YD5nfyr8C/DrbXOBEyJaj+w/y0gGJ57klssOaUiLLQGQ==} + /jest-message-util/29.5.0: + resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/code-frame': 7.18.6 - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.10 micromatch: 4.0.5 - pretty-format: 29.4.1 + pretty-format: 29.5.0 slash: 3.0.0 stack-utils: 2.0.6 @@ -16087,13 +16101,13 @@ packages: '@types/node': 14.18.36 dev: true - /jest-mock/29.4.1: - resolution: {integrity: sha512-MwA4hQ7zBOcgVCVnsM8TzaFLVUD/pFWTfbkY953Y81L5ret3GFRZtmPmRFAjKQSdCKoJvvqOu6Bvfpqlwwb0dQ==} + /jest-mock/29.5.0: + resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@types/node': 14.18.36 - jest-util: 29.4.1 + jest-util: 29.5.0 /jest-pnp-resolver/1.2.3_jest-resolve@27.4.6: resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -16129,8 +16143,9 @@ packages: optional: true dependencies: jest-resolve: 29.3.1 + dev: true - /jest-pnp-resolver/1.2.3_jest-resolve@29.4.1: + /jest-pnp-resolver/1.2.3_jest-resolve@29.5.0: resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -16139,7 +16154,7 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 29.4.1 + jest-resolve: 29.5.0 /jest-regex-util/26.0.0: resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} @@ -16151,8 +16166,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /jest-regex-util/29.2.0: - resolution: {integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==} + /jest-regex-util/29.4.3: + resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} /jest-resolve-dependencies/27.5.1: @@ -16166,12 +16181,12 @@ packages: - supports-color dev: true - /jest-resolve-dependencies/29.4.1: - resolution: {integrity: sha512-Y3QG3M1ncAMxfjbYgtqNXC5B595zmB6e//p/qpA/58JkQXu/IpLDoLeOa8YoYfsSglBKQQzNUqtfGJJT/qLmJg==} + /jest-resolve-dependencies/29.5.0: + resolution: {integrity: sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - jest-regex-util: 29.2.0 - jest-snapshot: 29.4.1 + jest-regex-util: 29.4.3 + jest-snapshot: 29.5.0 transitivePeerDependencies: - supports-color @@ -16213,24 +16228,25 @@ packages: dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 + jest-haste-map: 29.5.0 jest-pnp-resolver: 1.2.3_jest-resolve@29.3.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 + jest-util: 29.5.0 + jest-validate: 29.5.0 resolve: 1.22.1 resolve.exports: 1.1.1 slash: 3.0.0 + dev: true - /jest-resolve/29.4.1: - resolution: {integrity: sha512-j/ZFNV2lm9IJ2wmlq1uYK0Y/1PiyDq9g4HEGsNTNr3viRbJdV+8Lf1SXIiLZXFvyiisu0qUyIXGBnw+OKWkJwQ==} + /jest-resolve/29.5.0: + resolution: {integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-pnp-resolver: 1.2.3_jest-resolve@29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 + jest-haste-map: 29.5.0 + jest-pnp-resolver: 1.2.3_jest-resolve@29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 resolve: 1.22.1 resolve.exports: 2.0.0 slash: 3.0.0 @@ -16267,29 +16283,29 @@ packages: - utf-8-validate dev: true - /jest-runner/29.4.1: - resolution: {integrity: sha512-8d6XXXi7GtHmsHrnaqBKWxjKb166Eyj/ksSaUYdcBK09VbjPwIgWov1VwSmtupCIz8q1Xv4Qkzt/BTo3ZqiCeg==} + /jest-runner/29.5.0: + resolution: {integrity: sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.4.1 - '@jest/environment': 29.4.1 - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 + '@jest/console': 29.5.0 + '@jest/environment': 29.5.0 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/transform': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 14.18.36 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.10 - jest-docblock: 29.2.0 - jest-environment-node: 29.4.1 - jest-haste-map: 29.4.1 - jest-leak-detector: 29.4.1 - jest-message-util: 29.4.1 - jest-resolve: 29.4.1 - jest-runtime: 29.4.1 - jest-util: 29.4.1 - jest-watcher: 29.4.1 - jest-worker: 29.4.1 + jest-docblock: 29.4.3 + jest-environment-node: 29.5.0 + jest-haste-map: 29.5.0 + jest-leak-detector: 29.5.0 + jest-message-util: 29.5.0 + jest-resolve: 29.5.0 + jest-runtime: 29.5.0 + jest-util: 29.5.0 + jest-watcher: 29.5.0 + jest-worker: 29.5.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: @@ -16326,31 +16342,30 @@ packages: - supports-color dev: true - /jest-runtime/29.4.1: - resolution: {integrity: sha512-UXTMU9uKu2GjYwTtoAw5rn4STxWw/nadOfW7v1sx6LaJYa3V/iymdCLQM6xy3+7C6mY8GfX22vKpgxY171UIoA==} + /jest-runtime/29.5.0: + resolution: {integrity: sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.4.1 - '@jest/fake-timers': 29.4.1 - '@jest/globals': 29.4.1 - '@jest/source-map': 29.2.0 - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 + '@jest/environment': 29.5.0 + '@jest/fake-timers': 29.5.0 + '@jest/globals': 29.5.0 + '@jest/source-map': 29.4.3 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/transform': 29.5.0 + '@jest/types': 29.5.0 '@types/node': 14.18.36 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1_@types+node@14.18.36 glob: 7.2.3 graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-message-util: 29.4.1 - jest-mock: 29.4.1 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 - semver: 7.3.8 + jest-haste-map: 29.5.0 + jest-message-util: 29.5.0 + jest-mock: 29.5.0 + jest-regex-util: 29.4.3 + jest-resolve: 29.5.0 + jest-snapshot: 29.5.0 + jest-util: 29.5.0 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: @@ -16442,29 +16457,30 @@ packages: '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12 '@babel/traverse': 7.20.13 '@babel/types': 7.20.7 - '@jest/expect-utils': 29.4.1 + '@jest/expect-utils': 29.5.0 '@jest/transform': 29.3.1 '@jest/types': 29.3.1 '@types/babel__traverse': 7.18.3 '@types/prettier': 2.7.2 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 chalk: 4.1.2 - expect: 29.4.1 + expect: 29.5.0 graceful-fs: 4.2.10 - jest-diff: 29.4.1 - jest-get-type: 29.2.0 - jest-haste-map: 29.4.1 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-util: 29.4.1 + jest-diff: 29.5.0 + jest-get-type: 29.4.3 + jest-haste-map: 29.5.0 + jest-matcher-utils: 29.5.0 + jest-message-util: 29.5.0 + jest-util: 29.5.0 natural-compare: 1.4.0 - pretty-format: 29.4.1 + pretty-format: 29.5.0 semver: 7.3.8 transitivePeerDependencies: - supports-color + dev: true - /jest-snapshot/29.4.1: - resolution: {integrity: sha512-l4iV8EjGgQWVz3ee/LR9sULDk2pCkqb71bjvlqn+qp90lFwpnulHj4ZBT8nm1hA1C5wowXLc7MGnw321u0tsYA==} + /jest-snapshot/29.5.0: + resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.20.12 @@ -16473,23 +16489,22 @@ packages: '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12 '@babel/traverse': 7.20.13 '@babel/types': 7.20.7 - '@jest/expect-utils': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 + '@jest/expect-utils': 29.5.0 + '@jest/transform': 29.5.0 + '@jest/types': 29.5.0 '@types/babel__traverse': 7.18.3 '@types/prettier': 2.7.2 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 chalk: 4.1.2 - expect: 29.4.1 + expect: 29.5.0 graceful-fs: 4.2.10 - jest-diff: 29.4.1 - jest-get-type: 29.2.0 - jest-haste-map: 29.4.1 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-util: 29.4.1 + jest-diff: 29.5.0 + jest-get-type: 29.4.3 + jest-matcher-utils: 29.5.0 + jest-message-util: 29.5.0 + jest-util: 29.5.0 natural-compare: 1.4.0 - pretty-format: 29.4.1 + pretty-format: 29.5.0 semver: 7.3.8 transitivePeerDependencies: - supports-color @@ -16518,11 +16533,11 @@ packages: picomatch: 2.3.1 dev: true - /jest-util/29.4.1: - resolution: {integrity: sha512-bQy9FPGxVutgpN4VRc0hk6w7Hx/m6L53QxpDreTZgJd9gfx/AV2MjyPde9tGyZRINAUrSv57p2inGBu2dRLmkQ==} + /jest-util/29.5.0: + resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 '@types/node': 14.18.36 chalk: 4.1.2 ci-info: 3.7.1 @@ -16541,16 +16556,16 @@ packages: pretty-format: 27.5.1 dev: true - /jest-validate/29.4.1: - resolution: {integrity: sha512-qNZXcZQdIQx4SfUB/atWnI4/I2HUvhz8ajOSYUu40CSmf9U5emil8EDHgE7M+3j9/pavtk3knlZBDsgFvv/SWw==} + /jest-validate/29.5.0: + resolution: {integrity: sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.1 + '@jest/types': 29.5.0 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 29.2.0 + jest-get-type: 29.4.3 leven: 3.1.0 - pretty-format: 29.4.1 + pretty-format: 29.5.0 /jest-watch-select-projects/2.0.0: resolution: {integrity: sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==} @@ -16573,17 +16588,17 @@ packages: string-length: 4.0.2 dev: true - /jest-watcher/29.4.1: - resolution: {integrity: sha512-vFOzflGFs27nU6h8dpnVRER3O2rFtL+VMEwnG0H3KLHcllLsU8y9DchSh0AL/Rg5nN1/wSiQ+P4ByMGpuybaVw==} + /jest-watcher/29.5.0: + resolution: {integrity: sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.4.1_@types+node@14.18.36 - '@jest/types': 29.4.1 + '@jest/test-result': 29.5.0_@types+node@14.18.36 + '@jest/types': 29.5.0 '@types/node': 14.18.36 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 29.4.1 + jest-util: 29.5.0 string-length: 4.0.2 /jest-worker/26.6.2: @@ -16603,12 +16618,12 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker/29.4.1: - resolution: {integrity: sha512-O9doU/S1EBe+yp/mstQ0VpPwpv0Clgn68TkNwGxL6/usX/KUW9Arnn4ag8C3jc6qHcXznhsT5Na1liYzAsuAbQ==} + /jest-worker/29.5.0: + resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/node': 14.18.36 - jest-util: 29.4.1 + jest-util: 29.5.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -19140,7 +19155,15 @@ packages: resolution: {integrity: sha512-dt/Z761JUVsrIKaY215o1xQJBGlSmTx/h4cSqXqjHLnU1+Kt+mavVE7UgqJJO5ukx5HjSswHfmXz4LjS2oIJfg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.4.0 + '@jest/schemas': 29.4.3 + ansi-styles: 5.2.0 + react-is: 18.2.0 + + /pretty-format/29.5.0: + resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.4.3 ansi-styles: 5.2.0 react-is: 18.2.0 @@ -19341,6 +19364,9 @@ packages: - supports-color dev: true + /pure-rand/6.0.1: + resolution: {integrity: sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==} + /q/1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} @@ -20122,6 +20148,7 @@ packages: /resolve.exports/1.1.1: resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} engines: {node: '>=10'} + dev: true /resolve.exports/2.0.0: resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==} @@ -22970,13 +22997,6 @@ packages: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /write-file-atomic/5.0.0: - resolution: {integrity: sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - /write-yaml-file/4.2.0: resolution: {integrity: sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==} engines: {node: '>=10.13'} diff --git a/common/config/rush/repo-state.json b/common/config/rush/repo-state.json index 9d0e76159ca..2962cb722a1 100644 --- a/common/config/rush/repo-state.json +++ b/common/config/rush/repo-state.json @@ -1,5 +1,5 @@ // DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush. { - "pnpmShrinkwrapHash": "b7c7c11ce97089924eb38eb913f8062e986ae06a", + "pnpmShrinkwrapHash": "44448db3c48f8cae11b033e65e85efa3f8338ae1", "preferredVersionsHash": "5222ca779ae69ebfd201e39c17f48ce9eaf8c3c2" } From c0b29979780307696d89e5f16e383b150290d9ef Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Tue, 4 Apr 2023 20:08:43 +0000 Subject: [PATCH 07/20] install-test-workspace --- .../workspace/common/pnpm-lock.yaml | 76 +++++++++---------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml b/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml index 848844916e9..bd8fc404c69 100644 --- a/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml +++ b/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml @@ -4,13 +4,13 @@ importers: rush-lib-test: specifiers: - '@microsoft/rush-lib': file:microsoft-rush-lib-5.93.1.tgz + '@microsoft/rush-lib': file:microsoft-rush-lib-5.96.0.tgz '@types/node': 14.18.36 colors: ^1.4.0 rimraf: ^4.1.2 typescript: ~4.8.4 dependencies: - '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.93.1.tgz_@types+node@14.18.36 + '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz_@types+node@14.18.36 colors: 1.4.0 devDependencies: '@types/node': 14.18.36 @@ -19,17 +19,17 @@ importers: rush-sdk-test: specifiers: - '@microsoft/rush-lib': file:microsoft-rush-lib-5.93.1.tgz - '@rushstack/rush-sdk': file:rushstack-rush-sdk-5.93.1.tgz + '@microsoft/rush-lib': file:microsoft-rush-lib-5.96.0.tgz + '@rushstack/rush-sdk': file:rushstack-rush-sdk-5.96.0.tgz '@types/node': 14.18.36 colors: ^1.4.0 rimraf: ^4.1.2 typescript: ~4.8.4 dependencies: - '@rushstack/rush-sdk': file:../temp/tarballs/rushstack-rush-sdk-5.93.1.tgz_@types+node@14.18.36 + '@rushstack/rush-sdk': file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz_@types+node@14.18.36 colors: 1.4.0 devDependencies: - '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.93.1.tgz_@types+node@14.18.36 + '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz_@types+node@14.18.36 '@types/node': 14.18.36 rimraf: 4.1.2 typescript: 4.8.4 @@ -37,13 +37,13 @@ importers: typescript-newest-test: specifiers: '@rushstack/eslint-config': file:rushstack-eslint-config-3.2.0.tgz - '@rushstack/heft': file:rushstack-heft-0.49.7.tgz + '@rushstack/heft': file:rushstack-heft-0.50.0.tgz eslint: ~8.7.0 tslint: ~5.20.1 typescript: ~4.8.4 devDependencies: '@rushstack/eslint-config': file:../temp/tarballs/rushstack-eslint-config-3.2.0.tgz_esueefhpt5ql6xiqdj4wcgwfzi - '@rushstack/heft': file:../temp/tarballs/rushstack-heft-0.49.7.tgz + '@rushstack/heft': file:../temp/tarballs/rushstack-heft-0.50.0.tgz eslint: 8.7.0 tslint: 5.20.1_typescript@4.8.4 typescript: 4.8.4 @@ -51,13 +51,13 @@ importers: typescript-v3-test: specifiers: '@rushstack/eslint-config': file:rushstack-eslint-config-3.2.0.tgz - '@rushstack/heft': file:rushstack-heft-0.49.7.tgz + '@rushstack/heft': file:rushstack-heft-0.50.0.tgz eslint: ~8.7.0 tslint: ~5.20.1 typescript: ~4.8.4 devDependencies: '@rushstack/eslint-config': file:../temp/tarballs/rushstack-eslint-config-3.2.0.tgz_esueefhpt5ql6xiqdj4wcgwfzi - '@rushstack/heft': file:../temp/tarballs/rushstack-heft-0.49.7.tgz + '@rushstack/heft': file:../temp/tarballs/rushstack-heft-0.50.0.tgz eslint: 8.7.0 tslint: 5.20.1_typescript@4.8.4 typescript: 4.8.4 @@ -977,7 +977,7 @@ packages: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} /concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} /configstore/5.0.1: resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} @@ -3653,20 +3653,20 @@ packages: optionalDependencies: commander: 2.20.3 - file:../temp/tarballs/microsoft-rush-lib-5.93.1.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/microsoft-rush-lib-5.93.1.tgz} - id: file:../temp/tarballs/microsoft-rush-lib-5.93.1.tgz + file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz} + id: file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz name: '@microsoft/rush-lib' - version: 5.93.1 + version: 5.96.0 engines: {node: '>=5.6.0'} dependencies: '@pnpm/link-bins': 5.3.25 '@rushstack/heft-config-file': file:../temp/tarballs/rushstack-heft-config-file-0.11.9.tgz_@types+node@14.18.36 '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 - '@rushstack/package-deps-hash': file:../temp/tarballs/rushstack-package-deps-hash-4.0.8.tgz_@types+node@14.18.36 + '@rushstack/package-deps-hash': file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz_@types+node@14.18.36 '@rushstack/rig-package': file:../temp/tarballs/rushstack-rig-package-0.3.18.tgz - '@rushstack/stream-collator': file:../temp/tarballs/rushstack-stream-collator-4.0.227.tgz_@types+node@14.18.36 - '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.2.tgz_@types+node@14.18.36 + '@rushstack/stream-collator': file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz_@types+node@14.18.36 + '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.3.tgz_@types+node@14.18.36 '@rushstack/ts-command-line': file:../temp/tarballs/rushstack-ts-command-line-4.13.2.tgz '@types/node-fetch': 2.6.2 '@yarnpkg/lockfile': 1.0.2 @@ -3782,10 +3782,10 @@ packages: - typescript dev: true - file:../temp/tarballs/rushstack-heft-0.49.7.tgz: - resolution: {tarball: file:../temp/tarballs/rushstack-heft-0.49.7.tgz} + file:../temp/tarballs/rushstack-heft-0.50.0.tgz: + resolution: {tarball: file:../temp/tarballs/rushstack-heft-0.50.0.tgz} name: '@rushstack/heft' - version: 0.49.7 + version: 0.50.0 engines: {node: '>=10.13.0'} hasBin: true dependencies: @@ -3872,11 +3872,11 @@ packages: semver: 7.3.8 z-schema: 5.0.3 - file:../temp/tarballs/rushstack-package-deps-hash-4.0.8.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-package-deps-hash-4.0.8.tgz} - id: file:../temp/tarballs/rushstack-package-deps-hash-4.0.8.tgz + file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz} + id: file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz name: '@rushstack/package-deps-hash' - version: 4.0.8 + version: 4.0.10 dependencies: '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 transitivePeerDependencies: @@ -3890,11 +3890,11 @@ packages: resolve: 1.22.1 strip-json-comments: 3.1.1 - file:../temp/tarballs/rushstack-rush-sdk-5.93.1.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-rush-sdk-5.93.1.tgz} - id: file:../temp/tarballs/rushstack-rush-sdk-5.93.1.tgz + file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz} + id: file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz name: '@rushstack/rush-sdk' - version: 5.93.1 + version: 5.96.0 dependencies: '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 '@types/node-fetch': 2.6.2 @@ -3903,22 +3903,22 @@ packages: - '@types/node' dev: false - file:../temp/tarballs/rushstack-stream-collator-4.0.227.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-stream-collator-4.0.227.tgz} - id: file:../temp/tarballs/rushstack-stream-collator-4.0.227.tgz + file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz} + id: file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz name: '@rushstack/stream-collator' - version: 4.0.227 + version: 4.0.228 dependencies: '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 - '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.2.tgz_@types+node@14.18.36 + '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.3.tgz_@types+node@14.18.36 transitivePeerDependencies: - '@types/node' - file:../temp/tarballs/rushstack-terminal-0.5.2.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-terminal-0.5.2.tgz} - id: file:../temp/tarballs/rushstack-terminal-0.5.2.tgz + file:../temp/tarballs/rushstack-terminal-0.5.3.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-terminal-0.5.3.tgz} + id: file:../temp/tarballs/rushstack-terminal-0.5.3.tgz name: '@rushstack/terminal' - version: 0.5.2 + version: 0.5.3 peerDependencies: '@types/node': '*' peerDependenciesMeta: From 53093681b2a65772324ee16d664d3a5e355528d1 Mon Sep 17 00:00:00 2001 From: Rushbot Date: Tue, 4 Apr 2023 22:36:29 +0000 Subject: [PATCH 08/20] Update changelogs [skip ci] --- apps/api-documenter/CHANGELOG.json | 12 ++++++++++ apps/api-documenter/CHANGELOG.md | 7 +++++- apps/lockfile-explorer/CHANGELOG.json | 12 ++++++++++ apps/lockfile-explorer/CHANGELOG.md | 7 +++++- apps/rundown/CHANGELOG.json | 12 ++++++++++ apps/rundown/CHANGELOG.md | 7 +++++- apps/trace-import/CHANGELOG.json | 12 ++++++++++ apps/trace-import/CHANGELOG.md | 7 +++++- ...inn-jest-latest-bump_2023-04-04-20-04.json | 10 -------- ...inn-jest-latest-bump_2023-04-04-20-04.json | 10 -------- ...inn-jest-latest-bump_2023-04-04-20-04.json | 10 -------- .../heft-dev-cert-plugin/CHANGELOG.json | 15 ++++++++++++ .../heft-dev-cert-plugin/CHANGELOG.md | 7 +++++- heft-plugins/heft-jest-plugin/CHANGELOG.json | 12 ++++++++++ heft-plugins/heft-jest-plugin/CHANGELOG.md | 9 +++++++- heft-plugins/heft-sass-plugin/CHANGELOG.json | 15 ++++++++++++ heft-plugins/heft-sass-plugin/CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 12 ++++++++++ .../heft-serverless-stack-plugin/CHANGELOG.md | 7 +++++- .../heft-storybook-plugin/CHANGELOG.json | 12 ++++++++++ .../heft-storybook-plugin/CHANGELOG.md | 7 +++++- .../heft-webpack4-plugin/CHANGELOG.json | 12 ++++++++++ .../heft-webpack4-plugin/CHANGELOG.md | 7 +++++- .../heft-webpack5-plugin/CHANGELOG.json | 12 ++++++++++ .../heft-webpack5-plugin/CHANGELOG.md | 7 +++++- .../debug-certificate-manager/CHANGELOG.json | 12 ++++++++++ .../debug-certificate-manager/CHANGELOG.md | 7 +++++- libraries/load-themed-styles/CHANGELOG.json | 12 ++++++++++ libraries/load-themed-styles/CHANGELOG.md | 7 +++++- .../localization-utilities/CHANGELOG.json | 15 ++++++++++++ libraries/localization-utilities/CHANGELOG.md | 7 +++++- libraries/module-minifier/CHANGELOG.json | 15 ++++++++++++ libraries/module-minifier/CHANGELOG.md | 7 +++++- libraries/package-deps-hash/CHANGELOG.json | 12 ++++++++++ libraries/package-deps-hash/CHANGELOG.md | 7 +++++- libraries/stream-collator/CHANGELOG.json | 15 ++++++++++++ libraries/stream-collator/CHANGELOG.md | 7 +++++- libraries/terminal/CHANGELOG.json | 12 ++++++++++ libraries/terminal/CHANGELOG.md | 7 +++++- libraries/typings-generator/CHANGELOG.json | 12 ++++++++++ libraries/typings-generator/CHANGELOG.md | 7 +++++- libraries/worker-pool/CHANGELOG.json | 12 ++++++++++ libraries/worker-pool/CHANGELOG.md | 7 +++++- rigs/heft-node-rig/CHANGELOG.json | 17 ++++++++++++++ rigs/heft-node-rig/CHANGELOG.md | 9 +++++++- rigs/heft-web-rig/CHANGELOG.json | 23 +++++++++++++++++++ rigs/heft-web-rig/CHANGELOG.md | 9 +++++++- rush-plugins/rush-serve-plugin/CHANGELOG.json | 15 ++++++++++++ rush-plugins/rush-serve-plugin/CHANGELOG.md | 7 +++++- .../hashed-folder-copy-plugin/CHANGELOG.json | 18 +++++++++++++++ .../hashed-folder-copy-plugin/CHANGELOG.md | 7 +++++- .../loader-load-themed-styles/CHANGELOG.json | 18 +++++++++++++++ .../loader-load-themed-styles/CHANGELOG.md | 7 +++++- webpack/loader-raw-script/CHANGELOG.json | 12 ++++++++++ webpack/loader-raw-script/CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 12 ++++++++++ .../CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 18 +++++++++++++++ .../CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 15 ++++++++++++ .../CHANGELOG.md | 7 +++++- .../webpack-plugin-utilities/CHANGELOG.json | 12 ++++++++++ webpack/webpack-plugin-utilities/CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 21 +++++++++++++++++ .../webpack4-localization-plugin/CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 18 +++++++++++++++ .../CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 18 +++++++++++++++ .../CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 15 ++++++++++++ .../webpack5-localization-plugin/CHANGELOG.md | 7 +++++- .../CHANGELOG.json | 21 +++++++++++++++++ .../CHANGELOG.md | 7 +++++- 73 files changed, 724 insertions(+), 65 deletions(-) delete mode 100644 common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json delete mode 100644 common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json delete mode 100644 common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json diff --git a/apps/api-documenter/CHANGELOG.json b/apps/api-documenter/CHANGELOG.json index 29847fe0c2f..03934691cb1 100644 --- a/apps/api-documenter/CHANGELOG.json +++ b/apps/api-documenter/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@microsoft/api-documenter", "entries": [ + { + "version": "7.21.7", + "tag": "@microsoft/api-documenter_v7.21.7", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "7.21.6", "tag": "@microsoft/api-documenter_v7.21.6", diff --git a/apps/api-documenter/CHANGELOG.md b/apps/api-documenter/CHANGELOG.md index d7e13ecf252..19de2f8b1a4 100644 --- a/apps/api-documenter/CHANGELOG.md +++ b/apps/api-documenter/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/api-documenter -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 7.21.7 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 7.21.6 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/apps/lockfile-explorer/CHANGELOG.json b/apps/lockfile-explorer/CHANGELOG.json index 635c791aefc..b35594810b8 100644 --- a/apps/lockfile-explorer/CHANGELOG.json +++ b/apps/lockfile-explorer/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/lockfile-explorer", "entries": [ + { + "version": "1.0.10", + "tag": "@rushstack/lockfile-explorer_v1.0.10", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "1.0.9", "tag": "@rushstack/lockfile-explorer_v1.0.9", diff --git a/apps/lockfile-explorer/CHANGELOG.md b/apps/lockfile-explorer/CHANGELOG.md index e942ef4e1d5..b336a461987 100644 --- a/apps/lockfile-explorer/CHANGELOG.md +++ b/apps/lockfile-explorer/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/lockfile-explorer -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 1.0.10 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 1.0.9 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/apps/rundown/CHANGELOG.json b/apps/rundown/CHANGELOG.json index 6ccf81f46b6..9f8070c39d5 100644 --- a/apps/rundown/CHANGELOG.json +++ b/apps/rundown/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/rundown", "entries": [ + { + "version": "1.0.244", + "tag": "@rushstack/rundown_v1.0.244", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "1.0.243", "tag": "@rushstack/rundown_v1.0.243", diff --git a/apps/rundown/CHANGELOG.md b/apps/rundown/CHANGELOG.md index 33d112b7250..72d4283d7f3 100644 --- a/apps/rundown/CHANGELOG.md +++ b/apps/rundown/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/rundown -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 1.0.244 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 1.0.243 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/apps/trace-import/CHANGELOG.json b/apps/trace-import/CHANGELOG.json index 457bdd023fd..14228e737ca 100644 --- a/apps/trace-import/CHANGELOG.json +++ b/apps/trace-import/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/trace-import", "entries": [ + { + "version": "0.1.13", + "tag": "@rushstack/trace-import_v0.1.13", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.1.12", "tag": "@rushstack/trace-import_v0.1.12", diff --git a/apps/trace-import/CHANGELOG.md b/apps/trace-import/CHANGELOG.md index 2da252e03ef..8f7181ec143 100644 --- a/apps/trace-import/CHANGELOG.md +++ b/apps/trace-import/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/trace-import -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.1.13 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.1.12 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json b/common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json deleted file mode 100644 index 8bd842604d3..00000000000 --- a/common/changes/@rushstack/heft-jest-plugin/thelarkinn-jest-latest-bump_2023-04-04-20-04.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-jest-plugin", - "comment": "Upgrade Jest to 29.5.0.", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-jest-plugin" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json b/common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json deleted file mode 100644 index cd62544b553..00000000000 --- a/common/changes/@rushstack/heft-node-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-node-rig", - "comment": "Upgrade Jest to 29.5.0.", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-node-rig" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json b/common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json deleted file mode 100644 index 12c211929b1..00000000000 --- a/common/changes/@rushstack/heft-web-rig/thelarkinn-jest-latest-bump_2023-04-04-20-04.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-web-rig", - "comment": "Upgrade Jest to 29.5.0.", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-web-rig" -} \ No newline at end of file diff --git a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json index e18d2fac841..b87778ee0a7 100644 --- a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json +++ b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/heft-dev-cert-plugin", "entries": [ + { + "version": "0.2.21", + "tag": "@rushstack/heft-dev-cert-plugin_v0.2.21", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/debug-certificate-manager\" to `1.2.20`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.2.20", "tag": "@rushstack/heft-dev-cert-plugin_v0.2.20", diff --git a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md index 31f084f05a5..445d4d6e2c1 100644 --- a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md +++ b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-dev-cert-plugin -This log was last generated on Mon, 20 Mar 2023 20:14:20 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.2.21 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.2.20 Mon, 20 Mar 2023 20:14:20 GMT diff --git a/heft-plugins/heft-jest-plugin/CHANGELOG.json b/heft-plugins/heft-jest-plugin/CHANGELOG.json index d1565b29ef8..09ad00dd5e3 100644 --- a/heft-plugins/heft-jest-plugin/CHANGELOG.json +++ b/heft-plugins/heft-jest-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-jest-plugin", "entries": [ + { + "version": "0.5.6", + "tag": "@rushstack/heft-jest-plugin_v0.5.6", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "patch": [ + { + "comment": "Upgrade Jest to 29.5.0." + } + ] + } + }, { "version": "0.5.5", "tag": "@rushstack/heft-jest-plugin_v0.5.5", diff --git a/heft-plugins/heft-jest-plugin/CHANGELOG.md b/heft-plugins/heft-jest-plugin/CHANGELOG.md index debf9c0542a..228650988cf 100644 --- a/heft-plugins/heft-jest-plugin/CHANGELOG.md +++ b/heft-plugins/heft-jest-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-jest-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.5.6 +Tue, 04 Apr 2023 22:36:28 GMT + +### Patches + +- Upgrade Jest to 29.5.0. ## 0.5.5 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/heft-plugins/heft-sass-plugin/CHANGELOG.json b/heft-plugins/heft-sass-plugin/CHANGELOG.json index 038196f0743..c1434061fce 100644 --- a/heft-plugins/heft-sass-plugin/CHANGELOG.json +++ b/heft-plugins/heft-sass-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/heft-sass-plugin", "entries": [ + { + "version": "0.8.5", + "tag": "@rushstack/heft-sass-plugin_v0.8.5", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/typings-generator\" to `0.10.4`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.8.4", "tag": "@rushstack/heft-sass-plugin_v0.8.4", diff --git a/heft-plugins/heft-sass-plugin/CHANGELOG.md b/heft-plugins/heft-sass-plugin/CHANGELOG.md index 603873737a7..53af371d721 100644 --- a/heft-plugins/heft-sass-plugin/CHANGELOG.md +++ b/heft-plugins/heft-sass-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-sass-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.8.5 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.8.4 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.json b/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.json index f4702bec789..b751bf86cff 100644 --- a/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.json +++ b/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-serverless-stack-plugin", "entries": [ + { + "version": "0.1.70", + "tag": "@rushstack/heft-serverless-stack-plugin_v0.1.70", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.1.69", "tag": "@rushstack/heft-serverless-stack-plugin_v0.1.69", diff --git a/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.md b/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.md index 771d8e97e7c..4af0de5cd8b 100644 --- a/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.md +++ b/heft-plugins/heft-serverless-stack-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-serverless-stack-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.1.70 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.1.69 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/heft-plugins/heft-storybook-plugin/CHANGELOG.json b/heft-plugins/heft-storybook-plugin/CHANGELOG.json index a63222a7ad3..dca910acc71 100644 --- a/heft-plugins/heft-storybook-plugin/CHANGELOG.json +++ b/heft-plugins/heft-storybook-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-storybook-plugin", "entries": [ + { + "version": "0.2.5", + "tag": "@rushstack/heft-storybook-plugin_v0.2.5", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.2.4", "tag": "@rushstack/heft-storybook-plugin_v0.2.4", diff --git a/heft-plugins/heft-storybook-plugin/CHANGELOG.md b/heft-plugins/heft-storybook-plugin/CHANGELOG.md index de2e055ce76..b52e50aa6a9 100644 --- a/heft-plugins/heft-storybook-plugin/CHANGELOG.md +++ b/heft-plugins/heft-storybook-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-storybook-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.2.5 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.2.4 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/heft-plugins/heft-webpack4-plugin/CHANGELOG.json b/heft-plugins/heft-webpack4-plugin/CHANGELOG.json index 3a225f70358..768f6fa3a20 100644 --- a/heft-plugins/heft-webpack4-plugin/CHANGELOG.json +++ b/heft-plugins/heft-webpack4-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-webpack4-plugin", "entries": [ + { + "version": "0.5.41", + "tag": "@rushstack/heft-webpack4-plugin_v0.5.41", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.5.40", "tag": "@rushstack/heft-webpack4-plugin_v0.5.40", diff --git a/heft-plugins/heft-webpack4-plugin/CHANGELOG.md b/heft-plugins/heft-webpack4-plugin/CHANGELOG.md index 8929c037c4d..e97c1bce32d 100644 --- a/heft-plugins/heft-webpack4-plugin/CHANGELOG.md +++ b/heft-plugins/heft-webpack4-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-webpack4-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.5.41 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.5.40 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/heft-plugins/heft-webpack5-plugin/CHANGELOG.json b/heft-plugins/heft-webpack5-plugin/CHANGELOG.json index 0d6c31b2095..cc738dd2583 100644 --- a/heft-plugins/heft-webpack5-plugin/CHANGELOG.json +++ b/heft-plugins/heft-webpack5-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-webpack5-plugin", "entries": [ + { + "version": "0.6.2", + "tag": "@rushstack/heft-webpack5-plugin_v0.6.2", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.6.1", "tag": "@rushstack/heft-webpack5-plugin_v0.6.1", diff --git a/heft-plugins/heft-webpack5-plugin/CHANGELOG.md b/heft-plugins/heft-webpack5-plugin/CHANGELOG.md index da2cf4b3988..3a47af9cc34 100644 --- a/heft-plugins/heft-webpack5-plugin/CHANGELOG.md +++ b/heft-plugins/heft-webpack5-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-webpack5-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.6.2 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.6.1 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/debug-certificate-manager/CHANGELOG.json b/libraries/debug-certificate-manager/CHANGELOG.json index cdd41917cb1..b968160bef6 100644 --- a/libraries/debug-certificate-manager/CHANGELOG.json +++ b/libraries/debug-certificate-manager/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/debug-certificate-manager", "entries": [ + { + "version": "1.2.20", + "tag": "@rushstack/debug-certificate-manager_v1.2.20", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "1.2.19", "tag": "@rushstack/debug-certificate-manager_v1.2.19", diff --git a/libraries/debug-certificate-manager/CHANGELOG.md b/libraries/debug-certificate-manager/CHANGELOG.md index 355714dd147..70dd000a1bf 100644 --- a/libraries/debug-certificate-manager/CHANGELOG.md +++ b/libraries/debug-certificate-manager/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/debug-certificate-manager -This log was last generated on Mon, 20 Mar 2023 20:14:20 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 1.2.20 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 1.2.19 Mon, 20 Mar 2023 20:14:20 GMT diff --git a/libraries/load-themed-styles/CHANGELOG.json b/libraries/load-themed-styles/CHANGELOG.json index 1cc51f8cdfb..dd0cb9c8c5d 100644 --- a/libraries/load-themed-styles/CHANGELOG.json +++ b/libraries/load-themed-styles/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@microsoft/load-themed-styles", "entries": [ + { + "version": "2.0.32", + "tag": "@microsoft/load-themed-styles_v2.0.32", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-web-rig\" to `0.14.8`" + } + ] + } + }, { "version": "2.0.31", "tag": "@microsoft/load-themed-styles_v2.0.31", diff --git a/libraries/load-themed-styles/CHANGELOG.md b/libraries/load-themed-styles/CHANGELOG.md index 0a7ddc5e899..199f33951ea 100644 --- a/libraries/load-themed-styles/CHANGELOG.md +++ b/libraries/load-themed-styles/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/load-themed-styles -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 2.0.32 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 2.0.31 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/localization-utilities/CHANGELOG.json b/libraries/localization-utilities/CHANGELOG.json index 1915a617959..20e356911c7 100644 --- a/libraries/localization-utilities/CHANGELOG.json +++ b/libraries/localization-utilities/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/localization-utilities", "entries": [ + { + "version": "0.8.48", + "tag": "@rushstack/localization-utilities_v0.8.48", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/typings-generator\" to `0.10.4`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.8.47", "tag": "@rushstack/localization-utilities_v0.8.47", diff --git a/libraries/localization-utilities/CHANGELOG.md b/libraries/localization-utilities/CHANGELOG.md index 56ca9b67e0f..438110a7944 100644 --- a/libraries/localization-utilities/CHANGELOG.md +++ b/libraries/localization-utilities/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/localization-utilities -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.8.48 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.8.47 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/module-minifier/CHANGELOG.json b/libraries/module-minifier/CHANGELOG.json index 3d03bb415e9..dffbc194c08 100644 --- a/libraries/module-minifier/CHANGELOG.json +++ b/libraries/module-minifier/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/module-minifier", "entries": [ + { + "version": "0.3.4", + "tag": "@rushstack/module-minifier_v0.3.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/worker-pool\" to `0.3.4`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.3.3", "tag": "@rushstack/module-minifier_v0.3.3", diff --git a/libraries/module-minifier/CHANGELOG.md b/libraries/module-minifier/CHANGELOG.md index 7433d1b0416..4d905500d12 100644 --- a/libraries/module-minifier/CHANGELOG.md +++ b/libraries/module-minifier/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/module-minifier -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.3.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.3.3 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/package-deps-hash/CHANGELOG.json b/libraries/package-deps-hash/CHANGELOG.json index e23a8fa08dd..4cfc3516e0f 100644 --- a/libraries/package-deps-hash/CHANGELOG.json +++ b/libraries/package-deps-hash/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/package-deps-hash", "entries": [ + { + "version": "4.0.11", + "tag": "@rushstack/package-deps-hash_v4.0.11", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "4.0.10", "tag": "@rushstack/package-deps-hash_v4.0.10", diff --git a/libraries/package-deps-hash/CHANGELOG.md b/libraries/package-deps-hash/CHANGELOG.md index 06cb9f0ba50..9e3c9cdb1d5 100644 --- a/libraries/package-deps-hash/CHANGELOG.md +++ b/libraries/package-deps-hash/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/package-deps-hash -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 4.0.11 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 4.0.10 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/stream-collator/CHANGELOG.json b/libraries/stream-collator/CHANGELOG.json index 7875df97ef7..84240844fb6 100644 --- a/libraries/stream-collator/CHANGELOG.json +++ b/libraries/stream-collator/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/stream-collator", "entries": [ + { + "version": "4.0.229", + "tag": "@rushstack/stream-collator_v4.0.229", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/terminal\" to `0.5.4`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "4.0.228", "tag": "@rushstack/stream-collator_v4.0.228", diff --git a/libraries/stream-collator/CHANGELOG.md b/libraries/stream-collator/CHANGELOG.md index 9b92d1aa5c4..f328337bd43 100644 --- a/libraries/stream-collator/CHANGELOG.md +++ b/libraries/stream-collator/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/stream-collator -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 4.0.229 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 4.0.228 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/terminal/CHANGELOG.json b/libraries/terminal/CHANGELOG.json index 74c00fefa1b..21319707b40 100644 --- a/libraries/terminal/CHANGELOG.json +++ b/libraries/terminal/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/terminal", "entries": [ + { + "version": "0.5.4", + "tag": "@rushstack/terminal_v0.5.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.5.3", "tag": "@rushstack/terminal_v0.5.3", diff --git a/libraries/terminal/CHANGELOG.md b/libraries/terminal/CHANGELOG.md index 5b27dc479bd..aecc773b253 100644 --- a/libraries/terminal/CHANGELOG.md +++ b/libraries/terminal/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/terminal -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.5.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.5.3 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/typings-generator/CHANGELOG.json b/libraries/typings-generator/CHANGELOG.json index 632031058d8..271d815b2af 100644 --- a/libraries/typings-generator/CHANGELOG.json +++ b/libraries/typings-generator/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/typings-generator", "entries": [ + { + "version": "0.10.4", + "tag": "@rushstack/typings-generator_v0.10.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.10.3", "tag": "@rushstack/typings-generator_v0.10.3", diff --git a/libraries/typings-generator/CHANGELOG.md b/libraries/typings-generator/CHANGELOG.md index d6302b9bbfb..671b29ddfa0 100644 --- a/libraries/typings-generator/CHANGELOG.md +++ b/libraries/typings-generator/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/typings-generator -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.10.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.10.3 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/libraries/worker-pool/CHANGELOG.json b/libraries/worker-pool/CHANGELOG.json index 0ee39d30968..b19d17924c8 100644 --- a/libraries/worker-pool/CHANGELOG.json +++ b/libraries/worker-pool/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/worker-pool", "entries": [ + { + "version": "0.3.4", + "tag": "@rushstack/worker-pool_v0.3.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.3.3", "tag": "@rushstack/worker-pool_v0.3.3", diff --git a/libraries/worker-pool/CHANGELOG.md b/libraries/worker-pool/CHANGELOG.md index 024073ef1fd..ab18cd42410 100644 --- a/libraries/worker-pool/CHANGELOG.md +++ b/libraries/worker-pool/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/worker-pool -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.3.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.3.3 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/rigs/heft-node-rig/CHANGELOG.json b/rigs/heft-node-rig/CHANGELOG.json index 9fe99d93ba9..b8f0641fb64 100644 --- a/rigs/heft-node-rig/CHANGELOG.json +++ b/rigs/heft-node-rig/CHANGELOG.json @@ -1,6 +1,23 @@ { "name": "@rushstack/heft-node-rig", "entries": [ + { + "version": "1.12.6", + "tag": "@rushstack/heft-node-rig_v1.12.6", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "patch": [ + { + "comment": "Upgrade Jest to 29.5.0." + } + ], + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-jest-plugin\" to `0.5.6`" + } + ] + } + }, { "version": "1.12.5", "tag": "@rushstack/heft-node-rig_v1.12.5", diff --git a/rigs/heft-node-rig/CHANGELOG.md b/rigs/heft-node-rig/CHANGELOG.md index 3958a97b810..b209f728503 100644 --- a/rigs/heft-node-rig/CHANGELOG.md +++ b/rigs/heft-node-rig/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-node-rig -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 1.12.6 +Tue, 04 Apr 2023 22:36:28 GMT + +### Patches + +- Upgrade Jest to 29.5.0. ## 1.12.5 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/rigs/heft-web-rig/CHANGELOG.json b/rigs/heft-web-rig/CHANGELOG.json index 0e2f1967b76..0ba72f7171f 100644 --- a/rigs/heft-web-rig/CHANGELOG.json +++ b/rigs/heft-web-rig/CHANGELOG.json @@ -1,6 +1,29 @@ { "name": "@rushstack/heft-web-rig", "entries": [ + { + "version": "0.14.8", + "tag": "@rushstack/heft-web-rig_v0.14.8", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "patch": [ + { + "comment": "Upgrade Jest to 29.5.0." + } + ], + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-jest-plugin\" to `0.5.6`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-sass-plugin\" to `0.8.5`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.2`" + } + ] + } + }, { "version": "0.14.7", "tag": "@rushstack/heft-web-rig_v0.14.7", diff --git a/rigs/heft-web-rig/CHANGELOG.md b/rigs/heft-web-rig/CHANGELOG.md index 496b61c8458..913442800ba 100644 --- a/rigs/heft-web-rig/CHANGELOG.md +++ b/rigs/heft-web-rig/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-web-rig -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.14.8 +Tue, 04 Apr 2023 22:36:28 GMT + +### Patches + +- Upgrade Jest to 29.5.0. ## 0.14.7 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/rush-plugins/rush-serve-plugin/CHANGELOG.json b/rush-plugins/rush-serve-plugin/CHANGELOG.json index 3644b6d02c6..414d4025a1e 100644 --- a/rush-plugins/rush-serve-plugin/CHANGELOG.json +++ b/rush-plugins/rush-serve-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/rush-serve-plugin", "entries": [ + { + "version": "0.4.6", + "tag": "@rushstack/rush-serve-plugin_v0.4.6", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/debug-certificate-manager\" to `1.2.20`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.4.5", "tag": "@rushstack/rush-serve-plugin_v0.4.5", diff --git a/rush-plugins/rush-serve-plugin/CHANGELOG.md b/rush-plugins/rush-serve-plugin/CHANGELOG.md index 1f27f0e025c..c18c25aa718 100644 --- a/rush-plugins/rush-serve-plugin/CHANGELOG.md +++ b/rush-plugins/rush-serve-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/rush-serve-plugin -This log was last generated on Mon, 20 Mar 2023 20:14:20 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.4.6 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.4.5 Mon, 20 Mar 2023 20:14:20 GMT diff --git a/webpack/hashed-folder-copy-plugin/CHANGELOG.json b/webpack/hashed-folder-copy-plugin/CHANGELOG.json index 0b6d79f3372..5c7bd89dc78 100644 --- a/webpack/hashed-folder-copy-plugin/CHANGELOG.json +++ b/webpack/hashed-folder-copy-plugin/CHANGELOG.json @@ -1,6 +1,24 @@ { "name": "@rushstack/hashed-folder-copy-plugin", "entries": [ + { + "version": "0.2.7", + "tag": "@rushstack/hashed-folder-copy-plugin_v0.2.7", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/webpack-plugin-utilities\" to `0.2.2`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.2`" + } + ] + } + }, { "version": "0.2.6", "tag": "@rushstack/hashed-folder-copy-plugin_v0.2.6", diff --git a/webpack/hashed-folder-copy-plugin/CHANGELOG.md b/webpack/hashed-folder-copy-plugin/CHANGELOG.md index 2956a4df5d2..be5f9e53a59 100644 --- a/webpack/hashed-folder-copy-plugin/CHANGELOG.md +++ b/webpack/hashed-folder-copy-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/hashed-folder-copy-plugin -This log was last generated on Thu, 23 Mar 2023 15:24:08 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.2.7 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.2.6 Thu, 23 Mar 2023 15:24:08 GMT diff --git a/webpack/loader-load-themed-styles/CHANGELOG.json b/webpack/loader-load-themed-styles/CHANGELOG.json index 07ef214658b..caa3e30332a 100644 --- a/webpack/loader-load-themed-styles/CHANGELOG.json +++ b/webpack/loader-load-themed-styles/CHANGELOG.json @@ -1,6 +1,24 @@ { "name": "@microsoft/loader-load-themed-styles", "entries": [ + { + "version": "2.0.30", + "tag": "@microsoft/loader-load-themed-styles_v2.0.30", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" to `2.0.32`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + }, + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" from `^2.0.31` to `^2.0.32`" + } + ] + } + }, { "version": "2.0.29", "tag": "@microsoft/loader-load-themed-styles_v2.0.29", diff --git a/webpack/loader-load-themed-styles/CHANGELOG.md b/webpack/loader-load-themed-styles/CHANGELOG.md index 1c06ef25de1..290d96f4820 100644 --- a/webpack/loader-load-themed-styles/CHANGELOG.md +++ b/webpack/loader-load-themed-styles/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/loader-load-themed-styles -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 2.0.30 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 2.0.29 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/webpack/loader-raw-script/CHANGELOG.json b/webpack/loader-raw-script/CHANGELOG.json index 653263b11b1..21842e38a6e 100644 --- a/webpack/loader-raw-script/CHANGELOG.json +++ b/webpack/loader-raw-script/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/loader-raw-script", "entries": [ + { + "version": "1.3.283", + "tag": "@rushstack/loader-raw-script_v1.3.283", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "1.3.282", "tag": "@rushstack/loader-raw-script_v1.3.282", diff --git a/webpack/loader-raw-script/CHANGELOG.md b/webpack/loader-raw-script/CHANGELOG.md index e3128d0bc00..a32db57b156 100644 --- a/webpack/loader-raw-script/CHANGELOG.md +++ b/webpack/loader-raw-script/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/loader-raw-script -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 1.3.283 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 1.3.282 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/webpack/preserve-dynamic-require-plugin/CHANGELOG.json b/webpack/preserve-dynamic-require-plugin/CHANGELOG.json index afaa9e04594..2fc5235177c 100644 --- a/webpack/preserve-dynamic-require-plugin/CHANGELOG.json +++ b/webpack/preserve-dynamic-require-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/webpack-preserve-dynamic-require-plugin", "entries": [ + { + "version": "0.10.5", + "tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.10.5", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.10.4", "tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.10.4", diff --git a/webpack/preserve-dynamic-require-plugin/CHANGELOG.md b/webpack/preserve-dynamic-require-plugin/CHANGELOG.md index 55c82080f06..ffe8d1a9739 100644 --- a/webpack/preserve-dynamic-require-plugin/CHANGELOG.md +++ b/webpack/preserve-dynamic-require-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack-preserve-dynamic-require-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.10.5 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.10.4 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/webpack/set-webpack-public-path-plugin/CHANGELOG.json b/webpack/set-webpack-public-path-plugin/CHANGELOG.json index 15f66834c00..b5310f29d54 100644 --- a/webpack/set-webpack-public-path-plugin/CHANGELOG.json +++ b/webpack/set-webpack-public-path-plugin/CHANGELOG.json @@ -1,6 +1,24 @@ { "name": "@rushstack/set-webpack-public-path-plugin", "entries": [ + { + "version": "3.3.96", + "tag": "@rushstack/set-webpack-public-path-plugin_v3.3.96", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/webpack-plugin-utilities\" to `0.2.2`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.2`" + } + ] + } + }, { "version": "3.3.95", "tag": "@rushstack/set-webpack-public-path-plugin_v3.3.95", diff --git a/webpack/set-webpack-public-path-plugin/CHANGELOG.md b/webpack/set-webpack-public-path-plugin/CHANGELOG.md index ff6fe30915c..6efbf3b223c 100644 --- a/webpack/set-webpack-public-path-plugin/CHANGELOG.md +++ b/webpack/set-webpack-public-path-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/set-webpack-public-path-plugin -This log was last generated on Thu, 23 Mar 2023 15:24:08 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 3.3.96 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 3.3.95 Thu, 23 Mar 2023 15:24:08 GMT diff --git a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json index 65ca65c8070..821dfb4c22c 100644 --- a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json +++ b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/webpack-embedded-dependencies-plugin", "entries": [ + { + "version": "0.1.2", + "tag": "@rushstack/webpack-embedded-dependencies-plugin_v0.1.2", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/webpack-plugin-utilities\" to `0.2.2`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.1.1", "tag": "@rushstack/webpack-embedded-dependencies-plugin_v0.1.1", diff --git a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md index 3608b30a615..d9a04cb9859 100644 --- a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md +++ b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack-embedded-dependencies-plugin -This log was last generated on Thu, 23 Mar 2023 15:24:08 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.1.2 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.1.1 Thu, 23 Mar 2023 15:24:08 GMT diff --git a/webpack/webpack-plugin-utilities/CHANGELOG.json b/webpack/webpack-plugin-utilities/CHANGELOG.json index 0ff05d335a3..30f9c5ca73a 100644 --- a/webpack/webpack-plugin-utilities/CHANGELOG.json +++ b/webpack/webpack-plugin-utilities/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/webpack-plugin-utilities", "entries": [ + { + "version": "0.2.2", + "tag": "@rushstack/webpack-plugin-utilities_v0.2.2", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.2.1", "tag": "@rushstack/webpack-plugin-utilities_v0.2.1", diff --git a/webpack/webpack-plugin-utilities/CHANGELOG.md b/webpack/webpack-plugin-utilities/CHANGELOG.md index 2868a309917..86f277de651 100644 --- a/webpack/webpack-plugin-utilities/CHANGELOG.md +++ b/webpack/webpack-plugin-utilities/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack-plugin-utilities -This log was last generated on Thu, 23 Mar 2023 15:24:08 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.2.2 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.2.1 Thu, 23 Mar 2023 15:24:08 GMT diff --git a/webpack/webpack4-localization-plugin/CHANGELOG.json b/webpack/webpack4-localization-plugin/CHANGELOG.json index 6a1b008e739..308cca5917f 100644 --- a/webpack/webpack4-localization-plugin/CHANGELOG.json +++ b/webpack/webpack4-localization-plugin/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@rushstack/webpack4-localization-plugin", "entries": [ + { + "version": "0.17.7", + "tag": "@rushstack/webpack4-localization-plugin_v0.17.7", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/localization-utilities\" to `0.8.48`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + }, + { + "comment": "Updating dependency \"@rushstack/set-webpack-public-path-plugin\" to `3.3.96`" + }, + { + "comment": "Updating dependency \"@rushstack/set-webpack-public-path-plugin\" from `^3.3.95` to `^3.3.96`" + } + ] + } + }, { "version": "0.17.6", "tag": "@rushstack/webpack4-localization-plugin_v0.17.6", diff --git a/webpack/webpack4-localization-plugin/CHANGELOG.md b/webpack/webpack4-localization-plugin/CHANGELOG.md index a0f07176814..b40d0844426 100644 --- a/webpack/webpack4-localization-plugin/CHANGELOG.md +++ b/webpack/webpack4-localization-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack4-localization-plugin -This log was last generated on Thu, 23 Mar 2023 15:24:08 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.17.7 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.17.6 Thu, 23 Mar 2023 15:24:08 GMT diff --git a/webpack/webpack4-module-minifier-plugin/CHANGELOG.json b/webpack/webpack4-module-minifier-plugin/CHANGELOG.json index 350b09102e7..ac49398b2f0 100644 --- a/webpack/webpack4-module-minifier-plugin/CHANGELOG.json +++ b/webpack/webpack4-module-minifier-plugin/CHANGELOG.json @@ -1,6 +1,24 @@ { "name": "@rushstack/webpack4-module-minifier-plugin", "entries": [ + { + "version": "0.11.4", + "tag": "@rushstack/webpack4-module-minifier-plugin_v0.11.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/module-minifier\" to `0.3.4`" + }, + { + "comment": "Updating dependency \"@rushstack/worker-pool\" to `0.3.4`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.11.3", "tag": "@rushstack/webpack4-module-minifier-plugin_v0.11.3", diff --git a/webpack/webpack4-module-minifier-plugin/CHANGELOG.md b/webpack/webpack4-module-minifier-plugin/CHANGELOG.md index 76561115988..d56087c909f 100644 --- a/webpack/webpack4-module-minifier-plugin/CHANGELOG.md +++ b/webpack/webpack4-module-minifier-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack4-module-minifier-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.11.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.11.3 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json index c5c3b7fdf9f..241d9c96503 100644 --- a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json +++ b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json @@ -1,6 +1,24 @@ { "name": "@microsoft/webpack5-load-themed-styles-loader", "entries": [ + { + "version": "0.1.14", + "tag": "@microsoft/webpack5-load-themed-styles-loader_v0.1.14", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" to `2.0.32`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + }, + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" from `^2.0.31` to `^2.0.32`" + } + ] + } + }, { "version": "0.1.13", "tag": "@microsoft/webpack5-load-themed-styles-loader_v0.1.13", diff --git a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md index 6446f1b912e..11d1cf3a48e 100644 --- a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md +++ b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/webpack5-load-themed-styles-loader -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.1.14 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.1.13 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/webpack/webpack5-localization-plugin/CHANGELOG.json b/webpack/webpack5-localization-plugin/CHANGELOG.json index ffd38b5bf4f..f756c33f071 100644 --- a/webpack/webpack5-localization-plugin/CHANGELOG.json +++ b/webpack/webpack5-localization-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/webpack5-localization-plugin", "entries": [ + { + "version": "0.4.4", + "tag": "@rushstack/webpack5-localization-plugin_v0.4.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/localization-utilities\" to `0.8.48`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + } + ] + } + }, { "version": "0.4.3", "tag": "@rushstack/webpack5-localization-plugin_v0.4.3", diff --git a/webpack/webpack5-localization-plugin/CHANGELOG.md b/webpack/webpack5-localization-plugin/CHANGELOG.md index 0fb2bbda55e..14dda124c1e 100644 --- a/webpack/webpack5-localization-plugin/CHANGELOG.md +++ b/webpack/webpack5-localization-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack5-localization-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 0.4.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 0.4.3 Sat, 18 Mar 2023 00:20:56 GMT diff --git a/webpack/webpack5-module-minifier-plugin/CHANGELOG.json b/webpack/webpack5-module-minifier-plugin/CHANGELOG.json index 6dbf225e9d1..a60d5e1169a 100644 --- a/webpack/webpack5-module-minifier-plugin/CHANGELOG.json +++ b/webpack/webpack5-module-minifier-plugin/CHANGELOG.json @@ -1,6 +1,27 @@ { "name": "@rushstack/webpack5-module-minifier-plugin", "entries": [ + { + "version": "5.3.4", + "tag": "@rushstack/webpack5-module-minifier-plugin_v5.3.4", + "date": "Tue, 04 Apr 2023 22:36:28 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/worker-pool\" to `0.3.4`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.12.6`" + }, + { + "comment": "Updating dependency \"@rushstack/module-minifier\" to `0.3.4`" + }, + { + "comment": "Updating dependency \"@rushstack/module-minifier\" from `*` to `*`" + } + ] + } + }, { "version": "5.3.3", "tag": "@rushstack/webpack5-module-minifier-plugin_v5.3.3", diff --git a/webpack/webpack5-module-minifier-plugin/CHANGELOG.md b/webpack/webpack5-module-minifier-plugin/CHANGELOG.md index db1721d1e6a..f6b95284cbc 100644 --- a/webpack/webpack5-module-minifier-plugin/CHANGELOG.md +++ b/webpack/webpack5-module-minifier-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack5-module-minifier-plugin -This log was last generated on Sat, 18 Mar 2023 00:20:56 GMT and should not be manually modified. +This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. + +## 5.3.4 +Tue, 04 Apr 2023 22:36:28 GMT + +_Version update only_ ## 5.3.3 Sat, 18 Mar 2023 00:20:56 GMT From e698ed910bd55226fcbf35f17ae29e6a43199e07 Mon Sep 17 00:00:00 2001 From: Rushbot Date: Tue, 4 Apr 2023 22:36:31 +0000 Subject: [PATCH 09/20] Bump versions [skip ci] --- apps/api-documenter/package.json | 2 +- apps/lockfile-explorer/package.json | 2 +- apps/rundown/package.json | 2 +- apps/trace-import/package.json | 2 +- heft-plugins/heft-dev-cert-plugin/package.json | 2 +- heft-plugins/heft-jest-plugin/package.json | 2 +- heft-plugins/heft-sass-plugin/package.json | 2 +- heft-plugins/heft-serverless-stack-plugin/package.json | 2 +- heft-plugins/heft-storybook-plugin/package.json | 2 +- heft-plugins/heft-webpack4-plugin/package.json | 2 +- heft-plugins/heft-webpack5-plugin/package.json | 2 +- libraries/debug-certificate-manager/package.json | 2 +- libraries/load-themed-styles/package.json | 2 +- libraries/localization-utilities/package.json | 2 +- libraries/module-minifier/package.json | 2 +- libraries/package-deps-hash/package.json | 2 +- libraries/stream-collator/package.json | 2 +- libraries/terminal/package.json | 2 +- libraries/typings-generator/package.json | 2 +- libraries/worker-pool/package.json | 2 +- rigs/heft-node-rig/package.json | 2 +- rigs/heft-web-rig/package.json | 2 +- rush-plugins/rush-serve-plugin/package.json | 2 +- webpack/hashed-folder-copy-plugin/package.json | 2 +- webpack/loader-load-themed-styles/package.json | 4 ++-- webpack/loader-raw-script/package.json | 2 +- webpack/preserve-dynamic-require-plugin/package.json | 2 +- webpack/set-webpack-public-path-plugin/package.json | 2 +- webpack/webpack-embedded-dependencies-plugin/package.json | 2 +- webpack/webpack-plugin-utilities/package.json | 2 +- webpack/webpack4-localization-plugin/package.json | 4 ++-- webpack/webpack4-module-minifier-plugin/package.json | 2 +- webpack/webpack5-load-themed-styles-loader/package.json | 4 ++-- webpack/webpack5-localization-plugin/package.json | 2 +- webpack/webpack5-module-minifier-plugin/package.json | 2 +- 35 files changed, 38 insertions(+), 38 deletions(-) diff --git a/apps/api-documenter/package.json b/apps/api-documenter/package.json index a69a781e947..99528cb0adc 100644 --- a/apps/api-documenter/package.json +++ b/apps/api-documenter/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/api-documenter", - "version": "7.21.6", + "version": "7.21.7", "description": "Read JSON files from api-extractor, generate documentation pages", "repository": { "type": "git", diff --git a/apps/lockfile-explorer/package.json b/apps/lockfile-explorer/package.json index 29cbeb93bcc..662bc9693e1 100644 --- a/apps/lockfile-explorer/package.json +++ b/apps/lockfile-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/lockfile-explorer", - "version": "1.0.9", + "version": "1.0.10", "description": "Rush Lockfile Explorer: The UI for solving version conflicts quickly in a large monorepo", "keywords": [ "conflict", diff --git a/apps/rundown/package.json b/apps/rundown/package.json index f4855e8f6c5..014f06014df 100644 --- a/apps/rundown/package.json +++ b/apps/rundown/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/rundown", - "version": "1.0.243", + "version": "1.0.244", "description": "Detect load time regressions by running an app, tracing require() calls, and generating a deterministic report", "repository": { "type": "git", diff --git a/apps/trace-import/package.json b/apps/trace-import/package.json index 86dd74203c7..a95f84c91e6 100644 --- a/apps/trace-import/package.json +++ b/apps/trace-import/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/trace-import", - "version": "0.1.12", + "version": "0.1.13", "description": "CLI tool for understanding how require() and \"import\" statements get resolved", "repository": { "type": "git", diff --git a/heft-plugins/heft-dev-cert-plugin/package.json b/heft-plugins/heft-dev-cert-plugin/package.json index 1431b5ab26f..188d38b8ea9 100644 --- a/heft-plugins/heft-dev-cert-plugin/package.json +++ b/heft-plugins/heft-dev-cert-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-dev-cert-plugin", - "version": "0.2.20", + "version": "0.2.21", "description": "A Heft plugin for generating and using local development certificates", "repository": { "type": "git", diff --git a/heft-plugins/heft-jest-plugin/package.json b/heft-plugins/heft-jest-plugin/package.json index fee0d8dad1d..fbccc55c0da 100644 --- a/heft-plugins/heft-jest-plugin/package.json +++ b/heft-plugins/heft-jest-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-jest-plugin", - "version": "0.5.5", + "version": "0.5.6", "description": "Heft plugin for Jest", "repository": { "type": "git", diff --git a/heft-plugins/heft-sass-plugin/package.json b/heft-plugins/heft-sass-plugin/package.json index 1a3ed85557d..ab581c02694 100644 --- a/heft-plugins/heft-sass-plugin/package.json +++ b/heft-plugins/heft-sass-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-sass-plugin", - "version": "0.8.4", + "version": "0.8.5", "description": "Heft plugin for SASS", "repository": { "type": "git", diff --git a/heft-plugins/heft-serverless-stack-plugin/package.json b/heft-plugins/heft-serverless-stack-plugin/package.json index 064ab94effe..1dbf83a9a3e 100644 --- a/heft-plugins/heft-serverless-stack-plugin/package.json +++ b/heft-plugins/heft-serverless-stack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-serverless-stack-plugin", - "version": "0.1.69", + "version": "0.1.70", "description": "Heft plugin for building apps using the Serverless Stack (SST) framework", "repository": { "type": "git", diff --git a/heft-plugins/heft-storybook-plugin/package.json b/heft-plugins/heft-storybook-plugin/package.json index fe59406f3c8..bfdd8d217b8 100644 --- a/heft-plugins/heft-storybook-plugin/package.json +++ b/heft-plugins/heft-storybook-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-storybook-plugin", - "version": "0.2.4", + "version": "0.2.5", "description": "Heft plugin for supporting UI development using Storybook", "repository": { "type": "git", diff --git a/heft-plugins/heft-webpack4-plugin/package.json b/heft-plugins/heft-webpack4-plugin/package.json index 6c783f34679..d34c5a95a04 100644 --- a/heft-plugins/heft-webpack4-plugin/package.json +++ b/heft-plugins/heft-webpack4-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-webpack4-plugin", - "version": "0.5.40", + "version": "0.5.41", "description": "Heft plugin for Webpack 4", "repository": { "type": "git", diff --git a/heft-plugins/heft-webpack5-plugin/package.json b/heft-plugins/heft-webpack5-plugin/package.json index 0430ef0ff51..459b0016f4b 100644 --- a/heft-plugins/heft-webpack5-plugin/package.json +++ b/heft-plugins/heft-webpack5-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-webpack5-plugin", - "version": "0.6.1", + "version": "0.6.2", "description": "Heft plugin for Webpack 5", "repository": { "type": "git", diff --git a/libraries/debug-certificate-manager/package.json b/libraries/debug-certificate-manager/package.json index c8a265cf339..f2b039200c0 100644 --- a/libraries/debug-certificate-manager/package.json +++ b/libraries/debug-certificate-manager/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/debug-certificate-manager", - "version": "1.2.19", + "version": "1.2.20", "description": "Cross-platform functionality to create debug ssl certificates.", "main": "lib/index.js", "typings": "dist/debug-certificate-manager.d.ts", diff --git a/libraries/load-themed-styles/package.json b/libraries/load-themed-styles/package.json index 4f873751c59..71d36a9cc99 100644 --- a/libraries/load-themed-styles/package.json +++ b/libraries/load-themed-styles/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/load-themed-styles", - "version": "2.0.31", + "version": "2.0.32", "description": "Loads themed styles.", "license": "MIT", "repository": { diff --git a/libraries/localization-utilities/package.json b/libraries/localization-utilities/package.json index acac9b7cee7..95b7c4aa271 100644 --- a/libraries/localization-utilities/package.json +++ b/libraries/localization-utilities/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/localization-utilities", - "version": "0.8.47", + "version": "0.8.48", "description": "This plugin contains some useful functions for localization.", "main": "lib/index.js", "typings": "dist/localization-utilities.d.ts", diff --git a/libraries/module-minifier/package.json b/libraries/module-minifier/package.json index 8c9d3317c91..e9e9f58dee1 100644 --- a/libraries/module-minifier/package.json +++ b/libraries/module-minifier/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/module-minifier", - "version": "0.3.3", + "version": "0.3.4", "description": "Wrapper for terser to support bulk parallel minification.", "main": "lib/index.js", "typings": "dist/module-minifier.d.ts", diff --git a/libraries/package-deps-hash/package.json b/libraries/package-deps-hash/package.json index ed7fce576e1..7a07c5f3c40 100644 --- a/libraries/package-deps-hash/package.json +++ b/libraries/package-deps-hash/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/package-deps-hash", - "version": "4.0.10", + "version": "4.0.11", "description": "", "main": "lib/index.js", "typings": "dist/package-deps-hash.d.ts", diff --git a/libraries/stream-collator/package.json b/libraries/stream-collator/package.json index 0cf2674c5d8..33308bb3797 100644 --- a/libraries/stream-collator/package.json +++ b/libraries/stream-collator/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/stream-collator", - "version": "4.0.228", + "version": "4.0.229", "description": "Display intelligible realtime output from concurrent processes", "repository": { "type": "git", diff --git a/libraries/terminal/package.json b/libraries/terminal/package.json index 89021c97ced..c80308accab 100644 --- a/libraries/terminal/package.json +++ b/libraries/terminal/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/terminal", - "version": "0.5.3", + "version": "0.5.4", "description": "User interface primitives for console applications", "main": "lib/index.js", "typings": "dist/terminal.d.ts", diff --git a/libraries/typings-generator/package.json b/libraries/typings-generator/package.json index 78def4ebb28..4132b1772f9 100644 --- a/libraries/typings-generator/package.json +++ b/libraries/typings-generator/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/typings-generator", - "version": "0.10.3", + "version": "0.10.4", "description": "This library provides functionality for automatically generating typings for non-TS files.", "keywords": [ "dts", diff --git a/libraries/worker-pool/package.json b/libraries/worker-pool/package.json index ccf6b11321f..983ee227a50 100644 --- a/libraries/worker-pool/package.json +++ b/libraries/worker-pool/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/worker-pool", - "version": "0.3.3", + "version": "0.3.4", "description": "Lightweight worker pool using NodeJS worker_threads", "main": "lib/index.js", "typings": "dist/worker-pool.d.ts", diff --git a/rigs/heft-node-rig/package.json b/rigs/heft-node-rig/package.json index ba1357f395f..25553fde4bb 100644 --- a/rigs/heft-node-rig/package.json +++ b/rigs/heft-node-rig/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-node-rig", - "version": "1.12.5", + "version": "1.12.6", "description": "A rig package for Node.js projects that build using Heft", "license": "MIT", "scripts": { diff --git a/rigs/heft-web-rig/package.json b/rigs/heft-web-rig/package.json index 0c133496fad..0816b68e85b 100644 --- a/rigs/heft-web-rig/package.json +++ b/rigs/heft-web-rig/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-web-rig", - "version": "0.14.7", + "version": "0.14.8", "description": "A rig package for web browser projects that build using Heft", "license": "MIT", "scripts": { diff --git a/rush-plugins/rush-serve-plugin/package.json b/rush-plugins/rush-serve-plugin/package.json index aaf7f4c1664..5d973e479e3 100644 --- a/rush-plugins/rush-serve-plugin/package.json +++ b/rush-plugins/rush-serve-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/rush-serve-plugin", - "version": "0.4.5", + "version": "0.4.6", "description": "A Rush plugin that hooks into a rush action and serves output folders from all projects in the repository.", "license": "MIT", "repository": { diff --git a/webpack/hashed-folder-copy-plugin/package.json b/webpack/hashed-folder-copy-plugin/package.json index c6c9f9ea4d3..369b4c9aa55 100644 --- a/webpack/hashed-folder-copy-plugin/package.json +++ b/webpack/hashed-folder-copy-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/hashed-folder-copy-plugin", - "version": "0.2.6", + "version": "0.2.7", "description": "Webpack plugin for copying a folder to the output directory with a hash in the folder name.", "typings": "dist/hashed-folder-copy-plugin.d.ts", "main": "lib/index.js", diff --git a/webpack/loader-load-themed-styles/package.json b/webpack/loader-load-themed-styles/package.json index 7d68bd6967f..09d271c7190 100644 --- a/webpack/loader-load-themed-styles/package.json +++ b/webpack/loader-load-themed-styles/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/loader-load-themed-styles", - "version": "2.0.29", + "version": "2.0.30", "description": "This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -22,7 +22,7 @@ }, "peerDependencies": { "@types/webpack": "^4", - "@microsoft/load-themed-styles": "^2.0.31" + "@microsoft/load-themed-styles": "^2.0.32" }, "dependencies": { "loader-utils": "1.4.2" diff --git a/webpack/loader-raw-script/package.json b/webpack/loader-raw-script/package.json index 0e9a4e02ef6..bd9cb32cfa4 100644 --- a/webpack/loader-raw-script/package.json +++ b/webpack/loader-raw-script/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/loader-raw-script", - "version": "1.3.282", + "version": "1.3.283", "description": "", "main": "lib/index.js", "typings": "lib/index.d.ts", diff --git a/webpack/preserve-dynamic-require-plugin/package.json b/webpack/preserve-dynamic-require-plugin/package.json index 3bf260bd835..d20cfb56f65 100644 --- a/webpack/preserve-dynamic-require-plugin/package.json +++ b/webpack/preserve-dynamic-require-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack-preserve-dynamic-require-plugin", - "version": "0.10.4", + "version": "0.10.5", "description": "This plugin tells webpack to leave dynamic calls to \"require\" as-is instead of trying to bundle them.", "main": "lib/index.js", "typings": "dist/webpack-preserve-dynamic-require-plugin.d.ts", diff --git a/webpack/set-webpack-public-path-plugin/package.json b/webpack/set-webpack-public-path-plugin/package.json index 8666be9e318..9e329767263 100644 --- a/webpack/set-webpack-public-path-plugin/package.json +++ b/webpack/set-webpack-public-path-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/set-webpack-public-path-plugin", - "version": "3.3.95", + "version": "3.3.96", "description": "This plugin sets the webpack public path at runtime.", "main": "lib/index.js", "typings": "dist/set-webpack-public-path-plugin.d.ts", diff --git a/webpack/webpack-embedded-dependencies-plugin/package.json b/webpack/webpack-embedded-dependencies-plugin/package.json index 255a5f25f26..fb570569f33 100644 --- a/webpack/webpack-embedded-dependencies-plugin/package.json +++ b/webpack/webpack-embedded-dependencies-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack-embedded-dependencies-plugin", - "version": "0.1.1", + "version": "0.1.2", "description": "This plugin analyzes bundled dependencies from Node Modules for use with Component Governance and License Scanning.", "main": "lib/index.js", "typings": "dist/webpack-embedded-dependencies-plugin.d.ts", diff --git a/webpack/webpack-plugin-utilities/package.json b/webpack/webpack-plugin-utilities/package.json index 790bf3bc027..d19c7b52637 100644 --- a/webpack/webpack-plugin-utilities/package.json +++ b/webpack/webpack-plugin-utilities/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack-plugin-utilities", - "version": "0.2.1", + "version": "0.2.2", "description": "This plugin sets the webpack public path at runtime.", "main": "lib/index.js", "typings": "dist/webpack-plugin-utilities.d.ts", diff --git a/webpack/webpack4-localization-plugin/package.json b/webpack/webpack4-localization-plugin/package.json index 5268e490901..e95f50a65f7 100644 --- a/webpack/webpack4-localization-plugin/package.json +++ b/webpack/webpack4-localization-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack4-localization-plugin", - "version": "0.17.6", + "version": "0.17.7", "description": "This plugin facilitates localization with Webpack.", "main": "lib/index.js", "typings": "dist/webpack4-localization-plugin.d.ts", @@ -15,7 +15,7 @@ "_phase:build": "heft build --clean" }, "peerDependencies": { - "@rushstack/set-webpack-public-path-plugin": "^3.3.95", + "@rushstack/set-webpack-public-path-plugin": "^3.3.96", "@types/webpack": "^4.39.0", "webpack": "^4.31.0", "@types/node": "*" diff --git a/webpack/webpack4-module-minifier-plugin/package.json b/webpack/webpack4-module-minifier-plugin/package.json index 252f8d8595f..ad0fb9e65c5 100644 --- a/webpack/webpack4-module-minifier-plugin/package.json +++ b/webpack/webpack4-module-minifier-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack4-module-minifier-plugin", - "version": "0.11.3", + "version": "0.11.4", "description": "This plugin splits minification of webpack compilations into smaller units.", "main": "lib/index.js", "typings": "dist/webpack4-module-minifier-plugin.d.ts", diff --git a/webpack/webpack5-load-themed-styles-loader/package.json b/webpack/webpack5-load-themed-styles-loader/package.json index 7a21da8e1d0..d19d3d64c10 100644 --- a/webpack/webpack5-load-themed-styles-loader/package.json +++ b/webpack/webpack5-load-themed-styles-loader/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/webpack5-load-themed-styles-loader", - "version": "0.1.13", + "version": "0.1.14", "description": "This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -16,7 +16,7 @@ "_phase:test": "heft test --no-build" }, "peerDependencies": { - "@microsoft/load-themed-styles": "^2.0.31", + "@microsoft/load-themed-styles": "^2.0.32", "webpack": "^5" }, "peerDependenciesMeta": { diff --git a/webpack/webpack5-localization-plugin/package.json b/webpack/webpack5-localization-plugin/package.json index 44dff60ff11..a757d187987 100644 --- a/webpack/webpack5-localization-plugin/package.json +++ b/webpack/webpack5-localization-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack5-localization-plugin", - "version": "0.4.3", + "version": "0.4.4", "description": "This plugin facilitates localization with Webpack.", "main": "lib/index.js", "typings": "dist/webpack5-localization-plugin.d.ts", diff --git a/webpack/webpack5-module-minifier-plugin/package.json b/webpack/webpack5-module-minifier-plugin/package.json index 819c697681c..6264b1ce2f9 100644 --- a/webpack/webpack5-module-minifier-plugin/package.json +++ b/webpack/webpack5-module-minifier-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack5-module-minifier-plugin", - "version": "5.3.3", + "version": "5.3.4", "description": "This plugin splits minification of webpack compilations into smaller units.", "main": "lib/index.js", "typings": "dist/webpack5-module-minifier-plugin.d.ts", From c75dd98442dca9ad9b5a6536078ab7a33028c41b Mon Sep 17 00:00:00 2001 From: Rushbot Date: Wed, 5 Apr 2023 21:46:37 +0000 Subject: [PATCH 10/20] Update changelogs [skip ci] --- apps/rush/CHANGELOG.json | 12 ++++++++++++ apps/rush/CHANGELOG.md | 9 ++++++++- .../clean-up-env-vars-enum_2023-03-30-19-39.json | 10 ---------- .../rush/enelson-fix-lock_2023-04-01-14-57.json | 10 ---------- 4 files changed, 20 insertions(+), 21 deletions(-) delete mode 100644 common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json delete mode 100644 common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json diff --git a/apps/rush/CHANGELOG.json b/apps/rush/CHANGELOG.json index c5dcde255fc..922b9408758 100644 --- a/apps/rush/CHANGELOG.json +++ b/apps/rush/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@microsoft/rush", "entries": [ + { + "version": "5.97.0", + "tag": "@microsoft/rush_v5.97.0", + "date": "Wed, 05 Apr 2023 21:46:37 GMT", + "comments": { + "none": [ + { + "comment": "Convert the `EnvironmentVariableNames` from an enum to a const so that its values can be referred to by type." + } + ] + } + }, { "version": "5.96.0", "tag": "@microsoft/rush_v5.96.0", diff --git a/apps/rush/CHANGELOG.md b/apps/rush/CHANGELOG.md index 65d96cbcde3..256c2b7d078 100644 --- a/apps/rush/CHANGELOG.md +++ b/apps/rush/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @microsoft/rush -This log was last generated on Fri, 31 Mar 2023 00:27:51 GMT and should not be manually modified. +This log was last generated on Wed, 05 Apr 2023 21:46:37 GMT and should not be manually modified. + +## 5.97.0 +Wed, 05 Apr 2023 21:46:37 GMT + +### Updates + +- Convert the `EnvironmentVariableNames` from an enum to a const so that its values can be referred to by type. ## 5.96.0 Fri, 31 Mar 2023 00:27:51 GMT diff --git a/common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json b/common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json deleted file mode 100644 index 7550d199d04..00000000000 --- a/common/changes/@microsoft/rush/clean-up-env-vars-enum_2023-03-30-19-39.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@microsoft/rush", - "comment": "Convert the `EnvironmentVariableNames` from an enum to a const so that its values can be referred to by type.", - "type": "none" - } - ], - "packageName": "@microsoft/rush" -} \ No newline at end of file diff --git a/common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json b/common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json deleted file mode 100644 index bd7ff97cb34..00000000000 --- a/common/changes/@microsoft/rush/enelson-fix-lock_2023-04-01-14-57.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@microsoft/rush", - "comment": "", - "type": "none" - } - ], - "packageName": "@microsoft/rush" -} \ No newline at end of file From 01d1f743e5112adcd1a7dc55ed3f430c78226225 Mon Sep 17 00:00:00 2001 From: Rushbot Date: Wed, 5 Apr 2023 21:46:40 +0000 Subject: [PATCH 11/20] Bump versions [skip ci] --- apps/rush/package.json | 2 +- common/config/rush/version-policies.json | 2 +- libraries/rush-lib/package.json | 2 +- libraries/rush-sdk/package.json | 2 +- rush-plugins/rush-amazon-s3-build-cache-plugin/package.json | 2 +- rush-plugins/rush-azure-storage-build-cache-plugin/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/rush/package.json b/apps/rush/package.json index 29a93d8397a..5bdaf332aa5 100644 --- a/apps/rush/package.json +++ b/apps/rush/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/rush", - "version": "5.96.0", + "version": "5.97.0", "description": "A professional solution for consolidating all your JavaScript projects in one Git repo", "keywords": [ "install", diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index a03639f590a..06a888cd44b 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -102,7 +102,7 @@ { "policyName": "rush", "definitionName": "lockStepVersion", - "version": "5.96.0", + "version": "5.97.0", "nextBump": "minor", "mainProject": "@microsoft/rush" } diff --git a/libraries/rush-lib/package.json b/libraries/rush-lib/package.json index 5ffaaf4c791..313d8232201 100644 --- a/libraries/rush-lib/package.json +++ b/libraries/rush-lib/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/rush-lib", - "version": "5.96.0", + "version": "5.97.0", "description": "A library for writing scripts that interact with the Rush tool", "repository": { "type": "git", diff --git a/libraries/rush-sdk/package.json b/libraries/rush-sdk/package.json index 165d6788ede..515a7fbcb66 100644 --- a/libraries/rush-sdk/package.json +++ b/libraries/rush-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/rush-sdk", - "version": "5.96.0", + "version": "5.97.0", "description": "An API for interacting with the Rush engine", "repository": { "type": "git", diff --git a/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json b/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json index 6722f86fc5e..2f6d886066b 100644 --- a/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json +++ b/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/rush-amazon-s3-build-cache-plugin", - "version": "5.96.0", + "version": "5.97.0", "description": "Rush plugin for Amazon S3 cloud build cache", "repository": { "type": "git", diff --git a/rush-plugins/rush-azure-storage-build-cache-plugin/package.json b/rush-plugins/rush-azure-storage-build-cache-plugin/package.json index 091156f5538..898752e0f46 100644 --- a/rush-plugins/rush-azure-storage-build-cache-plugin/package.json +++ b/rush-plugins/rush-azure-storage-build-cache-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/rush-azure-storage-build-cache-plugin", - "version": "5.96.0", + "version": "5.97.0", "description": "Rush plugin for Azure storage cloud build cache", "repository": { "type": "git", From 550d1d95a91e9137d46e590a4e5d6f84a0cfdf30 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Fri, 7 Apr 2023 20:18:41 +0000 Subject: [PATCH 12/20] Bump webpack version to latest --- .../heft-webpack-basic-tutorial/package.json | 2 +- .../package.json | 2 +- .../heft-webpack5-everything-test/package.json | 2 +- heft-plugins/heft-dev-cert-plugin/package.json | 2 +- heft-plugins/heft-webpack5-plugin/package.json | 2 +- libraries/rush-lib/package.json | 2 +- rigs/heft-web-rig/package.json | 2 +- webpack/preserve-dynamic-require-plugin/package.json | 2 +- webpack/webpack-deep-imports-plugin/package.json | 2 +- .../package.json | 2 +- webpack/webpack-plugin-utilities/package.json | 2 +- .../webpack5-load-themed-styles-loader/package.json | 2 +- .../LoadThemedStylesLoader.test.ts.snap | 4 ++-- webpack/webpack5-localization-plugin/package.json | 2 +- .../__snapshots__/LocalizedAsyncDynamic.test.ts.snap | 4 ++-- .../test/__snapshots__/LocalizedRuntime.test.ts.snap | 8 ++++---- .../__snapshots__/MixedAsyncDynamic.test.ts.snap | 4 ++-- .../test/__snapshots__/NoLocalizedFiles.test.ts.snap | 4 ++-- webpack/webpack5-module-minifier-plugin/package.json | 2 +- .../src/test/__snapshots__/AmdExternals.test.ts.snap | 6 +++--- .../src/test/__snapshots__/Incremental.test.ts.snap | 12 ++++++------ .../test/__snapshots__/MultipleRuntimes.test.ts.snap | 12 ++++++------ 22 files changed, 41 insertions(+), 41 deletions(-) diff --git a/build-tests-samples/heft-webpack-basic-tutorial/package.json b/build-tests-samples/heft-webpack-basic-tutorial/package.json index 80a4e81885f..1452d214c30 100644 --- a/build-tests-samples/heft-webpack-basic-tutorial/package.json +++ b/build-tests-samples/heft-webpack-basic-tutorial/package.json @@ -29,6 +29,6 @@ "source-map-loader": "~3.0.1", "style-loader": "~3.3.1", "typescript": "~4.8.4", - "webpack": "~5.75.0" + "webpack": "~5.78.0" } } diff --git a/build-tests/hashed-folder-copy-plugin-webpack5-test/package.json b/build-tests/hashed-folder-copy-plugin-webpack5-test/package.json index c8a3c77f73c..23ca2cb3f73 100644 --- a/build-tests/hashed-folder-copy-plugin-webpack5-test/package.json +++ b/build-tests/hashed-folder-copy-plugin-webpack5-test/package.json @@ -16,6 +16,6 @@ "html-webpack-plugin": "~4.5.2", "typescript": "~4.8.4", "webpack-bundle-analyzer": "~4.5.0", - "webpack": "~5.75.0" + "webpack": "~5.78.0" } } diff --git a/build-tests/heft-webpack5-everything-test/package.json b/build-tests/heft-webpack5-everything-test/package.json index f503e02b98a..b4997fd7ea0 100644 --- a/build-tests/heft-webpack5-everything-test/package.json +++ b/build-tests/heft-webpack5-everything-test/package.json @@ -24,6 +24,6 @@ "tslint": "~5.20.1", "tslint-microsoft-contrib": "~6.2.0", "typescript": "~4.8.4", - "webpack": "~5.75.0" + "webpack": "~5.78.0" } } diff --git a/heft-plugins/heft-dev-cert-plugin/package.json b/heft-plugins/heft-dev-cert-plugin/package.json index 188d38b8ea9..cfa9d7b8268 100644 --- a/heft-plugins/heft-dev-cert-plugin/package.json +++ b/heft-plugins/heft-dev-cert-plugin/package.json @@ -33,6 +33,6 @@ "@types/node": "14.18.36", "eslint": "~8.7.0", "webpack-dev-server": "~4.9.3", - "webpack": "~5.75.0" + "webpack": "~5.78.0" } } diff --git a/heft-plugins/heft-webpack5-plugin/package.json b/heft-plugins/heft-webpack5-plugin/package.json index 459b0016f4b..73f7eca2695 100644 --- a/heft-plugins/heft-webpack5-plugin/package.json +++ b/heft-plugins/heft-webpack5-plugin/package.json @@ -30,6 +30,6 @@ "@rushstack/heft": "workspace:*", "@rushstack/heft-node-rig": "workspace:*", "@types/node": "14.18.36", - "webpack": "~5.75.0" + "webpack": "~5.78.0" } } diff --git a/libraries/rush-lib/package.json b/libraries/rush-lib/package.json index 313d8232201..3c978c6d080 100644 --- a/libraries/rush-lib/package.json +++ b/libraries/rush-lib/package.json @@ -84,7 +84,7 @@ "@types/strict-uri-encode": "2.0.0", "@types/tar": "6.1.1", "@types/webpack-env": "1.18.0", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "publishOnlyDependencies": { "@rushstack/rush-amazon-s3-build-cache-plugin": "workspace:*", diff --git a/rigs/heft-web-rig/package.json b/rigs/heft-web-rig/package.json index 0816b68e85b..6dfaf07f9b3 100644 --- a/rigs/heft-web-rig/package.json +++ b/rigs/heft-web-rig/package.json @@ -38,7 +38,7 @@ "url-loader": "~4.1.1", "webpack-bundle-analyzer": "~4.5.0", "webpack-merge": "~5.8.0", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "devDependencies": { "@rushstack/heft": "workspace:*" diff --git a/webpack/preserve-dynamic-require-plugin/package.json b/webpack/preserve-dynamic-require-plugin/package.json index d20cfb56f65..2a302797438 100644 --- a/webpack/preserve-dynamic-require-plugin/package.json +++ b/webpack/preserve-dynamic-require-plugin/package.json @@ -24,7 +24,7 @@ "@rushstack/heft-node-rig": "workspace:*", "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "sideEffects": false } diff --git a/webpack/webpack-deep-imports-plugin/package.json b/webpack/webpack-deep-imports-plugin/package.json index b1262b0676b..5dab136df85 100644 --- a/webpack/webpack-deep-imports-plugin/package.json +++ b/webpack/webpack-deep-imports-plugin/package.json @@ -27,7 +27,7 @@ "@rushstack/heft": "workspace:*", "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "sideEffects": false, "dependencies": { diff --git a/webpack/webpack-embedded-dependencies-plugin/package.json b/webpack/webpack-embedded-dependencies-plugin/package.json index fb570569f33..48caf352cf7 100644 --- a/webpack/webpack-embedded-dependencies-plugin/package.json +++ b/webpack/webpack-embedded-dependencies-plugin/package.json @@ -34,7 +34,7 @@ "@rushstack/heft-node-rig": "workspace:*", "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", - "webpack": "~5.75.0", + "webpack": "~5.78.0", "memfs": "3.4.3" } } diff --git a/webpack/webpack-plugin-utilities/package.json b/webpack/webpack-plugin-utilities/package.json index d19c7b52637..aac7621fafa 100644 --- a/webpack/webpack-plugin-utilities/package.json +++ b/webpack/webpack-plugin-utilities/package.json @@ -37,6 +37,6 @@ "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", "@types/tapable": "1.0.6", - "webpack": "~5.75.0" + "webpack": "~5.78.0" } } diff --git a/webpack/webpack5-load-themed-styles-loader/package.json b/webpack/webpack5-load-themed-styles-loader/package.json index d19d3d64c10..6bd86855abc 100644 --- a/webpack/webpack5-load-themed-styles-loader/package.json +++ b/webpack/webpack5-load-themed-styles-loader/package.json @@ -32,7 +32,7 @@ "@rushstack/node-core-library": "workspace:*", "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", - "webpack": "~5.75.0", + "webpack": "~5.78.0", "memfs": "3.4.3", "css-loader": "~6.6.0" } diff --git a/webpack/webpack5-load-themed-styles-loader/src/test/__snapshots__/LoadThemedStylesLoader.test.ts.snap b/webpack/webpack5-load-themed-styles-loader/src/test/__snapshots__/LoadThemedStylesLoader.test.ts.snap index 9f030bf98f0..d39216cab9a 100644 --- a/webpack/webpack5-load-themed-styles-loader/src/test/__snapshots__/LoadThemedStylesLoader.test.ts.snap +++ b/webpack/webpack5-load-themed-styles-loader/src/test/__snapshots__/LoadThemedStylesLoader.test.ts.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`webpack5-load-themed-style-loader generates desired loader output snapshot: LoaderContent 1`] = ` -"var content = require(\\"!!../../../../../common/temp/node_modules/.pnpm/css-loader@6.6.0_webpack@5.75.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./MockStyle1.css\\"); +"var content = require(\\"!!../../../../../common/temp/node_modules/.pnpm/css-loader@6.6.0_webpack@5.78.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./MockStyle1.css\\"); var loader = require(\\"../../../lib/test/testData/LoadThemedStylesMock\\"); if(typeof content === \\"string\\") content = [[module.id, content]]; @@ -13,7 +13,7 @@ if(content.locals) module.exports = content.locals;" `; exports[`webpack5-load-themed-style-loader generates desired output for esModule option set to "true" as a snapshot: LoaderContent ESModule 1`] = ` -"import content from \\"!!../../../../../common/temp/node_modules/.pnpm/css-loader@6.6.0_webpack@5.75.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./MockStyle1.css\\"; +"import content from \\"!!../../../../../common/temp/node_modules/.pnpm/css-loader@6.6.0_webpack@5.78.0/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./MockStyle1.css\\"; import { loadStyles } from \\"../../../lib/test/testData/LoadThemedStylesMock\\"; if(typeof content === \\"string\\") content = [[module.id, content]]; diff --git a/webpack/webpack5-localization-plugin/package.json b/webpack/webpack5-localization-plugin/package.json index a757d187987..859827d1e69 100644 --- a/webpack/webpack5-localization-plugin/package.json +++ b/webpack/webpack5-localization-plugin/package.json @@ -30,7 +30,7 @@ "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", "memfs": "3.4.3", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "peerDependenciesMeta": { "@types/node": { diff --git a/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedAsyncDynamic.test.ts.snap b/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedAsyncDynamic.test.ts.snap index 88d98da64ac..968703a8820 100644 --- a/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedAsyncDynamic.test.ts.snap +++ b/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedAsyncDynamic.test.ts.snap @@ -173,7 +173,7 @@ const strings2_resjson_namespaceObject = JSON.parse('{\\"P\\":\\"some random tra /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -199,7 +199,7 @@ const strings2_resjson_namespaceObject = JSON.parse('{\\"P\\":\\"some random tra /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src diff --git a/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedRuntime.test.ts.snap b/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedRuntime.test.ts.snap index 2f003fc794c..478fe91f0ff 100644 --- a/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedRuntime.test.ts.snap +++ b/webpack/webpack5-localization-plugin/src/test/__snapshots__/LocalizedRuntime.test.ts.snap @@ -164,7 +164,7 @@ const strings2_resjson_strings = {\\"another\\":\\"some random translation\\"}; /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -190,7 +190,7 @@ const strings2_resjson_strings = {\\"another\\":\\"some random translation\\"}; /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src @@ -405,7 +405,7 @@ __webpack_require__.e(/* import() | async */ 931).then(__webpack_require__.bind( /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -431,7 +431,7 @@ __webpack_require__.e(/* import() | async */ 931).then(__webpack_require__.bind( /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src diff --git a/webpack/webpack5-localization-plugin/src/test/__snapshots__/MixedAsyncDynamic.test.ts.snap b/webpack/webpack5-localization-plugin/src/test/__snapshots__/MixedAsyncDynamic.test.ts.snap index 01d056ec8ef..2c5e99fadf5 100644 --- a/webpack/webpack5-localization-plugin/src/test/__snapshots__/MixedAsyncDynamic.test.ts.snap +++ b/webpack/webpack5-localization-plugin/src/test/__snapshots__/MixedAsyncDynamic.test.ts.snap @@ -216,7 +216,7 @@ const strings2_loc_strings = {\\"another\\":\\"some random translation\\"}; /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -242,7 +242,7 @@ const strings2_loc_strings = {\\"another\\":\\"some random translation\\"}; /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src diff --git a/webpack/webpack5-localization-plugin/src/test/__snapshots__/NoLocalizedFiles.test.ts.snap b/webpack/webpack5-localization-plugin/src/test/__snapshots__/NoLocalizedFiles.test.ts.snap index 6306a8b12f6..9b24d7c12a2 100644 --- a/webpack/webpack5-localization-plugin/src/test/__snapshots__/NoLocalizedFiles.test.ts.snap +++ b/webpack/webpack5-localization-plugin/src/test/__snapshots__/NoLocalizedFiles.test.ts.snap @@ -147,7 +147,7 @@ function foo() { console.log('foo'); } /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -173,7 +173,7 @@ function foo() { console.log('foo'); } /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src diff --git a/webpack/webpack5-module-minifier-plugin/package.json b/webpack/webpack5-module-minifier-plugin/package.json index 6264b1ce2f9..09cd69edef7 100644 --- a/webpack/webpack5-module-minifier-plugin/package.json +++ b/webpack/webpack5-module-minifier-plugin/package.json @@ -37,7 +37,7 @@ "@types/heft-jest": "1.0.1", "@types/node": "14.18.36", "memfs": "3.4.3", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "sideEffects": false, "peerDependenciesMeta": { diff --git a/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/AmdExternals.test.ts.snap b/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/AmdExternals.test.ts.snap index d29915d687f..9d193d19165 100644 --- a/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/AmdExternals.test.ts.snap +++ b/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/AmdExternals.test.ts.snap @@ -35,7 +35,7 @@ function foo() { bar__WEBPACK_IMPORTED_MODULE_0___default().a(); baz__WEBPACK_IM // End Asset", "/release/async.js.LICENSE.txt": "// @license MIT ", - "/release/main.js": "// Begin Asset Hash=e27e1ab4650176726943ebe6738ed1d860bdb2fabfb54b39ada68898ca903312 + "/release/main.js": "// Begin Asset Hash=b7fc2462de348315cb2fd1daa625acef56088c98afb80ddf2b701b74faed5b03 define([\\"bar\\",\\"baz\\"], (__WEBPACK_EXTERNAL_MODULE__791__, __WEBPACK_EXTERNAL_MODULE__506__) => { return /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ @@ -185,7 +185,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__506__; /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -211,7 +211,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__506__; /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src diff --git a/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/Incremental.test.ts.snap b/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/Incremental.test.ts.snap index b9dc8399e5a..9cdb4f3fcd6 100644 --- a/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/Incremental.test.ts.snap +++ b/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/Incremental.test.ts.snap @@ -35,7 +35,7 @@ function foo() { bar__WEBPACK_IMPORTED_MODULE_0___default().a(); baz__WEBPACK_IM // End Asset", "/release/async.js.LICENSE.txt": "// @license MIT ", - "/release/main.js": "// Begin Asset Hash=ba01c299c5bb3f37b96b943e3a4992b22dfc4d7dc60e5dca924861e9f87e1e1a + "/release/main.js": "// Begin Asset Hash=ff9c1e084c22b048bb2c8c4e91277859c501f3d66200893c5f77899e830145f6 define([\\"bar\\",\\"baz\\"], (__WEBPACK_EXTERNAL_MODULE__565__, __WEBPACK_EXTERNAL_MODULE__506__) => { return /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ @@ -185,7 +185,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__506__; /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -211,7 +211,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__506__; /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src @@ -362,7 +362,7 @@ function foo() { (0,bar__WEBPACK_IMPORTED_MODULE_0__.something)(); } // End Asset", "/release/async.js.LICENSE.txt": "// @lic OtherLicense ", - "/release/main.js": "// Begin Asset Hash=8cb2cd5ea24475cb83869e60a7e7e6c19f900a89b19a075000f7a98850f0f6aa + "/release/main.js": "// Begin Asset Hash=fb2b1d8083a33d0a2b25f8aa0cd7a8c5b8b28db3dfa41e6eda716c1b21084754 define([\\"bar\\"], (__WEBPACK_EXTERNAL_MODULE__565__) => { return /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ @@ -504,7 +504,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__565__; /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -530,7 +530,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__565__; /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src diff --git a/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/MultipleRuntimes.test.ts.snap b/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/MultipleRuntimes.test.ts.snap index 05750a983b7..2acb76f645e 100644 --- a/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/MultipleRuntimes.test.ts.snap +++ b/webpack/webpack5-module-minifier-plugin/src/test/__snapshots__/MultipleRuntimes.test.ts.snap @@ -96,7 +96,7 @@ function a2() { console.log('async-2'); } "/release/async-2.js.LICENSE.txt": "// @license BAZ // @license MIT ", - "/release/entry1.js": "// Begin Asset Hash=9b2f2c0d54fbb3ce1ede4408a8968452e80e92d384220ca8c3c87c535c02237b + "/release/entry1.js": "// Begin Asset Hash=74e630e0e51a143c6bf040e9830b7232240eb7f77b9f975b5b0b0ceb5effaffa /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({}); /************************************************************************/ @@ -216,7 +216,7 @@ function a2() { console.log('async-2'); } /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -242,7 +242,7 @@ function a2() { console.log('async-2'); } /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src @@ -354,7 +354,7 @@ __webpack_require__.e(/* import() | async-1 */ 842).then(__webpack_require__.bin /******/ })() ; // End Asset", - "/release/entry2.js": "// Begin Asset Hash=b6b2dec55f1385016da9824761fd9d3624d5835eb8e6178c678910e1e84f25b0 + "/release/entry2.js": "// Begin Asset Hash=e3c1d19e03a2663e0d40d6720cb99f21c3fe6c6140d967f232f3b97b44e5c53b /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({}); /************************************************************************/ @@ -474,7 +474,7 @@ __webpack_require__.e(/* import() | async-1 */ 842).then(__webpack_require__.bin /******/ script.parentNode && script.parentNode.removeChild(script); /******/ doneFns && doneFns.forEach((fn) => (fn(event))); /******/ if(prev) return prev(event); -/******/ }; +/******/ } /******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000); /******/ script.onerror = onScriptComplete.bind(null, script.onerror); /******/ script.onload = onScriptComplete.bind(null, script.onload); @@ -500,7 +500,7 @@ __webpack_require__.e(/* import() | async-1 */ 842).then(__webpack_require__.bin /******/ var document = __webpack_require__.g.document; /******/ if (!scriptUrl && document) { /******/ if (document.currentScript) -/******/ scriptUrl = document.currentScript.src +/******/ scriptUrl = document.currentScript.src; /******/ if (!scriptUrl) { /******/ var scripts = document.getElementsByTagName(\\"script\\"); /******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src From cc415020928b5be5e2f184df2d276633f1f42385 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Fri, 7 Apr 2023 20:19:05 +0000 Subject: [PATCH 13/20] rush update --- .../workspace/common/pnpm-lock.yaml | 60 +-- common/config/rush/pnpm-lock.yaml | 383 ++++-------------- common/config/rush/repo-state.json | 2 +- 3 files changed, 110 insertions(+), 335 deletions(-) diff --git a/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml b/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml index bd8fc404c69..3b51102b5bc 100644 --- a/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml +++ b/build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml @@ -4,13 +4,13 @@ importers: rush-lib-test: specifiers: - '@microsoft/rush-lib': file:microsoft-rush-lib-5.96.0.tgz + '@microsoft/rush-lib': file:microsoft-rush-lib-5.97.0.tgz '@types/node': 14.18.36 colors: ^1.4.0 rimraf: ^4.1.2 typescript: ~4.8.4 dependencies: - '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz_@types+node@14.18.36 + '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.97.0.tgz_@types+node@14.18.36 colors: 1.4.0 devDependencies: '@types/node': 14.18.36 @@ -19,17 +19,17 @@ importers: rush-sdk-test: specifiers: - '@microsoft/rush-lib': file:microsoft-rush-lib-5.96.0.tgz - '@rushstack/rush-sdk': file:rushstack-rush-sdk-5.96.0.tgz + '@microsoft/rush-lib': file:microsoft-rush-lib-5.97.0.tgz + '@rushstack/rush-sdk': file:rushstack-rush-sdk-5.97.0.tgz '@types/node': 14.18.36 colors: ^1.4.0 rimraf: ^4.1.2 typescript: ~4.8.4 dependencies: - '@rushstack/rush-sdk': file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz_@types+node@14.18.36 + '@rushstack/rush-sdk': file:../temp/tarballs/rushstack-rush-sdk-5.97.0.tgz_@types+node@14.18.36 colors: 1.4.0 devDependencies: - '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz_@types+node@14.18.36 + '@microsoft/rush-lib': file:../temp/tarballs/microsoft-rush-lib-5.97.0.tgz_@types+node@14.18.36 '@types/node': 14.18.36 rimraf: 4.1.2 typescript: 4.8.4 @@ -3653,20 +3653,20 @@ packages: optionalDependencies: commander: 2.20.3 - file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz} - id: file:../temp/tarballs/microsoft-rush-lib-5.96.0.tgz + file:../temp/tarballs/microsoft-rush-lib-5.97.0.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/microsoft-rush-lib-5.97.0.tgz} + id: file:../temp/tarballs/microsoft-rush-lib-5.97.0.tgz name: '@microsoft/rush-lib' - version: 5.96.0 + version: 5.97.0 engines: {node: '>=5.6.0'} dependencies: '@pnpm/link-bins': 5.3.25 '@rushstack/heft-config-file': file:../temp/tarballs/rushstack-heft-config-file-0.11.9.tgz_@types+node@14.18.36 '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 - '@rushstack/package-deps-hash': file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz_@types+node@14.18.36 + '@rushstack/package-deps-hash': file:../temp/tarballs/rushstack-package-deps-hash-4.0.11.tgz_@types+node@14.18.36 '@rushstack/rig-package': file:../temp/tarballs/rushstack-rig-package-0.3.18.tgz - '@rushstack/stream-collator': file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz_@types+node@14.18.36 - '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.3.tgz_@types+node@14.18.36 + '@rushstack/stream-collator': file:../temp/tarballs/rushstack-stream-collator-4.0.229.tgz_@types+node@14.18.36 + '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.4.tgz_@types+node@14.18.36 '@rushstack/ts-command-line': file:../temp/tarballs/rushstack-ts-command-line-4.13.2.tgz '@types/node-fetch': 2.6.2 '@yarnpkg/lockfile': 1.0.2 @@ -3872,11 +3872,11 @@ packages: semver: 7.3.8 z-schema: 5.0.3 - file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz} - id: file:../temp/tarballs/rushstack-package-deps-hash-4.0.10.tgz + file:../temp/tarballs/rushstack-package-deps-hash-4.0.11.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-package-deps-hash-4.0.11.tgz} + id: file:../temp/tarballs/rushstack-package-deps-hash-4.0.11.tgz name: '@rushstack/package-deps-hash' - version: 4.0.10 + version: 4.0.11 dependencies: '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 transitivePeerDependencies: @@ -3890,11 +3890,11 @@ packages: resolve: 1.22.1 strip-json-comments: 3.1.1 - file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz} - id: file:../temp/tarballs/rushstack-rush-sdk-5.96.0.tgz + file:../temp/tarballs/rushstack-rush-sdk-5.97.0.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-rush-sdk-5.97.0.tgz} + id: file:../temp/tarballs/rushstack-rush-sdk-5.97.0.tgz name: '@rushstack/rush-sdk' - version: 5.96.0 + version: 5.97.0 dependencies: '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 '@types/node-fetch': 2.6.2 @@ -3903,22 +3903,22 @@ packages: - '@types/node' dev: false - file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz} - id: file:../temp/tarballs/rushstack-stream-collator-4.0.228.tgz + file:../temp/tarballs/rushstack-stream-collator-4.0.229.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-stream-collator-4.0.229.tgz} + id: file:../temp/tarballs/rushstack-stream-collator-4.0.229.tgz name: '@rushstack/stream-collator' - version: 4.0.228 + version: 4.0.229 dependencies: '@rushstack/node-core-library': file:../temp/tarballs/rushstack-node-core-library-3.55.2.tgz_@types+node@14.18.36 - '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.3.tgz_@types+node@14.18.36 + '@rushstack/terminal': file:../temp/tarballs/rushstack-terminal-0.5.4.tgz_@types+node@14.18.36 transitivePeerDependencies: - '@types/node' - file:../temp/tarballs/rushstack-terminal-0.5.3.tgz_@types+node@14.18.36: - resolution: {tarball: file:../temp/tarballs/rushstack-terminal-0.5.3.tgz} - id: file:../temp/tarballs/rushstack-terminal-0.5.3.tgz + file:../temp/tarballs/rushstack-terminal-0.5.4.tgz_@types+node@14.18.36: + resolution: {tarball: file:../temp/tarballs/rushstack-terminal-0.5.4.tgz} + id: file:../temp/tarballs/rushstack-terminal-0.5.4.tgz name: '@rushstack/terminal' - version: 0.5.3 + version: 0.5.4 peerDependencies: '@types/node': '*' peerDependenciesMeta: diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index d5db103640d..e61c9aee1d6 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -562,7 +562,7 @@ importers: style-loader: ~3.3.1 tslib: ~2.3.1 typescript: ~4.8.4 - webpack: ~5.75.0 + webpack: ~5.78.0 dependencies: react: 16.13.1 react-dom: 16.13.1_react@16.13.1 @@ -576,13 +576,13 @@ importers: '@types/react': 16.14.23 '@types/react-dom': 16.9.14 '@types/webpack-env': 1.18.0 - css-loader: 6.6.0_webpack@5.75.0 + css-loader: 6.6.0_webpack@5.78.0 eslint: 8.7.0 - html-webpack-plugin: 5.5.0_webpack@5.75.0 - source-map-loader: 3.0.2_webpack@5.75.0 - style-loader: 3.3.1_webpack@5.75.0 + html-webpack-plugin: 5.5.0_webpack@5.78.0 + source-map-loader: 3.0.2_webpack@5.78.0 + style-loader: 3.3.1_webpack@5.78.0 typescript: 4.8.4 - webpack: 5.75.0 + webpack: 5.78.0 ../../build-tests-samples/packlets-tutorial: specifiers: @@ -815,16 +815,16 @@ importers: '@types/webpack-env': 1.18.0 html-webpack-plugin: ~4.5.2 typescript: ~4.8.4 - webpack: ~5.75.0 + webpack: ~5.78.0 webpack-bundle-analyzer: ~4.5.0 devDependencies: '@rushstack/hashed-folder-copy-plugin': link:../../webpack/hashed-folder-copy-plugin '@rushstack/heft': link:../../apps/heft '@rushstack/heft-webpack5-plugin': link:../../heft-plugins/heft-webpack5-plugin '@types/webpack-env': 1.18.0 - html-webpack-plugin: 4.5.2_webpack@5.75.0 + html-webpack-plugin: 4.5.2_webpack@5.78.0 typescript: 4.8.4 - webpack: 5.75.0 + webpack: 5.78.0 webpack-bundle-analyzer: 4.5.0 ../../build-tests/heft-action-plugin: @@ -1176,7 +1176,7 @@ importers: tslint: ~5.20.1 tslint-microsoft-contrib: ~6.2.0 typescript: ~4.8.4 - webpack: ~5.75.0 + webpack: ~5.78.0 devDependencies: '@rushstack/eslint-config': link:../../eslint/eslint-config '@rushstack/heft': link:../../apps/heft @@ -1188,11 +1188,11 @@ importers: '@types/heft-jest': 1.0.1 '@types/webpack-env': 1.18.0 eslint: 8.7.0 - html-webpack-plugin: 5.5.0_webpack@5.75.0 + html-webpack-plugin: 5.5.0_webpack@5.78.0 tslint: 5.20.1_typescript@4.8.4 tslint-microsoft-contrib: 6.2.0_is64cncltak2c2767drphpzcku typescript: 4.8.4 - webpack: 5.75.0 + webpack: 5.78.0 ../../build-tests/install-test-workspace: specifiers: @@ -1519,7 +1519,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 eslint: ~8.7.0 - webpack: ~5.75.0 + webpack: ~5.78.0 webpack-dev-server: ~4.9.3 dependencies: '@rushstack/debug-certificate-manager': link:../../libraries/debug-certificate-manager @@ -1532,8 +1532,8 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 eslint: 8.7.0 - webpack: 5.75.0 - webpack-dev-server: 4.9.3_webpack@5.75.0 + webpack: 5.78.0 + webpack-dev-server: 4.9.3_webpack@5.78.0 ../../heft-plugins/heft-jest-plugin: specifiers: @@ -1671,17 +1671,17 @@ importers: '@rushstack/heft-node-rig': workspace:* '@rushstack/node-core-library': workspace:* '@types/node': 14.18.36 - webpack: ~5.75.0 + webpack: ~5.78.0 webpack-dev-server: ~4.9.3 dependencies: '@rushstack/node-core-library': link:../../libraries/node-core-library - webpack-dev-server: 4.9.3_webpack@5.75.0 + webpack-dev-server: 4.9.3_webpack@5.78.0 devDependencies: '@rushstack/eslint-config': link:../../eslint/eslint-config '@rushstack/heft': link:../../apps/heft '@rushstack/heft-node-rig': link:../../rigs/heft-node-rig '@types/node': 14.18.36 - webpack: 5.75.0 + webpack: 5.78.0 ../../libraries/api-extractor-model: specifiers: @@ -1951,7 +1951,7 @@ importers: tapable: 2.2.1 tar: ~6.1.11 true-case-path: ~2.2.1 - webpack: ~5.75.0 + webpack: ~5.78.0 dependencies: '@pnpm/link-bins': 5.3.25 '@rushstack/heft-config-file': link:../heft-config-file @@ -2014,7 +2014,7 @@ importers: '@types/strict-uri-encode': 2.0.0 '@types/tar': 6.1.1 '@types/webpack-env': 1.18.0 - webpack: 5.75.0 + webpack: 5.78.0 ../../libraries/rush-sdk: specifiers: @@ -2313,7 +2313,7 @@ importers: terser-webpack-plugin: ~5.3.1 typescript: ~4.8.4 url-loader: ~4.1.1 - webpack: ~5.75.0 + webpack: ~5.78.0 webpack-bundle-analyzer: ~4.5.0 webpack-merge: ~5.8.0 dependencies: @@ -2322,22 +2322,22 @@ importers: '@rushstack/heft-sass-plugin': link:../../heft-plugins/heft-sass-plugin '@rushstack/heft-webpack5-plugin': link:../../heft-plugins/heft-webpack5-plugin autoprefixer: 10.4.13_postcss@8.4.21 - css-loader: 6.6.0_webpack@5.75.0 - css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 + css-loader: 6.6.0_webpack@5.78.0 + css-minimizer-webpack-plugin: 3.4.1_webpack@5.78.0 eslint: 8.7.0 - html-webpack-plugin: 5.5.0_webpack@5.75.0 + html-webpack-plugin: 5.5.0_webpack@5.78.0 jest-environment-jsdom: 29.5.0 - mini-css-extract-plugin: 2.5.3_webpack@5.75.0 + mini-css-extract-plugin: 2.5.3_webpack@5.78.0 postcss: 8.4.21 - postcss-loader: 6.2.1_6jdsrmfenkuhhw3gx4zvjlznce + postcss-loader: 6.2.1_2izhiogyhzv3k6gmxpzxzwhblu sass: 1.49.11 - sass-loader: 12.4.0_cjd2qsdkq5hfjhufx2mctdcnzy - source-map-loader: 3.0.2_webpack@5.75.0 - style-loader: 3.3.1_webpack@5.75.0 - terser-webpack-plugin: 5.3.6_webpack@5.75.0 + sass-loader: 12.4.0_nhnw2mbyotoesjxyh2t7o6kqbq + source-map-loader: 3.0.2_webpack@5.78.0 + style-loader: 3.3.1_webpack@5.78.0 + terser-webpack-plugin: 5.3.6_webpack@5.78.0 typescript: 4.8.4 - url-loader: 4.1.1_webpack@5.75.0 - webpack: 5.75.0 + url-loader: 4.1.1_webpack@5.78.0 + webpack: 5.78.0 webpack-bundle-analyzer: 4.5.0 webpack-merge: 5.8.0 devDependencies: @@ -2525,14 +2525,14 @@ importers: '@rushstack/heft-node-rig': workspace:* '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 - webpack: ~5.75.0 + webpack: ~5.78.0 devDependencies: '@rushstack/eslint-config': link:../../eslint/eslint-config '@rushstack/heft': link:../../apps/heft '@rushstack/heft-node-rig': link:../../rigs/heft-node-rig '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 - webpack: 5.75.0 + webpack: 5.78.0 ../../webpack/set-webpack-public-path-plugin: specifiers: @@ -2565,7 +2565,7 @@ importers: '@rushstack/node-core-library': workspace:* '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 - webpack: ~5.75.0 + webpack: ~5.78.0 dependencies: '@rushstack/node-core-library': link:../../libraries/node-core-library devDependencies: @@ -2574,7 +2574,7 @@ importers: '@rushstack/heft-node-rig': link:../../rigs/heft-node-rig '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 - webpack: 5.75.0 + webpack: 5.78.0 ../../webpack/webpack-embedded-dependencies-plugin: specifiers: @@ -2586,7 +2586,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 memfs: 3.4.3 - webpack: ~5.75.0 + webpack: ~5.78.0 dependencies: '@rushstack/node-core-library': link:../../libraries/node-core-library devDependencies: @@ -2597,7 +2597,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 memfs: 3.4.3 - webpack: 5.75.0 + webpack: 5.78.0 ../../webpack/webpack-plugin-utilities: specifiers: @@ -2608,7 +2608,7 @@ importers: '@types/node': 14.18.36 '@types/tapable': 1.0.6 memfs: 3.4.3 - webpack: ~5.75.0 + webpack: ~5.78.0 webpack-merge: ~5.8.0 dependencies: memfs: 3.4.3 @@ -2620,7 +2620,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 '@types/tapable': 1.0.6 - webpack: 5.75.0 + webpack: 5.78.0 ../../webpack/webpack4-localization-plugin: specifiers: @@ -2701,7 +2701,7 @@ importers: '@types/node': 14.18.36 css-loader: ~6.6.0 memfs: 3.4.3 - webpack: ~5.75.0 + webpack: ~5.78.0 devDependencies: '@microsoft/load-themed-styles': link:../../libraries/load-themed-styles '@rushstack/eslint-config': link:../../eslint/eslint-config @@ -2710,9 +2710,9 @@ importers: '@rushstack/node-core-library': link:../../libraries/node-core-library '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 - css-loader: 6.6.0_webpack@5.75.0 + css-loader: 6.6.0_webpack@5.78.0 memfs: 3.4.3 - webpack: 5.75.0 + webpack: 5.78.0 ../../webpack/webpack5-localization-plugin: specifiers: @@ -2724,7 +2724,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 memfs: 3.4.3 - webpack: ~5.75.0 + webpack: ~5.78.0 dependencies: '@rushstack/localization-utilities': link:../../libraries/localization-utilities '@rushstack/node-core-library': link:../../libraries/node-core-library @@ -2735,7 +2735,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 memfs: 3.4.3 - webpack: 5.75.0 + webpack: 5.78.0 ../../webpack/webpack5-module-minifier-plugin: specifiers: @@ -2750,7 +2750,7 @@ importers: '@types/tapable': 1.0.6 memfs: 3.4.3 tapable: 2.2.1 - webpack: ~5.75.0 + webpack: ~5.78.0 dependencies: '@rushstack/worker-pool': link:../../libraries/worker-pool '@types/estree': 0.0.50 @@ -2764,7 +2764,7 @@ importers: '@types/heft-jest': 1.0.1 '@types/node': 14.18.36 memfs: 3.4.3 - webpack: 5.75.0 + webpack: 5.78.0 packages: @@ -5271,48 +5271,6 @@ packages: - utf-8-validate dev: true - /@jest/core/29.3.1: - resolution: {integrity: sha512-0ohVjjRex985w5MmO5L3u5GR1O30DexhBSpuwx2P+9ftyqHdJXnk7IUWiP80oHMvt7ubHCJHxV0a0vlKVuZirw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': 29.5.0 - '@jest/reporters': 29.3.1 - '@jest/test-result': 29.5.0_@types+node@14.18.36 - '@jest/transform': 29.3.1 - '@jest/types': 29.3.1 - '@types/node': 14.18.36 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.7.1 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 29.5.0 - jest-config: 29.3.1_@types+node@14.18.36 - jest-haste-map: 29.5.0 - jest-message-util: 29.5.0 - jest-regex-util: 29.4.3 - jest-resolve: 29.3.1 - jest-resolve-dependencies: 29.5.0 - jest-runner: 29.5.0 - jest-runtime: 29.5.0 - jest-snapshot: 29.3.1 - jest-util: 29.5.0 - jest-validate: 29.5.0 - jest-watcher: 29.5.0 - micromatch: 4.0.5 - pretty-format: 29.5.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - - ts-node - dev: true - /@jest/core/29.5.0: resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -5509,44 +5467,6 @@ packages: - supports-color dev: true - /@jest/reporters/29.3.1: - resolution: {integrity: sha512-GhBu3YFuDrcAYW/UESz1JphEAbvUjaY2vShRZRoRY1mxpCMB3yGSJ4j9n0GxVlEOdCf7qjvUfBCrTUUqhVfbRA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.5.0 - '@jest/test-result': 29.5.0_@types+node@14.18.36 - '@jest/transform': 29.3.1 - '@jest/types': 29.3.1 - '@jridgewell/trace-mapping': 0.3.17 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/node': 14.18.36 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1_@types+node@14.18.36 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.1 - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.5 - jest-message-util: 29.5.0 - jest-util: 29.5.0 - jest-worker: 29.5.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.0.1 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/reporters/29.5.0: resolution: {integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -5727,29 +5647,6 @@ packages: - supports-color dev: true - /@jest/transform/29.3.1: - resolution: {integrity: sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': 7.20.12 - '@jest/types': 29.3.1 - '@jridgewell/trace-mapping': 0.3.17 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.10 - jest-haste-map: 29.5.0 - jest-regex-util: 29.4.3 - jest-util: 29.5.0 - micromatch: 4.0.5 - pirates: 4.0.5 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/transform/29.5.0: resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -5794,18 +5691,6 @@ packages: chalk: 4.1.2 dev: true - /@jest/types/29.3.1: - resolution: {integrity: sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.4.3 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 14.18.36 - '@types/yargs': 17.0.20 - chalk: 4.1.2 - dev: true - /@jest/types/29.5.0: resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -11723,7 +11608,7 @@ packages: webpack: 4.44.2 dev: true - /css-loader/6.6.0_webpack@5.75.0: + /css-loader/6.6.0_webpack@5.78.0: resolution: {integrity: sha512-FK7H2lisOixPT406s5gZM1S3l8GrfhEBT3ZiL2UX1Ng1XWs0y2GPllz/OTyvbaHe12VgQrIXIzuEGVlbUhodqg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -11737,9 +11622,9 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.75.0 + webpack: 5.78.0 - /css-minimizer-webpack-plugin/3.4.1_webpack@5.75.0: + /css-minimizer-webpack-plugin/3.4.1_webpack@5.78.0: resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -11764,7 +11649,7 @@ packages: schema-utils: 4.0.0 serialize-javascript: 6.0.0 source-map: 0.6.1 - webpack: 5.75.0 + webpack: 5.78.0 dev: false /css-modules-loader-core/1.1.0: @@ -14709,7 +14594,7 @@ packages: util.promisify: 1.0.0 webpack: 4.44.2 - /html-webpack-plugin/4.5.2_webpack@5.75.0: + /html-webpack-plugin/4.5.2_webpack@5.78.0: resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} engines: {node: '>=6.9'} peerDependencies: @@ -14724,10 +14609,10 @@ packages: pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 5.75.0 + webpack: 5.78.0 dev: true - /html-webpack-plugin/5.5.0_webpack@5.75.0: + /html-webpack-plugin/5.5.0_webpack@5.78.0: resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -14738,7 +14623,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.75.0 + webpack: 5.78.0 /htmlparser2/6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} @@ -15720,45 +15605,6 @@ packages: - utf-8-validate dev: true - /jest-config/29.3.1_@types+node@14.18.36: - resolution: {integrity: sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - dependencies: - '@babel/core': 7.20.12 - '@jest/test-sequencer': 29.5.0_@types+node@14.18.36 - '@jest/types': 29.3.1 - '@types/node': 14.18.36 - babel-jest: 29.5.0_@babel+core@7.20.12 - chalk: 4.1.2 - ci-info: 3.7.1 - deepmerge: 4.2.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-circus: 29.5.0 - jest-environment-node: 29.3.1 - jest-get-type: 29.4.3 - jest-regex-util: 29.4.3 - jest-resolve: 29.3.1 - jest-runner: 29.5.0 - jest-util: 29.5.0 - jest-validate: 29.5.0 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.5.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - /jest-config/29.5.0_@types+node@14.18.36: resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -15914,18 +15760,6 @@ packages: jest-util: 27.5.1 dev: true - /jest-environment-node/29.3.1: - resolution: {integrity: sha512-xm2THL18Xf5sIHoU7OThBPtuH6Lerd+Y1NLYiZJlkE3hbE+7N7r8uvHIl/FkZ5ymKXJe/11SQuf3fv4v6rUMag==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.5.0 - '@jest/fake-timers': 29.5.0 - '@jest/types': 29.3.1 - '@types/node': 14.18.36 - jest-mock: 29.5.0 - jest-util: 29.5.0 - dev: true - /jest-environment-node/29.5.0: resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -16133,18 +15967,6 @@ packages: jest-resolve: 27.5.1 dev: true - /jest-pnp-resolver/1.2.3_jest-resolve@29.3.1: - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 29.3.1 - dev: true - /jest-pnp-resolver/1.2.3_jest-resolve@29.5.0: resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} @@ -16222,21 +16044,6 @@ packages: slash: 3.0.0 dev: true - /jest-resolve/29.3.1: - resolution: {integrity: sha512-amXJgH/Ng712w3Uz5gqzFBBjxV8WFLSmNjoreBGMqxgCz5cH7swmBZzgBaCIOsvb0NbpJ0vgaSFdJqMdT+rADw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - chalk: 4.1.2 - graceful-fs: 4.2.10 - jest-haste-map: 29.5.0 - jest-pnp-resolver: 1.2.3_jest-resolve@29.3.1 - jest-util: 29.5.0 - jest-validate: 29.5.0 - resolve: 1.22.1 - resolve.exports: 1.1.1 - slash: 3.0.0 - dev: true - /jest-resolve/29.5.0: resolution: {integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -16447,38 +16254,6 @@ packages: - supports-color dev: true - /jest-snapshot/29.3.1: - resolution: {integrity: sha512-+3JOc+s28upYLI2OJM4PWRGK9AgpsMs/ekNryUV0yMBClT9B1DF2u2qay8YxcQd338PPYSFNb0lsar1B49sLDA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': 7.20.12 - '@babel/generator': 7.20.14 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12 - '@babel/traverse': 7.20.13 - '@babel/types': 7.20.7 - '@jest/expect-utils': 29.5.0 - '@jest/transform': 29.3.1 - '@jest/types': 29.3.1 - '@types/babel__traverse': 7.18.3 - '@types/prettier': 2.7.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 - chalk: 4.1.2 - expect: 29.5.0 - graceful-fs: 4.2.10 - jest-diff: 29.5.0 - jest-get-type: 29.4.3 - jest-haste-map: 29.5.0 - jest-matcher-utils: 29.5.0 - jest-message-util: 29.5.0 - jest-util: 29.5.0 - natural-compare: 1.4.0 - pretty-format: 29.5.0 - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - dev: true - /jest-snapshot/29.5.0: resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -16637,8 +16412,8 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.3.1 - '@jest/types': 29.3.1 + '@jest/core': 29.5.0 + '@jest/types': 29.5.0 import-local: 3.1.0 jest-cli: 29.4.1_@types+node@14.18.36 transitivePeerDependencies: @@ -17542,14 +17317,14 @@ packages: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} - /mini-css-extract-plugin/2.5.3_webpack@5.75.0: + /mini-css-extract-plugin/2.5.3_webpack@5.78.0: resolution: {integrity: sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.75.0 + webpack: 5.78.0 dev: false /minimalistic-assert/1.0.1: @@ -18735,7 +18510,7 @@ packages: webpack: 4.44.2 dev: true - /postcss-loader/6.2.1_6jdsrmfenkuhhw3gx4zvjlznce: + /postcss-loader/6.2.1_2izhiogyhzv3k6gmxpzxzwhblu: resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -18746,7 +18521,7 @@ packages: klona: 2.0.6 postcss: 8.4.21 semver: 7.3.8 - webpack: 5.75.0 + webpack: 5.78.0 dev: false /postcss-merge-longhand/5.1.7_postcss@8.4.21: @@ -20348,7 +20123,7 @@ packages: webpack: 4.44.2 dev: true - /sass-loader/12.4.0_cjd2qsdkq5hfjhufx2mctdcnzy: + /sass-loader/12.4.0_nhnw2mbyotoesjxyh2t7o6kqbq: resolution: {integrity: sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -20367,7 +20142,7 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.49.11 - webpack: 5.75.0 + webpack: 5.78.0 dev: false /sass/1.3.2: @@ -20783,7 +20558,7 @@ packages: whatwg-mimetype: 2.3.0 dev: true - /source-map-loader/3.0.2_webpack@5.75.0: + /source-map-loader/3.0.2_webpack@5.78.0: resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -20792,7 +20567,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.75.0 + webpack: 5.78.0 /source-map-resolve/0.5.3: resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} @@ -21189,13 +20964,13 @@ packages: webpack: 4.44.2 dev: true - /style-loader/3.3.1_webpack@5.75.0: + /style-loader/3.3.1_webpack@5.78.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.75.0 + webpack: 5.78.0 /style-to-object/0.3.0: resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} @@ -21425,7 +21200,7 @@ packages: webpack-sources: 1.4.3 dev: true - /terser-webpack-plugin/5.3.6_webpack@5.75.0: + /terser-webpack-plugin/5.3.6_webpack@5.78.0: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -21446,7 +21221,7 @@ packages: schema-utils: 3.1.1 serialize-javascript: 6.0.0 terser: 5.16.1 - webpack: 5.75.0 + webpack: 5.78.0 /terser/4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} @@ -22044,7 +21819,7 @@ packages: resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated - /url-loader/4.1.1_webpack@5.75.0: + /url-loader/4.1.1_webpack@5.78.0: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -22057,7 +21832,7 @@ packages: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.1.1 - webpack: 5.75.0 + webpack: 5.78.0 dev: false /url-loader/4.1.1_zmzwotvrfu62vdeozbyveyswza: @@ -22456,7 +22231,7 @@ packages: webpack: 4.44.2_webpack-cli@3.3.12 dev: false - /webpack-dev-middleware/5.3.3_webpack@5.75.0: + /webpack-dev-middleware/5.3.3_webpack@5.78.0: resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -22471,7 +22246,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.75.0 + webpack: 5.78.0 /webpack-dev-server/4.9.3_2jhnw6fokymnjfoumvhvkjoyjq: resolution: {integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==} @@ -22581,7 +22356,7 @@ packages: - utf-8-validate dev: false - /webpack-dev-server/4.9.3_webpack@5.75.0: + /webpack-dev-server/4.9.3_webpack@5.78.0: resolution: {integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==} engines: {node: '>= 12.13.0'} hasBin: true @@ -22624,8 +22399,8 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.75.0 - webpack-dev-middleware: 5.3.3_webpack@5.75.0 + webpack: 5.78.0 + webpack-dev-middleware: 5.3.3_webpack@5.78.0 ws: 8.12.0 transitivePeerDependencies: - bufferutil @@ -22758,8 +22533,8 @@ packages: webpack-sources: 1.4.3 dev: false - /webpack/5.75.0: - resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} + /webpack/5.78.0: + resolution: {integrity: sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -22789,7 +22564,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_webpack@5.75.0 + terser-webpack-plugin: 5.3.6_webpack@5.78.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: diff --git a/common/config/rush/repo-state.json b/common/config/rush/repo-state.json index 2962cb722a1..1635974bec4 100644 --- a/common/config/rush/repo-state.json +++ b/common/config/rush/repo-state.json @@ -1,5 +1,5 @@ // DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush. { - "pnpmShrinkwrapHash": "44448db3c48f8cae11b033e65e85efa3f8338ae1", + "pnpmShrinkwrapHash": "6ccbade8b892e34c52192c92b8dcba06ec1d9b48", "preferredVersionsHash": "5222ca779ae69ebfd201e39c17f48ce9eaf8c3c2" } From c10f13695331791612ac8c2748126b328116d946 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Fri, 7 Apr 2023 21:08:15 +0000 Subject: [PATCH 14/20] rush change --- .../changes/@microsoft/rush/main_2023-04-07-20-22.json | 10 ++++++++++ .../main_2023-04-07-20-22.json | 10 ++++++++++ .../heft-dev-cert-plugin/main_2023-04-07-20-22.json | 10 ++++++++++ .../@rushstack/heft-web-rig/main_2023-04-07-20-22.json | 10 ++++++++++ .../heft-webpack5-plugin/main_2023-04-07-20-22.json | 10 ++++++++++ .../main_2023-04-07-20-22.json | 10 ++++++++++ .../main_2023-04-07-20-22.json | 10 ++++++++++ .../main_2023-04-07-20-22.json | 10 ++++++++++ .../main_2023-04-07-20-22.json | 10 ++++++++++ .../main_2023-04-07-20-22.json | 10 ++++++++++ 10 files changed, 100 insertions(+) create mode 100644 common/changes/@microsoft/rush/main_2023-04-07-20-22.json create mode 100644 common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json create mode 100644 common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json diff --git a/common/changes/@microsoft/rush/main_2023-04-07-20-22.json b/common/changes/@microsoft/rush/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..7ffd10e9c97 --- /dev/null +++ b/common/changes/@microsoft/rush/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@microsoft/rush", + "comment": "Bump webpack to 5.78.0", + "type": "none" + } + ], + "packageName": "@microsoft/rush" +} \ No newline at end of file diff --git a/common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json b/common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..4854b42c517 --- /dev/null +++ b/common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@microsoft/webpack5-load-themed-styles-loader", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@microsoft/webpack5-load-themed-styles-loader" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..b2d541919f6 --- /dev/null +++ b/common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-dev-cert-plugin", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-dev-cert-plugin" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json b/common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..a34444b868e --- /dev/null +++ b/common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-web-rig", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-web-rig" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..f3d6df6a1f6 --- /dev/null +++ b/common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-webpack5-plugin", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-webpack5-plugin" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..70d2060d6e6 --- /dev/null +++ b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/webpack-embedded-dependencies-plugin", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/webpack-embedded-dependencies-plugin" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..f27966591ee --- /dev/null +++ b/common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/webpack-plugin-utilities", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/webpack-plugin-utilities" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..92b67e93aef --- /dev/null +++ b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..9b8a6ecd5cd --- /dev/null +++ b/common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/webpack5-localization-plugin", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/webpack5-localization-plugin" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json new file mode 100644 index 00000000000..276cd9d36a5 --- /dev/null +++ b/common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/webpack5-module-minifier-plugin", + "comment": "Bump webpack to 5.78.0", + "type": "patch" + } + ], + "packageName": "@rushstack/webpack5-module-minifier-plugin" +} \ No newline at end of file From 24e9f33c5415ac5dcdba0391033802431d45b0c4 Mon Sep 17 00:00:00 2001 From: Rushbot Date: Fri, 7 Apr 2023 22:19:22 +0000 Subject: [PATCH 15/20] Update changelogs [skip ci] --- .../main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../heft-web-rig/main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../main_2023-04-07-20-22.json | 10 ---------- .../heft-dev-cert-plugin/CHANGELOG.json | 12 +++++++++++ .../heft-dev-cert-plugin/CHANGELOG.md | 9 ++++++++- .../heft-webpack5-plugin/CHANGELOG.json | 12 +++++++++++ .../heft-webpack5-plugin/CHANGELOG.md | 9 ++++++++- libraries/load-themed-styles/CHANGELOG.json | 12 +++++++++++ libraries/load-themed-styles/CHANGELOG.md | 7 ++++++- rigs/heft-web-rig/CHANGELOG.json | 17 ++++++++++++++++ rigs/heft-web-rig/CHANGELOG.md | 9 ++++++++- .../hashed-folder-copy-plugin/CHANGELOG.json | 15 ++++++++++++++ .../hashed-folder-copy-plugin/CHANGELOG.md | 7 ++++++- .../loader-load-themed-styles/CHANGELOG.json | 15 ++++++++++++++ .../loader-load-themed-styles/CHANGELOG.md | 7 ++++++- .../CHANGELOG.json | 12 +++++++++++ .../CHANGELOG.md | 9 ++++++++- .../CHANGELOG.json | 15 ++++++++++++++ .../CHANGELOG.md | 7 ++++++- .../CHANGELOG.json | 17 ++++++++++++++++ .../CHANGELOG.md | 9 ++++++++- .../webpack-plugin-utilities/CHANGELOG.json | 12 +++++++++++ webpack/webpack-plugin-utilities/CHANGELOG.md | 9 ++++++++- .../CHANGELOG.json | 15 ++++++++++++++ .../webpack4-localization-plugin/CHANGELOG.md | 7 ++++++- .../CHANGELOG.json | 20 +++++++++++++++++++ .../CHANGELOG.md | 9 ++++++++- .../CHANGELOG.json | 12 +++++++++++ .../webpack5-localization-plugin/CHANGELOG.md | 9 ++++++++- .../CHANGELOG.json | 12 +++++++++++ .../CHANGELOG.md | 9 ++++++++- 37 files changed, 300 insertions(+), 104 deletions(-) delete mode 100644 common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json delete mode 100644 common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json diff --git a/common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json b/common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json deleted file mode 100644 index 4854b42c517..00000000000 --- a/common/changes/@microsoft/webpack5-load-themed-styles-loader/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@microsoft/webpack5-load-themed-styles-loader", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@microsoft/webpack5-load-themed-styles-loader" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json deleted file mode 100644 index b2d541919f6..00000000000 --- a/common/changes/@rushstack/heft-dev-cert-plugin/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-dev-cert-plugin", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-dev-cert-plugin" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json b/common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json deleted file mode 100644 index a34444b868e..00000000000 --- a/common/changes/@rushstack/heft-web-rig/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-web-rig", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-web-rig" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json deleted file mode 100644 index f3d6df6a1f6..00000000000 --- a/common/changes/@rushstack/heft-webpack5-plugin/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-webpack5-plugin", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-webpack5-plugin" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json deleted file mode 100644 index 70d2060d6e6..00000000000 --- a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/webpack-embedded-dependencies-plugin", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/webpack-embedded-dependencies-plugin" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json deleted file mode 100644 index f27966591ee..00000000000 --- a/common/changes/@rushstack/webpack-plugin-utilities/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/webpack-plugin-utilities", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/webpack-plugin-utilities" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json deleted file mode 100644 index 92b67e93aef..00000000000 --- a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json deleted file mode 100644 index 9b8a6ecd5cd..00000000000 --- a/common/changes/@rushstack/webpack5-localization-plugin/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/webpack5-localization-plugin", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/webpack5-localization-plugin" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json b/common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json deleted file mode 100644 index 276cd9d36a5..00000000000 --- a/common/changes/@rushstack/webpack5-module-minifier-plugin/main_2023-04-07-20-22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/webpack5-module-minifier-plugin", - "comment": "Bump webpack to 5.78.0", - "type": "patch" - } - ], - "packageName": "@rushstack/webpack5-module-minifier-plugin" -} \ No newline at end of file diff --git a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json index b87778ee0a7..53df29dfbd8 100644 --- a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json +++ b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-dev-cert-plugin", "entries": [ + { + "version": "0.2.22", + "tag": "@rushstack/heft-dev-cert-plugin_v0.2.22", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ] + } + }, { "version": "0.2.21", "tag": "@rushstack/heft-dev-cert-plugin_v0.2.21", diff --git a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md index 445d4d6e2c1..0fb83551a59 100644 --- a/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md +++ b/heft-plugins/heft-dev-cert-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-dev-cert-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.2.22 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.2.21 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/heft-plugins/heft-webpack5-plugin/CHANGELOG.json b/heft-plugins/heft-webpack5-plugin/CHANGELOG.json index cc738dd2583..b30708c9bf3 100644 --- a/heft-plugins/heft-webpack5-plugin/CHANGELOG.json +++ b/heft-plugins/heft-webpack5-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-webpack5-plugin", "entries": [ + { + "version": "0.6.3", + "tag": "@rushstack/heft-webpack5-plugin_v0.6.3", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ] + } + }, { "version": "0.6.2", "tag": "@rushstack/heft-webpack5-plugin_v0.6.2", diff --git a/heft-plugins/heft-webpack5-plugin/CHANGELOG.md b/heft-plugins/heft-webpack5-plugin/CHANGELOG.md index 3a47af9cc34..8aed096d67a 100644 --- a/heft-plugins/heft-webpack5-plugin/CHANGELOG.md +++ b/heft-plugins/heft-webpack5-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-webpack5-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.6.3 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.6.2 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/libraries/load-themed-styles/CHANGELOG.json b/libraries/load-themed-styles/CHANGELOG.json index dd0cb9c8c5d..e3a5053b37b 100644 --- a/libraries/load-themed-styles/CHANGELOG.json +++ b/libraries/load-themed-styles/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@microsoft/load-themed-styles", "entries": [ + { + "version": "2.0.33", + "tag": "@microsoft/load-themed-styles_v2.0.33", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-web-rig\" to `0.14.9`" + } + ] + } + }, { "version": "2.0.32", "tag": "@microsoft/load-themed-styles_v2.0.32", diff --git a/libraries/load-themed-styles/CHANGELOG.md b/libraries/load-themed-styles/CHANGELOG.md index 199f33951ea..61a8d5100eb 100644 --- a/libraries/load-themed-styles/CHANGELOG.md +++ b/libraries/load-themed-styles/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/load-themed-styles -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 2.0.33 +Fri, 07 Apr 2023 22:19:21 GMT + +_Version update only_ ## 2.0.32 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/rigs/heft-web-rig/CHANGELOG.json b/rigs/heft-web-rig/CHANGELOG.json index 0ba72f7171f..3076a39cd82 100644 --- a/rigs/heft-web-rig/CHANGELOG.json +++ b/rigs/heft-web-rig/CHANGELOG.json @@ -1,6 +1,23 @@ { "name": "@rushstack/heft-web-rig", "entries": [ + { + "version": "0.14.9", + "tag": "@rushstack/heft-web-rig_v0.14.9", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ], + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.3`" + } + ] + } + }, { "version": "0.14.8", "tag": "@rushstack/heft-web-rig_v0.14.8", diff --git a/rigs/heft-web-rig/CHANGELOG.md b/rigs/heft-web-rig/CHANGELOG.md index 913442800ba..2ecfe0cafdc 100644 --- a/rigs/heft-web-rig/CHANGELOG.md +++ b/rigs/heft-web-rig/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-web-rig -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.14.9 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.14.8 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/hashed-folder-copy-plugin/CHANGELOG.json b/webpack/hashed-folder-copy-plugin/CHANGELOG.json index 5c7bd89dc78..28cfef849df 100644 --- a/webpack/hashed-folder-copy-plugin/CHANGELOG.json +++ b/webpack/hashed-folder-copy-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/hashed-folder-copy-plugin", "entries": [ + { + "version": "0.2.8", + "tag": "@rushstack/hashed-folder-copy-plugin_v0.2.8", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/webpack-plugin-utilities\" to `0.2.3`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.3`" + } + ] + } + }, { "version": "0.2.7", "tag": "@rushstack/hashed-folder-copy-plugin_v0.2.7", diff --git a/webpack/hashed-folder-copy-plugin/CHANGELOG.md b/webpack/hashed-folder-copy-plugin/CHANGELOG.md index be5f9e53a59..e78fc7d48c8 100644 --- a/webpack/hashed-folder-copy-plugin/CHANGELOG.md +++ b/webpack/hashed-folder-copy-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/hashed-folder-copy-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.2.8 +Fri, 07 Apr 2023 22:19:21 GMT + +_Version update only_ ## 0.2.7 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/loader-load-themed-styles/CHANGELOG.json b/webpack/loader-load-themed-styles/CHANGELOG.json index caa3e30332a..6b8afcf49c3 100644 --- a/webpack/loader-load-themed-styles/CHANGELOG.json +++ b/webpack/loader-load-themed-styles/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@microsoft/loader-load-themed-styles", "entries": [ + { + "version": "2.0.31", + "tag": "@microsoft/loader-load-themed-styles_v2.0.31", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" to `2.0.33`" + }, + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" from `^2.0.32` to `^2.0.33`" + } + ] + } + }, { "version": "2.0.30", "tag": "@microsoft/loader-load-themed-styles_v2.0.30", diff --git a/webpack/loader-load-themed-styles/CHANGELOG.md b/webpack/loader-load-themed-styles/CHANGELOG.md index 290d96f4820..038b2a9443c 100644 --- a/webpack/loader-load-themed-styles/CHANGELOG.md +++ b/webpack/loader-load-themed-styles/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/loader-load-themed-styles -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 2.0.31 +Fri, 07 Apr 2023 22:19:21 GMT + +_Version update only_ ## 2.0.30 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/preserve-dynamic-require-plugin/CHANGELOG.json b/webpack/preserve-dynamic-require-plugin/CHANGELOG.json index 2fc5235177c..d536b751506 100644 --- a/webpack/preserve-dynamic-require-plugin/CHANGELOG.json +++ b/webpack/preserve-dynamic-require-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/webpack-preserve-dynamic-require-plugin", "entries": [ + { + "version": "0.10.6", + "tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.10.6", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ] + } + }, { "version": "0.10.5", "tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.10.5", diff --git a/webpack/preserve-dynamic-require-plugin/CHANGELOG.md b/webpack/preserve-dynamic-require-plugin/CHANGELOG.md index ffe8d1a9739..88fec0685ab 100644 --- a/webpack/preserve-dynamic-require-plugin/CHANGELOG.md +++ b/webpack/preserve-dynamic-require-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/webpack-preserve-dynamic-require-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.10.6 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.10.5 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/set-webpack-public-path-plugin/CHANGELOG.json b/webpack/set-webpack-public-path-plugin/CHANGELOG.json index b5310f29d54..92e78320050 100644 --- a/webpack/set-webpack-public-path-plugin/CHANGELOG.json +++ b/webpack/set-webpack-public-path-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/set-webpack-public-path-plugin", "entries": [ + { + "version": "3.3.97", + "tag": "@rushstack/set-webpack-public-path-plugin_v3.3.97", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/webpack-plugin-utilities\" to `0.2.3`" + }, + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.3`" + } + ] + } + }, { "version": "3.3.96", "tag": "@rushstack/set-webpack-public-path-plugin_v3.3.96", diff --git a/webpack/set-webpack-public-path-plugin/CHANGELOG.md b/webpack/set-webpack-public-path-plugin/CHANGELOG.md index 6efbf3b223c..81896870565 100644 --- a/webpack/set-webpack-public-path-plugin/CHANGELOG.md +++ b/webpack/set-webpack-public-path-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/set-webpack-public-path-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 3.3.97 +Fri, 07 Apr 2023 22:19:21 GMT + +_Version update only_ ## 3.3.96 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json index 821dfb4c22c..7df0670c714 100644 --- a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json +++ b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.json @@ -1,6 +1,23 @@ { "name": "@rushstack/webpack-embedded-dependencies-plugin", "entries": [ + { + "version": "0.1.3", + "tag": "@rushstack/webpack-embedded-dependencies-plugin_v0.1.3", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ], + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/webpack-plugin-utilities\" to `0.2.3`" + } + ] + } + }, { "version": "0.1.2", "tag": "@rushstack/webpack-embedded-dependencies-plugin_v0.1.2", diff --git a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md index d9a04cb9859..4052a1069e1 100644 --- a/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md +++ b/webpack/webpack-embedded-dependencies-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/webpack-embedded-dependencies-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.1.3 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.1.2 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/webpack-plugin-utilities/CHANGELOG.json b/webpack/webpack-plugin-utilities/CHANGELOG.json index 30f9c5ca73a..2a075db1201 100644 --- a/webpack/webpack-plugin-utilities/CHANGELOG.json +++ b/webpack/webpack-plugin-utilities/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/webpack-plugin-utilities", "entries": [ + { + "version": "0.2.3", + "tag": "@rushstack/webpack-plugin-utilities_v0.2.3", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ] + } + }, { "version": "0.2.2", "tag": "@rushstack/webpack-plugin-utilities_v0.2.2", diff --git a/webpack/webpack-plugin-utilities/CHANGELOG.md b/webpack/webpack-plugin-utilities/CHANGELOG.md index 86f277de651..9e707155a08 100644 --- a/webpack/webpack-plugin-utilities/CHANGELOG.md +++ b/webpack/webpack-plugin-utilities/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/webpack-plugin-utilities -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.2.3 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.2.2 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/webpack4-localization-plugin/CHANGELOG.json b/webpack/webpack4-localization-plugin/CHANGELOG.json index 308cca5917f..8f6f11a9212 100644 --- a/webpack/webpack4-localization-plugin/CHANGELOG.json +++ b/webpack/webpack4-localization-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/webpack4-localization-plugin", "entries": [ + { + "version": "0.17.8", + "tag": "@rushstack/webpack4-localization-plugin_v0.17.8", + "date": "Fri, 07 Apr 2023 22:19:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/set-webpack-public-path-plugin\" to `3.3.97`" + }, + { + "comment": "Updating dependency \"@rushstack/set-webpack-public-path-plugin\" from `^3.3.96` to `^3.3.97`" + } + ] + } + }, { "version": "0.17.7", "tag": "@rushstack/webpack4-localization-plugin_v0.17.7", diff --git a/webpack/webpack4-localization-plugin/CHANGELOG.md b/webpack/webpack4-localization-plugin/CHANGELOG.md index b40d0844426..3ba5b30610b 100644 --- a/webpack/webpack4-localization-plugin/CHANGELOG.md +++ b/webpack/webpack4-localization-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack4-localization-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:22 GMT and should not be manually modified. + +## 0.17.8 +Fri, 07 Apr 2023 22:19:22 GMT + +_Version update only_ ## 0.17.7 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json index 241d9c96503..574687e4f77 100644 --- a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json +++ b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json @@ -1,6 +1,26 @@ { "name": "@microsoft/webpack5-load-themed-styles-loader", "entries": [ + { + "version": "0.1.15", + "tag": "@microsoft/webpack5-load-themed-styles-loader_v0.1.15", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ], + "dependency": [ + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" to `2.0.33`" + }, + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" from `^2.0.32` to `^2.0.33`" + } + ] + } + }, { "version": "0.1.14", "tag": "@microsoft/webpack5-load-themed-styles-loader_v0.1.14", diff --git a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md index 11d1cf3a48e..ac49b4ca508 100644 --- a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md +++ b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @microsoft/webpack5-load-themed-styles-loader -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.1.15 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.1.14 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/webpack5-localization-plugin/CHANGELOG.json b/webpack/webpack5-localization-plugin/CHANGELOG.json index f756c33f071..4fb06520d0a 100644 --- a/webpack/webpack5-localization-plugin/CHANGELOG.json +++ b/webpack/webpack5-localization-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/webpack5-localization-plugin", "entries": [ + { + "version": "0.4.5", + "tag": "@rushstack/webpack5-localization-plugin_v0.4.5", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ] + } + }, { "version": "0.4.4", "tag": "@rushstack/webpack5-localization-plugin_v0.4.4", diff --git a/webpack/webpack5-localization-plugin/CHANGELOG.md b/webpack/webpack5-localization-plugin/CHANGELOG.md index 14dda124c1e..65cddcbb7a9 100644 --- a/webpack/webpack5-localization-plugin/CHANGELOG.md +++ b/webpack/webpack5-localization-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/webpack5-localization-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 0.4.5 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 0.4.4 Tue, 04 Apr 2023 22:36:28 GMT diff --git a/webpack/webpack5-module-minifier-plugin/CHANGELOG.json b/webpack/webpack5-module-minifier-plugin/CHANGELOG.json index a60d5e1169a..5d55f2709c8 100644 --- a/webpack/webpack5-module-minifier-plugin/CHANGELOG.json +++ b/webpack/webpack5-module-minifier-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/webpack5-module-minifier-plugin", "entries": [ + { + "version": "5.3.5", + "tag": "@rushstack/webpack5-module-minifier-plugin_v5.3.5", + "date": "Fri, 07 Apr 2023 22:19:21 GMT", + "comments": { + "patch": [ + { + "comment": "Bump webpack to 5.78.0" + } + ] + } + }, { "version": "5.3.4", "tag": "@rushstack/webpack5-module-minifier-plugin_v5.3.4", diff --git a/webpack/webpack5-module-minifier-plugin/CHANGELOG.md b/webpack/webpack5-module-minifier-plugin/CHANGELOG.md index f6b95284cbc..5784c22bce1 100644 --- a/webpack/webpack5-module-minifier-plugin/CHANGELOG.md +++ b/webpack/webpack5-module-minifier-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/webpack5-module-minifier-plugin -This log was last generated on Tue, 04 Apr 2023 22:36:28 GMT and should not be manually modified. +This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. + +## 5.3.5 +Fri, 07 Apr 2023 22:19:21 GMT + +### Patches + +- Bump webpack to 5.78.0 ## 5.3.4 Tue, 04 Apr 2023 22:36:28 GMT From fb9e5ff047799e5edc42ea6e8e83e9f870bf730c Mon Sep 17 00:00:00 2001 From: Rushbot Date: Fri, 7 Apr 2023 22:19:26 +0000 Subject: [PATCH 16/20] Bump versions [skip ci] --- heft-plugins/heft-dev-cert-plugin/package.json | 2 +- heft-plugins/heft-webpack5-plugin/package.json | 2 +- libraries/load-themed-styles/package.json | 2 +- rigs/heft-web-rig/package.json | 2 +- webpack/hashed-folder-copy-plugin/package.json | 2 +- webpack/loader-load-themed-styles/package.json | 4 ++-- webpack/preserve-dynamic-require-plugin/package.json | 2 +- webpack/set-webpack-public-path-plugin/package.json | 2 +- webpack/webpack-embedded-dependencies-plugin/package.json | 2 +- webpack/webpack-plugin-utilities/package.json | 2 +- webpack/webpack4-localization-plugin/package.json | 4 ++-- webpack/webpack5-load-themed-styles-loader/package.json | 4 ++-- webpack/webpack5-localization-plugin/package.json | 2 +- webpack/webpack5-module-minifier-plugin/package.json | 2 +- 14 files changed, 17 insertions(+), 17 deletions(-) diff --git a/heft-plugins/heft-dev-cert-plugin/package.json b/heft-plugins/heft-dev-cert-plugin/package.json index cfa9d7b8268..4c340f6700c 100644 --- a/heft-plugins/heft-dev-cert-plugin/package.json +++ b/heft-plugins/heft-dev-cert-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-dev-cert-plugin", - "version": "0.2.21", + "version": "0.2.22", "description": "A Heft plugin for generating and using local development certificates", "repository": { "type": "git", diff --git a/heft-plugins/heft-webpack5-plugin/package.json b/heft-plugins/heft-webpack5-plugin/package.json index 73f7eca2695..117d9e4e362 100644 --- a/heft-plugins/heft-webpack5-plugin/package.json +++ b/heft-plugins/heft-webpack5-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-webpack5-plugin", - "version": "0.6.2", + "version": "0.6.3", "description": "Heft plugin for Webpack 5", "repository": { "type": "git", diff --git a/libraries/load-themed-styles/package.json b/libraries/load-themed-styles/package.json index 71d36a9cc99..d56c9abd9bf 100644 --- a/libraries/load-themed-styles/package.json +++ b/libraries/load-themed-styles/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/load-themed-styles", - "version": "2.0.32", + "version": "2.0.33", "description": "Loads themed styles.", "license": "MIT", "repository": { diff --git a/rigs/heft-web-rig/package.json b/rigs/heft-web-rig/package.json index 6dfaf07f9b3..cfee79cebbb 100644 --- a/rigs/heft-web-rig/package.json +++ b/rigs/heft-web-rig/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-web-rig", - "version": "0.14.8", + "version": "0.14.9", "description": "A rig package for web browser projects that build using Heft", "license": "MIT", "scripts": { diff --git a/webpack/hashed-folder-copy-plugin/package.json b/webpack/hashed-folder-copy-plugin/package.json index 369b4c9aa55..5427464b1fb 100644 --- a/webpack/hashed-folder-copy-plugin/package.json +++ b/webpack/hashed-folder-copy-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/hashed-folder-copy-plugin", - "version": "0.2.7", + "version": "0.2.8", "description": "Webpack plugin for copying a folder to the output directory with a hash in the folder name.", "typings": "dist/hashed-folder-copy-plugin.d.ts", "main": "lib/index.js", diff --git a/webpack/loader-load-themed-styles/package.json b/webpack/loader-load-themed-styles/package.json index 09d271c7190..7dc074479e2 100644 --- a/webpack/loader-load-themed-styles/package.json +++ b/webpack/loader-load-themed-styles/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/loader-load-themed-styles", - "version": "2.0.30", + "version": "2.0.31", "description": "This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -22,7 +22,7 @@ }, "peerDependencies": { "@types/webpack": "^4", - "@microsoft/load-themed-styles": "^2.0.32" + "@microsoft/load-themed-styles": "^2.0.33" }, "dependencies": { "loader-utils": "1.4.2" diff --git a/webpack/preserve-dynamic-require-plugin/package.json b/webpack/preserve-dynamic-require-plugin/package.json index 2a302797438..a1083a0e33c 100644 --- a/webpack/preserve-dynamic-require-plugin/package.json +++ b/webpack/preserve-dynamic-require-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack-preserve-dynamic-require-plugin", - "version": "0.10.5", + "version": "0.10.6", "description": "This plugin tells webpack to leave dynamic calls to \"require\" as-is instead of trying to bundle them.", "main": "lib/index.js", "typings": "dist/webpack-preserve-dynamic-require-plugin.d.ts", diff --git a/webpack/set-webpack-public-path-plugin/package.json b/webpack/set-webpack-public-path-plugin/package.json index 9e329767263..d583253466e 100644 --- a/webpack/set-webpack-public-path-plugin/package.json +++ b/webpack/set-webpack-public-path-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/set-webpack-public-path-plugin", - "version": "3.3.96", + "version": "3.3.97", "description": "This plugin sets the webpack public path at runtime.", "main": "lib/index.js", "typings": "dist/set-webpack-public-path-plugin.d.ts", diff --git a/webpack/webpack-embedded-dependencies-plugin/package.json b/webpack/webpack-embedded-dependencies-plugin/package.json index 48caf352cf7..4ea4971d3a6 100644 --- a/webpack/webpack-embedded-dependencies-plugin/package.json +++ b/webpack/webpack-embedded-dependencies-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack-embedded-dependencies-plugin", - "version": "0.1.2", + "version": "0.1.3", "description": "This plugin analyzes bundled dependencies from Node Modules for use with Component Governance and License Scanning.", "main": "lib/index.js", "typings": "dist/webpack-embedded-dependencies-plugin.d.ts", diff --git a/webpack/webpack-plugin-utilities/package.json b/webpack/webpack-plugin-utilities/package.json index aac7621fafa..36160c18c08 100644 --- a/webpack/webpack-plugin-utilities/package.json +++ b/webpack/webpack-plugin-utilities/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack-plugin-utilities", - "version": "0.2.2", + "version": "0.2.3", "description": "This plugin sets the webpack public path at runtime.", "main": "lib/index.js", "typings": "dist/webpack-plugin-utilities.d.ts", diff --git a/webpack/webpack4-localization-plugin/package.json b/webpack/webpack4-localization-plugin/package.json index e95f50a65f7..10ff2fadfd0 100644 --- a/webpack/webpack4-localization-plugin/package.json +++ b/webpack/webpack4-localization-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack4-localization-plugin", - "version": "0.17.7", + "version": "0.17.8", "description": "This plugin facilitates localization with Webpack.", "main": "lib/index.js", "typings": "dist/webpack4-localization-plugin.d.ts", @@ -15,7 +15,7 @@ "_phase:build": "heft build --clean" }, "peerDependencies": { - "@rushstack/set-webpack-public-path-plugin": "^3.3.96", + "@rushstack/set-webpack-public-path-plugin": "^3.3.97", "@types/webpack": "^4.39.0", "webpack": "^4.31.0", "@types/node": "*" diff --git a/webpack/webpack5-load-themed-styles-loader/package.json b/webpack/webpack5-load-themed-styles-loader/package.json index 6bd86855abc..54544c6ec37 100644 --- a/webpack/webpack5-load-themed-styles-loader/package.json +++ b/webpack/webpack5-load-themed-styles-loader/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/webpack5-load-themed-styles-loader", - "version": "0.1.14", + "version": "0.1.15", "description": "This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -16,7 +16,7 @@ "_phase:test": "heft test --no-build" }, "peerDependencies": { - "@microsoft/load-themed-styles": "^2.0.32", + "@microsoft/load-themed-styles": "^2.0.33", "webpack": "^5" }, "peerDependenciesMeta": { diff --git a/webpack/webpack5-localization-plugin/package.json b/webpack/webpack5-localization-plugin/package.json index 859827d1e69..a03111e40d5 100644 --- a/webpack/webpack5-localization-plugin/package.json +++ b/webpack/webpack5-localization-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack5-localization-plugin", - "version": "0.4.4", + "version": "0.4.5", "description": "This plugin facilitates localization with Webpack.", "main": "lib/index.js", "typings": "dist/webpack5-localization-plugin.d.ts", diff --git a/webpack/webpack5-module-minifier-plugin/package.json b/webpack/webpack5-module-minifier-plugin/package.json index 09cd69edef7..fdf07f084eb 100644 --- a/webpack/webpack5-module-minifier-plugin/package.json +++ b/webpack/webpack5-module-minifier-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack5-module-minifier-plugin", - "version": "5.3.4", + "version": "5.3.5", "description": "This plugin splits minification of webpack compilations into smaller units.", "main": "lib/index.js", "typings": "dist/webpack5-module-minifier-plugin.d.ts", From 34de368ee884ac772a89fb0ba2c62d28b64bccf0 Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Mon, 10 Apr 2023 18:18:25 +0000 Subject: [PATCH 17/20] bumped webpack-5 peerDep with the regular dependency --- heft-plugins/heft-webpack5-plugin/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heft-plugins/heft-webpack5-plugin/package.json b/heft-plugins/heft-webpack5-plugin/package.json index 117d9e4e362..459c36da769 100644 --- a/heft-plugins/heft-webpack5-plugin/package.json +++ b/heft-plugins/heft-webpack5-plugin/package.json @@ -19,7 +19,7 @@ }, "peerDependencies": { "@rushstack/heft": "^0.50.0", - "webpack": "~5.75.0" + "webpack": "~5.78.0" }, "dependencies": { "@rushstack/node-core-library": "workspace:*", From fb95fc54141d54bcf7e86edbd07d00abb3fa262d Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Mon, 10 Apr 2023 18:19:13 +0000 Subject: [PATCH 18/20] rush change --- .../thelarkinn-issue-4053_2023-04-10-18-19.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json diff --git a/common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json b/common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json new file mode 100644 index 00000000000..479cb04032a --- /dev/null +++ b/common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/heft-webpack5-plugin", + "comment": "Fix bug where peerDep of webpack was not properly updated with regular dependency version. ", + "type": "patch" + } + ], + "packageName": "@rushstack/heft-webpack5-plugin" +} \ No newline at end of file From 324db903f7fbbc4cb04d812ba1dd42a8752c9ab1 Mon Sep 17 00:00:00 2001 From: Rushbot Date: Tue, 11 Apr 2023 00:23:22 +0000 Subject: [PATCH 19/20] Update changelogs [skip ci] --- .../thelarkinn-issue-4053_2023-04-10-18-19.json | 10 ---------- heft-plugins/heft-webpack5-plugin/CHANGELOG.json | 12 ++++++++++++ heft-plugins/heft-webpack5-plugin/CHANGELOG.md | 9 ++++++++- libraries/load-themed-styles/CHANGELOG.json | 12 ++++++++++++ libraries/load-themed-styles/CHANGELOG.md | 7 ++++++- rigs/heft-web-rig/CHANGELOG.json | 12 ++++++++++++ rigs/heft-web-rig/CHANGELOG.md | 7 ++++++- webpack/hashed-folder-copy-plugin/CHANGELOG.json | 12 ++++++++++++ webpack/hashed-folder-copy-plugin/CHANGELOG.md | 7 ++++++- webpack/loader-load-themed-styles/CHANGELOG.json | 15 +++++++++++++++ webpack/loader-load-themed-styles/CHANGELOG.md | 7 ++++++- .../set-webpack-public-path-plugin/CHANGELOG.json | 12 ++++++++++++ .../set-webpack-public-path-plugin/CHANGELOG.md | 7 ++++++- .../webpack4-localization-plugin/CHANGELOG.json | 15 +++++++++++++++ webpack/webpack4-localization-plugin/CHANGELOG.md | 7 ++++++- .../CHANGELOG.json | 15 +++++++++++++++ .../CHANGELOG.md | 7 ++++++- 17 files changed, 155 insertions(+), 18 deletions(-) delete mode 100644 common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json diff --git a/common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json b/common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json deleted file mode 100644 index 479cb04032a..00000000000 --- a/common/changes/@rushstack/heft-webpack5-plugin/thelarkinn-issue-4053_2023-04-10-18-19.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "changes": [ - { - "packageName": "@rushstack/heft-webpack5-plugin", - "comment": "Fix bug where peerDep of webpack was not properly updated with regular dependency version. ", - "type": "patch" - } - ], - "packageName": "@rushstack/heft-webpack5-plugin" -} \ No newline at end of file diff --git a/heft-plugins/heft-webpack5-plugin/CHANGELOG.json b/heft-plugins/heft-webpack5-plugin/CHANGELOG.json index b30708c9bf3..665cca848f2 100644 --- a/heft-plugins/heft-webpack5-plugin/CHANGELOG.json +++ b/heft-plugins/heft-webpack5-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-webpack5-plugin", "entries": [ + { + "version": "0.6.4", + "tag": "@rushstack/heft-webpack5-plugin_v0.6.4", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "patch": [ + { + "comment": "Fix bug where peerDep of webpack was not properly updated with regular dependency version. " + } + ] + } + }, { "version": "0.6.3", "tag": "@rushstack/heft-webpack5-plugin_v0.6.3", diff --git a/heft-plugins/heft-webpack5-plugin/CHANGELOG.md b/heft-plugins/heft-webpack5-plugin/CHANGELOG.md index 8aed096d67a..73a63e08437 100644 --- a/heft-plugins/heft-webpack5-plugin/CHANGELOG.md +++ b/heft-plugins/heft-webpack5-plugin/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log - @rushstack/heft-webpack5-plugin -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 0.6.4 +Tue, 11 Apr 2023 00:23:22 GMT + +### Patches + +- Fix bug where peerDep of webpack was not properly updated with regular dependency version. ## 0.6.3 Fri, 07 Apr 2023 22:19:21 GMT diff --git a/libraries/load-themed-styles/CHANGELOG.json b/libraries/load-themed-styles/CHANGELOG.json index e3a5053b37b..22a9a9441fb 100644 --- a/libraries/load-themed-styles/CHANGELOG.json +++ b/libraries/load-themed-styles/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@microsoft/load-themed-styles", "entries": [ + { + "version": "2.0.34", + "tag": "@microsoft/load-themed-styles_v2.0.34", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-web-rig\" to `0.14.10`" + } + ] + } + }, { "version": "2.0.33", "tag": "@microsoft/load-themed-styles_v2.0.33", diff --git a/libraries/load-themed-styles/CHANGELOG.md b/libraries/load-themed-styles/CHANGELOG.md index 61a8d5100eb..681dffc4970 100644 --- a/libraries/load-themed-styles/CHANGELOG.md +++ b/libraries/load-themed-styles/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/load-themed-styles -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 2.0.34 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 2.0.33 Fri, 07 Apr 2023 22:19:21 GMT diff --git a/rigs/heft-web-rig/CHANGELOG.json b/rigs/heft-web-rig/CHANGELOG.json index 3076a39cd82..9de56c0a754 100644 --- a/rigs/heft-web-rig/CHANGELOG.json +++ b/rigs/heft-web-rig/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/heft-web-rig", "entries": [ + { + "version": "0.14.10", + "tag": "@rushstack/heft-web-rig_v0.14.10", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.4`" + } + ] + } + }, { "version": "0.14.9", "tag": "@rushstack/heft-web-rig_v0.14.9", diff --git a/rigs/heft-web-rig/CHANGELOG.md b/rigs/heft-web-rig/CHANGELOG.md index 2ecfe0cafdc..a97c410f536 100644 --- a/rigs/heft-web-rig/CHANGELOG.md +++ b/rigs/heft-web-rig/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/heft-web-rig -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 0.14.10 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 0.14.9 Fri, 07 Apr 2023 22:19:21 GMT diff --git a/webpack/hashed-folder-copy-plugin/CHANGELOG.json b/webpack/hashed-folder-copy-plugin/CHANGELOG.json index 28cfef849df..7b3ac4249f9 100644 --- a/webpack/hashed-folder-copy-plugin/CHANGELOG.json +++ b/webpack/hashed-folder-copy-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/hashed-folder-copy-plugin", "entries": [ + { + "version": "0.2.9", + "tag": "@rushstack/hashed-folder-copy-plugin_v0.2.9", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.4`" + } + ] + } + }, { "version": "0.2.8", "tag": "@rushstack/hashed-folder-copy-plugin_v0.2.8", diff --git a/webpack/hashed-folder-copy-plugin/CHANGELOG.md b/webpack/hashed-folder-copy-plugin/CHANGELOG.md index e78fc7d48c8..592ecb901fb 100644 --- a/webpack/hashed-folder-copy-plugin/CHANGELOG.md +++ b/webpack/hashed-folder-copy-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/hashed-folder-copy-plugin -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 0.2.9 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 0.2.8 Fri, 07 Apr 2023 22:19:21 GMT diff --git a/webpack/loader-load-themed-styles/CHANGELOG.json b/webpack/loader-load-themed-styles/CHANGELOG.json index 6b8afcf49c3..4a327af22e2 100644 --- a/webpack/loader-load-themed-styles/CHANGELOG.json +++ b/webpack/loader-load-themed-styles/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@microsoft/loader-load-themed-styles", "entries": [ + { + "version": "2.0.32", + "tag": "@microsoft/loader-load-themed-styles_v2.0.32", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" to `2.0.34`" + }, + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" from `^2.0.33` to `^2.0.34`" + } + ] + } + }, { "version": "2.0.31", "tag": "@microsoft/loader-load-themed-styles_v2.0.31", diff --git a/webpack/loader-load-themed-styles/CHANGELOG.md b/webpack/loader-load-themed-styles/CHANGELOG.md index 038b2a9443c..f5fdc3bf919 100644 --- a/webpack/loader-load-themed-styles/CHANGELOG.md +++ b/webpack/loader-load-themed-styles/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/loader-load-themed-styles -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 2.0.32 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 2.0.31 Fri, 07 Apr 2023 22:19:21 GMT diff --git a/webpack/set-webpack-public-path-plugin/CHANGELOG.json b/webpack/set-webpack-public-path-plugin/CHANGELOG.json index 92e78320050..bd2e981d55f 100644 --- a/webpack/set-webpack-public-path-plugin/CHANGELOG.json +++ b/webpack/set-webpack-public-path-plugin/CHANGELOG.json @@ -1,6 +1,18 @@ { "name": "@rushstack/set-webpack-public-path-plugin", "entries": [ + { + "version": "3.3.98", + "tag": "@rushstack/set-webpack-public-path-plugin_v3.3.98", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.6.4`" + } + ] + } + }, { "version": "3.3.97", "tag": "@rushstack/set-webpack-public-path-plugin_v3.3.97", diff --git a/webpack/set-webpack-public-path-plugin/CHANGELOG.md b/webpack/set-webpack-public-path-plugin/CHANGELOG.md index 81896870565..74c6c688037 100644 --- a/webpack/set-webpack-public-path-plugin/CHANGELOG.md +++ b/webpack/set-webpack-public-path-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/set-webpack-public-path-plugin -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 3.3.98 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 3.3.97 Fri, 07 Apr 2023 22:19:21 GMT diff --git a/webpack/webpack4-localization-plugin/CHANGELOG.json b/webpack/webpack4-localization-plugin/CHANGELOG.json index 8f6f11a9212..c1ff6328098 100644 --- a/webpack/webpack4-localization-plugin/CHANGELOG.json +++ b/webpack/webpack4-localization-plugin/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@rushstack/webpack4-localization-plugin", "entries": [ + { + "version": "0.17.9", + "tag": "@rushstack/webpack4-localization-plugin_v0.17.9", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@rushstack/set-webpack-public-path-plugin\" to `3.3.98`" + }, + { + "comment": "Updating dependency \"@rushstack/set-webpack-public-path-plugin\" from `^3.3.97` to `^3.3.98`" + } + ] + } + }, { "version": "0.17.8", "tag": "@rushstack/webpack4-localization-plugin_v0.17.8", diff --git a/webpack/webpack4-localization-plugin/CHANGELOG.md b/webpack/webpack4-localization-plugin/CHANGELOG.md index 3ba5b30610b..aee000363f6 100644 --- a/webpack/webpack4-localization-plugin/CHANGELOG.md +++ b/webpack/webpack4-localization-plugin/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @rushstack/webpack4-localization-plugin -This log was last generated on Fri, 07 Apr 2023 22:19:22 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 0.17.9 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 0.17.8 Fri, 07 Apr 2023 22:19:22 GMT diff --git a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json index 574687e4f77..8bc1555b16f 100644 --- a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json +++ b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.json @@ -1,6 +1,21 @@ { "name": "@microsoft/webpack5-load-themed-styles-loader", "entries": [ + { + "version": "0.1.16", + "tag": "@microsoft/webpack5-load-themed-styles-loader_v0.1.16", + "date": "Tue, 11 Apr 2023 00:23:22 GMT", + "comments": { + "dependency": [ + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" to `2.0.34`" + }, + { + "comment": "Updating dependency \"@microsoft/load-themed-styles\" from `^2.0.33` to `^2.0.34`" + } + ] + } + }, { "version": "0.1.15", "tag": "@microsoft/webpack5-load-themed-styles-loader_v0.1.15", diff --git a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md index ac49b4ca508..0c99bd9e022 100644 --- a/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md +++ b/webpack/webpack5-load-themed-styles-loader/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log - @microsoft/webpack5-load-themed-styles-loader -This log was last generated on Fri, 07 Apr 2023 22:19:21 GMT and should not be manually modified. +This log was last generated on Tue, 11 Apr 2023 00:23:22 GMT and should not be manually modified. + +## 0.1.16 +Tue, 11 Apr 2023 00:23:22 GMT + +_Version update only_ ## 0.1.15 Fri, 07 Apr 2023 22:19:21 GMT From 750ce088c524db20a7cde74a4fbc177a92f2f69f Mon Sep 17 00:00:00 2001 From: Rushbot Date: Tue, 11 Apr 2023 00:23:26 +0000 Subject: [PATCH 20/20] Bump versions [skip ci] --- heft-plugins/heft-webpack5-plugin/package.json | 2 +- libraries/load-themed-styles/package.json | 2 +- rigs/heft-web-rig/package.json | 2 +- webpack/hashed-folder-copy-plugin/package.json | 2 +- webpack/loader-load-themed-styles/package.json | 4 ++-- webpack/set-webpack-public-path-plugin/package.json | 2 +- webpack/webpack4-localization-plugin/package.json | 4 ++-- webpack/webpack5-load-themed-styles-loader/package.json | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/heft-plugins/heft-webpack5-plugin/package.json b/heft-plugins/heft-webpack5-plugin/package.json index 459c36da769..5f0edef7154 100644 --- a/heft-plugins/heft-webpack5-plugin/package.json +++ b/heft-plugins/heft-webpack5-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-webpack5-plugin", - "version": "0.6.3", + "version": "0.6.4", "description": "Heft plugin for Webpack 5", "repository": { "type": "git", diff --git a/libraries/load-themed-styles/package.json b/libraries/load-themed-styles/package.json index d56c9abd9bf..7e248cdd7c3 100644 --- a/libraries/load-themed-styles/package.json +++ b/libraries/load-themed-styles/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/load-themed-styles", - "version": "2.0.33", + "version": "2.0.34", "description": "Loads themed styles.", "license": "MIT", "repository": { diff --git a/rigs/heft-web-rig/package.json b/rigs/heft-web-rig/package.json index cfee79cebbb..4913d841103 100644 --- a/rigs/heft-web-rig/package.json +++ b/rigs/heft-web-rig/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/heft-web-rig", - "version": "0.14.9", + "version": "0.14.10", "description": "A rig package for web browser projects that build using Heft", "license": "MIT", "scripts": { diff --git a/webpack/hashed-folder-copy-plugin/package.json b/webpack/hashed-folder-copy-plugin/package.json index 5427464b1fb..90c87e3f5ea 100644 --- a/webpack/hashed-folder-copy-plugin/package.json +++ b/webpack/hashed-folder-copy-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/hashed-folder-copy-plugin", - "version": "0.2.8", + "version": "0.2.9", "description": "Webpack plugin for copying a folder to the output directory with a hash in the folder name.", "typings": "dist/hashed-folder-copy-plugin.d.ts", "main": "lib/index.js", diff --git a/webpack/loader-load-themed-styles/package.json b/webpack/loader-load-themed-styles/package.json index 7dc074479e2..f6224ddaf2c 100644 --- a/webpack/loader-load-themed-styles/package.json +++ b/webpack/loader-load-themed-styles/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/loader-load-themed-styles", - "version": "2.0.31", + "version": "2.0.32", "description": "This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -22,7 +22,7 @@ }, "peerDependencies": { "@types/webpack": "^4", - "@microsoft/load-themed-styles": "^2.0.33" + "@microsoft/load-themed-styles": "^2.0.34" }, "dependencies": { "loader-utils": "1.4.2" diff --git a/webpack/set-webpack-public-path-plugin/package.json b/webpack/set-webpack-public-path-plugin/package.json index d583253466e..e692b91b323 100644 --- a/webpack/set-webpack-public-path-plugin/package.json +++ b/webpack/set-webpack-public-path-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/set-webpack-public-path-plugin", - "version": "3.3.97", + "version": "3.3.98", "description": "This plugin sets the webpack public path at runtime.", "main": "lib/index.js", "typings": "dist/set-webpack-public-path-plugin.d.ts", diff --git a/webpack/webpack4-localization-plugin/package.json b/webpack/webpack4-localization-plugin/package.json index 10ff2fadfd0..6b0f5deac66 100644 --- a/webpack/webpack4-localization-plugin/package.json +++ b/webpack/webpack4-localization-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@rushstack/webpack4-localization-plugin", - "version": "0.17.8", + "version": "0.17.9", "description": "This plugin facilitates localization with Webpack.", "main": "lib/index.js", "typings": "dist/webpack4-localization-plugin.d.ts", @@ -15,7 +15,7 @@ "_phase:build": "heft build --clean" }, "peerDependencies": { - "@rushstack/set-webpack-public-path-plugin": "^3.3.97", + "@rushstack/set-webpack-public-path-plugin": "^3.3.98", "@types/webpack": "^4.39.0", "webpack": "^4.31.0", "@types/node": "*" diff --git a/webpack/webpack5-load-themed-styles-loader/package.json b/webpack/webpack5-load-themed-styles-loader/package.json index 54544c6ec37..44f1b981205 100644 --- a/webpack/webpack5-load-themed-styles-loader/package.json +++ b/webpack/webpack5-load-themed-styles-loader/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/webpack5-load-themed-styles-loader", - "version": "0.1.15", + "version": "0.1.16", "description": "This simple loader wraps the loading of CSS in script equivalent to `require('load-themed-styles').loadStyles( /* css text */ )`. It is designed to be a replacement for style-loader.", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -16,7 +16,7 @@ "_phase:test": "heft test --no-build" }, "peerDependencies": { - "@microsoft/load-themed-styles": "^2.0.33", + "@microsoft/load-themed-styles": "^2.0.34", "webpack": "^5" }, "peerDependenciesMeta": {