Skip to content

Commit

Permalink
New version: 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechtrefny committed Aug 20, 2020
1 parent 725cd96 commit 3e0a447
Show file tree
Hide file tree
Showing 6 changed files with 100 additions and 5 deletions.
2 changes: 1 addition & 1 deletion blivet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Vratislav Podzimek <[email protected]>
#

__version__ = '3.2.2'
__version__ = '3.3.0'

import sys
import importlib
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# built documents.
#
# The short X.Y version.
version = '3.2.2'
version = '3.3.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion po
Submodule po updated 9 files
+36 −12 bn_IN.po
+33 −28 es.po
+14 −13 hu.po
+10 −10 id.po
+9 −6 kk.po
+90 −55 nb.po
+12 −11 sv.po
+6 −6 tr.po
+10 −10 zh_CN.po
62 changes: 61 additions & 1 deletion python-blivet.spec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
Summary: A python module for system storage configuration
Name: python-blivet
Url: https://storageapis.wordpress.com/projects/blivet
Version: 3.2.2
Version: 3.3.0

#%%global prerelease .b2
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
Expand Down Expand Up @@ -191,6 +191,66 @@ configuration.
%endif

%changelog
* Thu Aug 20 2020 Vojtech Trefny <[email protected]> - 3.3.0-1
- Account for pmspare grow when adjusting thinpool metadata size (vtrefny)
- Fix ignoring disk devices with parents or children (vtrefny)
- Terminology cleanup, part 3 (vtrefny)
- Terminology cleanups, part 2. (dlehman)
- Clean up some terminology. (dlehman)
- Add tests for udev.device_get_name for RAID devices (vtrefny)
- Fix name resolution for MD devices and partitions on them (vtrefny)
- Fix reading hidden sysfs attribute (vtrefny)
- Add support for specifying sector size for LUKS 2 devices (vtrefny)
- Do not ignore unknown/unsupported device mapper devices (vtrefny)
- Allow specifying custom hash function for LUKS 2 format (vtrefny)
- Ignore devices marked as hidden in sysfs (#1856974) (vtrefny)
- Add basic F2FS support (#1794950) (vtrefny)
- Make safe_device_name device type specific (vtrefny)
- Add exFAT to filesystems we recognize (vtrefny)
- Use xfs_db in read-only mode when getting XFS information (vtrefny)
- Add support for checking and fixing XFS using xfs_repair (vtrefny)
- Ignore zRAM devices in VMBackedTestCase (vtrefny)
- Add tests for XFS resize (vtrefny)
- Add support for XFS format grow (vtrefny)
- Typo fix (vtrefny)
- tests: Skip test_reset when running as non-root (vtrefny)
- tests: Patch LVM availability functions for some tests (vtrefny)
- tests: Patch LVM lvs call for some non-LVM tests (vtrefny)
- Do not propagate ped exception from add_partition (vtrefny)
- Do not use BlockDev.utils_have_kernel_module to check for modules (vtrefny)
- set allowed disk labels for s390x as standard ones (msdos + gpt) plus dasd
(dan)
- Do not use FSAVAIL and FSUSE%% options when running lsblk (vtrefny)
- Rewrite README and add it as a long_description in setup.py (vtrefny)
- Round down to nearest MiB value when writing ks parittion info.
(sbueno+anaconda)
- Add _teardown method to IntegrityDevice (vtrefny)
- Fix status for DM Integrity format (#1814005) (vtrefny)
- udev: Add function to get list of device's holders (vtrefny)
- Add basic support for LVM writecache devices (vtrefny)
- Add test for SwapSpace max size (vtrefny)
- Do not limit swap to 128 GiB (vtrefny)
- Fix possible UnicodeDecodeError when reading model from sysfs (vtrefny)
- Add install_requires and classifiers to setup.py (vtrefny)
- Import setuptools in setup.py to make bdist_wheel work (vtrefny)
- Set device.original_format to the new format in ActionCreateFormat (vtrefny)
- Fix resizable property for partitions (vtrefny)
- Update TODO. (dlehman)
- Ignore pycodestyle warning E741 (vtrefny)
- Skip test_mounting for filesystems that are not mountable (vtrefny)
- Sync specfile with downstream (japokorn)
- Make extended partitions resizable (vtrefny)
- Fix LV min size for resize in test_action_dependencies (vtrefny)
- Fix checking for filesystem support in action_test (vtrefny)
- Add basic support for LVM VDO devices (vtrefny)
- Update POT file in the Weblate repo during "make potfile" (vtrefny)
- Skip translation canary check if POT file is not available (vtrefny)
- Add blivet-weblate repository as a submodule (vtrefny)
- Remove Zanata from our build process (vtrefny)
- Remove po folder (vtrefny)
- More consistent lvm errors (API break) (japokorn)
- Added support for device tags (japokorn)

* Thu May 21 2020 Jan Pokorny <[email protected]> - 3.2.2-1
- Allow setting size for non-existing LUKS devices (vtrefny)
- Fix toggling container encryption in devicefactory (#1827254) (vtrefny)
Expand Down
35 changes: 35 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
3.3.0
======
* `Localization Platform Change`_
* `XFS Grow Support`_
* `Better Handling of Unknown Device Mapper Devices`_
* `F2FS Support`_
* `Removed`_

* `DMDevice.slave`, `LoopDevice.slave`, `LUKSDevice.slave`
* `blivet.errors.NoSlavesError`
* `blivet.udev.device_name_blacklist`

Localization Platform Change
-----------------------------
Localization platform has been changed from Zanata to Weblate.

XFS Grow Support
-----------------
XFS format can now be resized by Blivet.

Better Handling of Unknown Device Mapper Devices
-------------------------------------------------
Unknown/unsupported Device Mapper devices are now added to the
devicetree and no longer causes errors during populate.

F2FS Support
-------------
Blivet can now create F2FS filesystem.

Removed
--------
* `DMDevice.slave`, `LoopDevice.slave`, `LUKSDevice.slave`
* `blivet.errors.NoSlavesError`
* `blivet.udev.device_name_blacklist`

3.2.0
======
* `Alignment to Minimal I/O Size`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def make_release_tree(self, base_dir, files):


setup(name='blivet',
version='3.2.2',
version='3.3.0',
cmdclass={"sdist": blivet_sdist},
description='Python module for system storage configuration',
long_description=long_description,
Expand Down

0 comments on commit 3e0a447

Please sign in to comment.