Skip to content

Commit

Permalink
changelog for v11.5.0-rc.1 (#2574)
Browse files Browse the repository at this point in the history
Co-authored-by: root <root@62758f61f006>
  • Loading branch information
mapbox-github-ci-writer-4[bot] and root authored Jun 20, 2024
1 parent 47857db commit 91166ec
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 19 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Mapbox welcomes participation and contributions from everyone.

# main

# 11.5.0-rc.1

# 11.5.0-rc.1 June 20, 2024
## Breaking changes ⚠️
* [compose] Make `MapboxMap.onMapClickListener` and `MapboxMap.onMapLongClickListener` nullable and default to `null`.
* [compose] Rename `ImportConfig` to `ImportConfigs`.
Expand All @@ -17,9 +18,9 @@ Mapbox welcomes participation and contributions from everyone.
## Features ✨ and improvements 🏁
* [compose] Introduce `StyleImport` composable API to be used in the `GenericStyle`, `MapStyle` and `MapboxStandardStyle`.
* [compose] Introduce `MapState` that can be hoisted to interact with map states, such as query rendered features, subscribe to map events and configure gestures settings.
* Deprecate `MapboxMap.cameraForCoordinates` suspending extension function in favour of suspend `MapboxMap.awaitCameraForCoordinates`.
* Add min/max/default values to the docs for the generated properties.
* Add asynchronous `TileStore.create().clearAmbientCache()` API that can be used for clearing all ambient cache data.
* Deprecate `MapboxMap.cameraForCoordinates` suspending extension function in favour of suspend `MapboxMap.awaitCameraForCoordinates`.
* Expose experimental `lineZOffset` and `lineOcclusionOpacity` for `LineLayer`.
* Expose experimental `modelFrontCutoff` for `ModelLayer`.
* Expose experimental `iconOcclusionOpacity` and `textOcclusionOpacity` for `SymbolLayer` and `PointAnnotationManager`.
Expand All @@ -35,6 +36,7 @@ Mapbox welcomes participation and contributions from everyone.
## Dependencies
* Update gl-native to v11.5.0-rc.1 and common to v24.5.0-rc.1.


# 11.5.0-beta.1 June 11, 2024
## Breaking changes ⚠️
* [compose] Move `Projection` to `generated` package and rename `default` values to `DEFAULT`.
Expand Down
2 changes: 1 addition & 1 deletion extension-androidauto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.0-beta.1'
implementation 'com.mapbox.extension:maps-androidauto:11.5.0-rc.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions extension-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.0-beta.1'
implementation 'com.mapbox.extension:maps-compose:11.5.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.5.0-beta.1'
implementation 'com.mapbox.maps:android:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion extension-localization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.extension:maps-localization:11.5.0-beta.1'
implementation 'com.mapbox.extension:maps-localization:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion extension-style/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.extension:maps-style:11.5.0-beta.1'
implementation 'com.mapbox.extension:maps-style:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-animation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-animation:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-animation:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-annotation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-annotation:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-annotation:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-attribution/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-attribution:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-attribution:11.5.0-rc.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions plugin-compass/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-compass:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-compass:11.5.0-rc.1'
// Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin
implementation 'com.mapbox.plugin:maps-animation:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-animation:11.5.0-rc.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions plugin-gestures/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-gestures:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-gestures:11.5.0-rc.1'
// Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin
implementation 'com.mapbox.plugin:maps-animation:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-animation:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-lifecycle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-lifecycle:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-lifecycle:11.5.0-rc.1'
// Make sure the version of appcompat is 1.3.0+
implementation 'androidx.appcompat:appcompat:1.3.0'
}
Expand Down
2 changes: 1 addition & 1 deletion plugin-locationcomponent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
}
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-locationcomponent:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-locationcomponent:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-logo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-logo:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-logo:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-scalebar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-scalebar:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-scalebar:11.5.0-rc.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin-viewport/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ allprojects {
}
// In the app build.gradle file
dependencies {
implementation 'com.mapbox.plugin:maps-viewport:11.5.0-beta.1'
implementation 'com.mapbox.plugin:maps-viewport:11.5.0-rc.1'
}
```

Expand Down

0 comments on commit 91166ec

Please sign in to comment.