Skip to content

Commit

Permalink
Bump typer from 0.13.1 to 0.15.1 (#296)
Browse files Browse the repository at this point in the history
Bumps [typer](https://github.com/fastapi/typer) from 0.13.1 to 0.15.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/fastapi/typer/releases">typer's
releases</a>.</em></p>
<blockquote>
<h2>0.15.1</h2>
<h3>Features</h3>
<ul>
<li>🗑️ Deprecate <code>shell_complete</code> and continue to use
<code>autocompletion</code> for CLI parameters. PR <a
href="https://redirect.github.com/fastapi/typer/pull/974">#974</a> by <a
href="https://github.com/svlandeg"><code>@​svlandeg</code></a>.</li>
</ul>
<h3>Docs</h3>
<ul>
<li>✏️ Fix a few typos in the source and documentation. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1028">#1028</a> by
<a href="https://github.com/kkirsche"><code>@​kkirsche</code></a>.</li>
<li>📝 Fix minor inconsistencies and typos in tutorial. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1067">#1067</a> by
<a href="https://github.com/tvoirand"><code>@​tvoirand</code></a>.</li>
<li>✏️ Fix a few small typos in the documentation. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1077">#1077</a> by
<a href="https://github.com/svlandeg"><code>@​svlandeg</code></a>.</li>
</ul>
<h3>Internal</h3>
<ul>
<li>🔧 Update build-docs filter patterns. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1080">#1080</a> by
<a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>🔨 Update deploy docs preview script. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1079">#1079</a> by
<a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>🔧 Update members. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1078">#1078</a> by
<a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>⬆ [pre-commit.ci] pre-commit autoupdate. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1071">#1071</a> by
<a
href="https://github.com/apps/pre-commit-ci"><code>@​pre-commit-ci[bot]</code></a>.</li>
<li>⬆ Update httpx requirement from <!-- raw HTML omitted
-->=0.27.0,&lt;0.29.0. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1065">#1065</a> by
<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>.</li>
</ul>
<h2>0.15.0</h2>
<h3>Features</h3>
<ul>
<li>✨ Add support for extending typer apps without passing a name, add
commands to the top level. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1037">#1037</a> by
<a href="https://github.com/patrick91"><code>@​patrick91</code></a>.
<ul>
<li>New docs: <a
href="https://typer.tiangolo.com/tutorial/one-file-per-command/">One
File Per Command</a>.</li>
</ul>
</li>
</ul>
<h3>Internal</h3>
<ul>
<li>⬆ Bump mkdocs-material from 9.5.46 to 9.5.47. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1070">#1070</a> by
<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>.</li>
<li>⬆ Bump ruff from 0.8.0 to 0.8.1. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1066">#1066</a> by
<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>.</li>
</ul>
<h2>0.14.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li>🔥 Remove auto naming of groups added via <code>add_typer</code>
based on the group's callback function name. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1052">#1052</a> by
<a
href="https://github.com/patrick91"><code>@​patrick91</code></a>.</li>
</ul>
<p>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:</p>
<pre lang="python"><code>import typer
<p>app = typer.Typer()
users_app = typer.Typer()</p>
<p>app.add_typer(users_app)</p>
<p><a
href="https://github.com/users"><code>@​users</code></a>_app.callback()
def users():  # &lt;-- This was the inferred command group name
&quot;&quot;&quot;
Manage users in the app.
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/fastapi/typer/blob/master/docs/release-notes.md">typer's
changelog</a>.</em></p>
<blockquote>
<h2>0.15.1</h2>
<h3>Features</h3>
<ul>
<li>🗑️ Deprecate <code>shell_complete</code> and continue to use
<code>autocompletion</code> for CLI parameters. PR <a
href="https://redirect.github.com/fastapi/typer/pull/974">#974</a> by <a
href="https://github.com/svlandeg"><code>@​svlandeg</code></a>.</li>
</ul>
<h3>Docs</h3>
<ul>
<li>✏️ Fix a few typos in the source and documentation. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1028">#1028</a> by
<a href="https://github.com/kkirsche"><code>@​kkirsche</code></a>.</li>
<li>📝 Fix minor inconsistencies and typos in tutorial. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1067">#1067</a> by
<a href="https://github.com/tvoirand"><code>@​tvoirand</code></a>.</li>
<li>✏️ Fix a few small typos in the documentation. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1077">#1077</a> by
<a href="https://github.com/svlandeg"><code>@​svlandeg</code></a>.</li>
</ul>
<h3>Internal</h3>
<ul>
<li>🔧 Update build-docs filter patterns. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1080">#1080</a> by
<a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>🔨 Update deploy docs preview script. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1079">#1079</a> by
<a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>🔧 Update members. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1078">#1078</a> by
<a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>⬆ [pre-commit.ci] pre-commit autoupdate. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1071">#1071</a> by
<a
href="https://github.com/apps/pre-commit-ci"><code>@​pre-commit-ci[bot]</code></a>.</li>
<li>⬆ Update httpx requirement from <!-- raw HTML omitted
-->=0.27.0,&lt;0.29.0. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1065">#1065</a> by
<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>.</li>
</ul>
<h2>0.15.0</h2>
<h3>Features</h3>
<ul>
<li>✨ Add support for extending typer apps without passing a name, add
commands to the top level. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1037">#1037</a> by
<a href="https://github.com/patrick91"><code>@​patrick91</code></a>.
<ul>
<li>New docs: <a
href="https://typer.tiangolo.com/tutorial/one-file-per-command/">One
File Per Command</a>.</li>
</ul>
</li>
</ul>
<h3>Internal</h3>
<ul>
<li>⬆ Bump mkdocs-material from 9.5.46 to 9.5.47. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1070">#1070</a> by
<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>.</li>
<li>⬆ Bump ruff from 0.8.0 to 0.8.1. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1066">#1066</a> by
<a
href="https://github.com/apps/dependabot"><code>@​dependabot[bot]</code></a>.</li>
</ul>
<h2>0.14.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li>🔥 Remove auto naming of groups added via <code>add_typer</code>
based on the group's callback function name. PR <a
href="https://redirect.github.com/fastapi/typer/pull/1052">#1052</a> by
<a
href="https://github.com/patrick91"><code>@​patrick91</code></a>.</li>
</ul>
<p>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:</p>
<pre lang="python"><code>import typer
<p>app = typer.Typer()
users_app = typer.Typer()</p>
<p>app.add_typer(users_app)</p>
<p><a
href="https://github.com/users"><code>@​users</code></a>_app.callback()
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fastapi/typer/commit/0b89650d1e694f5c936836c9b768d8c023413cf2"><code>0b89650</code></a>
🔖 Release version 0.15.1</li>
<li><a
href="https://github.com/fastapi/typer/commit/bd89bf62f2bfe0af8667e85db341db1f32db694d"><code>bd89bf6</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/typer/commit/3b9ce479086636280271d36e410dc5abdcf318d8"><code>3b9ce47</code></a>
✏️ Fix a few typos in the source and documentation (<a
href="https://redirect.github.com/fastapi/typer/issues/1028">#1028</a>)</li>
<li><a
href="https://github.com/fastapi/typer/commit/95ba85f5b3c8088733e22218d9c87eb38e03ab08"><code>95ba85f</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/typer/commit/dbc335b0824b952c70278cccb5dbcf774cdba9b5"><code>dbc335b</code></a>
📝 Fix minor inconsistencies and typos in tutorial (<a
href="https://redirect.github.com/fastapi/typer/issues/1067">#1067</a>)</li>
<li><a
href="https://github.com/fastapi/typer/commit/b88c327d1c3c94de53280130f787a320f3378f69"><code>b88c327</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/typer/commit/d8e56e275f63446e7d455efc83095ec4d711114d"><code>d8e56e2</code></a>
🗑️ Deprecate <code>shell_complete</code> and continue to use
<code>autocompletion</code> for CLI pa...</li>
<li><a
href="https://github.com/fastapi/typer/commit/5f378eec9d8400960e89a305763572f97237afe4"><code>5f378ee</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/typer/commit/b826dc445162af7d6edd1aebe173fa49c1d683ce"><code>b826dc4</code></a>
✏️ Fix a few small typos in the documentation (<a
href="https://redirect.github.com/fastapi/typer/issues/1077">#1077</a>)</li>
<li><a
href="https://github.com/fastapi/typer/commit/9be60da3aec1693ca787947f8c8154a9b6c9fc5b"><code>9be60da</code></a>
📝 Update release notes</li>
<li>Additional commits viewable in <a
href="https://github.com/fastapi/typer/compare/0.13.1...0.15.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typer&package-manager=pip&previous-version=0.13.1&new-version=0.15.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 6, 2024
1 parent 092dd70 commit 6298daa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ruff = "0.8.2"


[tool.poetry.group.cli.dependencies]
typer = "^0.13.1"
typer = "^0.15.1"

[tool.poetry.scripts]
cfpb-val = 'regtech_data_validator.cli:app'
Expand Down

0 comments on commit 6298daa

Please sign in to comment.