Skip to content

Commit bcc0908

Browse files
authored
Changelog for v10.0.0-rc.6 release (#559)
* Changelog update for v10.0.0-rc.6 * PR fixes
1 parent 2820cfd commit bcc0908

File tree

14 files changed

+36
-16
lines changed

14 files changed

+36
-16
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,30 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5-
# 10.0.0-rc.5 July 28, 2021
5+
# 10.0.0-rc.6 August 11, 2021
66

77
**The Mapbox Maps SDK for Android has moved to release candidate status and is now ready for production use.**
88

9+
## Breaking changes ⚠️
10+
* Update extension function signatures making them easier to use from Java. ([#539](https://github.com/mapbox/mapbox-maps-android/pull/539))
11+
* Rename `mapView#overlay()` to `mapView#mapboxOverlay`. ([#539](https://github.com/mapbox/mapbox-maps-android/pull/539))
12+
13+
## Features ✨ and improvements 🏁
14+
* Support adding 9-patch images to the style. ([#536](https://github.com/mapbox/mapbox-maps-android/pull/536))
15+
* Outdated data for volatile sources gets hidden if cannot be updated due to no Internet connection. ([#543](https://github.com/mapbox/mapbox-maps-android/pull/543))
16+
17+
## Bug fixes 🐞
18+
* Fix several memory leaks: clean up OnFpsChangeListener on render thread destroy / introduce Snapshotter#destroy method that must be called in Activity#onDestroy ([#546](https://github.com/mapbox/mapbox-maps-android/pull/546))
19+
* Add layer and source check when creating annotations and init them if not initiated before which creates `AnnotationManager` before loading style. ([#549](https://github.com/mapbox/mapbox-maps-android/pull/549))
20+
* Fix error messages returned by `Style#removeStyleSource` method. ([#543](https://github.com/mapbox/mapbox-maps-android/pull/543))
21+
* Store persistent layer's LayerPosition, so that layer can be re-added to correct position if LayerPosition.above or LayerPosition.at is used. ([#543](https://github.com/mapbox/mapbox-maps-android/pull/543))
22+
23+
## Dependencies
24+
* Update gl-native to v10.0.0-rc.6 and common to v16.2.0. ([#543](https://github.com/mapbox/mapbox-maps-android/pull/543))
25+
* Remove turf dependency of location component plugin. ([#551](https://github.com/mapbox/mapbox-maps-android/pull/551))
26+
27+
# 10.0.0-rc.5 July 28, 2021
28+
929
## Breaking changes ⚠️
1030
* Improve camera API consumption from java programming language by adding `CameraAnimationsUtils` and `getCamera` JvmName annotations. ([#495](https://github.com/mapbox/mapbox-maps-android/pull/495))
1131
* Rename `AttributionView#setOnClickListener` to `setViewOnClickListener` to avoid overloading the Android SDK method. Results in compilation on Android P and above. Adjust codebase to changes in enforced nullability of Android SDK code. ([#497](https://github.com/mapbox/mapbox-maps-android/pull/497))

extension-androidauto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.extension:maps-androidauto:10.0.0-rc.5'
33+
implementation 'com.mapbox.extension:maps-androidauto:10.0.0-rc.6'
3434
}
3535
```
3636

extension-localization/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
3232
// In the app build.gradle file
3333
dependencies {
34-
implementation 'com.mapbox.extension:maps-localization:10.0.0-rc.5'
34+
implementation 'com.mapbox.extension:maps-localization:10.0.0-rc.6'
3535
}
3636
```
3737

extension-style/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
3333
// In the app build.gradle file
3434
dependencies {
35-
implementation 'com.mapbox.extension:maps-style:10.0.0-rc.5'
35+
implementation 'com.mapbox.extension:maps-style:10.0.0-rc.6'
3636
}
3737
```
3838

plugin-animation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ allprojects {
3434
3535
// In the app build.gradle file
3636
dependencies {
37-
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.5'
37+
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.6'
3838
}
3939
```
4040

plugin-annotation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.plugin:maps-annotation:10.0.0-rc.5'
33+
implementation 'com.mapbox.plugin:maps-annotation:10.0.0-rc.6'
3434
}
3535
```
3636

plugin-attribution/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ allprojects {
3333
3434
// In the app build.gradle file
3535
dependencies {
36-
implementation 'com.mapbox.plugin:maps-attribution:10.0.0-rc.5'
36+
implementation 'com.mapbox.plugin:maps-attribution:10.0.0-rc.6'
3737
}
3838
```
3939

plugin-compass/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ allprojects {
3232
3333
// In the app build.gradle file
3434
dependencies {
35-
implementation 'com.mapbox.plugin:maps-compass:10.0.0-rc.5'
35+
implementation 'com.mapbox.plugin:maps-compass:10.0.0-rc.6'
3636
// Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin
37-
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.5'
37+
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.6'
3838
}
3939
```
4040

plugin-gestures/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.plugin:maps-gestures:10.0.0-rc.5'
33+
implementation 'com.mapbox.plugin:maps-gestures:10.0.0-rc.6'
3434
// Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin
35-
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.5'
35+
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.6'
3636
}
3737
```
3838

plugin-lifecycle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.plugin:maps-lifecycle:10.0.0-rc.5'
33+
implementation 'com.mapbox.plugin:maps-lifecycle:10.0.0-rc.6'
3434
// Make sure the version of appcompat is 1.3.0+
3535
implementation 'androidx.appcompat:appcompat:1.3.0'
3636
}

plugin-locationcomponent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ allprojects {
2929
}
3030
// In the app build.gradle file
3131
dependencies {
32-
implementation 'com.mapbox.plugin:maps-locationcomponent:10.0.0-rc.5'
32+
implementation 'com.mapbox.plugin:maps-locationcomponent:10.0.0-rc.6'
3333
}
3434
```
3535

plugin-logo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
3131
// In the app build.gradle file
3232
dependencies {
33-
implementation 'com.mapbox.plugin:maps-logo:10.0.0-rc.5'
33+
implementation 'com.mapbox.plugin:maps-logo:10.0.0-rc.6'
3434
}
3535
```
3636

plugin-overlay/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
3333
// In the app build.gradle file
3434
dependencies {
35-
implementation 'com.mapbox.plugin:maps-overlay:10.0.0-rc.5'
35+
implementation 'com.mapbox.plugin:maps-overlay:10.0.0-rc.6'
3636
}
3737
```
3838

plugin-scalebar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
3333
// In the app build.gradle file
3434
dependencies {
35-
implementation 'com.mapbox.plugin:maps-scalebar:10.0.0-rc.5'
35+
implementation 'com.mapbox.plugin:maps-scalebar:10.0.0-rc.6'
3636
}
3737
```
3838

0 commit comments

Comments
 (0)