We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2876f4 commit f7f78ebCopy full SHA for f7f78eb
fern/products/sdks/overview/java/changelog/2025-09-29.mdx
@@ -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
15
## 3.7.0
16
**`(feat):`** Wire tests are now enabled by default for all Java SDKs, providing comprehensive HTTP protocol
17
validation tests using MockWebServer. Wire tests validate request/response serialization, HTTP
0 commit comments