Skip to content

Commit 5c8188b

Browse files
author
Kevin Li
authored
Add changelog for rc.4 (#500)
* Add changelog for rc.4 * Bump sdk version in readme to rc.4
1 parent 92bc69b commit 5c8188b

11 files changed

Lines changed: 45 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22

33
Mapbox welcomes participation and contributions from everyone.
44

5+
# 10.0.0-rc.4 July 14, 2021
6+
7+
**The Mapbox Maps SDK for Android has moved to release candidate status and is now ready for production use.**
8+
9+
## Features ✨ and improvements 🏁
10+
* Add new param to allow users localize selected layers. ([#461](https://github.com/mapbox/mapbox-maps-android/pull/461))
11+
* Add API to control logging for animation plugin and disable debug logs by default. ([#474](https://github.com/mapbox/mapbox-maps-android/pull/474))
12+
* Introduce option to use continuous rendering for scale bar. Continuous render mode will fix gfxinfo profiling. ([#458](https://github.com/mapbox/mapbox-maps-android/pull/458))
13+
* Add shortest bearing path option for animators. ([#473](https://github.com/mapbox/mapbox-maps-android/pull/473))
14+
* Add modelTranslation support for LocationPuck3D ([#493](https://github.com/mapbox/mapbox-maps-android/pull/493))
15+
* Add default parameters to coordinate conversion functions of MapCameraManagerDelegate#cameraForCoordinates, MapCameraManagerDelegate#cameraForCoordinateBounds and MapCameraManagerDelegate#cameraForGeometry. This overloads the functions to have a more simple API surface for developers to hook into. ([#491](https://github.com/mapbox/mapbox-maps-android/pull/491))
16+
* Support text-writing-mode property for line symbol-placement text labels (#1766)
17+
Note: This change will bring following changes for CJK text block:
18+
- For vertical CJK text, all the characters including Latin and Numbers will be vertically placed now. Previously, Latin and Numbers are horizontally placed.
19+
- For horizontal CJK text, it may have a slight horizontal shift due to the anchor shift.
20+
* Session SKU generation is now available
21+
* Add getSKUTokenIfValid to get a SKU token for a SKU identifier if it exists and is not expired, return empty string if not.
22+
* Allow filtering of log messages by categories.
23+
* Expose isFiltered for checking logging category settings
24+
25+
## Bug fixes 🐞
26+
* Fix flyTo crash when using single-pixel paddings. ([#478](https://github.com/mapbox/mapbox-maps-android/pull/478))
27+
* Fixed regression in map gestures on devices with Android 6 and lower. ([#484](https://github.com/mapbox/mapbox-maps-android/pull/484))
28+
* Fix overwriting sync geojson data with getSourceAs by async. ([#482](https://github.com/mapbox/mapbox-maps-android/pull/482))
29+
* Clean up network listener after http file source gets out of scope
30+
* Fix line-center anchor calculation when the anchor is very near to the line geometry point
31+
* Fix crash when a Feature State API is used with dedicated rendering thread
32+
* Fix threading issues in HTTP file source
33+
* Fix volatile tilesets handling
34+
35+
## Dependencies
36+
* Update gl-native to v10.0.0-rc.5 and common to v16.0.0. ([#487](https://github.com/mapbox/mapbox-maps-android/pull/487))
37+
538
# 10.0.0-rc.3 June 30, 2021
639

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

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.3'
34+
implementation 'com.mapbox.extension:maps-localization:10.0.0-rc.4'
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.3'
35+
implementation 'com.mapbox.extension:maps-style:10.0.0-rc.4'
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.3'
37+
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.4'
3838
}
3939
```
4040

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.3'
36+
implementation 'com.mapbox.plugin:maps-attribution:10.0.0-rc.4'
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.3'
35+
implementation 'com.mapbox.plugin:maps-compass:10.0.0-rc.4'
3636
// Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin
37-
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.3'
37+
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.4'
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.3'
33+
implementation 'com.mapbox.plugin:maps-gestures:10.0.0-rc.4'
3434
// Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin
35-
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.3'
35+
implementation 'com.mapbox.plugin:maps-animation:10.0.0-rc.4'
3636
}
3737
```
3838

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.3'
32+
implementation 'com.mapbox.plugin:maps-locationcomponent:10.0.0-rc.4'
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.3'
33+
implementation 'com.mapbox.plugin:maps-logo:10.0.0-rc.4'
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.3'
35+
implementation 'com.mapbox.plugin:maps-overlay:10.0.0-rc.4'
3636
}
3737
```
3838

0 commit comments

Comments
 (0)