3.71.7

(chore): Upgrade oxc tooling: oxlint 1.63.0 → 1.69.0, oxfmt 0.48.0 → 0.54.0, oxlint-tsgolint 0.22.1 → 0.23.0. tsgolint 0.23.0 ships with go1.26.3 (clearing go/stdlib CVEs), so the rebuild-from-source Docker stage is removed entirely.

3.71.6

(fix): Fix hasNextPage for offset pagination so it no longer compares items.length against a fabricated default when the caller omits the page-size parameter (FER-11160). The previous logic substituted a generator-chosen default (often 1), which produced false-positive continuation on short pages and false-negative termination when the default was non-trivial. The pager now gates the size comparison on whether the caller actually provided a page-size: when supplied, a short page still short-circuits (saves one round-trip at the tail); when omitted, it falls back to an items-driven check. Explicit response.hasNextPage from the API continues to take priority.