Skip to content

Commit f7f78eb

Browse files
tstanmay13github-actions[bot]
authored andcommitted
update changelogs
1 parent e2876f4 commit f7f78eb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

fern/products/sdks/overview/java/changelog/2025-09-29.mdx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 3.8.0
2+
**`(feat):`** Add `getResponse()` method to `BasePage` for accessing pagination metadata like cursor tokens.
3+
This enables stateless pagination by providing access to the full API response object.
4+
5+
Usage example:
6+
```java
7+
SyncPagingIterable<User> users = client.users().list();
8+
users.getResponse().ifPresent(response -> {
9+
String cursor = response.getNext();
10+
// Use cursor for stateless pagination
11+
});
12+
```
13+
14+
115
## 3.7.0
216
**`(feat):`** Wire tests are now enabled by default for all Java SDKs, providing comprehensive HTTP protocol
317
validation tests using MockWebServer. Wire tests validate request/response serialization, HTTP

0 commit comments

Comments
 (0)