From 4a4d81367b50ab957d99371ffe368c0977768329 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 19:15:57 +0000 Subject: [PATCH 1/3] chore(deps): update actions/setup-java digest to 5b86b67 (#562) 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 d82baeb36..153fd0a51 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@b943a4ed876ec91f6d0cde2181d88d24e8e348de + uses: actions/setup-java@5b86b67f5bb794ee4de9464f70b700b9445b03a8 with: java-version: '8' distribution: 'temurin' diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 56431667a..dd5d05b23 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 - name: Set up JDK 8 - uses: actions/setup-java@b943a4ed876ec91f6d0cde2181d88d24e8e348de + uses: actions/setup-java@5b86b67f5bb794ee4de9464f70b700b9445b03a8 with: java-version: '8' distribution: 'temurin' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8b9d79d9..6a77578c5 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@b943a4ed876ec91f6d0cde2181d88d24e8e348de + uses: actions/setup-java@5b86b67f5bb794ee4de9464f70b700b9445b03a8 with: java-version: '8' distribution: 'temurin' From 703551f54ce81ba43a4dad0fceb73be6ade52977 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 16:19:01 -0400 Subject: [PATCH 2/3] chore(main): release 1.5.0 (#558) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 8 ++++---- pom.xml | 2 +- version.txt | 2 +- 5 files changed, 29 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 548240658..287b4c717 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.4.3"} \ No newline at end of file +{".":"1.5.0"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ed96d88a..519171591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.5.0](https://github.com/open-feature/java-sdk/compare/v1.4.3...v1.5.0) (2023-08-16) + + +### โœจ New Features + +* In-memory provider for e2e testing and minimal usage ([#546](https://github.com/open-feature/java-sdk/issues/546)) ([a741568](https://github.com/open-feature/java-sdk/commit/a741568762b96091bb0e50a32a8e00e863268429)) + + +### ๐Ÿงน Chore + +* **deps:** update actions/setup-java digest to 5b86b67 ([#562](https://github.com/open-feature/java-sdk/issues/562)) ([4a4d813](https://github.com/open-feature/java-sdk/commit/4a4d81367b50ab957d99371ffe368c0977768329)) +* **deps:** update github/codeql-action digest to 3ecf990 ([#557](https://github.com/open-feature/java-sdk/issues/557)) ([350196c](https://github.com/open-feature/java-sdk/commit/350196c6882aadba1c037132ff61296c8212d871)) +* **deps:** update github/codeql-action digest to e683046 ([#559](https://github.com/open-feature/java-sdk/issues/559)) ([6c52ee4](https://github.com/open-feature/java-sdk/commit/6c52ee464fdb5d5733cb5a31e9cfea1644840177)) +* fix codecov, throw in memory provider ([1f28921](https://github.com/open-feature/java-sdk/commit/1f28921fec2cece6d492fb77160bb97dd05c3e08)) +* fix e2e profile ([94a5a86](https://github.com/open-feature/java-sdk/commit/94a5a869d8f2d41adf632f60db1eb0f7e9b530ec)) +* fix jacoco coverage minimum, throw in memory provider ([#561](https://github.com/open-feature/java-sdk/issues/561)) ([1f28921](https://github.com/open-feature/java-sdk/commit/1f28921fec2cece6d492fb77160bb97dd05c3e08)) + + +### ๐Ÿ“š Documentation + +* update README to be auto-included in openfeature.dev ([#560](https://github.com/open-feature/java-sdk/issues/560)) ([3496366](https://github.com/open-feature/java-sdk/commit/3496366ae880e85c08e0b5925e9220b55a67c8eb)) + ## [1.4.3](https://github.com/open-feature/java-sdk/compare/v1.4.2...v1.4.3) (2023-08-11) diff --git a/README.md b/README.md index 131d316bd..34f5ee448 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ - - Release + + Release @@ -59,7 +59,7 @@ Note that this library is intended to be used in server-side contexts and has no dev.openfeature sdk - 1.4.3 + 1.5.0 ``` @@ -84,7 +84,7 @@ If you would like snapshot builds, this is the relevant repository information: ```groovy dependencies { - implementation 'dev.openfeature:sdk:1.4.3' + implementation 'dev.openfeature:sdk:1.5.0' } ``` diff --git a/pom.xml b/pom.xml index 8444030b6..f01334678 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ dev.openfeature sdk - 1.4.3 + 1.5.0 UTF-8 diff --git a/version.txt b/version.txt index 428b770e3..bc80560fa 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.4.3 +1.5.0 From adfb58764a2073e6ac381d0c60199f27ba01d398 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 17 Aug 2023 00:09:41 +0000 Subject: [PATCH 3/3] chore(deps): update actions/checkout digest to 7739b9b (#564) 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 +- .github/workflows/static-code-scanning.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 153fd0a51..5eb5cf060 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 + - uses: actions/checkout@7739b9ba2efcda9dde65ad1e3c2dbe65b41dfba7 - name: Set up JDK 8 uses: actions/setup-java@5b86b67f5bb794ee4de9464f70b700b9445b03a8 with: diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index dd5d05b23..cf83636f3 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the code - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 + uses: actions/checkout@7739b9ba2efcda9dde65ad1e3c2dbe65b41dfba7 - name: Set up JDK 8 uses: actions/setup-java@5b86b67f5bb794ee4de9464f70b700b9445b03a8 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a77578c5..66c514ae0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: # These steps are only run if this was a merged release-please PR - name: checkout if: ${{ steps.release.outputs.releases_created }} - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 + uses: actions/checkout@7739b9ba2efcda9dde65ad1e3c2dbe65b41dfba7 - name: Set up JDK 8 if: ${{ steps.release.outputs.releases_created }} uses: actions/setup-java@5b86b67f5bb794ee4de9464f70b700b9445b03a8 diff --git a/.github/workflows/static-code-scanning.yaml b/.github/workflows/static-code-scanning.yaml index e4a66ac59..55f982f98 100644 --- a/.github/workflows/static-code-scanning.yaml +++ b/.github/workflows/static-code-scanning.yaml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 + uses: actions/checkout@7739b9ba2efcda9dde65ad1e3c2dbe65b41dfba7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL