Skip to content

v0.1.0-alpha.12

Pre-release
Pre-release

Choose a tag to compare

@stainless-app stainless-app released this 07 Jan 17:54

0.1.0-alpha.12 (2026-01-07)

Full Changelog: v0.1.0-alpha.11...v0.1.0-alpha.12

⚠ BREAKING CHANGES

  • client: extract auto pagination to shared classes
  • client: Migration: - If you were referencing the AutoPager class on a specific *Page or *PageAsync type, then you should instead reference the shared AutoPager and AutoPagerAsync types, under the core package
    • AutoPagerAsync now has different usage. You can call .subscribe(...) on the returned object instead to get called back each page item. You can also call onCompleteFuture() to get a future that completes when all items have been processed. Finally, you can call .close() on the returned object to stop auto-paginating early
    • If you were referencing getNextPage or getNextPageParams:
      • Swap to nextPage() and nextPageParams()
      • Note that these both now return non-optional types (use hasNextPage() before calling these, since they will throw if it's impossible to get another page)

Features

  • api: add test evaluation method (e8d8121)
  • api: api update (225da0c)
  • api: api update (a089f7f)
  • api: api update (e48acb3)
  • api: manual updates (fd5752e)
  • client: add a withOptions method (9ebe803)
  • client: allow providing some params positionally (134e615)
  • client: extract auto pagination to shared classes (d2fa723)
  • client: implement per-endpoint base URL support (710b626)

Bug Fixes

  • ci: release-doctor — report correct token name (6e8b2be)
  • client: bump max requests per host to max requests (5 -> 64) (21777c4)
  • client: don't close client on withOptions usage when original is gc'd (2595481)
  • client: remove @MustBeClosed for future returning methods (0e78fa9)

Chores

  • ci: enable for pull requests (5d83cd2)
  • ci: only run for pushes and fork pull requests (69737c8)
  • docs: grammar improvements (d1cacea)
  • internal: codegen related update (9c97d6d)
  • internal: codegen related update (d2c9111)
  • internal: codegen related update (942316f)
  • internal: codegen related update (9b5aa41)
  • internal: codegen related update (4881e6f)
  • internal: codegen related update (ce52e15)
  • sync repo (390e75d)

Documentation

  • add Spring AI sample application (4cc1fb8)
  • remove or fix invalid readme examples (9372b90)

Refactors

  • internal: minor ClientOptionsTest change (7d83620)