[PR #6638] chore(deps-dev): bump ty from 0.0.1a27 to 0.0.7 in /libs/sdk-py #5179

Closed
opened 2026-02-20 17:51:20 -05:00 by yindo · 0 comments
Owner

Original Pull Request: https://github.com/langchain-ai/langgraph/pull/6638

State: closed
Merged: No


Bumps ty from 0.0.1a27 to 0.0.7.

Release notes

Sourced from ty's releases.

0.0.7

Release Notes

Released on 2025-12-24.

Bug fixes

  • Fix classification of modules in import x as y for semantic syntax highlighting (#22175)
  • Fix module resolution on network drives (#22173)
  • Render the entire diagnostic message in all output formats (#22164)

Other changes

  • Add a dedicated diagnostic for TypedDict deletions (#22123)
  • Check __delitem__ instead of __getitem__ for del x[k] (#22121)
  • Fix @staticmethod combined with other decorators incorrectly binding self (#22128)
  • Fix implementation of Top[Callable[..., object]] (#22145)
  • Improve diagnostic when callable is used in a type expression instead of collections.abc.Callable or typing.Callable (#22180)
  • Improve diagnostic when a user tries to access a function attribute on a Callable type (#22182)
  • Include the specialization of a generic TypedDict as part of its display (#22174)
  • Support tuple narrowing based on member checks (#22167)
  • Synthesize __delitem__ for TypedDict to allow deleting non-required keys (#22122)

Contributors

Install ty 0.0.7

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ty/releases/download/0.0.7/ty-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/ty/releases/download/0.0.7/ty-installer.ps1 | iex"

Download ty 0.0.7

File Platform Checksum
ty-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
ty-x86_64-apple-darwin.tar.gz Intel macOS checksum

... (truncated)

Changelog

Sourced from ty's changelog.

0.0.7

Released on 2025-12-24.

Bug fixes

  • Fix classification of modules in import x as y for semantic syntax highlighting (#22175)
  • Fix module resolution on network drives (#22173)
  • Render the entire diagnostic message in all output formats (#22164)

Other changes

  • Add a dedicated diagnostic for TypedDict deletions (#22123)
  • Check __delitem__ instead of __getitem__ for del x[k] (#22121)
  • Fix @staticmethod combined with other decorators incorrectly binding self (#22128)
  • Fix implementation of Top[Callable[..., object]] (#22145)
  • Improve diagnostic when callable is used in a type expression instead of collections.abc.Callable or typing.Callable (#22180)
  • Improve diagnostic when a user tries to access a function attribute on a Callable type (#22182)
  • Include the specialization of a generic TypedDict as part of its display (#22174)
  • Support tuple narrowing based on member checks (#22167)
  • Synthesize __delitem__ for TypedDict to allow deleting non-required keys (#22122)

Contributors

0.0.6

Released on 2025-12-23.

Bug fixes

  • FIx panic from unexpanded type aliases in implicit tuple aliases (#22015)
  • Support type[T] where T is a type alias to a union of types (#22115)
  • Support == narrowing for tuples in unions with disjoint types (#22129)
  • Respect debug text interpolation in f-strings (#22151)
  • Fix panic from unstable union-type ordering in fixed-point iteration (#22070)

LSP server

  • Add ty.configuration and ty.configurationFile options (#22053)
  • Add diagnosticMode: off to disable diagnostics while retaining Go To Definition, etc. (#22073)
  • Set flag to avoid type[T@f] being inserted when you double-click on the inlay (#22139)
  • Use Markdown for completions documentation if the LSP client supports it (#21752)

CLI

... (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)
**Original Pull Request:** https://github.com/langchain-ai/langgraph/pull/6638 **State:** closed **Merged:** No --- Bumps [ty](https://github.com/astral-sh/ty) from 0.0.1a27 to 0.0.7. <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.7</h2> <h2>Release Notes</h2> <p>Released on 2025-12-24.</p> <h3>Bug fixes</h3> <ul> <li>Fix classification of modules in <code>import x as y</code> for semantic syntax highlighting (<a href="https://redirect.github.com/astral-sh/ruff/pull/22175">#22175</a>)</li> <li>Fix module resolution on network drives (<a href="https://redirect.github.com/astral-sh/ruff/pull/22173">#22173</a>)</li> <li>Render the entire diagnostic message in all output formats (<a href="https://redirect.github.com/astral-sh/ruff/pull/22164">#22164</a>)</li> </ul> <h3>Other changes</h3> <ul> <li>Add a dedicated diagnostic for TypedDict deletions (<a href="https://redirect.github.com/astral-sh/ruff/pull/22123">#22123</a>)</li> <li>Check <code>__delitem__</code> instead of <code>__getitem__</code> for <code>del x[k]</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22121">#22121</a>)</li> <li>Fix <code>@staticmethod</code> combined with other decorators incorrectly binding <code>self</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22128">#22128</a>)</li> <li>Fix implementation of <code>Top[Callable[..., object]]</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22145">#22145</a>)</li> <li>Improve diagnostic when <code>callable</code> is used in a type expression instead of <code>collections.abc.Callable</code> or <code>typing.Callable</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22180">#22180</a>)</li> <li>Improve diagnostic when a user tries to access a function attribute on a <code>Callable</code> type (<a href="https://redirect.github.com/astral-sh/ruff/pull/22182">#22182</a>)</li> <li>Include the specialization of a generic <code>TypedDict</code> as part of its display (<a href="https://redirect.github.com/astral-sh/ruff/pull/22174">#22174</a>)</li> <li>Support tuple narrowing based on member checks (<a href="https://redirect.github.com/astral-sh/ruff/pull/22167">#22167</a>)</li> <li>Synthesize <code>__delitem__</code> for TypedDict to allow deleting non-required keys (<a href="https://redirect.github.com/astral-sh/ruff/pull/22122">#22122</a>)</li> </ul> <h3>Contributors</h3> <ul> <li><a href="https://github.com/MichaReiser"><code>@​MichaReiser</code></a></li> <li><a href="https://github.com/ntBre"><code>@​ntBre</code></a></li> <li><a href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li> <li><a href="https://github.com/charliermarsh"><code>@​charliermarsh</code></a></li> </ul> <h2>Install ty 0.0.7</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.7/ty-installer.sh | sh </code></pre> <h3>Install prebuilt binaries via powershell script</h3> <pre lang="sh"><code>powershell -ExecutionPolicy Bypass -c &quot;irm https://github.com/astral-sh/ty/releases/download/0.0.7/ty-installer.ps1 | iex&quot; </code></pre> <h2>Download ty 0.0.7</h2> <table> <thead> <tr> <th>File</th> <th>Platform</th> <th>Checksum</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/astral-sh/ty/releases/download/0.0.7/ty-aarch64-apple-darwin.tar.gz">ty-aarch64-apple-darwin.tar.gz</a></td> <td>Apple Silicon macOS</td> <td><a href="https://github.com/astral-sh/ty/releases/download/0.0.7/ty-aarch64-apple-darwin.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/ty/releases/download/0.0.7/ty-x86_64-apple-darwin.tar.gz">ty-x86_64-apple-darwin.tar.gz</a></td> <td>Intel macOS</td> <td><a href="https://github.com/astral-sh/ty/releases/download/0.0.7/ty-x86_64-apple-darwin.tar.gz.sha256">checksum</a></td> </tr> </tbody> </table> <!-- 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.7</h2> <p>Released on 2025-12-24.</p> <h3>Bug fixes</h3> <ul> <li>Fix classification of modules in <code>import x as y</code> for semantic syntax highlighting (<a href="https://redirect.github.com/astral-sh/ruff/pull/22175">#22175</a>)</li> <li>Fix module resolution on network drives (<a href="https://redirect.github.com/astral-sh/ruff/pull/22173">#22173</a>)</li> <li>Render the entire diagnostic message in all output formats (<a href="https://redirect.github.com/astral-sh/ruff/pull/22164">#22164</a>)</li> </ul> <h3>Other changes</h3> <ul> <li>Add a dedicated diagnostic for TypedDict deletions (<a href="https://redirect.github.com/astral-sh/ruff/pull/22123">#22123</a>)</li> <li>Check <code>__delitem__</code> instead of <code>__getitem__</code> for <code>del x[k]</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22121">#22121</a>)</li> <li>Fix <code>@staticmethod</code> combined with other decorators incorrectly binding <code>self</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22128">#22128</a>)</li> <li>Fix implementation of <code>Top[Callable[..., object]]</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22145">#22145</a>)</li> <li>Improve diagnostic when <code>callable</code> is used in a type expression instead of <code>collections.abc.Callable</code> or <code>typing.Callable</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/22180">#22180</a>)</li> <li>Improve diagnostic when a user tries to access a function attribute on a <code>Callable</code> type (<a href="https://redirect.github.com/astral-sh/ruff/pull/22182">#22182</a>)</li> <li>Include the specialization of a generic <code>TypedDict</code> as part of its display (<a href="https://redirect.github.com/astral-sh/ruff/pull/22174">#22174</a>)</li> <li>Support tuple narrowing based on member checks (<a href="https://redirect.github.com/astral-sh/ruff/pull/22167">#22167</a>)</li> <li>Synthesize <code>__delitem__</code> for TypedDict to allow deleting non-required keys (<a href="https://redirect.github.com/astral-sh/ruff/pull/22122">#22122</a>)</li> </ul> <h3>Contributors</h3> <ul> <li><a href="https://github.com/MichaReiser"><code>@​MichaReiser</code></a></li> <li><a href="https://github.com/ntBre"><code>@​ntBre</code></a></li> <li><a href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li> <li><a href="https://github.com/charliermarsh"><code>@​charliermarsh</code></a></li> </ul> <h2>0.0.6</h2> <p>Released on 2025-12-23.</p> <h3>Bug fixes</h3> <ul> <li>FIx panic from unexpanded type aliases in implicit tuple aliases (<a href="https://redirect.github.com/astral-sh/ruff/pull/22015">#22015</a>)</li> <li>Support <code>type[T]</code> where <code>T</code> is a type alias to a union of types (<a href="https://redirect.github.com/astral-sh/ruff/pull/22115">#22115</a>)</li> <li>Support <code>==</code> narrowing for tuples in unions with disjoint types (<a href="https://redirect.github.com/astral-sh/ruff/pull/22129">#22129</a>)</li> <li>Respect debug text interpolation in f-strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/22151">#22151</a>)</li> <li>Fix panic from unstable union-type ordering in fixed-point iteration (<a href="https://redirect.github.com/astral-sh/ruff/pull/22070">#22070</a>)</li> </ul> <h3>LSP server</h3> <ul> <li>Add <code>ty.configuration</code> and <code>ty.configurationFile</code> options (<a href="https://redirect.github.com/astral-sh/ruff/pull/22053">#22053</a>)</li> <li>Add <code>diagnosticMode: off</code> to disable diagnostics while retaining Go To Definition, etc. (<a href="https://redirect.github.com/astral-sh/ruff/pull/22073">#22073</a>)</li> <li>Set flag to avoid <code>type[T@f]</code> being inserted when you double-click on the inlay (<a href="https://redirect.github.com/astral-sh/ruff/pull/22139">#22139</a>)</li> <li>Use Markdown for completions documentation if the LSP client supports it (<a href="https://redirect.github.com/astral-sh/ruff/pull/21752">#21752</a>)</li> </ul> <h3>CLI</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ty/commit/cf82a04b572b18d661969a8a845b0f840a632fee"><code>cf82a04</code></a> Bump version to 0.0.7 (<a href="https://redirect.github.com/astral-sh/ty/issues/2210">#2210</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/8c54a1cca2c41414bd4bc56c3b7b0591007f6d0f"><code>8c54a1c</code></a> Bump version to 0.0.6 (<a href="https://redirect.github.com/astral-sh/ty/issues/2194">#2194</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/e2c0073c36345d4008f9b78beab143fab5a7c099"><code>e2c0073</code></a> Document <code>configuration</code> and <code>configurationFile</code> editor settings (<a href="https://redirect.github.com/astral-sh/ty/issues/2167">#2167</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/02351f9fa98debe8bbb615317932d2405fe760d4"><code>02351f9</code></a> Update diagnosticMode editor setting to include <code>off</code> option (<a href="https://redirect.github.com/astral-sh/ty/issues/2164">#2164</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/d37b7dbd96d5c7ba419191171e63e237109cf620"><code>d37b7db</code></a> Bump version to 0.0.5 (<a href="https://redirect.github.com/astral-sh/ty/issues/2132">#2132</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/06b98384044927abd6f9b897f2802d93e65e5b95"><code>06b9838</code></a> two new typing FAQ entries (<a href="https://redirect.github.com/astral-sh/ty/issues/2126">#2126</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/c1e6188b13d584626adbe14d14b218c1e98bf60f"><code>c1e6188</code></a> Bump version to 0.0.4 (<a href="https://redirect.github.com/astral-sh/ty/issues/2092">#2092</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/75d61944b2cc4f4e9a92cb626a57cb08ae631459"><code>75d6194</code></a> Typing FAQ: Attributes on Callable (<a href="https://redirect.github.com/astral-sh/ty/issues/2055">#2055</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/64f5802668da2d25ce2c928755adf91722424b95"><code>64f5802</code></a> Create patch releases by default (<a href="https://redirect.github.com/astral-sh/ty/issues/2049">#2049</a>)</li> <li><a href="https://github.com/astral-sh/ty/commit/fadfe09665bef14b09214095553a4505f0a5ee93"><code>fadfe09</code></a> Bump version to 0.0.3 (<a href="https://redirect.github.com/astral-sh/ty/issues/2046">#2046</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ty/compare/0.0.1-alpha.27...0.0.7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ty&package-manager=pip&previous-version=0.0.1a27&new-version=0.0.7)](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>
yindo added the pull-request label 2026-02-20 17:51:20 -05:00
yindo closed this issue 2026-02-20 17:51:20 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#5179