Skip to content

Commit 82d3232

Browse files
committed
Release 0.35.0
1 parent 77b2c02 commit 82d3232

File tree

4 files changed

+38
-9
lines changed

4 files changed

+38
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.35.0 - May 19, 2025
9+
### Added
10+
- Launched Agent Mode. Copilot will automatically use multiple requests to edit files, run terminal commands, and fix errors.
11+
- Introduced Model Context Protocol (MCP) support in Agent Mode, allowing you to configure MCP tools to extend capabilities.
12+
13+
### Changed
14+
- Added a button to enable/disable referencing current file in conversations
15+
- Added an animated progress icon in the response section
16+
- Refined onboarding experience with updated instruction screens and welcome views
17+
- Improved conversation reliability with extended timeout limits for agent requests
18+
19+
### Fixed
20+
- Addressed critical error handling issues in core functionality
21+
- Resolved UI inconsistencies with chat interface padding adjustments
22+
- Implemented custom certificate handling using system environment variables `NODE_EXTRA_CA_CERTS` and `NODE_TLS_REJECT_UNAUTHORIZED`, fixing network access issues
23+
824
## 0.34.0 - April 29, 2025
925
### Added
1026
- Added support for new models in Chat: OpenAI GPT-4.1, o3 and o4-mini, Gemini 2.5 Pro

Docs/welcome.png

-174 KB
Binary file not shown.

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ tool that helps you write code faster and smarter. Copilot for Xcode is an Xcode
88
GitHub Copilot Chat provides suggestions to your specific coding tasks via chat.
99
<img alt="Chat of GitHub Copilot for Xcode" src="./Docs/chat_dark.gif" width="800" />
1010

11+
## Agent Mode
12+
13+
GitHub Copilot Agent Mode provides AI-powered assistance that can understand and modify your codebase directly. With Agent Mode, you can:
14+
- Get intelligent code edits applied directly to your files
15+
- Run terminal commands and view their output without leaving the interface
16+
- Search through your codebase to find relevant files and code snippets
17+
- Create new files and directories as needed for your project
18+
- Get assistance with enhanced context awareness across multiple files and folders
19+
- Run Model Context Protocol (MCP) tools you configured to extend the capabilities
20+
21+
Agent Mode integrates with Xcode's environment, creating a seamless development experience where Copilot can help implement features, fix bugs, and refactor code with comprehensive understanding of your project.
22+
1123
## Code Completion
1224

1325
You can receive auto-complete type suggestions from GitHub Copilot either by starting to write the code you want to use, or by writing a natural language comment describing what you want the code to do.
@@ -98,10 +110,6 @@ You can receive auto-complete type suggestions from GitHub Copilot either by sta
98110
1. Press `tab` to accept the first line of a suggestion, hold `option` to view
99111
the full suggestion, and press `option` + `tab` to accept the full suggestion.
100112

101-
<p align="center">
102-
<img alt="Screenshot of welcome screen" src="./Docs/welcome.png" width="450" />
103-
</p>
104-
105113
## How to use Chat
106114

107115
Open Copilot Chat in GitHub Copilot.

ReleaseNotes.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
### GitHub Copilot for Xcode 0.34.0
1+
### GitHub Copilot for Xcode 0.35.0
22

33
**🚀 Highlights**
44

5-
* **New Models**: OpenAI GPT-4.1, o3 and o4-mini, Gemini 2.5 Pro are now available in the Copilot Chat model selector.
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.
67

78
**💪 Improvements**
89

9-
* Switched default model to GPT-4.1 for new installations
10-
* Enhanced model selection interface
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
1114

1215
**🛠️ Bug Fixes**
1316

14-
* Resolved critical error handling issues
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

0 commit comments

Comments
 (0)