From d035ab8175b94c3c10fa6103162c6366b79d61c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 14:54:11 +0000 Subject: [PATCH 1/4] chore(deps): bump org.jetbrains.kotlinx:kotlinx-coroutines-test Bumps [org.jetbrains.kotlinx:kotlinx-coroutines-test](https://github.com/Kotlin/kotlinx.coroutines) from 1.6.4 to 1.7.3. - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.4...1.7.3) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test dependency-type: direct:production update-type: version-update:semver-minor ... 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 e6f08f1..3e18413 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -51,7 +51,7 @@ subprojects { dependencies { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") - testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4") + testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") testImplementation("io.mockk:mockk:1.13.4") testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1") From e72e13be35a0a13bb9e94a6883fdeb49f0ad475e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Pican=C3=A7o?= Date: Sun, 24 Dec 2023 01:36:45 +0000 Subject: [PATCH 2/4] ci: use fetch-depth 0 (#25) --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0292e16..24d2478 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,9 +12,10 @@ permissions: jobs: build: runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up JDK 17 uses: actions/setup-java@v3 with: From 68e62df19845603e3ded0e0aca7f22c3cc742c98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 10:05:57 +0000 Subject: [PATCH 3/4] chore(deps): bump org.testcontainers:testcontainers Bumps [org.testcontainers:testcontainers](https://github.com/testcontainers/testcontainers-java) from 1.17.6 to 1.19.3. - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.17.6...1.19.3) --- updated-dependencies: - dependency-name: org.testcontainers:testcontainers dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- krate-storage-redis/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/krate-storage-redis/build.gradle.kts b/krate-storage-redis/build.gradle.kts index b2b6c5f..4be42b9 100644 --- a/krate-storage-redis/build.gradle.kts +++ b/krate-storage-redis/build.gradle.kts @@ -1,6 +1,6 @@ dependencies { implementation(project(":krate-core")) implementation("redis.clients:jedis:4.3.2") - testImplementation("org.testcontainers:testcontainers:1.17.6") + testImplementation("org.testcontainers:testcontainers:1.19.3") testImplementation("org.testcontainers:junit-jupiter:1.19.3") } From c4367a2efbdc11e9c35911f05152e8240c9aea6b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 10:06:02 +0000 Subject: [PATCH 4/4] chore(deps): bump com.github.ben-manes.caffeine:caffeine Bumps [com.github.ben-manes.caffeine:caffeine](https://github.com/ben-manes/caffeine) from 3.1.6 to 3.1.8. - [Release notes](https://github.com/ben-manes/caffeine/releases) - [Commits](https://github.com/ben-manes/caffeine/compare/v3.1.6...v3.1.8) --- updated-dependencies: - dependency-name: com.github.ben-manes.caffeine:caffeine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- krate-storage-memory-caffeine/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/krate-storage-memory-caffeine/build.gradle.kts b/krate-storage-memory-caffeine/build.gradle.kts index 1e7d5ca..a79d40a 100644 --- a/krate-storage-memory-caffeine/build.gradle.kts +++ b/krate-storage-memory-caffeine/build.gradle.kts @@ -1,4 +1,4 @@ dependencies { implementation(project(":krate-core")) - implementation("com.github.ben-manes.caffeine:caffeine:3.1.6") + implementation("com.github.ben-manes.caffeine:caffeine:3.1.8") }