From 2c4e73027251b5af65689826784b944a96f5ca3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= Date: Thu, 16 Apr 2026 10:57:09 +0200 Subject: [PATCH 1/4] build: bump java build version to 25 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 90035435..2f25b119 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java-version: ['11', '17'] + java-version: ['11', '25'] steps: - name: Checkout repository From 90724a8175f38b87046d4089a4ef99f042f64ba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= <73272730+Andris28@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:28:26 +0200 Subject: [PATCH 2/4] build: update jacoco verison MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg <73272730+Andris28@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e2b8e44..007656b4 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ 3.1.2 3.3.0 10.23.0 - 0.8.10 + 0.8.12 3.11.0 5.3.2 2.13.1 From 108f289aa28ebbc5a45a94be66607812cb3ec11e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= <73272730+Andris28@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:34:54 +0200 Subject: [PATCH 3/4] build: update jacoco verison MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg <73272730+Andris28@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 007656b4..4e364f20 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ 3.1.2 3.3.0 10.23.0 - 0.8.12 + 0.8.14 3.11.0 5.3.2 2.13.1 From edc08a70814440d2c008cd9237eb7d93e425e231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Felleg?= <73272730+Andris28@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:36:03 +0200 Subject: [PATCH 4/4] fix: update deprecated date time formats MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: András Felleg <73272730+Andris28@users.noreply.github.com> --- .../java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java b/src/test/java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java index 3b741aa8..7e4eefde 100644 --- a/src/test/java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java +++ b/src/test/java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java @@ -116,13 +116,13 @@ public void testDateTime() { // RFC 2616 HTTP Date. _testDateTime("Fri, 27 Aug 2021 13:15:55 GMT", "2021-08-27T13:15:55.000Z"); - _testDateTime("Fri, 27 Aug 2021 13:15:55 CXT", "2021-08-27T06:15:55.000Z"); - _testDateTime("Fri, 27 Aug 2021 13:15:55 VLAT", "2021-08-27T03:15:55.000Z"); + _testDateTime("Fri, 27 Aug 2021 13:15:55 PDT", "2021-08-27T20:15:55.000Z"); + _testDateTime("Fri, 27 Aug 2021 13:15:55 EDT", "2021-08-27T17:15:55.000Z"); // RFC 850 HTTP Date. _testDateTime("Friday, 27-Aug-2021 13:15:55 GMT", "2021-08-27T13:15:55.000Z"); - _testDateTime("Friday, 27-Aug-2021 13:15:55 CXT", "2021-08-27T06:15:55.000Z"); - _testDateTime("Friday, 27-Aug-2021 13:15:55 VLAT", "2021-08-27T03:15:55.000Z"); + _testDateTime("Friday, 27-Aug-2021 13:15:55 PDT", "2021-08-27T20:15:55.000Z"); + _testDateTime("Friday, 27-Aug-2021 13:15:55 EDT", "2021-08-27T17:15:55.000Z"); // ANSIC HTTP Date. _testDateTime("Fri Aug 27 13:15:55 2021", "2021-08-27T13:15:55.000Z");