File tree Expand file tree Collapse file tree 3 files changed +23
-11
lines changed
Core/Sources/SuggestionWidget/FeatureReducers Expand file tree Collapse file tree 3 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## 0.36.0 - June 4, 2025
9
+ ### Added
10
+ - Introduced a new chat setting "** Response Language** " under ** Advanced** settings to customize the natural language used in chat replies.
11
+ - Enabled support for custom instructions defined in _ .github/copilot-instructions.md_ within your workspace.
12
+ - Added support for premium request handling.
13
+
14
+ ### Fixed
15
+ - Performance: Improved UI responsiveness by lazily restoring chat history.
16
+ - Performance: Fixed lagging issue when pasting large text into the chat input.
17
+ - Performance: Improved project indexing performance.
18
+ - Don't trigger / (slash) commands when pasting a file path into the chat input.
19
+ - Adjusted terminal text styling to align with Xcode’s theme.
20
+
8
21
## 0.35.0 - May 19, 2025
9
22
### Added
10
23
- Launched Agent Mode. Copilot will automatically use multiple requests to edit files, run terminal commands, and fix errors.
Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ public struct ChatPanelFeature {
444
444
let ( originalTab, currentTab) = targetWorkspace. switchTab ( to: & tab)
445
445
state. chatHistory. updateHistory ( targetWorkspace)
446
446
447
- let currentChatWorkspace = chatWorkspace
447
+ let currentChatWorkspace = targetWorkspace
448
448
return . run { send in
449
449
await send ( . saveChatTabInfo( [ originalTab, currentTab] , currentChatWorkspace) )
450
450
await send ( . scheduleLRUCleanup( currentChatWorkspace) )
Original file line number Diff line number Diff line change 1
- ### GitHub Copilot for Xcode 0.35 .0
1
+ ### GitHub Copilot for Xcode 0.36 .0
2
2
3
3
** 🚀 Highlights**
4
4
5
- * ** Agent Mode** : Copilot will automatically use multiple requests to edit files, run terminal commands, and fix errors.
6
- * ** Model Context Protocol (MCP)** : Integrated with Agent Mode, allowing you to configure MCP tools to extend capabilities.
5
+ * Introduced a new chat setting "** Response Language** " under ** Advanced** settings to customize the natural language used in chat replies.
6
+ * Enabled support for custom instructions defined in _ .github/copilot-instructions.md_ within your workspace.
7
+ * Added support for premium request handling.
7
8
8
9
** 💪 Improvements**
9
10
10
- * Added a button to enable/disable referencing current file in conversations
11
- * Added an animated progress icon in the response section
12
- * Refined onboarding experience with updated instruction screens and welcome views
13
- * Improved conversation reliability with extended timeout limits for agent requests
11
+ * Performance: Improved UI responsiveness by lazily restoring chat history.
12
+ * Performance: Fixed lagging issue when pasting large text into the chat input.
13
+ * Performance: Improved project indexing performance.
14
14
15
15
** 🛠️ Bug Fixes**
16
16
17
- * Addressed critical error handling issues in core functionality
18
- * Resolved UI inconsistencies with chat interface padding adjustments
19
- * Improved network access with automatic detection of system environment variables for custom certificates
17
+ * Don't trigger / (slash) commands when pasting a file path into the chat input.
18
+ * Adjusted terminal text styling to align with Xcode’s theme.
You can’t perform that action at this time.
0 commit comments