Skip to content

Commit

Permalink
fix(deps): update dependency org.mongodb:mongo-java-driver to v2.14.3
Browse files Browse the repository at this point in the history
Fixes #5865
  • Loading branch information
renovate-bot authored and vlsi committed Nov 24, 2023
1 parent 5bf0e2d commit b788603
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/bom-thirdparty/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ dependencies {
api("org.jodd:jodd-log:5.0.13")
api("org.jodd:jodd-props:5.0.13")
api("org.jsoup:jsoup:1.16.1")
api("org.mongodb:mongo-java-driver:2.11.3")
api("org.mongodb:mongo-java-driver:2.14.3")
api("org.mozilla:rhino:1.7.14")
api("org.neo4j.driver:neo4j-java-driver:4.4.12")
api("org.slf4j:jcl-over-slf4j:1.7.36")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ public boolean expectsModification() {
}

@Override
@SuppressWarnings("deprecation")
public void testStarted() {
if(log.isDebugEnabled()) {
log.debug(getTitle() + " testStarted");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public MongoDB(
mongo = new MongoClient(serverAddresses, mongoOptions);
}

@SuppressWarnings("deprecation")
public DB getDB(String database, String username, String password) {

if(log.isDebugEnabled()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public MongoScriptRunner() {
* @throws Exception
* when evaluation on the database fails
*/
@SuppressWarnings("deprecation")
public Object evaluate(DB db, String script)
throws Exception {

Expand Down

0 comments on commit b788603

Please sign in to comment.