Skip to content

Commit 61a6670

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (125.0.20240305050046)
1 parent c110d9f commit 61a6670

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
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 = "21010c831f188123c16528340abda2e6a1e658771db137693ba00bdd9ab16efb"
5-
let version = "125.0.20240302000149"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240302000149/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "473e428fcbc688cfa9e2bdec2c3e1f24fae3f55b90851f9f814045dc10ec1e6e"
5+
let version = "125.0.20240305050046"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240305050046/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "a855f4ff7831fc151cb39ac17beb4604a530302f2d40716d1ce998841970d4a8"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240302000149/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "0e20fbf14fa9cae4c1397ed8485f33bc99ec5696a3f71f890b8b218b8f4520b5"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240305050046/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: 3, day: 2, hour: 0, minute: 13, second: 52))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 3, day: 5, hour: 5, minute: 22, second: 56))
2929
}
3030

3131
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -966,11 +966,11 @@ extension SuggestProviderConfig: Equatable, Hashable {}
966966
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
967967
public enum Suggestion {
968968

969-
case amp(title: String, url: String, rawUrl: String, icon: [UInt8]?, fullKeyword: String, blockId: Int64, advertiser: String, iabCategory: String, impressionUrl: String, clickUrl: String, rawClickUrl: String, score: Double)
969+
case amp(title: String, url: String, rawUrl: String, icon: [UInt8]?, iconMimetype: String?, fullKeyword: String, blockId: Int64, advertiser: String, iabCategory: String, impressionUrl: String, clickUrl: String, rawClickUrl: String, score: Double)
970970
case pocket(title: String, url: String, score: Double, isTopPick: Bool)
971-
case wikipedia(title: String, url: String, icon: [UInt8]?, fullKeyword: String)
971+
case wikipedia(title: String, url: String, icon: [UInt8]?, iconMimetype: String?, fullKeyword: String)
972972
case amo(title: String, url: String, iconUrl: String, description: String, rating: String?, numberOfRatings: Int64, guid: String, score: Double)
973-
case yelp(url: String, title: String, icon: [UInt8]?, score: Double, hasLocationSign: Bool, subjectExactMatch: Bool, locationParam: String)
973+
case yelp(url: String, title: String, icon: [UInt8]?, iconMimetype: String?, score: Double, hasLocationSign: Bool, subjectExactMatch: Bool, locationParam: String)
974974
case mdn(title: String, url: String, description: String, score: Double)
975975
case weather(score: Double)
976976
}
@@ -987,6 +987,7 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
987987
url: try FfiConverterString.read(from: &buf),
988988
rawUrl: try FfiConverterString.read(from: &buf),
989989
icon: try FfiConverterOptionSequenceUInt8.read(from: &buf),
990+
iconMimetype: try FfiConverterOptionString.read(from: &buf),
990991
fullKeyword: try FfiConverterString.read(from: &buf),
991992
blockId: try FfiConverterInt64.read(from: &buf),
992993
advertiser: try FfiConverterString.read(from: &buf),
@@ -1008,6 +1009,7 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10081009
title: try FfiConverterString.read(from: &buf),
10091010
url: try FfiConverterString.read(from: &buf),
10101011
icon: try FfiConverterOptionSequenceUInt8.read(from: &buf),
1012+
iconMimetype: try FfiConverterOptionString.read(from: &buf),
10111013
fullKeyword: try FfiConverterString.read(from: &buf)
10121014
)
10131015

@@ -1026,6 +1028,7 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10261028
url: try FfiConverterString.read(from: &buf),
10271029
title: try FfiConverterString.read(from: &buf),
10281030
icon: try FfiConverterOptionSequenceUInt8.read(from: &buf),
1031+
iconMimetype: try FfiConverterOptionString.read(from: &buf),
10291032
score: try FfiConverterDouble.read(from: &buf),
10301033
hasLocationSign: try FfiConverterBool.read(from: &buf),
10311034
subjectExactMatch: try FfiConverterBool.read(from: &buf),
@@ -1051,12 +1054,13 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10511054
switch value {
10521055

10531056

1054-
case let .amp(title,url,rawUrl,icon,fullKeyword,blockId,advertiser,iabCategory,impressionUrl,clickUrl,rawClickUrl,score):
1057+
case let .amp(title,url,rawUrl,icon,iconMimetype,fullKeyword,blockId,advertiser,iabCategory,impressionUrl,clickUrl,rawClickUrl,score):
10551058
writeInt(&buf, Int32(1))
10561059
FfiConverterString.write(title, into: &buf)
10571060
FfiConverterString.write(url, into: &buf)
10581061
FfiConverterString.write(rawUrl, into: &buf)
10591062
FfiConverterOptionSequenceUInt8.write(icon, into: &buf)
1063+
FfiConverterOptionString.write(iconMimetype, into: &buf)
10601064
FfiConverterString.write(fullKeyword, into: &buf)
10611065
FfiConverterInt64.write(blockId, into: &buf)
10621066
FfiConverterString.write(advertiser, into: &buf)
@@ -1075,11 +1079,12 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10751079
FfiConverterBool.write(isTopPick, into: &buf)
10761080

10771081

1078-
case let .wikipedia(title,url,icon,fullKeyword):
1082+
case let .wikipedia(title,url,icon,iconMimetype,fullKeyword):
10791083
writeInt(&buf, Int32(3))
10801084
FfiConverterString.write(title, into: &buf)
10811085
FfiConverterString.write(url, into: &buf)
10821086
FfiConverterOptionSequenceUInt8.write(icon, into: &buf)
1087+
FfiConverterOptionString.write(iconMimetype, into: &buf)
10831088
FfiConverterString.write(fullKeyword, into: &buf)
10841089

10851090

@@ -1095,11 +1100,12 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10951100
FfiConverterDouble.write(score, into: &buf)
10961101

10971102

1098-
case let .yelp(url,title,icon,score,hasLocationSign,subjectExactMatch,locationParam):
1103+
case let .yelp(url,title,icon,iconMimetype,score,hasLocationSign,subjectExactMatch,locationParam):
10991104
writeInt(&buf, Int32(5))
11001105
FfiConverterString.write(url, into: &buf)
11011106
FfiConverterString.write(title, into: &buf)
11021107
FfiConverterOptionSequenceUInt8.write(icon, into: &buf)
1108+
FfiConverterOptionString.write(iconMimetype, into: &buf)
11031109
FfiConverterDouble.write(score, into: &buf)
11041110
FfiConverterBool.write(hasLocationSign, into: &buf)
11051111
FfiConverterBool.write(subjectExactMatch, into: &buf)

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: 3, day: 2, hour: 0, minute: 13, second: 55))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 3, day: 5, hour: 5, minute: 22, second: 59))
2929
}
3030

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)