Update dependency maplibre-gl to v6.7.0 #10

Merged
boneskewer69 merged 1 commit from renovate/maplibre-gl-6.x into main 2026-09-03 18:57:39 +00:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
maplibre-gl (source) 6.6.06.7.0 age confidence

Release Notes

maplibre/maplibre-gl-js (maplibre-gl)

v6.7.0

Compare Source

Features and improvements
  • Support the style specification's font-faces property, with map.setFontFaces and map.getFontFaces and improve complex script languages such as Devanagari, Khmer, Burmese and Hebrew (#​8237) (by @​HarelM)
  • Wrap Thai, Khmer, Burmese, Lao, Tibetan, Javanese and Balinese labels at word boundaries instead of running them on in one line, which applies to every style whether or not it declares font-faces (#​8237) (by @​HarelM)
  • Throw GPUInitializationError from the Map constructor when the WebGL2 context cannot be created, instead of firing an error event no listener can catch and returning a partially constructed map (#​8066) (by @​johncarmack1984)
  • Allow adding an image source without a url. The source starts empty and makes no network request; call updateImage({image}) or updateImage({url}) later to show an image (#​8167) (by @​mondsichtung)
  • Skip symbol re-placement when its inputs are unchanged, so repaints from animated style images or custom layers cost a single frame (#​8208) (by @​lucaswoj)
  • Add Style#triggerSymbolPlacement, which re-places symbols when something the map cannot see for itself has moved them (#​8208) (by @​lucaswoj)
  • Make {validate: false} skip the style snapshot the style setters only build as error context, so adding layers one at a time no longer serializes the whole style on every call (#​8259) (by @​lazerg)
🐞 Bug fixes
  • Disable the navigation control's zoom-out button when viewport constraints prevent zooming out further (#​5316) (by @​miakh)
  • Keep a vector tile's etag when the tile is reloaded after a style change, so the next expiry refresh can still skip unchanged tiles (#​3309) (by @​johncarmack1984)
  • Fix project() and queryTerrainElevation disagreeing with the rendered terrain surface when the elevation lookup sampled a different DEM zoom than the drawn mesh (#​8212) (by @​johncarmack1984)
  • Draw numbers (e.g. “21” in “반포대로21길”) and short uppercase codes (e.g. “A1”) upright in vertical line labels instead of rotating them along the line (#​5404) (by @​NEKOYASAN)
  • Fix the camera jumping at the end of a pan or zoom gesture on terrain by sampling the center elevation from the rendered terrain surface (#​7989, #​3982) (by @​johncarmack1984)
  • Ensure style state defaults are serialized (#​8263) (by @​hiddewie)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [maplibre-gl](https://maplibre.org/) ([source](https://github.com/maplibre/maplibre-gl-js)) | [`6.6.0` → `6.7.0`](https://renovatebot.com/diffs/npm/maplibre-gl/6.6.0/6.7.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/maplibre-gl/6.7.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/maplibre-gl/6.6.0/6.7.0?slim=true) | --- ### Release Notes <details> <summary>maplibre/maplibre-gl-js (maplibre-gl)</summary> ### [`v6.7.0`](https://github.com/maplibre/maplibre-gl-js/blob/HEAD/CHANGELOG.md#670) [Compare Source](https://github.com/maplibre/maplibre-gl-js/compare/v6.6.0...v6.7.0) ##### ✨ Features and improvements - Support the style specification's `font-faces` property, with `map.setFontFaces` and `map.getFontFaces` and improve complex script languages such as Devanagari, Khmer, Burmese and Hebrew ([#&#8203;8237](https://github.com/maplibre/maplibre-gl-js/pull/8237)) (by [@&#8203;HarelM](https://github.com/HarelM)) - Wrap Thai, Khmer, Burmese, Lao, Tibetan, Javanese and Balinese labels at word boundaries instead of running them on in one line, which applies to every style whether or not it declares `font-faces` ([#&#8203;8237](https://github.com/maplibre/maplibre-gl-js/pull/8237)) (by [@&#8203;HarelM](https://github.com/HarelM)) - Throw `GPUInitializationError` from the `Map` constructor when the WebGL2 context cannot be created, instead of firing an `error` event no listener can catch and returning a partially constructed map ([#&#8203;8066](https://github.com/maplibre/maplibre-gl-js/issues/8066)) (by [@&#8203;johncarmack1984](https://github.com/johncarmack1984)) - Allow adding an image source without a `url`. The source starts empty and makes no network request; call `updateImage({image})` or `updateImage({url})` later to show an image ([#&#8203;8167](https://github.com/maplibre/maplibre-gl-js/pull/8167)) (by [@&#8203;mondsichtung](https://github.com/mondsichtung)) - Skip symbol re-placement when its inputs are unchanged, so repaints from animated style images or custom layers cost a single frame ([#&#8203;8208](https://github.com/maplibre/maplibre-gl-js/pull/8208)) (by [@&#8203;lucaswoj](https://github.com/lucaswoj)) - Add `Style#triggerSymbolPlacement`, which re-places symbols when something the map cannot see for itself has moved them ([#&#8203;8208](https://github.com/maplibre/maplibre-gl-js/pull/8208)) (by [@&#8203;lucaswoj](https://github.com/lucaswoj)) - Make `{validate: false}` skip the style snapshot the style setters only build as error context, so adding layers one at a time no longer serializes the whole style on every call ([#&#8203;8259](https://github.com/maplibre/maplibre-gl-js/issues/8259)) (by [@&#8203;lazerg](https://github.com/lazerg)) ##### 🐞 Bug fixes - Disable the navigation control's zoom-out button when viewport constraints prevent zooming out further ([#&#8203;5316](https://github.com/maplibre/maplibre-gl-js/issues/5316)) (by [@&#8203;miakh](https://github.com/miakh)) - Keep a vector tile's etag when the tile is reloaded after a style change, so the next expiry refresh can still skip unchanged tiles ([#&#8203;3309](https://github.com/maplibre/maplibre-gl-js/issues/3309)) (by [@&#8203;johncarmack1984](https://github.com/johncarmack1984)) - Fix `project()` and `queryTerrainElevation` disagreeing with the rendered terrain surface when the elevation lookup sampled a different DEM zoom than the drawn mesh ([#&#8203;8212](https://github.com/maplibre/maplibre-gl-js/issues/8212)) (by [@&#8203;johncarmack1984](https://github.com/johncarmack1984)) - Draw numbers (e.g. “21” in “반포대로21길”) and short uppercase codes (e.g. “A1”) upright in vertical line labels instead of rotating them along the line ([#&#8203;5404](https://github.com/maplibre/maplibre-gl-js/issues/5404)) (by [@&#8203;NEKOYASAN](https://github.com/NEKOYASAN)) - Fix the camera jumping at the end of a pan or zoom gesture on terrain by sampling the center elevation from the rendered terrain surface ([#&#8203;7989](https://github.com/maplibre/maplibre-gl-js/issues/7989), [#&#8203;3982](https://github.com/maplibre/maplibre-gl-js/issues/3982)) (by [@&#8203;johncarmack1984](https://github.com/johncarmack1984)) - Ensure style state defaults are serialized ([#&#8203;8263](https://github.com/maplibre/maplibre-gl-js/pull/8263)) (by [@&#8203;hiddewie](https://github.com/hiddewie)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC41OS4zIiwidXBkYXRlZEluVmVyIjoiNDQuNTkuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
boneskewer69/japan-gems!10
No description provided.