Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example-apps/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"private": true,
"dependencies": {
"@angular/animations": "~11.0.9",
"@angular/common": "~11.0.9",
"@angular/compiler": "~11.0.9",
"@angular/common": "~19.2.16",
"@angular/compiler": "~19.2.17",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Angular package version mismatch will break application

The automated Snyk fix upgraded @angular/common and @angular/compiler from version 11 to version 19, but all other Angular packages remain at version 11 (@angular/core, @angular/forms, @angular/animations, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router, and @angular/compiler-cli in devDependencies). Angular packages are tightly coupled and must share the same major version to function correctly. This version mismatch will cause peer dependency conflicts and runtime failures due to API incompatibilities between Angular 11 and 19.

Fix in Cursor Fix in Web

"@angular/core": "~11.0.9",
"@angular/forms": "~11.0.9",
"@angular/platform-browser": "~11.0.9",
Expand Down
Loading