Skip to content

Commit

Permalink
Merge pull request #603 from scireum/feature/ymo/SIRI-920-dependencies
Browse files Browse the repository at this point in the history
update some dependencies.
  • Loading branch information
ymo-sci authored Dec 19, 2023
2 parents e942a75 + d5fbda5 commit c7d58cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
19 changes: 6 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.scireum</groupId>
<artifactId>sirius-parent</artifactId>
<version>11.2.0</version>
<version>11.5.0</version>
</parent>
<artifactId>sirius-db</artifactId>
<version>DEVELOPMENT-SNAPSHOT</version>
Expand All @@ -19,7 +19,7 @@
<url>http://www.sirius-lib.net</url>

<properties>
<sirius.kernel>dev-40.0.0</sirius.kernel>
<sirius.kernel>dev-42.0.0</sirius.kernel>
</properties>

<repositories>
Expand All @@ -45,12 +45,12 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.9.0</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>4.7.1</version>
<version>4.11.1</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
Expand All @@ -67,19 +67,12 @@
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-client</artifactId>
<version>8.4.1</version>
<version>8.11.2</version>
</dependency>
<!-- Required as the version brought by elasticsearch-rest-client contains security issues -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>

<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.0.6</version>
<version>3.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sirius/db/jdbc/Database.java
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private void initialize() {
ds.setMaxIdle(maxIdle);
ds.setTestOnBorrow(testOnBorrow);
ds.setValidationQuery(validationQuery);
ds.setMaxWaitMillis(1000);
ds.setMaxWait(Duration.ofSeconds(1));
}
}

Expand Down
3 changes: 0 additions & 3 deletions src/test/kotlin/sirius/db/testutil/MongoMocks.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ import sirius.db.mongo.types.MongoRef
class MongoMocks {
companion object {
/**
* Wrap an entity as a MongoRef
* @param entity which is to be wrapped
*/ /**
* Wrap an entity as a MongoRef
* @param entity which is to be wrapped
*/
Expand Down

0 comments on commit c7d58cc

Please sign in to comment.