diff --git a/CHANGELOG.md b/CHANGELOG.md index ba5a708b623..ef5ebac4032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +## v3.7.0-beta.1 + +### Features and improvements ✨ + +- Add `config` expression support in layer filter. +- Add symbol elevation properties: `symbol-z-offset` and `symbol-elevation-reference`. +- Add the `fill-z-offset` property for fill layers. +- Improve `Map#fitBounds` for the alternative projections. +- Improve terrain hillshade lighting anchored to viewport. +- Improve shadow casting from 3D models. +- Improve error messages for invalid expressions. +- Skip landmarks rendering when the camera is inside them. +- Improve type checking for the `Map#setPaintProperty` and `Map#setLayoutProperty` methods. +- Allow the `string` event type in Map event handlers. +- Expose `RequestTransformFunction`, `ResourceType`, and `RequestParameters` types. + +### Bug fixes 🐞 +- Fix feature filtering when using 3D lights. +- Fix pattern rendering issues on some devices at high zoom levels. +- Fix `fill-extrusion-line-width` rendering for large polygons +- Fix symbol placement ordering when `symbol-z-order` is set to `auto`. +- Fix the issue where `minzoom` and `maxzoom` properties were ignored by `clip` layers. +- Fix handling previously hidden models in `clip` layers. +- Fix directional light `cast-shadows` property type. + ## 3.6.0 ### Features and improvements ✨ diff --git a/package-lock.json b/package-lock.json index dd85a0d2781..7eb9bff99cc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mapbox-gl", - "version": "3.7.0-alpha.1", + "version": "3.7.0-beta.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mapbox-gl", - "version": "3.7.0-alpha.1", + "version": "3.7.0-beta.1", "license": "SEE LICENSE IN LICENSE.txt", "workspaces": [ "src/style-spec", @@ -15636,7 +15636,7 @@ }, "src/style-spec": { "name": "@mapbox/mapbox-gl-style-spec", - "version": "14.7.0-alpha.1", + "version": "14.7.0-beta.1", "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { "@mapbox/jsonlint-lines-primitives": "~2.0.2", diff --git a/package.json b/package.json index c97fd92eb9b..c5b38878000 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mapbox-gl", "description": "A WebGL interactive maps library", - "version": "3.7.0-alpha.1", + "version": "3.7.0-beta.1", "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 85a3012e009..f70012f103a 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.7.0-alpha.1", + "version": "14.7.0-beta.1", "description": "a specification for mapbox gl styles", "author": "Mapbox", "license": "SEE LICENSE IN LICENSE.txt",