1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-06 05:08:42 +02:00

release 1.9.1

This commit is contained in:
2024-08-27 13:52:02 +02:00
parent 2afae5d78a
commit 1647395d7f
3 changed files with 15 additions and 2 deletions

13
NEWS
View File

@@ -1,3 +1,16 @@
- 1.9.1
- Command-line:
- Add 'createrequest release' subcommand
- Change 'review list' command to omit requests with 'declined' state
- Fix `osc build --local-package`
- Fix typos
- Library:
- Fix extraction of the 'ar' archives when they don't contain header with long filenames
- Fix iterating through arch_list in core.get_repos_of_project()
- Check for None & len() of ET.Element instead of bool() in PackageBase.get_meta_value()
- Spec:
- Replace 'setup.py test' that was removed in setuptools 72 with 'python3 -m unittest'
- 1.9.0
- Security:
- Fix possibility to overwrite special files in .osc (CVE-2024-22034 boo#1225911)

View File

@@ -49,7 +49,7 @@
%endif
Name: osc
Version: 1.9.0
Version: 1.9.1
Release: 0
Summary: Command-line client for the Open Build Service
License: GPL-2.0-or-later

View File

@@ -13,7 +13,7 @@ __all__ = [
from .util import git_version
__version__ = git_version.get_version('1.9.0')
__version__ = git_version.get_version('1.9.1')
# vim: sw=4 et