Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
3b23c54
Restrict "Configure..." action to non-default vendors with JSON confi…
vritant24 May 22, 2026
39bc581
Merge pull request #318026 from microsoft/agents/remove-configure-but…
vritant24 May 22, 2026
9de77c2
Add browser-integration assignment to classifier.json (#317925)
jruales May 22, 2026
bcc376c
Use abbreviated numbers for when there are really big credit amounts …
lramos15 May 22, 2026
1fdf66f
Fix Windows agent sandbox setting ID (#318035)
dileepyavan May 22, 2026
a3bcb34
Browser: store screen size as part of emulated device (#318024)
kycutler May 22, 2026
9630af6
Remove condition for displaying custom endpoint in package.json
vritant24 May 22, 2026
dd15009
build(deps): bump uuid, @azure/cosmos, @azure/identity and @azure/msa…
dependabot[bot] May 22, 2026
50aa5de
Merge pull request #318050 from microsoft/agents/enable-custom-endpoi…
vritant24 May 22, 2026
daa3e61
build(deps): bump qs from 6.14.2 to 6.15.2 in /test/mcp (#318052)
dependabot[bot] May 22, 2026
b433c7d
Mark Publish Node Modules outputs as production (#318028)
anthonykim1 May 22, 2026
6371fe8
Exclude MXC SDK catalog manifests from Authenticode checks (#318056)
dileepyavan May 22, 2026
cf77d15
sessions: add max-width to session title in titlebar (#318060)
sandy081 May 22, 2026
50b3814
Chat sessions: add legacyResource for one-way URI state migration (#3…
osortega May 22, 2026
bf74570
feat: store MCP OAuth client secrets in OS secret storage (#317950)
TylerLeonhardt May 22, 2026
3027c82
Reject path traversal in Create Workspace file tree (#318057)
bhavyaus May 22, 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
1 change: 1 addition & 0 deletions .github/classifier.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"bracket-pair-colorization": {"assign": ["hediet"]},
"bracket-pair-guides": {"assign": ["hediet"]},
"breadcrumbs": {"assign": []},
"browser-integration": {"assign": ["kycutler", "jruales"]},
"callhierarchy": {"assign": []},
"chat-terminal": {"assign": ["meganrogge"]},
"chat-terminal-output-monitor": {"assign": ["meganrogge"]},
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/common/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ export async function requestAZDOAPI<T>(path: string): Promise<T> {
throw new Error(`Unexpected status code: ${res.status}`);
}

return await res.json();
return await res.json() as T;
} finally {
clearTimeout(timeout);
}
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/darwin/product-build-darwin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
artifactName: node-modules-macos-$(VSCODE_ARCH)-${{ lower(parameters.VSCODE_TEST_SUITE) }}-$(System.JobAttempt)
displayName: Publish Node Modules
sbomEnabled: false
isProduction: false
isProduction: true
condition: failed()
- output: pipelineArtifact
targetPath: $(Build.SourcesDirectory)/.build/logs
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/darwin/product-build-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
artifactName: node-modules-macos-$(VSCODE_ARCH)-$(System.JobAttempt)
displayName: "Publish Node Modules"
sbomEnabled: false
isProduction: false
isProduction: true
condition: failed()
- output: pipelineArtifact
targetPath: $(Build.SourcesDirectory)/.build/logs
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/linux/product-build-linux-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
artifactName: node-modules-linux-$(VSCODE_ARCH)-${{ lower(parameters.VSCODE_TEST_SUITE) }}-$(System.JobAttempt)
displayName: Publish Node Modules
sbomEnabled: false
isProduction: false
isProduction: true
condition: failed()
- output: pipelineArtifact
targetPath: $(Build.SourcesDirectory)/.build/logs
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/linux/product-build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
artifactName: node-modules-linux-$(VSCODE_ARCH)-$(System.JobAttempt)
displayName: Publish Node Modules
sbomEnabled: false
isProduction: false
isProduction: true
condition: failed()
- output: pipelineArtifact
targetPath: $(Build.SourcesDirectory)/.build/logs
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/win32/product-build-win32-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
artifactName: node-modules-windows-$(VSCODE_ARCH)-${{ lower(parameters.VSCODE_TEST_SUITE) }}-$(System.JobAttempt)
displayName: Publish Node Modules
sbomEnabled: false
isProduction: false
isProduction: true
condition: failed()
- output: pipelineArtifact
targetPath: $(Build.SourcesDirectory)/.build/logs
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/win32/product-build-win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
artifactName: node-modules-windows-$(VSCODE_ARCH)-$(System.JobAttempt)
displayName: Publish Node Modules
sbomEnabled: false
isProduction: false
isProduction: true
condition: failed()
- output: pipelineArtifact
targetPath: $(Build.SourcesDirectory)/.build/logs
Expand Down
Loading
Loading