Skip to content

Commit fafd38b

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (138.0.20250327050436)
1 parent 88df6f0 commit fafd38b

23 files changed

+164
-272
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 = "a5cce51d6af2494b0c116442aaf0bf6c05ee32115c20366b7fa5ebdf381944d5"
5-
let version = "138.0.20250325204448"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.138.20250325204448/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "e3114964c4494245ea871568daf8963410eed7dad3d1306f4b140cf715267a4f"
5+
let version = "138.0.20250327050436"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.138.20250327050436/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "e803c645703c347a023ba96ff1c1c9a696fa93657f5eea62fc823ca8b4e059e2"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.138.20250325204448/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "b17faacdba7cc3a3eb8af066fa92393f5f06060d01c28222b84c7c58673c0200"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.138.20250327050436/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: 3, day: 25, hour: 21, minute: 13, second: 30))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 3, day: 27, hour: 5, minute: 13, second: 48))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/as_ohttp_client.swift

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ fileprivate struct FfiConverterString: FfiConverter {
477477
* Each OHTTP request-reply exchange needs to create an OhttpSession
478478
* object to manage encryption state.
479479
*/
480-
public protocol OhttpSessionProtocol: AnyObject, Sendable {
480+
public protocol OhttpSessionProtocol: AnyObject {
481481

482482
/**
483483
* Decypt and unpack the response from the Relay for the previously
@@ -512,9 +512,6 @@ open class OhttpSession: OhttpSessionProtocol, @unchecked Sendable {
512512
// TODO: We'd like this to be `private` but for Swifty reasons,
513513
// we can't implement `FfiConverter` without making this `required` and we can't
514514
// make it `required` without making it `public`.
515-
#if swift(>=5.8)
516-
@_documentation(visibility: private)
517-
#endif
518515
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
519516
self.pointer = pointer
520517
}
@@ -654,7 +651,7 @@ public func FfiConverterTypeOhttpSession_lower(_ value: OhttpSession) -> UnsafeM
654651
* A testing interface for decrypting and responding to OHTTP messages. This
655652
* should only be used for testing.
656653
*/
657-
public protocol OhttpTestServerProtocol: AnyObject, Sendable {
654+
public protocol OhttpTestServerProtocol: AnyObject {
658655

659656
/**
660657
* Return the unique encryption key config for this instance of test server.
@@ -684,9 +681,6 @@ open class OhttpTestServer: OhttpTestServerProtocol, @unchecked Sendable {
684681
// TODO: We'd like this to be `private` but for Swifty reasons,
685682
// we can't implement `FfiConverter` without making this `required` and we can't
686683
// make it `required` without making it `public`.
687-
#if swift(>=5.8)
688-
@_documentation(visibility: private)
689-
#endif
690684
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
691685
self.pointer = pointer
692686
}
@@ -994,7 +988,7 @@ public func FfiConverterTypeTestServerRequest_lower(_ value: TestServerRequest)
994988
}
995989

996990

997-
public enum OhttpError: Swift.Error {
991+
public enum OhttpError {
998992

999993

1000994

swift-source/all/Generated/autofill.swift

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ fileprivate struct FfiConverterString: FfiConverter {
481481

482482

483483

484-
public protocol StoreProtocol: AnyObject, Sendable {
484+
public protocol StoreProtocol: AnyObject {
485485

486486
func addAddress(a: UpdatableAddressFields) throws -> Address
487487

@@ -526,9 +526,6 @@ open class Store: StoreProtocol, @unchecked Sendable {
526526
// TODO: We'd like this to be `private` but for Swifty reasons,
527527
// we can't implement `FfiConverter` without making this `required` and we can't
528528
// make it `required` without making it `public`.
529-
#if swift(>=5.8)
530-
@_documentation(visibility: private)
531-
#endif
532529
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
533530
self.pointer = pointer
534531
}
@@ -1296,7 +1293,7 @@ public func FfiConverterTypeUpdatableCreditCardFields_lower(_ value: UpdatableCr
12961293
}
12971294

12981295

1299-
public enum AutofillApiError: Swift.Error {
1296+
public enum AutofillApiError {
13001297

13011298

13021299

swift-source/all/Generated/crashtest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ fileprivate struct FfiConverterString: FfiConverter {
442442
/**
443443
* An error that can be returned from Rust code.
444444
*/
445-
public enum CrashTestError: Swift.Error {
445+
public enum CrashTestError {
446446

447447

448448

swift-source/all/Generated/errorsupport.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ fileprivate struct FfiConverterString: FfiConverter {
457457

458458

459459

460-
public protocol ApplicationErrorReporter: AnyObject, Sendable {
460+
public protocol ApplicationErrorReporter: AnyObject {
461461

462462
func reportError(typeName: String, message: String)
463463

swift-source/all/Generated/fxa_client.swift

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ fileprivate struct FfiConverterString: FfiConverter {
525525
* account and accessing other services on behalf of the user.
526526

527527
*/
528-
public protocol FirefoxAccountProtocol: AnyObject, Sendable {
528+
public protocol FirefoxAccountProtocol: AnyObject {
529529

530530
/**
531531
* Create a new OAuth authorization code using the stored session token.
@@ -1157,9 +1157,6 @@ open class FirefoxAccount: FirefoxAccountProtocol, @unchecked Sendable {
11571157
// TODO: We'd like this to be `private` but for Swifty reasons,
11581158
// we can't implement `FfiConverter` without making this `required` and we can't
11591159
// make it `required` without making it `public`.
1160-
#if swift(>=5.8)
1161-
@_documentation(visibility: private)
1162-
#endif
11631160
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
11641161
self.pointer = pointer
11651162
}
@@ -2109,7 +2106,7 @@ public func FfiConverterTypeFirefoxAccount_lower(_ value: FirefoxAccount) -> Uns
21092106
* Remove this once we've migrated the firefox-android and firefox-ios code to using FxaAuthStateMachine
21102107
* https:///bugzilla.mozilla.org/show_bug.cgi?id=1867793
21112108
*/
2112-
public protocol FxaStateMachineCheckerProtocol: AnyObject, Sendable {
2109+
public protocol FxaStateMachineCheckerProtocol: AnyObject {
21132110

21142111
func checkInternalState(state: FxaStateCheckerState)
21152112

@@ -2140,9 +2137,6 @@ open class FxaStateMachineChecker: FxaStateMachineCheckerProtocol, @unchecked Se
21402137
// TODO: We'd like this to be `private` but for Swifty reasons,
21412138
// we can't implement `FfiConverter` without making this `required` and we can't
21422139
// make it `required` without making it `public`.
2143-
#if swift(>=5.8)
2144-
@_documentation(visibility: private)
2145-
#endif
21462140
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
21472141
self.pointer = pointer
21482142
}
@@ -4226,7 +4220,7 @@ extension DeviceCapability: Equatable, Hashable {}
42264220
* calling code should respond.
42274221

42284222
*/
4229-
public enum FxaError: Swift.Error {
4223+
public enum FxaError {
42304224

42314225

42324226

swift-source/all/Generated/logins.swift

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ fileprivate struct FfiConverterData: FfiConverterRustBuffer {
499499

500500

501501

502-
public protocol EncryptorDecryptor: AnyObject, Sendable {
502+
public protocol EncryptorDecryptor: AnyObject {
503503

504504
func decrypt(ciphertext: Data) throws -> Data
505505

@@ -520,9 +520,6 @@ open class EncryptorDecryptorImpl: EncryptorDecryptor, @unchecked Sendable {
520520
// TODO: We'd like this to be `private` but for Swifty reasons,
521521
// we can't implement `FfiConverter` without making this `required` and we can't
522522
// make it `required` without making it `public`.
523-
#if swift(>=5.8)
524-
@_documentation(visibility: private)
525-
#endif
526523
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
527524
self.pointer = pointer
528525
}
@@ -715,7 +712,7 @@ public func FfiConverterTypeEncryptorDecryptor_lower(_ value: EncryptorDecryptor
715712

716713

717714

718-
public protocol KeyManager: AnyObject, Sendable {
715+
public protocol KeyManager: AnyObject {
719716

720717
func getKey() throws -> Data
721718

@@ -734,9 +731,6 @@ open class KeyManagerImpl: KeyManager, @unchecked Sendable {
734731
// TODO: We'd like this to be `private` but for Swifty reasons,
735732
// we can't implement `FfiConverter` without making this `required` and we can't
736733
// make it `required` without making it `public`.
737-
#if swift(>=5.8)
738-
@_documentation(visibility: private)
739-
#endif
740734
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
741735
self.pointer = pointer
742736
}
@@ -887,7 +881,7 @@ public func FfiConverterTypeKeyManager_lower(_ value: KeyManager) -> UnsafeMutab
887881

888882

889883

890-
public protocol LoginStoreProtocol: AnyObject, Sendable {
884+
public protocol LoginStoreProtocol: AnyObject {
891885

892886
func add(login: LoginEntry) throws -> Login
893887

@@ -932,9 +926,6 @@ open class LoginStore: LoginStoreProtocol, @unchecked Sendable {
932926
// TODO: We'd like this to be `private` but for Swifty reasons,
933927
// we can't implement `FfiConverter` without making this `required` and we can't
934928
// make it `required` without making it `public`.
935-
#if swift(>=5.8)
936-
@_documentation(visibility: private)
937-
#endif
938929
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
939930
self.pointer = pointer
940931
}
@@ -1141,7 +1132,7 @@ public func FfiConverterTypeLoginStore_lower(_ value: LoginStore) -> UnsafeMutab
11411132

11421133

11431134

1144-
public protocol ManagedEncryptorDecryptorProtocol: AnyObject, Sendable {
1135+
public protocol ManagedEncryptorDecryptorProtocol: AnyObject {
11451136

11461137
}
11471138
open class ManagedEncryptorDecryptor: ManagedEncryptorDecryptorProtocol, @unchecked Sendable {
@@ -1158,9 +1149,6 @@ open class ManagedEncryptorDecryptor: ManagedEncryptorDecryptorProtocol, @unchec
11581149
// TODO: We'd like this to be `private` but for Swifty reasons,
11591150
// we can't implement `FfiConverter` without making this `required` and we can't
11601151
// make it `required` without making it `public`.
1161-
#if swift(>=5.8)
1162-
@_documentation(visibility: private)
1163-
#endif
11641152
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
11651153
self.pointer = pointer
11661154
}
@@ -1262,7 +1250,7 @@ public func FfiConverterTypeManagedEncryptorDecryptor_lower(_ value: ManagedEncr
12621250

12631251

12641252

1265-
public protocol StaticKeyManagerProtocol: AnyObject, Sendable {
1253+
public protocol StaticKeyManagerProtocol: AnyObject {
12661254

12671255
}
12681256
open class StaticKeyManager: StaticKeyManagerProtocol, @unchecked Sendable {
@@ -1279,9 +1267,6 @@ open class StaticKeyManager: StaticKeyManagerProtocol, @unchecked Sendable {
12791267
// TODO: We'd like this to be `private` but for Swifty reasons,
12801268
// we can't implement `FfiConverter` without making this `required` and we can't
12811269
// make it `required` without making it `public`.
1282-
#if swift(>=5.8)
1283-
@_documentation(visibility: private)
1284-
#endif
12851270
required public init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
12861271
self.pointer = pointer
12871272
}
@@ -1651,7 +1636,7 @@ public func FfiConverterTypeLoginEntry_lower(_ value: LoginEntry) -> RustBuffer
16511636
/**
16521637
* These are the errors returned by our public API.
16531638
*/
1654-
public enum LoginsApiError: Swift.Error {
1639+
public enum LoginsApiError {
16551640

16561641

16571642

0 commit comments

Comments
 (0)