Skip to content

Commit 65e54a8

Browse files
committed
Release 0.45.0
1 parent c9d0ce9 commit 65e54a8

File tree

4 files changed

+55
-43
lines changed

4 files changed

+55
-43
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.45.0 - November 14, 2025
9+
### Added
10+
- New models: GPT-5.1, GPT-5.1-Codex, GPT-5.1-Codex-Mini, Claude Haiku 4.5, and Auto (preview).
11+
- Added support for custom agents (preview).
12+
- Introduced the built-in Plan agent (preview).
13+
- Added support for subagent execution (preview).
14+
- Added support for Next Edit Suggestions (preview).
15+
16+
### Changed
17+
- MCP servers now support dynamic OAuth setup for third-party authentication providers.
18+
- Added a setting to configure the maximum number of tool requests allowed.
19+
20+
### Fixed
21+
- Fixed an issue that the terminal view in Agent conversation was clipped
22+
- Fixed an issue that the Chat panel failed to recognize newly created workspaces.
23+
824
## 0.44.0 - October 15, 2025
925
### Added
1026
- Added support for new models in Chat: Grok Code Fast 1, Claude Sonnet 4.5, Claude Opus 4, Claude Opus 4.1 and GPT-5 mini.

ReleaseNotes.md

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

33
**🚀 Highlights**
44

5-
* Added support for new models in Chat: Grok Code Fast 1, Claude Sonnet 4.5, Claude Opus 4, Claude Opus 4.1 and GPT-5 mini.
6-
* Added support for restoring to a saved checkpoint snapshot.
7-
* Added support for tool selection in agent mode.
8-
* Added the ability to adjust the chat panel font size.
9-
* Added the ability to edit a previous chat message and resend it.
10-
* Introduced a new setting to disable the Copilot “Fix Error” button.
11-
* Added support for custom instructions in the Code Review feature.
5+
- Added new models: GPT-5.1, GPT-5.1-Codex, GPT-5.1-Codex-Mini, Claude Haiku 4.5, and Auto (preview).
6+
- Added support for custom agents (preview).
7+
- Introduced the built-in Plan agent (preview).
8+
- Added support for subagent execution (preview).
9+
- Added support for Next Edit Suggestions (preview).
1210

1311
**💪 Improvements**
1412

15-
* Switched authentication to a new OAuth app "GitHub Copilot IDE Plugin".
16-
* Updated the chat layout to a messenger-style conversation view (user messages on the right, responses on the left).
17-
* Now shows a clearer, more user-friendly message when Copilot finishes responding.
18-
* Added support for skipping a tool call without ending the conversation.
13+
- MCP servers now support dynamic OAuth setup for third-party authentication providers.
14+
- Added a setting to configure the maximum number of tool requests allowed.
1915

2016
**🛠️ Bug Fixes**
2117

22-
* Fixed a command injection vulnerability when opening referenced chat files.
23-
* Resolved display issues in the chat view on macOS 26.
18+
- Fixed an issue that the terminal view in Agent conversation was clipped
19+
- Fixed an issue that the Chat panel failed to recognize newly created workspaces.

Server/package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"build": "webpack"
88
},
99
"dependencies": {
10-
"@github/copilot-language-server": "1.394.0",
11-
"@github/copilot-language-server-darwin-arm64": "1.394.0",
12-
"@github/copilot-language-server-darwin-x64": "1.394.0",
10+
"@github/copilot-language-server": "1.395.0",
11+
"@github/copilot-language-server-darwin-arm64": "1.395.0",
12+
"@github/copilot-language-server-darwin-x64": "1.395.0",
1313
"@xterm/addon-fit": "^0.10.0",
1414
"@xterm/xterm": "^5.5.0",
1515
"monaco-editor": "0.52.2"

0 commit comments

Comments
 (0)