diff --git a/fern/products/sdks/overview/java/changelog/2025-09-29.mdx b/fern/products/sdks/overview/java/changelog/2025-09-29.mdx index 9e9e2c1a6..d752a63f7 100644 --- a/fern/products/sdks/overview/java/changelog/2025-09-29.mdx +++ b/fern/products/sdks/overview/java/changelog/2025-09-29.mdx @@ -1,3 +1,17 @@ +## 3.8.0 +**`(feat):`** Add `getResponse()` method to `BasePage` for accessing pagination metadata like cursor tokens. +This enables stateless pagination by providing access to the full API response object. + +Usage example: +```java +SyncPagingIterable users = client.users().list(); +users.getResponse().ifPresent(response -> { + String cursor = response.getNext(); + // Use cursor for stateless pagination +}); +``` + + ## 3.7.0 **`(feat):`** Wire tests are now enabled by default for all Java SDKs, providing comprehensive HTTP protocol validation tests using MockWebServer. Wire tests validate request/response serialization, HTTP