Skip to content

Commit 0bfe9e5

Browse files
committed
New version: 3.10.0
1 parent c087cea commit 0bfe9e5

File tree

6 files changed

+62
-5
lines changed

6 files changed

+62
-5
lines changed

blivet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Vratislav Podzimek <[email protected]>
2121
#
2222

23-
__version__ = '3.9.2'
23+
__version__ = '3.10.0'
2424

2525
import sys
2626
import importlib

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# built documents.
5050
#
5151
# The short X.Y version.
52-
version = '3.9.2'
52+
version = '3.10.0'
5353
# The full version, including alpha/beta/rc tags.
5454
release = version
5555

po

Submodule po updated 1 file

python-blivet.spec

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Summary: A python module for system storage configuration
22
Name: python-blivet
33
Url: https://storageapis.wordpress.com/projects/blivet
4-
Version: 3.9.2
4+
Version: 3.10.0
55

66
#%%global prerelease .b2
77
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
@@ -109,6 +109,40 @@ make DESTDIR=%{buildroot} install
109109
%{python3_sitelib}/*
110110

111111
%changelog
112+
* Fri May 10 2024 Vojtech Trefny <[email protected]> - 3.10.0-1
113+
- Added support for PV grow (japokorn)
114+
- misc: Add stratis-cli and stratisd to test dependencies (vtrefny)
115+
- tests: Add a base class for stratis tests (vtrefny)
116+
- Add a Stratis example with pool encryption using Clevis/Tang (vtrefny)
117+
- Clear VG UUID from PVs after removing the PV (#2278058) (vtrefny)
118+
- Use longer timeout for Stratis DBus calls (vtrefny)
119+
- safe-dbus: Allow using custom timeouts for the DBus calls (vtrefny)
120+
- Catch JSONDecodeError when parsing Stratis Clevis info (vtrefny)
121+
- Add support for unlocking locked Stratis pools with Clevis (vtrefny)
122+
- Add support for creating encrypted Stratis pool with Clevis (vtrefny)
123+
- Round Stratis Filesystem size down to the nearest sector (vtrefny)
124+
- Make sure to include stderr when gathering output of stratis tools (vtrefny)
125+
- Add support for adding new members to existing Stratis pool (vtrefny)
126+
- Base StratisPoolDevice on ContainerDevice instead of StorageDevice (vtrefny)
127+
- Ignore invalid/empty UUIDs for NVMe namespaces (vtrefny)
128+
- lvm: Use more generic exception for inconsistent PV sector sizes (vtrefny)
129+
- Do not allow creating stratis pools with different sector sizes (vtrefny)
130+
- availability: Fix starting DBus services (vtrefny)
131+
- fstab: Use 'mount_type' when writing filesystem type to fstab (vtrefny)
132+
- Add basic support for BitLocker devices (vtrefny)
133+
- nvme: Skip startup/write when NVMe plugin isn't available (vtrefny)
134+
- Fix scanning partitions on RAID arrays (#2269133) (vtrefny)
135+
- Add a test case with DDF BIOS RAID array (vtrefny)
136+
- tests: Try to get distro and version from /etc/os-release (vtrefny)
137+
- availability: Fix checking for DBus service availability (vtrefny)
138+
- ci: Update packit configuration for 3.10-devel (vtrefny)
139+
- Remove vim formatting comments (vtrefny)
140+
- tests: Do not ignore entire test files in pylint (vtrefny)
141+
- tests: Do not try to import mock and patch from mock (vtrefny)
142+
- Remove util.stringize and unicodeize functions (vtrefny)
143+
- Remove Python SIX usage (vtrefny)
144+
- Remove unused flags and do not read flags from boot command line (vtrefny)
145+
112146
* Thu Mar 28 2024 Vojtech Trefny <[email protected]> - 3.9.2-1
113147
- tests: Add a simple unit test for listing btrfs subvolumes (vtrefny)
114148
- Fix getting default subvolume ID for mounted btrfs volumes (vtrefny)

release_notes.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
3.10.0
2+
=======
3+
* `Support for creating Stratis Pools encrypted with Clevis/Tang`
4+
* `Support for adding new block devices to existing Stratis Pools`
5+
* `Automatic PV grow support`
6+
7+
Support for creating Stratis Pools encrypted with Clevis/Tang
8+
--------------------------------------------------------------
9+
Encrypted Stratis Pools can now be created with Clevis/Tang or
10+
TPM2 configured.
11+
12+
Support for adding new block devices to existing Stratis Pools
13+
---------------------------------------------------------------
14+
New block devices can now be added to existing Stratis Pools
15+
using the `ActionAddMember` action.
16+
17+
18+
Automatic PV grow support
19+
--------------------------
20+
LVM PVs can now be automatically grown to the size of the underlying
21+
block device with `ActionResizeFormat` using the new `grow_to_fill`
22+
property.
23+
124
3.9.0
225
======
326
* `Fstab support`_

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def make_release_tree(self, base_dir, files):
8585

8686

8787
setup(name='blivet',
88-
version='3.9.2',
88+
version='3.10.0',
8989
cmdclass={"sdist": blivet_sdist},
9090
description='Python module for system storage configuration',
9191
long_description=long_description,

0 commit comments

Comments
 (0)