mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
chore(main): release 6.3.0 (#763)
🤖 I have created a release *beep* *boop* --- ## [6.3.0](https://github.com/ansible-collections/hetzner.hcloud/compare/6.2.1...6.3.0) (2025-12-10) ### Features * add support for Storage Boxes ([#676](https://github.com/ansible-collections/hetzner.hcloud/issues/676)) ([5394c6f](5394c6f246)) --- 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
5394c6f246
commit
74878eebe9
7 changed files with 105 additions and 55 deletions
2
.github/release-please-manifest.json
vendored
2
.github/release-please-manifest.json
vendored
|
|
@ -1 +1 @@
|
|||
{".":"6.2.1"}
|
||||
{".":"6.3.0"}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,67 @@ Hetzner Cloud Ansible Collection Release Notes
|
|||
|
||||
.. contents:: Topics
|
||||
|
||||
v6.3.0
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
This release adds support for the new `Storage Box API`_.
|
||||
|
||||
Storage Box support is **experimental**, breaking changes may occur within minor releases.
|
||||
|
||||
See the `experimental tracking issue`_ for more details.
|
||||
|
||||
**Examples**
|
||||
|
||||
.. code:: yaml
|
||||
|
||||
- name: Create a Storage Box
|
||||
hetzner.hcloud.storage_box:
|
||||
name: backups
|
||||
storage_box_type: bx11
|
||||
location: fsn1
|
||||
password: my-secret
|
||||
access_settings:
|
||||
reachable_externally: true
|
||||
ssh_enabled: true
|
||||
state: present
|
||||
|
||||
- name: Create a Storage Box Subaccount
|
||||
hetzner.hcloud.storage_box_subaccount:
|
||||
storage_box: backups
|
||||
name: subaccount1
|
||||
home_directory: backups/subaccount1
|
||||
password: secret
|
||||
access_settings:
|
||||
readonly: true
|
||||
labels:
|
||||
env: prod
|
||||
state: present
|
||||
|
||||
- name: Take a Storage Box Snapshot
|
||||
hetzner.hcloud.storage_box_snapshot:
|
||||
storage_box: backups
|
||||
description: before app migration
|
||||
labels:
|
||||
env: prod
|
||||
state: present
|
||||
|
||||
.. _Storage Box API: https://docs.hetzner.cloud/reference/hetzner#storage-boxes
|
||||
.. _experimental tracking issue: https://github.com/ansible-collections/hetzner.hcloud/issues/756
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- storage_box - New module to create and manage Storage Boxes in Hetzner.
|
||||
- storage_box_info - New module to gather infos about Hetzner Storage Boxes.
|
||||
- storage_box_snapshot - New module to create and manage Storage Box Snapshots in Hetzner.
|
||||
- storage_box_snapshot_info - New module to gather infos about Hetzner Storage Box Snapshots.
|
||||
- storage_box_subaccount - New module to create and manage Storage Box Subaccounts in Hetzner.
|
||||
- storage_box_subaccount_info - New module to gather infos about Hetzner Storage Box Subaccounts.
|
||||
- storage_box_type_info - New module to gather infos about Hetzner Storage Box Types.
|
||||
|
||||
v6.2.1
|
||||
======
|
||||
|
||||
|
|
|
|||
|
|
@ -822,3 +822,37 @@ releases:
|
|||
fragments:
|
||||
- zone-rrsets-idempotency.yml
|
||||
release_date: '2025-11-17'
|
||||
6.3.0:
|
||||
changes:
|
||||
minor_changes:
|
||||
- storage_box - New module to create and manage Storage Boxes in Hetzner.
|
||||
- storage_box_info - New module to gather infos about Hetzner Storage Boxes.
|
||||
- storage_box_snapshot - New module to create and manage Storage Box Snapshots
|
||||
in Hetzner.
|
||||
- storage_box_snapshot_info - New module to gather infos about Hetzner Storage
|
||||
Box Snapshots.
|
||||
- storage_box_subaccount - New module to create and manage Storage Box Subaccounts
|
||||
in Hetzner.
|
||||
- storage_box_subaccount_info - New module to gather infos about Hetzner Storage
|
||||
Box Subaccounts.
|
||||
- storage_box_type_info - New module to gather infos about Hetzner Storage Box
|
||||
Types.
|
||||
release_summary: "This release adds support for the new `Storage Box API`_.\n\nStorage
|
||||
Box support is **experimental**, breaking changes may occur within minor releases.\n\nSee
|
||||
the `experimental tracking issue`_ for more details.\n\n**Examples**\n\n..
|
||||
code:: yaml\n\n - name: Create a Storage Box\n hetzner.hcloud.storage_box:\n
|
||||
\ name: backups\n storage_box_type: bx11\n location: fsn1\n
|
||||
\ password: my-secret\n access_settings:\n reachable_externally:
|
||||
true\n ssh_enabled: true\n state: present\n\n - name: Create
|
||||
a Storage Box Subaccount\n hetzner.hcloud.storage_box_subaccount:\n storage_box:
|
||||
backups\n name: subaccount1\n home_directory: backups/subaccount1\n
|
||||
\ password: secret\n access_settings:\n readonly: true\n
|
||||
\ labels:\n env: prod\n state: present\n\n - name:
|
||||
Take a Storage Box Snapshot\n hetzner.hcloud.storage_box_snapshot:\n
|
||||
\ storage_box: backups\n description: before app migration\n
|
||||
\ labels:\n env: prod\n state: present\n\n.. _Storage
|
||||
Box API: https://docs.hetzner.cloud/reference/hetzner#storage-boxes\n.. _experimental
|
||||
tracking issue: https://github.com/ansible-collections/hetzner.hcloud/issues/756\n"
|
||||
fragments:
|
||||
- storage-boxes.yml
|
||||
release_date: '2025-12-10'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# Changelog
|
||||
|
||||
## [6.3.0](https://github.com/ansible-collections/hetzner.hcloud/compare/6.2.1...6.3.0) (2025-12-10)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add support for Storage Boxes ([#676](https://github.com/ansible-collections/hetzner.hcloud/issues/676)) ([5394c6f](https://github.com/ansible-collections/hetzner.hcloud/commit/5394c6f2466d1d30193df643367918dada18be72))
|
||||
|
||||
## [6.2.1](https://github.com/ansible-collections/hetzner.hcloud/compare/6.2.0...6.2.1) (2025-11-17)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,52 +0,0 @@
|
|||
minor_changes:
|
||||
- storage_box - New module to create and manage Storage Boxes in Hetzner.
|
||||
- storage_box_info - New module to gather infos about Hetzner Storage Boxes.
|
||||
- storage_box_snapshot - New module to create and manage Storage Box Snapshots in Hetzner.
|
||||
- storage_box_snapshot_info - New module to gather infos about Hetzner Storage Box Snapshots.
|
||||
- storage_box_subaccount - New module to create and manage Storage Box Subaccounts in Hetzner.
|
||||
- storage_box_subaccount_info - New module to gather infos about Hetzner Storage Box Subaccounts.
|
||||
- storage_box_type_info - New module to gather infos about Hetzner Storage Box Types.
|
||||
release_summary: |
|
||||
This release adds support for the new `Storage Box API`_.
|
||||
|
||||
Storage Box support is **experimental**, breaking changes may occur within minor releases.
|
||||
|
||||
See the `experimental tracking issue`_ for more details.
|
||||
|
||||
**Examples**
|
||||
|
||||
.. code:: yaml
|
||||
|
||||
- name: Create a Storage Box
|
||||
hetzner.hcloud.storage_box:
|
||||
name: backups
|
||||
storage_box_type: bx11
|
||||
location: fsn1
|
||||
password: my-secret
|
||||
access_settings:
|
||||
reachable_externally: true
|
||||
ssh_enabled: true
|
||||
state: present
|
||||
|
||||
- name: Create a Storage Box Subaccount
|
||||
hetzner.hcloud.storage_box_subaccount:
|
||||
storage_box: backups
|
||||
name: subaccount1
|
||||
home_directory: backups/subaccount1
|
||||
password: secret
|
||||
access_settings:
|
||||
readonly: true
|
||||
labels:
|
||||
env: prod
|
||||
state: present
|
||||
|
||||
- name: Take a Storage Box Snapshot
|
||||
hetzner.hcloud.storage_box_snapshot:
|
||||
storage_box: backups
|
||||
description: before app migration
|
||||
labels:
|
||||
env: prod
|
||||
state: present
|
||||
|
||||
.. _Storage Box API: https://docs.hetzner.cloud/reference/hetzner#storage-boxes
|
||||
.. _experimental tracking issue: https://github.com/ansible-collections/hetzner.hcloud/issues/756
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
namespace: hetzner
|
||||
name: hcloud
|
||||
version: 6.2.1
|
||||
version: 6.3.0
|
||||
readme: README.md
|
||||
authors:
|
||||
- Hetzner Cloud (github.com/hetznercloud)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
version = "6.2.1" # x-release-please-version
|
||||
version = "6.3.0" # x-release-please-version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue