Skip to content

Commit e8697f9

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (125.0.20240222050253)
1 parent cf71878 commit e8697f9

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
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 = "ad4223443139cdd09ac422c419a2f234eda74776da630a681db57da72998ab21"
5-
let version = "125.0.20240221050347"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240221050347/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "4806c5a3d2f1f31cc3487028eff49d8e81fdf459c8c83ff182ed8158aa142219"
5+
let version = "125.0.20240222050253"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.125.20240222050253/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

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

3131
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 8 additions & 4 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, subjectExactMatch: Bool, icon: [UInt8]?)
965+
case yelp(url: String, title: String, icon: [UInt8]?, hasLocationSign: Bool, subjectExactMatch: Bool, locationParam: String)
966966
case mdn(title: String, url: String, description: String, score: Double)
967967
case weather(score: Double)
968968
}
@@ -1017,8 +1017,10 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10171017
case 5: return .yelp(
10181018
url: try FfiConverterString.read(from: &buf),
10191019
title: try FfiConverterString.read(from: &buf),
1020+
icon: try FfiConverterOptionSequenceUInt8.read(from: &buf),
1021+
hasLocationSign: try FfiConverterBool.read(from: &buf),
10201022
subjectExactMatch: try FfiConverterBool.read(from: &buf),
1021-
icon: try FfiConverterOptionSequenceUInt8.read(from: &buf)
1023+
locationParam: try FfiConverterString.read(from: &buf)
10221024
)
10231025

10241026
case 6: return .mdn(
@@ -1084,12 +1086,14 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
10841086
FfiConverterDouble.write(score, into: &buf)
10851087

10861088

1087-
case let .yelp(url,title,subjectExactMatch,icon):
1089+
case let .yelp(url,title,icon,hasLocationSign,subjectExactMatch,locationParam):
10881090
writeInt(&buf, Int32(5))
10891091
FfiConverterString.write(url, into: &buf)
10901092
FfiConverterString.write(title, into: &buf)
1091-
FfiConverterBool.write(subjectExactMatch, into: &buf)
10921093
FfiConverterOptionSequenceUInt8.write(icon, into: &buf)
1094+
FfiConverterBool.write(hasLocationSign, into: &buf)
1095+
FfiConverterBool.write(subjectExactMatch, into: &buf)
1096+
FfiConverterString.write(locationParam, into: &buf)
10931097

10941098

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

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)