From 8552a3b2de8c27ea317d831c40f595ee51891a3b Mon Sep 17 00:00:00 2001 From: arpit-jain_atko Date: Fri, 17 Oct 2025 12:23:48 +0530 Subject: [PATCH 1/3] docs: Add Ask DeepWiki badge --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 847e77b1..f43bb69a 100644 --- a/README.md +++ b/README.md @@ -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) @@ -181,4 +182,4 @@ Please do not report security vulnerabilities on the public GitHub issue tracker

Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout Why Auth0?

-

This project is licensed under the MIT license. See the LICENSE file for more info.

+

This project is licensed under the MIT license. See the LICENSE file for more info.

\ No newline at end of file From 1edcb183226a3434829f17778e18fe60c4cfdb65 Mon Sep 17 00:00:00 2001 From: Nandan Prabhu Date: Wed, 29 Oct 2025 12:59:41 +0530 Subject: [PATCH 2/3] Updates xcode version 26.0 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0be2e75b..1c12f9dd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: xcode: - - '14.1' + - '26.0' steps: - name: Checkout @@ -52,7 +52,7 @@ jobs: strategy: matrix: xcode: - - '14.1' + - '26.0' steps: - name: Checkout From 3a8cd4aa6ffb2ed2408e17b0801c0aa14baac5f3 Mon Sep 17 00:00:00 2001 From: Nandan Prabhu Date: Mon, 22 Dec 2025 15:17:53 +0530 Subject: [PATCH 3/3] Fixes swift lint issues --- .github/CODEOWNERS | 2 +- Cartfile.resolved | 6 +++--- Lock/OfflineConnections.swift | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 60f116c0..141ea09f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @auth0/dx-sdks-engineer +* @auth0/project-dx-sdks-engineer-codeowner \ No newline at end of file diff --git a/Cartfile.resolved b/Cartfile.resolved index 49ac0a87..ef8d73f4 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -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" diff --git a/Lock/OfflineConnections.swift b/Lock/OfflineConnections.swift index ecd58d1a..dba4aa59 100644 --- a/Lock/OfflineConnections.swift +++ b/Lock/OfflineConnections.swift @@ -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))