Dstack

Latest version: v0.19.1

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

Scan your dependencies

Page 7 of 15

0.18.15rc1

On-prem and VM-based fleets improvements

* All available Nvidia [driver capabilities](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/1.16.0/docker-specialized.html#driver-capabilities) are now requested by default, which makes it possible to run GPU workloads requiring OpenGL/Vulkan/RT/Video Codec SDK libraries.
* Automatic container cleanup. Previously, when the run completed, either successfully or due to an error, its container was not deleted, which led to ever-increasing storage consumption. Now, only the last stopped container is preserved and is available until the next run is completed.

Major bug fixes

* Fixed a bug where under some conditions logs wouldn't be uploaded to CloudWatch Logs due to size limits.

Changelog

* [UX] Rename `--default` to `--yes` and `--no-default` to `--no` in `dstack config` and `dstack server` by peterschmidt85 in 1709
* Fix cli connection issue with TPU by Bihan in 1705
* Fix `dstack-shim` and `dstack-runner` release versions by un-def in 1704
* Request all Nvidia driver capabilities by un-def in 1714
* Add old container cleanup routine by un-def in 1706
* Write events to CloudWatch in batches by un-def in 1712
* [Docs] Document run diagnostic logs by r4victor in 1710
* [Docs] Added the `server deployment` guide, updated the `README.md` for the Docker Hub, fixed the scrolling issue by peterschmidt85

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.14...0.18.15rc1

0.18.14

Multi-replica server deployment

Previously, the `dstack` server only supported deploying a single instance (replica). However, with 0.18.14, you can now deploy multiple replicas, enabling high availability and zero-downtime updates

> [!NOTE]
> Multi-replica server deployment requires using Postgres instead of the default SQLite. To configure Postgres, set the `DSTACK_DATABASE_URL` environment variable.
>
> Make sure to update to version 0.18.14 before configuring multiple replicas.

Major bug-fixes
* [Bugfix] `dstack init --git-identity` doesn't accept backslashes in path on Windows by un-def in https://github.com/dstackai/dstack/pull/1686
* [Bugfix] Use `-tmpfs /dev/shm:rw,nosuid,nodev,exec,size=X` instead of `--shm-size=X` un-def in https://github.com/dstackai/dstack/pull/1690
* [Bugfix] `dstack-shim` is not updated when fleet is recreated by un-def in https://github.com/dstackai/dstack/pull/1698

Other
* [Bugfix] Fix `SSHAttach.reuse_ports_lock()` when no grep matches by un-def in https://github.com/dstackai/dstack/pull/1700
* [Bugfix] Fix logger exception on instance provisioning timeout by un-def in https://github.com/dstackai/dstack/pull/1697
* [Internal] Add `JobProvisioningData.base_backend` by r4victor in https://github.com/dstackai/dstack/pull/1682
* [Internal] Add `Run.error` by r4victor in https://github.com/dstackai/dstack/pull/1684
* [Internal] Return server_version in `/api/server/get_info` by r4victor in https://github.com/dstackai/dstack/pull/1685
* [Internal] Allow gateway to connect to replicated server by jvstme in https://github.com/dstackai/dstack/pull/1688
* [Internal] Adjust gateway management for multiple server replicas by r4victor in https://github.com/dstackai/dstack/pull/1691
* [Internal] Skip gateway update if gateway was updated recently by r4victor in https://github.com/dstackai/dstack/pull/1695
* [Internal] Remove redundant `logger.error` by r4victor in https://github.com/dstackai/dstack/pull/1702

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.13...0.18.14

0.18.13

Windows

You can now use the CLI on Windows (WSL 2 is not required).

Ensure that Git and OpenSSH are installed via [Git for Windows](https://git-scm.com/download/win).

During installation, select `Git from the command line and also from 3-rd party software`
(or `Use Git and optional Unix tools from the Command Prompt`), and `Use bundled OpenSSH` checkboxes.

Spot policy

Previously, dev environments used the `on-demand` spot policy, while tasks and services used `auto`. With this update, we've changed the default spot policy to always be `on-demand` for all configurations. Users will now need to explicitly specify the spot policy if they want to use spot instances.

Troubleshooting

The documentation now includes a [Troubleshooting](https://dstack.ai/docs/guides/troubleshooting/) guide with instructions on how to report issues.

Changelog

* [UX] Add Windows support by un-def in https://github.com/dstackai/dstack/pull/1675
* [UX] Changed the default `spot_policy` to `on-demand` by r4victor in https://github.com/dstackai/dstack/pull/1657 and https://github.com/dstackai/dstack/pull/1660
* [UI] Minor UI improvements by olgenn in https://github.com/dstackai/dstack/pull/1658
* [UX] Check SSH keys when SSH fleet creation before submission by r4victor in https://github.com/dstackai/dstack/pull/1661
* [Docs] Add TPU examples with Optimum TPU and vLLM by Bihan in https://github.com/dstackai/dstack/pull/1663
* [Troubleshooting] Do not auto-delete failed instances by r4victor in https://github.com/dstackai/dstack/pull/1665
* [Docs] Document SQLite to Postgres migration by r4victor in https://github.com/dstackai/dstack/pull/1678
* [Internal] Implement Postgres locking by r4victor in https://github.com/dstackai/dstack/pull/1651
* [Internal] Refactor `SSHTunnel` by jvstme in https://github.com/dstackai/dstack/pull/1669
* [Internal] Replace `String` with `Text` for long database columns by r4victor in https://github.com/dstackai/dstack/pull/1677
* [Internal] Take advisory lock on server init by r4victor in https://github.com/dstackai/dstack/pull/1674

**All commits**: https://github.com/dstackai/dstack/compare/0.18.12...0.18.13

0.18.12

Features

* Added support for ECDSA and Ed25519 keys for on-prem fleets by swsvc in 1641

Major bugfixes

* Fixed the order of CloudWatch log events in the web interface by un-def in 1613
* Fixed a bug where CloudWatch log events might not be displayed in the web inferface for old runs by un-def in 1652
* Prevent possible server freeze on SSH connections by jvstme in 1627

Other changes

* [CLI] Show run name before detaching by jvstme in 1607
* Increase time waiting for OCI Bare Metal instances by jvstme in 1630
* Update lambda regions by r4victor in 1634
* Change CloudWatch group check method by un-def in 1615
* Add Postgres tests by r4victor in 1628
* Fix lambda tests by r4victor in 1635
* [Docs] Fixed a bug where search included non-existing pages that land to 404 by peterschmidt85 in 1646
* [Docs] Introduce the Providers page by peterschmidt85 in 1653
* [Docs] Update RunPod & DataCrunch setup guides by jvstme in 1608
* [Docs] Add information about run log storage by un-def in 1621
* [Internal] Update packer templates docs by jvstme in 1619

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.11...0.18.12

0.18.12rc1

Features

* Added support for ECDSA and Ed25519 keys for on-prem fleets by swsvc in 1641

Major bugfixes

* Fixed the order of CloudWatch log events in the web interface by un-def in 1613
* Fixed a bug where CloudWatch log events might not be displayed in the web inferface for old runs by un-def in 1652
* Prevent possible server freeze on SSH connections by jvstme in 1627

Other changes

* [CLI] Show run name before detaching by jvstme in 1607
* Increase time waiting for OCI Bare Metal instances by jvstme in 1630
* Update lambda regions by r4victor in 1634
* Change CloudWatch group check method by un-def in 1615
* Add Postgres tests by r4victor in 1628
* Fix lambda tests by r4victor in 1635
* [Docs] Fixed a bug where search included non-existing pages that land to 404 by peterschmidt85 in 1646
* [Docs] Introduce the Providers page by peterschmidt85 in 1653
* [Docs] Update RunPod & DataCrunch setup guides by jvstme in 1608
* [Docs] Add information about run log storage by un-def in 1621
* [Internal] Update packer templates docs by jvstme in 1619

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.11...0.18.12rc1

0.18.11

AMD

With the latest update, you can now specify an AMD GPU under `resources`. Below is an example.

yaml
type: service
name: amd-service-tgi

image: ghcr.io/huggingface/text-generation-inference:sha-a379d55-rocm
env:
- HUGGING_FACE_HUB_TOKEN
- MODEL_ID=meta-llama/Meta-Llama-3.1-70B-Instruct
- TRUST_REMOTE_CODE=true
- ROCM_USE_FLASH_ATTN_V2_TRITON=true
commands:
- text-generation-launcher --port 8000
port: 8000

resources:
gpu: MI300X
disk: 150GB

spot_policy: auto

model:
type: chat
name: meta-llama/Meta-Llama-3.1-70B-Instruct
format: openai


> [!NOTE]
> AMD accelerators are currently supported only with the `runpod` backend. Support for on-prem fleets and more backends
> is coming soon.

GPU vendors

The `gpu` property now accepts the `vendor` attribute, with supported values: `nvidia`, `tpu`, and `amd`.

Alternatively, you can also prefix the GPU name with the vendor name followed by a colon, for example: `tpu:v2-8` or `amd:192GB`, etc. This change ensures consistency in GPU requirements configuration across vendors.

Encryption

`dstack` now supports encryption of sensitive data, such as backend credentials, user tokens, etc. Learn more on the [reference](https://dstack.ai/docs/reference/server/config.yml/#encryption_1) page.

Storing logs in AWS CloudWatch

By default, the `dstack` server stores run logs in `~/.dstack/server/projects/<project name>/logs`. To store logs in AWS CloudWatch, set the [DSTACK_SERVER_CLOUDWATCH_LOG_GROUP](https://dstack.ai/docs/reference/cli/#environment-variables) environment variable.

Project manager role

With this update, it's now possible to assign any user as a project manager. This role grants permission to manage project users but does not allow management of backends or resources.

Default permissions

By default, all users can create and manage their own projects. If you want only global admins to create projects, add the following to `~/.dstack/server/config.yml`:

yaml
default_permissions:
allow_non_admins_create_projects: false


Other

* [Feature] Allow to store logs in AWS CloudWatch by un-def in https://github.com/dstackai/dstack/pull/1597 and https://github.com/dstackai/dstack/pull/1597
* [Feature] Introduce default permissions 1559 by olgenn in https://github.com/dstackai/dstack/pull/1567
* [Feature] Support the `vendor` property under `resources.gpu` un-def in https://github.com/dstackai/dstack/pull/1558
* [Feature] Implement configurable default permissions by r4victor in https://github.com/dstackai/dstack/pull/1591
* [Bugfix] Provision AWS instances in all eligible availability zones by r4victor in https://github.com/dstackai/dstack/pull/1585
* [Bugfix] Support users without projects olgenn in https://github.com/dstackai/dstack/pull/1578
* [UI] Support `manager` project role olgenn in https://github.com/dstackai/dstack/pull/1566
* [Docs] Mention AMD GPUs, describe `gpu.vendor` property by un-def in https://github.com/dstackai/dstack/pull/1570
* [Bugfix] Fix global admin restricted by manager role by r4victor in https://github.com/dstackai/dstack/pull/1592
* [Bugfix] Fixed defect with incorrect setting project role in the UI by olgenn in https://github.com/dstackai/dstack/pull/1593
* [Bugfix] Abort provisioning fleet when parsing ssh key fails(1442) by swsvc in https://github.com/dstackai/dstack/pull/1589
* [UI] Ensure users can create projects 191 by olgenn in https://github.com/dstackai/dstack/pull/1554
* [UI] Use a toggle button switching themes 190 by olgenn in https://github.com/dstackai/dstack/pull/1556
* [UI] Fix the Logs component appearance for the dark theme by olgenn in https://github.com/dstackai/dstack/pull/1579
* [UI] Minor restyle of the side navigation by olgenn in https://github.com/dstackai/dstack/pull/1580
* [Bugfix] Avoid TGI error `logit_bias: invalid type` by jvstme in https://github.com/dstackai/dstack/pull/1557
* [Docs] Document projects 1547 by peterschmidt85 in https://github.com/dstackai/dstack/pull/1548
* [Docs] Document AMD support on RunPod by peterschmidt85 in https://github.com/dstackai/dstack/pull/1598
* [Internal] Approximate on-prem GPU memory size by jvstme in https://github.com/dstackai/dstack/pull/1588
* [Docs] Fix some of the broken links by jvstme in https://github.com/dstackai/dstack/pull/1602
* [Docs] Fix broken links in README.md by jvstme in https://github.com/dstackai/dstack/pull/1604
* [Docs] Document configuring logs storage in AWS CloudWatch un-def in https://github.com/dstackai/dstack/pull/1606
* [Docs] Publish the blog post and examples about AMD on RunPod by peterschmidt85 in https://github.com/dstackai/dstack/pull/1598
* [Internal] Force `root` in Kubernetes runs by jvstme in https://github.com/dstackai/dstack/pull/1555
* [Internal] Improve gateway auth issues troubleshooting by jvstme in https://github.com/dstackai/dstack/pull/1569
* [Feature] Implement "encryption at rest" by r4victor in https://github.com/dstackai/dstack/pull/1561
* [Feature] Implement project `manager` role by r4victor in https://github.com/dstackai/dstack/pull/1572
* [Feature] Implement user activation/deactivation by r4victor in https://github.com/dstackai/dstack/pull/1575
* [Internal] Reintroduce `tpu-` prefix; add `tpu` vendor alias by un-def in https://github.com/dstackai/dstack/pull/1587

New contributors
* swsvc made their first contribution in https://github.com/dstackai/dstack/pull/1589

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.10...0.18.11

Page 7 of 15

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.