Skip to content

Commit c53e3cc

Browse files
github-actions[bot]Firefox Sync Engineering
andauthored
Auto update with latest AS Release v93.0.1 (#49)
* Updates Package.swift with v93.0.1 release * Version 93.0.1 Co-authored-by: Firefox Sync Engineering <[email protected]>
1 parent 6f813d2 commit c53e3cc

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// swift-tools-version:5.4
22
import PackageDescription
33

4-
let checksum = "b0bfb2bf91bf52978b8f0450456a4e9b2f7d346d635b0ac7f743709e6eaa98cb"
5-
let version = "v93.0.0"
4+
let checksum = "ee0c516ff8ddb0050c8e0daffd640c2b2cc01441cd081e6c46002e2f0324dc9c"
5+
let version = "v93.0.1"
66
let url = "https://github.com/mozilla/application-services/releases/download/\(version)/MozillaRustComponents.xcframework.zip"
77

88
let package = Package(

swift-source/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension GleanMetrics {
2222
// Intentionally left private, no external user can instantiate a new global object.
2323
}
2424

25-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2022, month: 4, day: 14, hour: 15, minute: 6, second: 43))
25+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2022, month: 4, day: 21, hour: 15, minute: 6, second: 37))
2626
}
2727

2828
enum NimbusEvents {

swift-source/Nimbus/Collections+.swift

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,17 @@ public extension Array where Element == Bundle {
9696
return nil
9797
}
9898
}
99+
100+
/// Convenience extensions to make working elements coming from the `Variables`
101+
/// object slightly easier/regular.
102+
extension String {
103+
func map<V>(_ transform: (Self) throws -> V?) rethrows -> V? {
104+
return try transform(self)
105+
}
106+
}
107+
108+
extension Variables {
109+
func map<V>(_ transform: (Self) throws -> V) rethrows -> V {
110+
return try transform(self)
111+
}
112+
}

0 commit comments

Comments
 (0)