Accepting request 1318181 from home:glaubitz:branches:devel:languages:python

- Update to 8.3.1
  * Don’t discard pager arguments by correctly using subprocess.Popen.
  * Replace Sentinel.UNSET default values by None as they’re passed
    through the Context.invoke() method.
  * Fix conversion of Sentinel.UNSET happening too early, which caused
    incorrect behavior for multiple parameters using the same name.
  * Hide Sentinel.UNSET values as None when looking up for other
    parameters through the context inside parameter callbacks.
  * Fix rendering when prompt and confirm parameter prompt_suffix is empty.
  * When Sentinel.UNSET is found during parsing, it will skip calls to
    type_cast_value.

OBS-URL: https://build.opensuse.org/request/show/1318181
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-click?expand=0&rev=67
This commit is contained in:
2025-11-17 13:42:26 +00:00
committed by Git OBS Bridge
parent 3b8ac119aa
commit 09a5d07652
4 changed files with 19 additions and 4 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Mon Nov 17 08:34:57 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 8.3.1
* Dont discard pager arguments by correctly using subprocess.Popen.
* Replace Sentinel.UNSET default values by None as theyre passed
through the Context.invoke() method.
* Fix conversion of Sentinel.UNSET happening too early, which caused
incorrect behavior for multiple parameters using the same name.
* Hide Sentinel.UNSET values as None when looking up for other
parameters through the context inside parameter callbacks.
* Fix rendering when prompt and confirm parameter prompt_suffix is empty.
* When Sentinel.UNSET is found during parsing, it will skip calls to
type_cast_value.
-------------------------------------------------------------------
Fri Sep 26 04:26:21 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>