Skip to content

Commit eba883a

Browse files
authored
build: Prepare for 0.18.0 (#205)
1 parent 04a2a20 commit eba883a

19 files changed

Lines changed: 49 additions & 23 deletions

File tree

  • com.microsoft.copilot.eclipse.branding/META-INF
  • com.microsoft.copilot.eclipse.core.agent.linux.aarch64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.linux.x64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.macosx.aarch64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.macosx.x64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.win32/META-INF
  • com.microsoft.copilot.eclipse.core.test/META-INF
  • com.microsoft.copilot.eclipse.core/META-INF
  • com.microsoft.copilot.eclipse.feature
  • com.microsoft.copilot.eclipse.repository
  • com.microsoft.copilot.eclipse.swtbot.test/META-INF
  • com.microsoft.copilot.eclipse.terminal.api/META-INF
  • com.microsoft.copilot.eclipse.ui.jobs/META-INF
  • com.microsoft.copilot.eclipse.ui.terminal.tm/META-INF
  • com.microsoft.copilot.eclipse.ui.terminal/META-INF
  • com.microsoft.copilot.eclipse.ui.test/META-INF
  • com.microsoft.copilot.eclipse.ui/META-INF

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.18.0
9+
### Added
10+
- ℹ️ Prepare for the [upcoming usage-based billing](https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/). We strongly recommend upgrading to this version as soon as possible. [#203](https://github.com/microsoft/copilot-for-eclipse/issues/203)
11+
- Add Copilot preference for a chat's custom instructions loading. [#62](https://github.com/microsoft/copilot-for-eclipse/issues/62), contributed by [@travkin79](https://github.com/travkin79)
12+
- Support skills and prompt files. [PR#133](https://github.com/microsoft/copilot-for-eclipse/pull/133)
13+
- Support displaying thinking blocks in chat view. [#202](https://github.com/microsoft/copilot-for-eclipse/issues/202)
14+
- Support selecting thinking effort for model. [#204](https://github.com/microsoft/copilot-for-eclipse/issues/204)
15+
16+
### Fixed
17+
- Cannot fall back to JS-based CLS when native binary fails to start. [#116](https://github.com/microsoft/copilot-for-eclipse/issues/116)
18+
- 400 Bad Request when restoring conversation from persistence. [#131](https://github.com/microsoft/copilot-for-eclipse/issues/131)
19+
- Tool call errors failed to render in chat view. [PR#145](https://github.com/microsoft/copilot-for-eclipse/pull/145)
20+
- BYOK display name label should be optional. [PR#158](https://github.com/microsoft/copilot-for-eclipse/pull/158)
21+
- Subagent progress events leak into unrelated conversation UI when switching sessions. [#160](https://github.com/microsoft/copilot-for-eclipse/issues/160)
22+
- Integrate CLS session persistence and restoration for conversation history. [PR#161](https://github.com/microsoft/copilot-for-eclipse/pull/161)
23+
- Subagent turns appear as separate assistant messages after restoration. [#163](https://github.com/microsoft/copilot-for-eclipse/issues/163)
24+
- UI freeze: caused by deadlock in EditorsManager. [#175](https://github.com/microsoft/copilot-for-eclipse/issues/175)
25+
- UI freeze: deadlock between main thread and LSP listener on quota fallback. [#179](https://github.com/microsoft/copilot-for-eclipse/issues/179)
26+
- The mode picker will be blank in preference page when workspace contains 'remote' FS project. [#180](https://github.com/microsoft/copilot-for-eclipse/issues/180)
27+
- Prevent focusing the Terminal view after executing a CLI command in Chat view. [#188](https://github.com/microsoft/copilot-for-eclipse/issues/188), contributed by [@rsd-darshan](https://github.com/rsd-darshan)
28+
29+
### Engineering
30+
- Extend CONTRIBUTING.md and adapt some Eclipse project settings to simplify getting started. [PR#176](https://github.com/microsoft/copilot-for-eclipse/pull/176), contributed by [@travkin79](https://github.com/travkin79)
31+
- Add explicit least-privilege permissions to CI workflow. [PR#185](https://github.com/microsoft/copilot-for-eclipse/pull/185), contributed by [@arpitjain099](https://github.com/arpitjain099)
32+
33+
834
## 0.17.0
935
### Added
1036
- Add context size donut and popup for visualizing token usage.

com.microsoft.copilot.eclipse.branding/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GitHub Copilot
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.branding;singleton:=true
5-
Bundle-Version: 0.17.0.qualifier
5+
Bundle-Version: 0.18.0.qualifier
66
Bundle-Vendor: GitHub Copilot
77
Automatic-Module-Name: com.microsoft.copilot.eclipse.branding

com.microsoft.copilot.eclipse.core.agent.linux.aarch64/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
5-
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
6-
Bundle-Version: 0.17.0.qualifier
5+
Automatic-Module-Name: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
6+
Bundle-Version: 0.18.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

com.microsoft.copilot.eclipse.core.agent.linux.x64/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.linux.x64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.linux.x64
5-
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.linux.x64
6-
Bundle-Version: 0.17.0.qualifier
5+
Automatic-Module-Name: com.microsoft.copilot.eclipse.core.agent.linux.x64
6+
Bundle-Version: 0.18.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

com.microsoft.copilot.eclipse.core.agent.macosx.aarch64/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
5-
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
6-
Bundle-Version: 0.17.0.qualifier
5+
Automatic-Module-Name: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
6+
Bundle-Version: 0.18.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

com.microsoft.copilot.eclipse.core.agent.macosx.x64/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.macosx.x64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.macosx.x64
5-
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.macosx.x64
6-
Bundle-Version: 0.17.0.qualifier
5+
Automatic-Module-Name: com.microsoft.copilot.eclipse.core.agent.macosx.x64
6+
Bundle-Version: 0.18.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

com.microsoft.copilot.eclipse.core.agent.win32/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.win32
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.win32
5-
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.win32
6-
Bundle-Version: 0.17.0.qualifier
5+
Automatic-Module-Name: com.microsoft.copilot.eclipse.core.agent.win32
6+
Bundle-Version: 0.18.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

com.microsoft.copilot.eclipse.core.test/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.test
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.test;singleton:=true
5-
Bundle-Version: 0.17.0.qualifier
5+
Bundle-Version: 0.18.0.qualifier
66
Bundle-Vendor: GitHub Copilot
77
Bundle-RequiredExecutionEnvironment: JavaSE-17
88
Fragment-Host: com.microsoft.copilot.eclipse.core

com.microsoft.copilot.eclipse.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core;singleton:=true
5-
Bundle-Version: 0.17.0.qualifier
5+
Bundle-Version: 0.18.0.qualifier
66
Bundle-Vendor: GitHub Copilot
77
Export-Package: com.microsoft.copilot.eclipse.core,
88
com.microsoft.copilot.eclipse.core.chat,

com.microsoft.copilot.eclipse.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="com.microsoft.copilot.eclipse.feature"
44
label="GitHub Copilot"
5-
version="0.17.0.qualifier"
5+
version="0.18.0.qualifier"
66
provider-name="GitHub Copilot"
77
plugin="com.microsoft.copilot.eclipse.branding">
88

0 commit comments

Comments
 (0)