Skip to content

Commit 4450df6

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (130.0.20240802050337)
1 parent f1cdc3f commit 4450df6

File tree

4 files changed

+10
-39
lines changed

4 files changed

+10
-39
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 = "71d63635570abf0c93e473f45136ab0170699eb2d9bcc656c9ba37a579317c3b"
5-
let version = "130.0.20240731050243"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240731050243/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "4f80bba196f6b83cb81f1bf299a7c4ba27ed0251f7a8e8a463e061b3ef4f78c8"
5+
let version = "130.0.20240802050337"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240802050337/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "77f63ef86b39948dd8184e134d884cd59ad9756b538d2d362614d71dc8c65df9"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240731050243/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "964d8dd6a3a90acaf43656aeaab061128a4f6c6ba33d8b16bd8d4742f23df8bc"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240802050337/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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// -*- mode: Swift -*-
22

3-
// AUTOGENERATED BY glean_parser v14.3.0. DO NOT EDIT. DO NOT COMMIT.
3+
// AUTOGENERATED BY glean_parser v14.4.0. DO NOT EDIT. DO NOT COMMIT.
44

55
#if canImport(Foundation)
66
import Foundation
@@ -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: 7, day: 31, hour: 5, minute: 20, second: 45))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 8, day: 2, hour: 5, minute: 15, second: 39))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -887,14 +887,12 @@ public func FfiConverterTypeSuggestGlobalConfig_lower(_ value: SuggestGlobalConf
887887

888888

889889
public struct SuggestIngestionConstraints {
890-
public var maxSuggestions: UInt64?
891890
public var providers: [SuggestionProvider]?
892891
public var emptyOnly: Bool
893892

894893
// Default memberwise initializers are never public by default, so we
895894
// declare one manually.
896-
public init(maxSuggestions: UInt64? = nil, providers: [SuggestionProvider]? = nil, emptyOnly: Bool = false) {
897-
self.maxSuggestions = maxSuggestions
895+
public init(providers: [SuggestionProvider]? = nil, emptyOnly: Bool = false) {
898896
self.providers = providers
899897
self.emptyOnly = emptyOnly
900898
}
@@ -904,9 +902,6 @@ public struct SuggestIngestionConstraints {
904902

905903
extension SuggestIngestionConstraints: Equatable, Hashable {
906904
public static func ==(lhs: SuggestIngestionConstraints, rhs: SuggestIngestionConstraints) -> Bool {
907-
if lhs.maxSuggestions != rhs.maxSuggestions {
908-
return false
909-
}
910905
if lhs.providers != rhs.providers {
911906
return false
912907
}
@@ -917,7 +912,6 @@ extension SuggestIngestionConstraints: Equatable, Hashable {
917912
}
918913

919914
public func hash(into hasher: inout Hasher) {
920-
hasher.combine(maxSuggestions)
921915
hasher.combine(providers)
922916
hasher.combine(emptyOnly)
923917
}
@@ -928,14 +922,12 @@ public struct FfiConverterTypeSuggestIngestionConstraints: FfiConverterRustBuffe
928922
public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SuggestIngestionConstraints {
929923
return
930924
try SuggestIngestionConstraints(
931-
maxSuggestions: FfiConverterOptionUInt64.read(from: &buf),
932925
providers: FfiConverterOptionSequenceTypeSuggestionProvider.read(from: &buf),
933926
emptyOnly: FfiConverterBool.read(from: &buf)
934927
)
935928
}
936929

937930
public static func write(_ value: SuggestIngestionConstraints, into buf: inout [UInt8]) {
938-
FfiConverterOptionUInt64.write(value.maxSuggestions, into: &buf)
939931
FfiConverterOptionSequenceTypeSuggestionProvider.write(value.providers, into: &buf)
940932
FfiConverterBool.write(value.emptyOnly, into: &buf)
941933
}
@@ -1492,27 +1484,6 @@ fileprivate struct FfiConverterOptionInt32: FfiConverterRustBuffer {
14921484
}
14931485
}
14941486

1495-
fileprivate struct FfiConverterOptionUInt64: FfiConverterRustBuffer {
1496-
typealias SwiftType = UInt64?
1497-
1498-
public static func write(_ value: SwiftType, into buf: inout [UInt8]) {
1499-
guard let value = value else {
1500-
writeInt(&buf, Int8(0))
1501-
return
1502-
}
1503-
writeInt(&buf, Int8(1))
1504-
FfiConverterUInt64.write(value, into: &buf)
1505-
}
1506-
1507-
public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
1508-
switch try readInt(&buf) as Int8 {
1509-
case 0: return nil
1510-
case 1: return try FfiConverterUInt64.read(from: &buf)
1511-
default: throw UniffiInternalError.unexpectedOptionalTag
1512-
}
1513-
}
1514-
}
1515-
15161487
fileprivate struct FfiConverterOptionString: FfiConverterRustBuffer {
15171488
typealias SwiftType = String?
15181489

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// -*- mode: Swift -*-
22

3-
// AUTOGENERATED BY glean_parser v14.3.0. DO NOT EDIT. DO NOT COMMIT.
3+
// AUTOGENERATED BY glean_parser v14.4.0. DO NOT EDIT. DO NOT COMMIT.
44

55
#if canImport(Foundation)
66
import Foundation
@@ -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: 7, day: 31, hour: 5, minute: 20, second: 48))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 8, day: 2, hour: 5, minute: 15, second: 42))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)