fix(deps): update dependency typer to ^0.16.0 #35

Open
renovate[bot] wants to merge 1 commit from renovate/typer-0.x into master
renovate[bot] commented 2024-11-07 21:30:16 +00:00 (Migrated from github.com)

This PR contains the following updates:

Package Change Age Confidence
typer (changelog) ^0.12.3 -> ^0.16.0 age confidence

Release Notes

fastapi/typer (typer)

v0.16.0

Compare Source

Upgrades

When using the CliRunner with Click < 8.2, to be able to access the stderr output, you needed to set the mix_stderr parameter to True. Since Click 8.2 (and Typer 0.160 this release supporting it) this is no longer necessary, so this parameter has been removed.

Refactors
Internal

v0.15.4

Compare Source

Upgrades
  • 📌 Pin Click to < 8.2, compatibility for Click >= 8.2 will be added in a future version. PR #​1225 by @​tiangolo.

v0.15.3

Compare Source

Fixes
  • 🐛 Ensure that autocompletion works for Path arguments/options. PR #​1138 by @​svlandeg.
  • 🐛 Fix newline after header in help text, and add more tests for the behaviour of rich_markup_mode . PR #​964 by @​svlandeg.
Internal

v0.15.2

Compare Source

Features
Fixes
Refactors
Docs
Internal

v0.15.1

Compare Source

Features
  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #​974 by @​svlandeg.
Docs
Internal

v0.15.0

Compare Source

Features
Internal

v0.14.0

Compare Source

Breaking Changes
  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #​1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer

app = typer.Typer()
users_app = typer.Typer()

app.add_typer(users_app)

@&#8203;users_app.callback()
def users():  # <-- This was the inferred command group name
    """
    Manage users in the app.
    """

@&#8203;users_app.command()
def create(name: str):
    print(f"Creating user: {name}")

...the command group would be named users, based on the name of the function def users().

Now you need to set it explicitly:

import typer

app = typer.Typer()
users_app = typer.Typer()

app.add_typer(users_app, name="users")  # <-- Explicitly set the command group name

@&#8203;users_app.callback()
def users():
    """
    Manage users in the app.
    """

@&#8203;users_app.command()
def create(name: str):
    print(f"Creating user: {name}")

Updated docs SubCommand Name and Help.

Note: this change will enable important features in the next release. 🤩

Internal

v0.13.1

Compare Source

Features
Refactors
Docs
Internal

v0.13.0

Compare Source

Features
Fixes
Refactors
Internal

v0.12.5

Compare Source

Features
Fixes
Refactors
Docs
Internal

v0.12.4

Compare Source

Features
Fixes
Docs
Internal

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [typer](https://redirect.github.com/fastapi/typer) ([changelog](https://typer.tiangolo.com/release-notes/)) | `^0.12.3` -> `^0.16.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/typer/0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/typer/0.12.3/0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>fastapi/typer (typer)</summary> ### [`v0.16.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.16.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.15.4...0.16.0) ##### Upgrades - ⬆️ Add compatibility with Click 8.2. PR [#&#8203;1222](https://redirect.github.com/fastapi/typer/pull/1222) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). When using the `CliRunner` with Click < 8.2, to be able to access the `stderr` output, you needed to set the `mix_stderr` parameter to `True`. Since Click 8.2 (and Typer 0.160 this release supporting it) this is no longer necessary, so this parameter has been removed. ##### Refactors - ✅ Refactor tests for compatibility with Click 8.2. PR [#&#8203;1230](https://redirect.github.com/fastapi/typer/pull/1230) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ##### Internal - 🔧 Remove Google Analytics. PR [#&#8203;1229](https://redirect.github.com/fastapi/typer/pull/1229) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ### [`v0.15.4`](https://redirect.github.com/fastapi/typer/releases/tag/0.15.4) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.15.3...0.15.4) ##### Upgrades - 📌 Pin Click to < 8.2, compatibility for Click >= 8.2 will be added in a future version. PR [#&#8203;1225](https://redirect.github.com/fastapi/typer/pull/1225) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ### [`v0.15.3`](https://redirect.github.com/fastapi/typer/releases/tag/0.15.3) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.15.2...0.15.3) ##### Fixes - 🐛 Ensure that autocompletion works for `Path` arguments/options. PR [#&#8203;1138](https://redirect.github.com/fastapi/typer/pull/1138) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 🐛 Fix newline after header in help text, and add more tests for the behaviour of `rich_markup_mode` . PR [#&#8203;964](https://redirect.github.com/fastapi/typer/pull/964) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Internal - ⬆ Bump astral-sh/setup-uv from 5 to 6. PR [#&#8203;1203](https://redirect.github.com/fastapi/typer/pull/1203) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.11.2 to 0.11.6. PR [#&#8203;1200](https://redirect.github.com/fastapi/typer/pull/1200) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1196](https://redirect.github.com/fastapi/typer/pull/1196) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.11.1 to 0.11.2. PR [#&#8203;1186](https://redirect.github.com/fastapi/typer/pull/1186) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1187](https://redirect.github.com/fastapi/typer/pull/1187) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.11.0 to 0.11.1. PR [#&#8203;1185](https://redirect.github.com/fastapi/typer/pull/1185) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.9.10 to 0.11.0. PR [#&#8203;1180](https://redirect.github.com/fastapi/typer/pull/1180) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1181](https://redirect.github.com/fastapi/typer/pull/1181) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1176](https://redirect.github.com/fastapi/typer/pull/1176) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.9.9 to 0.9.10. PR [#&#8203;1175](https://redirect.github.com/fastapi/typer/pull/1175) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1171](https://redirect.github.com/fastapi/typer/pull/1171) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.9.7 to 0.9.9. PR [#&#8203;1166](https://redirect.github.com/fastapi/typer/pull/1166) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ✏️ Fix typo in test name. PR [#&#8203;1165](https://redirect.github.com/fastapi/typer/pull/1165) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ### [`v0.15.2`](https://redirect.github.com/fastapi/typer/releases/tag/0.15.2) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.15.1...0.15.2) ##### Features - ✨ Allow custom styles for commands in help output. PR [#&#8203;1103](https://redirect.github.com/fastapi/typer/pull/1103) by [@&#8203;TheTechromancer](https://redirect.github.com/TheTechromancer). - ✨ Avoid the unnecessary import of `typing_extensions` in newer Python versions. PR [#&#8203;1048](https://redirect.github.com/fastapi/typer/pull/1048) by [@&#8203;horta](https://redirect.github.com/horta). ##### Fixes - 🐛 Fix shell completions for the fish shell. PR [#&#8203;1069](https://redirect.github.com/fastapi/typer/pull/1069) by [@&#8203;goraje](https://redirect.github.com/goraje). ##### Refactors - 🚚 Rename test to corner-cases to make it more explicit. PR [#&#8203;1083](https://redirect.github.com/fastapi/typer/pull/1083) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ##### Docs - ✏️ Fix small typos in the tutorial documentation. PR [#&#8203;1137](https://redirect.github.com/fastapi/typer/pull/1137) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 📝 Update optional CLI argument section in tutorial with `Annotated`. PR [#&#8203;983](https://redirect.github.com/fastapi/typer/pull/983) by [@&#8203;gkeuccsr](https://redirect.github.com/gkeuccsr). - 📝 Clarify the need for `mix_stderr` when accessing the output of `stderr` in tests. PR [#&#8203;1045](https://redirect.github.com/fastapi/typer/pull/1045) by [@&#8203;mrchrisadams](https://redirect.github.com/mrchrisadams). ##### Internal - 🔧 Add support for Python 3.13, tests in CI and add PyPI trove classifier. PR [#&#8203;1091](https://redirect.github.com/fastapi/typer/pull/1091) by [@&#8203;edgarrmondragon](https://redirect.github.com/edgarrmondragon). - ⬆ Bump ruff from 0.9.6 to 0.9.7. PR [#&#8203;1161](https://redirect.github.com/fastapi/typer/pull/1161) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1162](https://redirect.github.com/fastapi/typer/pull/1162) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.9.5 to 0.9.6. PR [#&#8203;1153](https://redirect.github.com/fastapi/typer/pull/1153) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1151](https://redirect.github.com/fastapi/typer/pull/1151) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.9.4 to 0.9.5. PR [#&#8203;1146](https://redirect.github.com/fastapi/typer/pull/1146) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1142](https://redirect.github.com/fastapi/typer/pull/1142) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.9.3 to 0.9.4. PR [#&#8203;1139](https://redirect.github.com/fastapi/typer/pull/1139) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1135](https://redirect.github.com/fastapi/typer/pull/1135) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.9.1 to 0.9.3. PR [#&#8203;1136](https://redirect.github.com/fastapi/typer/pull/1136) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1130](https://redirect.github.com/fastapi/typer/pull/1130) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.8.6 to 0.9.1. PR [#&#8203;1118](https://redirect.github.com/fastapi/typer/pull/1118) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.12.3 to 1.12.4. PR [#&#8203;1132](https://redirect.github.com/fastapi/typer/pull/1132) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.49 to 9.5.50. PR [#&#8203;1129](https://redirect.github.com/fastapi/typer/pull/1129) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 💚 Fix test matrix for Python 3.7. PR [#&#8203;1116](https://redirect.github.com/fastapi/typer/pull/1116) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ⬆ Bump ruff from 0.8.4 to 0.8.6. PR [#&#8203;1107](https://redirect.github.com/fastapi/typer/pull/1107) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1109](https://redirect.github.com/fastapi/typer/pull/1109) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump pillow from 11.0.0 to 11.1.0. PR [#&#8203;1104](https://redirect.github.com/fastapi/typer/pull/1104) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1102](https://redirect.github.com/fastapi/typer/pull/1102) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.8.3 to 0.8.4. PR [#&#8203;1097](https://redirect.github.com/fastapi/typer/pull/1097) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump astral-sh/setup-uv from 4 to 5. PR [#&#8203;1098](https://redirect.github.com/fastapi/typer/pull/1098) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump markdown-include-variants from 0.0.3 to 0.0.4. PR [#&#8203;1100](https://redirect.github.com/fastapi/typer/pull/1100) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.8.2 to 0.8.3. PR [#&#8203;1090](https://redirect.github.com/fastapi/typer/pull/1090) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1093](https://redirect.github.com/fastapi/typer/pull/1093) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump mkdocs-material from 9.5.48 to 9.5.49. PR [#&#8203;1092](https://redirect.github.com/fastapi/typer/pull/1092) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3. PR [#&#8203;1088](https://redirect.github.com/fastapi/typer/pull/1088) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1087](https://redirect.github.com/fastapi/typer/pull/1087) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.8.1 to 0.8.2. PR [#&#8203;1084](https://redirect.github.com/fastapi/typer/pull/1084) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.47 to 9.5.48. PR [#&#8203;1086](https://redirect.github.com/fastapi/typer/pull/1086) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.15.1`](https://redirect.github.com/fastapi/typer/releases/tag/0.15.1) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.15.0...0.15.1) ##### Features - 🗑️ Deprecate `shell_complete` and continue to use `autocompletion` for CLI parameters. PR [#&#8203;974](https://redirect.github.com/fastapi/typer/pull/974) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Docs - ✏️ Fix a few typos in the source and documentation. PR [#&#8203;1028](https://redirect.github.com/fastapi/typer/pull/1028) by [@&#8203;kkirsche](https://redirect.github.com/kkirsche). - 📝 Fix minor inconsistencies and typos in tutorial. PR [#&#8203;1067](https://redirect.github.com/fastapi/typer/pull/1067) by [@&#8203;tvoirand](https://redirect.github.com/tvoirand). - ✏️ Fix a few small typos in the documentation. PR [#&#8203;1077](https://redirect.github.com/fastapi/typer/pull/1077) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Internal - 🔧 Update build-docs filter patterns. PR [#&#8203;1080](https://redirect.github.com/fastapi/typer/pull/1080) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔨 Update deploy docs preview script. PR [#&#8203;1079](https://redirect.github.com/fastapi/typer/pull/1079) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Update members. PR [#&#8203;1078](https://redirect.github.com/fastapi/typer/pull/1078) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1071](https://redirect.github.com/fastapi/typer/pull/1071) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Update httpx requirement from <0.28.0,>=0.27.0 to >=0.27.0,<0.29.0. PR [#&#8203;1065](https://redirect.github.com/fastapi/typer/pull/1065) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.15.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.15.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.14.0...0.15.0) ##### Features - ✨ Add support for extending typer apps without passing a name, add commands to the top level. PR [#&#8203;1037](https://redirect.github.com/fastapi/typer/pull/1037) by [@&#8203;patrick91](https://redirect.github.com/patrick91). - New docs: [One File Per Command](https://typer.tiangolo.com/tutorial/one-file-per-command/). ##### Internal - ⬆ Bump mkdocs-material from 9.5.46 to 9.5.47. PR [#&#8203;1070](https://redirect.github.com/fastapi/typer/pull/1070) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.8.0 to 0.8.1. PR [#&#8203;1066](https://redirect.github.com/fastapi/typer/pull/1066) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.14.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.14.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.13.1...0.14.0) ##### Breaking Changes - 🔥 Remove auto naming of groups added via `add_typer` based on the group's callback function name. PR [#&#8203;1052](https://redirect.github.com/fastapi/typer/pull/1052) by [@&#8203;patrick91](https://redirect.github.com/patrick91). Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code: ```python import typer app = typer.Typer() users_app = typer.Typer() app.add_typer(users_app) @&#8203;users_app.callback() def users(): # <-- This was the inferred command group name """ Manage users in the app. """ @&#8203;users_app.command() def create(name: str): print(f"Creating user: {name}") ``` ...the command group would be named `users`, based on the name of the function `def users()`. Now you need to set it explicitly: ```python import typer app = typer.Typer() users_app = typer.Typer() app.add_typer(users_app, name="users") # <-- Explicitly set the command group name @&#8203;users_app.callback() def users(): """ Manage users in the app. """ @&#8203;users_app.command() def create(name: str): print(f"Creating user: {name}") ``` Updated docs [SubCommand Name and Help](https://typer.tiangolo.com/tutorial/subcommands/name-and-help/). **Note**: this change will enable important features in the next release. 🤩 ##### Internal - ⬆ Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2. PR [#&#8203;1043](https://redirect.github.com/fastapi/typer/pull/1043) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.44 to 9.5.46. PR [#&#8203;1062](https://redirect.github.com/fastapi/typer/pull/1062) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.7.4 to 0.8.0. PR [#&#8203;1059](https://redirect.github.com/fastapi/typer/pull/1059) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump astral-sh/setup-uv from 3 to 4. PR [#&#8203;1061](https://redirect.github.com/fastapi/typer/pull/1061) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1053](https://redirect.github.com/fastapi/typer/pull/1053) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). ### [`v0.13.1`](https://redirect.github.com/fastapi/typer/releases/tag/0.13.1) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.13.0...0.13.1) ##### Features - ✨ Remove Rich tags when showing completion text. PR [#&#8203;877](https://redirect.github.com/fastapi/typer/pull/877) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ✨ Render Rich markup as HTML in Markdown docs. PR [#&#8203;847](https://redirect.github.com/fastapi/typer/pull/847) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ✨ Support cp850 encoding for auto-completion in PowerShell. PR [#&#8203;808](https://redirect.github.com/fastapi/typer/pull/808) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ✨ Allow gettext translation of help message. PR [#&#8203;886](https://redirect.github.com/fastapi/typer/pull/886) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Refactors - 🐛 Fix printing HTML from Rich output. PR [#&#8203;1055](https://redirect.github.com/fastapi/typer/pull/1055) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ##### Docs - 📝 Update markdown includes to use the new simpler format. PR [#&#8203;1054](https://redirect.github.com/fastapi/typer/pull/1054) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ##### Internal - ⬆ Bump ruff from 0.7.3 to 0.7.4. PR [#&#8203;1051](https://redirect.github.com/fastapi/typer/pull/1051) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1047](https://redirect.github.com/fastapi/typer/pull/1047) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.7.2 to 0.7.3. PR [#&#8203;1046](https://redirect.github.com/fastapi/typer/pull/1046) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump tiangolo/latest-changes from 0.3.1 to 0.3.2. PR [#&#8203;1044](https://redirect.github.com/fastapi/typer/pull/1044) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Update pytest-cov requirement from <6.0.0,>=2.10.0 to >=2.10.0,<7.0.0. PR [#&#8203;1033](https://redirect.github.com/fastapi/typer/pull/1033) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.13.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.13.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.12.5...0.13.0) ##### Features - ✨ Handle `KeyboardInterrupt` separately from other exceptions. PR [#&#8203;1039](https://redirect.github.com/fastapi/typer/pull/1039) by [@&#8203;patrick91](https://redirect.github.com/patrick91). - ✨ Update `launch` to not print anything when opening urls. PR [#&#8203;1035](https://redirect.github.com/fastapi/typer/pull/1035) by [@&#8203;patrick91](https://redirect.github.com/patrick91). - ✨ Show help items in order of definition. PR [#&#8203;944](https://redirect.github.com/fastapi/typer/pull/944) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Fixes - 🐛 Fix equality check for custom classes. PR [#&#8203;979](https://redirect.github.com/fastapi/typer/pull/979) by [@&#8203;AryazE](https://redirect.github.com/AryazE). - 🐛 Allow colon in zsh autocomplete values and descriptions. PR [#&#8203;988](https://redirect.github.com/fastapi/typer/pull/988) by [@&#8203;snapbug](https://redirect.github.com/snapbug). ##### Refactors - 🗑️ Deprecate support for `is_flag` and `flag_value` parameters. PR [#&#8203;987](https://redirect.github.com/fastapi/typer/pull/987) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 🔥 Remove unused functionality from `_typing.py` file. PR [#&#8203;805](https://redirect.github.com/fastapi/typer/pull/805) by [@&#8203;ivantodorovich](https://redirect.github.com/ivantodorovich). - ✏️ Fix typo in function name `_make_rich_text`. PR [#&#8203;959](https://redirect.github.com/fastapi/typer/pull/959) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Internal - ✅ Only run completion installation tests when the env var `_TYPER_RUN_INSTALL_COMPLETION_TESTS` is set. PR [#&#8203;995](https://redirect.github.com/fastapi/typer/pull/995) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 📝 Update the docstring of the `_make_rich_text` method. PR [#&#8203;972](https://redirect.github.com/fastapi/typer/pull/972) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1040](https://redirect.github.com/fastapi/typer/pull/1040) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump mkdocs-material from 9.5.42 to 9.5.44. PR [#&#8203;1042](https://redirect.github.com/fastapi/typer/pull/1042) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.7.1 to 0.7.2. PR [#&#8203;1038](https://redirect.github.com/fastapi/typer/pull/1038) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-macros-plugin from 1.3.6 to 1.3.7. PR [#&#8203;1031](https://redirect.github.com/fastapi/typer/pull/1031) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1032](https://redirect.github.com/fastapi/typer/pull/1032) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.7.0 to 0.7.1. PR [#&#8203;1029](https://redirect.github.com/fastapi/typer/pull/1029) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pillow from 10.4.0 to 11.0.0. PR [#&#8203;1023](https://redirect.github.com/fastapi/typer/pull/1023) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.35 to 9.5.42. PR [#&#8203;1027](https://redirect.github.com/fastapi/typer/pull/1027) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.6.5 to 0.7.0. PR [#&#8203;1026](https://redirect.github.com/fastapi/typer/pull/1026) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-macros-plugin from 1.2.0 to 1.3.6. PR [#&#8203;1025](https://redirect.github.com/fastapi/typer/pull/1025) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Update pre-commit requirement from <4.0.0,>=2.17.0 to >=2.17.0,<5.0.0. PR [#&#8203;1012](https://redirect.github.com/fastapi/typer/pull/1012) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.3. PR [#&#8203;1009](https://redirect.github.com/fastapi/typer/pull/1009) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;1001](https://redirect.github.com/fastapi/typer/pull/1001) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - 👷 Update Deploy docs CI to use uv. PR [#&#8203;1021](https://redirect.github.com/fastapi/typer/pull/1021) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Fix smokeshow, checkout files on CI. PR [#&#8203;1020](https://redirect.github.com/fastapi/typer/pull/1020) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Use uv in CI. PR [#&#8203;1019](https://redirect.github.com/fastapi/typer/pull/1019) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Update `labeler.yml`. PR [#&#8203;1014](https://redirect.github.com/fastapi/typer/pull/1014) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Update worfkow deploy-docs-notify URL. PR [#&#8203;1011](https://redirect.github.com/fastapi/typer/pull/1011) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Upgrade Cloudflare GitHub Action. PR [#&#8203;1010](https://redirect.github.com/fastapi/typer/pull/1010) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ⬆ Bump mkdocs-macros-plugin from 1.0.5 to 1.2.0. PR [#&#8203;992](https://redirect.github.com/fastapi/typer/pull/992) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.6.4 to 0.6.5. PR [#&#8203;991](https://redirect.github.com/fastapi/typer/pull/991) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.34 to 9.5.35. PR [#&#8203;996](https://redirect.github.com/fastapi/typer/pull/996) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;993](https://redirect.github.com/fastapi/typer/pull/993) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;982](https://redirect.github.com/fastapi/typer/pull/982) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump tiangolo/issue-manager from 0.5.0 to 0.5.1. PR [#&#8203;980](https://redirect.github.com/fastapi/typer/pull/980) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 👷 Update `issue-manager.yml`. PR [#&#8203;978](https://redirect.github.com/fastapi/typer/pull/978) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ⬆ Bump ruff from 0.6.3 to 0.6.4. PR [#&#8203;975](https://redirect.github.com/fastapi/typer/pull/975) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.33 to 9.5.34. PR [#&#8203;963](https://redirect.github.com/fastapi/typer/pull/963) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.1. PR [#&#8203;973](https://redirect.github.com/fastapi/typer/pull/973) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;966](https://redirect.github.com/fastapi/typer/pull/966) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - 💚 Set `include-hidden-files` to `True` when using the `upload-artifact` GH action. PR [#&#8203;967](https://redirect.github.com/fastapi/typer/pull/967) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ⬆ Bump ruff from 0.6.1 to 0.6.3. PR [#&#8203;961](https://redirect.github.com/fastapi/typer/pull/961) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#&#8203;689](https://redirect.github.com/fastapi/typer/pull/689) by [@&#8203;pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.2.0 to 0.6.1. PR [#&#8203;938](https://redirect.github.com/fastapi/typer/pull/938) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 👷 Update `latest-changes` GitHub Action. PR [#&#8203;955](https://redirect.github.com/fastapi/typer/pull/955) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ### [`v0.12.5`](https://redirect.github.com/fastapi/typer/releases/tag/0.12.5) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.12.4...0.12.5) ##### Features - 💄 Unify the width of the Rich console for help and errors. PR [#&#8203;788](https://redirect.github.com/fastapi/typer/pull/788) by [@&#8203;racinmat](https://redirect.github.com/racinmat). - 🚸 Improve assertion error message if a group is not a valid subclass. PR [#&#8203;425](https://redirect.github.com/fastapi/typer/pull/425) by [@&#8203;chrisburr](https://redirect.github.com/chrisburr). ##### Fixes - 🐛 Ensure `rich_markup_mode=None` disables Rich formatting. PR [#&#8203;859](https://redirect.github.com/fastapi/typer/pull/859) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 🐛 Fix sourcing of completion path for Git Bash. PR [#&#8203;801](https://redirect.github.com/fastapi/typer/pull/801) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 🐛 Fix PowerShell completion with incomplete word. PR [#&#8203;360](https://redirect.github.com/fastapi/typer/pull/360) by [@&#8203;patricksurry](https://redirect.github.com/patricksurry). ##### Refactors - 🔥 Remove Python 3.6 specific code paths. PR [#&#8203;850](https://redirect.github.com/fastapi/typer/pull/850) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 🔥 Clean up redundant code. PR [#&#8203;858](https://redirect.github.com/fastapi/typer/pull/858) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). ##### Docs - ♻️ Use F-strings in Click examples in docs. PR [#&#8203;891](https://redirect.github.com/fastapi/typer/pull/891) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 📝Add missing `main.py` in tutorial on CLI option names. PR [#&#8203;868](https://redirect.github.com/fastapi/typer/pull/868) by [@&#8203;fsramalho](https://redirect.github.com/fsramalho). - 📝 Fix broken link. PR [#&#8203;835](https://redirect.github.com/fastapi/typer/pull/835) by [@&#8203;OhioDschungel6](https://redirect.github.com/OhioDschungel6). - 📝 Update package docs with the latest versions of Typer and Poetry. PR [#&#8203;781](https://redirect.github.com/fastapi/typer/pull/781) by [@&#8203;kinuax](https://redirect.github.com/kinuax). - 📝 Update the Progress Bar tutorial with correct output. PR [#&#8203;199](https://redirect.github.com/fastapi/typer/pull/199) by [@&#8203;n1ckdm](https://redirect.github.com/n1ckdm). - 📝 Add docs and scripts to test completion in different shells. PR [#&#8203;953](https://redirect.github.com/fastapi/typer/pull/953) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ✏️ Fix a typo in `docs/virtual-environments.md`. PR [#&#8203;952](https://redirect.github.com/fastapi/typer/pull/952) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ✏️ Fix typo in `docs/contributing.md`. PR [#&#8203;947](https://redirect.github.com/fastapi/typer/pull/947) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 📝 Add docs for virtual environments, environment variables, and update contributing. PR [#&#8203;946](https://redirect.github.com/fastapi/typer/pull/946) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ##### Internal - 🔨 Pre-install dependencies in Docker so that testing in Docker is faster. PR [#&#8203;954](https://redirect.github.com/fastapi/typer/pull/954) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ✅ Add `needs_bash` test fixture. PR [#&#8203;888](https://redirect.github.com/fastapi/typer/pull/888) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ⬆ Bump mkdocs-material from 9.5.18 to 9.5.33. PR [#&#8203;945](https://redirect.github.com/fastapi/typer/pull/945) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pillow from 10.3.0 to 10.4.0. PR [#&#8203;939](https://redirect.github.com/fastapi/typer/pull/939) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 👷 Fix issue-manager. PR [#&#8203;948](https://redirect.github.com/fastapi/typer/pull/948) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🙈 Remove extra line in .gitignore. PR [#&#8203;936](https://redirect.github.com/fastapi/typer/pull/936) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ⬆ Update pytest-cov requirement from <5.0.0,>=2.10.0 to >=2.10.0,<6.0.0. PR [#&#8203;844](https://redirect.github.com/fastapi/typer/pull/844) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.9.0. PR [#&#8203;865](https://redirect.github.com/fastapi/typer/pull/865) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Update pytest requirement from <8.0.0,>=4.4.0 to >=4.4.0,<9.0.0. PR [#&#8203;915](https://redirect.github.com/fastapi/typer/pull/915) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Update pytest-sugar requirement from <0.10.0,>=0.9.4 to >=0.9.4,<1.1.0. PR [#&#8203;841](https://redirect.github.com/fastapi/typer/pull/841) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.12.4`](https://redirect.github.com/fastapi/typer/releases/tag/0.12.4) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.12.3...0.12.4) ##### Features - ✨ Add support for Python 3.12, tests in CI and official marker. PR [#&#8203;807](https://redirect.github.com/tiangolo/typer/pull/807) by [@&#8203;ivantodorovich](https://redirect.github.com/ivantodorovich). ##### Fixes - 🐛 Fix support for `UnionType` (e.g. `str | None`) with Python 3.11. PR [#&#8203;548](https://redirect.github.com/fastapi/typer/pull/548) by [@&#8203;jonaslb](https://redirect.github.com/jonaslb). - 🐛 Fix `zsh` autocompletion installation. PR [#&#8203;237](https://redirect.github.com/fastapi/typer/pull/237) by [@&#8203;alexjurkiewicz](https://redirect.github.com/alexjurkiewicz). - 🐛 Fix usage of `Annotated` with future annotations in Python 3.7+. PR [#&#8203;814](https://redirect.github.com/fastapi/typer/pull/814) by [@&#8203;ivantodorovich](https://redirect.github.com/ivantodorovich). - 🐛 Fix `shell_complete` not working for Arguments. PR [#&#8203;737](https://redirect.github.com/fastapi/typer/pull/737) by [@&#8203;bckohan](https://redirect.github.com/bckohan). ##### Docs - 📝 Update docs links, from tiangolo to new fastapi org. PR [#&#8203;919](https://redirect.github.com/fastapi/typer/pull/919) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 📝 Add docs for team and repo management. PR [#&#8203;917](https://redirect.github.com/tiangolo/typer/pull/917) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). ##### Internal - 🔧 Add URLs to `pyproject.toml`, show up in PyPI. PR [#&#8203;931](https://redirect.github.com/fastapi/typer/pull/931) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Do not sync labels as it overrides manually added labels. PR [#&#8203;930](https://redirect.github.com/fastapi/typer/pull/930) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Update labeler GitHub Action to add only one label. PR [#&#8203;927](https://redirect.github.com/fastapi/typer/pull/927) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Update labeler GitHub Actions permissions and dependencies. PR [#&#8203;926](https://redirect.github.com/fastapi/typer/pull/926) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Add GitHub Action label-checker. PR [#&#8203;925](https://redirect.github.com/fastapi/typer/pull/925) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Add GitHub Action labeler. PR [#&#8203;924](https://redirect.github.com/fastapi/typer/pull/924) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Add GitHub Action add-to-project. PR [#&#8203;922](https://redirect.github.com/fastapi/typer/pull/922) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔨 Update docs.py script to enable dirty reload conditionally. PR [#&#8203;918](https://redirect.github.com/tiangolo/typer/pull/918) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Update MkDocs previews. PR [#&#8203;916](https://redirect.github.com/tiangolo/typer/pull/916) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Upgrade build docs configs. PR [#&#8203;914](https://redirect.github.com/tiangolo/typer/pull/914) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Update MkDocs to have titles in Markdown files instead of config. PR [#&#8203;913](https://redirect.github.com/tiangolo/typer/pull/913) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Add alls-green for test-redistribute. PR [#&#8203;911](https://redirect.github.com/tiangolo/typer/pull/911) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Update docs-previews to handle no docs changes. PR [#&#8203;912](https://redirect.github.com/tiangolo/typer/pull/912) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷🏻 Show docs deployment status and preview URLs in comment. PR [#&#8203;910](https://redirect.github.com/tiangolo/typer/pull/910) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Enable auto dark mode from system. PR [#&#8203;908](https://redirect.github.com/tiangolo/typer/pull/908) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 💄 Add dark mode logo. PR [#&#8203;907](https://redirect.github.com/tiangolo/typer/pull/907) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Update tabs and admonitions with new syntax and new MkDocs features. PR [#&#8203;906](https://redirect.github.com/tiangolo/typer/pull/906) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Enable MkDocs Material features. PR [#&#8203;905](https://redirect.github.com/tiangolo/typer/pull/905) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Enable dark mode for docs. PR [#&#8203;904](https://redirect.github.com/tiangolo/typer/pull/904) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ➖ Do not install jieba for MkDocs Material as there are no chinese translations. PR [#&#8203;903](https://redirect.github.com/tiangolo/typer/pull/903) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🙈 Add MkDocs Material cache to gitignore. PR [#&#8203;902](https://redirect.github.com/tiangolo/typer/pull/902) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔨 Update lint script. PR [#&#8203;901](https://redirect.github.com/tiangolo/typer/pull/901) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Update MkDocs configs and docs build setup. PR [#&#8203;900](https://redirect.github.com/tiangolo/typer/pull/900) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ⬆ Bump actions/cache from 3 to 4. PR [#&#8203;839](https://redirect.github.com/tiangolo/typer/pull/839) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 🍱 Update Typer icon and logo. PR [#&#8203;899](https://redirect.github.com/tiangolo/typer/pull/899) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Update issue-manager.yml GitHub Action permissions. PR [#&#8203;897](https://redirect.github.com/tiangolo/typer/pull/897) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Refactor GitHub Action to comment docs deployment URLs and update token, preparing for GitHub org. PR [#&#8203;896](https://redirect.github.com/tiangolo/typer/pull/896) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔨 Update docs Termynal scripts to not include line nums for local dev. PR [#&#8203;882](https://redirect.github.com/tiangolo/typer/pull/882) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ⬆ Bump black from 23.3.0 to 24.3.0. PR [#&#8203;837](https://redirect.github.com/tiangolo/typer/pull/837) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pillow from 10.1.0 to 10.3.0. PR [#&#8203;836](https://redirect.github.com/tiangolo/typer/pull/836) by [@&#8203;dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ✅ Add CI configs to run tests on Windows and MacOS. PR [#&#8203;824](https://redirect.github.com/tiangolo/typer/pull/824) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 👷 Update GitHub Actions to upload and download artifacts. PR [#&#8203;829](https://redirect.github.com/tiangolo/typer/pull/829) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 👷 Tweak CI for test-redistribute, add needed env vars for slim. PR [#&#8203;827](https://redirect.github.com/tiangolo/typer/pull/827) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - ✅ Generalize test suite to run on Windows. PR [#&#8203;810](https://redirect.github.com/tiangolo/typer/pull/810) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - ✅ Add `__init__.py` files to fix test suite. PR [#&#8203;809](https://redirect.github.com/tiangolo/typer/pull/809) by [@&#8203;svlandeg](https://redirect.github.com/svlandeg). - 🔧 Update MkDocs Material, enable plugins. PR [#&#8203;813](https://redirect.github.com/tiangolo/typer/pull/813) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). - 🔧 Tweak development scripts and configs after migration to PDM, Ruff, etc.. PR [#&#8203;797](https://redirect.github.com/tiangolo/typer/pull/797) by [@&#8203;tiangolo](https://redirect.github.com/tiangolo). </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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/cpressland/rq-autoscaler). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MS40MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
Commenting is not possible because the repository is archived.
No description provided.