Skip to content

Commit

Permalink
Merge pull request #275 from eclipse/upgrade-library
Browse files Browse the repository at this point in the history
Upgrade Java Driver library
  • Loading branch information
otaviojava authored May 11, 2024
2 parents 19b5c10 + 0c70ffb commit 55fd1de
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 14 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ and this project adheres to https://semver.org/spec/v2.0.0.html[Semantic Version

=== Changed

- Update ArangoDB driver to 7.5.1
- Update Elasticsearch driver to 8.12.2
- Update OrientDB driver to 3.2.28
- Update ArangoDB driver to 7.6.0
- Update Couchbase library to version 3.6.2
- Update Elasticsearch driver to 8.13.4
- Update Hazelcast driver to 5.4.0
- Update MongoDB driver to 4.13.0
- Update OrientDB driver to 3.2.29
- Update Jedis driver to 5.1.0
- Update Solr driver to 9.5.0
- Update Testcontainer to 1.19.6
- Update Testcontainer to 1.19.8
- Upgrade Jakarta Data to version 1.0.0-M3

=== Removed
Expand Down
2 changes: 1 addition & 1 deletion jnosql-arangodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>The Eclipse JNoSQL layer to ArangoDB</description>

<properties>
<arango.driver>7.5.1</arango.driver>
<arango.driver>7.6.0</arango.driver>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jnosql-couchbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>java-client</artifactId>
<version>3.4.11</version>
<version>3.6.2</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
Expand Down
2 changes: 1 addition & 1 deletion jnosql-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>The Eclipse JNoSQL layer to Elasticsearch</description>

<properties>
<elasticsearch-java.version>8.12.2</elasticsearch-java.version>
<elasticsearch-java.version>8.13.4</elasticsearch-java.version>
<awaitility.version>4.2.0</awaitility.version>
</properties>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jnosql-hazelcast/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>5.3.6</version>
<version>5.4.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jnosql-infinispan/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<description>The Eclipse JNoSQL layer implementation for Infinispan</description>

<properties>
<infinispan.version>14.0.0.Final</infinispan.version>
<infinispan.version>15.0.3.Final</infinispan.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jnosql-mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<description>The Eclipse JNoSQL layer to MongoDB</description>

<properties>
<monbodb.driver>5.0.1</monbodb.driver>
<monbodb.driver>5.1.0</monbodb.driver>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jnosql-solr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>9.5.0</version>
<version>9.6.0</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public SolrDocumentManagerFactory apply(Settings settings) throws NullPointerExc

boolean automaticCommit = settings.getOrDefault(SolrDocumentConfigurations.AUTOMATIC_COMMIT, true);

final Http2SolrClient solrClient = new Http2SolrClient.Builder(host).build();
solrClient.setParser(new XMLResponseParser());
final Http2SolrClient solrClient = new Http2SolrClient.Builder(host)
.withResponseParser(new XMLResponseParser()).build();
return new SolrDocumentManagerFactory(solrClient, automaticCommit);

}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</scm>

<properties>
<testcontainers.version>1.19.6</testcontainers.version>
<testcontainers.version>1.19.8</testcontainers.version>
<jnosql.test.integration>false</jnosql.test.integration>
</properties>

Expand Down

0 comments on commit 55fd1de

Please sign in to comment.