Skip to content

Commit

Permalink
New version: 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechtrefny committed Feb 8, 2023
1 parent 64a7d6d commit 44c70c8
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 6 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.6.1'
__version__ = '3.7.0'

import sys
import importlib
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@

# General information about the project.
project = 'Blivet'
copyright = '2013-2022, Red Hat, Inc.' # pylint: disable=redefined-builtin
copyright = '2013-2023, Red Hat, Inc.' # pylint: disable=redefined-builtin

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '3.6.1'
version = '3.7.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion po
Submodule po updated 4 files
+10 −10 de.po
+7 −4 ka.po
+54 −39 kk.po
+8 −13 zh_CN.po
36 changes: 35 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.6.1
Version: 3.7.0

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

%changelog
* Wed Feb 08 2023 Vojtech Trefny <[email protected]> - 3.7.0-1
- Remove unused BLOCKDEV_DM_RAID technology from tasks (vtrefny)
- tests: Force remove LVM VG /dev/ entry not removed by vgremove (vtrefny)
- Mark LUKS2 integrity devices as always controllable (vtrefny)
- Ignore parent dependencies during action execute (vtrefny)
- tests: Patch checking stratis pool metadata size (vtrefny)
- Remove support for DMRAID devices (vtrefny)
- Do not read DDF RAID UUID from udev (vtrefny)
- Check physical and logical block size when creating a LUKS format (vtrefny)
- Add separate properties for logical and physical block size (vtrefny)
- Use DMI product_name for t2 mac detection. (83884198+sharpenedblade)
- vmtests: add a --logs arg to capture blivet.log from failed tests (berrange)
- examples: illustrate GPT GUID usage in partitioning example (berrange)
- vmtests: add test for GPT part type UUID validation (berrange)
- blivet: allow 'mountpoint' to be passed to PartitionDevice (berrange)
- deviceaction: retain explicit part type UUID when formatting (berrange)
- devices/partition: add ability to auto apply a GPT UUID (berrange)
- gpt: add helper API for discoverable partition UUIDs (berrange)
- devices/partition: allow passing partition type UUID (berrange)
- formats/disklabel: allow passing partition type UUID (berrange)
- Add a forced delay to udev settle in chroot environments (vlad.bespalov)
- Update public API documentation (vtrefny)
- tests/README: Clarify various test classes (vtrefny)
- Rename unit_tests.storagetestcase to unit_tests.blivettestcase (vtrefny)
- Add additional identifiers to NVMeNamespaceDevice (vtrefny)
- Add transport and address to NVMeController info (vtrefny)
- Make sure we close the streams when reading a file (vtrefny)
- Style changes. (sharpenedblade)
- Do not report mactel on T2 macs. (sharpenedblade)
- Add function to check for T2 apple macs. (sharpenedblade)
- Add a basic read-only support for UDF filesystem (vtrefny)
- add loongarch support (mahailiang)
- Add a basic support for NVMe and NVMe Fabrics devices (vtrefny)

* Mon Nov 28 2022 Vojtech Trefny <[email protected]> - 3.6.1-1
- misc: Remove "warn: false" from Ansible "command" (vtrefny)
- spec: Change license string to the SPDX format required by Fedora (vtrefny)
Expand Down
28 changes: 28 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
3.7.0
======
* `NVMe and NVMe over Fabrics support`_
* `Discoverable partition IDs support`_
* `DMRAID support removed`_
* `Removed`_

NVMe and NVMe over Fabrics support
-----------------------------------
Basic support for NVMe and NVMe oF devices was added in this release. These
devices will now be correctly identified as either `NVMeNamespaceDevice` or
`NVMeFabricsNamespaceDevice`.

Discoverable partition IDs support
-----------------------------------
Blivet now support discoverable partitions specification to set well known
GPT partition GUIDs based on the selected mount point.

DMRAID support removed
-----------------------
Support for DMRAID devices was removed in this release. BIOS RAID
devices are now support by `mdadm`.

Removed
--------
* `DMRaidArrayDevice`
* `flags.noiswmd` and `flags.dmraid`

3.6.0
======
* `LVM writecache support`_
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def make_release_tree(self, base_dir, files):


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

0 comments on commit 44c70c8

Please sign in to comment.