Update all Python dependencies #48

Open
renovate-bot wants to merge 1 commit from renovate/all-python-dependencies into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
authlib ==1.7.2 -> ==1.8.0 age confidence
click (changelog) ==8.4.2 -> ==8.5.0 age confidence
python-dotenv ==1.2.2 -> ==1.2.3 age confidence

Release Notes

authlib/authlib (authlib)

v1.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/authlib/authlib/compare/v1.7.2...v1.8.0

pallets/click (click)

v8.5.0

Compare Source

Released 2026-08-24

  • Add built-in shell completion support for PowerShell (Windows PowerShell
    5.1+ and pwsh 7+) alongside the existing bash, zsh, and fish
    completers. Use _FOO_BAR_COMPLETE=powershell_source foo-bar to generate
    the completion script. {issue}2672 {pr}3637
  • Supported versions of Windows enable ANSI terminal styles by default.
    Colorama is no longer a dependency and is not used. {issue}2986 {pr}3505
  • {class}Argument accepts a help parameter, and help output includes
    a Positional arguments section when argument help is available. {issue}2983 {pr}3473
  • confirm() and prompt() strip ANSI color and style codes from the
    prompt when the output stream does not support them, matching echo().
    This stripping was lost in 8.4.0 when {pr}2969 began writing the
    prompt with input() directly. {issue}3572 {pr}3653
  • Fix test failures when using pytest >= 9.1. {pr}3656
  • {class}Path with allow_dash=True no longer triggers a BytesWarning,
    an error under python -bb, when checking a value against the -
    convention. {issue}2877 {pr}3642
  • Add {func}custom_version_option, a --version option whose output is
    produced by a callback, covering cases {func}version_option intentionally
    does not. The feature set of {func}version_option is now frozen; see
    discussion #​3527. {pr}3581
  • style() and secho() no longer silently drop the 256-color index 0
    (black) passed as fg or bg, and now validate color arguments. Invalid
    colors raise a ValueError instead of a TypeError. {pr}3677
  • The automatic help option stores its value under the reserved name
    _click_default_help instead of help, so a parameter named help no
    longer breaks parsing. The new name is visible in
    {meth}Command.to_info_dict output. Parameters that overwrite each other's
    value trigger a warning: an argument sharing its name with another
    parameter, or any parameter claiming the reserved name. Options may still
    share a name to compete for the same value (feature switches).
    {issue}2819 {pr}3678
  • unstyle and the ANSI handling behind help-text wrapping now strip the full
    CSI escape-sequence grammar. {pr}3681
  • Streamline Option flag handling: the flag-kind, type, lazy-default and
    validation steps in Option.__init__ move into focused helpers, and
    flag_value and default keep their unset sentinel at construction
    (resolved lazily on read) so is UNSET reliably tells a user-supplied value
    from an auto-derived one. Runtime behavior is unchanged, but
    {meth}Parameter.to_info_dict now resolves default=True on a feature
    switch to its flag_value, matching what the function receives at call
    time. {pr}3641
  • {func}get_binary_stream and {func}get_text_stream are deprecated and
    will be removed in Click 9.0. {issue}3481 {pr}3695
  • The following click.utils names were never intentionally public and are
    now private (_-prefixed). The old names remain available with a
    DeprecationWarning until Click 9.0: LazyFile, KeepOpenFile,
    make_default_short_help, PacifyFlushWrapper, and safecall.
    {issue}3099 {pr}3695
  • Deprecate {meth}CliRunner.isolated_filesystem. It relies on
    {func}os.chdir, which mutates process-global state and is not
    thread-safe. The helper predates Python 3 and modern pytest: use a
    temporary directory ({class}tempfile.TemporaryDirectory or pytest's
    tmp_path fixture) with absolute paths instead. For running tests in
    parallel, use process-based isolation (such as pytest-xdist) rather
    than threads, since {meth}CliRunner.invoke also redirects the
    process-global standard streams. {issue}3501 {issue}3700 {pr}3704
  • prompt() is now generically typed and returns the type produced by
    type, value_proc, or a matching default instead of Any.
    {class}ParamType takes a second optional type parameter describing the
    input value it accepts (ParamType[int, str] for a type converting
    strings to integers), defaulting to Any. {pr}3407
  • {meth}Command.get_help_option_names returns the help option names in the
    order they were declared. {pr}3728
  • {func}get_pager_file yields a text stream on Windows again. The temporary
    file backend opened its file in binary mode, so writing a str to the pager
    raised TypeError: a bytes-like object is required, not 'str', and the
    color argument was ignored on that path. Regression introduced in 8.4.0
    by {pr}1572. {issue}3731 {issue}3732 {issue}3740 {pr}3739
  • {func}progressbar settles on its final position when update_min_steps
    does not divide the total. Steps below that threshold are applied when the
    bar finishes, so show_pos renders 20/20 rather than the last multiple
    it reached. {issue}3571 {pr}3769
  • An error raised while writing to the pager no longer gets replaced by
    PermissionError: [WinError 32] on Windows. The temporary file backend
    unlinked its file without closing it first, and Windows refuses to remove a
    file the process still holds open, so the cleanup failure masked the real
    exception. {issue}3731 {pr}3764
  • The temporary file the pager writes to on Windows is opened with the encoding
    {func}get_pager_file picked for the output stream, and with
    errors="replace" to match the pipe backend. Any text stdout can encode
    reaches the pager.
  • The temporary file pager backend forwards any parameters the user set in
    PAGER to the pager command instead of silently dropping them. On Windows,
    PAGER="less -R" now invokes less -R on the temporary file rather than
    bare less. {pr}3777
  • Improve raw mode detection by parsing the option tokens. {issue}3416
    {pr}3777
  • {func}edit accepts os.PathLike values for filename, in addition to
    strings. {issue}2869 {pr}3781
theskumar/python-dotenv (python-dotenv)

v1.2.3

Compare Source

Fixed
  • Strip a leading UTF-8 BOM from .env file contents so the first variable is no longer silently lost when the file is saved with BOM (e.g. by some JetBrains IDEs on Windows) by [@​h1whelan] in [#​640]
  • set_key now escapes backslashes, so values containing them (Windows paths, regular expressions) survive a write/read round-trip. Quoted values ending in an escaped backslash are no longer mis-parsed as an escaped quote, which used to swallow the following lines by [@​dchaudhari7177] in [#​680]
  • dotenv run now prints a friendly error instead of a traceback when no command is given by [@​bbc2] in [#​606]
  • Cache the parsed result for empty .env files so repeated dotenv_values/load_dotenv calls no longer re-read the file by [@​ReinerBRO] in [#​638]

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [authlib](https://github.com/authlib/authlib) | `==1.7.2` -> `==1.8.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/authlib/1.8.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/authlib/1.7.2/1.8.0?slim=true) | | [click](https://github.com/pallets/click) ([changelog](https://click.palletsprojects.com/page/changes/)) | `==8.4.2` -> `==8.5.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/click/8.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/click/8.4.2/8.5.0?slim=true) | | [python-dotenv](https://github.com/theskumar/python-dotenv) | `==1.2.2` -> `==1.2.3` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/python-dotenv/1.2.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/python-dotenv/1.2.2/1.2.3?slim=true) | --- ### Release Notes <details> <summary>authlib/authlib (authlib)</summary> ### [`v1.8.0`](https://github.com/authlib/authlib/releases/tag/v1.8.0) [Compare Source](https://github.com/authlib/authlib/compare/v1.7.2...v1.8.0) #### What's Changed - Prefer `id_token_signed_response_alg` client metadata to guess algs by [@&#8203;azmeuk](https://github.com/azmeuk) in [#&#8203;888](https://github.com/authlib/authlib/pull/888) - fix: Catch InvalidKeyIdError in RFC 9068 JWTBearerTokenValidator by [@&#8203;liudonggalaxy](https://github.com/liudonggalaxy) in [#&#8203;891](https://github.com/authlib/authlib/pull/891) - fix: make leeway configurable in JWTBearerTokenValidator by [@&#8203;mondi04](https://github.com/mondi04) in [#&#8203;903](https://github.com/authlib/authlib/pull/903) - feat: add default jti claim to sign\_jwt\_bearer\_assertion by [@&#8203;liudonggalaxy](https://github.com/liudonggalaxy) in [#&#8203;897](https://github.com/authlib/authlib/pull/897) - fix(oauth): cast sub claim to string in JWTBearerTokenGenerator by [@&#8203;levinKaus](https://github.com/levinKaus) in [#&#8203;911](https://github.com/authlib/authlib/pull/911) - Declare lower bounds for dependencies by [@&#8203;azmeuk](https://github.com/azmeuk) in [#&#8203;912](https://github.com/authlib/authlib/pull/912) - feat(client): use httpx2 instead of httpx by [@&#8203;levinKaus](https://github.com/levinKaus) in [#&#8203;909](https://github.com/authlib/authlib/pull/909) - Fix RFC7523 malformed claims handling by [@&#8203;azmeuk](https://github.com/azmeuk) in [#&#8203;916](https://github.com/authlib/authlib/pull/916) - Fix httpx oauth1 binary form data by [@&#8203;shc261392](https://github.com/shc261392) in [#&#8203;779](https://github.com/authlib/authlib/pull/779) - fix(starlette\_client): remove default= keyword from config.get calls by [@&#8203;aliaksei-protchanka](https://github.com/aliaksei-protchanka) in [#&#8203;770](https://github.com/authlib/authlib/pull/770) - Added client\_id parameter to AssertionClient by [@&#8203;vilmar-hillow](https://github.com/vilmar-hillow) in [#&#8203;476](https://github.com/authlib/authlib/pull/476) - fix(oauth): save device credential with authenticated client id by [@&#8203;arpitjain099](https://github.com/arpitjain099) in [#&#8203;908](https://github.com/authlib/authlib/pull/908) - fix(oauth1): correct protocol name in InsecureTransportError description by [@&#8203;RavSinghChandan](https://github.com/RavSinghChandan) in [#&#8203;919](https://github.com/authlib/authlib/pull/919) - fix(client): client can be flexible with jwt's header by [@&#8203;lepture](https://github.com/lepture) in [#&#8203;922](https://github.com/authlib/authlib/pull/922) - fix(oidc): omit claims when the value is None by [@&#8203;lepture](https://github.com/lepture) in [#&#8203;923](https://github.com/authlib/authlib/pull/923) #### New Contributors - [@&#8203;mondi04](https://github.com/mondi04) made their first contribution in [#&#8203;903](https://github.com/authlib/authlib/pull/903) - [@&#8203;levinKaus](https://github.com/levinKaus) made their first contribution in [#&#8203;911](https://github.com/authlib/authlib/pull/911) - [@&#8203;aliaksei-protchanka](https://github.com/aliaksei-protchanka) made their first contribution in [#&#8203;770](https://github.com/authlib/authlib/pull/770) - [@&#8203;vilmar-hillow](https://github.com/vilmar-hillow) made their first contribution in [#&#8203;476](https://github.com/authlib/authlib/pull/476) - [@&#8203;arpitjain099](https://github.com/arpitjain099) made their first contribution in [#&#8203;908](https://github.com/authlib/authlib/pull/908) - [@&#8203;RavSinghChandan](https://github.com/RavSinghChandan) made their first contribution in [#&#8203;919](https://github.com/authlib/authlib/pull/919) **Full Changelog**: <https://github.com/authlib/authlib/compare/v1.7.2...v1.8.0> </details> <details> <summary>pallets/click (click)</summary> ### [`v8.5.0`](https://github.com/pallets/click/blob/HEAD/CHANGES.md#Version-850) [Compare Source](https://github.com/pallets/click/compare/8.4.2...8.5.0) Released 2026-08-24 - Add built-in shell completion support for PowerShell (Windows PowerShell 5.1+ and pwsh 7+) alongside the existing `bash`, `zsh`, and `fish` completers. Use `_FOO_BAR_COMPLETE=powershell_source foo-bar` to generate the completion script. {issue}`2672` {pr}`3637` - Supported versions of Windows enable ANSI terminal styles by default. Colorama is no longer a dependency and is not used. {issue}`2986` {pr}`3505` - {class}`Argument` accepts a `help` parameter, and help output includes a `Positional arguments` section when argument help is available. {issue}`2983` {pr}`3473` - `confirm()` and `prompt()` strip ANSI color and style codes from the prompt when the output stream does not support them, matching `echo()`. This stripping was lost in `8.4.0` when {pr}`2969` began writing the prompt with `input()` directly. {issue}`3572` {pr}`3653` - Fix test failures when using pytest >= 9.1. {pr}`3656` - {class}`Path` with `allow_dash=True` no longer triggers a `BytesWarning`, an error under `python -bb`, when checking a value against the `-` convention. {issue}`2877` {pr}`3642` - Add {func}`custom_version_option`, a `--version` option whose output is produced by a callback, covering cases {func}`version_option` intentionally does not. The feature set of {func}`version_option` is now frozen; see [discussion #&#8203;3527](https://github.com/pallets/click/discussions/3527). {pr}`3581` - `style()` and `secho()` no longer silently drop the 256-color index `0` (black) passed as `fg` or `bg`, and now validate color arguments. Invalid colors raise a `ValueError` instead of a `TypeError`. {pr}`3677` - The automatic help option stores its value under the reserved name `_click_default_help` instead of `help`, so a parameter named `help` no longer breaks parsing. The new name is visible in {meth}`Command.to_info_dict` output. Parameters that overwrite each other's value trigger a warning: an argument sharing its name with another parameter, or any parameter claiming the reserved name. Options may still share a name to compete for the same value (feature switches). {issue}`2819` {pr}`3678` - `unstyle` and the ANSI handling behind help-text wrapping now strip the full CSI escape-sequence grammar. {pr}`3681` - Streamline `Option` flag handling: the flag-kind, type, lazy-default and validation steps in `Option.__init__` move into focused helpers, and `flag_value` and `default` keep their unset sentinel at construction (resolved lazily on read) so `is UNSET` reliably tells a user-supplied value from an auto-derived one. Runtime behavior is unchanged, but {meth}`Parameter.to_info_dict` now resolves `default=True` on a feature switch to its `flag_value`, matching what the function receives at call time. {pr}`3641` - {func}`get_binary_stream` and {func}`get_text_stream` are deprecated and will be removed in Click 9.0. {issue}`3481` {pr}`3695` - The following `click.utils` names were never intentionally public and are now private (`_`-prefixed). The old names remain available with a `DeprecationWarning` until Click 9.0: `LazyFile`, `KeepOpenFile`, `make_default_short_help`, `PacifyFlushWrapper`, and `safecall`. {issue}`3099` {pr}`3695` - Deprecate {meth}`CliRunner.isolated_filesystem`. It relies on {func}`os.chdir`, which mutates process-global state and is not thread-safe. The helper predates Python 3 and modern pytest: use a temporary directory ({class}`tempfile.TemporaryDirectory` or pytest's `tmp_path` fixture) with absolute paths instead. For running tests in parallel, use process-based isolation (such as `pytest-xdist`) rather than threads, since {meth}`CliRunner.invoke` also redirects the process-global standard streams. {issue}`3501` {issue}`3700` {pr}`3704` - `prompt()` is now generically typed and returns the type produced by `type`, `value_proc`, or a matching `default` instead of `Any`. {class}`ParamType` takes a second optional type parameter describing the input value it accepts (`ParamType[int, str]` for a type converting strings to integers), defaulting to `Any`. {pr}`3407` - {meth}`Command.get_help_option_names` returns the help option names in the order they were declared. {pr}`3728` - {func}`get_pager_file` yields a text stream on Windows again. The temporary file backend opened its file in binary mode, so writing a `str` to the pager raised `TypeError: a bytes-like object is required, not 'str'`, and the `color` argument was ignored on that path. Regression introduced in `8.4.0` by {pr}`1572`. {issue}`3731` {issue}`3732` {issue}`3740` {pr}`3739` - {func}`progressbar` settles on its final position when `update_min_steps` does not divide the total. Steps below that threshold are applied when the bar finishes, so `show_pos` renders `20/20` rather than the last multiple it reached. {issue}`3571` {pr}`3769` - An error raised while writing to the pager no longer gets replaced by `PermissionError: [WinError 32]` on Windows. The temporary file backend unlinked its file without closing it first, and Windows refuses to remove a file the process still holds open, so the cleanup failure masked the real exception. {issue}`3731` {pr}`3764` - The temporary file the pager writes to on Windows is opened with the encoding {func}`get_pager_file` picked for the output stream, and with `errors="replace"` to match the pipe backend. Any text stdout can encode reaches the pager. - The temporary file pager backend forwards any parameters the user set in `PAGER` to the pager command instead of silently dropping them. On Windows, `PAGER="less -R"` now invokes `less -R` on the temporary file rather than bare `less`. {pr}`3777` - Improve raw mode detection by parsing the option tokens. {issue}`3416` {pr}`3777` - {func}`edit` accepts `os.PathLike` values for `filename`, in addition to strings. {issue}`2869` {pr}`3781` </details> <details> <summary>theskumar/python-dotenv (python-dotenv)</summary> ### [`v1.2.3`](https://github.com/theskumar/python-dotenv/blob/HEAD/CHANGELOG.md#123---2026-08-16) [Compare Source](https://github.com/theskumar/python-dotenv/compare/v1.2.2...v1.2.3) ##### Fixed - Strip a leading UTF-8 BOM from `.env` file contents so the first variable is no longer silently lost when the file is saved with BOM (e.g. by some JetBrains IDEs on Windows) by \[[@&#8203;h1whelan](https://github.com/h1whelan)] in \[[#&#8203;640](https://github.com/theskumar/python-dotenv/issues/640)] - `set_key` now escapes backslashes, so values containing them (Windows paths, regular expressions) survive a write/read round-trip. Quoted values ending in an escaped backslash are no longer mis-parsed as an escaped quote, which used to swallow the following lines by \[[@&#8203;dchaudhari7177](https://github.com/dchaudhari7177)] in \[[#&#8203;680](https://github.com/theskumar/python-dotenv/issues/680)] - `dotenv run` now prints a friendly error instead of a traceback when no command is given by \[[@&#8203;bbc2](https://github.com/bbc2)] in \[[#&#8203;606](https://github.com/theskumar/python-dotenv/issues/606)] - Cache the parsed result for empty `.env` files so repeated `dotenv_values`/`load_dotenv` calls no longer re-read the file by \[[@&#8203;ReinerBRO](https://github.com/ReinerBRO)] in \[[#&#8203;638](https://github.com/theskumar/python-dotenv/issues/638)] </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4yOS40IiwidXBkYXRlZEluVmVyIjoiNDIuMjkuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGUiXX0=-->
Update dependency python-dotenv to v1.2.3
Some checks failed
Run Tests on PRs / Run tests (pull_request) Failing after 8m0s
3696d4ed5f
renovate-bot force-pushed renovate/all-python-dependencies from 3696d4ed5f
Some checks failed
Run Tests on PRs / Run tests (pull_request) Failing after 8m0s
to 57086ad2f0
Some checks failed
Run Tests on PRs / Run tests (pull_request) Failing after 21s
2026-08-26 16:02:15 +02:00
Compare
renovate-bot changed title from Update dependency python-dotenv to v1.2.3 to Update all Python dependencies 2026-08-26 16:02:16 +02:00
renovate-bot force-pushed renovate/all-python-dependencies from 57086ad2f0
Some checks failed
Run Tests on PRs / Run tests (pull_request) Failing after 21s
to 6278c11b07
Some checks failed
Run Tests on PRs / Run tests (pull_request) Failing after 21s
2026-08-30 16:00:55 +02:00
Compare
Some checks failed
Run Tests on PRs / Run tests (pull_request) Failing after 21s
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all-python-dependencies:renovate/all-python-dependencies
git switch renovate/all-python-dependencies

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/all-python-dependencies
git switch renovate/all-python-dependencies
git rebase main
git switch main
git merge --ff-only renovate/all-python-dependencies
git switch renovate/all-python-dependencies
git rebase main
git switch main
git merge --no-ff renovate/all-python-dependencies
git switch main
git merge --squash renovate/all-python-dependencies
git switch main
git merge --ff-only renovate/all-python-dependencies
git switch main
git merge renovate/all-python-dependencies
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
fredrik/homeassistant-immich-geotagger!48
No description provided.