From cb3a29b4a94ff217004ec35a287da763fef93074 Mon Sep 17 00:00:00 2001 From: meysam Date: Tue, 7 Oct 2025 19:23:30 +0400 Subject: [PATCH] docs: add missing changelog entries for v2.88 response header support --- CHANGES.ja.md | 13 +++++++++++++ CHANGES.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/CHANGES.ja.md b/CHANGES.ja.md index b0d61e8b..627061e5 100644 --- a/CHANGES.ja.md +++ b/CHANGES.ja.md @@ -1,6 +1,19 @@ 変更点 ====== +2.88 (2025-10-07) +----------------- + +- `pom.xml` + * authlete-java-common のバージョンを 4.20 から 4.23 へ更新。 + * nimbus-jose-jwt のバージョンを 9.37.2 から 10.0.2 へ更新。 + +- `AuthleteApiJaxrsImpl` クラス + * Authlete API 呼び出しから HTTP レスポンスヘッダーを抽出する機能を追加。 + * `callGetApi()` と `callPostApi()` メソッドがレスポンスヘッダーをキャプチャし、 + `setResponseHeaders()` メソッドを使用して `ApiResponse` オブジェクトに設定するように変更。 + * これにより、API レスポンスから `Request-Id` などのヘッダーへのアクセスが可能に。 + 2.87 (2025-05-03) ----------------- diff --git a/CHANGES.md b/CHANGES.md index f1a31a5c..d19d5647 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,19 @@ CHANGES ======= +2.88 (2025-10-07) +----------------- + +- `pom.xml` + * Updated the version of authlete-java-common from 4.20 to 4.23. + * Updated the version of nimbus-jose-jwt from 9.37.2 to 10.0.2. + +- `AuthleteApiJaxrsImpl` class + * Added support for extracting HTTP response headers from Authlete API calls. + * The `callGetApi()` and `callPostApi()` methods now capture response headers + and set them on `ApiResponse` objects using the `setResponseHeaders()` method. + * This enables access to headers like `Request-Id` from API responses. + 2.87 (2025-05-03) -----------------