mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
chore(main): release 3.1.0 (#460)
🤖 I have created a release *beep* *boop* --- ## [3.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/3.0.0...3.1.0) (2024-04-15) ### Features * assign primary ip to a server on create ([#465](https://github.com/ansible-collections/hetzner.hcloud/issues/465)) ([51afb23](51afb23166)) * rename server `image_allow_deprecated` option ([#487](https://github.com/ansible-collections/hetzner.hcloud/issues/487)) ([d88ecdb](d88ecdbccc)) * use resources name or ID in server module arguments ([#484](https://github.com/ansible-collections/hetzner.hcloud/issues/484)) ([7fdefcf](7fdefcfa02)) ### Bug Fixes * improve actions waiting timeout based on data ([#488](https://github.com/ansible-collections/hetzner.hcloud/issues/488)) ([0709552](07095529a4)) * return sorted `alias_ips` in `server_network` module ([#458](https://github.com/ansible-collections/hetzner.hcloud/issues/458)) ([1ae6769](1ae6769210)) * use empty string to remove server from its placement group ([#489](https://github.com/ansible-collections/hetzner.hcloud/issues/489)) ([00a4fdd](00a4fdd58a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
This commit is contained in:
parent
07095529a4
commit
fd58b559cf
12 changed files with 71 additions and 22 deletions
2
.github/release-please-manifest.json
vendored
2
.github/release-please-manifest.json
vendored
|
|
@ -1 +1 @@
|
|||
{".":"3.0.0"}
|
||||
{".":"3.1.0"}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,29 @@ Hetzner Cloud Ansible Collection Release Notes
|
|||
|
||||
.. contents:: Topics
|
||||
|
||||
v3.1.0
|
||||
======
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- primary_ip - Use the `server` option to assign a Primary IP being created to a server.
|
||||
- server - Allow passing Datacenter name or ID to the `datacenter` argument.
|
||||
- server - Allow passing Image name or ID to the `image` argument.
|
||||
- server - Allow passing Location name or ID to the `location` argument.
|
||||
- server - Allow passing SSH Keys names or IDs to the `ssh_keys` argument.
|
||||
- server - Allow passing Volume names or IDs to the `volumes` argument.
|
||||
- server - Renamed the `allow_deprecated_image` option to `image_allow_deprecated`.
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- primary_ip - Added the missing `auto_delete` field to the return values.
|
||||
- primary_ip - The `auto_delete` option is now used when creating or updating a Primary IP.
|
||||
- primary_ip_info - Added the missing `auto_delete` field to the return values.
|
||||
- server - Do not remove the server from its placement group when the `placement_group` argument is not specified.
|
||||
- server - Pass an empty string to the `placement_group` argument to remove a server from its placement group.
|
||||
- server_network - The returned `alias_ips` list is now sorted.
|
||||
|
||||
v3.0.0
|
||||
======
|
||||
|
|
|
|||
|
|
@ -513,3 +513,32 @@ releases:
|
|||
- fix-load-balancer-cookie-lifetime.yml
|
||||
- remove-inventory-api_token_env-option.yml
|
||||
release_date: '2024-02-05'
|
||||
3.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- primary_ip - Added the missing `auto_delete` field to the return values.
|
||||
- primary_ip - The `auto_delete` option is now used when creating or updating
|
||||
a Primary IP.
|
||||
- primary_ip_info - Added the missing `auto_delete` field to the return values.
|
||||
- server - Do not remove the server from its placement group when the `placement_group`
|
||||
argument is not specified.
|
||||
- server - Pass an empty string to the `placement_group` argument to remove
|
||||
a server from its placement group.
|
||||
- server_network - The returned `alias_ips` list is now sorted.
|
||||
minor_changes:
|
||||
- primary_ip - Use the `server` option to assign a Primary IP being created
|
||||
to a server.
|
||||
- server - Allow passing Datacenter name or ID to the `datacenter` argument.
|
||||
- server - Allow passing Image name or ID to the `image` argument.
|
||||
- server - Allow passing Location name or ID to the `location` argument.
|
||||
- server - Allow passing SSH Keys names or IDs to the `ssh_keys` argument.
|
||||
- server - Allow passing Volume names or IDs to the `volumes` argument.
|
||||
- server - Renamed the `allow_deprecated_image` option to `image_allow_deprecated`.
|
||||
fragments:
|
||||
- primary-ip-assigned-to-server.yml
|
||||
- primary-ip-auto-delete.yml
|
||||
- server-empty-string-arguments.yml
|
||||
- server-rename-image_allow_deprecated-argument.yml
|
||||
- server-use-id-or-name.yml
|
||||
- sort-alias-ips-in-server-network.yml
|
||||
release_date: '2024-04-15'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,21 @@
|
|||
# Changelog
|
||||
|
||||
## [3.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/3.0.0...3.1.0) (2024-04-15)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* assign primary ip to a server on create ([#465](https://github.com/ansible-collections/hetzner.hcloud/issues/465)) ([51afb23](https://github.com/ansible-collections/hetzner.hcloud/commit/51afb2316639d3b996b29544534aaeff6122904c))
|
||||
* rename server `image_allow_deprecated` option ([#487](https://github.com/ansible-collections/hetzner.hcloud/issues/487)) ([d88ecdb](https://github.com/ansible-collections/hetzner.hcloud/commit/d88ecdbccc0da0a61338d23673adf6a6fded211c))
|
||||
* use resources name or ID in server module arguments ([#484](https://github.com/ansible-collections/hetzner.hcloud/issues/484)) ([7fdefcf](https://github.com/ansible-collections/hetzner.hcloud/commit/7fdefcfa0243b84a3edb58566ec710e4f4a6db8d))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* improve actions waiting timeout based on data ([#488](https://github.com/ansible-collections/hetzner.hcloud/issues/488)) ([0709552](https://github.com/ansible-collections/hetzner.hcloud/commit/07095529a4a23dc380ab4678963da9dceb665fd4))
|
||||
* return sorted `alias_ips` in `server_network` module ([#458](https://github.com/ansible-collections/hetzner.hcloud/issues/458)) ([1ae6769](https://github.com/ansible-collections/hetzner.hcloud/commit/1ae6769210b1a845084c88c58a545bebc067ca48))
|
||||
* use empty string to remove server from its placement group ([#489](https://github.com/ansible-collections/hetzner.hcloud/issues/489)) ([00a4fdd](https://github.com/ansible-collections/hetzner.hcloud/commit/00a4fdd58aba74ab7e8e1a26ff59beea452c2add))
|
||||
|
||||
## [3.0.0](https://github.com/ansible-collections/hetzner.hcloud/compare/2.5.0...3.0.0) (2024-02-05)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- primary_ip - Use the `server` option to assign a Primary IP being created to a server.
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
bugfixes:
|
||||
- primary_ip - Added the missing `auto_delete` field to the return values.
|
||||
- primary_ip_info - Added the missing `auto_delete` field to the return values.
|
||||
- primary_ip - The `auto_delete` option is now used when creating or updating a Primary IP.
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
bugfixes:
|
||||
- server - Do not remove the server from its placement group when the `placement_group` argument is not specified.
|
||||
- server - Pass an empty string to the `placement_group` argument to remove a server from its placement group.
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- server - Renamed the `allow_deprecated_image` option to `image_allow_deprecated`.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
minor_changes:
|
||||
- server - Allow passing Datacenter name or ID to the `datacenter` argument.
|
||||
- server - Allow passing Image name or ID to the `image` argument.
|
||||
- server - Allow passing Location name or ID to the `location` argument.
|
||||
- server - Allow passing SSH Keys names or IDs to the `ssh_keys` argument.
|
||||
- server - Allow passing Volume names or IDs to the `volumes` argument.
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- server_network - The returned `alias_ips` list is now sorted.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
namespace: hetzner
|
||||
name: hcloud
|
||||
version: 3.0.0
|
||||
version: 3.1.0
|
||||
readme: README.md
|
||||
authors:
|
||||
- Hetzner Cloud (github.com/hetznercloud)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
version = "3.0.0" # x-release-please-version
|
||||
version = "3.1.0" # x-release-please-version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue