|
1 | 1 | { |
2 | 2 | "migrations": [ |
| 3 | + { |
| 4 | + "version": "22.0.0-beta.1", |
| 5 | + "description": "Updates release version config based on the breaking changes in Nx v22", |
| 6 | + "implementation": "./src/migrations/update-22-0-0/release-version-config-changes", |
| 7 | + "package": "nx", |
| 8 | + "name": "22-0-0-release-version-config-changes" |
| 9 | + }, |
| 10 | + { |
| 11 | + "version": "22.0.0-beta.2", |
| 12 | + "description": "Consolidates releaseTag* options into nested releaseTag object structure", |
| 13 | + "implementation": "./src/migrations/update-22-0-0/consolidate-release-tag-config", |
| 14 | + "package": "nx", |
| 15 | + "name": "22-0-0-consolidate-release-tag-config" |
| 16 | + }, |
3 | 17 | { |
4 | 18 | "cli": "nx", |
5 | | - "version": "21.2.0-beta.3", |
6 | | - "requires": { "@angular/core": ">=20.0.0" }, |
7 | | - "description": "Update the @angular/cli package version to ~20.0.0.", |
8 | | - "factory": "./src/migrations/update-21-2-0/update-angular-cli", |
| 19 | + "version": "22.1.0-beta.5", |
| 20 | + "description": "Updates the nx wrapper.", |
| 21 | + "implementation": "./src/migrations/update-22-1-0/update-nx-wrapper", |
| 22 | + "package": "nx", |
| 23 | + "name": "22-1-0-update-nx-wrapper" |
| 24 | + }, |
| 25 | + { |
| 26 | + "version": "21.5.0-beta.2", |
| 27 | + "description": "Migrate the legacy 'development' custom condition to a workspace-unique custom condition name.", |
| 28 | + "factory": "./src/migrations/update-21-5-0/migrate-development-custom-condition", |
| 29 | + "package": "@nx/js", |
| 30 | + "name": "migrate-development-custom-condition" |
| 31 | + }, |
| 32 | + { |
| 33 | + "version": "22.0.0-beta.0", |
| 34 | + "description": "Remove the deprecated `external` and `externalBuildTargets` options from the `@nx/js:swc` and `@nx/js:tsc` executors.", |
| 35 | + "factory": "./src/migrations/update-22-0-0/remove-external-options-from-js-executors", |
| 36 | + "package": "@nx/js", |
| 37 | + "name": "remove-external-options-from-js-executors" |
| 38 | + }, |
| 39 | + { |
| 40 | + "version": "22.1.0-rc.1", |
| 41 | + "description": "Removes redundant TypeScript project references from project's tsconfig.json files when runtime tsconfig files (e.g., tsconfig.lib.json, tsconfig.app.json) exist.", |
| 42 | + "factory": "./src/migrations/update-22-1-0/remove-redundant-ts-project-references", |
| 43 | + "package": "@nx/js", |
| 44 | + "name": "remove-redundant-ts-project-references" |
| 45 | + }, |
| 46 | + { |
| 47 | + "version": "21.3.0-beta.3", |
| 48 | + "description": "Rename the CLI option `testPathPattern` to `testPathPatterns`.", |
| 49 | + "implementation": "./src/migrations/update-21-3-0/rename-test-path-pattern", |
| 50 | + "package": "@nx/jest", |
| 51 | + "name": "rename-test-path-pattern" |
| 52 | + }, |
| 53 | + { |
| 54 | + "version": "22.2.0-beta.2", |
| 55 | + "description": "Convert jest.config.ts files from ESM to CJS syntax (export default -> module.exports, import -> require) for projects using CommonJS resolution to ensure correct loading under Node.js type-stripping.", |
| 56 | + "implementation": "./src/migrations/update-22-2-0/convert-jest-config-to-cjs", |
| 57 | + "package": "@nx/jest", |
| 58 | + "name": "convert-jest-config-to-cjs" |
| 59 | + }, |
| 60 | + { |
| 61 | + "cli": "nx", |
| 62 | + "version": "21.3.0-beta.4", |
| 63 | + "requires": { "@angular/core": ">=20.1.0" }, |
| 64 | + "description": "Update the @angular/cli package version to ~20.1.0.", |
| 65 | + "factory": "./src/migrations/update-21-3-0/update-angular-cli", |
9 | 66 | "package": "@nx/angular", |
10 | | - "name": "update-angular-cli-version-20-0-0" |
| 67 | + "name": "update-angular-cli-version-20-1-0" |
11 | 68 | }, |
12 | 69 | { |
13 | | - "version": "21.2.0-beta.3", |
14 | | - "requires": { "@angular/core": ">=20.0.0" }, |
15 | | - "description": "Migrate imports of `provideServerRendering` from `@angular/platform-server` to `@angular/ssr`.", |
16 | | - "factory": "./src/migrations/update-21-2-0/migrate-provide-server-rendering-import", |
| 70 | + "version": "21.5.0-beta.0", |
| 71 | + "description": "Set the 'tsConfig' option to build and test targets to help with Angular migration issues.", |
| 72 | + "factory": "./src/migrations/update-21-5-0/set-tsconfig-option", |
17 | 73 | "package": "@nx/angular", |
18 | | - "name": "migrate-provide-server-rendering-import" |
| 74 | + "name": "set-tsconfig-option" |
19 | 75 | }, |
20 | 76 | { |
21 | | - "version": "21.2.0-beta.3", |
22 | | - "requires": { "@angular/core": ">=20.0.0" }, |
23 | | - "description": "Replace `provideServerRouting` and `provideServerRoutesConfig` with `provideServerRendering` using `withRoutes`.", |
24 | | - "factory": "./src/migrations/update-21-2-0/replace-provide-server-routing", |
| 77 | + "cli": "nx", |
| 78 | + "version": "21.5.0-beta.2", |
| 79 | + "requires": { "@angular/core": ">=20.2.0" }, |
| 80 | + "description": "Update the @angular/cli package version to ~20.2.0.", |
| 81 | + "factory": "./src/migrations/update-21-5-0/update-angular-cli", |
25 | 82 | "package": "@nx/angular", |
26 | | - "name": "replace-provide-server-routing" |
| 83 | + "name": "update-angular-cli-version-20-2-0" |
27 | 84 | }, |
28 | 85 | { |
29 | | - "version": "21.2.0-beta.3", |
30 | | - "requires": { "@angular/core": ">=20.0.0" }, |
31 | | - "description": "Update the generator defaults to maintain the previous style guide behavior.", |
32 | | - "factory": "./src/migrations/update-21-2-0/set-generator-defaults-for-previous-style-guide", |
| 86 | + "version": "21.5.0-beta.2", |
| 87 | + "requires": { "@angular/core": ">=20.2.0" }, |
| 88 | + "description": "Remove any Karma configuration files that only contain the default content. The default configuration is automatically available without a specific project configurationfile.", |
| 89 | + "factory": "./src/migrations/update-21-5-0/remove-default-karma-configuration-files", |
33 | 90 | "package": "@nx/angular", |
34 | | - "name": "set-generator-defaults-for-previous-style-guide" |
| 91 | + "name": "remove-default-karma-configuration-files" |
35 | 92 | }, |
36 | 93 | { |
37 | | - "version": "21.2.0-beta.3", |
38 | | - "requires": { "@angular/core": ">=20.0.0" }, |
39 | | - "description": "Update 'moduleResolution' to 'bundler' in TypeScript configurations. You can read more about this here: https://www.typescriptlang.org/tsconfig/#moduleResolution.", |
40 | | - "factory": "./src/migrations/update-21-2-0/update-module-resolution", |
| 94 | + "cli": "nx", |
| 95 | + "version": "21.6.1-beta.2", |
| 96 | + "requires": { "@angular/core": ">=20.3.0" }, |
| 97 | + "description": "Update the @angular/cli package version to ~20.3.0.", |
| 98 | + "factory": "./src/migrations/update-21-6-1/update-angular-cli", |
41 | 99 | "package": "@nx/angular", |
42 | | - "name": "update-module-resolution" |
| 100 | + "name": "update-angular-cli-version-20-3-0" |
| 101 | + }, |
| 102 | + { |
| 103 | + "version": "20.2.0", |
| 104 | + "description": "Replaces usages of the deprecated Router.getCurrentNavigation method with the Router.currentNavigation signal", |
| 105 | + "factory": "./bundles/router-current-navigation.cjs#migrate", |
| 106 | + "optional": true, |
| 107 | + "package": "@angular/core", |
| 108 | + "name": "router-current-navigation" |
| 109 | + }, |
| 110 | + { |
| 111 | + "version": "20.3.0", |
| 112 | + "description": "Adds `BootstrapContext` to `bootstrapApplication` calls in `main.server.ts` to support server rendering.", |
| 113 | + "factory": "./bundles/add-bootstrap-context-to-server-main.cjs#migrate", |
| 114 | + "package": "@angular/core", |
| 115 | + "name": "add-bootstrap-context-to-server-main" |
43 | 116 | } |
44 | 117 | ] |
45 | 118 | } |
0 commit comments