Skip to content

Commit e268909

Browse files
ajmyyraAntti MyyräDarep
authored
Version 2.5.1: support for modern networking in IP helper functions (#132)
* Version 2.5.1: support for modern networking in IP helper functions Co-authored-by: AJ Kovalainen <ajk@upcloud.com> --------- Co-authored-by: Antti Myyrä <antti.myyra@upcloud.com> Co-authored-by: AJ Kovalainen <ajk@upcloud.com>
1 parent 05cc031 commit e268909

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
----
13+
14+
## [2.5.1] - 2023-09-19
15+
1216
### Added
13-
- Server deletion now support deleting attached storages in CloudManager.
14-
- Backup deletion policies can be given when deleting servers and storages.
1517

16-
----
18+
- Server object helper function `get_utility_ip` for fetching server utility IP
19+
20+
# Fixed
21+
22+
- Fixed server IP helper functions `get_public_ip` and `get_private_ip` to support private networking.
1723

1824
## [2.5.0] - 2023-07-31
1925

@@ -26,6 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2632
- Loadbalancer object support with labels included
2733
- Manager support for listing server plans
2834
- Manager support for load balancers with dictionary responses
35+
- Server deletion now supports deleting attached storages in CloudManager.
36+
- Backup deletion policies can be given when deleting servers and storages.
2937

3038
## [2.0.1] - 2023-03-22
3139

@@ -282,7 +290,7 @@ Move to X.Y.Z versioning and bump version from 0.1(.0) to 0.1.1
282290

283291
First release, available at https://pypi.python.org/pypi/upcloud-api-python
284292

285-
[Unreleased]: https://github.com/UpCloudLtd/upcloud-python-api/compare/v2.0.0...HEAD
293+
[Unreleased]: https://github.com/UpCloudLtd/upcloud-python-api/compare/v2.5.1...HEAD
286294
[0.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v0.1
287295
[0.1.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v0.1.1
288296
[0.2.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v0.2.0
@@ -305,3 +313,6 @@ First release, available at https://pypi.python.org/pypi/upcloud-api-python
305313
[1.0.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v1.0.0
306314
[1.0.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v1.0.1
307315
[2.0.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.0.0
316+
[2.0.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.0.1
317+
[2.5.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.5.0
318+
[2.5.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.5.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Alternatively, if you want the newest (possibly not yet released) stuff, clone t
2222
python setup.py install
2323
```
2424

25-
### Supported Python versions in API v2.5.0
25+
### Supported Python versions in API v2.5.1
2626

2727
- Python 3.7
2828
- Python 3.8

upcloud_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Python Interface to UpCloud's API.
33
"""
44

5-
__version__ = '2.5.0'
5+
__version__ = '2.5.1'
66
__author__ = 'Developers from UpCloud & elsewhere'
77
__author_email__ = 'hello@upcloud.com'
88
__maintainer__ = 'UpCloud'

0 commit comments

Comments
 (0)