File tree Expand file tree Collapse file tree 10 files changed +51
-10
lines changed
lib/confidence/openfeature Expand file tree Collapse file tree 10 files changed +51
-10
lines changed Original file line number Diff line number Diff line change 33 "confidence-cloudflare-resolver" : " 0.3.0" ,
44 "wasm-msg" : " 0.2.1" ,
55 "wasm/rust-guest" : " 0.1.9" ,
6- "openfeature-provider/java" : " 0.7.3 " ,
6+ "openfeature-provider/java" : " 0.7.4 " ,
77 "openfeature-provider/js" : " 0.1.1" ,
8- "openfeature-provider/go/confidence" : " 0.1 .0" ,
9- "openfeature-provider/ruby" : " 0.0.1 "
8+ "openfeature-provider/go/confidence" : " 0.2 .0" ,
9+ "openfeature-provider/ruby" : " 0.1.0 "
1010}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.2.0] ( https://github.com/spotify/confidence-resolver/compare/openfeature-provider/go/confidence/v0.1.0...openfeature-provider/go/confidence/v0.2.0 ) (2025-11-11)
4+
5+
6+ ### ⚠ BREAKING CHANGES
7+
8+ * ** go:** connection factory replaces server addr options ([ #128 ] ( https://github.com/spotify/confidence-resolver/issues/128 ) )
9+ * ** go:** correct module structure to match declared module path ([ #106 ] ( https://github.com/spotify/confidence-resolver/issues/106 ) )
10+
11+ ### Features
12+
13+ * add go provider ([ #100 ] ( https://github.com/spotify/confidence-resolver/issues/100 ) ) ([ 5c0895b] ( https://github.com/spotify/confidence-resolver/commit/5c0895bd35edd7daf436be5a64b5a40ba3eb7dab ) )
14+ * ** go:** connection factory replaces server addr options ([ #128 ] ( https://github.com/spotify/confidence-resolver/issues/128 ) ) ([ cd955a2] ( https://github.com/spotify/confidence-resolver/commit/cd955a22917c3572446cdc55491b1cd8b304763a ) )
15+
16+
17+ ### Bug Fixes
18+
19+ * ** go:** Better error messaging for sticky rules ([ #110 ] ( https://github.com/spotify/confidence-resolver/issues/110 ) ) ([ 31a6893] ( https://github.com/spotify/confidence-resolver/commit/31a6893bb83c36abc2f8386912dcf316ee454e5a ) )
20+ * ** go:** correct module structure to match declared module path ([ #106 ] ( https://github.com/spotify/confidence-resolver/issues/106 ) ) ([ c2eb597] ( https://github.com/spotify/confidence-resolver/commit/c2eb597d1c696bd1fac4459866b258ce852dbf9a ) )
21+ * ** go:** implement StateHandler for proper shutdown ([ #109 ] ( https://github.com/spotify/confidence-resolver/issues/109 ) ) ([ 6041e45] ( https://github.com/spotify/confidence-resolver/commit/6041e455c80ef24e9ac50c4881ce17ff40bee871 ) )
22+ * ** openfeature/go:** fix openfeature reason mapping ([ #121 ] ( https://github.com/spotify/confidence-resolver/issues/121 ) ) ([ c0334c5] ( https://github.com/spotify/confidence-resolver/commit/c0334c518af5eb294e8583b46e333864a1796507 ) )
23+
324## 0.1.0 (2025-11-07)
425
526
Original file line number Diff line number Diff line change 11[package ]
22name = " openfeature-provider-go"
3- version = " 0.1 .0"
3+ version = " 0.2 .0"
44edition = " 2021"
55publish = false
66
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.7.4] ( https://github.com/spotify/confidence-resolver/compare/openfeature-provider-java-v0.7.3...openfeature-provider-java-v0.7.4 ) (2025-11-11)
4+
5+
6+ ### Bug Fixes
7+
8+ * ** openfeature/java:** update readme and fix release please update ([ #120 ] ( https://github.com/spotify/confidence-resolver/issues/120 ) ) ([ 7e78391] ( https://github.com/spotify/confidence-resolver/commit/7e7839143ba7f77007bac554006bc36dade172a3 ) )
9+
310## [ 0.7.3] ( https://github.com/spotify/confidence-resolver/compare/openfeature-provider-java-v0.7.2...openfeature-provider-java-v0.7.3 ) (2025-11-07)
411
512
Original file line number Diff line number Diff line change 11[package ]
22name = " openfeature-provider-java"
3- version = " 0.7.3 "
3+ version = " 0.7.4 "
44edition = " 2021"
55publish = false
66
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Add this dependency to your `pom.xml`:
2020<dependency >
2121 <groupId >com.spotify.confidence</groupId >
2222 <artifactId >openfeature-provider-local</artifactId >
23- <version >0.7.3 </version >
23+ <version >0.7.4 </version >
2424</dependency >
2525```
2626<!-- x-release-please-end -->
Original file line number Diff line number Diff line change 44
55 <groupId >com.spotify.confidence</groupId >
66 <artifactId >openfeature-provider-local</artifactId >
7- <version >0.7.3 </version >
7+ <version >0.7.4 </version >
88 <name >Confidence local resolve provider</name >
99 <description >Confidence OpenFeature provider for local flag resolution using WebAssembly</description >
1010 <url >https://github.com/spotify/confidence-resolver</url >
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ 0.1.0] ( https://github.com/spotify/confidence-resolver/compare/openfeature-provider/ruby-v0.0.1...openfeature-provider/ruby/v0.1.0 ) (2025-11-11)
4+
5+
6+ ### Features
7+
8+ * add Ruby openfeature provider remote resolver ([ #123 ] ( https://github.com/spotify/confidence-resolver/issues/123 ) ) ([ 574a1e9] ( https://github.com/spotify/confidence-resolver/commit/574a1e91aafd079d9d3a119514416db953a63e3f ) )
9+
10+
11+ ### Bug Fixes
12+
13+ * fix release please versioning for ruby ([ #126 ] ( https://github.com/spotify/confidence-resolver/issues/126 ) ) ([ e146c5f] ( https://github.com/spotify/confidence-resolver/commit/e146c5fd85b9ebacb20cffdf1883936081e1a7fb ) )
Original file line number Diff line number Diff line change 22
33module Confidence
44 module OpenFeature
5- VERSION = "0.0.1 " # x-release-please-version
5+ VERSION = "0.1.0 " # x-release-please-version
66 end
77end
You can’t perform that action at this time.
0 commit comments