Skip to content

Commit e267bb4

Browse files
OdNairypersidskiy
andauthored
Cherry-pick for 11.9.0 release (#2394)
Co-authored-by: Ivan Persidsky <[email protected]>
1 parent 515e445 commit e267bb4

File tree

14 files changed

+49
-49
lines changed

14 files changed

+49
-49
lines changed

Apps/Apps.xcworkspace/xcshareddata/swiftpm/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.

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@ Mapbox welcomes participation and contributions from everyone.
44

55
## main
66

7+
* Localize geofencing attribution dialog.
8+
9+
## 11.9.0 - 18 December, 2024
10+
11+
* Remove experimental SPI from `StyleImage`.
12+
* Promote ClipLayer to stable.
13+
* Fix the encoding/decoding key for `Rain/centerThinning` and `Snow/centerThinning`.
14+
* Update CoreMaps to 11.9.0 and Common to 24.9.0.
15+
16+
## 11.9.0-beta.1 - 9 December, 2024
17+
718
* Add a new API to disable custom resizing implementation of the MapView. To disable the custom resizing implementation, set `MapView.resizingAnimation` to `.none`.
819
* Add `to-hsla` expression support.
920

10-
## 11.9.0-beta.1
21+
## 11.9.0-beta.1 - 28 November, 2024
1122

1223
⚠️⚠️⚠️ Potentially breaking changes ⚠️⚠️⚠️
1324
* Mark `symbolElevationReference`, `symbolZOffset`, `lineTrimColor `, `lineTrimFadeRange`, `lineZOffset` as Experimental in AnnotationManagers. This is potentially breaking change, however those properties are not marked as experimental only in AnnotationManagers by mistake.

LICENSE.md

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

MapboxMaps.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |m|
22

3-
maps_version = '11.9.0-rc.1'
3+
maps_version = '11.9.0'
44

55
m.name = 'MapboxMaps'
66
m.version = maps_version
@@ -21,8 +21,8 @@ Pod::Spec.new do |m|
2121
m.source_files = 'Sources/MapboxMaps/**/*.{swift,h}'
2222
m.resource_bundles = { 'MapboxMapsResources' => ['Sources/**/*.{xcassets,strings}', 'Sources/MapboxMaps/MapboxMaps.json', 'Sources/MapboxMaps/PrivacyInfo.xcprivacy'] }
2323

24-
m.dependency 'MapboxCoreMaps', '11.9.0-rc.1'
25-
m.dependency 'MapboxCommon', '24.9.0-rc.1'
26-
m.dependency 'Turf', '4.0.0-beta.1'
24+
m.dependency 'MapboxCoreMaps', '11.9.0'
25+
m.dependency 'MapboxCommon', '24.9.0'
26+
m.dependency 'Turf', '4.0.0'
2727

2828
end

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.

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
import PackageDescription
55
import Foundation
66

7-
let coreMaps = MapsDependency.coreMaps(version: "11.9.0-rc.1")
7+
let coreMaps = MapsDependency.coreMaps(version: "11.9.0")
88

9-
let common = MapsDependency.common(version: "24.9.0-rc.1")
9+
let common = MapsDependency.common(version: "24.9.0")
1010

1111
let mapboxMapsPath: String? = nil
1212

@@ -21,7 +21,7 @@ let package = Package(
2121
targets: ["MapboxMaps"]),
2222
],
2323
dependencies: [
24-
.package(url: "https://github.com/mapbox/turf-swift.git", exact: "4.0.0-beta.1"),
24+
.package(url: "https://github.com/mapbox/turf-swift.git", exact: "4.0.0"),
2525
] + coreMaps.packageDependencies + common.packageDependencies,
2626
targets: [
2727
.target(

Sources/MapboxMaps/Documentation.docc/API Catalogs/Style.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- ``StyleDecodable``
1616
- ``StyleEncodable``
1717
- ``StyleError``
18+
- ``StyleImage``
1819
- ``TypeConversionError``
1920
- ``LightInfo``
2021
- ``LightType``

Sources/MapboxMaps/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>11.9.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>141</string>
20+
<string>142</string>
2121
</dict>
2222
</plist>

Sources/MapboxMaps/MapboxMaps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version" : "11.9.0-rc.1"
2+
"version" : "11.9.0"
33
}

Sources/MapboxMaps/Style/Generated/Layers/ClipLayer.swift

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

0 commit comments

Comments
 (0)