Skip to content

Commit 825e8fa

Browse files
pjleonard37Release SDK bot for Maps SDK team
andauthored
Prepare for 2.4.0-beta.1 (#743)
Co-authored-by: Release SDK bot for Maps SDK team <[email protected]>
1 parent de83e5b commit 825e8fa

File tree

7 files changed

+26
-23
lines changed

7 files changed

+26
-23
lines changed

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
### main
22

3-
* Expose current map's camera state on `CameraChanged` event.
3+
# 2.4.0-beta.1
4+
5+
* Expose current map's camera state on `CameraChanged` event. [#704](https://github.com/mapbox/mapbox-maps-flutter/pull/704)
46

57
You can now observe the map's camera updates with `onCameraChangeListener`
68

@@ -9,11 +11,12 @@ onCameraChangeListener(CameraChangedEventData data) {
911
print("CameraChangedEventData: timestamp: ${data.timestamp}, cameraState: ${data.cameraState}");
1012
}
1113
```
12-
* Print to console native Maps SDK logs in debug configuration.
14+
* Print to console native Maps SDK logs in debug configuration. [#710](https://github.com/mapbox/mapbox-maps-flutter/pull/710)
1315
Logs are proxied only in debug configuration and can be disabled completely by passing environment flag `MAPBOX_LOG_DEBUG` with false value.
14-
* Fix rare crash in `Snapshotter`. The crash could happen when creating/destroying multiple instances of `Snapshotter` in succession.
15-
* Fix a crash that occurs when the widget state is updated before the platform view is created.
16-
* Fix a crash in Snapshotter when GlyphsRasterizationMode is specified in MapSnapshotOptions.
16+
* Fix rare crash in `Snapshotter`. The crash could happen when creating/destroying multiple instances of `Snapshotter` in succession. [#728](https://github.com/mapbox/mapbox-maps-flutter/pull/728)
17+
* Fix a crash that occurs when the widget state is updated before the platform view is created. [#724](https://github.com/mapbox/mapbox-maps-flutter/pull/724)
18+
* Fix a crash in Snapshotter when GlyphsRasterizationMode is specified in MapSnapshotOptions. [#738](https://github.com/mapbox/mapbox-maps-flutter/pull/738)
19+
* Remove `ProxyBinaryMessenger`, instead setup channel with a `messageChannelSuffix`. [#715](https://github.com/mapbox/mapbox-maps-flutter/pull/715).
1720

1821
# 2.3.0
1922

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mapbox Maps SDK Flutter SDK
22

3-
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.7.0). The SDK allows developers to embed highly-customized maps using a Flutter widget on Android and iOS.
3+
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.8.0-beta.1). The SDK allows developers to embed highly-customized maps using a Flutter widget on Android and iOS.
44

55
Web and desktop are not supported.
66

@@ -113,7 +113,7 @@ To use the Maps Flutter SDK add the git dependency to the pubspec.yaml:
113113

114114
```
115115
dependencies:
116-
mapbox_maps_flutter: ^2.3.0
116+
mapbox_maps_flutter: ^2.4.0-beta.1
117117
```
118118

119119
### Configure permissions

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint
7878
}
7979

8080
dependencies {
81-
implementation "com.mapbox.maps:android:11.7.0"
81+
implementation "com.mapbox.maps:android:11.8.0-beta.1"
8282

8383
implementation "androidx.annotation:annotation:1.5.0"
8484
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"

example/ios/Podfile.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ PODS:
44
- Flutter
55
- mapbox_maps_flutter (2.3.0):
66
- Flutter
7-
- MapboxMaps (~> 11.7.0)
7+
- MapboxMaps (~> 11.8.0-beta.1)
88
- Turf (= 3.0.0)
9-
- MapboxCommon (24.7.0)
10-
- MapboxCoreMaps (11.7.0):
11-
- MapboxCommon (~> 24.7)
12-
- MapboxMaps (11.7.0):
13-
- MapboxCommon (= 24.7.0)
14-
- MapboxCoreMaps (= 11.7.0)
9+
- MapboxCommon (24.8.0-beta.1)
10+
- MapboxCoreMaps (11.8.0-beta.1):
11+
- MapboxCommon (~> 24.8.0-beta)
12+
- MapboxMaps (11.8.0-beta.1):
13+
- MapboxCommon (= 24.8.0-beta.1)
14+
- MapboxCoreMaps (= 11.8.0-beta.1)
1515
- Turf (= 3.0.0)
1616
- path_provider_foundation (0.0.1):
1717
- Flutter
@@ -49,10 +49,10 @@ EXTERNAL SOURCES:
4949
SPEC CHECKSUMS:
5050
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
5151
integration_test: 252f60fa39af5e17c3aa9899d35d908a0721b573
52-
mapbox_maps_flutter: fb6e57802405af69ecd96a9a2c7cdf9c756c4985
53-
MapboxCommon: fbc1138a831f4c1b728167c3f49701fe3a9aeed1
54-
MapboxCoreMaps: 8946c9fa51e588d594ee6ebf192d9942368abb6a
55-
MapboxMaps: bf9f775d921ed357ae642c379ebad90550cdb9de
52+
mapbox_maps_flutter: c368542bc81582e6f3e0927128295889195e7596
53+
MapboxCommon: aa06876e123fc182b8d799617211015244ae2944
54+
MapboxCoreMaps: 5aeb1c5047745f54cc8e872b8c4ca1e522f87e19
55+
MapboxMaps: feded20aa66fed2b4b87efb7300545e6957aff28
5656
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
5757
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
5858
Turf: a1604e74adce15c58462c9ae2acdbf049d5be35e

ios/mapbox_maps_flutter.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'mapbox_maps_flutter'
7-
s.version = '2.3.0'
7+
s.version = '2.4.0-beta.1'
88

99
s.summary = 'Mapbox Maps SDK Flutter Plugin.'
1010
s.description = 'An officially developed solution from Mapbox that enables use of our latest Maps SDK product.'
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.dependency 'Flutter'
1818
s.platform = :ios, '12.0'
1919

20-
s.dependency 'MapboxMaps', '~> 11.7.0'
20+
s.dependency 'MapboxMaps', '~> 11.8.0-beta.1'
2121
s.dependency 'Turf', '3.0.0'
2222

2323
# Flutter.framework does not contain a i386 slice.

lib/src/map_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class _MapWidgetState extends State<MapWidget> {
185185
'textureView': widget.textureView,
186186
'styleUri': widget.styleUri,
187187
'channelSuffix': _mapboxMapsPlatform.channelSuffix,
188-
'mapboxPluginVersion': '2.3.0',
188+
'mapboxPluginVersion': '2.4.0-beta.1',
189189
'eventTypes': _events.eventTypes.map((e) => e.index).toList(),
190190
};
191191

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mapbox_maps_flutter
22
description: Interactive, thoroughly customizable maps powered by Mapbox Maps mobile SDKs.
3-
version: 2.3.0
3+
version: 2.4.0-beta.1
44
homepage: https://github.com/mapbox/mapbox-maps-flutter
55

66
environment:

0 commit comments

Comments
 (0)