Skip to content

Commit 6ec674b

Browse files
author
Alexander Kulikovskiy
authored
[port] bump gl-native to 10.13.0 and commo to 23.5.0 (#1683)
* bump gl-native to 10.13.0 and commo to 23.5.0
1 parent d0c0391 commit 6ec674b

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

CHANGELOG.md

+25-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,34 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5-
# main
6-
75
# 10.13.0
6+
## Features ✨ and improvements 🏁
7+
* Add overloaded methods to `CameraAnimatorsFactory` allowing to set camera animator owner.
8+
* Improve startup performance by calculating the style expressions dependencies lazily.
9+
* Introduce a new APIs `coordinateInfoForPixel(pixel: ScreenCoordinate): CoordinateInfo` and `coordinatesInfoForPixels(pixels: List<ScreenCoordinate>): List<CoordinateInfo>` which will return record(s) containing both `coordinate` and `isOnSurface` info.
10+
* Deprecate `Snapshotter.setTileMode` and `Snapshotter.isInTileMode`.
11+
* Deprecate `Style.setStyleGeoJSONSourceData(sourceId, data)`.
12+
* Deprecate `isMapLoaded` method.
13+
* Share similar image and glyph atlases across tiles and thus avoid unnecessary textures creation.
14+
* Render single color gradient as solid line.
15+
* Use flat screen coordinate conversion functions with zero exaggeration terrain.
16+
* Deprecate qRF APIs that use specific geometry types, which also are not cancelable.
17+
818
## Bug fixes 🐞
919
* Fix rare issue in renderer which could freeze the device when bringing the `MapView` back to front.
20+
* Fix artefacts caused by a race condition when style layers got updated during pending tiles layout.
21+
* Fix missing return unexpected result in model_loader processing, so the client could be aware of the error.
22+
* Fix text flickering while symbol layer update if text-field contains text-color property.
23+
* Fix 3d location layer properties `model-scale-transition` and `model-rotation-transition`, made them non-transitionable.
24+
* Fix raw expression parsing for list literal.
25+
* Fix text flickering while symbol layer update if `text-field` contains `text-color` property inside the format expression.
26+
* Fix a crash when a hillshade bucket was created with disabled terrain, but the terrain got enabled afterwards.
27+
* Fix the crash when identifying if device is connected to WiFi.
28+
29+
## Dependencies
30+
* Update gl-native to v10.13.0 and common to v23.5.0.
31+
32+
1033

1134
# 10.13.0-rc.1 April 20, 2023
1235
## Features ✨ and improvements 🏁

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ License: [The Apache Software License, Version 2.0](http://www.apache.org/licens
372372

373373
===========================================================================
374374

375-
### MapboxCoreMaps,10.13.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
375+
### MapboxCoreMaps,10.13.0,Mapbox ToS,Mapbox,https://www.mapbox.com/
376376

377377
```
378378
Mapbox Core Maps version 10.0

buildSrc/src/main/kotlin/Project.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ object Versions {
113113
const val mapboxGestures = "0.8.0"
114114
const val mapboxJavaServices = "5.4.1"
115115
const val mapboxBase = "0.8.0"
116-
const val mapboxGlNative = "10.13.0-rc.1"
117-
const val mapboxCommon = "23.5.0-rc.1"
116+
const val mapboxGlNative = "10.13.0"
117+
const val mapboxCommon = "23.5.0"
118118
const val androidxCore = "1.7.0" // last version compatible with kotlin 1.5.31
119119
const val androidxFragmentTesting = "1.5.0"
120120
const val androidxAnnotation = "1.1.0"

0 commit comments

Comments
 (0)