Skip to content

Commit 8a0c494

Browse files
committed
Add changelog for 0.55.0 release
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent 14fa6e4 commit 8a0c494

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## 0.55.0 (December 23rd, 2019)
4+
* enhancement - added support for Call Hierarchy. See [#650](https://github.com/redhat-developer/vscode-java/issues/650).
5+
* enhancement - add jars to classpath via new `java.project.referencedLibraries` preference. See [#1196](https://github.com/redhat-developer/vscode-java/pull/1196).
6+
* enhancement - completion results are now limited via `java.completion.maxResults` preference. See [JLS#1298](https://github.com/eclipse/eclipse.jdt.ls/pull/1298).
7+
* enhancement - Remove duplicate call of getRawLocationURI(). See [JLS#1299](https://github.com/eclipse/eclipse.jdt.ls/pull/1299).
8+
* bug fixed - fixed Java Overview breaking the import of invisible projects. See [#1198](https://github.com/redhat-developer/vscode-java/issues/1198).
9+
* bug fixed - fixed build status reporter in multi-root workspaces. See [#1180](https://github.com/redhat-developer/vscode-java/issues/1180).
10+
* bug fixed - fixed incorrect signatures returned by signatureHelp. See [JLS#1290](https://github.com/eclipse/eclipse.jdt.ls/issues/1290).
11+
* bug fixed - fixed broken signatureHelp when previous string parameter has `(` or `{`. See [JLS#1293](https://github.com/eclipse/eclipse.jdt.ls/issues/1293).
12+
* debt - relicensed project to EPL-v2.0. See [commit](https://github.com/redhat-developer/vscode-java/commit/9b0032feb75d07f46231391ae3bf11f53e152a24).
13+
14+
315
## 0.54.2 (December 5th, 2019)
416
* bug fix - add `java.showBuildStatusOnStart.enabled` setting for revealing build status on startup. See [#1181](https://github.com/redhat-developer/vscode-java/issues/1181).
517

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Features
2222

2323
* Supports code from Java 1.5 to Java 13
2424
* Maven pom.xml project support
25-
* Basic Gradle Java project support (Android, Java 13 not supported)
25+
* Basic Gradle Java project support (Android not supported)
2626
* Standalone Java files support
2727
* As-you-type reporting of parsing and compilation errors
2828
* Code completion
@@ -119,10 +119,11 @@ The following settings are supported:
119119
* `java.codeGeneration.toString.listArrayContents`: List contents of arrays instead of using native toString(). Defaults to `true`.
120120
* `java.codeGeneration.toString.limitElements`: Limit number of items in arrays/collections/maps to list, if 0 then list all. Defaults to `0`.
121121
* `java.selectionRange.enabled`: Enable/disable Smart Selection support for Java. Disabling this option will not affect the VS Code built-in word-based and bracket-based smart selection.
122-
123-
New in 0.54.2:
124122
* `java.showBuildStatusOnStart.enabled`: Automatically show build status on startup. Defaults to `false`.
125123

124+
New in 0.55.0:
125+
* `java.project.referencedLibraries`: Configure glob patterns for referencing local libraries to a Java project.
126+
* `java.completion.maxResults`: Maximum number of completion results (not including snippets).Setting 0 will disable the limit and return all results. Be aware the performance will be very negatively impacted.
126127

127128
Troubleshooting
128129
===============

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,12 @@
267267
"scope": "window",
268268
"minimum": 1
269269
},
270+
"java.completion.maxResults": {
271+
"type": "integer",
272+
"default": 50,
273+
"description": "Maximum number of completion results (not including snippets).\nSetting 0 will disable the limit and return all results. Be aware the performance will be very negatively impacted.",
274+
"scope": "window"
275+
},
270276
"java.completion.enabled": {
271277
"type": "boolean",
272278
"default": true,

0 commit comments

Comments
 (0)