You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: release-notes/v1_103.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,22 +67,22 @@ The [`#codebase` tool](https://code.visualstudio.com/docs/copilot/chat/copilot-c
67
67
68
68
Remote indexes are used automatically when working in a workspace that is linked to Azure DevOps through git. Make sure you are also logged into VS Code with the Microsoft account you use to access the Azure DevOps repos.
69
69
70
-
We're gradually rolling out support for this feature on the services side, so not every organization might be able to use it initially. Based on the success of the rollout, we hope to turn it remote indexing for Azure DevOps for as many organizations as possible.
70
+
We're gradually rolling out support for this feature on the services side, so not every organization might be able to use it initially. Based on the success of the rollout, we hope to turn on remote indexing for Azure DevOps for as many organizations as possible.
71
71
72
72
### Improved reliability and performance of the run in terminal and task tools
73
73
74
74
We have migrated the tools for running tasks and commands within the terminal from the Copilot extension into the core [microsoft/vscode repository](https://github.com/microsoft/vscode). This gives the tools access to lower-level and richer APIs, allowing us to fix many of the terminal hanging issues. This update also comes with the benefit of more easily implementing features going forward, as we're no longer restricted to the capabilities of the extension API, especially any changes that need custom UI within the Chat view.
75
75
76
76
### Terminal auto-approve improvements
77
77
78
-
Early terminal autoapprove settings were introduced last month. This release the feature got many improvements. Learn more about [terminal auto-approval](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode#_autoapprove-terminal-commands-experimental) in our documentation.
78
+
Early terminal auto-approve settings were introduced last month. This release, the feature got many improvements. Learn more about [terminal auto-approval](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode#_autoapprove-terminal-commands-experimental) in our documentation.
79
79
80
80
- We merged the `allowList` and `denyList` settings into the `setting(chat.tools.terminal.autoApprove)` setting. If you were using the old settings, you should see a warning asking you to migrate to the new setting.
81
81
- Regular expression matchers now support flags. This allows case insensitivity, for example in PowerShell, where case often doesn't matter:
82
82
83
83
```json
84
84
"chat.tools.terminal.autoApprove": {
85
-
// Deny any `remote-item` command, regardless of case
85
+
// Deny any `Remove-Item` command, regardless of case
86
86
"/^Remove-Item\\b/i": false
87
87
}
88
88
```
@@ -91,7 +91,7 @@ Early terminal auto approve settings were introduced last month. This release th
91
91
92
92
```jsonc
93
93
"chat.tools.terminal.autoApprove": {
94
-
// Deny any _command line_ containing a reference to what is likely a powershell script
94
+
// Deny any _command line_ containing a reference to what is likely a PowerShell script
@@ -528,7 +528,7 @@ export async function activate(context: ExtensionContext) {
528
528
}
529
529
```
530
530
531
-
> **NOTE**: This change is dependant on a change to anything that provides an alternative implementation of a Secret Storage, notably <https://vscode.dev>, which has adopted the new API, and <https://gitub.dev>, which will adopt the new API soon. In an environment where it is not supported, this API will throw an exception.
531
+
> **NOTE**: This change is dependent on a change to anything that provides an alternative implementation of a Secret Storage, notably <https://vscode.dev>, which has adopted the new API, and <https://github.dev>, which will adopt the new API soon. In an environment where it is not supported, this API will throw an exception.
0 commit comments