Skip to content

v3.24.0

Compare
Choose a tag to compare
@sirosen sirosen released this 18 Jul 19:36
· 465 commits to main since this release
3.24.0

Added

  • Add FlowsClient.list_runs as a method for listing all runs for the current user, with support for pagination. (#782)

  • Add SearchClient methods for managing search index lifecycle: create_index, delete_index, and reopen_index (#785)

Changed

  • The enforcement logic for URLs in BaseClient instantiation has been improved to only require that service_name be set if base_url is not provided. (#786)

    • This change primarily impacts subclasses, which no longer need to set the service_name class variable if they ensure that the base_url is always passed with a non-null value.

    • Direct instantiation of BaseClient is now possible, although not recommended for most use-cases.