chore(release): version packages - #143
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
5 times, most recently
from
September 21, 2026 14:58
c9c4109 to
0d9ec22
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
September 21, 2026 15:01
0d9ec22 to
c90da4c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@ctxo/lang-java@0.9.0
Minor Changes
3d9aa7d: Support Java 11+ full tier via dual-JAR strategy.
The full tier now activates with JRE 11+ (previously required JRE 17+). The
@ctxo/lang-java-analyzercompanion package ships two prebuilt JARs; thecorrect variant is selected automatically at runtime based on the detected JRE:
ctxo-jdt-analyzer-11.jar(JDT Core 3.33.0, analyzes Java 8–19)ctxo-jdt-analyzer-17.jar(JDT Core 3.39.0, analyzes Java 8–21)No configuration required. Falls back to syntax tier silently when JRE is
absent or below 11.
@ctxo/lang-java-analyzer@0.9.0
Minor Changes
12e7094: Ship dual JARs for the Java 11+ full tier.
The package now carries two prebuilt uber-JARs instead of one, and
@ctxo/lang-javapicks the right one at runtime from the detected JRE:
ctxo-jdt-analyzer-11.jar(JDT Core 3.33.0, JRE 11-16, analyzes Java 8-19)ctxo-jdt-analyzer-17.jar(JDT Core 3.39.0, JRE 17+, analyzes Java 8-21)This replaces the single
ctxo-jdt-analyzer.jarshipped through 0.8.0. The pluginresolves the variant by filename, so both packages must be published together:
@ctxo/lang-java0.9.0 looks only for the two new names and silently falls back tothe syntax tier when neither is present. See ADR-014.