Skip to content

Commit 2fa607d

Browse files
Bump ty from 0.0.8 to 0.0.9 (#1881)
Bumps [ty](https://github.com/astral-sh/ty) from 0.0.8 to 0.0.9. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ty/releases">ty's releases</a>.</em></p> <blockquote> <h2>0.0.9</h2> <h2>Release Notes</h2> <p>Released on 2026-01-05.</p> <h3>Bug fixes</h3> <ul> <li>Emit a diagnostic if a class decorator is not a callable accepting a type (<a href="https://redirect.github.com/astral-sh/ruff/pull/22375">#22375</a>)</li> <li>Fix exhaustiveness inference for unions that include enums (<a href="https://redirect.github.com/astral-sh/ruff/pull/22290">#22290</a>)</li> </ul> <h3>Core type checking</h3> <ul> <li>Support <code>typing.TypeGuard</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/20974">#20974</a>)</li> <li>Treat <code>__setattr__</code> as fallback-only (<a href="https://redirect.github.com/astral-sh/ruff/pull/22014">#22014</a>)</li> <li>Don't expand type aliases via type mappings unless necessary. This means that the displayed signature of a bound methods will no longer eagerly expand type aliases into their aliased types (<a href="https://redirect.github.com/astral-sh/ruff/pull/22241">#22241</a>)</li> <li>Narrow <code>TypedDict</code> unions with <code>not in</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22349">#22349</a>)</li> <li>Don't including <code>property</code> in subclasses properties (<a href="https://redirect.github.com/astral-sh/ruff/pull/22088">#22088</a>)</li> <li>Narrow tagged unions of <code>TypedDict</code>s in <code>match</code> statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/22299">#22299</a>)</li> <li>Teach bidirectional inference about subtyping. This allows <code>x</code> to be inferred as <code>list[int]</code> for <code>x: Iterable[int] = [42]</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/21930">#21930</a>)</li> <li>Support narrowing for tagged unions of tuples where one element of the tuple is a <code>Literal</code> type (<a href="https://redirect.github.com/astral-sh/ruff/pull/22303">#22303</a>)</li> </ul> <h3>LSP server</h3> <ul> <li>Add autocomplete suggestions for keyword arguments in <code>class</code> statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/22110">#22110</a>)</li> <li>Avoid showing misleading inlay hint for unpacked tuple arguments (<a href="https://redirect.github.com/astral-sh/ruff/pull/22286">#22286</a>)</li> </ul> <h3>Other changes</h3> <ul> <li>Sync vendored typeshed stubs (<a href="https://redirect.github.com/astral-sh/ruff/pull/22302">#22302</a>, <a href="https://redirect.github.com/astral-sh/ruff/pull/22321">#22321</a>, <a href="https://redirect.github.com/astral-sh/ruff/pull/22324">#22324</a>). <a href="https://github.com/python/typeshed/compare/3c2dbb1fde8e8d1d59b10161c8bf5fd06c0011cd...d1d5fe58664b30a0c2dde3cd5c3dc8091f0f16ae">Typeshed diff</a></li> </ul> <h3>Contributors</h3> <ul> <li><a href="https://github.com/RasmusNygren"><code>@​RasmusNygren</code></a></li> <li><a href="https://github.com/ericmarkmartin"><code>@​ericmarkmartin</code></a></li> <li><a href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li> <li><a href="https://github.com/ibraheemdev"><code>@​ibraheemdev</code></a></li> <li><a href="https://github.com/charliermarsh"><code>@​charliermarsh</code></a></li> <li><a href="https://github.com/felixscherz"><code>@​felixscherz</code></a></li> <li><a href="https://github.com/MatthewMckee4"><code>@​MatthewMckee4</code></a></li> <li><a href="https://github.com/mtshiba"><code>@​mtshiba</code></a></li> </ul> <h2>Install ty 0.0.9</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ty/releases/download/0.0.9/ty-installer.sh | sh </code></pre> <h3>Install prebuilt binaries via powershell script</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ty/blob/main/CHANGELOG.md">ty's changelog</a>.</em></p> <blockquote> <h2>0.0.9</h2> <p>Released on 2026-01-05.</p> <h3>Bug fixes</h3> <ul> <li>Emit a diagnostic if a class decorator is not a callable accepting a type (<a href="https://redirect.github.com/astral-sh/ruff/pull/22375">#22375</a>)</li> <li>Fix exhaustiveness inference for unions that include enums (<a href="https://redirect.github.com/astral-sh/ruff/pull/22290">#22290</a>)</li> </ul> <h3>Core type checking</h3> <ul> <li>Support <code>typing.TypeGuard</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/20974">#20974</a>)</li> <li>Treat <code>__setattr__</code> as fallback-only (<a href="https://redirect.github.com/astral-sh/ruff/pull/22014">#22014</a>)</li> <li>Don't expand type aliases via type mappings unless necessary. This means that the displayed signature of a bound methods will no longer eagerly expand type aliases into their aliased types (<a href="https://redirect.github.com/astral-sh/ruff/pull/22241">#22241</a>)</li> <li>Narrow <code>TypedDict</code> unions with <code>not in</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22349">#22349</a>)</li> <li>Don't including <code>property</code> in subclasses properties (<a href="https://redirect.github.com/astral-sh/ruff/pull/22088">#22088</a>)</li> <li>Narrow tagged unions of <code>TypedDict</code>s in <code>match</code> statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/22299">#22299</a>)</li> <li>Teach bidirectional inference about subtyping. This allows <code>x</code> to be inferred as <code>list[int]</code> for <code>x: Iterable[int] = [42]</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/21930">#21930</a>)</li> <li>Support narrowing for tagged unions of tuples where one element of the tuple is a <code>Literal</code> type (<a href="https://redirect.github.com/astral-sh/ruff/pull/22303">#22303</a>)</li> </ul> <h3>LSP server</h3> <ul> <li>Add autocomplete suggestions for keyword arguments in <code>class</code> statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/22110">#22110</a>)</li> <li>Avoid showing misleading inlay hint for unpacked tuple arguments (<a href="https://redirect.github.com/astral-sh/ruff/pull/22286">#22286</a>)</li> </ul> <h3>Other changes</h3> <ul> <li>Sync vendored typeshed stubs (<a href="https://redirect.github.com/astral-sh/ruff/pull/22302">#22302</a>, <a href="https://redirect.github.com/astral-sh/ruff/pull/22321">#22321</a>, <a href="https://redirect.github.com/astral-sh/ruff/pull/22324">#22324</a>). <a href="https://github.com/python/typeshed/compare/3c2dbb1fde8e8d1d59b10161c8bf5fd06c0011cd...d1d5fe58664b30a0c2dde3cd5c3dc8091f0f16ae">Typeshed diff</a></li> </ul> <h3>Contributors</h3> <ul> <li><a href="https://github.com/RasmusNygren"><code>@​RasmusNygren</code></a></li> <li><a href="https://github.com/ericmarkmartin"><code>@​ericmarkmartin</code></a></li> <li><a href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li> <li><a href="https://github.com/ibraheemdev"><code>@​ibraheemdev</code></a></li> <li><a href="https://github.com/charliermarsh"><code>@​charliermarsh</code></a></li> <li><a href="https://github.com/felixscherz"><code>@​felixscherz</code></a></li> <li><a href="https://github.com/MatthewMckee4"><code>@​MatthewMckee4</code></a></li> <li><a href="https://github.com/mtshiba"><code>@​mtshiba</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ty/commit/f1652f05d82fe4ee9073f03a2465be2cf7782e8e"><code>f1652f0</code></a> Bump version to 0.0.9 (<a href="https://redirect.github.com/astral-sh/ty/issues/2338">#2338</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/aaa9c82cf2d238ab543cf426c180f63b2563ea00"><code>aaa9c82</code></a> Update actions/checkout to 6.0.1 in release workflow (<a href="https://redirect.github.com/astral-sh/ty/issues/2330">#2330</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/3c2f43fe0b1f1538ba279358120c87f435df500a"><code>3c2f43f</code></a> Update actions/download-artifact 7.0.0 in release workflow (<a href="https://redirect.github.com/astral-sh/ty/issues/2331">#2331</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/9d8fd8661facaf8aeeca637bdc32c5dd3b9b3854"><code>9d8fd86</code></a> Update actions/upload-artifact digest to 6.0.0 in release workflow (<a href="https://redirect.github.com/astral-sh/ty/issues/2332">#2332</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/d3e93f1171a1dc278e960d2ef0170e440b07aa94"><code>d3e93f1</code></a> Update GitHub Artifact Actions (<a href="https://redirect.github.com/astral-sh/ty/issues/2329">#2329</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/a15b535c795c603c1863024e5eff2d2e13a7f161"><code>a15b535</code></a> Update docker/setup-buildx-action action to v3.12.0 (<a href="https://redirect.github.com/astral-sh/ty/issues/2333">#2333</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/12395ebf741fc021617d5e73ed65571d92c77d0f"><code>12395eb</code></a> Update actions/cache action to v5 (<a href="https://redirect.github.com/astral-sh/ty/issues/2328">#2328</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/f19b109d573182d6f17e2c575285309d5a52caf5"><code>f19b109</code></a> Update actions/checkout action to v6.0.1 (<a href="https://redirect.github.com/astral-sh/ty/issues/2325">#2325</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/9a6e053d90c96a047aeee9418f82f26e0e7e8c7e"><code>9a6e053</code></a> Update astral-sh/setup-uv action to v7.1.6 (<a href="https://redirect.github.com/astral-sh/ty/issues/2326">#2326</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/ba1a1aee07554aa9e2426ded031f724ac094851c"><code>ba1a1ae</code></a> Update pre-commit dependencies (<a href="https://redirect.github.com/astral-sh/ty/issues/2327">#2327</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ty/compare/0.0.8...0.0.9">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ty&package-manager=uv&previous-version=0.0.8&new-version=0.0.9)](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>
1 parent b725fd6 commit 2fa607d

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

uv.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)