Skip to content

Commit a21c3cd

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

File tree

4 files changed

+33
-7
lines changed

4 files changed

+33
-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 = "ad0607c429c34742b521cc385254236b955529aedf905dd34928126afff3132c"
5-
let version = "141.0.20250604050341"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250604050341/artifacts/public/build/MozillaRustComponents.xcframework.zip"
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"
77

88
// Focus xcframework
9-
let focusChecksum = "160f0c7ba0403d41152fc1f9a78d341185b6c0f2db96a6b2c835581e6f333902"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.141.20250604050341/artifacts/public/build/FocusRustComponents.xcframework.zip"
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"
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: 4, hour: 5, minute: 21, second: 1))
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))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/logins.swift

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,19 @@ public protocol LoginStoreProtocol: AnyObject {
925925

926926
func update(id: String, login: LoginEntry) throws -> Login
927927

928+
/**
929+
* Clear out locally stored logins data
930+
*
931+
* If sync is enabled, then we will try to recover the data on the next sync.
932+
*
933+
* The main reason to call this is when regenerating a new encryption key.
934+
* In that case, there's no reason to keep around the local data since it can't be decrypted.
935+
* Calling `wipe_local` is better than keeping around these un-decryptable logins, since we
936+
* might be able to recover the data via sync.
937+
*
938+
* This is a no-op for freshly created databases, so it's safe to call this whenever a key is
939+
* generated.
940+
*/
928941
func wipeLocal() throws
929942

930943
}
@@ -1122,6 +1135,19 @@ open func update(id: String, login: LoginEntry)throws -> Login {
11221135
})
11231136
}
11241137

1138+
/**
1139+
* Clear out locally stored logins data
1140+
*
1141+
* If sync is enabled, then we will try to recover the data on the next sync.
1142+
*
1143+
* The main reason to call this is when regenerating a new encryption key.
1144+
* In that case, there's no reason to keep around the local data since it can't be decrypted.
1145+
* Calling `wipe_local` is better than keeping around these un-decryptable logins, since we
1146+
* might be able to recover the data via sync.
1147+
*
1148+
* This is a no-op for freshly created databases, so it's safe to call this whenever a key is
1149+
* generated.
1150+
*/
11251151
open func wipeLocal()throws {try rustCallWithError(FfiConverterTypeLoginsApiError_lift) {
11261152
uniffi_logins_fn_method_loginstore_wipe_local(self.uniffiClonePointer(),$0
11271153
)

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: 4, hour: 5, minute: 21, second: 4))
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))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)