Skip to content
Open
Show file tree
Hide file tree
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
19 changes: 10 additions & 9 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@angular-devkit/build-angular": "^17.3.1",
"@angular/animations": "^17.3.1",
"@angular/cli": "^17.3.1",
"@angular/common": "^17.3.1",
"@angular/common": "^19.2.16",
Copy link

Copilot AI Dec 2, 2025

Choose a reason for hiding this comment

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

Upgrading only @angular/common to 19.2.16 while keeping all other Angular packages at 17.3.1 will cause critical peer dependency conflicts.

The upgraded @angular/common v19.2.16 requires @angular/core v19.2.16 as a peer dependency, but @angular/core remains at v17.3.1. Additionally, other Angular packages like @angular/forms, @angular/platform-browser, and @angular/platform-browser-dynamic have peer dependencies on @angular/common v17.3.1, which conflicts with this upgrade.

Recommendation: All Angular packages should be upgraded together to the same major version. To properly fix the security vulnerability, upgrade all Angular dependencies (including @angular/core, @angular/compiler, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/platform-server, @angular/router, @angular/ssr, @angular/animations, @angular/cli, @angular-devkit/build-angular, @angular/compiler-cli, and @angular/language-service) to version 19.x.x to maintain compatibility.

Copilot uses AI. Check for mistakes.
"@angular/compiler": "^17.3.1",
"@angular/core": "^17.3.1",
"@angular/forms": "^17.3.1",
Expand Down
Loading