You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+34-31Lines changed: 34 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [1.22.0] - 2026-03-20
11
+
10
12
### Added
11
13
12
14
- Job deployments (Batch jobs) service
@@ -25,30 +27,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
27
### Added
26
28
27
29
- Add `on_spot_discontinue` parameter for instance OS volumes. Previously the policy was always `'keep_detached'`, now it can be set to `'move_to_trash'` or `'delete_permanently'`:
28
-
```python
29
-
instance = verda_client.instances.create(
30
-
hostname='test-instance',
31
-
location=Locations.FIN_03,
32
-
instance_type='CPU.4V.16G',
33
-
description='test cpu instance',
34
-
image='ubuntu-22.04',
35
-
is_spot=True,
36
-
ssh_key_ids=[ssh_key.id],
37
-
os_volume=OSVolume(
38
-
name='test-os-volume-spot',
39
-
size=56,
40
-
on_spot_discontinue='delete_permanently',
41
-
),
42
-
)
43
-
```
30
+
```python
31
+
instance = verda_client.instances.create(
32
+
hostname='test-instance',
33
+
location=Locations.FIN_03,
34
+
instance_type='CPU.4V.16G',
35
+
description='test cpu instance',
36
+
image='ubuntu-22.04',
37
+
is_spot=True,
38
+
ssh_key_ids=[ssh_key.id],
39
+
os_volume=OSVolume(
40
+
name='test-os-volume-spot',
41
+
size=56,
42
+
on_spot_discontinue='delete_permanently',
43
+
),
44
+
)
45
+
```
44
46
- Add `delete_permanently` parameter for instance delete action. When set, `volume_ids` will be deleted in one go, skipping trash:
45
-
```python
46
-
verda.instances.action(
47
-
instance.id, 'delete',
48
-
volume_ids=[instance.os_volume_id],
49
-
delete_permanently=True,
50
-
)
51
-
```
47
+
```python
48
+
verda.instances.action(
49
+
instance.id, 'delete',
50
+
volume_ids=[instance.os_volume_id],
51
+
delete_permanently=True,
52
+
)
53
+
```
52
54
53
55
## [1.18.0] - 2025-12-31
54
56
@@ -169,16 +171,17 @@ verda.instances.create(...)
169
171
- Upgraded pytest
170
172
171
173
If you are working on the library itself, do a fresh clone or upgrade your local development environment in-place:
0 commit comments