Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
27b960f
fix: flaky chat accessibility smoke tests (#292859)
deepak1556 Feb 4, 2026
b8124ed
debt - keep enums selfcontained in agent sessions (#292865)
bpasero Feb 4, 2026
17f4969
Revert "Revert "Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /…
rzhao271 Feb 4, 2026
ad0d90a
Revert "Revert "Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /…
rzhao271 Feb 4, 2026
f54be1c
fix flakey test (#292874)
meganrogge Feb 4, 2026
08f3997
ignore watch errors (#292873)
joaomoreno Feb 4, 2026
63cc68e
feat: add size registry support to webview theme data provider
mrleemurray Feb 4, 2026
5ccfd8b
Merge pull request #292886 from microsoft/mrleemurray/small-coffee-ge…
mrleemurray Feb 4, 2026
8a4dba8
Fix `rootDir` for workspace extensions
mjbvz Feb 4, 2026
79e7736
Revert "Revert "Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /…
rzhao271 Feb 4, 2026
942ad4a
Preserve VS Code extension paths in telemetry callstacks
bryanchen-d Feb 4, 2026
e6b0655
fix: correct case sensitivity in test expectation for built-in extens…
bryanchen-d Feb 4, 2026
3feed2b
`sessionId` -> `sessionResource` in task execution and output monitor…
meganrogge Feb 4, 2026
4bba64c
fix: support multi-segment suffixes like .vscode-server-insiders in e…
bryanchen-d Feb 4, 2026
923956b
Implement matchTerminalPromptOption function and add tests for case-i…
meganrogge Feb 4, 2026
a56e77f
Add accessibility progress sound to retry request button (#292697)
Copilot Feb 4, 2026
dbd2e69
Reaching out to next annotation when boundaries equal (#292875)
aiday-mar Feb 4, 2026
5766808
Merge pull request #292893 from mjbvz/dev/mjbvz/shy-gayal
mjbvz Feb 4, 2026
a67f7c7
Expose restore to last checkpoint command, add it to accessibility he…
meganrogge Feb 4, 2026
095b74a
Merge pull request #292742 from microsoft/brchen/preserve-extension-p…
bryanchen-d Feb 4, 2026
44b47a8
add a command to toggle between todos and chat input (#283134)
meganrogge Feb 4, 2026
e4e3c1f
Fix terminal command decoration to show failed icon when chat request…
Copilot Feb 4, 2026
b5f1376
Support serialized tool call results that return resources (e.g. rg, …
DonJayamanne Feb 4, 2026
1420f16
Skills as slash commands (#292887)
pwang347 Feb 4, 2026
4ad2cc6
notify when chat questions come in (#292911)
meganrogge Feb 4, 2026
b40b1db
improve specificity for chat selector to fix smoketest (#292922)
meganrogge Feb 4, 2026
c176f53
Update Fig spec for Azure Developer CLI (azd) (#292894)
JeffreyCA Feb 4, 2026
6a7cce3
add claude.md support (#292898)
aeschli Feb 4, 2026
687717f
Remove "experimental" from finalized setting
mjbvz Feb 4, 2026
48c2726
play user action required sound regardless of window focus (#292930)
meganrogge Feb 4, 2026
38398d6
Hooks format cleanup (#292928)
pwang347 Feb 4, 2026
79d927e
Add diagnostics for hooks (#292912)
pwang347 Feb 4, 2026
1648833
Merge pull request #292932 from mjbvz/dev/mjbvz/xenacious-cricket
mjbvz Feb 4, 2026
6327bcc
preToolUse hook supporting "deny" (#292890)
roblourens Feb 4, 2026
f16dfff
allow clicking links in embedded terminal (#292940)
meganrogge Feb 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../../extensions/tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./out",
"types": [
"node",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../../extensions/tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./out",
"types": [
"node",
Expand Down
9 changes: 1 addition & 8 deletions build/lib/watch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,7 @@ const subscriptionCache: Map<string, { stream: Stream; subscription: Promise<wat
function createWatcher(root: string): Stream {
const result = es.through();

const subscription = watcher.subscribe(root, (err, events) => {
if (err) {
result.emit('error', err);
return;
}

const subscription = watcher.subscribe(root, (_err, events) => {
for (const event of events) {
const relativePath = path.relative(root, event.path);

Expand All @@ -62,8 +57,6 @@ function createWatcher(root: string): Stream {
]
});

subscription.catch(err => result.emit('error', err));

// Cleanup on process exit
const cleanup = () => {
subscription.then(sub => sub.unsubscribe()).catch(() => { });
Expand Down
6 changes: 3 additions & 3 deletions extensions/css-language-features/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions extensions/html-language-features/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions extensions/json-language-features/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion extensions/mermaid-chat-features/package.nls.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"displayName": "Mermaid Chat Features",
"description": "Adds Mermaid diagram support to built-in chats.",
"config.enabled.description": "Enable a tool for experimental Mermaid diagram rendering in chat responses."
"config.enabled.description": "Enable a tool for Mermaid diagram rendering in chat responses."
}
Loading
Loading