1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 01:46:13 +01:00

release 1.4.0

This commit is contained in:
Daniel Mach 2023-10-04 11:49:04 +02:00
parent a16654663b
commit 62e4817ff5
3 changed files with 33 additions and 2 deletions

31
NEWS
View File

@ -1,3 +1,34 @@
- 1.4.0
- Command-line:
- Add rootless build support to 'build' command for 'kvm' and 'podman' vm types
- Print a hint to clean the build root after a failed build
- Avoid adding a newline to prompt in 'wipe' command
- Fix 'build' command to pass '--vm-type' option to the underlying build tool
- Add '--just-print-buildroot' option to print build root path and exit to 'build' command
- Add support for keep_packages_locked on request revoke
- Import zsh completition made by Holger Macht and improve it
- Use XDG locations in completion
- Fix 'search' command to resolve '-B .' to the current project
- Add '-M/--multibuild-package' option to 'checkconstraints' command
- Allow constraints file with remote request in 'checkconstraints' command
- Unify how the 'commit' and 'build' commands work with '--noservice' option
- Fix 'request show' command to print superseded_by information
- Fix 'service' command to support already documented 'r' abbreviation for 'run'
- Configuration:
- Implement 'exclude_files' and 'include_files' config options that allow skipping files in the 'checkout' command
- Fix api_host_options for custom CAs (cafile and capath options work again)
- Switch 'osc.conf.config' from dict to Options class with type checking
- Rename conf.Options.build_type to vm_type to be consistent with obs build and osc --vm-type option
- Update list of supported vm_type values in conf.Options.vm_type
- Remove any duplicated code loading configuration from ENV
- Library:
- Add 'osc.util.models' module implementing an alternative pydantic-like data validation
- Add 'osc.util.xdg' module for handling XDG paths
- Fix handling empty vm_type in Store.last_buildroot
- Spec:
- Install zsh completion
- Bulild and install oscrc man page
- 1.3.1
- Command-line:
- Fix string + int concatenation errors in 'build' command by using f-strings instead

View File

@ -35,7 +35,7 @@
%endif
Name: osc
Version: 1.3.1
Version: 1.4.0
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.3.1')
__version__ = git_version.get_version('1.4.0')
# vim: sw=4 et