Johannes Rieken
cd11faec7b
CVE-2026-21518 (MSRC#106249) ( #32 )
...
* strings: add a punycode encoding function
Reuses existing unicode constructs we have. Verified against the RFC. Implemented with Opus, reviewed with Sonnet4.5, Gemini 3 Pro, and GPT 5.2.
* mcp: explicitly request workspace trust to start MCP servers
---------
Co-authored-by: Connor Peet <connor@peet.io >
2026-02-09 08:38:37 +01:00
Johannes Rieken
9d87ffd102
update version
2026-02-05 12:29:20 +00:00
Logan Ramos
bdd88df003
Hide chat context widget in compact mode ( #292605 ) ( #292743 )
1.109.0
2026-02-04 01:55:52 +00:00
Justin Chen
a9b5a9d60c
fix accessibility and chat corruption from cmd back ( #292711 )
2026-02-03 16:07:30 -08:00
Rob Lourens
e0437d4537
Fix quick chat layout ( #292703 )
...
Fix #292545
2026-02-03 16:06:12 -08:00
Connor Peet
64157d6238
sessions: prevent transferring a disposed editing session ( #292669 )
...
Cherry picks https://github.com/microsoft/vscode/pull/292667/files
Closes #292174
2026-02-03 15:32:46 -08:00
Sandeep Somavarapu
4c291be55d
fix uninstalling deprecated extensions in all profiles ( #292696 )
...
* fix uninstalling deprecated extensions in all profiles
* fix tests
2026-02-03 23:21:29 +00:00
Sandeep Somavarapu
f07c55879d
deprecate github.copilot extension ( #292500 )
...
* deprecate github.copilot extension
* feedback
* push copilot extension to the end
2026-02-03 16:11:59 +00:00
Martin Aeschlimann
cba27ffdef
runSubagent tool does not find agents that are not userInvokable ( #292538 )
2026-02-03 17:03:45 +01:00
Lee Murray
c1f3a6451f
Merge pull request #292547 from microsoft/mrleemurray/secondar-button-hover-background
...
Fix secondary button hover background color calculation
2026-02-03 13:04:05 +00:00
mrleemurray
edee361f1b
fix: update secondary button hover background color calculation
2026-02-03 11:38:33 +00:00
Lee Murray
287cffce14
Update colors for 2026 light theme ( #292539 )
...
fix: update border and background colors in 2026 light theme for consistency
Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com >
2026-02-03 11:32:44 +00:00
Daniel Imms
153305d9fb
Merge pull request #292406 from microsoft/tyriar/r1_109__291995
...
Fix run and insert buttons missing in terminal inline chat
2026-02-03 03:23:08 -08:00
Lee Murray
18c5ccdc82
Add back in iframe z-index adjustments ( #292521 )
...
refactor(styles): remove commented-out z-index adjustments for iframe containers
Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com >
2026-02-03 11:57:55 +01:00
Justin Chen
d888204ad2
release: fix esc and stop not skipping ( #292460 )
2026-02-03 04:33:44 +00:00
Megan Rogge
e5bba7a9ba
prevent first 10 lines from being clipped in terminal output ( #291941 ) ( #292455 )
...
fix #291935
2026-02-03 04:07:50 +00:00
Justin Chen
fc35a1a770
release: fix working spinner jump ( #292451 )
...
fix working spinner jump
2026-02-03 03:50:13 +00:00
Justin Chen
95e5fad99f
cherry pick ask questions ui fixes ( #292433 )
2026-02-03 01:38:43 +00:00
Paul
e72265635f
Add support for .agents for skills resolution ( #292428 )
2026-02-03 01:14:54 +00:00
Daniel Imms
b544cd956b
Fix run and insert buttons missing in terminal inline chat
...
Root Cause: Commit cfe17d6486 removed the updateCodeBlockTextModels
function which synchronized code block models immediately when responses
were received. After that change, code blocks are only created when the
chat list renders the markdown asynchronously. This created a race
condition: when getCodeBlockInfo is called (e.g., to check if a response
has code blocks or to execute a Run action), the rendering may not have
added the code block to the collection yet.
Fix: Modified getCodeBlockInfo in inlineChatWidget.ts to:
1. First check if the code block exists in the collection (fast path)
2. If not found, parse the markdown response using marked.lexer and
marked.walkTokens to extract code blocks
3. Use updateSync to synchronously create the code block model
4. Return the model
This ensures the terminal inline chat's 'Run' button works correctly
even if rendering hasn't completed yet.
Part of #291995
2026-02-02 14:24:42 -08:00
dileepyavan
fd454beca9
Updating srt paths to work in remote env ( #292224 )
2026-02-02 11:11:41 -08:00
Justin Chen
7d70b1a2b2
fix bad styling in attachments ( #292100 )
2026-02-02 10:27:45 -08:00
Karthik Nadig
9b34c9b87d
cherrypick chatQuestionCarousel fixes from main ( #292200 )
...
Backport chatQuestionCarousel files from main
2026-02-02 09:55:51 -08:00
Christof Marti
41f65b9d17
Log matching welcome view ( #292300 )
2026-02-02 15:13:06 +01:00
Ladislau Szomoru
f3d99dee2f
Git - add the ability to disable commit signing ( #291822 ) ( #292253 )
2026-02-02 08:44:40 +00:00
Tyler James Leonhardt
ccc6993db5
Better wording for Claude agent description ( #292077 )
2026-01-31 12:52:26 -08:00
Megan Rogge
a2172a28a9
fix terminal output position ( #291984 )
...
fix #289138
2026-01-30 15:19:49 -08:00
Megan Rogge
5e92f037e4
fix cursor being clipped in embedded terminal ( #291978 )
2026-01-30 21:19:56 +00:00
Megan Rogge
856629002d
Lower data event threshold for showing output ( #291929 ) ( #291977 )
2026-01-30 21:14:30 +00:00
Connor Peet
2beb93eab3
tools: fix tools in toolsets not disabling on when clause ( #291956 )
...
I don't think this is actually a new bug, maybe newly discovered. This
fix is not an ideal fix -- I would prefer to keep the tool in the original
ToolSet and layer filtering so that you could configure tools in prompts/
agents that aren't necessarily enabled in the current context -- but this
is a minimal change that fixes the issue without regressing.
Closes #291154
2026-01-30 13:03:00 -08:00
Martin Aeschlimann
2671da1a43
The 'excludeAgent' attribute must be an array ( #291925 )
2026-01-30 17:07:57 +00:00
Martin Aeschlimann
5048563d69
Replace infer with disable-model-invocation and user-invokable ( #291908 )
2026-01-30 09:06:28 -08:00
Sandeep Somavarapu
72e388d78b
update distro ( #291920 )
2026-01-30 16:50:01 +00:00
Josh Spicer
876b747561
release: targetted fix for agent status widget with multiple windows open ( #291919 )
...
targetted fix for agent status widget with multiple windows open (#291911 )
targetted fix for agent status widget with multiple windows open (fix https://github.com/microsoft/vscode/issues/290863 )
2026-01-30 16:39:14 +00:00
Osvaldo Ortega
df6ff376e2
Merge pull request #291854 from microsoft/osortega/various-alligator
2026-01-30 08:32:14 -08:00
Sandeep Somavarapu
cb0806916d
fix #290501 ( #291876 ) ( #291894 )
...
* fix #290501
* Revert "fix #290501 "
This reverts commit 3f0ce7842e .
2026-01-30 17:01:48 +01:00
Sandeep Somavarapu
e4b1b83c7a
update distro ( #291888 )
2026-01-30 14:19:51 +00:00
Sandeep Somavarapu
e954c220f8
fix #291851 ( #291862 ) ( #291886 )
2026-01-30 14:15:39 +00:00
Lee Murray
77b52be5d2
Merge pull request #291859 from microsoft/mrleemurray/secondary-button-style-fix
...
Update secondary button styles for improved visibility and consistency
2026-01-30 13:59:37 +00:00
mrleemurray
3ed17597a0
fix: correct secondary button hover background color calculation
2026-01-30 13:36:12 +00:00
Benjamin Christopher Simmonds
dbe70e524b
Merge pull request #291843 from microsoft/benibenj/unificationFix
...
Provide completions when Copilot extension is not installed
2026-01-30 14:27:46 +01:00
mrleemurray
9988d851cd
fix: update secondary button styles for improved visibility and consistency
2026-01-30 11:45:13 +00:00
Osvaldo Ortega
76bddbf05b
Gate Agent Sessions Welcome page on ChatContextKeys.enabled
2026-01-30 12:28:08 +01:00
BeniBenj
09d5798989
provide completions when copilot extension is not installed
2026-01-30 11:23:43 +01:00
Johannes Rieken
ea084045c1
oss tool ( #291826 )
2026-01-30 09:48:45 +00:00
Courtney Webster
afb4b52c67
feat: enhance ChatModelsWidget with hover support for managed entitle… ( #289981 )
...
* feat: enhance ChatModelsWidget with hover support for managed entitlements
* Apply suggestions from code review
* use setting title
* clean up
* undo comment
---------
Co-authored-by: Sandeep Somavarapu <sasomava@microsoft.com >
2026-01-30 10:05:56 +01:00
Osvaldo Ortega
e32b95e0ec
Merge pull request #291621 from microsoft/osortega/mean-warbler
2026-01-30 00:06:33 -08:00
Alex Ross
a1728b98fa
Revert "Bump tar and dmg-builder in /build" ( #291808 )
...
Revert "Bump tar and dmg-builder in /build (#291331 )"
This reverts commit fd3565eb6b .
2026-01-30 07:52:21 +00:00
Josh Spicer
a84bfab7bc
Agent status indicator: Do not show unread on empty workspace ( #291696 )
2026-01-30 07:46:06 +00:00
Dmitriy Vasyura
2d23946f08
Move Collapse All action in SCM to leftmost position ( #291474 )
...
* Move `Collapse All` action in SCM to leftmost position
* PR feedback
2026-01-30 07:47:05 +01:00