|
1 | 1 | { |
2 | 2 | "migrations": [ |
3 | 3 | { |
4 | | - "version": "21.0.0-beta.8", |
5 | | - "description": "Removes the legacy cache configuration from nx.json", |
6 | | - "implementation": "./src/migrations/update-21-0-0/remove-legacy-cache", |
| 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 | 7 | "package": "nx", |
8 | | - "name": "remove-legacy-cache" |
| 8 | + "name": "22-0-0-release-version-config-changes" |
9 | 9 | }, |
10 | 10 | { |
11 | | - "version": "21.0.0-beta.8", |
12 | | - "description": "Removes the legacy cache configuration from nx.json", |
13 | | - "implementation": "./src/migrations/update-21-0-0/remove-custom-tasks-runner", |
| 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 | 14 | "package": "nx", |
15 | | - "name": "remove-custom-tasks-runner" |
| 15 | + "name": "22-0-0-consolidate-release-tag-config" |
16 | 16 | }, |
17 | 17 | { |
18 | | - "version": "21.0.0-beta.11", |
19 | | - "description": "Updates release version config based on the breaking changes in Nx v21", |
20 | | - "implementation": "./src/migrations/update-21-0-0/release-version-config-changes", |
21 | | - "package": "nx", |
22 | | - "name": "release-version-config-changes" |
23 | | - }, |
24 | | - { |
25 | | - "version": "21.0.0-beta.11", |
26 | | - "description": "Updates release changelog config based on the breaking changes in Nx v21", |
27 | | - "implementation": "./src/migrations/update-21-0-0/release-changelog-config-changes", |
28 | | - "package": "nx", |
29 | | - "name": "release-changelog-config-changes" |
30 | | - }, |
31 | | - { |
32 | | - "version": "21.1.0-beta.2", |
33 | | - "description": "Adds **/nx-rules.mdc and **/nx.instructions.md to .gitignore if not present", |
34 | | - "implementation": "./src/migrations/update-21-1-0/add-gitignore-entry", |
| 18 | + "cli": "nx", |
| 19 | + "version": "22.1.0-beta.5", |
| 20 | + "description": "Updates the nx wrapper.", |
| 21 | + "implementation": "./src/migrations/update-22-1-0/update-nx-wrapper", |
35 | 22 | "package": "nx", |
36 | | - "name": "21-1-0-add-ignore-entries-for-nx-rule-files" |
| 23 | + "name": "22-1-0-update-nx-wrapper" |
37 | 24 | }, |
38 | 25 | { |
39 | | - "version": "21.5.0-beta.2", |
40 | | - "description": "Migrate the legacy 'development' custom condition to a workspace-unique custom condition name.", |
41 | | - "factory": "./src/migrations/update-21-5-0/migrate-development-custom-condition", |
| 26 | + "version": "22.0.0-beta.0", |
| 27 | + "description": "Remove the deprecated `external` and `externalBuildTargets` options from the `@nx/js:swc` and `@nx/js:tsc` executors.", |
| 28 | + "factory": "./src/migrations/update-22-0-0/remove-external-options-from-js-executors", |
42 | 29 | "package": "@nx/js", |
43 | | - "name": "migrate-development-custom-condition" |
| 30 | + "name": "remove-external-options-from-js-executors" |
44 | 31 | }, |
45 | 32 | { |
46 | | - "cli": "nx", |
47 | | - "version": "21.0.0-beta.9", |
48 | | - "description": "Replace usage of `getJestProjects` with `getJestProjectsAsync`.", |
49 | | - "implementation": "./src/migrations/update-21-0-0/replace-getJestProjects-with-getJestProjectsAsync", |
50 | | - "package": "@nx/jest", |
51 | | - "name": "replace-getJestProjects-with-getJestProjectsAsync-v21" |
52 | | - }, |
53 | | - { |
54 | | - "version": "21.0.0-beta.10", |
55 | | - "description": "Remove the previously deprecated and unused `tsConfig` option from the `@nx/jest:jest` executor.", |
56 | | - "implementation": "./src/migrations/update-21-0-0/remove-tsconfig-option-from-jest-executor", |
57 | | - "package": "@nx/jest", |
58 | | - "name": "remove-tsconfig-option-from-jest-executor" |
| 33 | + "version": "22.1.0-rc.1", |
| 34 | + "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.", |
| 35 | + "factory": "./src/migrations/update-22-1-0/remove-redundant-ts-project-references", |
| 36 | + "package": "@nx/js", |
| 37 | + "name": "remove-redundant-ts-project-references" |
59 | 38 | }, |
60 | 39 | { |
61 | | - "version": "21.3.0-beta.3", |
62 | | - "description": "Rename the CLI option `testPathPattern` to `testPathPatterns`.", |
63 | | - "implementation": "./src/migrations/update-21-3-0/rename-test-path-pattern", |
| 40 | + "version": "22.2.0-beta.2", |
| 41 | + "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.", |
| 42 | + "implementation": "./src/migrations/update-22-2-0/convert-jest-config-to-cjs", |
64 | 43 | "package": "@nx/jest", |
65 | | - "name": "rename-test-path-pattern" |
| 44 | + "name": "convert-jest-config-to-cjs" |
66 | 45 | }, |
67 | 46 | { |
68 | | - "version": "21.3.0-beta.3", |
| 47 | + "version": "22.3.2-beta.0", |
69 | 48 | "requires": { "jest": ">=30.0.0" }, |
70 | 49 | "description": "Replace removed matcher aliases in Jest v30 with their corresponding matcher", |
71 | 50 | "implementation": "./src/migrations/update-21-3-0/replace-removed-matcher-aliases", |
72 | 51 | "package": "@nx/jest", |
73 | | - "name": "replace-removed-matcher-aliases" |
| 52 | + "name": "replace-removed-matcher-aliases-v22-3" |
74 | 53 | }, |
75 | 54 | { |
76 | 55 | "cli": "nx", |
77 | | - "version": "21.0.0-beta.11", |
78 | | - "description": "Remove isolatedConfig option for @nx/webpack:webpack", |
79 | | - "implementation": "./src/migrations/update-21-0-0/remove-isolated-config", |
| 56 | + "version": "22.0.0-beta.0", |
| 57 | + "description": "Remove deprecated deleteOutputPath and sassImplementation options from @nx/webpack:webpack", |
| 58 | + "implementation": "./src/migrations/update-22-0-0/remove-deprecated-options", |
80 | 59 | "package": "@nx/webpack", |
81 | | - "name": "update-21-0-0-remove-isolated-config" |
| 60 | + "name": "update-22-0-0-remove-deprecated-options" |
82 | 61 | } |
83 | 62 | ] |
84 | 63 | } |
0 commit comments