Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

## Version 4.0.0
- **Breaking Change**: Added new `AuthorizationResponse.Type.CANCELLED` to differentiate user-initiated cancellations from technical errors.
- User cancellations (browser closed, back button pressed) now return `Type.CANCELLED` with `RESULT_CANCELED`
- Technical errors (malformed responses, missing data) return `Type.EMPTY` with `RESULT_OK`
- OAuth errors (e.g., `access_denied`) continue to return `Type.ERROR` with `RESULT_OK`
- Client applications should update their authorization result handling to account for the new `CANCELLED` type and `RESULT_CANCELED` result code.

## Version 3.0.0
- Add mandatory redirect path pattern.

Expand Down
2 changes: 1 addition & 1 deletion auth-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ plugins {
}

group = "com.spotify.android"
version = "3.1.0"
version = "4.0.0"

val archivesBaseName = "auth"

Expand Down