Skip to content
Closed
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
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/cdk": "^18.2.6",
"@angular/common": "^18.2.0",
"@angular/common": "^19.0.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

Updating only @angular/common to a new major version while leaving other @angular/* packages on v18 will cause dependency mismatches and likely break the application. All @angular packages within a project should be on the same version.

A less disruptive way to fix the security vulnerability (GHSA-58c5-g7wp-6w37) is to update to a patch release of Angular 18, specifically 18.2.7 or later. I recommend changing this to ^18.2.7 and updating all other @angular/* packages to match.

If you do intend to upgrade to v19, you must update all @angular/* packages (including @angular/core, @angular/compiler, etc.) to ^19.0.0 (or a higher compatible version) in this PR.

Suggested change
"@angular/common": "^19.0.0",
"@angular/common": "^18.2.7",

"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
Expand Down
Loading