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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
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+
821## 0.35.0 - May 19, 2025
922### Added
1023- 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 {
444444 let ( originalTab, currentTab) = targetWorkspace. switchTab ( to: & tab)
445445 state. chatHistory. updateHistory ( targetWorkspace)
446446
447- let currentChatWorkspace = chatWorkspace
447+ let currentChatWorkspace = targetWorkspace
448448 return . run { send in
449449 await send ( . saveChatTabInfo( [ originalTab, currentTab] , currentChatWorkspace) )
450450 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
22
33** 🚀 Highlights**
44
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.
78
89** 💪 Improvements**
910
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.
1414
1515** 🛠️ Bug Fixes**
1616
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