Skip to content

Commit 0d9c3f3

Browse files
authored
Release 2.9.0 (#867)
1 parent d8abce2 commit 0d9c3f3

File tree

360 files changed

+401
-395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

360 files changed

+401
-395
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@ runs:
1010
using: composite
1111

1212
steps:
13-
- name: Set Ruby version
14-
run: ruby -e 'puts RUBY_VERSION' | tee .ruby-version
15-
shell: bash
16-
1713
- name: Set up Ruby
18-
uses: ruby/setup-ruby@0cde4689ba33c09f1b890c1725572ad96751a3fc # pinned to version v1.178.0
14+
uses: ruby/setup-ruby@52753b7da854d5c07df37391a986c76ab4615999 # pinned to version v1.191.0
1915
with:
16+
ruby-version: '3.1.0'
2017
bundler-cache: true
2118
cache-version: 1
2219

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ jobs:
5151

5252
- name: Upload coverage report
5353
if: ${{ matrix.platform.os == 'iOS' }}
54-
uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0
54+
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # pin@4.5.0
55+
with:
56+
token: ${{ secrets.CODECOV_TOKEN }}
5557

5658
test-package:
5759
name: Test Swift package using Xcode ${{ matrix.xcode }}

Auth0.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ excluded_files = [*web_auth_files, *ios_files, *macos_files]
3030

3131
Pod::Spec.new do |s|
3232
s.name = 'Auth0'
33-
s.version = '2.9.0-beta.0'
33+
s.version = '2.9.0'
3434
s.summary = "Auth0 SDK for Apple platforms"
3535
s.description = <<-DESC
3636
Auth0 SDK for iOS, macOS, tvOS, watchOS and visionOS apps.
@@ -44,8 +44,8 @@ Pod::Spec.new do |s|
4444
s.resource_bundles = { s.name => 'Auth0/PrivacyInfo.xcprivacy' }
4545
s.swift_versions = ['5.9']
4646

47-
s.dependency 'SimpleKeychain', '1.2.0-beta.0'
48-
s.dependency 'JWTDecode', '3.2.0-beta.0'
47+
s.dependency 'SimpleKeychain', '1.2.0'
48+
s.dependency 'JWTDecode', '3.2.0'
4949

5050
s.ios.deployment_target = '14.0'
5151
s.ios.exclude_files = macos_files

Auth0/Info.plist

Lines changed: 1 addition & 1 deletion
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.9.0-beta.0</string>
18+
<string>2.9.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Auth0/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
let version = "2.9.0-beta.0"
1+
let version = "2.9.0"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [2.9.0](https://github.com/auth0/Auth0.swift/tree/2.9.0) (2024-09-06)
4+
[Full Changelog](https://github.com/auth0/Auth0.swift/compare/2.8.0...2.9.0)
5+
6+
**Added**
7+
- feat: added support for visionOS platform [\#859](https://github.com/auth0/Auth0.swift/pull/859) ([desusai7](https://github.com/desusai7))
8+
39
## [2.9.0-beta.0](https://github.com/auth0/Auth0.swift/tree/2.9.0-beta.0) (2024-07-05)
410
[Full Changelog](https://github.com/auth0/Auth0.swift/compare/2.8.0...2.9.0-beta.0)
511

Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "auth0/SimpleKeychain" "1.2.0-beta.0"
2-
github "auth0/JWTDecode.swift" "3.2.0-beta.0"
1+
github "auth0/SimpleKeychain" "1.2.0"
2+
github "auth0/JWTDecode.swift" "3.2.0"

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "Quick/Nimble" "v13.3.0"
22
github "Quick/Quick" "v7.6.1"
3-
github "auth0/JWTDecode.swift" "3.2.0-beta.0"
4-
github "auth0/SimpleKeychain" "1.2.0-beta.0"
3+
github "auth0/JWTDecode.swift" "3.2.0"
4+
github "auth0/SimpleKeychain" "1.2.0"

Gemfile.lock

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ GEM
55
base64
66
nkf
77
rexml
8-
activesupport (7.1.3.4)
8+
activesupport (7.2.1)
99
base64
1010
bigdecimal
11-
concurrent-ruby (~> 1.0, >= 1.0.2)
11+
concurrent-ruby (~> 1.0, >= 1.3.1)
1212
connection_pool (>= 2.2.5)
1313
drb
1414
i18n (>= 1.6, < 2)
15+
logger (>= 1.4.2)
1516
minitest (>= 5.1)
16-
mutex_m
17-
tzinfo (~> 2.0)
17+
securerandom (>= 0.3)
18+
tzinfo (~> 2.0, >= 2.0.5)
1819
addressable (2.8.7)
1920
public_suffix (>= 2.0.2, < 7.0)
2021
algoliasearch (1.27.5)
@@ -23,20 +24,20 @@ GEM
2324
artifactory (3.0.17)
2425
atomos (0.1.3)
2526
aws-eventstream (1.3.0)
26-
aws-partitions (1.951.0)
27-
aws-sdk-core (3.201.0)
27+
aws-partitions (1.971.0)
28+
aws-sdk-core (3.203.0)
2829
aws-eventstream (~> 1, >= 1.3.0)
2930
aws-partitions (~> 1, >= 1.651.0)
30-
aws-sigv4 (~> 1.8)
31+
aws-sigv4 (~> 1.9)
3132
jmespath (~> 1, >= 1.6.1)
32-
aws-sdk-kms (1.88.0)
33-
aws-sdk-core (~> 3, >= 3.201.0)
33+
aws-sdk-kms (1.89.0)
34+
aws-sdk-core (~> 3, >= 3.203.0)
3435
aws-sigv4 (~> 1.5)
35-
aws-sdk-s3 (1.156.0)
36-
aws-sdk-core (~> 3, >= 3.201.0)
36+
aws-sdk-s3 (1.160.0)
37+
aws-sdk-core (~> 3, >= 3.203.0)
3738
aws-sdk-kms (~> 1)
3839
aws-sigv4 (~> 1.5)
39-
aws-sigv4 (1.8.0)
40+
aws-sigv4 (1.9.1)
4041
aws-eventstream (~> 1, >= 1.0.2)
4142
babosa (1.0.4)
4243
base64 (0.2.0)
@@ -84,7 +85,7 @@ GEM
8485
colored2 (3.1.2)
8586
commander (4.6.0)
8687
highline (~> 2.0.0)
87-
concurrent-ruby (1.3.3)
88+
concurrent-ruby (1.3.4)
8889
connection_pool (2.4.1)
8990
declarative (0.0.20)
9091
digest-crc (0.6.5)
@@ -96,7 +97,7 @@ GEM
9697
escape (0.0.4)
9798
ethon (0.16.0)
9899
ffi (>= 1.15.0)
99-
excon (0.110.0)
100+
excon (0.111.0)
100101
faraday (1.10.3)
101102
faraday-em_http (~> 1.0)
102103
faraday-em_synchrony (~> 1.0)
@@ -118,15 +119,15 @@ GEM
118119
faraday-httpclient (1.0.1)
119120
faraday-multipart (1.0.4)
120121
multipart-post (~> 2)
121-
faraday-net_http (1.0.1)
122+
faraday-net_http (1.0.2)
122123
faraday-net_http_persistent (1.2.0)
123124
faraday-patron (1.0.0)
124125
faraday-rack (1.0.0)
125126
faraday-retry (1.0.3)
126127
faraday_middleware (1.2.0)
127128
faraday (~> 1.0)
128129
fastimage (2.3.1)
129-
fastlane (2.221.1)
130+
fastlane (2.222.0)
130131
CFPropertyList (>= 2.3, < 4.0.0)
131132
addressable (>= 2.8, < 3.0.0)
132133
artifactory (~> 3.0)
@@ -190,7 +191,7 @@ GEM
190191
google-apis-core (>= 0.11.0, < 2.a)
191192
google-apis-storage_v1 (0.31.0)
192193
google-apis-core (>= 0.11.0, < 2.a)
193-
google-cloud-core (1.7.0)
194+
google-cloud-core (1.7.1)
194195
google-cloud-env (>= 1.0, < 3.a)
195196
google-cloud-errors (~> 1.0)
196197
google-cloud-env (1.6.0)
@@ -211,7 +212,7 @@ GEM
211212
os (>= 0.9, < 2.0)
212213
signet (>= 0.16, < 2.a)
213214
highline (2.0.3)
214-
http-cookie (1.0.6)
215+
http-cookie (1.0.7)
215216
domain_name (~> 0.5)
216217
httpclient (2.8.3)
217218
i18n (1.14.5)
@@ -220,39 +221,39 @@ GEM
220221
json (2.7.2)
221222
jwt (2.8.2)
222223
base64
223-
mini_magick (4.13.1)
224+
logger (1.6.1)
225+
mini_magick (4.13.2)
224226
mini_mime (1.1.5)
225-
minitest (5.24.1)
227+
minitest (5.25.1)
226228
molinillo (0.8.0)
227229
multi_json (1.15.0)
228230
multipart-post (2.4.1)
229-
mutex_m (0.2.0)
230231
nanaimo (0.3.0)
231232
nap (1.1.0)
232233
naturally (2.2.1)
233234
netrc (0.11.0)
234235
nkf (0.2.0)
235-
nokogiri (1.16.6-arm64-darwin)
236+
nokogiri (1.16.7-arm64-darwin)
236237
racc (~> 1.4)
237-
nokogiri (1.16.6-x86_64-darwin)
238+
nokogiri (1.16.7-x86_64-darwin)
238239
racc (~> 1.4)
239240
optparse (0.5.0)
240241
os (1.1.4)
241242
plist (3.7.1)
242243
public_suffix (4.0.7)
243-
racc (1.8.0)
244+
racc (1.8.1)
244245
rake (13.2.1)
245246
representable (3.2.0)
246247
declarative (< 0.1.0)
247248
trailblazer-option (>= 0.1.1, < 0.2.0)
248249
uber (< 0.2.0)
249250
retriable (3.1.2)
250-
rexml (3.2.9)
251-
strscan
251+
rexml (3.3.7)
252252
rouge (2.0.7)
253253
ruby-macho (2.5.1)
254254
ruby2_keywords (0.0.5)
255255
rubyzip (2.3.2)
256+
securerandom (0.3.1)
256257
security (0.1.5)
257258
semantic (1.6.1)
258259
signet (0.19.0)
@@ -263,13 +264,12 @@ GEM
263264
simctl (1.6.10)
264265
CFPropertyList
265266
naturally
266-
slather (2.8.2)
267+
slather (2.8.4)
267268
CFPropertyList (>= 2.2, < 4)
268269
activesupport
269270
clamp (~> 1.3)
270271
nokogiri (>= 1.14.3)
271-
xcodeproj (~> 1.21)
272-
strscan (3.1.0)
272+
xcodeproj (~> 1.25)
273273
terminal-notifier (2.0.0)
274274
terminal-table (3.0.2)
275275
unicode-display_width (>= 1.1.1, < 3)
@@ -285,13 +285,13 @@ GEM
285285
uber (0.1.0)
286286
unicode-display_width (2.5.0)
287287
word_wrap (1.0.0)
288-
xcodeproj (1.24.0)
288+
xcodeproj (1.25.0)
289289
CFPropertyList (>= 2.3.3, < 4.0)
290290
atomos (~> 0.1.3)
291291
claide (>= 1.0.2, < 2.0)
292292
colored2 (~> 3.1)
293293
nanaimo (~> 0.3.0)
294-
rexml (~> 3.2.4)
294+
rexml (>= 3.3.2, < 4.0)
295295
xcpretty (0.3.0)
296296
rouge (~> 2.0.7)
297297
xcpretty-travis-formatter (1.0.1)
@@ -300,6 +300,7 @@ GEM
300300
PLATFORMS
301301
arm64-darwin-22
302302
arm64-darwin-23
303+
x86_64-darwin-19
303304
x86_64-darwin-20
304305

305306
DEPENDENCIES

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ let package = Package(
1010
platforms: [.iOS(.v14), .macOS(.v11), .tvOS(.v14), .watchOS(.v7), .visionOS(.v1)],
1111
products: [.library(name: "Auth0", targets: ["Auth0"])],
1212
dependencies: [
13-
.package(url: "https://github.com/auth0/SimpleKeychain.git", exact:"1.2.0-beta.0"),
14-
.package(url: "https://github.com/auth0/JWTDecode.swift.git", exact:"3.2.0-beta.0"),
13+
.package(url: "https://github.com/auth0/SimpleKeychain.git", exact:"1.2.0"),
14+
.package(url: "https://github.com/auth0/JWTDecode.swift.git", exact:"3.2.0"),
1515
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "7.0.0")),
1616
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "13.0.0"))
1717
],

0 commit comments

Comments
 (0)