diff --git a/CHANGELOG.md b/CHANGELOG.md index 285420490a..350cac5b65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ Mapbox welcomes participation and contributions from everyone. # main -# 10.10.0-rc.1 + +# 10.10.0-rc.1 November 18, 2022 ## Features ✨ and improvements 🏁 * Improve symbol filtering performance when distance-from-camera and pitch expressions are used. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) * Add API for removing atmosphere. ([1841](https://github.com/mapbox/mapbox-maps-android/pull/1841)) @@ -17,7 +18,6 @@ Mapbox welcomes participation and contributions from everyone. * Clear geojson tiles after the source is updated with empty features in order to eliminate "phantom tile" artifacts and to obviate extra work for keeping empty tiles. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) * Fix a regression from v10.10.0-beta.1 release, the BitmapWidget.setTranslation API should offset relative to its original position. ([1833](https://github.com/mapbox/mapbox-maps-android/pull/1833)) * Throw understandable exception when using widgets with the `MapView` or `MapSurface` and not specifying `MapInitOptions.MapOptions.contextMode = ContextMode.SHARED` preventing hard-catching runtime crashes or artifacts. ([1834](https://github.com/mapbox/mapbox-maps-android/pull/1834)) -* Fix immediate camera animation on API level 23 or below. ([1842](https://github.com/mapbox/mapbox-maps-android/pull/1842)) * Fix an issue where location updates were not provided on correct thread/looper. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) * [telemetry] Dispatch location updates as a location event when the app is moving to background. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) * Fix `LocationEngine` to support multiple concurrent clients. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) @@ -26,6 +26,8 @@ Mapbox welcomes participation and contributions from everyone. * Update gl-native to v10.10.0-rc.1 and common to v23.2.0-rc.2. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) * Remove `mapbox-android-core` dependency, it is now part of Mapbox Common library. **NOTE:**: You need to remove any explicit dependency declaration to `com.mapbox.mapboxsdk:mapbox-android-core:` from the project to avoid duplicated class definition errors related to location APIs. ([1836](https://github.com/mapbox/mapbox-maps-android/pull/1836)) +* Fix immediate camera animation on API level 23 or below. ([1842](https://github.com/mapbox/mapbox-maps-android/pull/1842)) + # 10.9.1 November 7, 2022 diff --git a/extension-localization/README.md b/extension-localization/README.md index ae2417b9bd..bed59e99ec 100644 --- a/extension-localization/README.md +++ b/extension-localization/README.md @@ -31,7 +31,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.extension:maps-localization:10.10.0-beta.1' + implementation 'com.mapbox.extension:maps-localization:10.10.0-rc.1' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index 1c17813508..ed8af9dafe 100644 --- a/extension-style/README.md +++ b/extension-style/README.md @@ -32,7 +32,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.extension:maps-style:10.10.0-beta.1' + implementation 'com.mapbox.extension:maps-style:10.10.0-rc.1' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index edb0f5caa5..981a9f845b 100644 --- a/plugin-animation/README.md +++ b/plugin-animation/README.md @@ -34,7 +34,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-animation:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:10.10.0-rc.1' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index b90255371e..5d54d2f500 100644 --- a/plugin-annotation/README.md +++ b/plugin-annotation/README.md @@ -30,7 +30,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-annotation:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-annotation:10.10.0-rc.1' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index 92ab23d618..a7cc27219d 100644 --- a/plugin-attribution/README.md +++ b/plugin-attribution/README.md @@ -33,7 +33,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-attribution:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-attribution:10.10.0-rc.1' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index 3190480154..31a7586300 100644 --- a/plugin-compass/README.md +++ b/plugin-compass/README.md @@ -32,9 +32,9 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-compass:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-compass:10.10.0-rc.1' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:10.10.0-rc.1' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index e593141421..4da0a8b7ea 100644 --- a/plugin-gestures/README.md +++ b/plugin-gestures/README.md @@ -30,9 +30,9 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-gestures:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-gestures:10.10.0-rc.1' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:10.10.0-rc.1' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index 70bdf25dc4..8a5674bc1b 100644 --- a/plugin-lifecycle/README.md +++ b/plugin-lifecycle/README.md @@ -30,7 +30,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-lifecycle:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-lifecycle:10.10.0-rc.1' // Make sure the version of appcompat is 1.3.0+ implementation 'androidx.appcompat:appcompat:1.3.0' } diff --git a/plugin-locationcomponent/README.md b/plugin-locationcomponent/README.md index 52e2e9d214..e577968827 100644 --- a/plugin-locationcomponent/README.md +++ b/plugin-locationcomponent/README.md @@ -32,7 +32,7 @@ allprojects { } // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-locationcomponent:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:10.10.0-rc.1' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index 1937df6f91..fb72ecc6bf 100644 --- a/plugin-logo/README.md +++ b/plugin-logo/README.md @@ -30,7 +30,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-logo:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-logo:10.10.0-rc.1' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index a731b35911..971096a112 100644 --- a/plugin-scalebar/README.md +++ b/plugin-scalebar/README.md @@ -32,7 +32,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-scalebar:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-scalebar:10.10.0-rc.1' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index 7d4d62003f..86bd93e178 100644 --- a/plugin-viewport/README.md +++ b/plugin-viewport/README.md @@ -50,7 +50,7 @@ allprojects { } // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-viewport:10.10.0-beta.1' + implementation 'com.mapbox.plugin:maps-viewport:10.10.0-rc.1' } ```