Skip to content

Commit a13bb76

Browse files
authored
Release 2.22.1 (#662)
* Release 2.22.1 * Update Cartfile.resolved * Add missing mocks * Fix codecov glob pattern
1 parent 5a7499e commit a13bb76

File tree

8 files changed

+20
-6
lines changed

8 files changed

+20
-6
lines changed

App/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.22.0</string>
18+
<string>2.22.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleURLTypes</key>

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [2.22.1](https://github.com/auth0/Lock.swift/tree/2.22.1) (2021-04-13)
4+
[Full Changelog](https://github.com/auth0/Lock.swift/compare/2.22.0...2.22.1)
5+
6+
**Fixed**
7+
- Fix LockViewController dismissal when presented as a popup [\#647](https://github.com/auth0/Lock.swift/pull/647) ([agirault](https://github.com/agirault))
8+
39
## [2.22.0](https://github.com/auth0/Lock.swift/tree/2.22.0) (2021-03-09)
410
[Full Changelog](https://github.com/auth0/Lock.swift/compare/2.21.0...2.22.0
511

Cartfile.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github "AliSoftware/OHHTTPStubs" "9.1.0"
22
github "Quick/Nimble" "v9.0.0"
33
github "Quick/Quick" "v3.1.2"
4-
github "auth0/Auth0.swift" "1.31.0"
4+
github "auth0/Auth0.swift" "1.32.0"
55
github "auth0/JWTDecode.swift" "2.6.0"
66
github "auth0/SimpleKeychain" "0.12.2"
77
github "emaloney/CleanroomLogger" "7.0.0"

Lock/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.22.0</string>
18+
<string>2.22.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

LockTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.22.0</string>
18+
<string>2.22.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

LockTests/Utils/Mocks.swift

+8
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,14 @@ class MockWebAuth: WebAuth {
409409
self.maxAge = maxAge
410410
return self
411411
}
412+
413+
func invitationURL(_ invitationURL: URL) -> Self {
414+
return self
415+
}
416+
417+
func organization(_ organization: String) -> Self {
418+
return self
419+
}
412420

413421
func clearSession(federated: Bool, callback: @escaping (Bool) -> Void) {
414422
callback(true)

LockUITests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.22.0</string>
18+
<string>2.22.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ coverage:
44
range: "70...100"
55
ignore:
66
- Lock/OnePassword.swift
7-
- LockTests/*
7+
- LockTests/**/*
88
- App/*
99
status:
1010
patch:

0 commit comments

Comments
 (0)