diff --git a/NEWS b/NEWS index 8b2366de..9be9f2c5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +- 1.9.0 + - Security: + - Fix possibility to overwrite special files in .osc (CVE-2024-22034 boo#1225911) + Source files are now stored in the 'sources' subdirectory which prevents + name collisons. This requires changing version of '.osc' store to 2.0. + - Command-line: + - Introduce build --checks parameter + - Library: + - OscConfigParser: Remove automatic __name__ option + - 1.8.3 - Command-line: - Change 'repairwc' command to always run all repair steps diff --git a/contrib/osc.spec b/contrib/osc.spec index 6a289e6d..f65c6e98 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -49,7 +49,7 @@ %endif Name: osc -Version: 1.8.3 +Version: 1.9.0 Release: 0 Summary: Command-line client for the Open Build Service License: GPL-2.0-or-later diff --git a/osc/__init__.py b/osc/__init__.py index 7297142b..86516822 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ __all__ = [ from .util import git_version -__version__ = git_version.get_version('1.8.3') +__version__ = git_version.get_version('1.9.0') # vim: sw=4 et