mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
chore(main): release 6.1.0 (#723)
🤖 I have created a release *beep* *boop* --- ## [6.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/6.0.0...6.1.0) (2025-11-05) ### Features * add `txt_record` filter to format TXT records ([#721](https://github.com/ansible-collections/hetzner.hcloud/issues/721)) ([7ac361a](7ac361a9cc)) * attach server or load balancer to specific subnet ([#726](https://github.com/ansible-collections/hetzner.hcloud/issues/726)) ([66aaef7](66aaef7be4)) ### Bug Fixes * firewall idempotency with ipv6 addresses ([#722](https://github.com/ansible-collections/hetzner.hcloud/issues/722)) ([907a7fd](907a7fd73c)), closes [#708](https://github.com/ansible-collections/hetzner.hcloud/issues/708) --- 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
66aaef7be4
commit
ed5d8483d6
9 changed files with 48 additions and 10 deletions
2
.github/release-please-manifest.json
vendored
2
.github/release-please-manifest.json
vendored
|
|
@ -1 +1 @@
|
|||
{".":"6.0.0"}
|
||||
{".":"6.1.0"}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,21 @@ Hetzner Cloud Ansible Collection Release Notes
|
|||
|
||||
.. contents:: Topics
|
||||
|
||||
v6.1.0
|
||||
======
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- load_balancer_network - Add ``ip_range`` argument to attach a load balancer to a specific subnet.
|
||||
- server_network - Add ``ip_range`` argument to attach a load balancer to a specific subnet.
|
||||
- txt_record - Add new txt_record filter to help format TXT , e.g. ``"{{ 'v=spf1 include:_spf.example.net ~all' | hetzner.hcloud.txt_record }}"``.
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- firewall - Ensure idempotency when using non canonical ipv6 representation in Firewall rules.
|
||||
|
||||
v6.0.0
|
||||
======
|
||||
|
||||
|
|
|
|||
|
|
@ -769,3 +769,20 @@ releases:
|
|||
- drop-ansible-core-2.17.yml
|
||||
- drop-python-3.9.yml
|
||||
release_date: '2025-10-28'
|
||||
6.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- firewall - Ensure idempotency when using non canonical ipv6 representation
|
||||
in Firewall rules.
|
||||
minor_changes:
|
||||
- load_balancer_network - Add ``ip_range`` argument to attach a load balancer
|
||||
to a specific subnet.
|
||||
- server_network - Add ``ip_range`` argument to attach a load balancer to a
|
||||
specific subnet.
|
||||
- txt_record - Add new txt_record filter to help format TXT , e.g. ``"{{ 'v=spf1
|
||||
include:_spf.example.net ~all' | hetzner.hcloud.txt_record }}"``.
|
||||
fragments:
|
||||
- attach-to-network-ip-range.yml
|
||||
- firewall-rules-ipv6-idempotency.yml
|
||||
- txt-record-filter.yml
|
||||
release_date: '2025-11-05'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,18 @@
|
|||
# Changelog
|
||||
|
||||
## [6.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/6.0.0...6.1.0) (2025-11-05)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add `txt_record` filter to format TXT records ([#721](https://github.com/ansible-collections/hetzner.hcloud/issues/721)) ([7ac361a](https://github.com/ansible-collections/hetzner.hcloud/commit/7ac361a9cc35b39b166e5f3afaef4971c43ba013))
|
||||
* attach server or load balancer to specific subnet ([#726](https://github.com/ansible-collections/hetzner.hcloud/issues/726)) ([66aaef7](https://github.com/ansible-collections/hetzner.hcloud/commit/66aaef7be4b145364115723f88ce5725f1bc4499))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* firewall idempotency with ipv6 addresses ([#722](https://github.com/ansible-collections/hetzner.hcloud/issues/722)) ([907a7fd](https://github.com/ansible-collections/hetzner.hcloud/commit/907a7fd73c19fe543be98c69987fd33cd4b465de)), closes [#708](https://github.com/ansible-collections/hetzner.hcloud/issues/708)
|
||||
|
||||
## [6.0.0](https://github.com/ansible-collections/hetzner.hcloud/compare/5.4.0...6.0.0) (2025-10-28)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
minor_changes:
|
||||
- load_balancer_network - Add ``ip_range`` argument to attach a load balancer to a specific subnet.
|
||||
- server_network - Add ``ip_range`` argument to attach a load balancer to a specific subnet.
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- firewall - Ensure idempotency when using non canonical ipv6 representation in Firewall rules.
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- txt_record - Add new txt_record filter to help format TXT , e.g. ``"{{ 'v=spf1 include:_spf.example.net ~all' | hetzner.hcloud.txt_record }}"``.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
namespace: hetzner
|
||||
name: hcloud
|
||||
version: 6.0.0
|
||||
version: 6.1.0
|
||||
readme: README.md
|
||||
authors:
|
||||
- Hetzner Cloud (github.com/hetznercloud)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
version = "6.0.0" # x-release-please-version
|
||||
version = "6.1.0" # x-release-please-version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue