From e89e777a80e518f9c4a34724ca3f74b67b153783 Mon Sep 17 00:00:00 2001 From: M Sazzadul Hoque <7600764+sazzad16@users.noreply.github.com> Date: Mon, 18 Dec 2023 17:05:58 +0600 Subject: [PATCH 1/5] Bump jackson databind and jsr310 to 2.16.0 (#3655) --- pom.xml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 9807923e1f..aa53cb4e8e 100644 --- a/pom.xml +++ b/pom.xml @@ -46,9 +46,10 @@ github - 1.7.36 redis.clients.jedis + 1.7.36 1.7.1 + 2.16.0 @@ -88,6 +89,7 @@ 1.19.0 test + junit junit @@ -115,15 +117,17 @@ com.fasterxml.jackson.core jackson-databind - 2.14.2 + ${jackson.version} test com.fasterxml.jackson.datatype jackson-datatype-jsr310 - 2.14.2 + ${jackson.version} test + + io.github.resilience4j resilience4j-all From f70e1fc6e1d1f39ccf44fbe4e4fe723a428744fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 18:48:48 +0600 Subject: [PATCH 2/5] Bump org.jacoco:jacoco-maven-plugin from 0.8.5 to 0.8.11 (#3653) Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.5 to 0.8.11. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.5...v0.8.11) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aa53cb4e8e..26046e6824 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,7 @@ org.jacoco jacoco-maven-plugin - 0.8.5 + 0.8.11 From 77d52ab04fa333a3c2c50d0150c09300b1c92161 Mon Sep 17 00:00:00 2001 From: M Sazzadul Hoque <7600764+sazzad16@users.noreply.github.com> Date: Mon, 18 Dec 2023 18:49:23 +0600 Subject: [PATCH 3/5] Bump maven-surefire-plugin to 3.2.3 (#3656) --- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 26046e6824..e2d0183a05 100644 --- a/pom.xml +++ b/pom.xml @@ -50,6 +50,7 @@ 1.7.36 1.7.1 2.16.0 + 3.2.3 @@ -196,7 +197,7 @@ maven-surefire-plugin - 3.2.2 + ${maven.surefire.version} ${redis-hosts} @@ -325,7 +326,7 @@ maven-surefire-plugin - 3.2.2 + ${maven.surefire.version} **/examples/*Example.java From 535fa17f650d6af0ec606251d6a0d5909e740cb0 Mon Sep 17 00:00:00 2001 From: Chayim Date: Thu, 28 Dec 2023 15:36:04 +0200 Subject: [PATCH 4/5] Fixing GPG key usage (#3670) --- .github/workflows/version-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-and-release.yml b/.github/workflows/version-and-release.yml index 007d8875e8..d16175d12b 100644 --- a/.github/workflows/version-and-release.yml +++ b/.github/workflows/version-and-release.yml @@ -32,7 +32,7 @@ jobs: - name: Install gpg key run: | - cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import + cat <(echo -e "${{ secrets.OSSH_GPG_SECRET_KEY }}") | gpg --batch --import gpg --list-secret-keys --keyid-format LONG - name: Publish From fc68b11a58f6dbb0e6414e957d4ca1d51509fa5a Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Sun, 31 Dec 2023 18:34:42 +0900 Subject: [PATCH 5/5] Replace deprecated set-output command with environment file (#3622) Signed-off-by: Jongwoo Han --- .github/workflows/version-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-and-release.yml b/.github/workflows/version-and-release.yml index d16175d12b..77977afde6 100644 --- a/.github/workflows/version-and-release.yml +++ b/.github/workflows/version-and-release.yml @@ -16,7 +16,7 @@ jobs: run: | realversion="${GITHUB_REF/refs\/tags\//}" realversion="${realversion//v/}" - echo "::set-output name=VERSION::$realversion" + echo "VERSION=$realversion" >> $GITHUB_OUTPUT - name: Set up publishing to maven central uses: actions/setup-java@v2