Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @auth0/dx-sdks-engineer
* @auth0/project-dx-sdks-engineer-codeowner
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
xcode:
- '14.1'
- '26.0'

steps:
- name: Checkout
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
xcode:
- '14.1'
- '26.0'

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github "AliSoftware/OHHTTPStubs" "9.1.0"
github "Quick/Nimble" "v9.2.1"
github "Quick/Quick" "v4.0.0"
github "auth0/Auth0.swift" "1.36.0"
github "auth0/JWTDecode.swift" "2.6.2"
github "auth0/SimpleKeychain" "0.12.4"
github "auth0/Auth0.swift" "1.39.1"
github "auth0/JWTDecode.swift" "2.6.3"
github "auth0/SimpleKeychain" "0.12.5"
github "emaloney/CleanroomLogger" "7.0.0"
8 changes: 4 additions & 4 deletions Lock/OfflineConnections.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ import Foundation

struct OfflineConnections: ConnectionBuildable {

private (set) var databases: [DatabaseConnection] = []
private(set) var databases: [DatabaseConnection] = []
var database: DatabaseConnection? { return self.databases.first }
private (set) var oauth2: [OAuth2Connection] = []
private (set) var enterprise: [EnterpriseConnection] = []
private (set) var passwordless: [PasswordlessConnection] = []
private(set) var oauth2: [OAuth2Connection] = []
private(set) var enterprise: [EnterpriseConnection] = []
private(set) var passwordless: [PasswordlessConnection] = []

mutating func database(name: String, requiresUsername: Bool, usernameValidator: UsernameValidator = UsernameValidator(), passwordValidator: PasswordPolicyValidator) {
self.databases.append(DatabaseConnection(name: name, requiresUsername: requiresUsername, usernameValidator: usernameValidator, passwordValidator: passwordValidator))
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
![Version](https://img.shields.io/cocoapods/v/Lock.svg?style=flat)
[![CircleCI](https://img.shields.io/circleci/project/github/auth0/Lock.swift.svg?style=flat)](https://circleci.com/gh/auth0/Lock.swift/tree/master)
[![Coverage Status](https://img.shields.io/codecov/c/github/auth0/Lock.swift/master.svg?style=flat)](https://codecov.io/github/auth0/Lock.swift)
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/auth0/Lock.swift)
![License](https://img.shields.io/github/license/auth0/Lock.swift.svg?style=flat)

📚 [**Documentation**](#documentation) • 🚀 [**Getting Started**](#getting-started) • 💬 [**Feedback**](#feedback)
Expand Down Expand Up @@ -181,4 +182,4 @@ Please do not report security vulnerabilities on the public GitHub issue tracker

<p align="center">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <a href="https://auth0.com/why-auth0">Why Auth0?</a></p>

<p align="center">This project is licensed under the MIT license. See the <a href="./LICENSE"> LICENSE</a> file for more info.</p>
<p align="center">This project is licensed under the MIT license. See the <a href="./LICENSE"> LICENSE</a> file for more info.</p>
Loading