Skip to content

Commit a276a45

Browse files
github-actions[bot]Firefox Sync Engineering
andauthored
Auto update with latest AS Release v91.1.0 (#42)
* Updates Package.swift with v91.1.0 release * Version 91.1.0 Co-authored-by: Firefox Sync Engineering <[email protected]>
1 parent 2adf48c commit a276a45

19 files changed

+717
-389
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// swift-tools-version:5.4
22
import PackageDescription
33

4-
let checksum = "6e87f8efdc1d4f173d0ecf3e983621c90447852ca8d94feb2e758306bdce17fb"
5-
let version = "v91.0.1"
4+
let checksum = "16545b8edb256f06ca9f37e9da233ed4324d4a5545f406603b9150208f9290ce"
5+
let version = "v91.1.0"
66
let url = "https://github.com/mozilla/application-services/releases/download/\(version)/MozillaRustComponents.xcframework.zip"
77

88
let package = Package(

swift-source/FxAClient/MZKeychain/KeychainItemAccessibility.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ public enum MZKeychainItemAccessibility {
100100
return key
101101
}
102102
}
103-
104103
return nil
105104
}
106105
}

swift-source/FxAClient/MZKeychain/KeychainWrapper.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ open class MZKeychainWrapper {
9595

9696
// Remove accessibility attribute
9797
keychainQueryDictionary.removeValue(forKey: SecAttrAccessible)
98-
9998
// Limit search results to one
10099
keychainQueryDictionary[SecMatchLimit] = kSecMatchLimitOne
101100

@@ -375,7 +374,6 @@ open class MZKeychainWrapper {
375374
return false
376375
}
377376
}
378-
379377
/// Remove all keychain data, including data not added through keychain wrapper.
380378
///
381379
/// - Warning: This may remove custom keychain entries you did not add via SwiftKeychainWrapper.
@@ -396,7 +394,6 @@ open class MZKeychainWrapper {
396394
@discardableResult private class func deleteKeychainSecClass(_ secClass: AnyObject) -> Bool {
397395
let query = [SecClass: secClass]
398396
let status: OSStatus = SecItemDelete(query as CFDictionary)
399-
400397
if status == errSecSuccess {
401398
return true
402399
} else {
@@ -413,7 +410,6 @@ open class MZKeychainWrapper {
413410
if let accessibility = accessibility {
414411
keychainQueryDictionary[SecAttrAccessible] = accessibility.keychainAttrValue
415412
}
416-
417413
// Update
418414
let status: OSStatus = SecItemUpdate(keychainQueryDictionary as CFDictionary, updateDictionary as CFDictionary)
419415

@@ -441,7 +437,6 @@ open class MZKeychainWrapper {
441437
if let accessibility = accessibility {
442438
keychainQueryDictionary[SecAttrAccessible] = accessibility.keychainAttrValue
443439
}
444-
445440
// Set the keychain access group if defined
446441
if let accessGroup = self.accessGroup {
447442
keychainQueryDictionary[SecAttrAccessGroup] = accessGroup

swift-source/FxAClient/MZKeychain/KeychainWrapperSubscript.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,20 @@ public extension MZKeychainWrapper {
9393
if let value = bool(forKey: key.rawValue) {
9494
return value
9595
}
96-
9796
return nil
9897
}
9998

10099
func integer(forKey key: Key) -> Int? {
101100
if let value = integer(forKey: key.rawValue) {
102101
return value
103102
}
104-
105103
return nil
106104
}
107105

108106
func float(forKey key: Key) -> Float? {
109107
if let value = float(forKey: key.rawValue) {
110108
return value
111109
}
112-
113110
return nil
114111
}
115112

@@ -127,7 +124,6 @@ public extension MZKeychainWrapper {
127124
if let value = double(forKey: key.rawValue) {
128125
return value
129126
}
130-
131127
return nil
132128
}
133129

swift-source/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension GleanMetrics {
2222
// Intentionally left private, no external user can instantiate a new global object.
2323
}
2424

25-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2022, month: 2, day: 3, hour: 18, minute: 8, second: 21))
25+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2022, month: 2, day: 12, hour: 15, minute: 6, second: 39))
2626
}
2727

2828
enum NimbusEvents {

0 commit comments

Comments
 (0)