chore(deps-dev): bump postcss from 8.5.23 to 8.5.24 in /web-ui - #1123
Merged
Conversation
Bumps [postcss](https://github.com/postcss/postcss) from 8.5.23 to 8.5.24. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.5.23...8.5.24) --- updated-dependencies: - dependency-name: postcss dependency-version: 8.5.24 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
Owner
Dependabot Triage — PR #1123: postcss 8.5.23 → 8.5.24 (/web-ui)Classification
Key observations
|
frankbria
enabled auto-merge (squash)
August 10, 2026 03:28
5 tasks
Owner
dependabot
Bot
deleted the
dependabot/npm_and_yarn/web-ui/postcss-8.5.24
branch
August 10, 2026 03:33
This was referenced Aug 10, 2026
frankbria
added a commit
that referenced
this pull request
Aug 10, 2026
…ies (#1124) (#1132) * fix(web-ui): upgrade next to 16.3 to clear four high-severity advisories (#1124) Four high-severity advisories were live in web-ui. The PR that would have fixed them (#1087) was closed by Dependabot itself as "updatable in another way", and its replacement (#1123) bumped only top-level postcss — which was never the exposure. The vulnerable copy was nested at next/node_modules/postcss, pinned by next 16.2.12. next 16.3.0 clears all four: GHSA-r28c-9q8g-f849 postcss path traversal via previous-source-map loading GHSA-6g55-p6wh-862q postcss arbitrary file read via sourceMappingURL GHSA-qx2v-qp2m-jg93 postcss XSS via unescaped </style> in stringify GHSA-f88m-g3jw-g9cj sharp inherited libvips CVEs (< 0.35.0) npm audit: 7 vulnerabilities (6 high) -> 4 (3 high). sharp 0.34.5 -> 0.35.3, and the nested postcss is now 8.5.23, past every advisory's patched version. The upgrade brings stricter bundled typings, which broke the build with 27 TypeScript errors — all in src/__tests__, none in production source. Fixed rather than silenced; no `as any` was added anywhere (two existing ones were narrowed to `as never`), and all 1276 tests still pass: - reviewApi.getFileDiff does not exist. The test mocked and stubbed a method that is not on the API; the `as jest.Mock` cast hid it. Removed — dead setup, and its 13 tests still pass. - ProofRequirement.scope became a required (nullable) field with the #568 scope work; five fixtures predated it and now supply it. - TaskBoardView called .mockResolvedValue on the real typed tasksApi. Now uses jest.mocked(), which keeps the real signatures — so the toHaveBeenCalledWith assertions still type-check against true argument shapes. That immediately caught two more: updateStatus.mockResolvedValue({}) where a Task is required, now using the file's own makeTask factory. - Blocker.created_by is required; the fixture omitted it. - The WebSocket mock declared onclose as taking no arguments while calling it with a CloseEvent, and passed Uint8Array.buffer (ArrayBufferLike, possibly a SharedArrayBuffer) where a real binary message carries an ArrayBuffer. - Two @ts-expect-error directives are now unused because axios types `handlers`; removed, with the reason kept as a comment. - axios.isAxiosError was being reassigned, which fights jest.Mocked's intersection type; drives the existing auto-mock instead. - The remaining partial mocks of SWRResponse / AppRouterInstance assert through `unknown`, which keeps the target type rather than erasing it. #1123 is already merged and is harmless but unrelated. The four remaining advisories (all dev/build-time) and raising deploy.yml's --audit-level above critical are coupled and tracked in #1131 — raising the gate today would block every deploy on findings nothing has decided about yet. * style(web-ui): address review nits — import ordering and fixture formatting (#1124) Both non-blocking, both worth taking: the jest.mocked() binding sat between two import statements (valid, but an import/first rule would flag it), and scope: null was appended to the related_reqs line rather than getting its own, which did not match the surrounding fixture style. No behaviour change: tsc clean, eslint clean, 108 tests in the touched suites still pass.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bumps postcss from 8.5.23 to 8.5.24.
Release notes
Sourced from postcss's releases.
Changelog
Sourced from postcss's changelog.
Commits
0ebe8adRelease 8.5.24 version73218c6Update dependencies9a114f6Preserve the BOM when stringifying (#2119)9069261Fix types checkDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.