Skip to content

Commit 4f5717f

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (142.0.20250702050314)
1 parent dc01828 commit 4f5717f

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-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 = "2a2b5f3ff987878d309f0fb665554c574e39bc08ecb451fdfa398f704f2e598a"
5-
let version = "142.0.20250701050249"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250701050249/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "f56ca6a9ad0c9b8c6feaf99a548af785024a51d24db34a4c44d24278faf7af29"
5+
let version = "142.0.20250702050314"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250702050314/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "ed86287321b37432282b4d67495ac9a1ef7a96f1fe61124dcfc1075c0dfe5f32"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250701050249/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "e1b02339b8b825e2a2c12f5cbd25d38c36528ff0da7d2a5a091d4758190c0f4c"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250702050314/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
@@ -23,7 +23,7 @@ extension GleanMetrics {
2323
// Intentionally left private, no external user can instantiate a new global object.
2424
}
2525

26-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 7, day: 1, hour: 5, minute: 13, second: 5))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 7, day: 2, hour: 5, minute: 19, second: 10))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/search.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,6 +1106,11 @@ public struct SearchEngineDefinition {
11061106
* also used to form the base telemetry id and may be extended by telemetrySuffix.
11071107
*/
11081108
public var identifier: String
1109+
/**
1110+
* Indicates the date until which the engine variant or subvariant is considered new
1111+
* (format: YYYY-MM-DD).
1112+
*/
1113+
public var isNewUntil: String?
11091114
/**
11101115
* The user visible name of the search engine.
11111116
*/
@@ -1165,6 +1170,10 @@ public struct SearchEngineDefinition {
11651170
* identifier, e.g. for saving the user's settings for the engine. It is
11661171
* also used to form the base telemetry id and may be extended by telemetrySuffix.
11671172
*/identifier: String,
1173+
/**
1174+
* Indicates the date until which the engine variant or subvariant is considered new
1175+
* (format: YYYY-MM-DD).
1176+
*/isNewUntil: String?,
11681177
/**
11691178
* The user visible name of the search engine.
11701179
*/name: String,
@@ -1199,6 +1208,7 @@ public struct SearchEngineDefinition {
11991208
self.charset = charset
12001209
self.classification = classification
12011210
self.identifier = identifier
1211+
self.isNewUntil = isNewUntil
12021212
self.name = name
12031213
self.optional = optional
12041214
self.partnerCode = partnerCode
@@ -1228,6 +1238,9 @@ extension SearchEngineDefinition: Equatable, Hashable {
12281238
if lhs.identifier != rhs.identifier {
12291239
return false
12301240
}
1241+
if lhs.isNewUntil != rhs.isNewUntil {
1242+
return false
1243+
}
12311244
if lhs.name != rhs.name {
12321245
return false
12331246
}
@@ -1257,6 +1270,7 @@ extension SearchEngineDefinition: Equatable, Hashable {
12571270
hasher.combine(charset)
12581271
hasher.combine(classification)
12591272
hasher.combine(identifier)
1273+
hasher.combine(isNewUntil)
12601274
hasher.combine(name)
12611275
hasher.combine(optional)
12621276
hasher.combine(partnerCode)
@@ -1280,6 +1294,7 @@ public struct FfiConverterTypeSearchEngineDefinition: FfiConverterRustBuffer {
12801294
charset: FfiConverterString.read(from: &buf),
12811295
classification: FfiConverterTypeSearchEngineClassification.read(from: &buf),
12821296
identifier: FfiConverterString.read(from: &buf),
1297+
isNewUntil: FfiConverterOptionString.read(from: &buf),
12831298
name: FfiConverterString.read(from: &buf),
12841299
optional: FfiConverterBool.read(from: &buf),
12851300
partnerCode: FfiConverterString.read(from: &buf),
@@ -1295,6 +1310,7 @@ public struct FfiConverterTypeSearchEngineDefinition: FfiConverterRustBuffer {
12951310
FfiConverterString.write(value.charset, into: &buf)
12961311
FfiConverterTypeSearchEngineClassification.write(value.classification, into: &buf)
12971312
FfiConverterString.write(value.identifier, into: &buf)
1313+
FfiConverterOptionString.write(value.isNewUntil, into: &buf)
12981314
FfiConverterString.write(value.name, into: &buf)
12991315
FfiConverterBool.write(value.optional, into: &buf)
13001316
FfiConverterString.write(value.partnerCode, into: &buf)

swift-source/focus/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension GleanMetrics {
2323
// Intentionally left private, no external user can instantiate a new global object.
2424
}
2525

26-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 7, day: 1, hour: 5, minute: 13, second: 8))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 7, day: 2, hour: 5, minute: 19, second: 13))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)