Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
06db905
cli: clean up and update dependencies
connor4312 Apr 27, 2026
1810e63
Forward W3C traceparent to MCP servers via _meta (SEP-414)
zhichli Apr 27, 2026
a106aa6
Address PR feedback: preserve trace flags/state, plumb inbound $invok…
zhichli Apr 27, 2026
f9c47b1
Agents: Enable tab shrinking in narrow viewports for better accessibi…
mrleemurray Apr 28, 2026
13e84c2
Agents: Fix padding for editor action items (#313006)
mrleemurray Apr 28, 2026
c11c069
fix: restrict entitlements used for helper.app (#312734)
deepak1556 Apr 28, 2026
a7bcda7
feat: enhance inline chat functionality with additional services and …
jrieken Apr 28, 2026
757e7d3
Merge pull request #312929 from zhichli/zhichli/mcp-traceparent-sep414
zhichli Apr 28, 2026
2c36ddb
cli: implement client AHP control functionality
connor4312 Apr 27, 2026
573fb62
[cherry-pick] Multifile Diff Editor - fix error on initial reveal (#3…
vs-code-engineering[bot] Apr 28, 2026
6b2fbaf
Fixes component explorer lockfile
hediet Apr 28, 2026
3317944
Merge remote-tracking branch 'origin/main' into connor4312/cli-ahp-ma…
connor4312 Apr 28, 2026
e78dfbd
agentHost: fix other cases of client-provided tools getting stuck (#3…
connor4312 Apr 28, 2026
ed85ff7
comments and more deps
connor4312 Apr 28, 2026
81e19a6
Merge pull request #313032 from microsoft/connor4312/cli-ahp-management
connor4312 Apr 28, 2026
2725549
Focus search input on section selection for keyboard parity (#312871)
meganrogge Apr 28, 2026
f962640
Agents: Fix editor background and border styles for agents panel (#31…
mrleemurray Apr 28, 2026
47b9582
sessions: use strong foreground for session titles (#313031)
hawkticehurst Apr 28, 2026
ffc280d
Yemohyle/add to telemetry (#311837)
yemohyleyemohyle Apr 28, 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
8 changes: 8 additions & 0 deletions build/azure-pipelines/darwin/helper-entitlements.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
</dict>
</plist>
2 changes: 2 additions & 0 deletions build/darwin/sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ function getEntitlementsForFile(filePath: string): string {
return path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-renderer-entitlements.plist');
} else if (filePath.includes(' Helper (Plugin).app')) {
return path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-plugin-entitlements.plist');
} else if (filePath.includes(' Helper.app')) {
return path.join(baseDir, 'azure-pipelines', 'darwin', 'helper-entitlements.plist');
}
return path.join(baseDir, 'azure-pipelines', 'darwin', 'app-entitlements.plist');
}
Expand Down
Loading
Loading