Skip to content

Commit

Permalink
chore(main): release 3.1.0 (#460)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


##
[3.1.0](3.0.0...3.1.0)
(2024-04-15)


### Features

* assign primary ip to a server on create
([#465](#465))
([51afb23](51afb23))
* rename server `image_allow_deprecated` option
([#487](#487))
([d88ecdb](d88ecdb))
* use resources name or ID in server module arguments
([#484](#484))
([7fdefcf](7fdefcf))


### Bug Fixes

* improve actions waiting timeout based on data
([#488](#488))
([0709552](0709552))
* return sorted `alias_ips` in `server_network` module
([#458](#458))
([1ae6769](1ae6769))
* use empty string to remove server from its placement group
([#489](#489))
([00a4fdd](00a4fdd))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
  • Loading branch information
hcloud-bot authored Apr 15, 2024
1 parent 0709552 commit fd58b55
Show file tree
Hide file tree
Showing 12 changed files with 71 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"3.0.0"}
{".":"3.1.0"}
23 changes: 23 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======
Expand Down
29 changes: 29 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
16 changes: 16 additions & 0 deletions changelogs/dev-changelog.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 0 additions & 2 deletions changelogs/fragments/primary-ip-assigned-to-server.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/primary-ip-auto-delete.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/server-empty-string-arguments.yml

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions changelogs/fragments/server-use-id-or-name.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/sort-alias-ips-in-server-network.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

version = "3.0.0" # x-release-please-version
version = "3.1.0" # x-release-please-version

0 comments on commit fd58b55

Please sign in to comment.