-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmigrations.json
More file actions
156 lines (156 loc) · 6.78 KB
/
migrations.json
File metadata and controls
156 lines (156 loc) · 6.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"migrations": [
{
"version": "22.0.0-beta.1",
"description": "Updates release version config based on the breaking changes in Nx v22",
"implementation": "./src/migrations/update-22-0-0/release-version-config-changes",
"package": "nx",
"name": "22-0-0-release-version-config-changes"
},
{
"version": "22.0.0-beta.2",
"description": "Consolidates releaseTag* options into nested releaseTag object structure",
"implementation": "./src/migrations/update-22-0-0/consolidate-release-tag-config",
"package": "nx",
"name": "22-0-0-consolidate-release-tag-config"
},
{
"cli": "nx",
"version": "22.1.0-beta.5",
"description": "Updates the nx wrapper.",
"implementation": "./src/migrations/update-22-1-0/update-nx-wrapper",
"package": "nx",
"name": "22-1-0-update-nx-wrapper"
},
{
"version": "22.3.0-beta.0",
"requires": { "@angular/core": ">=21.0.0" },
"description": "Updates webpack-based SSR configuration to use preserve module format and bundler module resolution.",
"factory": "./src/migrations/update-22-3-0/update-ssr-webpack-config",
"package": "@nx/angular",
"name": "update-ssr-webpack-config-22-2-0"
},
{
"version": "22.3.0-beta.0",
"requires": { "@angular/core": ">=21.0.0-rc.3" },
"description": "Update 'module' to 'preserve' and 'moduleResolution' to 'bundler' in TypeScript configurations for Angular projects.",
"factory": "./src/migrations/update-22-3-0/update-module-resolution",
"package": "@nx/angular",
"name": "update-module-resolution-22-2-0"
},
{
"version": "22.3.0-beta.0",
"requires": { "@angular/core": ">=21.0.0" },
"description": "Updates the 'lib' property in tsconfig files to use 'es2022' or a more modern version.",
"factory": "./src/migrations/update-22-3-0/update-typescript-lib",
"package": "@nx/angular",
"name": "update-typescript-lib-22-2-0"
},
{
"version": "22.3.0-beta.0",
"requires": { "@angular/core": ">=21.0.0" },
"description": "Update 'vitest' unit test runner option to 'vitest-analog' in generator defaults.",
"factory": "./src/migrations/update-22-3-0/update-unit-test-runner-option",
"package": "@nx/angular",
"name": "update-unit-test-runner-option"
},
{
"version": "22.3.0-beta.3",
"requires": { "@angular/core": ">=21.0.0" },
"description": "Set 'isolatedModules' to 'true' in TypeScript test configurations for Angular projects.",
"factory": "./src/migrations/update-22-3-0/set-isolated-modules",
"package": "@nx/angular",
"name": "set-isolated-modules-22-3-0"
},
{
"version": "22.3.0-beta.3",
"requires": { "@angular/core": ">=21.0.0" },
"description": "Replace 'jest-preset-angular/setup-jest' imports with the new 'setupZoneTestEnv' function.",
"factory": "./src/migrations/update-22-3-0/update-jest-preset-angular-setup",
"package": "@nx/angular",
"name": "update-jest-preset-angular-setup"
},
{
"version": "22.2.0-beta.2",
"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.",
"implementation": "./src/migrations/update-22-2-0/convert-jest-config-to-cjs",
"package": "@nx/jest",
"name": "convert-jest-config-to-cjs"
},
{
"version": "22.3.2-beta.0",
"requires": { "jest": ">=30.0.0" },
"description": "Replace removed matcher aliases in Jest v30 with their corresponding matcher",
"implementation": "./src/migrations/update-21-3-0/replace-removed-matcher-aliases",
"package": "@nx/jest",
"name": "replace-removed-matcher-aliases-v22-3"
},
{
"version": "22.1.0-beta.6",
"requires": { "cypress": ">=15.0.0" },
"description": "Renames `cy.exec().its('code')` usages to the new `exitCode` property introduced in Cypress v15.",
"implementation": "./src/migrations/update-22-1-0/rename-cy-exec-code-property",
"package": "@nx/cypress",
"name": "rename-cy-exec-code-property"
},
{
"version": "22.1.0-beta.6",
"requires": { "cypress": ">=15.0.0" },
"description": "Updates the deprecated `Cypress.SelectorPlayground` API to `Cypress.ElementSelector` and removes the unsupported `onElement` option.",
"implementation": "./src/migrations/update-22-1-0/update-selector-playground-api",
"package": "@nx/cypress",
"name": "update-selector-playground-api"
},
{
"version": "22.1.0-beta.6",
"requires": { "cypress": ">=15.0.0" },
"description": "For Angular component testing projects below v18, switches to the fallback `@cypress/angular` harness required by Cypress v15.",
"implementation": "./src/migrations/update-22-1-0/update-angular-component-testing-support",
"package": "@nx/cypress",
"name": "update-angular-component-testing-support"
},
{
"version": "21.0.0",
"description": "Converts the entire application to block control flow syntax",
"factory": "./bundles/control-flow-migration.cjs#migrate",
"package": "@angular/core",
"name": "control-flow-migration"
},
{
"version": "21.0.0",
"description": "Replaces usages of the deprecated Router.getCurrentNavigation method with the Router.currentNavigation signal",
"factory": "./bundles/router-current-navigation.cjs#migrate",
"optional": true,
"package": "@angular/core",
"name": "router-current-navigation"
},
{
"version": "21.0.0",
"description": "Ensures that the Router.lastSuccessfulNavigation signal is now invoked",
"factory": "./bundles/router-last-successful-navigation.cjs#migrate",
"package": "@angular/core",
"name": "router-last-successful-navigation"
},
{
"version": "21.0.0",
"description": "Moves imports of `ApplicationConfig` from `@angular/platform-browser` to `@angular/core`",
"factory": "./bundles/application-config-core.cjs#migrate",
"package": "@angular/core",
"name": "application-config-core"
},
{
"version": "21.0.0",
"description": "Adds `BootstrapContext` to `bootstrapApplication` calls in `main.server.ts` to support server rendering.",
"factory": "./bundles/add-bootstrap-context-to-server-main.cjs#migrate",
"package": "@angular/core",
"name": "add-bootstrap-context-to-server-main"
},
{
"version": "21.0.0",
"description": "Migrates deprecated bootstrap options to providers.",
"factory": "./bundles/bootstrap-options-migration.cjs#migrate",
"package": "@angular/core",
"name": "bootstrap-options-migration"
}
]
}