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
34 changes: 19 additions & 15 deletions packages/angular/test/apps/ng18/package-lock.json

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

3 changes: 3 additions & 0 deletions packages/angular/test/apps/ng18/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
"webpack": "^5.61.0",
"webpack-cli": "^4.9.2"
},
"overrides": {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Good call on the override. I'd scoped ng18/ng19/ng20 as unfixable, since @angular-devkit/build-angular pins postcss exactly and the newest devkit in each major is still vulnerable (18 gives 8.4.41, 19 gives 8.5.12). Forcing ^8.5.23 clears all three, which takes three dismissals off FW-7722.

"postcss": "^8.5.23"
},
"engines": {
"node": ">= 18"
}
Expand Down
14 changes: 7 additions & 7 deletions packages/angular/test/apps/ng19/package-lock.json

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

3 changes: 3 additions & 0 deletions packages/angular/test/apps/ng19/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
"webpack": "^5.61.0",
"webpack-cli": "^4.9.2"
},
"overrides": {
"postcss": "^8.5.23"
},
"engines": {
"node": ">= 18"
}
Expand Down
14 changes: 7 additions & 7 deletions packages/angular/test/apps/ng20/package-lock.json

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

3 changes: 3 additions & 0 deletions packages/angular/test/apps/ng20/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
"webpack": "^5.61.0",
"webpack-cli": "^4.9.2"
},
"overrides": {
"postcss": "^8.5.23"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Not blocking, just flagging debt: this app can't take a general npm update. It aborts with ERESOLVE over @angular/compiler@20.1.8, which is presumably why the override was needed rather than a version bump. npm install is fine and reproduces the lockfile exactly, so postcss is genuinely fixed here.

Worth its own card, since the next transitive advisory in this app will hit the same wall and need the same override workaround.

},
"engines": {
"node": ">=20"
}
Expand Down
Loading
Loading