Skip to content

Commit 38ccea9

Browse files
committed
Merge conflict with main is resolved
2 parents d3db663 + 39011db commit 38ccea9

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929

3030
- run: ./gradlew clean test jacocoTestReport lint --continue --console=plain --max-workers=1 --no-daemon
3131

32-
- uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # pin@4.5.0
32+
- uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # pin@5.4.0

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.0
1+
3.5.0

CHANGELOG.md

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

3+
## [3.5.0](https://github.com/auth0/Auth0.Android/tree/3.5.0) (2025-03-17)
4+
[Full Changelog](https://github.com/auth0/Auth0.Android/compare/3.4.0...3.5.0)
5+
6+
**Added**
7+
- Updated documentation to pass an activity context for login and logout [\#808](https://github.com/auth0/Auth0.Android/pull/808) ([pmathew92](https://github.com/pmathew92))
8+
- Add to CustomTabsOptions ability to disable opening auth in custom tab [\#806](https://github.com/auth0/Auth0.Android/pull/806) ([bennycao](https://github.com/bennycao))
9+
10+
**Changed**
11+
- Fixed the java samples in the Example.md file [\#807](https://github.com/auth0/Auth0.Android/pull/807) ([pmathew92](https://github.com/pmathew92))
12+
313
## [3.4.0](https://github.com/auth0/Auth0.Android/tree/3.4.0) (2025-02-13)
414
[Full Changelog](https://github.com/auth0/Auth0.Android/compare/3.3.0...3.4.0)
515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To install Auth0.Android with [Gradle](https://gradle.org/), simply add the foll
5151

5252
```gradle
5353
dependencies {
54-
implementation 'com.auth0.android:auth0:3.4.0'
54+
implementation 'com.auth0.android:auth0:3.5.0'
5555
}
5656
```
5757

auth0/src/main/java/com/auth0/android/authentication/AuthenticationAPIClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ public class AuthenticationAPIClient @VisibleForTesting(otherwise = VisibleForTe
943943
* @param refreshToken A valid refresh token obtained as part of Auth0 authentication
944944
* @return a request to fetch a session token
945945
*/
946-
public fun fetchSessionToken(refreshToken: String): Request<SSOCredentials, AuthenticationException> {
946+
internal fun fetchSessionToken(refreshToken: String): Request<SSOCredentials, AuthenticationException> {
947947
val params = ParameterBuilder.newBuilder()
948948
.setClientId(clientId)
949949
.setGrantType(ParameterBuilder.GRANT_TYPE_TOKEN_EXCHANGE)

auth0/src/main/java/com/auth0/android/authentication/storage/BaseCredentialsManager.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public abstract class BaseCredentialsManager internal constructor(
3434
public abstract fun saveApiCredentials(apiCredentials: APICredentials, audience: String)
3535
public abstract fun saveSsoCredentials(ssoCredentials: SSOCredentials)
3636
public abstract fun getCredentials(callback: Callback<Credentials, CredentialsManagerException>)
37-
public abstract fun getSsoCredentials(callback: Callback<SSOCredentials, CredentialsManagerException>)
37+
internal abstract fun getSsoCredentials(callback: Callback<SSOCredentials, CredentialsManagerException>)
3838
public abstract fun getCredentials(
3939
scope: String?,
4040
minTtl: Int,
@@ -76,7 +76,7 @@ public abstract class BaseCredentialsManager internal constructor(
7676

7777
@JvmSynthetic
7878
@Throws(CredentialsManagerException::class)
79-
public abstract suspend fun awaitSsoCredentials(): SSOCredentials
79+
internal abstract suspend fun awaitSsoCredentials(): SSOCredentials
8080

8181
@JvmSynthetic
8282
@Throws(CredentialsManagerException::class)

0 commit comments

Comments
 (0)