Skip to content

Commit 4a77bac

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (142.0.20250628050320)
1 parent c991ccf commit 4a77bac

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-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 = "e2122dd10b2e10da62e784c95d1647a6f0e0d997d64311b669d9f72c368217c2"
5-
let version = "142.0.20250627050304"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250627050304/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "810a5d18c8a2bb9450daa1b39dd3f6e9d15c6a18a8dd0d6ba4a148e3dfc2e0a9"
5+
let version = "142.0.20250628050320"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250628050320/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "c306c7297b797385fbb04b637dde2c66729fe9b3af8fb284a941aedea4c903e4"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250627050304/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "20c10baf55ffc51929fb3f18335761b238a2b1def6758d87e99610c8fcddeb3e"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.142.20250628050320/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: 6, day: 27, hour: 5, minute: 16, second: 26))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 28, hour: 5, minute: 12, second: 36))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/logins.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -941,6 +941,8 @@ public protocol LoginStoreProtocol: AnyObject {
941941

942942
func setCheckpoint(checkpoint: String) throws
943943

944+
func shutdown() throws
945+
944946
func touch(id: String) throws
945947

946948
func update(id: String, login: LoginEntry) throws -> Login
@@ -1196,6 +1198,12 @@ open func setCheckpoint(checkpoint: String)throws {try rustCallWithError(FfiCo
11961198
}
11971199
}
11981200

1201+
open func shutdown()throws {try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
1202+
uniffi_logins_fn_method_loginstore_shutdown(self.uniffiClonePointer(),$0
1203+
)
1204+
}
1205+
}
1206+
11991207
open func touch(id: String)throws {try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
12001208
uniffi_logins_fn_method_loginstore_touch(self.uniffiClonePointer(),
12011209
FfiConverterString.lower(id),$0
@@ -2701,6 +2709,9 @@ private let initializationResult: InitializationResult = {
27012709
if (uniffi_logins_checksum_method_loginstore_set_checkpoint() != 62504) {
27022710
return InitializationResult.apiChecksumMismatch
27032711
}
2712+
if (uniffi_logins_checksum_method_loginstore_shutdown() != 24418) {
2713+
return InitializationResult.apiChecksumMismatch
2714+
}
27042715
if (uniffi_logins_checksum_method_loginstore_touch() != 37362) {
27052716
return InitializationResult.apiChecksumMismatch
27062717
}

swift-source/all/Generated/loginsFFI.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,11 @@ void uniffi_logins_fn_method_loginstore_run_maintenance(void*_Nonnull ptr, RustC
459459
void uniffi_logins_fn_method_loginstore_set_checkpoint(void*_Nonnull ptr, RustBuffer checkpoint, RustCallStatus *_Nonnull out_status
460460
);
461461
#endif
462+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_SHUTDOWN
463+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_SHUTDOWN
464+
void uniffi_logins_fn_method_loginstore_shutdown(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
465+
);
466+
#endif
462467
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_TOUCH
463468
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_TOUCH
464469
void uniffi_logins_fn_method_loginstore_touch(void*_Nonnull ptr, RustBuffer id, RustCallStatus *_Nonnull out_status
@@ -999,6 +1004,12 @@ uint16_t uniffi_logins_checksum_method_loginstore_run_maintenance(void
9991004
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_SET_CHECKPOINT
10001005
uint16_t uniffi_logins_checksum_method_loginstore_set_checkpoint(void
10011006

1007+
);
1008+
#endif
1009+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_SHUTDOWN
1010+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_SHUTDOWN
1011+
uint16_t uniffi_logins_checksum_method_loginstore_shutdown(void
1012+
10021013
);
10031014
#endif
10041015
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_TOUCH

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: 6, day: 27, hour: 5, minute: 16, second: 29))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 28, hour: 5, minute: 12, second: 39))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)