Skip to main content

Anyscale CLI and SDK release notes

Anyscale CLI and SDK release notes

This page documents changes to the Anyscale CLI and SDK, including new features, behavior changes, and bug fixes.

For installation and configuration, see CLI configuration and Get started with the Anyscale SDK.

Version 0.26.81 release notes

Version 0.26.81 is available as of January 14, 2026.

New features

SDK

  • Added anyscale.compute_config.get_default() to retrieve the default compute config. Supports optional cloud and cloud_resource parameters for filtering. See Compute Config API Reference.
  • Added anyscale.compute_config.list() with filtering, sorting, and pagination. Supports cloud_id, cloud_name, sort_by, sort_order, max_items, and next_token parameters. Returns a ComputeConfigListResult object. See Compute Config API Reference.
  • Added anyscale.job.list() with filtering and pagination. Supports filtering by name, project, cloud, state_filter, tags_filter, and more. See Job API Reference.
  • Added anyscale.schedule.list() with filtering and pagination. Supports filtering by name, project, cloud, and creator_id. See Schedule API Reference.
  • Added anyscale.image.archive() to archive container images and all versions. See Image API Reference.
  • Added cloud parameter to anyscale.compute_config.get() to filter by cloud name when resolving compute configs.

CLI

  • Added anyscale image archive --name <image> command to archive container images. See Image API Reference.
  • Enhanced anyscale compute-config list with pagination (--next-token), filtering (--cloud-id, --cloud-name), sorting (--sort-by, --sort-order), and JSON output (--json).
  • Enhanced anyscale compute-config get with --cloud-id and --cloud-name options for filtering.

Compute config

  • Added cpu_architecture field to PhysicalResources. Valid values: x86_64 (default) and arm64. See Compute Config API Reference.

  • GKE now automatically derives node selectors from Ray labels for TPU workloads. Specify ray.io/accelerator-type and ray.io/tpu-topology in labels instead of explicit node selectors:

    labels:
    ray.io/accelerator-type: TPU-V6E
    ray.io/tpu-topology: 2x2

Behavior changes

CLI

  • Deprecated anyscale cloud edit. Use anyscale cloud update instead.
  • Refactored cloud setup, cloud update, and cloud delete to use new cloud resource APIs.
  • Log downloads now create the temp directory inside the target directory to avoid cross-partition issues. Error messages for disk space limits now include the target directory, available space, and required space.

Bug fixes

  • Fixed bug where JobStatus returned by anyscale.job.list() had created_at=None despite the API returning the correct timestamp.
  • Fixed anyscale user list-permissions command.