Skip to content

Commit

Permalink
Rename next to nextPageToken to keep it uniform with grpc (#954)
Browse files Browse the repository at this point in the history
* Rename next to nextPageToken to keep it uniform with grpc

* Revert "Rename next to nextPageToken to keep it uniform with grpc"

This reverts commit 4c8b1ba.

* Rename next to nextPageToken to keep it uniform with grpc

* Rename next to nextPageToken to keep it uniform with grpc

* Update gradle.properties
  • Loading branch information
jagriti-madan authored Dec 13, 2023
1 parent 4d585fa commit 1d43ede
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and what APIs have changed, if applicable.

## [Unreleased]

## [29.48.6] - 2023-12-12
- Rename next to nextPageToken in standardized models for cursor based pagination

## [29.48.5] - 2023-12-12
- add debug log to dual read caches

Expand Down Expand Up @@ -5578,7 +5581,8 @@ patch operations can re-use these classes for generating patch messages.

## [0.14.1]

[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.48.5...master
[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.48.6...master
[29.48.6]: https://github.com/linkedin/rest.li/compare/v29.48.5...v29.48.6
[29.48.5]: https://github.com/linkedin/rest.li/compare/v29.48.4...v29.48.5
[29.48.4]: https://github.com/linkedin/rest.li/compare/v29.48.3...v29.48.4
[29.48.3]: https://github.com/linkedin/rest.li/compare/v29.48.2...v29.48.3
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=29.48.5
version=29.48.6
group=com.linkedin.pegasus
org.gradle.configureondemand=true
org.gradle.parallel=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ record CursorPagination {
* Pagination cursor that points to the end of the current page and can be used to fetch the next page.
* Not populated if the current page is the last page.
*/
next: optional string
nextPageToken: optional string
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"namespace" : "com.linkedin.restli.common",
"doc" : "Metadata for cursor based pagination with collections.",
"fields" : [ {
"name" : "next",
"name" : "nextPageToken",
"type" : "string",
"doc" : "Pagination cursor that points to the end of the current page and can be used to fetch the next page.\nNot populated if the current page is the last page.",
"optional" : true
Expand Down

0 comments on commit 1d43ede

Please sign in to comment.