From 592e1e01a0dc9f428d01a4d91cce0b6f37250739 Mon Sep 17 00:00:00 2001 From: Ankur Khandelwal Date: Wed, 13 Apr 2022 21:13:04 +0300 Subject: [PATCH] bump common to v21.2.1 and prepare release v10.4.2 (#1279) * bump-common-v21.2.1 * update readme.md files --- CHANGELOG.md | 10 ++++++++++ buildSrc/src/main/kotlin/Project.kt | 2 +- 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-overlay/README.md | 2 +- plugin-scalebar/README.md | 2 +- plugin-viewport/README.md | 2 +- 15 files changed, 26 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf5778e7d1..6f28f00fbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ Mapbox welcomes participation and contributions from everyone. * Optimize how plugins handle settings changes. Call `applySettings` only when settings value changes. ([#1189](https://github.com/mapbox/mapbox-maps-android/pull/1189)) * Add new Exception type `MapboxMapMemoryLeakException` which will be thrown when there is a leak for nativeMap. ([1193](https://github.com/mapbox/mapbox-maps-android/pull/1193)) +# 10.4.2 April 13, 2022 + +### Bug fixes 🐞 + +* [tile store] Correctly decode compressed content if loaded from the cache. ([#1279](https://github.com/mapbox/mapbox-maps-android/pull/1279)) +* [tile store] Fixed issue that prevented data blobs larger than 1 MB to be transferred via the service. ([#1279](https://github.com/mapbox/mapbox-maps-android/pull/1279)) + +## Dependencies +* Bump common to v21.2.1 ([#1279](https://github.com/mapbox/mapbox-maps-android/pull/1279)) + # 10.4.1 April 7, 2022 ## Bug fixes 🐞 diff --git a/buildSrc/src/main/kotlin/Project.kt b/buildSrc/src/main/kotlin/Project.kt index 5728630db6..fcce61b0cd 100644 --- a/buildSrc/src/main/kotlin/Project.kt +++ b/buildSrc/src/main/kotlin/Project.kt @@ -85,7 +85,7 @@ object Versions { const val mapboxJavaServices = "5.4.1" const val mapboxBase = "0.5.0" const val mapboxGlNative = "10.4.2" - const val mapboxCommon = "21.2.0" + const val mapboxCommon = "21.2.1" const val mapboxAndroidCore = "5.0.0" const val mapboxAndroidTelemetry = "8.1.0" const val androidxCore = "1.3.1" diff --git a/extension-localization/README.md b/extension-localization/README.md index d10ef5077e..b676e8ce3c 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.4.1' + implementation 'com.mapbox.extension:maps-localization:10.4.2' } ``` diff --git a/extension-style/README.md b/extension-style/README.md index 7d57ec1859..814b8dc238 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.4.1' + implementation 'com.mapbox.extension:maps-style:10.4.2' } ``` diff --git a/plugin-animation/README.md b/plugin-animation/README.md index 965305a076..84dc22fb54 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.4.1' + implementation 'com.mapbox.plugin:maps-animation:10.4.2' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 3fe93296a4..83bf5542e2 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.4.1' + implementation 'com.mapbox.plugin:maps-annotation:10.4.2' } ``` diff --git a/plugin-attribution/README.md b/plugin-attribution/README.md index cecc9ebda6..a87a5903fe 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.4.1' + implementation 'com.mapbox.plugin:maps-attribution:10.4.2' } ``` diff --git a/plugin-compass/README.md b/plugin-compass/README.md index 3c029074ca..6c25ebb24a 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.4.1' + implementation 'com.mapbox.plugin:maps-compass:10.4.2' // Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:10.4.1' + implementation 'com.mapbox.plugin:maps-animation:10.4.2' } ``` diff --git a/plugin-gestures/README.md b/plugin-gestures/README.md index 722edae11d..9992c46fba 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.4.1' + implementation 'com.mapbox.plugin:maps-gestures:10.4.2' // Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin - implementation 'com.mapbox.plugin:maps-animation:10.4.1' + implementation 'com.mapbox.plugin:maps-animation:10.4.2' } ``` diff --git a/plugin-lifecycle/README.md b/plugin-lifecycle/README.md index b59109a266..8ad58224a9 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.4.1' + implementation 'com.mapbox.plugin:maps-lifecycle:10.4.2' // 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 24dc4a52c4..bb7c6c7d91 100644 --- a/plugin-locationcomponent/README.md +++ b/plugin-locationcomponent/README.md @@ -29,7 +29,7 @@ allprojects { } // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-locationcomponent:10.4.1' + implementation 'com.mapbox.plugin:maps-locationcomponent:10.4.2' } ``` diff --git a/plugin-logo/README.md b/plugin-logo/README.md index 33fe9af0fb..8b5803b21c 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.4.1' + implementation 'com.mapbox.plugin:maps-logo:10.4.2' } ``` diff --git a/plugin-overlay/README.md b/plugin-overlay/README.md index cb9990ed9c..8b92796fb4 100644 --- a/plugin-overlay/README.md +++ b/plugin-overlay/README.md @@ -32,7 +32,7 @@ allprojects { // In the app build.gradle file dependencies { - implementation 'com.mapbox.plugin:maps-overlay:10.4.1' + implementation 'com.mapbox.plugin:maps-overlay:10.4.2' } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index e84b7070a0..4494efe64d 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.4.1' + implementation 'com.mapbox.plugin:maps-scalebar:10.4.2' } ``` diff --git a/plugin-viewport/README.md b/plugin-viewport/README.md index 2f4319e4c8..7b11206aef 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.4.1' + implementation 'com.mapbox.plugin:maps-viewport:10.4.2' } ```