Skip to content

Commit

Permalink
HSEARCH-4849 Test against Elasticsearch 8.7.1 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and marko-bekhta committed May 3, 2023
1 parent c23854d commit 2c31120
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ stage('Configure') {
new EsLocalBuildEnvironment(version: '8.4.3', condition: TestCondition.ON_DEMAND),
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.0', condition: TestCondition.BEFORE_MERGE, isDefault: true),
new EsLocalBuildEnvironment(version: '8.7.1', condition: TestCondition.BEFORE_MERGE, isDefault: true),

// --------------------------------------------
// OpenSearch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public static List<Object[]> params() {
Elasticsearch7ModelDialect.class, Elasticsearch70ProtocolDialect.class
),
success(
ElasticsearchDistributionName.ELASTIC, "8", "8.7.0",
ElasticsearchDistributionName.ELASTIC, "8", "8.7.1",
Elasticsearch8ModelDialect.class, Elasticsearch81ProtocolDialect.class
),
success(
Expand Down Expand Up @@ -351,7 +351,7 @@ public static List<Object[]> params() {
Elasticsearch8ModelDialect.class, Elasticsearch81ProtocolDialect.class
),
success(
ElasticsearchDistributionName.ELASTIC, "8.7", "8.7.0",
ElasticsearchDistributionName.ELASTIC, "8.7", "8.7.1",
Elasticsearch8ModelDialect.class, Elasticsearch81ProtocolDialect.class
),
success(
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.7.0" ),
esVersion -> !esVersion.isBetween( "7.17.7", "7.17" ) && !esVersion.isBetween( "8.5.0", "8.7.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.7.0</version.org.elasticsearch.latest>
<version.org.elasticsearch.latest>8.7.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.6</version.org.opensearch.compatible.regularly-tested.text>
Expand Down

0 comments on commit 2c31120

Please sign in to comment.