Skip to content

Commit e3dbf1b

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (141.0.20250606050332)
1 parent a21c3cd commit e3dbf1b

File tree

5 files changed

+53
-7
lines changed

5 files changed

+53
-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 = "2b96af42411e275f05b7bf309831bcbfdaa4a8387c6dcd8bab996214f449af2f"
5-
let version = "141.0.20250605050304"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250605050304/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "6ab2841f295dc08189e7a268f677c122c5dbc520813588d134f877d17a2535dd"
5+
let version = "141.0.20250606050332"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250606050332/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

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

2929
enum NimbusEvents {

swift-source/all/Generated/logins.swift

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -911,6 +911,8 @@ public protocol LoginStoreProtocol: AnyObject {
911911

912912
func getByBaseDomain(baseDomain: String) throws -> [Login]
913913

914+
func getCheckpoint() throws -> String?
915+
914916
func hasLoginsByBaseDomain(baseDomain: String) throws -> Bool
915917

916918
func isEmpty() throws -> Bool
@@ -921,6 +923,8 @@ public protocol LoginStoreProtocol: AnyObject {
921923

922924
func reset() throws
923925

926+
func setCheckpoint(checkpoint: String) throws
927+
924928
func touch(id: String) throws
925929

926930
func update(id: String, login: LoginEntry) throws -> Login
@@ -1085,6 +1089,13 @@ open func getByBaseDomain(baseDomain: String)throws -> [Login] {
10851089
})
10861090
}
10871091

1092+
open func getCheckpoint()throws -> String? {
1093+
return try FfiConverterOptionString.lift(try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
1094+
uniffi_logins_fn_method_loginstore_get_checkpoint(self.uniffiClonePointer(),$0
1095+
)
1096+
})
1097+
}
1098+
10881099
open func hasLoginsByBaseDomain(baseDomain: String)throws -> Bool {
10891100
return try FfiConverterBool.lift(try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
10901101
uniffi_logins_fn_method_loginstore_has_logins_by_base_domain(self.uniffiClonePointer(),
@@ -1119,6 +1130,13 @@ open func reset()throws {try rustCallWithError(FfiConverterTypeLoginsApiError_
11191130
}
11201131
}
11211132

1133+
open func setCheckpoint(checkpoint: String)throws {try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
1134+
uniffi_logins_fn_method_loginstore_set_checkpoint(self.uniffiClonePointer(),
1135+
FfiConverterString.lower(checkpoint),$0
1136+
)
1137+
}
1138+
}
1139+
11221140
open func touch(id: String)throws {try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
11231141
uniffi_logins_fn_method_loginstore_touch(self.uniffiClonePointer(),
11241142
FfiConverterString.lower(id),$0
@@ -2537,6 +2555,9 @@ private let initializationResult: InitializationResult = {
25372555
if (uniffi_logins_checksum_method_loginstore_get_by_base_domain() != 29790) {
25382556
return InitializationResult.apiChecksumMismatch
25392557
}
2558+
if (uniffi_logins_checksum_method_loginstore_get_checkpoint() != 4346) {
2559+
return InitializationResult.apiChecksumMismatch
2560+
}
25402561
if (uniffi_logins_checksum_method_loginstore_has_logins_by_base_domain() != 20011) {
25412562
return InitializationResult.apiChecksumMismatch
25422563
}
@@ -2552,6 +2573,9 @@ private let initializationResult: InitializationResult = {
25522573
if (uniffi_logins_checksum_method_loginstore_reset() != 63814) {
25532574
return InitializationResult.apiChecksumMismatch
25542575
}
2576+
if (uniffi_logins_checksum_method_loginstore_set_checkpoint() != 62504) {
2577+
return InitializationResult.apiChecksumMismatch
2578+
}
25552579
if (uniffi_logins_checksum_method_loginstore_touch() != 37362) {
25562580
return InitializationResult.apiChecksumMismatch
25572581
}

swift-source/all/Generated/loginsFFI.h

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,11 @@ RustBuffer uniffi_logins_fn_method_loginstore_get(void*_Nonnull ptr, RustBuffer
399399
RustBuffer uniffi_logins_fn_method_loginstore_get_by_base_domain(void*_Nonnull ptr, RustBuffer base_domain, RustCallStatus *_Nonnull out_status
400400
);
401401
#endif
402+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_GET_CHECKPOINT
403+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_GET_CHECKPOINT
404+
RustBuffer uniffi_logins_fn_method_loginstore_get_checkpoint(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
405+
);
406+
#endif
402407
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_HAS_LOGINS_BY_BASE_DOMAIN
403408
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_HAS_LOGINS_BY_BASE_DOMAIN
404409
int8_t uniffi_logins_fn_method_loginstore_has_logins_by_base_domain(void*_Nonnull ptr, RustBuffer base_domain, RustCallStatus *_Nonnull out_status
@@ -424,6 +429,11 @@ void uniffi_logins_fn_method_loginstore_register_with_sync_manager(void*_Nonnull
424429
void uniffi_logins_fn_method_loginstore_reset(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
425430
);
426431
#endif
432+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_SET_CHECKPOINT
433+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_SET_CHECKPOINT
434+
void uniffi_logins_fn_method_loginstore_set_checkpoint(void*_Nonnull ptr, RustBuffer checkpoint, RustCallStatus *_Nonnull out_status
435+
);
436+
#endif
427437
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_TOUCH
428438
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_FN_METHOD_LOGINSTORE_TOUCH
429439
void uniffi_logins_fn_method_loginstore_touch(void*_Nonnull ptr, RustBuffer id, RustCallStatus *_Nonnull out_status
@@ -892,6 +902,12 @@ uint16_t uniffi_logins_checksum_method_loginstore_get(void
892902
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_GET_BY_BASE_DOMAIN
893903
uint16_t uniffi_logins_checksum_method_loginstore_get_by_base_domain(void
894904

905+
);
906+
#endif
907+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_GET_CHECKPOINT
908+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_GET_CHECKPOINT
909+
uint16_t uniffi_logins_checksum_method_loginstore_get_checkpoint(void
910+
895911
);
896912
#endif
897913
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_HAS_LOGINS_BY_BASE_DOMAIN
@@ -922,6 +938,12 @@ uint16_t uniffi_logins_checksum_method_loginstore_register_with_sync_manager(voi
922938
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_RESET
923939
uint16_t uniffi_logins_checksum_method_loginstore_reset(void
924940

941+
);
942+
#endif
943+
#ifndef UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_SET_CHECKPOINT
944+
#define UNIFFI_FFIDEF_UNIFFI_LOGINS_CHECKSUM_METHOD_LOGINSTORE_SET_CHECKPOINT
945+
uint16_t uniffi_logins_checksum_method_loginstore_set_checkpoint(void
946+
925947
);
926948
#endif
927949
#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: 5, hour: 5, minute: 31, second: 30))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 6, day: 6, hour: 5, minute: 32, second: 55))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)