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 optionalcloudandcloud_resourceparameters for filtering. See Compute Config API Reference. - Added
anyscale.compute_config.list()with filtering, sorting, and pagination. Supportscloud_id,cloud_name,sort_by,sort_order,max_items, andnext_tokenparameters. Returns aComputeConfigListResultobject. See Compute Config API Reference. - Added
anyscale.job.list()with filtering and pagination. Supports filtering byname,project,cloud,state_filter,tags_filter, and more. See Job API Reference. - Added
anyscale.schedule.list()with filtering and pagination. Supports filtering byname,project,cloud, andcreator_id. See Schedule API Reference. - Added
anyscale.image.archive()to archive container images and all versions. See Image API Reference. - Added
cloudparameter toanyscale.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 listwith pagination (--next-token), filtering (--cloud-id,--cloud-name), sorting (--sort-by,--sort-order), and JSON output (--json). - Enhanced
anyscale compute-config getwith--cloud-idand--cloud-nameoptions for filtering.
Compute config
-
Added
cpu_architecturefield toPhysicalResources. Valid values:x86_64(default) andarm64. See Compute Config API Reference. -
GKE now automatically derives node selectors from Ray labels for TPU workloads. Specify
ray.io/accelerator-typeandray.io/tpu-topologyin 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. Useanyscale cloud updateinstead. - Refactored
cloud setup,cloud update, andcloud deleteto 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
JobStatusreturned byanyscale.job.list()hadcreated_at=Nonedespite the API returning the correct timestamp. - Fixed
anyscale user list-permissionscommand.