From 4e1675d9c321c8a980b9a2021b52419683c3730f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Jul 2023 00:42:04 +0000 Subject: [PATCH 01/15] chore(deps): update github/codeql-action digest to a148c58 (#508) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index f3db5d6a..883adf33 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@c5526174a564f5a5444d71884af87163f19cf394 + uses: github/codeql-action/init@a148c5807597c04d85de6c6284841298d2196b26 with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@c5526174a564f5a5444d71884af87163f19cf394 + uses: github/codeql-action/analyze@a148c5807597c04d85de6c6284841298d2196b26 diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index ffcf6db1..a63d5bc5 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@c5526174a564f5a5444d71884af87163f19cf394 + uses: github/codeql-action/init@a148c5807597c04d85de6c6284841298d2196b26 with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@c5526174a564f5a5444d71884af87163f19cf394 + uses: github/codeql-action/autobuild@a148c5807597c04d85de6c6284841298d2196b26 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@c5526174a564f5a5444d71884af87163f19cf394 + uses: github/codeql-action/analyze@a148c5807597c04d85de6c6284841298d2196b26 From bbb4008b381cd01719c880aa358eb055e0ac0cd4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Jul 2023 19:56:15 +0000 Subject: [PATCH 02/15] chore(deps): update github/codeql-action digest to 013a1d0 (#510) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 883adf33..584e2067 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@a148c5807597c04d85de6c6284841298d2196b26 + uses: github/codeql-action/init@013a1d0cb21639a20c083142edd7dae0964b16cc with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@a148c5807597c04d85de6c6284841298d2196b26 + uses: github/codeql-action/analyze@013a1d0cb21639a20c083142edd7dae0964b16cc diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index a63d5bc5..231e74c7 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@a148c5807597c04d85de6c6284841298d2196b26 + uses: github/codeql-action/init@013a1d0cb21639a20c083142edd7dae0964b16cc with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@a148c5807597c04d85de6c6284841298d2196b26 + uses: github/codeql-action/autobuild@013a1d0cb21639a20c083142edd7dae0964b16cc - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@a148c5807597c04d85de6c6284841298d2196b26 + uses: github/codeql-action/analyze@013a1d0cb21639a20c083142edd7dae0964b16cc From 6253aee3b3ae58309e328dcc1816dbbdba86f35f Mon Sep 17 00:00:00 2001 From: Thomas Poignant Date: Mon, 17 Jul 2023 16:52:00 +0200 Subject: [PATCH 03/15] fix: Implement equals for the ImmutableMetadata object (#512) --- .../openfeature/sdk/ImmutableMetadata.java | 2 ++ .../sdk/FlagEvaluationDetailsTest.java | 22 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/src/main/java/dev/openfeature/sdk/ImmutableMetadata.java b/src/main/java/dev/openfeature/sdk/ImmutableMetadata.java index 1bc130b4..75f89847 100644 --- a/src/main/java/dev/openfeature/sdk/ImmutableMetadata.java +++ b/src/main/java/dev/openfeature/sdk/ImmutableMetadata.java @@ -1,5 +1,6 @@ package dev.openfeature.sdk; +import lombok.EqualsAndHashCode; import lombok.extern.slf4j.Slf4j; import java.util.HashMap; @@ -10,6 +11,7 @@ * through builder and accessors. */ @Slf4j +@EqualsAndHashCode public class ImmutableMetadata { private final Map metadata; diff --git a/src/test/java/dev/openfeature/sdk/FlagEvaluationDetailsTest.java b/src/test/java/dev/openfeature/sdk/FlagEvaluationDetailsTest.java index 9a6df1a6..dfa77274 100644 --- a/src/test/java/dev/openfeature/sdk/FlagEvaluationDetailsTest.java +++ b/src/test/java/dev/openfeature/sdk/FlagEvaluationDetailsTest.java @@ -45,4 +45,26 @@ public void sevenArgConstructor() { assertEquals(errorMessage, details.getErrorMessage()); assertEquals(metadata, details.getFlagMetadata()); } + + @Test + @DisplayName("should be able to compare 2 FlagEvaluationDetails") + public void compareFlagEvaluationDetails(){ + FlagEvaluationDetails fed1 = FlagEvaluationDetails.builder() + .reason(Reason.ERROR.toString()) + .value(false) + .errorCode(ErrorCode.GENERAL) + .errorMessage("error XXX") + .flagMetadata(ImmutableMetadata.builder().addString("metadata","1").build()) + .build(); + + FlagEvaluationDetails fed2 = FlagEvaluationDetails.builder() + .reason(Reason.ERROR.toString()) + .value(false) + .errorCode(ErrorCode.GENERAL) + .errorMessage("error XXX") + .flagMetadata(ImmutableMetadata.builder().addString("metadata","1").build()) + .build(); + + assertEquals(fed1,fed2); + } } From e9044af48e520c1165cb6cdec6f683aac4b8d37e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 17 Jul 2023 15:53:07 +0000 Subject: [PATCH 04/15] chore(deps): update github/codeql-action digest to 262017a (#514) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 584e2067..17efe6cf 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@013a1d0cb21639a20c083142edd7dae0964b16cc + uses: github/codeql-action/init@262017ad696fbbc590dc7a761f83b9f149d2773f with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@013a1d0cb21639a20c083142edd7dae0964b16cc + uses: github/codeql-action/analyze@262017ad696fbbc590dc7a761f83b9f149d2773f diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index 231e74c7..a9586df6 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@013a1d0cb21639a20c083142edd7dae0964b16cc + uses: github/codeql-action/init@262017ad696fbbc590dc7a761f83b9f149d2773f with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@013a1d0cb21639a20c083142edd7dae0964b16cc + uses: github/codeql-action/autobuild@262017ad696fbbc590dc7a761f83b9f149d2773f - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@013a1d0cb21639a20c083142edd7dae0964b16cc + uses: github/codeql-action/analyze@262017ad696fbbc590dc7a761f83b9f149d2773f From ef199b94fd8ecd866893168f06717c1de2ee2fda Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 00:55:50 +0000 Subject: [PATCH 05/15] chore(deps): update github/codeql-action digest to 942acab (#515) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 17efe6cf..94aacbcc 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@262017ad696fbbc590dc7a761f83b9f149d2773f + uses: github/codeql-action/init@942acabcd0789844bc9e657cd21b52070cc00afe with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@262017ad696fbbc590dc7a761f83b9f149d2773f + uses: github/codeql-action/analyze@942acabcd0789844bc9e657cd21b52070cc00afe diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index a9586df6..8185c927 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@262017ad696fbbc590dc7a761f83b9f149d2773f + uses: github/codeql-action/init@942acabcd0789844bc9e657cd21b52070cc00afe with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@262017ad696fbbc590dc7a761f83b9f149d2773f + uses: github/codeql-action/autobuild@942acabcd0789844bc9e657cd21b52070cc00afe - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@262017ad696fbbc590dc7a761f83b9f149d2773f + uses: github/codeql-action/analyze@942acabcd0789844bc9e657cd21b52070cc00afe From fd2262f0584fed4d3130427a8b271b88d241ff71 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 14:39:44 +0000 Subject: [PATCH 06/15] chore(deps): update actions/setup-java digest to 4fb3975 (#516) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/merge.yml | 2 +- .github/workflows/pullrequest.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 6a8a4be7..f05d4d84 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 - uses: actions/setup-java@75c6561172d237e514a15dfd831cb331e5506d5e + uses: actions/setup-java@4fb397523b853fa75ed64fd1d10a967e1eb3148a with: java-version: '8' distribution: 'temurin' diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 94aacbcc..c7897a12 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 - uses: actions/setup-java@75c6561172d237e514a15dfd831cb331e5506d5e + uses: actions/setup-java@4fb397523b853fa75ed64fd1d10a967e1eb3148a with: java-version: '8' distribution: 'temurin' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 611e7952..a2747afd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 if: ${{ steps.release.outputs.releases_created }} - uses: actions/setup-java@75c6561172d237e514a15dfd831cb331e5506d5e + uses: actions/setup-java@4fb397523b853fa75ed64fd1d10a967e1eb3148a with: java-version: '8' distribution: 'temurin' From 7993c360d679a2a8715f1c43fd7b344ff357b2ef Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 17:09:51 +0000 Subject: [PATCH 07/15] chore(deps): update github/codeql-action digest to d2ed0a0 (#517) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index c7897a12..20849255 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@942acabcd0789844bc9e657cd21b52070cc00afe + uses: github/codeql-action/init@d2ed0a05b63da98c856e847eb1a2c07256508499 with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@942acabcd0789844bc9e657cd21b52070cc00afe + uses: github/codeql-action/analyze@d2ed0a05b63da98c856e847eb1a2c07256508499 diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index 8185c927..335d231d 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@942acabcd0789844bc9e657cd21b52070cc00afe + uses: github/codeql-action/init@d2ed0a05b63da98c856e847eb1a2c07256508499 with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@942acabcd0789844bc9e657cd21b52070cc00afe + uses: github/codeql-action/autobuild@d2ed0a05b63da98c856e847eb1a2c07256508499 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@942acabcd0789844bc9e657cd21b52070cc00afe + uses: github/codeql-action/analyze@d2ed0a05b63da98c856e847eb1a2c07256508499 From fe3be7df73217bc9dcc29427f7676f05ac41a200 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 18:25:41 +0000 Subject: [PATCH 08/15] chore(deps): update github/codeql-action digest to 6ae46f7 (#518) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 20849255..408e59ca 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@d2ed0a05b63da98c856e847eb1a2c07256508499 + uses: github/codeql-action/init@6ae46f7a92375136e54d98f1562e956ac595c7fc with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@d2ed0a05b63da98c856e847eb1a2c07256508499 + uses: github/codeql-action/analyze@6ae46f7a92375136e54d98f1562e956ac595c7fc diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index 335d231d..45b6acd6 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@d2ed0a05b63da98c856e847eb1a2c07256508499 + uses: github/codeql-action/init@6ae46f7a92375136e54d98f1562e956ac595c7fc with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@d2ed0a05b63da98c856e847eb1a2c07256508499 + uses: github/codeql-action/autobuild@6ae46f7a92375136e54d98f1562e956ac595c7fc - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@d2ed0a05b63da98c856e847eb1a2c07256508499 + uses: github/codeql-action/analyze@6ae46f7a92375136e54d98f1562e956ac595c7fc From b4bae84bc1202f7e15c399a5cf7128a4b067bf0b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 23:10:19 +0000 Subject: [PATCH 09/15] chore(deps): update github/codeql-action digest to d0dd7d7 (#519) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 408e59ca..e2d6a546 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@6ae46f7a92375136e54d98f1562e956ac595c7fc + uses: github/codeql-action/init@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@6ae46f7a92375136e54d98f1562e956ac595c7fc + uses: github/codeql-action/analyze@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index 45b6acd6..c450e3e3 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@6ae46f7a92375136e54d98f1562e956ac595c7fc + uses: github/codeql-action/init@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@6ae46f7a92375136e54d98f1562e956ac595c7fc + uses: github/codeql-action/autobuild@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@6ae46f7a92375136e54d98f1562e956ac595c7fc + uses: github/codeql-action/analyze@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a From d1596924f0992c5fbdc270f567f19973d3fc1276 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Jul 2023 13:41:28 +0000 Subject: [PATCH 10/15] chore(deps): update github/codeql-action digest to ce84bed (#520) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index e2d6a546..00f92da1 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a + uses: github/codeql-action/init@ce84bed59466c6755ffcf84a426881bafbb162e1 with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a + uses: github/codeql-action/analyze@ce84bed59466c6755ffcf84a426881bafbb162e1 diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index c450e3e3..80723973 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a + uses: github/codeql-action/init@ce84bed59466c6755ffcf84a426881bafbb162e1 with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a + uses: github/codeql-action/autobuild@ce84bed59466c6755ffcf84a426881bafbb162e1 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@d0dd7d77b4e5a2ac9284ddbc45e6eeb88fbd961a + uses: github/codeql-action/analyze@ce84bed59466c6755ffcf84a426881bafbb162e1 From dd7d02466cdf96ed5595b63d34f1749629dfd01b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Jul 2023 18:07:35 +0000 Subject: [PATCH 11/15] chore(deps): update google-github-actions/release-please-action digest to ca6063f (#521) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2747afd..066e8a71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: # Release-please creates a PR that tracks all changes steps: - - uses: google-github-actions/release-please-action@01f98cb9de537919302b1694069728b853c652ea + - uses: google-github-actions/release-please-action@ca6063f4ed81b55db15b8c42d1b6f7925866342d id: release with: command: manifest From 965bb1941047e71c49cfafa625d6db9fecc08d92 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Jul 2023 16:39:54 +0000 Subject: [PATCH 12/15] chore(deps): update actions/setup-java digest to cd89f46 (#522) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/merge.yml | 2 +- .github/workflows/pullrequest.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index f05d4d84..04b20128 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 - uses: actions/setup-java@4fb397523b853fa75ed64fd1d10a967e1eb3148a + uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 with: java-version: '8' distribution: 'temurin' diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 00f92da1..60e7f26b 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 - uses: actions/setup-java@4fb397523b853fa75ed64fd1d10a967e1eb3148a + uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 with: java-version: '8' distribution: 'temurin' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 066e8a71..3c9bef90 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 if: ${{ steps.release.outputs.releases_created }} - uses: actions/setup-java@4fb397523b853fa75ed64fd1d10a967e1eb3148a + uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 with: java-version: '8' distribution: 'temurin' From a2ee70e8d66d8af0a7de8d7c6a477257de566df8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 23 Jul 2023 19:16:11 +0000 Subject: [PATCH 13/15] fix(deps): update junit5 monorepo (#524) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 3ec58097..7281ed68 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ UTF-8 1.8 ${maven.compiler.source} - 5.9.3 + 5.10.0 **/e2e/*.java ${groupId}.${artifactId} @@ -109,7 +109,7 @@ org.junit.platform junit-platform-suite - 1.9.3 + 1.10.0 test @@ -168,7 +168,7 @@ org.junit junit-bom - 5.9.3 + 5.10.0 pom import From b208c233621c03f3330ffd1ec60f1ee87826a6dc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 24 Jul 2023 15:11:48 +0000 Subject: [PATCH 14/15] chore(deps): update github/codeql-action digest to 7b6664f (#525) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/pullrequest.yml | 4 ++-- .github/workflows/static-code-scanning.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 60e7f26b..3c3ae95f 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -26,7 +26,7 @@ jobs: cache: maven - name: Initialize CodeQL - uses: github/codeql-action/init@ce84bed59466c6755ffcf84a426881bafbb162e1 + uses: github/codeql-action/init@7b6664fa89524ee6e3c3e9749402d5afd69b3cd8 with: languages: java @@ -51,4 +51,4 @@ jobs: verbose: true # optional (default = false) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@ce84bed59466c6755ffcf84a426881bafbb162e1 + uses: github/codeql-action/analyze@7b6664fa89524ee6e3c3e9749402d5afd69b3cd8 diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index 80723973..114343a6 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -33,12 +33,12 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@ce84bed59466c6755ffcf84a426881bafbb162e1 + uses: github/codeql-action/init@7b6664fa89524ee6e3c3e9749402d5afd69b3cd8 with: languages: java - name: Autobuild - uses: github/codeql-action/autobuild@ce84bed59466c6755ffcf84a426881bafbb162e1 + uses: github/codeql-action/autobuild@7b6664fa89524ee6e3c3e9749402d5afd69b3cd8 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@ce84bed59466c6755ffcf84a426881bafbb162e1 + uses: github/codeql-action/analyze@7b6664fa89524ee6e3c3e9749402d5afd69b3cd8 From 496c4d03323b85b93134289e2f2d01527f784253 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Jul 2023 22:30:14 +0200 Subject: [PATCH 15/15] chore(main): release 1.4.1 (#509) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 24 ++++++++++++++++++++++++ README.md | 4 ++-- pom.xml | 2 +- version.txt | 2 +- 5 files changed, 29 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 802de1e8..c9735194 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.4.0"} \ No newline at end of file +{".":"1.4.1"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b72181f..64cba4e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [1.4.1](https://github.com/open-feature/java-sdk/compare/v1.4.0...v1.4.1) (2023-07-24) + + +### ๐Ÿ› Bug Fixes + +* **deps:** update junit5 monorepo ([#524](https://github.com/open-feature/java-sdk/issues/524)) ([a2ee70e](https://github.com/open-feature/java-sdk/commit/a2ee70e8d66d8af0a7de8d7c6a477257de566df8)) +* Implement equals for the ImmutableMetadata object ([#512](https://github.com/open-feature/java-sdk/issues/512)) ([6253aee](https://github.com/open-feature/java-sdk/commit/6253aee3b3ae58309e328dcc1816dbbdba86f35f)) + + +### ๐Ÿงน Chore + +* **deps:** update actions/setup-java digest to 4fb3975 ([#516](https://github.com/open-feature/java-sdk/issues/516)) ([fd2262f](https://github.com/open-feature/java-sdk/commit/fd2262f0584fed4d3130427a8b271b88d241ff71)) +* **deps:** update actions/setup-java digest to cd89f46 ([#522](https://github.com/open-feature/java-sdk/issues/522)) ([965bb19](https://github.com/open-feature/java-sdk/commit/965bb1941047e71c49cfafa625d6db9fecc08d92)) +* **deps:** update github/codeql-action digest to 013a1d0 ([#510](https://github.com/open-feature/java-sdk/issues/510)) ([bbb4008](https://github.com/open-feature/java-sdk/commit/bbb4008b381cd01719c880aa358eb055e0ac0cd4)) +* **deps:** update github/codeql-action digest to 262017a ([#514](https://github.com/open-feature/java-sdk/issues/514)) ([e9044af](https://github.com/open-feature/java-sdk/commit/e9044af48e520c1165cb6cdec6f683aac4b8d37e)) +* **deps:** update github/codeql-action digest to 6ae46f7 ([#518](https://github.com/open-feature/java-sdk/issues/518)) ([fe3be7d](https://github.com/open-feature/java-sdk/commit/fe3be7df73217bc9dcc29427f7676f05ac41a200)) +* **deps:** update github/codeql-action digest to 7b6664f ([#525](https://github.com/open-feature/java-sdk/issues/525)) ([b208c23](https://github.com/open-feature/java-sdk/commit/b208c233621c03f3330ffd1ec60f1ee87826a6dc)) +* **deps:** update github/codeql-action digest to 942acab ([#515](https://github.com/open-feature/java-sdk/issues/515)) ([ef199b9](https://github.com/open-feature/java-sdk/commit/ef199b94fd8ecd866893168f06717c1de2ee2fda)) +* **deps:** update github/codeql-action digest to a148c58 ([#508](https://github.com/open-feature/java-sdk/issues/508)) ([4e1675d](https://github.com/open-feature/java-sdk/commit/4e1675d9c321c8a980b9a2021b52419683c3730f)) +* **deps:** update github/codeql-action digest to ce84bed ([#520](https://github.com/open-feature/java-sdk/issues/520)) ([d159692](https://github.com/open-feature/java-sdk/commit/d1596924f0992c5fbdc270f567f19973d3fc1276)) +* **deps:** update github/codeql-action digest to d0dd7d7 ([#519](https://github.com/open-feature/java-sdk/issues/519)) ([b4bae84](https://github.com/open-feature/java-sdk/commit/b4bae84bc1202f7e15c399a5cf7128a4b067bf0b)) +* **deps:** update github/codeql-action digest to d2ed0a0 ([#517](https://github.com/open-feature/java-sdk/issues/517)) ([7993c36](https://github.com/open-feature/java-sdk/commit/7993c360d679a2a8715f1c43fd7b344ff357b2ef)) +* **deps:** update google-github-actions/release-please-action digest to ca6063f ([#521](https://github.com/open-feature/java-sdk/issues/521)) ([dd7d024](https://github.com/open-feature/java-sdk/commit/dd7d02466cdf96ed5595b63d34f1749629dfd01b)) + ## [1.4.0](https://github.com/open-feature/java-sdk/compare/v1.3.1...v1.4.0) (2023-07-13) diff --git a/README.md b/README.md index 8ef4a053..bc6dcd8c 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Note that this library is intended to be used in server-side contexts and has no dev.openfeature sdk - 1.4.0 + 1.4.1 ``` @@ -67,7 +67,7 @@ If you would like snapshot builds, this is the relevant repository information: ```groovy dependencies { - implementation 'dev.openfeature:sdk:1.4.0' + implementation 'dev.openfeature:sdk:1.4.1' } ``` diff --git a/pom.xml b/pom.xml index 7281ed68..e8761b9d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ dev.openfeature sdk - 1.4.0 + 1.4.1 UTF-8 diff --git a/version.txt b/version.txt index 88c5fb89..347f5833 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.4.0 +1.4.1