From 358686a69f14b9aaf33baa92eb7d8b6b197967fc Mon Sep 17 00:00:00 2001 From: "mapbox-github-ci-writer-3[bot]" <79159042+mapbox-github-ci-writer-3[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 12:07:17 +0000 Subject: [PATCH] changelog for v11.4.0 (#2496) Co-authored-by: root --- CHANGELOG.md | 3 ++- extension-androidauto/README.md | 2 +- extension-compose/README.md | 4 ++-- extension-localization/README.md | 2 +- extension-style/README.md | 2 +- plugin-animation/README.md | 2 +- plugin-annotation/README.md | 2 +- plugin-attribution/README.md | 2 +- plugin-compass/README.md | 4 ++-- plugin-gestures/README.md | 4 ++-- plugin-lifecycle/README.md | 2 +- plugin-locationcomponent/README.md | 2 +- plugin-logo/README.md | 2 +- plugin-scalebar/README.md | 2 +- plugin-viewport/README.md | 2 +- 15 files changed, 19 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e19e2257b5..b40c49a208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,8 @@ Mapbox welcomes participation and contributions from everyone. # main -# 11.4.0 +# 11.4.0 May 22, 2024 ## Breaking changes ⚠️ * [compose] Remove `locationComponentSettings` from `MapboxMap` composable function, `MapEffect` with location component API should be used instead. More compose-friendly location component API will be introduced in future releases. * [compose] Remove `TileCacheBudget(com.mapbox.maps.TileCacheBudget)` constructor and introduce `TileCacheBudget(TileCacheBudgetInMegabytes)` and `TileCacheBudget(TileCacheBudgetInTiles)` constructor instead. @@ -77,6 +77,7 @@ Mapbox welcomes participation and contributions from everyone. ## Dependencies * Update gl-native to v11.4.0 and common to v24.4.0. + # 11.4.0-rc.2 May 15, 2024 ## Breaking changes ⚠️ * [compose] `MapViewportState` properties `cameraState`, `mapViewportStatusChangedReason` and `mapViewportStatus` are null when the state is not attached to a map. diff --git a/extension-androidauto/README.md b/extension-androidauto/README.md index 4bdc2db339..219cd3bf87 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.4.0-rc.2' + implementation 'com.mapbox.extension:maps-androidauto:11.4.0' } ``` diff --git a/extension-compose/README.md b/extension-compose/README.md index 49a2571776..1a7279075a 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.4.0-rc.2' + implementation 'com.mapbox.extension:maps-compose:11.4.0' // 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.4.0-rc.2' + implementation 'com.mapbox.maps:android:11.4.0' } ``` diff --git a/extension-localization/README.md b/extension-localization/README.md index 8bb5ccb52a..947314873a 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.4.0-rc.2' + implementation 'com.mapbox.extension:maps-localization:11.4.0' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index d905d67242..97d0cb038f 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.4.0-rc.2' + implementation 'com.mapbox.extension:maps-style:11.4.0' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index 8b3c481cca..8ab75c8832 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-animation:11.4.0' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 25315a7234..48259dd821 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-annotation:11.4.0' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index 1ba63a65d5..3216f95e64 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-attribution:11.4.0' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index 746dd6a79a..87c0aff958 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-compass:11.4.0' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-animation:11.4.0' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index b2acfc65dc..1d45ef75a3 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-gestures:11.4.0' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:11.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-animation:11.4.0' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index 9d71b96ec9..9db1ee7a5f 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-lifecycle:11.4.0' // 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 36b2d76f08..b163a1b6c9 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-locationcomponent:11.4.0' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index a379a4ca18..cce784379b 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-logo:11.4.0' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index 9c97250047..7da99f6cd1 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-scalebar:11.4.0' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index 08562aaaa9..1c5eebdb14 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.4.0-rc.2' + implementation 'com.mapbox.plugin:maps-viewport:11.4.0' } ```