Skip to content
Open
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
9 changes: 9 additions & 0 deletions CHANGES.ja.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
変更点
======

4.46 ()
--------------------------

- `AuthorizationFailRequest.Reason` 列挙型
* `INVALID_SCOPE` を追加。
* `UNAUTHORIZED_CLIENT` を追加。
* `TEMPORARILY_UNAVAILABLE` を追加。


4.45 (2026 年 05 月 18 日)
--------------------------

Expand Down
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
CHANGES
=======

4.46 ()
-----------------

- `AuthorizationFailRequest.Reason` enum
* Added `INVALID_SCOPE`
* Added `UNAUTHORIZED_CLIENT`
* Added `TEMPORARILY_UNAVAILABLE`


4.45 (2026-05-18)
-----------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,38 @@ public enum Reason
* @since 2.62
*/
INVALID_TARGET,

/**
* The requested scope is invalid.
*
* <p>
* Using this reason will result in {@code error=invalid_scope}.
* </p>
*
* @since 3.0.33
*/
INVALID_SCOPE,

/**
* The client is not authorized to perform the requested operation.
*
* <p>
* Using this reason will result in {@code error=unauthorized_client}.
* </p>
* @since 3.0.33
*/
UNAUTHORIZED_CLIENT,

/**
* The requested operation is temporarily unavailable and cannot be performed at this time.
*
* <p>
* Using this reason will result in {@code error=temporarily_unavailable}.
* </p>
*
* @since 3.0.33
*/
TEMPORARILY_UNAVAILABLE,
}


Expand Down