1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-05 07:03:38 +02:00

release 1.17.0

This commit is contained in:
2025-06-24 13:30:34 +02:00
parent 10f3ba264d
commit 5b0a760a5a
3 changed files with 33 additions and 2 deletions

31
NEWS
View File

@@ -1,3 +1,34 @@
- 1.17.0
- Command-line:
- Rename 'git-obs pr review' to 'git-obs pr review interactive'
- Add 'A)approve and schedule for merging' action to 'git obs pr review interactive'
- Add 'git-obs pr merge' command
- Add 'git-obs pr review accept' and 'git-obs pr review decline' commands
- Implement 'git-obs repo list' command
- Add '--export' option to 'git-obs pr list' and 'git-obs pr search'
- Fix crash during token validation in 'git-obs login {add,update}' when value is not specified
- Fix loading shell completions for 'git-obs'
- Fix 'git-obs api' by preventing of quoting the URL query part
- Add a possibility to override git-obs login entries from env
- Validate arguments in 'osc fork' command
- Revert "Improve 'updatepacmetafromspec' command to expand rpm spec macros by calling rpmspec to query the data"
- Improve 'updatepacmetafromspec' command to expand rpm spec macros by calling queryrecipe to query the data (bsc#1243722)
- Connection:
- Do not use pipe for ssh-keygen input
- Library:
- Refactor gitea_api to use objects with properties instead of raw JSON data
- Add GiteaModel base class and json_dumps() function that can serialize such objects
- Rename 'anonymous' argument in 'gitea_api.Repo.clone()' to 'use_http'
- Allow git in git-obs to be switched from SSH to http(s)
- Move yaml handling code to osc.util.yaml, add fallback to PyYaml
- Fix how types are compared in OscOptions.set_value_from_string()
- get_package_results: check for waiting states in all multibuild packages
- Extend _buildinfo file lookup to the current directory
- Fix git store when .git is a file with "gitdir: <path>" link
- Migrate store_* functions to use get_store instead of the original code
- Spec:
- Modify spec to use PyYAML on SLE15
- 1.16.0
- Command-line:
- Add 'osc rmkpac' subcommand

View File

@@ -57,7 +57,7 @@
%endif
Name: osc
Version: 1.16.0
Version: 1.17.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.16.0')
__version__ = git_version.get_version('1.17.0')
# vim: sw=4 et