Update dependency basedpyright to v1.38.2 #35

Open
Renovate wants to merge 1 commit from renovate/basedpyright-1.x into trunk
Collaborator

This PR contains the following updates:

Package Change Age Confidence
basedpyright ==1.34.0==1.38.2 age confidence

Release Notes

detachhead/basedpyright (basedpyright)

v1.38.2: (pyright 1.1.408)

Compare Source

What's Changed

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.38.1...v1.38.2

v1.38.1: (pyright 1.1.408)

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.38.0...v1.38.1

v1.38.0: (pyright 1.1.408)

Compare Source

What's Changed

  • show the default value from the implementation signature when displaying an overload signature (eg. hover and signature help) if its default value is an ellipsis by @​DetachHead in DetachHead#1717
  • fix: don't comment out return types in stub generation by @​veeceey in DetachHead#1724
  • add more quick fixes for specific error types by @​NCBM in DetachHead#1721
    • reportUnnecessaryCast
    • reportUnusedCallResult
    • reportSelfClsDefault
  • fix logged message for pyright executable fallback in vscode extension by @​veeceey in DetachHead#1723

New Contributors

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.37.4...v1.38.0

v1.37.4: (pyright 1.1.408)

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.37.3...v1.37.4

v1.37.3: (pyright 1.1.408)

Compare Source

What's Changed

  • fix infinite recursion crash when subject of match statement of type Never is used in the left side of a call in the case block by @​DetachHead in DetachHead#1711

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.37.2...v1.37.3

v1.37.2: (pyright 1.1.408)

Compare Source

What's Changed

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.37.1...v1.37.2

v1.37.1: (pyright 1.1.408)

Compare Source

What's Changed

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.37.0...v1.37.1

v1.37.0: (pyright 1.1.407)

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.36.2...v1.37.0

v1.36.2: (pyright 1.1.407)

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.36.1...v1.36.2

v1.36.1: (pyright 1.1.407)

Compare Source

What's Changed

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.36.0...v1.36.1

v1.36.0: (pyright 1.1.407)

Compare Source

What's Changed

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.35.0...v1.36.0

v1.35.0: (pyright 1.1.407)

Compare Source

What's Changed

improved completions for Literals and enums

in pyright/pylance, you only get completions for Literals that contain strings:

image

but in basedpyright, this now also works with Literals that contain other types, such as int, bool and Enum values:

image

unlike pyright/pylance, basedpyright now also supports completions for enum values:

image

this also works for other types of enums such as IntEnum and StrEnum

implemented by @​KurtBoehm in DetachHead#1644 & DetachHead#1658

Full Changelog: https://github.com/DetachHead/basedpyright/compare/v1.34.0...v1.35.0


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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [basedpyright](https://github.com/detachhead/basedpyright) | `==1.34.0` → `==1.38.2` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/basedpyright/1.38.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/basedpyright/1.34.0/1.38.2?slim=true) | --- ### Release Notes <details> <summary>detachhead/basedpyright (basedpyright)</summary> ### [`v1.38.2`](https://github.com/DetachHead/basedpyright/releases/tag/v1.38.2): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.38.1...v1.38.2) #### What's Changed - Improved semantic tokens for keyword arguments by [@&#8203;KurtBoehm](https://github.com/KurtBoehm) in [DetachHead#1740](https://github.com/DetachHead/basedpyright/pull/1740) - Hover messages and jump-to-definition for call expressions by [@&#8203;KurtBoehm](https://github.com/KurtBoehm) in [DetachHead#1741](https://github.com/DetachHead/basedpyright/pull/1741) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.38.1...v1.38.2> ### [`v1.38.1`](https://github.com/DetachHead/basedpyright/releases/tag/v1.38.1): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.38.0...v1.38.1) #### What's Changed - fix language server crash on abstract setter with no parameter by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1732](https://github.com/DetachHead/basedpyright/pull/1732) - fix docstrings for compiled builtin stubs not being generated for older python versions by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1733](https://github.com/DetachHead/basedpyright/pull/1733) - Allow `TYPE_CHECKING` guards in match statements by [@&#8203;grahamcracker1234](https://github.com/grahamcracker1234) in [DetachHead#1726](https://github.com/DetachHead/basedpyright/pull/1726) #### New Contributors - [@&#8203;grahamcracker1234](https://github.com/grahamcracker1234) made their first contribution in [DetachHead#1726](https://github.com/DetachHead/basedpyright/pull/1726) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.38.0...v1.38.1> ### [`v1.38.0`](https://github.com/DetachHead/basedpyright/releases/tag/v1.38.0): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.37.4...v1.38.0) #### What's Changed - show the default value from the implementation signature when displaying an overload signature (eg. hover and signature help) if its default value is an ellipsis by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1717](https://github.com/DetachHead/basedpyright/pull/1717) - fix: don't comment out return types in stub generation by [@&#8203;veeceey](https://github.com/veeceey) in [DetachHead#1724](https://github.com/DetachHead/basedpyright/pull/1724) - add more quick fixes for specific error types by [@&#8203;NCBM](https://github.com/NCBM) in [DetachHead#1721](https://github.com/DetachHead/basedpyright/pull/1721) - `reportUnnecessaryCast` - `reportUnusedCallResult` - `reportSelfClsDefault` - fix logged message for pyright executable fallback in vscode extension by [@&#8203;veeceey](https://github.com/veeceey) in [DetachHead#1723](https://github.com/DetachHead/basedpyright/pull/1723) #### New Contributors - [@&#8203;veeceey](https://github.com/veeceey) made their first contribution in [DetachHead#1724](https://github.com/DetachHead/basedpyright/pull/1724) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.37.4...v1.38.0> ### [`v1.37.4`](https://github.com/DetachHead/basedpyright/releases/tag/v1.37.4): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.37.3...v1.37.4) #### What's Changed - fix `$schema` being reported as unrecognized setting in config files by [@&#8203;jaenw](https://github.com/jaenw) in [DetachHead#1714](https://github.com/DetachHead/basedpyright/pull/1714) - update badge with logo & new background colour by [@&#8203;DetachHead](https://github.com/DetachHead) & [@&#8203;NCBM](https://github.com/NCBM) in [DetachHead#1716](https://github.com/DetachHead/basedpyright/pull/1716) #### New Contributors - [@&#8203;jaenw](https://github.com/jaenw) made their first contribution in [DetachHead#1714](https://github.com/DetachHead/basedpyright/pull/1714) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.37.3...v1.37.4> ### [`v1.37.3`](https://github.com/DetachHead/basedpyright/releases/tag/v1.37.3): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.37.2...v1.37.3) #### What's Changed - fix infinite recursion crash when subject of match statement of type `Never` is used in the left side of a call in the case block by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1711](https://github.com/DetachHead/basedpyright/pull/1711) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.37.2...v1.37.3> ### [`v1.37.2`](https://github.com/DetachHead/basedpyright/releases/tag/v1.37.2): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.37.1...v1.37.2) #### What's Changed - fix reference to non-existent baseline mode in the docs by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1699](https://github.com/DetachHead/basedpyright/pull/1699) - No hover messages or jump-to-definition for literals by [@&#8203;KurtBoehm](https://github.com/KurtBoehm) in [DetachHead#1706](https://github.com/DetachHead/basedpyright/pull/1706) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.37.1...v1.37.2> ### [`v1.37.1`](https://github.com/DetachHead/basedpyright/releases/tag/v1.37.1): (pyright 1.1.408) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.37.0...v1.37.1) #### What's Changed - Merge 1.1.408 by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1696](https://github.com/DetachHead/basedpyright/pull/1696) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.37.0...v1.37.1> ### [`v1.37.0`](https://github.com/DetachHead/basedpyright/releases/tag/v1.37.0): (pyright 1.1.407) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.36.2...v1.37.0) #### What's Changed - fix `skip_replace` hack documentation by [@&#8203;decorator-factory](https://github.com/decorator-factory) in [DetachHead#1686](https://github.com/DetachHead/basedpyright/pull/1686) - add code action quick-fix to add `@override` by [@&#8203;NCBM](https://github.com/NCBM) in [DetachHead#1680](https://github.com/DetachHead/basedpyright/pull/1680) - Chinese (Simplified) translation update (2026.01) by [@&#8203;NCBM](https://github.com/NCBM) in [DetachHead#1691](https://github.com/DetachHead/basedpyright/pull/1691) - Add `baselineMode` setting for the language server by [@&#8203;andyscho](https://github.com/andyscho) in [DetachHead#1693](https://github.com/DetachHead/basedpyright/pull/1693) #### New Contributors - [@&#8203;andyscho](https://github.com/andyscho) made their first contribution in [DetachHead#1693](https://github.com/DetachHead/basedpyright/pull/1693) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.36.2...v1.37.0> ### [`v1.36.2`](https://github.com/DetachHead/basedpyright/releases/tag/v1.36.2): (pyright 1.1.407) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.36.1...v1.36.2) #### What's Changed - Fix out of bounds top-level `activeParameter` being set when an individual signature has an `activeParameter` by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1681](https://github.com/DetachHead/basedpyright/pull/1681) - Add `hint` support to `# pyright` doc-level directives by [@&#8203;finite-state-machine](https://github.com/finite-state-machine) in [DetachHead#1679](https://github.com/DetachHead/basedpyright/pull/1679) - fix `basedpyright --writebaseline` not working if there are changes to write but the total error count didn't change by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1685](https://github.com/DetachHead/basedpyright/pull/1685) #### New Contributors - [@&#8203;finite-state-machine](https://github.com/finite-state-machine) made their first contribution in [DetachHead#1679](https://github.com/DetachHead/basedpyright/pull/1679) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.36.1...v1.36.2> ### [`v1.36.1`](https://github.com/DetachHead/basedpyright/releases/tag/v1.36.1): (pyright 1.1.407) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.36.0...v1.36.1) #### What's Changed - fix an issue introduced in 1.36.0 that broke the browser version of basedpyright used in the playground by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1675](https://github.com/DetachHead/basedpyright/pull/1675) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.36.0...v1.36.1> ### [`v1.36.0`](https://github.com/DetachHead/basedpyright/releases/tag/v1.36.0): (pyright 1.1.407) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.35.0...v1.36.0) #### What's Changed - fail in CI if baseline file needs updating and add `--baselinemode` cli argument by [@&#8203;DetachHead](https://github.com/DetachHead) in [DetachHead#1667](https://github.com/DetachHead/basedpyright/pull/1667) - Improve semantic tokens for `Any`, unknown, and unions by [@&#8203;KurtBoehm](https://github.com/KurtBoehm) in [DetachHead#1670](https://github.com/DetachHead/basedpyright/pull/1670) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.35.0...v1.36.0> ### [`v1.35.0`](https://github.com/DetachHead/basedpyright/releases/tag/v1.35.0): (pyright 1.1.407) [Compare Source](https://github.com/detachhead/basedpyright/compare/v1.34.0...v1.35.0) #### What's Changed ##### improved completions for `Literal`s and enums in pyright/pylance, you only get completions for `Literal`s that contain strings: <img width="380" height="78" alt="image" src="https://github.com/user-attachments/assets/f907f82c-f7b7-4956-8e5d-cdc91f5060c8" /> but in basedpyright, this now also works with `Literal`s that contain other types, such as `int`, `bool` and `Enum` values: <img width="485" height="125" alt="image" src="https://github.com/user-attachments/assets/a9319b3f-f606-4bbe-b391-21997e3b763c" /> unlike pyright/pylance, basedpyright now also supports completions for enum values: <img width="194" height="64" alt="image" src="https://github.com/user-attachments/assets/f74b17a7-52c0-4440-af81-583ba30b5b1a" /> this also works for other types of enums such as `IntEnum` and `StrEnum` implemented by [@&#8203;KurtBoehm](https://github.com/KurtBoehm) in [DetachHead#1644](https://github.com/DetachHead/basedpyright/pull/1644) & [DetachHead#1658](https://github.com/DetachHead/basedpyright/pull/1658) **Full Changelog**: <https://github.com/DetachHead/basedpyright/compare/v1.34.0...v1.35.0> </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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS4zIiwidXBkYXRlZEluVmVyIjoiNDMuMzEuMSIsInRhcmdldEJyYW5jaCI6InRydW5rIiwibGFiZWxzIjpbXX0=-->
Update dependency basedpyright to v1.35.0
All checks were successful
Actions / Lint Python (pull_request) Successful in 11s
Actions / Verify Packwiz Hashes (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 34s
16c9781b0a
Renovate bot changed title from Update dependency basedpyright to v1.35.0 to Update dependency basedpyright to v1.36.0 2025-12-09 09:41:15 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from 16c9781b0a
All checks were successful
Actions / Lint Python (pull_request) Successful in 11s
Actions / Verify Packwiz Hashes (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 34s
to da1fbf789b
All checks were successful
Actions / Generate Export Files (pull_request) Successful in 14s
Actions / Verify Packwiz Hashes (pull_request) Successful in 32s
Actions / Lint Python (pull_request) Successful in 33s
2025-12-09 09:41:16 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.36.0 to Update dependency basedpyright to v1.36.1 2025-12-11 10:11:42 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from da1fbf789b
All checks were successful
Actions / Generate Export Files (pull_request) Successful in 14s
Actions / Verify Packwiz Hashes (pull_request) Successful in 32s
Actions / Lint Python (pull_request) Successful in 33s
to 182a0a9297
Some checks failed
Actions / Verify Packwiz Hashes (pull_request) Failing after 1s
Actions / Generate Export Files (pull_request) Successful in 14s
Actions / Lint Python (pull_request) Successful in 32s
2025-12-11 10:11:43 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.36.1 to Update dependency basedpyright to v1.36.2 2025-12-22 22:10:41 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from 182a0a9297
Some checks failed
Actions / Verify Packwiz Hashes (pull_request) Failing after 1s
Actions / Generate Export Files (pull_request) Successful in 14s
Actions / Lint Python (pull_request) Successful in 32s
to b46fd561f9
All checks were successful
Actions / Lint Python (pull_request) Successful in 31s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
2025-12-22 22:10:41 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.36.2 to Update dependency basedpyright to v1.37.0 2026-01-04 05:12:05 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from b46fd561f9
All checks were successful
Actions / Lint Python (pull_request) Successful in 31s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
to cfd34c4ae7
All checks were successful
Actions / Lint Python (pull_request) Successful in 11s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
2026-01-04 05:12:06 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.37.0 to Update dependency basedpyright to v1.37.1 2026-01-08 10:12:54 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from cfd34c4ae7
All checks were successful
Actions / Lint Python (pull_request) Successful in 11s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
to 859054b732
All checks were successful
Actions / Lint Python (pull_request) Successful in 11s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
2026-01-08 10:12:55 -05:00
Compare
Renovate bot force-pushed renovate/basedpyright-1.x from 859054b732
All checks were successful
Actions / Lint Python (pull_request) Successful in 11s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
to 2a8ffa81f3
All checks were successful
Actions / Lint Python (pull_request) Successful in 31s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
2026-01-23 23:42:08 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.37.1 to Update dependency basedpyright to v1.37.2 2026-01-23 23:42:10 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from 2a8ffa81f3
All checks were successful
Actions / Lint Python (pull_request) Successful in 31s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Generate Export Files (pull_request) Successful in 34s
to e259b4e42f
All checks were successful
Actions / Verify Packwiz Hashes (pull_request) Successful in 36s
Actions / Lint Python (pull_request) Successful in 36s
Actions / Generate Export Files (pull_request) Successful in 39s
2026-02-01 04:12:30 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.37.2 to Update dependency basedpyright to v1.37.3 2026-02-01 04:12:30 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from e259b4e42f
All checks were successful
Actions / Verify Packwiz Hashes (pull_request) Successful in 36s
Actions / Lint Python (pull_request) Successful in 36s
Actions / Generate Export Files (pull_request) Successful in 39s
to 34422b9136
All checks were successful
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Lint Python (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 34s
2026-02-03 22:43:10 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.37.3 to Update dependency basedpyright to v1.37.4 2026-02-03 22:43:10 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from 34422b9136
All checks were successful
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
Actions / Lint Python (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 34s
to af4f4b4012
All checks were successful
Actions / Generate Export Files (pull_request) Successful in 13s
Actions / Lint Python (pull_request) Successful in 31s
Actions / Verify Packwiz Hashes (pull_request) Successful in 33s
2026-02-11 11:45:52 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.37.4 to Update dependency basedpyright to v1.38.0 2026-02-11 11:45:52 -05:00
Renovate bot changed title from Update dependency basedpyright to v1.38.0 to Update dependency basedpyright to v1.38.1 2026-02-18 04:36:56 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from af4f4b4012
All checks were successful
Actions / Generate Export Files (pull_request) Successful in 13s
Actions / Lint Python (pull_request) Successful in 31s
Actions / Verify Packwiz Hashes (pull_request) Successful in 33s
to 5e452e38e4
All checks were successful
Actions / Lint Python (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 33s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
2026-02-18 04:36:57 -05:00
Compare
Renovate bot force-pushed renovate/basedpyright-1.x from 5e452e38e4
All checks were successful
Actions / Lint Python (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 33s
Actions / Verify Packwiz Hashes (pull_request) Successful in 30s
to 29a6cf0a04
All checks were successful
Actions / Lint Python (pull_request) Successful in 32s
Actions / Verify Packwiz Hashes (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 36s
2026-02-26 06:32:49 -05:00
Compare
Renovate bot changed title from Update dependency basedpyright to v1.38.1 to Update dependency basedpyright to v1.38.2 2026-02-26 06:32:50 -05:00
Renovate bot force-pushed renovate/basedpyright-1.x from 29a6cf0a04
All checks were successful
Actions / Lint Python (pull_request) Successful in 32s
Actions / Verify Packwiz Hashes (pull_request) Successful in 31s
Actions / Generate Export Files (pull_request) Successful in 36s
to 8db613d036
All checks were successful
Actions / Generate Export Files (pull_request) Successful in 34s
Actions / Verify Packwiz Hashes (pull_request) Successful in 31s
Actions / Lint Python (pull_request) Successful in 31s
2026-02-26 16:03:03 -05:00
Compare
All checks were successful
Actions / Generate Export Files (pull_request) Successful in 34s
Actions / Verify Packwiz Hashes (pull_request) Successful in 31s
Actions / Lint Python (pull_request) Successful in 31s
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/basedpyright-1.x:renovate/basedpyright-1.x
git switch renovate/basedpyright-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch trunk
git merge --no-ff renovate/basedpyright-1.x
git switch renovate/basedpyright-1.x
git rebase trunk
git switch trunk
git merge --ff-only renovate/basedpyright-1.x
git switch renovate/basedpyright-1.x
git rebase trunk
git switch trunk
git merge --no-ff renovate/basedpyright-1.x
git switch trunk
git merge --squash renovate/basedpyright-1.x
git switch trunk
git merge --ff-only renovate/basedpyright-1.x
git switch trunk
git merge renovate/basedpyright-1.x
git push origin trunk
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
cswimr/RoNM!35
No description provided.