mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-11 16:36:14 +01:00
release 1.8.0
This commit is contained in:
parent
682a7c4e2e
commit
8f634225c9
29
NEWS
29
NEWS
@ -1,3 +1,32 @@
|
||||
- 1.8.0
|
||||
- Command-line:
|
||||
- Improve 'submitrequest' command to inherit description from superseded request
|
||||
- Fix 'mv' command when renaming a file multiple times
|
||||
- Improve 'info' command to support projects
|
||||
- Improve 'getbinaries' command by accepting '-M' / '--multibuild-package' option outside checkouts
|
||||
- Add architecture filtering to 'release' command
|
||||
- Change 'results' command so the normal and multibuild packages have the same output
|
||||
- Change 'results' command to use csv writer instead of formatting csv as string
|
||||
- Add couple mutually exclusive options errors to 'results' command
|
||||
- Set a default value for 'results --format' only for the csv output
|
||||
- Add support for 'results --format' for the default text mode
|
||||
- Update help text for '--format' option in 'results' command
|
||||
- Add 'results --fail-on-error/-F' flag
|
||||
- Redirect venv warnings from stderr to debug output
|
||||
- Configuration:
|
||||
- Fix config parser to throw an exception on duplicate sections or options
|
||||
- Modify conf.get_config() to print permissions warning to stderr rather than stdout
|
||||
- Library:
|
||||
- Run check_store_version() in obs_scm.Store and fix related code in Project and Package
|
||||
- Forbid extracting files with absolute path from 'cpio' archives (boo#1122683)
|
||||
- Forbid extracting files with absolute path from 'ar' archives (boo#1122683)
|
||||
- Remove no longer valid warning from core.unpack_srcrpm()
|
||||
- Make obs_api.KeyinfoSslcert keyid and fingerprint fields optional
|
||||
- Fix return value in build build.create_build_descr_data()
|
||||
- Fix core.get_package_results() to obey 'multibuild_packages' argument
|
||||
- Tests:
|
||||
- Fix tests so they don't modify fixtures
|
||||
|
||||
- 1.7.0
|
||||
- Command-line:
|
||||
- Add 'person search' command
|
||||
|
@ -49,7 +49,7 @@
|
||||
%endif
|
||||
|
||||
Name: osc
|
||||
Version: 1.7.0
|
||||
Version: 1.8.0
|
||||
Release: 0
|
||||
Summary: Command-line client for the Open Build Service
|
||||
License: GPL-2.0-or-later
|
||||
|
@ -13,7 +13,7 @@ __all__ = [
|
||||
|
||||
|
||||
from .util import git_version
|
||||
__version__ = git_version.get_version('1.7.0')
|
||||
__version__ = git_version.get_version('1.8.0')
|
||||
|
||||
|
||||
# vim: sw=4 et
|
||||
|
Loading…
Reference in New Issue
Block a user