Dstack

Latest version: v0.19.1

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 9 of 15

0.18.6

Major fixes

* Support for GitLab's authorization when the repo is using HTTP/HTTPS by jvstme in https://github.com/dstackai/dstack/pull/1412
* Add a [multi-node example](https://github.com/dstackai/dstack/blob/master/examples/fine-tuning/alignment-handbook/README.md#multi-node) to the Hugging Alignment Handbook example by deep-diver in https://github.com/dstackai/dstack/pull/1409
* Fix the issue where idle instances weren't offered (occurred when a GPU name was in upper case). by jvstme in https://github.com/dstackai/dstack/pull/1417
* Fix the issue where an exception is thrown for non-standard Git repo host URLs using HTTP/HTTPS jvstme in https://github.com/dstackai/dstack/pull/1410
* Support `H100` with the `gcp` backend by jvstme in https://github.com/dstackai/dstack/pull/1405

> [!WARNING]
> If you have idle instances in your pool, it is recommended to re-create them after upgrading to version 0.18.6. Otherwise, there is a risk that these instances won't be able to execute jobs.

Other

* [Internal] Add script for checking OCI images by jvstme in https://github.com/dstackai/dstack/pull/1408
* Fix repos migration on PostgreSQL by jvstme in https://github.com/dstackai/dstack/pull/1414
* [Internal] Fix `dstack-runner` repo tests by jvstme in https://github.com/dstackai/dstack/pull/1418
* Fix OCI listing not found errors by jvstme in https://github.com/dstackai/dstack/pull/1407

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.5...0.18.6

0.18.5

Read below about its new features and bug-fixes.

Volumes

When you run anything with `dstack`, it allows you to configure the disk size. However, once the run is finished, if you haven't stored your data in any external storage, all the data on disk will be erased. With `0.18.5`, we're adding support for network volumes that allow data to persist across runs.

Once you've created a volume (e.g. named `my-new-volume`), you can attach it to a dev environment, task, or service.

yaml
type: dev-environment
ide: vscode
volumes:
- name: my-new-volume
path: /volume_data


The data stored in the volume will persist across runs.

`dstack` allows you to create new volumes and register existing ones. To learn more about how volumes work, check out the [docs](https://dstack.ai/docs/concepts/volumes/).

> [!IMPORTANT]
> Volumes are currently experimental and only work with the `aws` backend. Support for other backends is coming soon.

PostgreSQL

By default, `dstack` stores its state in `~/.dstack/server/data` using SQLite. With this update, it's now possible to configure `dstack` to store its state in PostgreSQL. Just pass the `DSTACK_DATABASE_URL` environment variable.


DSTACK_DATABASE_URL="postgresql+asyncpg://myuser:mypasswordlocalhost:5432/mydatabase" dstack server


> [!IMPORTANT]
> Despite PostgreSQL support, `dstack` still requires that you run only one instance of the `dstack` server. However, this requirement will be lifted in a future update.

On-prem clusters

Previously, `dstack` didn't allow the use of on-prem clusters (added via `dstack pool add-ssh`) if there were no backends configured. This update fixes that bug. Now, you don't have to configure any backends if you only plan to use on-prem clusters.

Supported GPUs

Previously, `dstack` didn't support `L4` and `H100` GPUs with AWS. Now you can use them.

Full changelog

* Support dstack volumes by r4victor in https://github.com/dstackai/dstack/pull/1364
* Filter pool instances with respect to volumes availability zone by r4victor in https://github.com/dstackai/dstack/pull/1368
* Support AWS L4 GPU by jvstme in https://github.com/dstackai/dstack/pull/1365
* Add Concepts->Volumes by r4victor in https://github.com/dstackai/dstack/pull/1370
* Improve Overview page by r4victor in https://github.com/dstackai/dstack/pull/1377
* Add volumes prices by r4victor in https://github.com/dstackai/dstack/pull/1382
* Wait for GCP VM no capacity error by r4victor in https://github.com/dstackai/dstack/pull/1387
* Disallow mounting volumes inside /workflow by r4victor in https://github.com/dstackai/dstack/pull/1388
* Support NVIDIA NVSwitch in `dstack` VM images by jvstme in https://github.com/dstackai/dstack/pull/1389
* Optimize loading `dstack` Docker images by jvstme in https://github.com/dstackai/dstack/pull/1391
* Improve Contributing by r4victor in https://github.com/dstackai/dstack/pull/1392
* Support running dstack server with Postgres by r4victor in https://github.com/dstackai/dstack/pull/1398
* Support H100 GPU on AWS by jvstme in https://github.com/dstackai/dstack/pull/1394
* Fix possible server freeze after `pool add-ssh` by jvstme in https://github.com/dstackai/dstack/pull/1396
* Add OCI eu-milan-1 region by jvstme in https://github.com/dstackai/dstack/pull/1400
* Prepare future OCI spot instances support by jvstme in https://github.com/dstackai/dstack/pull/1401
* Remove if backends configured check by r4victor in https://github.com/dstackai/dstack/pull/1404
* Include project_name in Instance and Volume by r4victor in https://github.com/dstackai/dstack/pull/1390

See more: https://github.com/dstackai/dstack/compare/0.18.4...0.18.5

0.18.5rc1

This is a release candidate build of the upcoming `0.18.5` release. Read below to learn about its new features and bug-fixes.

Volumes

When you run anything with `dstack`, it allows you to configure the disk size. However, once the run is finished, if you haven't stored your data in any external storage, all the data on disk will be erased. With `0.18.5`, we're adding support for network volumes that allow data to persist across runs.

Once you've created a volume (e.g. named `my-new-volume`), you can attach it to a dev environment, task, or service.

yaml
type: dev-environment
ide: vscode
volumes:
- name: my-new-volume
path: /volume_data


The data stored in the volume will persist across runs.

`dstack` allows you to create new volumes and register existing ones. To learn more about how volumes work, check out the [docs](https://dstack.ai/docs/concepts/volumes/).

> [!IMPORTANT]
> Volumes are currently experimental and only work with the `aws` backend. Support for other backends is coming soon.

PostgreSQL

By default, `dstack` stores its state in `/root/.dstack/server/data` using SQLite. With this update, it's now possible to configure `dstack` to store its state in PostgreSQL. Just pass the `DSTACK_DATABASE_URL` environment variable.


DSTACK_DATABASE_URL="postgresql+asyncpg://myuser:mypasswordlocalhost:5432/mydatabase" dstack server


> [!IMPORTANT]
> Despite PostgreSQL support, `dstack` still requires that you run only one instance of the `dstack` server. However, this requirement will be lifted in a future update.

On-prem clusters

Previously, `dstack` didn't allow the use of on-prem clusters (added via `dstack pool add-ssh`) if there were no backends configured. This update fixes that bug. Now, you don't have to configure any backends if you only plan to use on-prem clusters.

Supported GPUs

Previously, `dstack` didn't support `L4` and `H100` GPUs with AWS. Now you can use them.

Full changelog

* Support dstack volumes by r4victor in https://github.com/dstackai/dstack/pull/1364
* Filter pool instances with respect to volumes availability zone by r4victor in https://github.com/dstackai/dstack/pull/1368
* Support AWS L4 GPU by jvstme in https://github.com/dstackai/dstack/pull/1365
* Add Concepts->Volumes by r4victor in https://github.com/dstackai/dstack/pull/1370
* Improve Overview page by r4victor in https://github.com/dstackai/dstack/pull/1377
* Add volumes prices by r4victor in https://github.com/dstackai/dstack/pull/1382
* Wait for GCP VM no capacity error by r4victor in https://github.com/dstackai/dstack/pull/1387
* Disallow mounting volumes inside /workflow by r4victor in https://github.com/dstackai/dstack/pull/1388
* Support NVIDIA NVSwitch in `dstack` VM images by jvstme in https://github.com/dstackai/dstack/pull/1389
* Optimize loading `dstack` Docker images by jvstme in https://github.com/dstackai/dstack/pull/1391
* Improve Contributing by r4victor in https://github.com/dstackai/dstack/pull/1392
* Support running dstack server with Postgres by r4victor in https://github.com/dstackai/dstack/pull/1398
* Support H100 GPU on AWS by jvstme in https://github.com/dstackai/dstack/pull/1394
* Fix possible server freeze after `pool add-ssh` by jvstme in https://github.com/dstackai/dstack/pull/1396
* Add OCI eu-milan-1 region by jvstme in https://github.com/dstackai/dstack/pull/1400
* Prepare future OCI spot instances support by jvstme in https://github.com/dstackai/dstack/pull/1401
* Remove if backends configured check by r4victor in https://github.com/dstackai/dstack/pull/1404
* Include project_name in Instance and Volume by r4victor in https://github.com/dstackai/dstack/pull/1390

See more: https://github.com/dstackai/dstack/compare/0.18.4...0.18.5rc1

0.18.4

Google Cloud TPU

This update introduces initial support for Google Cloud TPU.

To request a TPU, specify the TPU architecture prefixed by `tpu-` (in `gpu` under `resources`):


type: task

0.18.4rc3

This is a preview build of the upcoming `0.18.4` release. See below to see what's new.

TPU

One of the major new features in this update is the initial support for Google Cloud TPU.

To request a TPU, you simply need to specify the system architecture of the required TPU prefixed by `tpu-` in `gpu`:


type: task

0.18.3

Oracle Cloud Infrastructure

With the new update, it is now possible to run workloads with your Oracle Cloud Infrastructure (OCI) account. The backend is called `oci` and can be configured as follows:

yaml
projects:
- name: main
backends:
- type: oci
creds:
type: default


The supported credential types include `default` and `client`. In case `default` is used, `dstack` automatically picks the default OCI credentials from `~/.oci/config`.

Just like other backends, `oci` supports dev environments, tasks, and services:

<img src="https://github.com/dstackai/static-assets/blob/main/static-assets/images/oci-vllm-task.gif?raw=true" width="750" />

> [!NOTE]
> Support for spot instances, multi-node tasks, and gateways is coming soon.

Find more documentation on using Oracle Cloud Infrastructure on the [reference page](https://dstack.ai/docs/reference/server/config.yml/#oci_1).

Retry policy

We have reworked how to configure the retry policy and how it is applied to runs. Here's an example:


type: task

commands:
- python train.py

retry:
on_events: [no-capacity]
duration: 2h


Now, if you run such a task, `dstack` will keep trying to find capacity within 2 hours. Once capacity is found, `dstack` will run the task.

The `on_events` property also supports `error` (in case the run fails with an error) and `interruption` (if the run is using a spot instance and it was interrupted).

Previously, `dstack` only allowed retries when spot instances were interrupted.

RunPod

Previously, the `runpod` backend only allowed the use of Docker images with `/bin/bash` or `/bin/sh` as the entrypoint. Thanks to the fix on the RunPod's side, `dstack` now allows the use of any Docker images.

Additionally, the `runpod` backend now also supports spot instances.

GCP

The `gcp` backend now also allows configuring VPCs:

yaml
projects:
- name: main
backends:
- type: gcp

project_id: my-awesome-project
creds:
type: default

vpc_name: my-custom-vpc


The VPC should belong to the same project. If you would like to use a shared VPC from another project, you can also specify `vpc_project_id`.

AWS

Last but not least, for the `aws` backend, it is now possible to configure VPCs for selected regions and use the default VPC in other regions:


projects:
- name: main
backends:
- type: aws
creds:
type: default

vpc_ids:
us-east-1: vpc-0a2b3c4d5e6f7g8h

default_vpcs: true


You just need to set `default_vpcs` to `true`.

Other changes

* Fix reverse server-gateway ssh tunnel by r4victor in https://github.com/dstackai/dstack/pull/1303
* Respect run filters for the `ssh` backend by r4victor in https://github.com/dstackai/dstack/pull/1278
* Support resubmitted runs in `dstack run` attached mode by r4victor in https://github.com/dstackai/dstack/pull/1285
* Do not run jobs on `unreachable` instances by r4victor in https://github.com/dstackai/dstack/pull/1286
* Show job termination reason in `dstack ps -v` by r4victor in https://github.com/dstackai/dstack/pull/1301
* Rename `dstack destroy` to `dstack delete` by r4victor in https://github.com/dstackai/dstack/pull/1275
* Prepare OCI backend for release by jvstme in https://github.com/dstackai/dstack/pull/1308
* [Docs] Improve the documentation of the Pydantic models 1293 by peterschmidt85 in https://github.com/dstackai/dstack/pull/1295
* [Docs] Fix Authorization header by jvstme in https://github.com/dstackai/dstack/pull/1305

Page 9 of 15

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.