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 : )

eli-w-king and others added 28 commits January 30, 2026 15:49
fix: switch to list-style selection for single and multi-select questions
also cleans up old height eventing that is unused since Rob's refactor.

Fixes #277541

(Commit message generated by Copilot)
Adds improved diff editing workflow and accessibility features to chat
compare blocks:

- Add toggle inline/side-by-side diff view mode action with icon
- Add open in diff editor action for full editor view
- Fix isCodeCompareBlockActionContext to properly check diffEditor property
- Add readOnly context key checks to prevent editing read-only diffs
- Adjust menu order for accept/discard actions (10, 11) and diff toggle (1)
- Add toggleDiffViewMode callback to action context
- Improve screen reader accessibility for compare block toolbar
- Add width tracking to layout method for proper initialization
- Refactor CSS for compare block header with nested selectors for better
  label truncation and styling

Fixes #287816

(Commit message generated by Copilot)
* fix: restore freeform support and summary

* add more tests
Iterates the fix for #288508

No assurance post-approval checks happen in a microtask. Tools results that will be auto-approved should never transition through the approval-needed state
Wait until active editor change to close welcome view
Root Cause: Commit cfe17d6 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
Fix alignment in terminal inline chat widget
* Initial plan

* Add smoke test for anonymous chat access

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

* fix

* .

* .

* .

* .

* .

* .

* .

---------

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@microsoft.com>
…92022)

* Initial plan

* Fix panel alignment breaking when auxiliary bar is maximized

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>
…er if vscode.workspace.openTextDocument is used
Fix Monaco scroll offset buffer use after destroy
* Don't report using subagent that doesn't exist

Fix #292196

* Update test to mock chatModeService.findModeByName
5 words/s is not reasonable. We are under-measuring in some streaming scenarios cases that are hard to measure correctly so just have a better minimum
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Include ID in reporter for telemetry tracking
rzhao271 and others added 30 commits February 4, 2026 11:41
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…glob, etc) (#292768)

* Support serialized tool call results that return resources (e.g. rg, glob, etc)

* Fixes

* add tests

* Fixes
* Update azd fig spec

Add full extension command details
Add new commands
Use generator for `config` commands

* Apply suggestions from code review

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* add claude.md support

* add tests

* use realpath to find duplicates

* only set realPath for symlinks

* update

* update

* Update src/vs/workbench/contrib/chat/browser/chat.contribution.ts

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

* fix tests

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

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Remove "experimental" from finalized setting
* preToolUse hook supporting "deny"

* Fix tests

* Simplify tests

* Fix test
Part of #292934

This is an implementation detail. Was only really added in 5.6 in case the new behavior caused issues. Should be safe to remove now
replace in checks with Object.hasOwn
* Add common output hook types, reorganize a bit more

* test fixes
* make sure to hide  tool calls'

* Update src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationPart.ts

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

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…P, display input and outupt) (#292773)

* Support serialized tool call results for generic tools (similar to MCP, display input and outupt)

* Updates

* Updates
Looks like multiple changes started using the wrong uri type. This fixes `new chat editor` but I think a few other callers are doing the same thing. Will follow up with separate PRs
* Make explicit chat hook "internal" vs "external" types

* Renames

* Avoid types re-export

* Move to hooks/

* This
Add scroll behavior setting for Settings editor
…e processed immediately (#292846)

* Refactor view model to directly receive model events

Simplify how the view model receives and processes model events by establishing a more direct connection between the model and view model layers.

Co-authored-by: Aiday Marlen Kyzy <amarlenkyzy@microsoft.com>

* Fix post-merge errors

* Add jsdoc comments

* Fix cursor position during undo/redo with immediate viewModel events

Pass resultingSelection through the call chain during undo/redo:
- _applyUndoRedoEdits -> _doApplyEdits -> _emitContentChangedEvent

This ensures viewModels receive the correct cursor selection immediately
when processing content changes, rather than falling back to marker
recovery which places the cursor at the end of inserted text.

Fixes issue #42783

* Update src/vs/editor/test/browser/viewModel/viewModelImpl.test.ts

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

* Update src/vs/editor/test/common/model/model.test.ts

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

* Fix formatting

---------

Co-authored-by: Aiday Marlen Kyzy <amarlenkyzy@microsoft.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.