Skip to content

Commit c06a191

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (124.0.20240203050301)
1 parent 9d23801 commit c06a191

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

Package.swift

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

4-
let checksum = "5e43d3b7e127d2ea5114c7fb9d05bbbab9109ab53310d69b17ebfa8945c84242"
5-
let version = "124.0.20240202050230"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240202050230/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "f55226b3a31ad86436c5e001efa3ac34a437195c6f929932946384b75e6f6349"
5+
let version = "124.0.20240203050301"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240203050301/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "d084559f6e7664ed067cc7b33b296dc47e033c3d96182ff1c6c78813de08bf41"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240202050230/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "1ae0c5cb6e33ed5af204774fc7f2f481289b7cd1f632bd5e62a6840469bcb279"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240203050301/artifacts/public/build/FocusRustComponents.xcframework.zip"
1111
let package = Package(
1212
name: "MozillaRustComponentsSwift",
1313
platforms: [.iOS(.v14)],

swift-source/all/Generated/Metrics/Metrics.swift

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

28-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 2, hour: 5, minute: 20, second: 49))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 3, hour: 5, minute: 16, second: 47))
2929
}
3030

3131
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,7 @@ public enum Suggestion {
727727
case amo(title: String, url: String, iconUrl: String, description: String, rating: String?, numberOfRatings: Int64, guid: String, score: Double)
728728
case yelp(url: String, title: String)
729729
case mdn(title: String, url: String, description: String, score: Double)
730+
case weather(score: Double)
730731
}
731732

732733
public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
@@ -788,6 +789,10 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
788789
score: try FfiConverterDouble.read(from: &buf)
789790
)
790791

792+
case 7: return .weather(
793+
score: try FfiConverterDouble.read(from: &buf)
794+
)
795+
791796
default: throw UniffiInternalError.unexpectedEnumCase
792797
}
793798
}
@@ -853,6 +858,11 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
853858
FfiConverterString.write(description, into: &buf)
854859
FfiConverterDouble.write(score, into: &buf)
855860

861+
862+
case let .weather(score):
863+
writeInt(&buf, Int32(7))
864+
FfiConverterDouble.write(score, into: &buf)
865+
856866
}
857867
}
858868
}
@@ -881,6 +891,7 @@ public enum SuggestionProvider {
881891
case amo
882892
case yelp
883893
case mdn
894+
case weather
884895
}
885896

886897
public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
@@ -902,6 +913,8 @@ public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
902913

903914
case 6: return .mdn
904915

916+
case 7: return .weather
917+
905918
default: throw UniffiInternalError.unexpectedEnumCase
906919
}
907920
}
@@ -933,6 +946,10 @@ public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
933946
case .mdn:
934947
writeInt(&buf, Int32(6))
935948

949+
950+
case .weather:
951+
writeInt(&buf, Int32(7))
952+
936953
}
937954
}
938955
}

swift-source/focus/Generated/Metrics/Metrics.swift

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

28-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 2, hour: 5, minute: 20, second: 53))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 3, hour: 5, minute: 16, second: 50))
2929
}
3030

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)