Skip to content

Commit 9d23801

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (124.0.20240202050230)
1 parent 538c6af commit 9d23801

File tree

4 files changed

+33
-9
lines changed

4 files changed

+33
-9
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 = "17e5bdd657bcd5d0a3cd52284979c591222ccad8a56e89fa75bf180d8fe55abf"
5-
let version = "124.0.20240201050339"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240201050339/artifacts/public/build/MozillaRustComponents.xcframework.zip"
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"
77

88
// Focus xcframework
9-
let focusChecksum = "19662bb9f532a4357e451c2009213986d4b09eb4dbcd8fae4a4885aad8f07ff2"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240201050339/artifacts/public/build/FocusRustComponents.xcframework.zip"
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"
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: 1, hour: 5, minute: 15, second: 2))
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))
2929
}
3030

3131
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,9 @@ public enum SuggestApiError {
647647

648648

649649

650+
case Interrupted
651+
case Backoff(seconds: UInt64)
652+
case Network(reason: String)
650653
case Other(reason: String)
651654

652655
fileprivate static func uniffiErrorHandler(_ error: RustBuffer) throws -> Error {
@@ -665,7 +668,14 @@ public struct FfiConverterTypeSuggestApiError: FfiConverterRustBuffer {
665668

666669

667670

668-
case 1: return .Other(
671+
case 1: return .Interrupted
672+
case 2: return .Backoff(
673+
seconds: try FfiConverterUInt64.read(from: &buf)
674+
)
675+
case 3: return .Network(
676+
reason: try FfiConverterString.read(from: &buf)
677+
)
678+
case 4: return .Other(
669679
reason: try FfiConverterString.read(from: &buf)
670680
)
671681

@@ -680,8 +690,22 @@ public struct FfiConverterTypeSuggestApiError: FfiConverterRustBuffer {
680690

681691

682692

683-
case let .Other(reason):
693+
case .Interrupted:
684694
writeInt(&buf, Int32(1))
695+
696+
697+
case let .Backoff(seconds):
698+
writeInt(&buf, Int32(2))
699+
FfiConverterUInt64.write(seconds, into: &buf)
700+
701+
702+
case let .Network(reason):
703+
writeInt(&buf, Int32(3))
704+
FfiConverterString.write(reason, into: &buf)
705+
706+
707+
case let .Other(reason):
708+
writeInt(&buf, Int32(4))
685709
FfiConverterString.write(reason, into: &buf)
686710

687711
}

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: 1, hour: 5, minute: 15, second: 5))
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))
2929
}
3030

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)