Skip to content

[pull] main from microsoft:main#70

Open
pull[bot] wants to merge 10000 commits intoAppInitio:mainfrom
microsoft:main
Open

[pull] main from microsoft:main#70
pull[bot] wants to merge 10000 commits intoAppInitio:mainfrom
microsoft:main

Conversation

@pull
Copy link

@pull pull bot commented Aug 11, 2021

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

mjbvz and others added 28 commits February 12, 2026 14:34
* add support for fetching active chat session

* refactor: rename activeChatSession to activeChatPanelSession and update related events
- add protected workspace folder hooks in PromptFilesLocator to allow scoped roots
- normalize workspace folder lookup to avoid null/undefined mismatch
- allow PromptsService subclasses to supply a custom prompt files locator
Adopt unified js/ts setting for suggest
prompt actions: add extension points for folder and editor overrides
…fault-model

Add Explore agent default model picker and refactor DefaultModelContribution
Adopt esbuild instead of webpack for a few more extensions
Add retries for target download logic in sanity tests
…d-redirects

Prevent tracking redirects in fetch tool
* rename

* tests

* fixes

* Apply suggestion from @Copilot

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

* fix test

* Update src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.ts

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Support prompt file slash commands in backgrround agents

* Update tests

* Update comments
We should be using cjs here still. Only webviews use esm
)

* Initial plan

* feat: double-click modal editor header to toggle maximize, fix outline leak

Co-authored-by: bpasero <900690+bpasero@users.noreply.github.com>

* .

* .

* .

* .

* .

* .

* .

* .

* .

* .

* .

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: bpasero <900690+bpasero@users.noreply.github.com>
Co-authored-by: Benjamin Pasero <benjamin.pasero@gmail.com>
Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
* Show warning when claude code hooks are detected but disabled

* Fix

* Tweak label

* Fix
Copilot AI and others added 30 commits February 17, 2026 20:08
Fix sessionId in reviveSessionsWithEdits
…293628)

* fixfix: scope remote terminal env vars to correct workspace folder

Remote terminals used last active editor workspace instead of the
terminal's actual CWD, activating the wrong Python environment in
multi-root workspaces.

Fixes microsoft/vscode-python-environments#986

* Simpler and more reliable fix
Add tests to getWorkspaceForTerminal
* Pass pixel dimension through terminal resize

* Update src/vs/workbench/contrib/terminal/browser/terminalInstance.ts

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Fix restoring non-local chat session options
Revert "Use sequence as default terminal tab title"
Refactor chat status widget for no auth scenario
* fix sending new chat request in sessions window

* sessions - handle deleted active session by switching to the next available session

* sessions - ensure session switch only occurs for deleted known agent sessions

* refactor: rename ISessionsWorkbenchService to ISessionsManagementService and update references

- Replaced all instances of ISessionsWorkbenchService with ISessionsManagementService across multiple files.
- Updated the implementation of the active session management to reflect the new service name.
- Removed the old sessionsWorkbenchService.ts file and created a new sessionsManagementService.ts file with the updated logic.

* fix: update variable name from agentSessionsService to sessionsManagementService for consistency

* feat: make sidebar title area draggable and prevent dragging of interactive elements

* feat: add draggable title area for sidebar to enable window movement

* fix: update draggable area for interactive elements in sidebar title

* fix: update draggable area for interactive elements in sidebar title

* fix: update layout for chat widget extension pickers and sorting logic

* feat: implement dynamic target configuration for chat widget based on workspace context

* fix: remove local agent session from allowed targets in NewChatWidget

* feat: add local folder picker for workspace selection in NewChatWidget

* feat: enhance folder selection with recent folders in NewChatWidget

* feat: integrate action widget service for improved folder selection in NewChatWidget

* feat: implement custom folder dropdown for recent folder selection in NewChatWidget

* feat: replace custom folder dropdown with DropdownMenu for improved folder selection in NewChatWidget

* feat: update computeAllowedTargets to conditionally include Local agent session provider

* feat: replace DropdownMenu with SelectBox for improved folder selection in NewChatWidget

* feat: enhance folder selection with context menu and improved button UI in NewChatWidget
* Initial plan

* Add lock group feature when opening integrated browser side-by-side

Co-authored-by: jruales <1588988+jruales@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jruales <1588988+jruales@users.noreply.github.com>
Instead of always showing the `eyeClosed` icon, show the `eye` or `eyeClosed` icon depending on the current visibility.
…als (#295073)

* Support multi-root external terminal selection

* Dont use any

* Can I get rid of unknown?

* unknown to any

* edit tests

* try fix test

* better types?

* Use service directly
* Fix tsgo ext build problem matching

* Update .vscode/tasks.json

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

* Fix double timestamp

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Fixes an issue where stopping a chat session would fail to cancel the
request when a message was queued. The problem occurred because queued
messages could replace the pending request before the finally block
attempted to delete it.

The fix stores a reference to the CancellableRequest and checks that it
matches before deleting, preventing race conditions between queued messages
and request cancellation.

Fixes #295022

(Commit message generated by Copilot)
* revamp model picker

* implement new model picker and enable it in sessions window

* cleanup

* Apply suggestion from @Copilot

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

* Update src/vs/workbench/contrib/chat/browser/widget/input/chatModelPicker.ts

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

* feedback

* fix color

* revert

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* queuing: interrupt when messages are sent during confirmation

Got this feedback from a few people that steering/queuing during a tool
call confirmation should just cancel the confirmation and send the
message. This does that.

Also cleans up the opt-in setting I had added initially that was only
partially working, now that the feature has shipped.

* comments
* improved yaml parser

* Update src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.ts

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Try to align `scanBuiltinExtensions` with new esbuild changes
…og (#293837)

* fix: return undefined when user canceled input

* fix: resolve eslint warning local/code-no-any-casts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.