Skip to content

Commit

Permalink
HSEARCH-4871 Test against Elasticsearch 8.8.1 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-bekhta authored and yrodiere committed Jun 12, 2023
1 parent 41218e7 commit 31a81db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ stage('Configure') {
new EsLocalBuildEnvironment(version: '8.5.3', condition: TestCondition.ON_DEMAND),
new EsLocalBuildEnvironment(version: '8.6.2', condition: TestCondition.ON_DEMAND),
new EsLocalBuildEnvironment(version: '8.7.1', condition: TestCondition.ON_DEMAND),
new EsLocalBuildEnvironment(version: '8.8.0', condition: TestCondition.BEFORE_MERGE, isDefault: true),
new EsLocalBuildEnvironment(version: '8.8.1', condition: TestCondition.BEFORE_MERGE, isDefault: true),

// --------------------------------------------
// OpenSearch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public boolean supportsExtremeScaledNumericValues() {
// https://github.com/elastic/elasticsearch/issues/91246
// Hopefully this will get fixed in a future version.
return isActualVersion(
esVersion -> !esVersion.isBetween( "7.17.7", "7.17" ) && !esVersion.isBetween( "8.5.0", "8.8.0" ),
esVersion -> !esVersion.isBetween( "7.17.7", "7.17" ) && !esVersion.isBetween( "8.5.0", "8.8.1" ),
osVersion -> true
);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
<!-- The versions of Elasticsearch that may work, but are not given priority for bugfixes and new features -->
<version.org.elasticsearch.compatible.not-regularly-tested.text>7.0 or 8.0</version.org.elasticsearch.compatible.not-regularly-tested.text>
<!-- The latest version of Elasticsearch tested against by default -->
<version.org.elasticsearch.latest>8.8.0</version.org.elasticsearch.latest>
<version.org.elasticsearch.latest>8.8.1</version.org.elasticsearch.latest>
<!-- The versions of OpenSearch advertised as compatible with Hibernate Search -->
<!-- Make sure to only mention tested versions here -->
<version.org.opensearch.compatible.regularly-tested.text>1.3 or 2.8</version.org.opensearch.compatible.regularly-tested.text>
Expand Down

0 comments on commit 31a81db

Please sign in to comment.