Skip to content

Commit 3b8bfec

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (128.0.20240525050247)
1 parent 0ca6459 commit 3b8bfec

18 files changed

+37
-37
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 = "7f68f118bbd85cf5e06bf88218cd354b70a42a7c6d7251d02f4c978c950ac044"
5-
let version = "128.0.20240523050311"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.128.20240523050311/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "a7349e2f19a4dd304cb0ca90ce128125101fe9252ef0ffe879efe73bb8d5e7b4"
5+
let version = "128.0.20240525050247"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.128.20240525050247/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "9011327af38444da2103b464639b48ba5841aab99c8245211a967325c87eb35f"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.128.20240523050311/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "372f3b1267e1078236c1f5de03faac31433de070dfc427400448ce86d4a8e28d"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.128.20240525050247/artifacts/public/build/FocusRustComponents.xcframework.zip"
1111
let package = Package(
1212
name: "MozillaRustComponentsSwift",
1313
platforms: [.iOS(.v14)],

swift-source/all/FxAClient/FxAccountManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ open class FxAccountManager {
3838
var constellation: DeviceConstellation?
3939
var latestOAuthStateParam: String?
4040

41-
/// Instanciate the account manager.
41+
/// Instantiate the account manager.
4242
/// This class is intended to be long-lived within your app.
4343
/// `keychainAccessGroup` is especially important if you are
4444
/// using the manager in iOS App Extensions.
@@ -378,7 +378,7 @@ open class FxAccountManager {
378378
profile = nil
379379
constellation = nil
380380
accountStorage.clear()
381-
// If we cannot instanciate FxA something is *really* wrong, crashing is a valid option.
381+
// If we cannot instantiate FxA something is *really* wrong, crashing is a valid option.
382382
account = createAccount()
383383
DispatchQueue.main.async {
384384
NotificationCenter.default.post(

swift-source/all/FxAClient/MZKeychain/KeychainWrapper.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ open class MZKeychainWrapper {
332332
return removeObject(forKey: key, withAccessibility: accessibility, isSynchronizable: isSynchronizable)
333333
}
334334

335-
/// Remove an object associated with a specified key. If re-using a key but with a different accessibility, first remove the previous key value using removeObjectForKey(:withAccessibility) using the same accessibilty it was saved with.
335+
/// Remove an object associated with a specified key. If re-using a key but with a different accessibility, first remove the previous key value using removeObjectForKey(:withAccessibility) using the same accessibility it was saved with.
336336
///
337337
/// - parameter forKey: The key value to remove data for.
338338
/// - parameter withAccessibility: Optional accessibility level to use when looking up the keychain item.
@@ -346,7 +346,7 @@ open class MZKeychainWrapper {
346346
return status == errSecSuccess
347347
}
348348

349-
/// Remove all keychain data added through KeychainWrapper. This will only delete items matching the currnt ServiceName and AccessGroup if one is set.
349+
/// Remove all keychain data added through KeychainWrapper. This will only delete items matching the current ServiceName and AccessGroup if one is set.
350350
@discardableResult open func removeAllKeys() -> Bool {
351351
// Setup dictionary to access keychain and specify we are using a generic password (rather than a certificate, internet password, etc)
352352
var keychainQueryDictionary: [String: Any] = [SecClass: kSecClassGenericPassword]

swift-source/all/FxAClient/PersistedFirefoxAccount.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ class PersistedFirefoxAccount {
3232
self.init(inner: FirefoxAccount(config: config))
3333
}
3434

35-
/// Registers a persistance callback. The callback will get called every time
35+
/// Registers a persistence callback. The callback will get called every time
3636
/// the `FxAccounts` state needs to be saved. The callback must
3737
/// persist the passed string in a secure location (like the keychain).
3838
public func registerPersistCallback(_ cb: PersistCallback) {
3939
persistCallback = cb
4040
}
4141

42-
/// Unregisters a persistance callback.
42+
/// Unregisters a persistence callback.
4343
public func unregisterPersistCallback() {
4444
persistCallback = nil
4545
}

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: 2024, month: 5, day: 23, hour: 5, minute: 21, second: 42))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 5, day: 25, hour: 5, minute: 20, second: 47))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Logins/LoginsStorage.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ typealias LoginsStoreError = LoginsApiError
1010

1111
/*
1212
** We probably should have this class go away eventually as it's really only a thin wrapper
13-
* similar to its kotlin equiavlent, however the only thing preventing this from being removed is
13+
* similar to its kotlin equivalents, however the only thing preventing this from being removed is
1414
* the queue.sync which we should be moved over to the consumer side of things
1515
*/
1616
open class LoginsStorage {

swift-source/all/Nimbus/Collections+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public extension Dictionary {
3131

3232
func mergeWith(_ defaults: [Key: Value], _ valueMerger: ((Value, Value) -> Value)? = nil) -> [Key: Value] {
3333
guard let valueMerger = valueMerger else {
34-
return merging(defaults, uniquingKeysWith: { overide, _ in overide })
34+
return merging(defaults, uniquingKeysWith: { override, _ in override })
3535
}
3636

3737
return merging(defaults, uniquingKeysWith: valueMerger)

swift-source/all/Nimbus/FeatureVariables.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public protocol Variables {
4444
/// Returns the whole variables object as a string map
4545
/// will return `nil` if it cannot be converted
4646
/// - Note: This function will omit any variables that could not be converted to strings
47-
/// - Returns: a `[String:String]` dictonary representing the whole variables object
47+
/// - Returns: a `[String:String]` dictionary representing the whole variables object
4848
func asStringMap() -> [String: String]?
4949

5050
/// Finds a integer typed value for this key. If none exists, `nil` is returned.
@@ -63,7 +63,7 @@ public protocol Variables {
6363
/// Returns the whole variables object as an Int map
6464
/// will return `nil` if it cannot be converted
6565
/// - Note: This function will omit any variables that could not be converted to Ints
66-
/// - Returns: a `[String:Int]` dictonary representing the whole variables object
66+
/// - Returns: a `[String:Int]` dictionary representing the whole variables object
6767
func asIntMap() -> [String: Int]?
6868

6969
/// Finds a boolean typed value for this key. If none exists, `nil` is returned.
@@ -82,7 +82,7 @@ public protocol Variables {
8282
/// Returns the whole variables object as a boolean map
8383
/// will return `nil` if it cannot be converted
8484
/// - Note: This function will omit any variables that could not be converted to booleans
85-
/// - Returns: a `[String:Bool]` dictonary representing the whole variables object
85+
/// - Returns: a `[String:Bool]` dictionary representing the whole variables object
8686
func asBoolMap() -> [String: Bool]?
8787

8888
/// Uses `getString(key: String)` to find the name of a drawable resource. If no value for `key`
@@ -135,7 +135,7 @@ public protocol Variables {
135135
/// Returns the whole variables object as a variables map
136136
/// will return `nil` if it cannot be converted
137137
/// - Note: This function will omit any variables that could not be converted to a class representing variables
138-
/// - Returns: a `[String:Variables]` dictonary representing the whole variables object
138+
/// - Returns: a `[String:Variables]` dictionary representing the whole variables object
139139
func asVariablesMap() -> [String: Variables]?
140140
}
141141

swift-source/all/Nimbus/Nimbus.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ extension Nimbus: FeaturesInterface {
120120

121121
func postEnrollmentCalculation(_ events: [EnrollmentChangeEvent]) {
122122
// We need to update the experiment enrollment annotations in Glean
123-
// regardless of whether we recieved any events. Calling the
123+
// regardless of whether we received any events. Calling the
124124
// `setExperimentActive` function multiple times with the same
125125
// experiment id is safe so nothing bad should happen in case we do.
126126
let experiments = getActiveExperiments()

swift-source/all/Nimbus/NimbusApi.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public let remoteSettingsCollection = "nimbus-mobile-experiments"
247247
public let remoteSettingsPreviewCollection = "nimbus-preview"
248248

249249
/// Name, channel and specific context of the app which should agree with what is specified in Experimenter.
250-
/// The specifc context is there to capture any context that the SDK doesn't need to be explictly aware of.
250+
/// The specific context is there to capture any context that the SDK doesn't need to be explicitly aware of.
251251
///
252252
public struct NimbusAppSettings {
253253
public init(appName: String, channel: String, customTargetingAttributes: [String: Any] = [String: Any]()) {

0 commit comments

Comments
 (0)