From 0ddc7ba018906b6bd6540f3a306c36142feb3504 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 07:52:38 +0000 Subject: [PATCH] fix(deps): update dependency io.github.cdimascio:dotenv-java to v3.2.0 --- playground/java/build.gradle | 2 +- templates/java/tests/build.mustache | 2 +- tests/output/scala/build.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/playground/java/build.gradle b/playground/java/build.gradle index bd4c98dc794..fed2d91d6e9 100644 --- a/playground/java/build.gradle +++ b/playground/java/build.gradle @@ -8,7 +8,7 @@ repositories { } dependencies { - implementation 'io.github.cdimascio:dotenv-java:3.0.1' + implementation 'io.github.cdimascio:dotenv-java:3.2.0' implementation 'com.algolia:algoliasearch:4.23.0' } diff --git a/templates/java/tests/build.mustache b/templates/java/tests/build.mustache index d3d241d6d11..70cfdf5fffe 100644 --- a/templates/java/tests/build.mustache +++ b/templates/java/tests/build.mustache @@ -19,7 +19,7 @@ dependencies { testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.skyscreamer:jsonassert:1.5.3' testImplementation 'com.fasterxml.jackson.core:jackson-core:2.19.2' - testImplementation 'io.github.cdimascio:dotenv-java:2.3.2' // use an old version to support java 8 + testImplementation 'io.github.cdimascio:dotenv-java:3.2.0' // use an old version to support java 8 } tasks.withType(JavaCompile) { diff --git a/tests/output/scala/build.sbt b/tests/output/scala/build.sbt index a4df66d2993..83c8ed339ee 100644 --- a/tests/output/scala/build.sbt +++ b/tests/output/scala/build.sbt @@ -8,4 +8,4 @@ val algoliasearch = ProjectRef(file("../../../clients/algoliasearch-client-scala dependsOn(algoliasearch) libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test -libraryDependencies += "io.github.cdimascio" % "dotenv-java" % "3.0.1" % Test +libraryDependencies += "io.github.cdimascio" % "dotenv-java" % "3.2.0" % Test