Skip to content

Commit 907540a

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (124.0.20240209050256)
1 parent 6e9e292 commit 907540a

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
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 = "a8aad8f48bcae783d020a1117dd9ab4e571cd01f2b28afcbc603e335e0729a28"
5-
let version = "124.0.20240208050312"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240208050312/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "4995846d4b8d1f55986255ec0019b8c246badabafc0b9f4ce4c614c242246c5a"
5+
let version = "124.0.20240209050256"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240209050256/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "806185b23811dc979fe30bd91511097109f986aa10b719320af13a23307cd2a6"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240208050312/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "ab0f2759ec76d5f01a9b28fc9afba60808bdafad8d71a32de012f6f726d1b1b5"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.124.20240209050256/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: 8, hour: 5, minute: 18, second: 45))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 2, day: 9, hour: 5, minute: 15, second: 55))
2929
}
3030

3131
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ public enum Suggestion {
962962
case pocket(title: String, url: String, score: Double, isTopPick: Bool)
963963
case wikipedia(title: String, url: String, icon: [UInt8]?, fullKeyword: String)
964964
case amo(title: String, url: String, iconUrl: String, description: String, rating: String?, numberOfRatings: Int64, guid: String, score: Double)
965-
case yelp(url: String, title: String, isTopPick: Bool)
965+
case yelp(url: String, title: String, isTopPick: Bool, icon: [UInt8]?)
966966
case mdn(title: String, url: String, description: String, score: Double)
967967
case weather(score: Double)
968968
}
@@ -1017,7 +1017,8 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10171017
case 5: return .yelp(
10181018
url: try FfiConverterString.read(from: &buf),
10191019
title: try FfiConverterString.read(from: &buf),
1020-
isTopPick: try FfiConverterBool.read(from: &buf)
1020+
isTopPick: try FfiConverterBool.read(from: &buf),
1021+
icon: try FfiConverterOptionSequenceUInt8.read(from: &buf)
10211022
)
10221023

10231024
case 6: return .mdn(
@@ -1083,11 +1084,12 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10831084
FfiConverterDouble.write(score, into: &buf)
10841085

10851086

1086-
case let .yelp(url,title,isTopPick):
1087+
case let .yelp(url,title,isTopPick,icon):
10871088
writeInt(&buf, Int32(5))
10881089
FfiConverterString.write(url, into: &buf)
10891090
FfiConverterString.write(title, into: &buf)
10901091
FfiConverterBool.write(isTopPick, into: &buf)
1092+
FfiConverterOptionSequenceUInt8.write(icon, into: &buf)
10911093

10921094

10931095
case let .mdn(title,url,description,score):

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

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)