New version 3.6.0
- pylint: Explicitly allow loading the _ped module from pyparted (vtrefny) - ci: Run static analysis on Ubuntu 22.04 (vtrefny) - tests: Create bigger devices for XFS testing (vtrefny) - Set XFS minimal size to 300 MiB (vtrefny) - Fix missing whitespaces around not keyword (vtrefny) - Remove the Blivet.roots attribute (vponcova) - packit: Set downstream_package_name to python-blivet (vtrefny) - packit: Add srpm_build_deps for SRPM builds in Copr (vtrefny) - tests: Fix message when skipping stratis tests (vtrefny) - tests: Tell pytest to ignore symlinks when gathering test cases (vtrefny) - Configure ids for Mock devices in populator_test (vtrefny) - Add storage tests for Stratis (vtrefny) - ci: Fix installing targetcli on Debian/Ubuntu (vtrefny) - tests: Add test for creating and attaching cache pools (vtrefny) - tests: Add storage tests for more LVM RAID levels (vtrefny) - tests: Add test for ActionAddMember/ActionRemoveMember (vtrefny) - tests: Add a test for creating and attaching a cache pool (vtrefny) - Mark LVM cache pool format as immutable (vtrefny) - tests: Skip test_lvcreate_type on CentOS/RHEL 9 (vtrefny) - Add a YAML config for skipping tests on specified distributions (vtrefny) - Add targetcli to the test dependencies playbook (vtrefny) - Add a simple LVM test case that uses real storage (vtrefny) - Add a test case that creates targetcli disks to run tests on (vtrefny) - Allow running action_test even if some dependencies are missing (vtrefny) - Use "fake" names for disks in DeviceTreeTestCase (vtrefny) - Change how we import LoopBackedTestCase in fs_test (vtrefny) - Add information about the new test suites to tests/README.rst (vtrefny) - Makefile: Add targets to run the two new test suites separately (vtrefny) - Fix typo in name of test_new_encrypted_stratis (vtrefny) - Patch access to lvs in stratis tests (vtrefny) - Fix pylint issues in the tests/pylint scripts (vtrefny) - Make sure LVM unit tests can run without dependencies (vtrefny) - Patch _pre_create in StorageDeviceMethodsTestCase.test_create (vtrefny) - Assure that tests that set LVM devices filter can run without root (vtrefny) - Fix running StratisFactoryTestCase as a non-root user (vtrefny) - Split the test suite into "unit" and "storage" tests (vtrefny) - Add support for attaching and creating LVM writecached LVs (vtrefny) - Add support for enabling/disabling compression/deduplication (vtrefny)
This commit is contained in:
parent
988302d172
commit
d25801089e
2
.gitignore
vendored
2
.gitignore
vendored
@ -145,3 +145,5 @@
|
||||
/blivet-3.4.4.tar.gz
|
||||
/blivet-3.5.0-tests.tar.gz
|
||||
/blivet-3.5.0.tar.gz
|
||||
/blivet-3.6.0.tar.gz
|
||||
/blivet-3.6.0-tests.tar.gz
|
||||
|
@ -19,11 +19,11 @@
|
||||
Summary: A python module for system storage configuration
|
||||
Name: python-blivet
|
||||
Url: https://storageapis.wordpress.com/projects/blivet
|
||||
Version: 3.5.0
|
||||
Version: 3.6.0
|
||||
|
||||
#%%global prerelease .b2
|
||||
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
||||
Release: 2%{?prerelease}%{?dist}
|
||||
Release: 1%{?prerelease}%{?dist}
|
||||
Epoch: 1
|
||||
License: LGPLv2+
|
||||
%global realname blivet
|
||||
@ -196,6 +196,46 @@ configuration.
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Tue Sep 20 2022 Vojtech Trefny <vtrefny@redhat.com> - 3.6.0-1
|
||||
- pylint: Explicitly allow loading the _ped module from pyparted (vtrefny)
|
||||
- ci: Run static analysis on Ubuntu 22.04 (vtrefny)
|
||||
- tests: Create bigger devices for XFS testing (vtrefny)
|
||||
- Set XFS minimal size to 300 MiB (vtrefny)
|
||||
- Fix missing whitespaces around not keyword (vtrefny)
|
||||
- Remove the Blivet.roots attribute (vponcova)
|
||||
- packit: Set downstream_package_name to python-blivet (vtrefny)
|
||||
- packit: Add srpm_build_deps for SRPM builds in Copr (vtrefny)
|
||||
- tests: Fix message when skipping stratis tests (vtrefny)
|
||||
- tests: Tell pytest to ignore symlinks when gathering test cases (vtrefny)
|
||||
- Configure ids for Mock devices in populator_test (vtrefny)
|
||||
- Add storage tests for Stratis (vtrefny)
|
||||
- ci: Fix installing targetcli on Debian/Ubuntu (vtrefny)
|
||||
- tests: Add test for creating and attaching cache pools (vtrefny)
|
||||
- tests: Add storage tests for more LVM RAID levels (vtrefny)
|
||||
- tests: Add test for ActionAddMember/ActionRemoveMember (vtrefny)
|
||||
- tests: Add a test for creating and attaching a cache pool (vtrefny)
|
||||
- Mark LVM cache pool format as immutable (vtrefny)
|
||||
- tests: Skip test_lvcreate_type on CentOS/RHEL 9 (vtrefny)
|
||||
- Add a YAML config for skipping tests on specified distributions (vtrefny)
|
||||
- Add targetcli to the test dependencies playbook (vtrefny)
|
||||
- Add a simple LVM test case that uses real storage (vtrefny)
|
||||
- Add a test case that creates targetcli disks to run tests on (vtrefny)
|
||||
- Allow running action_test even if some dependencies are missing (vtrefny)
|
||||
- Use "fake" names for disks in DeviceTreeTestCase (vtrefny)
|
||||
- Change how we import LoopBackedTestCase in fs_test (vtrefny)
|
||||
- Add information about the new test suites to tests/README.rst (vtrefny)
|
||||
- Makefile: Add targets to run the two new test suites separately (vtrefny)
|
||||
- Fix typo in name of test_new_encrypted_stratis (vtrefny)
|
||||
- Patch access to lvs in stratis tests (vtrefny)
|
||||
- Fix pylint issues in the tests/pylint scripts (vtrefny)
|
||||
- Make sure LVM unit tests can run without dependencies (vtrefny)
|
||||
- Patch _pre_create in StorageDeviceMethodsTestCase.test_create (vtrefny)
|
||||
- Assure that tests that set LVM devices filter can run without root (vtrefny)
|
||||
- Fix running StratisFactoryTestCase as a non-root user (vtrefny)
|
||||
- Split the test suite into "unit" and "storage" tests (vtrefny)
|
||||
- Add support for attaching and creating LVM writecached LVs (vtrefny)
|
||||
- Add support for enabling/disabling compression/deduplication (vtrefny)
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.5.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (blivet-3.5.0-tests.tar.gz) = 9b09785173256fac4ce57d448f1522fa0253a4e13b306f48679709277ac60f013c6938498b5303212cb5c1526841dd9eeda8241287617234655e30e75fe41620
|
||||
SHA512 (blivet-3.5.0.tar.gz) = 62d7e4aeadd4c8957795b149d205f05bca2caee559312f397bb7c17f18384963907d7b155431e0b6c5fa1587ad4ede66e38380a9448aa4551ef6676a1415c874
|
||||
SHA512 (blivet-3.6.0.tar.gz) = fd9012d22dafcefeaf1ea7c8142b2a5104cd5e864d62358594eb4dc68776a10111820b9c52c1237ff996dc991343101d65eaf8175007b0782d4b13ad25c74742
|
||||
SHA512 (blivet-3.6.0-tests.tar.gz) = e8fc7b311584a4053393108fc919dbfbf7a27b719cb2cd74c0848937cc309234abf5909797de61e9dae1da50bfbceed92393547a081268294989b92a895bae7b
|
||||
|
Loading…
Reference in New Issue
Block a user