Skip to content

Commit 8e6a16e

Browse files
mapbox-github-ci-writer-2[bot]evil159
authored andcommitted
[Backport release/v0.18] Remove unused import (#8970)
Backport 264a698095841d9645862ab2c76099a63881b5ec from #8964. cc @mapbox/maps-ios Co-authored-by: Roman Laitarenko <roman.laitarenko@mapbox.com> GitOrigin-RevId: 265274a52a69380de6973f8191b2b511e311ec2d
1 parent d337c64 commit 8e6a16e

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ source "https://rubygems.org"
22
# Requires `force_legacy_encryption` flag support
33
gem "fastlane", ">= 2.223.0"
44
gem 'rexml', '~> 3.4.2' # Fix CVE-2025-58767
5+
gem 'nkf', '~> 0.2.0' # https://github.com/fastlane/fastlane/issues/21942
6+
gem 'abbrev', '~> 0.1.2' # https://github.com/fastlane/fastlane/issues/29183
57

68
plugins_path = File.join(File.dirname(__FILE__), '.fastlane', 'Pluginfile')
79
eval_gemfile(plugins_path) if File.exist?(plugins_path)

Gemfile.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ GEM
1818
base64
1919
nkf
2020
rexml
21+
abbrev (0.1.2)
2122
addressable (2.8.7)
2223
public_suffix (>= 2.0.2, < 7.0)
2324
artifactory (3.0.17)
@@ -237,8 +238,10 @@ PLATFORMS
237238
arm64-darwin-25
238239

239240
DEPENDENCIES
241+
abbrev (~> 0.1.2)
240242
fastlane (>= 2.223.0)
241243
fastlane-plugin-firebase_test_lab!
244+
nkf (~> 0.2.0)
242245
rexml (~> 3.4.2)
243246

244247
BUNDLED WITH

Sources/MapboxMaps/Documentation.docc/API Catalogs/MapboxMap APIs.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@
3434
- ``QueriedSourceFeature``
3535
- ``RenderedQueryOptions``
3636
- ``AnnotatedFeature``
37+
- ``QueriedRasterValues``
38+
- ``RenderedRasterQueryOptions``

Sources/MapboxMaps/Style/Types/StyleColor.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import UIKit
2-
import RegexBuilder
32

43
/// Represents a color as defined by the [Mapbox Style Spec](https://docs.mapbox.com/style-spec/reference/types/#color)
54
public struct StyleColor: Codable, Hashable, Sendable, RawRepresentable, ExpressibleByStringInterpolation {

scripts/api-compatibility-check/breakage_allowlist.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2246,3 +2246,6 @@ Func GeoJSONSource.minzoom(_:) has been removed
22462246
// CameraState and CameraOptions moved to GL Native
22472247
Struct CameraState has been removed
22482248
Struct CameraOptions has been removed
2249+
2250+
// unused import RegexBuilder was removed
2251+
Extension String has removed conformance to RegexComponent

0 commit comments

Comments
 (0)