Skip to content
Merged
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 generators/python/sdk/versions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# yaml-language-server: $schema=../../../fern-versions-yml.schema.json
# For unreleased changes, use unreleased.yml
- version: 4.57.2
changelogEntry:
- summary: |
Fix path-based pagination to pass the next page path as `path=` instead of `url=`
in the generated HTTP client request call.
type: fix
createdAt: "2026-02-13"
irVersion: 65

- version: 4.57.1
changelogEntry:
- summary: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def init_get_next(self, *, writer: AST.NodeWriter) -> None:
writer.write(f"{PathPagination.NEXT_RESPONSE_VAR} = await {client_ref}.request(")
else:
writer.write(f"{PathPagination.NEXT_RESPONSE_VAR} = {client_ref}.request(")
writer.write(f'method="{self._http_method}", url=_next_path')
writer.write(f'method="{self._http_method}", path=_next_path')
writer.write_line(")")

# Parse response
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading