Skip to content

Commit 37669ed

Browse files
authored
Update versions for v2.17.0-rc.1 (#1070)
* Update versions for v2.17.0-rc.1 * Update property type for experimental lineCutoutOpacity, lineCutoutWidth, and lineCutoutFadeWidth from layout to paint. * Fix for license generation * Revert config and license
1 parent b53137f commit 37669ed

File tree

12 files changed

+98
-100
lines changed

12 files changed

+98
-100
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Add the ability to get all annotations from an annotation manager.
55
* Add `customData` field to annotations to be able to pass user data.
66
* Add nautical miles scale bar distance unit.
7+
* Update property type for experimental `LineLayer.lineCutoutOpacity`, `LineLayer.lineCutoutWidth`, and `LineLayer.lineCutoutFadeWidth` from layout to paint.
78

89
### 2.17.0-beta.1
910

LICENSE

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

3-
Mapbox Maps for Flutter version 2.17.0-beta.1
3+
Mapbox Maps for Flutter version 2.17.0-rc.1
44
Mapbox Maps Flutter SDK
55

66
Copyright © 2022 - 2025 Mapbox, Inc. All rights reserved.
@@ -134,7 +134,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
134134

135135
## License
136136

137-
Mapbox Maps for iOS version 11.17.0-beta.1
137+
Mapbox Maps for iOS version 11.17.0-rc.1
138138
Mapbox Maps iOS SDK
139139

140140
Copyright © 2021 - 2025 Mapbox, Inc. All rights reserved.
@@ -165,7 +165,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
165165

166166
---
167167

168-
### MapboxCoreMaps,11.17.0-beta.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
168+
### MapboxCoreMaps,11.17.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
169169

170170
```
171171
Mapbox Core Maps version 11.0
@@ -1946,7 +1946,7 @@ DEALINGS IN THE SOFTWARE.
19461946

19471947
### License
19481948

1949-
Mapbox Maps for Android version 11.17.0-beta.1
1949+
Mapbox Maps for Android version 11.17.0-rc.1
19501950
Mapbox Maps Android SDK
19511951

19521952
Copyright © 2021 - 2025 Mapbox, Inc. All rights reserved.
@@ -2434,7 +2434,7 @@ License: [The Apache Software License, Version 2.0](http://www.apache.org/licens
24342434

24352435
===========================================================================
24362436

2437-
### MapboxCoreMaps,11.17.0-beta.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
2437+
### MapboxCoreMaps,11.17.0-rc.1,Mapbox ToS,Mapbox,https://www.mapbox.com/
24382438

24392439
```
24402440
Mapbox Core Maps version 11.0

README.md

Lines changed: 1 addition & 1 deletion
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.17.0-beta.1). 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.17.0-rc.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

android/build.gradle

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

6161
dependencies {
62-
implementation "com.mapbox.maps:android-ndk27:11.17.0-beta.1"
62+
implementation "com.mapbox.maps:android-ndk27:11.17.0-rc.1"
6363

6464
implementation "androidx.annotation:annotation:1.5.0"
6565
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"

example/integration_test/style/layer/line_layer_test.dart

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ void main() {
2828
slot: LayerSlot.BOTTOM,
2929
lineCap: LineCap.BUTT,
3030
lineCrossSlope: 1.0,
31-
lineCutoutFadeWidth: 1.0,
32-
lineCutoutOpacity: 1.0,
33-
lineCutoutWidth: 1.0,
3431
lineElevationReference: LineElevationReference.NONE,
3532
lineJoin: LineJoin.BEVEL,
3633
lineMiterLimit: 1.0,
@@ -42,6 +39,9 @@ void main() {
4239
lineBorderColor: Colors.red.value,
4340
lineBorderWidth: 1.0,
4441
lineColor: Colors.red.value,
42+
lineCutoutFadeWidth: 1.0,
43+
lineCutoutOpacity: 1.0,
44+
lineCutoutWidth: 1.0,
4545
lineDasharray: [1.0, 2.0],
4646
lineDepthOcclusionFactor: 1.0,
4747
lineEmissiveStrength: 1.0,
@@ -66,9 +66,6 @@ void main() {
6666
expect(layer.visibility, Visibility.NONE);
6767
expect(layer.lineCap, LineCap.BUTT);
6868
expect(layer.lineCrossSlope, 1.0);
69-
expect(layer.lineCutoutFadeWidth, 1.0);
70-
expect(layer.lineCutoutOpacity, 1.0);
71-
expect(layer.lineCutoutWidth, 1.0);
7269
expect(layer.lineElevationReference, LineElevationReference.NONE);
7370
expect(layer.lineJoin, LineJoin.BEVEL);
7471
expect(layer.lineMiterLimit, 1.0);
@@ -80,6 +77,9 @@ void main() {
8077
expect(layer.lineBorderColor, Colors.red.value);
8178
expect(layer.lineBorderWidth, 1.0);
8279
expect(layer.lineColor, Colors.red.value);
80+
expect(layer.lineCutoutFadeWidth, 1.0);
81+
expect(layer.lineCutoutOpacity, 1.0);
82+
expect(layer.lineCutoutWidth, 1.0);
8383
expect(layer.lineDasharray, [1.0, 2.0]);
8484
expect(layer.lineDepthOcclusionFactor, 1.0);
8585
expect(layer.lineEmissiveStrength, 1.0);
@@ -121,9 +121,6 @@ void main() {
121121
slot: LayerSlot.BOTTOM,
122122
lineCapExpression: ['string', 'butt'],
123123
lineCrossSlopeExpression: ['number', 1.0],
124-
lineCutoutFadeWidthExpression: ['number', 1.0],
125-
lineCutoutOpacityExpression: ['number', 1.0],
126-
lineCutoutWidthExpression: ['number', 1.0],
127124
lineElevationReferenceExpression: ['string', 'none'],
128125
lineJoinExpression: ['string', 'bevel'],
129126
lineMiterLimitExpression: ['number', 1.0],
@@ -135,6 +132,9 @@ void main() {
135132
lineBorderColorExpression: ['rgba', 255, 0, 0, 1],
136133
lineBorderWidthExpression: ['number', 1.0],
137134
lineColorExpression: ['rgba', 255, 0, 0, 1],
135+
lineCutoutFadeWidthExpression: ['number', 1.0],
136+
lineCutoutOpacityExpression: ['number', 1.0],
137+
lineCutoutWidthExpression: ['number', 1.0],
138138
lineDasharrayExpression: [
139139
'literal',
140140
[1.0, 2.0]
@@ -176,9 +176,6 @@ void main() {
176176
]);
177177
expect(layer.lineCap, LineCap.BUTT);
178178
expect(layer.lineCrossSlope, 1.0);
179-
expect(layer.lineCutoutFadeWidth, 1.0);
180-
expect(layer.lineCutoutOpacity, 1.0);
181-
expect(layer.lineCutoutWidth, 1.0);
182179
expect(layer.lineElevationReference, LineElevationReference.NONE);
183180
expect(layer.lineJoin, LineJoin.BEVEL);
184181
expect(layer.lineMiterLimit, 1.0);
@@ -190,6 +187,9 @@ void main() {
190187
expect(layer.lineBorderColorExpression, ['rgba', 255, 0, 0, 1]);
191188
expect(layer.lineBorderWidth, 1.0);
192189
expect(layer.lineColorExpression, ['rgba', 255, 0, 0, 1]);
190+
expect(layer.lineCutoutFadeWidth, 1.0);
191+
expect(layer.lineCutoutOpacity, 1.0);
192+
expect(layer.lineCutoutWidth, 1.0);
193193
expect(layer.lineDasharray, [1.0, 2.0]);
194194
expect(layer.lineDepthOcclusionFactor, 1.0);
195195
expect(layer.lineEmissiveStrength, 1.0);

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ packages:
269269
path: ".."
270270
relative: true
271271
source: path
272-
version: "2.17.0-beta.1"
272+
version: "2.17.0-rc.1"
273273
matcher:
274274
dependency: transitive
275275
description:

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.17.0-beta.1'
7+
s.version = '2.17.0-rc.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, '14.0'
1919

20-
s.dependency 'MapboxMaps', '11.17.0-beta.1'
20+
s.dependency 'MapboxMaps', '11.17.0-rc.1'
2121
s.dependency 'Turf', '4.0.0'
2222

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

ios/mapbox_maps_flutter/Package.resolved

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/mapbox_maps_flutter/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
.library(name: "mapbox-maps-flutter", targets: ["mapbox_maps_flutter"])
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/mapbox/mapbox-maps-ios.git", exact: "11.17.0-beta.1"),
15+
.package(url: "https://github.com/mapbox/mapbox-maps-ios.git", exact: "11.17.0-rc.1"),
1616
],
1717
targets: [
1818
.target(

lib/src/package_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
part of mapbox_maps_flutter;
22

3-
const String mapboxPluginVersion = '2.17.0-beta.1';
3+
const String mapboxPluginVersion = '2.17.0-rc.1';

0 commit comments

Comments
 (0)