Skip to content

Tags: microsoft/vscode-python-debugger

Tags

v2026.7.11551014

Toggle v2026.7.11551014's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Change shebang to use env as the interpreter in noConfigScripts …

…for (#1049)

v2026.7.11491010

Toggle v2026.7.11491010's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump tmp from 0.2.4 to 0.2.7 (#1046)

Bumps [tmp](https://github.com/raszi/node-tmp) from 0.2.4 to 0.2.7.
- [Changelog](https://github.com/raszi/node-tmp/blob/master/CHANGELOG.md)
- [Commits](raszi/node-tmp@v0.2.4...v0.2.7)

---
updated-dependencies:
- dependency-name: tmp
  dependency-version: 0.2.7
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v2026.7.11471010

Toggle v2026.7.11471010's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
Bump qs from 6.14.2 to 6.15.2 (#1043)

* Bump qs from 6.14.2 to 6.15.2

Bumps [qs](https://github.com/ljharb/qs) from 6.14.2 to 6.15.2.
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](ljharb/qs@v6.14.2...v6.15.2)

---
updated-dependencies:
- dependency-name: qs
  dependency-version: 6.15.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix Lint CI failure: update Python from 3.9 to 3.10 in lint action

Agent-Logs-Url: https://github.com/microsoft/vscode-python-debugger/sessions/f9c1a42b-75e8-4e00-ab05-0b914b999dbe

Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>

v2026.7.11421011

Toggle v2026.7.11421011's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump @nevware21/ts-utils from 0.10.5 to 0.14.0 (#1041)

Bumps [@nevware21/ts-utils](https://github.com/nevware21/ts-utils) from 0.10.5 to 0.14.0.
- [Release notes](https://github.com/nevware21/ts-utils/releases)
- [Changelog](https://github.com/nevware21/ts-utils/blob/main/CHANGELOG.md)
- [Commits](nevware21/ts-utils@0.10.5...0.14.0)

---
updated-dependencies:
- dependency-name: "@nevware21/ts-utils"
  dependency-version: 0.14.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v2026.7.11331010

Toggle v2026.7.11331010's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump uuid and @azure/identity (#1018)

Removes [uuid](https://github.com/uuidjs/uuid). It's no longer used after updating ancestor dependency [@azure/identity](https://github.com/Azure/azure-sdk-for-js). These dependencies need to be updated together.


Removes `uuid`

Updates `@azure/identity` from 4.13.0 to 4.13.1
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/identity_4.13.0...@azure/identity_4.13.1)

---
updated-dependencies:
- dependency-name: "@azure/identity"
  dependency-version: 4.13.1
  dependency-type: indirect
- dependency-name: uuid
  dependency-version: 
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v2026.7.11321011

Toggle v2026.7.11321011's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Load windows-process-tree from appRoot at runtime (#1030)

Add _loadWindowsProcessTree helper to resolve @vscode/windows-process-tree via env.appRoot and eval('require') so the native .node addon is loaded at runtime (bypassing webpack's require interception). Update AttachProcessProvider to use this loader instead of a direct require. Update unit tests to remove the direct import of the windows-process-tree module and stub the new _loadWindowsProcessTree method. Clarify webpack comment to document the runtime loading approach. Also add path and env imports used by the new loader.

v2026.7.11311009

Toggle v2026.7.11311009's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix premature pytest debug session exit when multiprocessing child pr…

…ocess terminates (#1023)

* Initial plan

* Fix premature test session exit when child process debug session terminates

Agent-Logs-Url: https://github.com/microsoft/vscode-python-debugger/sessions/c5ea3960-ac08-42e5-8c37-fa964ce38c9e

Co-authored-by: rchiodo <19672699+rchiodo@users.noreply.github.com>

* Fix CI: bump minimum Python to 3.10 to fix pip 26.1+ incompatibility with Python 3.9

Agent-Logs-Url: https://github.com/microsoft/vscode-python-debugger/sessions/1508847e-2823-410e-9d66-90889d8fddea

Co-authored-by: rchiodo <19672699+rchiodo@users.noreply.github.com>

* Update src/extension/debugger/hooks/childProcessAttachService.ts

Co-authored-by: Sebastian Moore <74476668+SebMoore@users.noreply.github.com>

* Update src/test/pythonFiles/debugging/test_multiproc.py

Co-authored-by: Sebastian Moore <74476668+SebMoore@users.noreply.github.com>

* Update src/test/unittest/hooks/childProcessAttachService.unit.test.ts

Co-authored-by: Sebastian Moore <74476668+SebMoore@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rchiodo <19672699+rchiodo@users.noreply.github.com>
Co-authored-by: Rich Chiodo <rchiodo@users.noreply.github.com>
Co-authored-by: Sebastian Moore <74476668+SebMoore@users.noreply.github.com>

v2026.7.11211011

Toggle v2026.7.11211011's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 2026.7.0-dev (#1021)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v2026.6.0

Toggle v2026.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 2026.6.0 (#1017)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v2026.5.11171013

Toggle v2026.5.11171013's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update release agent: explicit PR steps for dev bump (#1007)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>