diff --git a/CHANGELOG.md b/CHANGELOG.md index d1dce37108c..aaedd98d0f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.10.0-beta.1 +## 3.10.0 ### Features and improvements ✨ @@ -6,10 +6,21 @@ - Improve rendering of complex SVG clip paths for vector icons. ### Bug fixes 🐞 +- Fix some mouse gestures for Firefox 136 and later on Mac OS. - Fix issue where the close popup button was hidden from screen readers. +- Fix updating of schema config values of imported styles. +- Fix line placement symbol disappearing issue during transition from globe. - Fix `queryRenderedFeatures` not working on duplicated model layers. +- Fix in-place update for SDF image. +- Fix LUT not being applied to in-place updated image. +- Fix various issues with using `mouseenter` and `mouseleave` with Interactions API. +- Fix error with interactible map elements during interaction with a map that wasn't fully loaded. - Fix rendering of elevated and non-elevated lines on the same layer. +- Fix pixel ratio handling for patterns with vector icons. +- Fix positioning of vector icons with modified `icon-size`. - Fix a blank map issue after WebGL context loss. +- Fix loss of precision for close to camera models. +- Fix transparent models not being culled when terrain is enabled. ## 3.9.4 - Fix vector icons rendering with stretch areas on high DPI devices. diff --git a/package-lock.json b/package-lock.json index 443a7c7e67f..8e741d21f92 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mapbox-gl", - "version": "3.10.0-beta.1", + "version": "3.10.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mapbox-gl", - "version": "3.10.0-beta.1", + "version": "3.10.0", "license": "SEE LICENSE IN LICENSE.txt", "workspaces": [ "src/style-spec", @@ -15907,7 +15907,7 @@ }, "src/style-spec": { "name": "@mapbox/mapbox-gl-style-spec", - "version": "14.10.0-beta.1", + "version": "14.10.0", "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { "@mapbox/jsonlint-lines-primitives": "~2.0.2", diff --git a/package.json b/package.json index d6047fac1c7..4b99ae46a19 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mapbox-gl", "description": "A WebGL interactive maps library", - "version": "3.10.0-beta.1", + "version": "3.10.0", "main": "dist/mapbox-gl.js", "style": "dist/mapbox-gl.css", "types": "dist/mapbox-gl.d.ts", diff --git a/src/style-spec/package.json b/src/style-spec/package.json index b12f5a56bf5..30197f2b355 100644 --- a/src/style-spec/package.json +++ b/src/style-spec/package.json @@ -1,6 +1,6 @@ { "name": "@mapbox/mapbox-gl-style-spec", - "version": "14.10.0-beta.1", + "version": "14.10.0", "description": "a specification for mapbox gl styles", "author": "Mapbox", "license": "SEE LICENSE IN LICENSE.txt",