diff --git a/CHANGELOG.md b/CHANGELOG.md index 16b381f4a0..e37f3066f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,11 @@ Mapbox welcomes participation and contributions from everyone. # main -# 11.8.0-rc.1 + +# 11.8.0-rc.1 October 23, 2024 ## Bug fixes 🐞 * Fix an Android 12 specific bug where location puck custom animator options lambda without explicit `ValueAnimator.duration` resulted in `duration = 0`. -* Fix rare `android.content.res.Resources$NotFoundException` happening when creating a `MapView`. +* Fix a rare `android.content.res.Resources$NotFoundException` happening when creating a `MapView`. * Fix a rare `NullPointerException` happening when fling gesture event is recognized. * Fix `StandardPoiFeature.geometry` to have a concrete `Point` type instead of `Geometry` interface. * Fix a bug in `GeoJsonSource.autoMaxZoom` leading to rendering artifacts with long dotted line layers. @@ -15,6 +16,7 @@ Mapbox welcomes participation and contributions from everyone. ## Dependencies * Update gl-native to v11.8.0-rc.1 and common to v24.8.0-rc.1. + # 11.8.0-beta.1 October 14, 2024 ## Features ✨ and improvements 🏁 * Introduce `Style.STANDARD_EXPERIMENTAL` style supporting featuresets and map interactions. **Important: this style should not be used in production as the style definition on backend is a subject to change after v11.8.0 stable release!** diff --git a/extension-androidauto/README.md b/extension-androidauto/README.md index 87ccb0f673..5a7f550b8a 100644 --- a/extension-androidauto/README.md +++ b/extension-androidauto/README.md @@ -33,7 +33,7 @@ allprojects { // In your build.gradle, add the extension with your other dependencies. dependencies { // Note that the Mapbox Android Auto Extension depends on the entire Mapbox Maps SDK, it will bring the whole Mapbox Maps SDK with the same version as transitive dependency. - implementation 'com.mapbox.extension:maps-androidauto:11.8.0-beta.1' + implementation 'com.mapbox.extension:maps-androidauto:11.8.0-rc.1' } ``` diff --git a/extension-compose/README.md b/extension-compose/README.md index b3b76d6cb9..c7a7acec46 100644 --- a/extension-compose/README.md +++ b/extension-compose/README.md @@ -51,11 +51,11 @@ allprojects { // In your build.gradle, add the compose extension with your other dependencies. dependencies { - implementation 'com.mapbox.extension:maps-compose:11.8.0-beta.1' + implementation 'com.mapbox.extension:maps-compose:11.8.0-rc.1' // Pick your versions of Android Mapbox Map SDK // Note that Compose extension is compatible with Maps SDK v11.0+. - implementation 'com.mapbox.maps:android:11.8.0-beta.1' + implementation 'com.mapbox.maps:android:11.8.0-rc.1' } ``` diff --git a/extension-localization/README.md b/extension-localization/README.md index d990287a7e..fabe211cd1 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:11.8.0-beta.1' + implementation 'com.mapbox.extension:maps-localization:11.8.0-rc.1' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index 9d06db1e34..ea6e689f0f 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:11.8.0-beta.1' + implementation 'com.mapbox.extension:maps-style:11.8.0-rc.1' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index 3759627a16..ca769cb835 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:11.8.0-rc.1' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 4aeaeb1730..98892e5011 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-annotation:11.8.0-rc.1' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index 1ced70749a..91d25aa1b0 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-attribution:11.8.0-rc.1' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index aea4f8a9cc..a8d09b0516 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-compass:11.8.0-rc.1' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:11.8.0-rc.1' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index bb22e01d18..9510c4f662 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-gestures:11.8.0-rc.1' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-animation:11.8.0-rc.1' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index d18ad2d791..dd039279e4 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-lifecycle:11.8.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 a1342f871d..005edb3929 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:11.8.0-rc.1' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index b74b2eae41..0ad0276130 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-logo:11.8.0-rc.1' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index 42f2bf0d47..a760e37f75 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-scalebar:11.8.0-rc.1' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index 5e85dd7860..36a82eb1d1 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:11.8.0-beta.1' + implementation 'com.mapbox.plugin:maps-viewport:11.8.0-rc.1' } ```