Skip to content

Commit 3b9a0fb

Browse files
authored
Bump GL-Native and Common to 11.7.0-rc.2 (#2746)
1 parent 7a5cd92 commit 3b9a0fb

File tree

4 files changed

+10
-36
lines changed

4 files changed

+10
-36
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ Mapbox welcomes participation and contributions from everyone.
3232
* Fix a crash when calling `CameraAnimationsPlugin.easeTo()` with empty camera options or `CameraAnimationsPlugin.playAnimatorsSequentially()` / `CameraAnimationsPlugin.playAnimatorsTogether()` with an empty array of animators.
3333
* Fix ongoing animations being canceled when `CameraAnimationsPlugin.flyTo()` with empty camera options is called.
3434
* Fix simultaneous scale and rotation gestures not working when the first registered rotation is a scale one.
35+
* Fix crash on Android tilestore where null data was returned.
36+
* Fix the incorrect behaviour when using `SymbolLayer.symbolZOrder` property.
37+
* Fix retrieval of tilesets for 3d tiles in offline mode.
38+
* Fix rendering errors of patterns on high zoom levels.
39+
* Fix a bug where style changes weren't reflected after the source layer of a layer was changed.
3540

3641
# 11.6.1 September 10, 2024
3742
## Bug fixes 🐞

LICENSE.md

+1-31
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,6 @@ License: [The Apache Software License, Version 2.0](http://www.apache.org/licens
264264

265265
===========================================================================
266266

267-
Mapbox Maps Android uses portions of the Cronet.
268-
269-
License: [Chromium and built-in dependencies](https://storage.cloud.google.com/chromium-cronet/android/119.0.6045.31/Release/cronet/LICENSE)
270-
271-
===========================================================================
272-
273267
Mapbox Maps Android uses portions of the Experimental annotation.
274268

275269
URL: [https://developer.android.com/jetpack/androidx/releases/annotation#1.3.0](https://developer.android.com/jetpack/androidx/releases/annotation#1.3.0)
@@ -426,30 +420,6 @@ License: [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENS
426420

427421
===========================================================================
428422

429-
Mapbox Maps Android uses portions of the play-services-base.
430-
431-
License: [Android Software Development Kit License](https://developer.android.com/studio/terms.html)
432-
433-
===========================================================================
434-
435-
Mapbox Maps Android uses portions of the play-services-basement.
436-
437-
License: [Android Software Development Kit License](https://developer.android.com/studio/terms.html)
438-
439-
===========================================================================
440-
441-
Mapbox Maps Android uses portions of the play-services-cronet.
442-
443-
License: [Android Software Development Kit License](https://developer.android.com/studio/terms.html)
444-
445-
===========================================================================
446-
447-
Mapbox Maps Android uses portions of the play-services-tasks.
448-
449-
License: [Android Software Development Kit License](https://developer.android.com/studio/terms.html)
450-
451-
===========================================================================
452-
453423
Mapbox Maps Android uses portions of the Saved State.
454424

455425
URL: [https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.0](https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.0)
@@ -474,7 +444,7 @@ License: [The Apache Software License, Version 2.0](http://www.apache.org/licens
474444

475445
===========================================================================
476446

477-
### MapboxCoreMaps,11.8.0-beta.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
447+
### MapboxCoreMaps,11.7.0-rc.2,Mapbox ToS,Mapbox,https://www.mapbox.com/
478448

479449
```
480450
Mapbox Core Maps version 10.0

app/src/androidTest/java/com/mapbox/maps/testapp/observable/ObservableEventsTest.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,8 @@ class ObservableEventsTest : BaseMapTest() {
123123
assertNotNull(eventData.message)
124124
assertNotNull(eventData.timestamp.time)
125125
assertEquals(MapLoadingErrorType.STYLE, eventData.type)
126-
// TODO replace when v11.7.0-rc.1 will be out
127126
assertEquals(
128-
"Failed to load style: Couldn't connect to server: Exception in CronetUrlRequest: net::ERR_NAME_NOT_RESOLVED, ErrorCode=1, InternalErrorCode=-105, Retryable=false",
127+
"Failed to load style: Unable to resolve host \"wrongurl\": No address associated with hostname",
129128
eventData.message
130129
)
131130
latch.countDown()

gradle/libs.versions.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginJacoco = "0.8.12"
1919
pluginGradle = "7.4.2"
2020
pluginLicense = "0.9.0"
2121
pluginMapboxAccessToken = "0.4.0"
22-
pluginMapboxSdkRegistry = "1.2.2"
22+
pluginMapboxSdkRegistry = "1.2.4"
2323
pluginMapboxSdkVersions = "1.1.3"
2424
pluginPitest = "0.2.8"
2525
pluginTaskTree = "2.1.0"
@@ -35,8 +35,8 @@ japicmp = "0.4.1"
3535
# Dependencies
3636

3737
mapboxBase = "0.11.0"
38-
mapboxGlNative = "11.8.0-SNAPSHOT.0909T0708Z.6c22615"
39-
mapboxCommon = "24.8.0-SNAPSHOT.0905T1055Z.7828821"
38+
mapboxGlNative = "11.7.0-rc.2"
39+
mapboxCommon = "24.7.0-rc.2"
4040
mapboxGestures = "0.8.0"
4141
mapboxJavaServices = "5.4.1"
4242

0 commit comments

Comments
 (0)