Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
uses: actions/dependency-review-action@v5
with:
fail-on-severity: high
# See pnpm-workspace.yaml for why maplibre-gl is held at 5.24.0 and
# why this advisory is not reachable in this app. Remove once
# react-map-gl renders with maplibre-gl >= 6.4.1.
allow-ghsas: GHSA-jrc7-96c5-q579
- run: pnpm build
- run: pnpm exec playwright install --with-deps chromium
- run: pnpm test:e2e --project=desktop-chromium
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"jose": "^6.1.3",
"lucide-react": "^0.562.0",
"mapbox-gl": "^3.2.0",
"maplibre-gl": "^6.4.1",
"maplibre-gl": "5.24.0",
Comment thread
iblh marked this conversation as resolved.
"next": "16.3.4",
"next-themes": "^0.4.6",
"react": "19.2.8",
Expand Down
63 changes: 28 additions & 35 deletions pnpm-lock.yaml

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

17 changes: 17 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
minimumReleaseAgeExclude:
- next@16.3.4
- eslint-config-next@16.3.4

# maplibre-gl is pinned to 5.24.0 because react-map-gl v8 (@vis.gl/react-maplibre)
# cannot render with maplibre-gl 6.x: the map constructs, but the style never
# finishes loading, so no basemap tiles are ever requested. Verified across
# react-map-gl 8.0.4/8.1.3 x maplibre 6.4.1/6.9.0; 4.7.1 and 5.24.0 both render.
#
# CVE-2026-85061 (GHSA-jrc7-96c5-q579) affects maplibre-gl <= 6.4.0, so 5.24.0
# carries it. It is an XSS sanitizer bypass in DOM.sanitize(), which requires
# untrusted HTML to reach maplibre's sanitizer. This app has no Popup,
# setHTML, setDOMContent or dangerouslySetInnerHTML anywhere near the map; the
# only HTML surface is the built-in attribution control with static strings.
#
# REMOVE THIS IGNORE once react-map-gl renders with maplibre-gl >= 6.4.1.
# Tracking: https://github.com/visgl/react-map-gl (no upstream issue yet)
auditConfig:
ignoreCves:
- CVE-2026-85061
Loading