Skip to content

Commit 3647099

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (127.0.20240507050248)
1 parent 1286f7d commit 3647099

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
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 = "33b578605914d25cbf0b6921ac28173c409ff29f473606fe9cd7bc33e579c7ec"
5-
let version = "127.0.20240504050247"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.127.20240504050247/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "ab619dc82c48018a87a0341071c827c73ae29656ac307e1f3951fa96c977381b"
5+
let version = "127.0.20240507050248"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.127.20240507050248/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "cbafeb387778c612dbdbb27e05e93592f8d3685f2d30bdbb6982ac0337f45f6b"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.127.20240504050247/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "ed52c84604591ea2addf51fc2bee74c38b93cecdb75698b226d5fdf11693abf9"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.127.20240507050248/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: 2024, month: 5, day: 4, hour: 5, minute: 13, second: 8))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 5, day: 7, hour: 5, minute: 14, second: 59))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -877,12 +877,14 @@ public func FfiConverterTypeSuggestGlobalConfig_lower(_ value: SuggestGlobalConf
877877
public struct SuggestIngestionConstraints {
878878
public var maxSuggestions: UInt64?
879879
public var providers: [SuggestionProvider]?
880+
public var emptyOnly: Bool
880881

881882
// Default memberwise initializers are never public by default, so we
882883
// declare one manually.
883-
public init(maxSuggestions: UInt64? = nil, providers: [SuggestionProvider]? = nil) {
884+
public init(maxSuggestions: UInt64? = nil, providers: [SuggestionProvider]? = nil, emptyOnly: Bool = false) {
884885
self.maxSuggestions = maxSuggestions
885886
self.providers = providers
887+
self.emptyOnly = emptyOnly
886888
}
887889
}
888890

@@ -896,12 +898,16 @@ extension SuggestIngestionConstraints: Equatable, Hashable {
896898
if lhs.providers != rhs.providers {
897899
return false
898900
}
901+
if lhs.emptyOnly != rhs.emptyOnly {
902+
return false
903+
}
899904
return true
900905
}
901906

902907
public func hash(into hasher: inout Hasher) {
903908
hasher.combine(maxSuggestions)
904909
hasher.combine(providers)
910+
hasher.combine(emptyOnly)
905911
}
906912
}
907913

@@ -911,13 +917,15 @@ public struct FfiConverterTypeSuggestIngestionConstraints: FfiConverterRustBuffe
911917
return
912918
try SuggestIngestionConstraints(
913919
maxSuggestions: FfiConverterOptionUInt64.read(from: &buf),
914-
providers: FfiConverterOptionSequenceTypeSuggestionProvider.read(from: &buf)
920+
providers: FfiConverterOptionSequenceTypeSuggestionProvider.read(from: &buf),
921+
emptyOnly: FfiConverterBool.read(from: &buf)
915922
)
916923
}
917924

918925
public static func write(_ value: SuggestIngestionConstraints, into buf: inout [UInt8]) {
919926
FfiConverterOptionUInt64.write(value.maxSuggestions, into: &buf)
920927
FfiConverterOptionSequenceTypeSuggestionProvider.write(value.providers, into: &buf)
928+
FfiConverterBool.write(value.emptyOnly, into: &buf)
921929
}
922930
}
923931

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: 2024, month: 5, day: 4, hour: 5, minute: 13, second: 10))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 5, day: 7, hour: 5, minute: 15, second: 1))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)