Skip to content

Commit 9440de6

Browse files
authored
Merge pull request #91 from Widcket/fix/use-jwt-token
Use JWT tokens when updating and deleting enrolled devices [SDK-2560]
2 parents f6c91a1 + 7f360e9 commit 9440de6

17 files changed

+494
-221
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ jobs:
99

1010
# Specify the Xcode version to use.
1111
macos:
12-
xcode: "9.3.0"
12+
xcode: "12.4.0"
1313
working_directory: /Users/distiller/project
1414
environment:
1515
- LC_ALL: en_US.UTF-8
1616
- LANG: en_US.UTF-8
1717
- FL_OUTPUT_DIR: output
1818
- FASTLANE_EXPLICIT_OPEN_SIMULATOR: 2
19+
HOMEBREW_NO_AUTO_UPDATE: 1
1920

2021
# Define the steps required to build the project.
2122
steps:
@@ -29,6 +30,11 @@ jobs:
2930
# Fall back to using the latest cache if no exact match is found.
3031
- guardian.swift-ruby-v1-
3132

33+
# Install latest Carthage
34+
- run:
35+
name: Install Carthage
36+
command: brew update && brew upgrade carthage
37+
3238
# Install gems.
3339
- run:
3440
name: Bundle install
@@ -72,4 +78,4 @@ workflows:
7278
version: 2
7379
build-and-test:
7480
jobs:
75-
- build-and-test
81+
- build-and-test

Cartfile.private

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "Quick/Quick" ~> 1.1
2-
github "Quick/Nimble" ~> 7.1
3-
github "AliSoftware/OHHTTPStubs" ~> 6.0
1+
github "AliSoftware/OHHTTPStubs" ~> 8.0
2+
github "Quick/Nimble" ~> 9.2
3+
github "Quick/Quick" ~> 2.2
44
github "yannickl/QRCodeReader.swift" >= 8.2.0
55
github "auth0/SimpleKeychain"

Cartfile.resolved

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "AliSoftware/OHHTTPStubs" "6.1.0"
2-
github "Quick/Nimble" "v7.1.3"
3-
github "Quick/Quick" "v1.3.1"
4-
github "auth0/SimpleKeychain" "0.8.1"
5-
github "yannickl/QRCodeReader.swift" "8.2.0"
1+
github "AliSoftware/OHHTTPStubs" "8.0.0"
2+
github "Quick/Nimble" "v9.2.0"
3+
github "Quick/Quick" "v2.2.1"
4+
github "auth0/SimpleKeychain" "0.12.2"
5+
github "yannickl/QRCodeReader.swift" "10.1.1"

0 commit comments

Comments
 (0)