Skip to content

Commit

Permalink
changelog for v11.0.0-beta.2 (#1974)
Browse files Browse the repository at this point in the history
Co-authored-by: root <root@749ec600cebe>
  • Loading branch information
mapbox-github-ci-writer-4[bot] and root authored Aug 24, 2023
1 parent 4609edf commit a49bfb2
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 23 deletions.
12 changes: 3 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
Mapbox welcomes participation and contributions from everyone.

# main
# 11.0.0-beta.2

# 11.0.0-beta.2 August 24, 2023
## Breaking changes ⚠️
* Replace style related enum classes with regular classes.
* Migrate from `android.app.AlertDialog` to `androidx.appcompat.app.AlertDialog` for attribution plugin.
Expand All @@ -23,14 +24,6 @@ Mapbox welcomes participation and contributions from everyone.
* Enable offline support for the Standard style.
* Add wireframe rendering debug feature `MapDebugOptions.LAYERS3_DWIREFRAME` and `MapDebugOptions.LAYERS2_DWIREFRAME`.

## Bug fixes 🐞
* Fix the bug when anchor was not reset after gestures leading to an unexpected map camera animation result with incorrect `CameraState.center`.
* Fix a rounding error when point lies at the edge of the screen by using `rountToInt` for limiting `MapboxMap#pixelsForCoordinates` to the bounds of MapView.
* Fix Tileset descriptor resolving on network error. The issue prevented the downloading of style and tilepacks in case of a network error.
* Avoid excessive relayout of the symbol layer when no properties depend on the image changes. This fix eliminates the symbol layer flickering when styles are switched.
* Don't emit `MapLoadingError` if an offline tilepack for 3D landmarks has no tiles.
* Fix a bug where the `cameraForGeometry` method returned incorrect values for the globe projection.

## Dependencies
Update dependencies:

Expand All @@ -40,6 +33,7 @@ Update dependencies:
| gl-native | 11.0.0-beta.2 | 11.0.0-beta.3 |
| common | 24.0.0-beta.2 | 24.0.0-beta.3 |


# 11.0.0-beta.1 August 2, 2023
## Breaking changes ⚠️
* Remove deprecated `GeoJsonSource` public constructor, builder should be used instead.
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.0.0-beta.1'
implementation 'com.mapbox.extension:maps-localization:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.extension:maps-style:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-animation:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-annotation:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-attribution:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-compass:11.0.0-beta.2'
// Mapbox Maps Compass Plugin depends on the Mapbox Maps Animation Plugin
implementation 'com.mapbox.plugin:maps-animation:11.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-animation:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-gestures:11.0.0-beta.2'
// Mapbox Maps Gestures Plugin depends on the Mapbox Maps Animation Plugin
implementation 'com.mapbox.plugin:maps-animation:11.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-animation:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-lifecycle:11.0.0-beta.2'
// 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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-locationcomponent:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-logo:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-scalebar:11.0.0-beta.2'
}
```

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.0.0-beta.1'
implementation 'com.mapbox.plugin:maps-viewport:11.0.0-beta.2'
}
```

Expand Down

0 comments on commit a49bfb2

Please sign in to comment.