-
Notifications
You must be signed in to change notification settings - Fork 39
chore(deps): migrate to v20 packages and ngrx 20.0.0-beta.0
#184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
michael-small
wants to merge
4
commits into
angular-architects:main
Choose a base branch
from
michael-small:upgrade-20.0.0-beta.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
943ef77
chore(deps): migrate to v20 w/nx
michael-small 489e495
chore(deps): bump ngrx to `20.0.0-beta.0`
michael-small d6bbb8d
deps: update root + lib packages to ngrx 20.0.0-rc.0
michael-small ad5da0a
fix(demo&lib): add missing generic info
michael-small File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,171 @@ | ||
{ | ||
"migrations": [ | ||
{ | ||
"version": "21.0.0-beta.8", | ||
"description": "Removes the legacy cache configuration from nx.json", | ||
"implementation": "./src/migrations/update-21-0-0/remove-legacy-cache", | ||
"package": "nx", | ||
"name": "remove-legacy-cache" | ||
}, | ||
{ | ||
"version": "21.0.0-beta.8", | ||
"description": "Removes the legacy cache configuration from nx.json", | ||
"implementation": "./src/migrations/update-21-0-0/remove-custom-tasks-runner", | ||
"package": "nx", | ||
"name": "remove-custom-tasks-runner" | ||
}, | ||
{ | ||
"version": "21.0.0-beta.11", | ||
"description": "Updates release version config based on the breaking changes in Nx v21", | ||
"implementation": "./src/migrations/update-21-0-0/release-version-config-changes", | ||
"package": "nx", | ||
"name": "release-version-config-changes" | ||
}, | ||
{ | ||
"version": "21.0.0-beta.11", | ||
"description": "Updates release changelog config based on the breaking changes in Nx v21", | ||
"implementation": "./src/migrations/update-21-0-0/release-changelog-config-changes", | ||
"package": "nx", | ||
"name": "release-changelog-config-changes" | ||
}, | ||
{ | ||
"version": "21.1.0-beta.2", | ||
"description": "Adds **/nx-rules.mdc and **/nx.instructions.md to .gitignore if not present", | ||
"implementation": "./src/migrations/update-21-1-0/add-gitignore-entry", | ||
"package": "nx", | ||
"name": "21-1-0-add-ignore-entries-for-nx-rule-files" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "21.0.0-beta.9", | ||
"description": "Replace usage of `getJestProjects` with `getJestProjectsAsync`.", | ||
"implementation": "./src/migrations/update-21-0-0/replace-getJestProjects-with-getJestProjectsAsync", | ||
"package": "@nx/jest", | ||
"name": "replace-getJestProjects-with-getJestProjectsAsync-v21" | ||
}, | ||
{ | ||
"version": "21.0.0-beta.10", | ||
"description": "Remove the previously deprecated and unused `tsConfig` option from the `@nx/jest:jest` executor.", | ||
"implementation": "./src/migrations/update-21-0-0/remove-tsconfig-option-from-jest-executor", | ||
"package": "@nx/jest", | ||
"name": "remove-tsconfig-option-from-jest-executor" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "20.5.0-beta.5", | ||
"requires": { "@angular/core": ">=19.2.0" }, | ||
"description": "Update the @angular/cli package version to ~19.2.0.", | ||
"factory": "./src/migrations/update-20-5-0/update-angular-cli", | ||
"package": "@nx/angular", | ||
"name": "update-angular-cli-version-19-2-0" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "21.0.0-beta.3", | ||
"description": "Set the `continuous` option to `true` for continuous tasks.", | ||
"factory": "./src/migrations/update-21-0-0/set-continuous-option", | ||
"package": "@nx/angular", | ||
"name": "set-continuous-option" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "21.0.0-beta.5", | ||
"requires": { "@ngrx/store": ">=16.0.0" }, | ||
"description": "Change the data persistence operator imports to '@ngrx/router-store/data-persistence'.", | ||
"factory": "./src/migrations/update-21-0-0/change-data-persistence-operators-imports-to-ngrx-router-store-data-persistence", | ||
"package": "@nx/angular", | ||
"name": "change-data-persistence-operators-imports-to-ngrx-router-store-data-persistence" | ||
}, | ||
{ | ||
"cli": "nx", | ||
"version": "20.4.0-beta.1", | ||
"requires": { "@angular/core": ">=19.1.0" }, | ||
"description": "Update the @angular/cli package version to ~19.1.0.", | ||
"factory": "./src/migrations/update-20-4-0/update-angular-cli", | ||
"version": "21.2.0-beta.3", | ||
"requires": { "@angular/core": ">=20.0.0" }, | ||
"description": "Update the @angular/cli package version to ~20.0.0.", | ||
"factory": "./src/migrations/update-21-2-0/update-angular-cli", | ||
"package": "@nx/angular", | ||
"name": "update-angular-cli-version-20-0-0" | ||
}, | ||
{ | ||
"version": "21.2.0-beta.3", | ||
"requires": { "@angular/core": ">=20.0.0" }, | ||
"description": "Migrate imports of `provideServerRendering` from `@angular/platform-server` to `@angular/ssr`.", | ||
"factory": "./src/migrations/update-21-2-0/migrate-provide-server-rendering-import", | ||
"package": "@nx/angular", | ||
"name": "migrate-provide-server-rendering-import" | ||
}, | ||
{ | ||
"version": "21.2.0-beta.3", | ||
"requires": { "@angular/core": ">=20.0.0" }, | ||
"description": "Replace `provideServerRouting` and `provideServerRoutesConfig` with `provideServerRendering` using `withRoutes`.", | ||
"factory": "./src/migrations/update-21-2-0/replace-provide-server-routing", | ||
"package": "@nx/angular", | ||
"name": "replace-provide-server-routing" | ||
}, | ||
{ | ||
"version": "21.2.0-beta.3", | ||
"requires": { "@angular/core": ">=20.0.0" }, | ||
"description": "Update the generator defaults to maintain the previous style guide behavior.", | ||
"factory": "./src/migrations/update-21-2-0/set-generator-defaults-for-previous-style-guide", | ||
"package": "@nx/angular", | ||
"name": "set-generator-defaults-for-previous-style-guide" | ||
}, | ||
{ | ||
"version": "21.2.0-beta.3", | ||
"requires": { "@angular/core": ">=20.0.0" }, | ||
"description": "Update 'moduleResolution' to 'bundler' in TypeScript configurations. You can read more about this here: https://www.typescriptlang.org/tsconfig/#moduleResolution.", | ||
"factory": "./src/migrations/update-21-2-0/update-module-resolution", | ||
"package": "@nx/angular", | ||
"name": "update-angular-cli-version-19-1-0" | ||
"name": "update-module-resolution" | ||
}, | ||
{ | ||
"version": "20.0.0", | ||
"description": "Replaces usages of the deprecated InjectFlags enum", | ||
"factory": "./bundles/inject-flags.cjs#migrate", | ||
"package": "@angular/core", | ||
"name": "inject-flags" | ||
}, | ||
{ | ||
"version": "20.0.0", | ||
"description": "Replaces usages of the deprecated TestBed.get method with TestBed.inject", | ||
"factory": "./bundles/test-bed-get.cjs#migrate", | ||
"package": "@angular/core", | ||
"name": "test-bed-get" | ||
}, | ||
{ | ||
"version": "20.0.0", | ||
"description": "Converts the entire application to block control flow syntax", | ||
"factory": "./bundles/control-flow-migration.cjs#migrate", | ||
"optional": true, | ||
"package": "@angular/core", | ||
"name": "control-flow-migration" | ||
}, | ||
{ | ||
"version": "20.0.0", | ||
"description": "Moves imports of `DOCUMENT` from `@angular/common` to `@angular/core`", | ||
"factory": "./bundles/document-core.cjs#migrate", | ||
"package": "@angular/core", | ||
"name": "document-core" | ||
}, | ||
{ | ||
"version": "20.0.0-0", | ||
"description": "Updates Angular Material to v20", | ||
"factory": "./ng-update/index_bundled#updateToV20", | ||
"package": "@angular/material", | ||
"name": "migration-v20" | ||
}, | ||
{ | ||
"version": "20.0.0-0", | ||
"description": "Updates the Angular CDK to v20", | ||
"factory": "./ng-update/index#updateToV20", | ||
"package": "@angular/cdk", | ||
"name": "migration-v20" | ||
}, | ||
{ | ||
"version": "20.0.0-alpha.0", | ||
"description": "Updates @angular-eslint to v20", | ||
"factory": "./migrations/update-20-0-0/update-20-0-0", | ||
"package": "angular-eslint", | ||
"name": "update-20-0-0" | ||
} | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we update the version to the latest 20.1.3