petri/logview: bump browserslist and postcss-selector-parser - #4359
Merged
Ben Hillis (benhillis) merged 1 commit intoSep 1, 2026
Merged
Conversation
Fixes two Dependabot alerts: - browserslist < 4.28.7: uncaught crash / prototype write via untrusted browserslist-stats.json custom stats (normalizeStats) - postcss-selector-parser >= 6.1.0, < 6.1.3: denial of service through uncontrolled AST recursion Both are transitive dev dependencies, so only the lockfile changes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Steven Malis (smalis-msft)
approved these changes
Sep 1, 2026
Ben Hillis (benhillis)
enabled auto-merge (squash)
September 1, 2026 21:16
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change is a lockfile-only dependency bump that matches the PR description and does not introduce any code or configuration changes requiring additional validation.
Pull request overview
This PR updates the petri/logview frontend lockfile to pick up security fixes in transitive dev-dependencies used by the CSS toolchain (via autoprefixer / tailwindcss). It’s a low-risk change that keeps the Petri Logview build aligned with Dependabot security guidance without altering application code.
Changes:
- Bump
browserslistfrom4.28.2→4.28.7(plus refreshed related data packages such ascaniuse-lite,electron-to-chromium,node-releases,baseline-browser-mapping). - Bump
postcss-selector-parserfrom6.1.2→6.1.3. - Lockfile metadata updated accordingly (no
package.jsonchanges).
File summaries
| File | Description |
|---|---|
petri/logview/package-lock.json |
Updates locked transitive dependency versions to address two Dependabot security alerts. |
Review details
Copilot wasn't able to review any files in this pull request.
Files not reviewed (1)
- petri/logview/package-lock.json: Generated file
- Files reviewed: 0/1 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
Fixes two open Dependabot alerts:
browserslist4.28.2 → 4.28.7 (high) — uncaught crash / prototype write via untrustedbrowserslist-stats.jsoncustom stats (normalizeStats)postcss-selector-parser6.1.2 → 6.1.3 (low) — denial of service through uncontrolled AST recursionBoth are transitive dev dependencies (of
autoprefixer/tailwindcss), so onlypackage-lock.jsonchanges. Their own transitive data packages (caniuse-lite,electron-to-chromium,node-releases,baseline-browser-mapping) were refreshed as part of the browserslist bump.Verified with
npm ci --dry-run(lockfile is consistent) andcargo xtask fmt --fix.