Skip to content

Commit c5a50a5

Browse files
Deprecate clear method (#309)
1 parent 637b6c4 commit c5a50a5

File tree

6 files changed

+15
-37
lines changed

6 files changed

+15
-37
lines changed

.travis.yml

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: objective-c
22
os: osx
3-
osx_image: xcode12.2
3+
osx_image: xcode12.5
44

55
before_install:
66
- gem install xcpretty
@@ -36,15 +36,12 @@ jobs:
3636
name: CocoaPods
3737
script:
3838
- pod lib lint --allow-warnings
39-
- stage: Dependency Manager Validation
40-
name: Carthage
41-
addons:
42-
homebrew:
43-
packages:
44-
- carthage
45-
update: true
46-
script:
47-
# Test two workarounds
48-
# https://github.com/Carthage/Carthage#getting-started
49-
- ./scripts/carthage-xcode-12.sh build --no-skip-current
50-
- carthage build --use-xcframeworks --no-skip-current
39+
# - stage: Dependency Manager Validation
40+
# name: Carthage
41+
# addons:
42+
# homebrew:
43+
# packages:
44+
# - carthage
45+
# update: true
46+
# script:
47+
# - carthage build --use-xcframeworks --no-skip-current

Example/ViewController.swift

-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ final class ViewController: UIViewController {
2929
private var oktaAppAuth: OktaOidc?
3030
private var authStateManager: OktaOidcStateManager? {
3131
didSet {
32-
oldValue?.clear()
3332
authStateManager?.writeToSecureStorage()
3433
}
3534
}
@@ -95,7 +94,6 @@ final class ViewController: UIViewController {
9594
}
9695

9796
@IBAction func clearTokens(_ sender: Any) {
98-
authStateManager?.clear()
9997
try? authStateManager?.removeFromSecureStorage()
10098
authStateManager = nil
10199

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,9 @@ Sample app [example](https://github.com/okta/samples-ios/blob/master/browser-sig
446446
#### clear
447447

448448
Removes the local authentication state by removing cached tokens in the keychain.
449-
**Note:** SDK deletes all keychain items accessible to an application.
449+
450+
451+
**Warning:** SDK deletes all keychain items accessible to an application.
450452

451453
```swift
452454
stateManager.clear()

Sources/OktaOidc/Common/OktaOidcStateManager.swift

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ open class OktaOidcStateManager: NSObject, NSSecureCoding {
158158
try OktaOidcKeychain.remove(key: self.clientId)
159159
}
160160

161+
@available(*, deprecated, message: "This method deletes all keychain items accessible to an application. Use `removeFromSecureStorage` to remove Okta items.")
161162
@objc public func clear() {
162163
OktaOidcKeychain.clearAll()
163164
}

Tests/OktaOidcTests/OktaOidcStateManagerTests.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,7 @@ class OktaOidcStateManagerTests: XCTestCase {
370370
storedManager?.authState.lastAuthorizationResponse.idToken,
371371
manager.authState.lastAuthorizationResponse.idToken
372372
)
373-
374-
manager.clear()
373+
375374
XCTAssertNil(OktaOidcStateManager.readFromSecureStorage(for: config))
376375
}
377376
#endif

scripts/carthage-xcode-12.sh

-19
This file was deleted.

0 commit comments

Comments
 (0)