File tree Expand file tree Collapse file tree 15 files changed +29
-16
lines changed
com.redhat.microprofile.jdt.quarkus.site
com.redhat.microprofile.jdt.quarkus.test
com.redhat.microprofile.jdt.quarkus
quarkus.ls.ext/com.redhat.quarkus.ls
qute.ls/com.redhat.qute.ls Expand file tree Collapse file tree 15 files changed +29
-16
lines changed Original file line number Diff line number Diff line change 11# Quarkus extension for MicroProfile Language Server Changelog
22
3+ ## [ 0.23.0] ( https://github.com/redhat-developer/quarkus-ls/milestone/27?closed=1 ) (December 5, 2025)
4+
5+ ### Enhancements
6+
7+ * Smart iterable Qute completion support. See [ #1076 ] ( https://github.com/redhat-developer/quarkus-ls/pull/1076 ) .
8+
9+ ### Bug Fixes
10+
11+ * 'quarkus.log.level' is no longer marked as an unrecognized in ` application.properties ` . See [ #1068 ] ( https://github.com/redhat-developer/quarkus-ls/pull/1068 ) .
12+ * Close file stream when using ` Files.walk ` . See [ #1064 ] ( https://github.com/redhat-developer/quarkus-ls/pull/1064 ) .
13+ * Fix a "too many open files" crash caused by user tag support. See [ #1062 ] ( https://github.com/redhat-developer/quarkus-ls/issues/1062 ) .
14+ * Do not generate a property for ` <clinit> ` . See [ #1059 ] ( https://github.com/redhat-developer/quarkus-ls/pull/1059 ) .
15+
316## [ 0.22.0] ( https://github.com/redhat-developer/quarkus-ls/milestone/26?closed=1 ) (April 17, 2025)
417
518### Enhancements
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >parent</artifactId >
88 <groupId >com.redhat.microprofile</groupId >
9- <version >0.22.1 -SNAPSHOT</version >
9+ <version >0.23.0 -SNAPSHOT</version >
1010 </parent >
1111 <artifactId >com.microprofile.quarkus.jdt.site</artifactId >
1212 <packaging >eclipse-repository</packaging >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Manifest-Version: 1.0
22Bundle-ManifestVersion : 2
33Bundle-Name : quarkus.jdt.ls Test Plugin
44Bundle-SymbolicName : com.redhat.microprofile.jdt.quarkus.test
5- Bundle-Version : 0.22.1 .qualifier
5+ Bundle-Version : 0.23.0 .qualifier
66Bundle-RequiredExecutionEnvironment : JavaSE-17
77Require-Bundle : org.junit,
88 org.apache.commons.commons-io,
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >parent</artifactId >
88 <groupId >com.redhat.microprofile</groupId >
9- <version >0.22.1 -SNAPSHOT</version >
9+ <version >0.23.0 -SNAPSHOT</version >
1010 </parent >
1111 <artifactId >com.redhat.microprofile.jdt.quarkus.test</artifactId >
1212 <packaging >eclipse-test-plugin</packaging >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Bundle-Name: %pluginName
44Bundle-Vendor : %providerName
55Bundle-Localization : plugin
66Bundle-SymbolicName : com.redhat.microprofile.jdt.quarkus;singleton:=true
7- Bundle-Version : 0.22.1 .qualifier
7+ Bundle-Version : 0.23.0 .qualifier
88Require-Bundle : org.eclipse.lsp4mp.jdt.core;bundle-version="0.11.0",
99 org.eclipse.core.runtime,
1010 org.eclipse.jdt.core,
Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >parent</artifactId >
77 <groupId >com.redhat.microprofile</groupId >
8- <version >0.22.1 -SNAPSHOT</version >
8+ <version >0.23.0 -SNAPSHOT</version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111 <artifactId >com.redhat.microprofile.jdt.quarkus</artifactId >
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >com.redhat.microprofile</groupId >
55 <artifactId >parent</artifactId >
6- <version >0.22.1 -SNAPSHOT</version >
6+ <version >0.23.0 -SNAPSHOT</version >
77 <packaging >pom</packaging >
88 <name >quarkus.jdt.ls :: parent</name >
99 <description >quarkus.jdt.ls parent</description >
1616 <tycho .generateSourceReferences>true</tycho .generateSourceReferences>
1717 <tycho .test.platformArgs />
1818 <tycho .test.jvmArgs>-Xmx4G -DDetectVMInstallationsJob.disabled=true ${tycho.test.platformArgs} </tycho .test.jvmArgs>
19- <lsp4mp .p2.url>https://download.eclipse.org/lsp4mp/snapshots/0.14.2 /repository/</lsp4mp .p2.url>
19+ <lsp4mp .p2.url>https://download.eclipse.org/lsp4mp/snapshots/0.15.0 /repository/</lsp4mp .p2.url>
2020
2121 <!-- Code coverage -->
2222 <jacoco .version>0.8.8</jacoco .version>
Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >com.redhat.microprofile</groupId >
66 <artifactId >com.redhat.quarkus.ls</artifactId >
7- <version >0.22.1 -SNAPSHOT</version >
7+ <version >0.23.0 -SNAPSHOT</version >
88
99 <name >Quarkus Extension for the MicroProfile Language Server</name >
1010 <description >Quarkus extension for MicroProfile Language Server</description >
3939 <maven .build.timestamp.format>yyyyMMdd-HHmm</maven .build.timestamp.format>
4040 <dev .build.timestamp>${maven.build.timestamp} </dev .build.timestamp>
4141 <lsp4j .version>0.14.0</lsp4j .version>
42- <microprofile .ls.version>0.14.2 -SNAPSHOT</microprofile .ls.version>
42+ <microprofile .ls.version>0.15.0 -SNAPSHOT</microprofile .ls.version>
4343 </properties >
4444 <repositories >
4545 <repository >
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >parent-qute</artifactId >
88 <groupId >com.redhat.microprofile</groupId >
9- <version >0.22.1 -SNAPSHOT</version >
9+ <version >0.23.0 -SNAPSHOT</version >
1010 </parent >
1111 <artifactId >com.redhat.qute.jdt.site</artifactId >
1212 <packaging >eclipse-repository</packaging >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Bundle-Name: %pluginName
44Bundle-Vendor : %providerName
55Bundle-Localization : plugin
66Bundle-SymbolicName : com.redhat.qute.jdt.test;singleton:=true
7- Bundle-Version : 0.22.1 .qualifier
7+ Bundle-Version : 0.23.0 .qualifier
88Bundle-RequiredExecutionEnvironment : JavaSE-17
99Require-Bundle : org.junit,
1010 org.apache.commons.commons-io,
You can’t perform that action at this time.
0 commit comments