Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ ext {
minJavaVersion = JavaVersion.toVersion(deps.versions.minJava.get())

// also change this in extractor tool: ExtractForeignAPI
vectorIncubatorJavaVersions = [ JavaVersion.VERSION_21, JavaVersion.VERSION_22, JavaVersion.VERSION_23 ] as Set
vectorIncubatorJavaVersions = [
JavaVersion.VERSION_21,
JavaVersion.VERSION_22,
JavaVersion.VERSION_23,
JavaVersion.VERSION_24 ] as Set

// snapshot build marker used in scripts.
snapshotBuild = version.contains("SNAPSHOT")
Expand Down
2 changes: 2 additions & 0 deletions lucene/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ New Features
`longestMatch = true`. The value can be set to false to reduce the number of extracted subwords. For example,
if the word "schwein" is extracted, the sub-word "wein" is not extracted anymore. (Renato Haeberli)

* GITHUB#14300: Add support JDK 24 to the Panama Vectorization Provider. (Chris Hegarty)

Improvements
---------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public abstract class VectorizationProvider {

private static final String UPPER_JAVA_FEATURE_VERSION_SYSPROP =
"org.apache.lucene.vectorization.upperJavaFeatureVersion";
private static final int DEFAULT_UPPER_JAVA_FEATURE_VERSION = 23;
private static final int DEFAULT_UPPER_JAVA_FEATURE_VERSION = 24;

private static int getUpperJavaFeatureVersion() {
int runtimeVersion = DEFAULT_UPPER_JAVA_FEATURE_VERSION;
Expand Down