Skip to content

Commit 538c6af

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (124.0.20240201050339)
1 parent d4d1cd8 commit 538c6af

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-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 = "741c606c2ce16ce8e10ac341f746b00a33b30487cb313805ab6ad320732d795d"
5-
let version = "124.0.20240131050340"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240131050340/artifacts/public/build/MozillaRustComponents.xcframework.zip"
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"
77

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

3131
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,7 @@ public enum Suggestion {
702702
case wikipedia(title: String, url: String, icon: [UInt8]?, fullKeyword: String)
703703
case amo(title: String, url: String, iconUrl: String, description: String, rating: String?, numberOfRatings: Int64, guid: String, score: Double)
704704
case yelp(url: String, title: String)
705+
case mdn(title: String, url: String, description: String, score: Double)
705706
}
706707

707708
public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
@@ -756,6 +757,13 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
756757
title: try FfiConverterString.read(from: &buf)
757758
)
758759

760+
case 6: return .mdn(
761+
title: try FfiConverterString.read(from: &buf),
762+
url: try FfiConverterString.read(from: &buf),
763+
description: try FfiConverterString.read(from: &buf),
764+
score: try FfiConverterDouble.read(from: &buf)
765+
)
766+
759767
default: throw UniffiInternalError.unexpectedEnumCase
760768
}
761769
}
@@ -813,6 +821,14 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
813821
FfiConverterString.write(url, into: &buf)
814822
FfiConverterString.write(title, into: &buf)
815823

824+
825+
case let .mdn(title,url,description,score):
826+
writeInt(&buf, Int32(6))
827+
FfiConverterString.write(title, into: &buf)
828+
FfiConverterString.write(url, into: &buf)
829+
FfiConverterString.write(description, into: &buf)
830+
FfiConverterDouble.write(score, into: &buf)
831+
816832
}
817833
}
818834
}
@@ -840,6 +856,7 @@ public enum SuggestionProvider {
840856
case wikipedia
841857
case amo
842858
case yelp
859+
case mdn
843860
}
844861

845862
public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
@@ -859,6 +876,8 @@ public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
859876

860877
case 5: return .yelp
861878

879+
case 6: return .mdn
880+
862881
default: throw UniffiInternalError.unexpectedEnumCase
863882
}
864883
}
@@ -886,6 +905,10 @@ public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
886905
case .yelp:
887906
writeInt(&buf, Int32(5))
888907

908+
909+
case .mdn:
910+
writeInt(&buf, Int32(6))
911+
889912
}
890913
}
891914
}

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: 1, day: 31, hour: 5, minute: 12, second: 37))
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))
2929
}
3030

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)