Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,7 @@ <h2 id="storage_volumes"><code>storage_volumes</code></h2>
reside. Valid values for <code>type</code>: <code>lvm</code>,
<code>disk</code>, <code>partition</code> or <code>raid</code>. The
default is determined according to the OS and release (currently
<code>lvm</code>).</p>
<p><strong>NOTE</strong>: Support for managing partition volumes is
currently very limited, the role allows creating only a single partition
spanning the entire disk.</p></li>
<code>lvm</code>).</p></li>
<li><p><code>state</code></p>
<p>Valid values are <code>present</code> (default behavior) or
<code>absent</code>. Volumes marked as <code>absent</code> will be
Expand Down Expand Up @@ -464,6 +461,14 @@ <h2 id="storage_volumes"><code>storage_volumes</code></h2>
<li><p><code>thin_pool_size</code></p>
<p>Size for the thin pool. <code>thin_pool_size</code> format is
intended to be human-readable, e.g.: "30g", "50GiB".</p></li>
<li><p><code>part_type</code></p>
<p>This specifies partition type for newly created partitions on
MSDOS/MBR partition table. Supported values include
<code>primary</code>, <code>extended</code> and <code>logical</code>. If
not specified, first three partitions on the disk will be created as
primary and fourth one will be created as logical inside a newly created
extended partition. <code>part_type</code> is ignored on GPT partition
table.</p></li>
</ul>
<h2 id="storage_safe_mode"><code>storage_safe_mode</code></h2>
<p>When true (the default), an error will occur instead of automatically
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Changelog
=========

[1.19.0] - 2025-10-21
--------------------

### New Features

- feat: Add support for creating multiple partitions (#552)

### Bug Fixes

- fix: Allow running on systems without /etc/fstab present (#562)

### Other Changes

- ci: bump actions/checkout from 4 to 5 (#553)
- ci: rollout several recent changes to CI testing (#555)
- ci: support openSUSE Leap in qemu/kvm test matrix (#556)
- ci: use the new epel feature to enable EPEL for testing farm (#558)
- ci: use tox-lsr 3.12.0 for osbuild_config.yml feature (#560)
- ci: use JSON format for __bootc_validation (#561)
- ci: bump actions/setup-python from 5 to 6 (#563)
- ci: bump actions/github-script from 7 to 8 (#564)

[1.18.20] - 2025-08-01
--------------------

Expand Down
Loading