Skip to content

Commit 146b143

Browse files
changelog for v11.9.0-beta.1 (#2869)
Co-authored-by: root <root@32c0ad4a20e8>
1 parent d68c5d4 commit 146b143

File tree

15 files changed

+23
-20
lines changed

15 files changed

+23
-20
lines changed

CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
Mapbox welcomes participation and contributions from everyone.
44

55
# main
6+
7+
# 11.9.0-beta.1 November 28, 2024
68
## Breaking changes ⚠️
7-
* Expose Geofencing with `com.mapbox.annotation.MapboxExperimental`.
8-
* Move geofencing classes to `com.mapbox.common.geofencing` package from `com.mapbox.common.experimental.geofencing`.
9-
* Make constructor of `GeofencingOptions`, `GeofencingEvent` and other geofencing classes holding data private. Associated `Builder()` classes should be used instead.
9+
* Expose experimental Geofencing with `com.mapbox.annotation.MapboxExperimental`.
10+
* Move experimental geofencing classes to `com.mapbox.common.geofencing` package from `com.mapbox.common.experimental.geofencing`.
11+
* Make constructor of experimental `GeofencingOptions`, `GeofencingEvent` and other geofencing classes holding data private. Associated `Builder()` classes should be used instead.
1012
* Remove experimental `MapboxMap.queryRenderedFeatures` and `MapboxMap.querySourceFeatures` that used `FeaturesetQueryTarget` as an argument.
1113

1214
## Features ✨ and improvements 🏁
@@ -55,6 +57,7 @@ Mapbox welcomes participation and contributions from everyone.
5557
## Known issues
5658
* Custom (non Mapbox-hosted) sprites could fail to load in some scenarios.
5759

60+
5861
# 11.7.3 November 19, 2024
5962
## Bug fixes 🐞
6063
* Fix map flickering on some Mali and PowerVR GPUs.

extension-androidauto/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ allprojects {
3333
// In your build.gradle, add the extension with your other dependencies.
3434
dependencies {
3535
// 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.
36-
implementation 'com.mapbox.extension:maps-androidauto:11.8.0'
36+
implementation 'com.mapbox.extension:maps-androidauto:11.9.0-beta.1'
3737
}
3838
```
3939

extension-compose/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ allprojects {
5151
5252
// In your build.gradle, add the compose extension with your other dependencies.
5353
dependencies {
54-
implementation 'com.mapbox.extension:maps-compose:11.8.0'
54+
implementation 'com.mapbox.extension:maps-compose:11.9.0-beta.1'
5555
5656
// Pick your versions of Android Mapbox Map SDK
5757
// Note that Compose extension is compatible with Maps SDK v11.0+.
58-
implementation 'com.mapbox.maps:android:11.8.0'
58+
implementation 'com.mapbox.maps:android:11.9.0-beta.1'
5959
}
6060
```
6161

extension-localization/README.md

+1-1
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:11.8.0'
34+
implementation 'com.mapbox.extension:maps-localization:11.9.0-beta.1'
3535
}
3636
```
3737

extension-style/README.md

+1-1
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:11.8.0'
35+
implementation 'com.mapbox.extension:maps-style:11.9.0-beta.1'
3636
}
3737
```
3838

plugin-animation/README.md

+1-1
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:11.8.0'
37+
implementation 'com.mapbox.plugin:maps-animation:11.9.0-beta.1'
3838
}
3939
```
4040

plugin-annotation/README.md

+1-1
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-annotation:11.8.0'
33+
implementation 'com.mapbox.plugin:maps-annotation:11.9.0-beta.1'
3434
}
3535
```
3636

plugin-attribution/README.md

+1-1
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:11.8.0'
36+
implementation 'com.mapbox.plugin:maps-attribution:11.9.0-beta.1'
3737
}
3838
```
3939

plugin-compass/README.md

+2-2
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:11.8.0'
35+
implementation 'com.mapbox.plugin:maps-compass:11.9.0-beta.1'
3636
// Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin
37-
implementation 'com.mapbox.plugin:maps-animation:11.8.0'
37+
implementation 'com.mapbox.plugin:maps-animation:11.9.0-beta.1'
3838
}
3939
```
4040

plugin-gestures/README.md

+2-2
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:11.8.0'
33+
implementation 'com.mapbox.plugin:maps-gestures:11.9.0-beta.1'
3434
// Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin
35-
implementation 'com.mapbox.plugin:maps-animation:11.8.0'
35+
implementation 'com.mapbox.plugin:maps-animation:11.9.0-beta.1'
3636
}
3737
```
3838

plugin-lifecycle/README.md

+1-1
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-lifecycle:11.8.0'
33+
implementation 'com.mapbox.plugin:maps-lifecycle:11.9.0-beta.1'
3434
// Make sure the version of appcompat is 1.3.0+
3535
implementation 'androidx.appcompat:appcompat:1.3.0'
3636
}

plugin-locationcomponent/README.md

+1-1
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-locationcomponent:11.8.0'
35+
implementation 'com.mapbox.plugin:maps-locationcomponent:11.9.0-beta.1'
3636
}
3737
```
3838

plugin-logo/README.md

+1-1
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:11.8.0'
33+
implementation 'com.mapbox.plugin:maps-logo:11.9.0-beta.1'
3434
}
3535
```
3636

plugin-scalebar/README.md

+1-1
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-scalebar:11.8.0'
35+
implementation 'com.mapbox.plugin:maps-scalebar:11.9.0-beta.1'
3636
}
3737
```
3838

plugin-viewport/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ allprojects {
5050
}
5151
// In the app build.gradle file
5252
dependencies {
53-
implementation 'com.mapbox.plugin:maps-viewport:11.8.0'
53+
implementation 'com.mapbox.plugin:maps-viewport:11.9.0-beta.1'
5454
}
5555
```
5656

0 commit comments

Comments
 (0)