From 56583848c72497c1452ff774c61aa4ab79cf644a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 13:37:34 +0000 Subject: [PATCH] chore(main): release 0.1.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 26 +++++++++++++++++++ README.md | 2 +- .../ConfidenceFeatureProvider.swift | 4 +-- 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f148fd1d..8dc50697 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.4"} +{".":"0.1.5"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5566b1a9..028485ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [0.1.5](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.4...0.1.5) (2024-04-23) + + +### ✨ New Features + +* Add ConfidenceValue ([#84](https://github.com/spotify/confidence-openfeature-provider-swift/issues/84)) ([8de4b78](https://github.com/spotify/confidence-openfeature-provider-swift/commit/8de4b7805378866023e939aec39c71a78ba771fe)) +* add EventStorage ([#87](https://github.com/spotify/confidence-openfeature-provider-swift/issues/87)) ([fdc7543](https://github.com/spotify/confidence-openfeature-provider-swift/commit/fdc754301c8c4bd497a132fdee868213e73e56b7)) +* Append EvalContext to Events ([#85](https://github.com/spotify/confidence-openfeature-provider-swift/issues/85)) ([56f8130](https://github.com/spotify/confidence-openfeature-provider-swift/commit/56f81302aed36d4f0b6e7960f6c350b33708f632)) +* Confidence value is decodable and encodable with schema ([#92](https://github.com/spotify/confidence-openfeature-provider-swift/issues/92)) ([444a191](https://github.com/spotify/confidence-openfeature-provider-swift/commit/444a1914c13a974fb779cb047ad225e5d0ef4a2a)) +* Event sender engine ([#88](https://github.com/spotify/confidence-openfeature-provider-swift/issues/88)) ([b223804](https://github.com/spotify/confidence-openfeature-provider-swift/commit/b223804858d920c77e4a5cd77152d3b83b1c76e5)) +* Event Uploader ([#91](https://github.com/spotify/confidence-openfeature-provider-swift/issues/91)) ([b5ba3e0](https://github.com/spotify/confidence-openfeature-provider-swift/commit/b5ba3e05e0b727bda13dd4868e277bef8a5e3394)) +* handle status codes for retrying in uploader ([#95](https://github.com/spotify/confidence-openfeature-provider-swift/issues/95)) ([85b89ed](https://github.com/spotify/confidence-openfeature-provider-swift/commit/85b89ed592828b7e8d14ea60a914f8edca72416e)) +* Implement `withContext` ([#89](https://github.com/spotify/confidence-openfeature-provider-swift/issues/89)) ([d0dddee](https://github.com/spotify/confidence-openfeature-provider-swift/commit/d0dddee43da840bb4d31c645295a2cb002aefcfc)) +* Return previous value on Provider STALE ([#98](https://github.com/spotify/confidence-openfeature-provider-swift/issues/98)) ([896be5e](https://github.com/spotify/confidence-openfeature-provider-swift/commit/896be5eadef82caaa35a5452a4b8ea333449c9ff)) + + +### 📚 Documentation + +* Add apply documentation note ([#80](https://github.com/spotify/confidence-openfeature-provider-swift/issues/80)) ([1bd9525](https://github.com/spotify/confidence-openfeature-provider-swift/commit/1bd9525e5e0a7d40834aba7bc962225978a36f91)) + + +### 🔄 Refactoring + +* Add Confidence Library scaffolding ([#83](https://github.com/spotify/confidence-openfeature-provider-swift/issues/83)) ([2e49e23](https://github.com/spotify/confidence-openfeature-provider-swift/commit/2e49e2370d29d63450cc094894743fae92914df5)) +* Add message container to payload ([#99](https://github.com/spotify/confidence-openfeature-provider-swift/issues/99)) ([f0bf363](https://github.com/spotify/confidence-openfeature-provider-swift/commit/f0bf36358b1d691831845d576b9b942127180ef7)) + ## [0.1.4](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.3...0.1.4) (2024-02-08) diff --git a/README.md b/README.md index aaa25f5d..d617caa4 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ the relevant OpenFeature SDK dependency manually. In the dependencies section of Package.swift add: ```swift -.package(url: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.4") +.package(url: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.5") ``` diff --git a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift index 1a1c47d1..b7b13ca2 100644 --- a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift +++ b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift @@ -49,7 +49,7 @@ public class ConfidenceFeatureProvider: FeatureProvider { /// Initialize the Provider via a `Confidence` object. public init(confidence: Confidence) { - let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version + let metadata = ConfidenceMetadata(version: "0.1.5") // x-release-please-version let options = ConfidenceClientOptions( credentials: ConfidenceClientCredentials.clientSecret(secret: confidence.clientSecret), timeout: confidence.timeout, @@ -437,7 +437,7 @@ extension ConfidenceFeatureProvider { extension ConfidenceFeatureProvider { public struct Builder { var options: ConfidenceClientOptions - let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version + let metadata = ConfidenceMetadata(version: "0.1.5") // x-release-please-version var session: URLSession? var localOverrides: [String: LocalOverride] = [:] var storage: Storage = DefaultStorage.resolverFlagsCache()