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
+41-31Lines changed: 41 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,15 @@ 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
+
12
+
### Added
13
+
14
+
- Job deployments (Batch jobs) service
15
+
- Container types
16
+
- Cluster types
17
+
- Currency type
18
+
10
19
## [1.21.0] - 2026-03-02
11
20
12
21
### Fixed
@@ -18,30 +27,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
27
### Added
19
28
20
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'`:
21
-
```python
22
-
instance = verda_client.instances.create(
23
-
hostname='test-instance',
24
-
location=Locations.FIN_03,
25
-
instance_type='CPU.4V.16G',
26
-
description='test cpu instance',
27
-
image='ubuntu-22.04',
28
-
is_spot=True,
29
-
ssh_key_ids=[ssh_key.id],
30
-
os_volume=OSVolume(
31
-
name='test-os-volume-spot',
32
-
size=56,
33
-
on_spot_discontinue='delete_permanently',
34
-
),
35
-
)
36
-
```
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
+
```
37
46
- Add `delete_permanently` parameter for instance delete action. When set, `volume_ids` will be deleted in one go, skipping trash:
38
-
```python
39
-
verda.instances.action(
40
-
instance.id, 'delete',
41
-
volume_ids=[instance.os_volume_id],
42
-
delete_permanently=True,
43
-
)
44
-
```
47
+
```python
48
+
verda.instances.action(
49
+
instance.id, 'delete',
50
+
volume_ids=[instance.os_volume_id],
51
+
delete_permanently=True,
52
+
)
53
+
```
45
54
46
55
## [1.18.0] - 2025-12-31
47
56
@@ -162,16 +171,17 @@ verda.instances.create(...)
162
171
- Upgraded pytest
163
172
164
173
If you are working on the library itself, do a fresh clone or upgrade your local development environment in-place:
0 commit comments