1.23.0 (2026-08-11)
Features Added
- Helper method
runtime.NewRequestForNextLinkfor creating requests for pageable operations that uses a next link. It handles absolute and relative next links.
Bugs Fixed
- Fixed an issue where
runtime.Pager[T].Morecould returntrueindefinitely afterNextPagefailed to retrieve the first page, causingfor pager.More()loops to spin. After a page fetch returns an error thePagernow enters a terminal state:Morereturnsfalseand subsequentNextPagecalls return the same error without invoking the fetcher again.