Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 9, 2025

Bumps rich-click from 1.8.9 to 1.9.3.

Release notes

Sourced from rich-click's releases.

v1.9.3

  • Fixed subcommand discovery in help text. Behavior should now be the same as 1.8. [#304]

v1.9.3.dev0

  • Fixed subcommand discovery in help text. Behavior should now be the same as 1.8. [#304]

v1.9.2

  • Fixed legacy Windows rendering
  • Fix issue with parent click.Group and child rich_click.RichCommand error formatter not resolving.
  • Add headers to tables (by default these are not shown).

v1.9.2.dev0

  • Fixed legacy windows rendering
  • Fix issue with parent click.Group and child rich_click.RichCommand error formatter not resolving.
  • Add headers to tables (by default these are not shown).

v1.9.1

  • Fixed bug where running the rich-click CLI on a @rich_click.argument() sometimes caused arguments show up in the option panel when it shouldn't.
  • Slightly reduced horizontal padding of the modern theme format.
  • Fixed Click 8.3 compatibility with rendering defaults in help text.

v1.9.0

[!WARNING] Version 1.9.0 deprecates support for a lot of old versions of things:

  • Python 3.7 support is removed. The minimum supported Python version is 3.8.
  • Click 7 support is removed. The minimum supported Click version is 8.0.
  • Rich 10 and 11 support is removed. The minimum supported Rich version is 12.

[!WARNING] Version 1.9.0 introduces a minor breaking change: The DEFAULT_STRING, ENVVAR_STRING, REQUIRED_STRING, and DEPRECATED_STRING config options are now rendered with Text.from_markup. So for example, REQUIRED_STRING = "[required]" would be rendered as Rich markup. You must now escape the rich markup: REQUIRED_STRING = "\\[required]"

Big changes:

  • Themes! Check them out with rich-click --themes.
  • Typer support: rich-click typer_app --help.
  • RichPanels API introduced. This replaces the "groups" feature going forward (although groups will continue to be supported).
    • @click.option_panel()
    • @click.command_panel()
  • IDE tab completion support for decorators. Now you should no longer need to guess what goes in @click.option() or @click.command(context_settings=...) etc.
  • Help for arguments: help= is now a valid kwarg for @click.argument() decorator. See docs for more information.

Small changes:

  • "Deprecated" text properly handled and stylized in all places.
  • Command aliases: @cli.command(aliases=["foo"])
  • Improved rich-click CLI usability: improved patching and improved script detection+execution.

... (truncated)

Changelog

Sourced from rich-click's changelog.

Version 1.9.3 (2025-10-09)

  • Fixed subcommand discovery in help text. Behavior should now be the same as 1.8. [#304]

Version 1.9.2 (2025-10-04)

  • Fixed legacy windows rendering
  • Fix issue with parent click.Group and child rich_click.RichCommand error formatter not resolving.
  • Add headers to tables (by default these are not shown).

Version 1.9.1 (2025-09-20)

  • Fixed bug where running the rich-click CLI on a @rich_click.argument() sometimes caused arguments show up in the option panel when it shouldn't.
  • Slightly reduced horizontal padding of the modern theme format.
  • Fixed Click 8.3 compatibility with rendering defaults in help text.

Version 1.9.0 (2025-09-16)

[!WARNING] Version 1.9.0 deprecates support for a lot of old versions of things:

  • Python 3.7 support is removed. The minimum supported Python version is 3.8.
  • Click 7 support is removed. The minimum supported Click version is 8.0.
  • Rich 10 and 11 support is removed. The minimum supported Rich version is 12.

[!WARNING] Version 1.9.0 introduces a minor breaking change: The DEFAULT_STRING, ENVVAR_STRING, REQUIRED_STRING, and DEPRECATED_STRING config options are now rendered with Text.from_markup. So for example, REQUIRED_STRING = "[required]" would be rendered as Rich markup. You must now escape the rich markup: REQUIRED_STRING = "\\[required]"

Big changes:

  • Themes! Check them out with rich-click --themes.
  • Typer support: rich-click typer_app --help.
  • RichPanels API introduced. This replaces the "groups" feature going forward (although groups will continue to be supported).
    • @click.option_panel()
    • @click.command_panel()
  • IDE tab completion support for decorators. Now you should no longer need to guess what goes in @click.option() or @click.command(context_settings=...) etc.
  • Help for arguments: help= is now a valid kwarg for @click.argument() decorator. See docs for more information.

Small changes:

  • "Deprecated" text properly handled and stylized in all places.
  • Command aliases: @cli.command(aliases=["foo"])
  • Improved rich-click CLI usability: improved patching and improved script detection+execution.
  • context_settings={"help_to_stderr": True} support.
  • Added suite of padding_* config options to control padding.
    • Better newline handling:
      • Unordered lists create newlines in help text, e.g. "\n- foo\n- bar" or "\n* foo\n* bar"

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rich-click](https://github.com/ewels/rich-click) from 1.8.9 to 1.9.3.
- [Release notes](https://github.com/ewels/rich-click/releases)
- [Changelog](https://github.com/ewels/rich-click/blob/main/CHANGELOG.md)
- [Commits](ewels/rich-click@v1.8.9...v1.9.3)

---
updated-dependencies:
- dependency-name: rich-click
  dependency-version: 1.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Oct 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants