From d4507c9d10af0cda773de0f93b9232150fc2a6b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Mar 2025 07:27:30 +0000 Subject: [PATCH 1/2] Bump com.google.guava:guava from 33.4.0-jre to 33.4.6-jre Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.4.0-jre to 33.4.6-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) --- updated-dependencies: - dependency-name: com.google.guava:guava dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index e91fe6c..e4df5a6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -61,7 +61,7 @@ subprojects { dependencies { api("com.google.code.findbugs:jsr305:3.0.2") - testImplementation("com.google.guava:guava:33.4.0-jre") + testImplementation("com.google.guava:guava:33.4.6-jre") testImplementation("org.testng:testng:7.11.0") } From 2ec93bf8d94ef4d989e2a7903e4ab22ca3197c35 Mon Sep 17 00:00:00 2001 From: Marat Radchenko Date: Wed, 26 Mar 2025 10:39:54 +0300 Subject: [PATCH 2/2] Fix compilation --- .../test/kotlin/ru/bozaro/gitlfs/common/data/BatchResTest.kt | 2 +- .../src/test/kotlin/ru/bozaro/gitlfs/common/data/LinkTest.kt | 4 ++-- .../test/kotlin/ru/bozaro/gitlfs/common/data/ObjectResTest.kt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/BatchResTest.kt b/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/BatchResTest.kt index 03acbd7..c737cb7 100644 --- a/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/BatchResTest.kt +++ b/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/BatchResTest.kt @@ -33,7 +33,7 @@ class BatchResTest { Assert.assertEquals(link.href, URI("https://some-download.com")) Assert.assertEquals( link.header, - ImmutableMap.builder() + ImmutableMap.builder() .put("Authorization", "Basic ...") .build() ) diff --git a/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/LinkTest.kt b/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/LinkTest.kt index 56e0a98..e15c2b8 100644 --- a/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/LinkTest.kt +++ b/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/LinkTest.kt @@ -22,7 +22,7 @@ class LinkTest { Assert.assertNotNull(link) Assert.assertEquals(link.href, URI("https://storage-server.com/OID")) Assert.assertEquals(link.header, - ImmutableMap.builder() + ImmutableMap.builder() .put("Authorization", "Basic ...") .build() ) @@ -35,7 +35,7 @@ class LinkTest { Assert.assertNotNull(link) Assert.assertEquals(link.href, URI("https://api.github.com/lfs/bozaro/git-lfs-java")) Assert.assertEquals(link.header, - ImmutableMap.builder() + ImmutableMap.builder() .put("Authorization", "RemoteAuth secret") .build() ) diff --git a/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/ObjectResTest.kt b/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/ObjectResTest.kt index 1bc39d1..9a7e339 100644 --- a/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/ObjectResTest.kt +++ b/gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/ObjectResTest.kt @@ -32,7 +32,7 @@ class ObjectResTest { Assert.assertNotNull(link) Assert.assertEquals(link.href, URI("https://storage-server.com/OID")) Assert.assertEquals(link.header, - ImmutableMap.builder() + ImmutableMap.builder() .put("Authorization", "Basic ...") .build() ) @@ -49,7 +49,7 @@ class ObjectResTest { Assert.assertNotNull(link) Assert.assertEquals(link.href, URI("https://some-upload.com")) Assert.assertEquals(link.header, - ImmutableMap.builder() + ImmutableMap.builder() .put("Authorization", "Basic ...") .build() )