Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openlayer-ai/openlayer-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: openlayer-ai/openlayer-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: next
Choose a head ref
  • 15 commits
  • 293 files changed
  • 1 contributor

Commits on May 9, 2025

  1. chore: sync repo

    stainless-app[bot] committed May 9, 2025
    Configuration menu
    Copy the full SHA
    390e75d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce52e15 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    134e615 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9372b90 View commit details
    Browse the repository at this point in the history
  5. feat(client)!: extract auto pagination to shared classes

    refactor(client)!: refactor async auto-pagination
    refactor(client)!: rename `getNextPage{,Params}` to `nextPage{,Params}`
    refactor(client)!: swap `nextPage{,Params}` to return non-optional
    
    # 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)
    
    There are examples and further information about pagination in the readme.
    stainless-app[bot] committed May 9, 2025
    Configuration menu
    Copy the full SHA
    d2fa723 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2025

  1. Configuration menu
    Copy the full SHA
    d1cacea View commit details
    Browse the repository at this point in the history

Commits on May 29, 2025

  1. Configuration menu
    Copy the full SHA
    0e78fa9 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2025

  1. feat(client): implement per-endpoint base URL support

    Refactor `HttpRequest` to always take a `baseUrl`, instead of storing this in `OkHttpClient`. This allows better reuse of `OkHttpClient` when changing the `baseUrl`.
    stainless-app[bot] committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    710b626 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2025

  1. Configuration menu
    Copy the full SHA
    9ebe803 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2025

  1. Configuration menu
    Copy the full SHA
    5d83cd2 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2025

  1. Configuration menu
    Copy the full SHA
    21777c4 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2025

  1. Configuration menu
    Copy the full SHA
    6e8b2be View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2025

  1. Configuration menu
    Copy the full SHA
    69737c8 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2025

  1. Configuration menu
    Copy the full SHA
    2595481 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2025

  1. Configuration menu
    Copy the full SHA
    7d83620 View commit details
    Browse the repository at this point in the history
Loading