diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f86894ce..bf4f6039 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Hetzner Cloud Ansible Collection Release Notes .. contents:: Topics +v2.1.2 +====== + +Bugfixes +-------- + +- hcloud_firewall - The port argument is required when the firewall rule protocol is `udp` or `tcp`. +- hcloud_load_balancer_service - In the returned data, the invalid `health_check.http.certificates` field was renamed to `health_check.http.status_codes`. + v2.1.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 520a8dab..71cd763c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -408,3 +408,16 @@ releases: fragments: - fix-string-formatting-error-on-deprecated-server-type-warning.yml release_date: '2023-08-23' + 2.1.2: + changes: + bugfixes: + - hcloud_firewall - The port argument is required when the firewall rule protocol + is `udp` or `tcp`. + - 'hcloud_load_balancer_service - In the returned data, the invalid `health_check.http.certificates` + field was renamed to `health_check.http.status_codes`. + + ' + fragments: + - rename-load-balancer-service-http-health-check-dict.yaml + - require-firewall-port-argument-on-tcp-or-udp-protocol.yaml + release_date: '2023-10-04' diff --git a/changelogs/fragments/rename-load-balancer-service-http-health-check-dict.yaml b/changelogs/fragments/rename-load-balancer-service-http-health-check-dict.yaml deleted file mode 100644 index ec9ae518..00000000 --- a/changelogs/fragments/rename-load-balancer-service-http-health-check-dict.yaml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - > - hcloud_load_balancer_service - In the returned data, the invalid - `health_check.http.certificates` field was renamed to `health_check.http.status_codes`. diff --git a/changelogs/fragments/require-firewall-port-argument-on-tcp-or-udp-protocol.yaml b/changelogs/fragments/require-firewall-port-argument-on-tcp-or-udp-protocol.yaml deleted file mode 100644 index 8474078d..00000000 --- a/changelogs/fragments/require-firewall-port-argument-on-tcp-or-udp-protocol.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - hcloud_firewall - The port argument is required when the firewall rule protocol is `udp` or `tcp`.