Skip to content

Commit 85ea022

Browse files
chore(main): release go-feature-flag-provider 0.8.0
1 parent 91ba360 commit 85ea022

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"libs/hooks/open-telemetry": "0.4.0",
3-
"libs/providers/go-feature-flag": "0.7.8",
3+
"libs/providers/go-feature-flag": "0.8.0",
44
"libs/providers/flagd": "0.13.3",
55
"libs/providers/flagd-web": "0.7.3",
66
"libs/providers/env-var": "0.3.1",

libs/providers/go-feature-flag/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/compare/go-feature-flag-provider-v0.7.8...go-feature-flag-provider-v0.8.0) (2025-07-11)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* update OpenFeature SDK peer ([#798](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/798))
9+
10+
### 🐛 Bug Fixes
11+
12+
* **deps:** update dependency axios to v1.10.0 ([#1332](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1332)) ([e501475](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/e5014755369e690fa5fee32bc40978f813fa17d5))
13+
* **deps:** update dependency axios to v1.8.2 [security] ([#1222](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1222)) ([ed50496](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/ed504968d93c77d4e049ad11d0eb55fcdbc8ff83))
14+
* **deps:** update dependency axios to v1.8.4 ([#1273](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1273)) ([18a0cb9](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/18a0cb906a0c7e437b52f4645538a859d817ae18))
15+
* **deps:** update dependency axios to v1.9.0 ([#1314](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1314)) ([1ffe54a](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/1ffe54af81f2db5ec6918432b6e39968ff965127))
16+
* **gofeatureflag:** Error for configurationHasChanged when slash was missing in endpoint ([#1229](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1229)) ([ce6a8e1](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/ce6a8e1a800604b263ee76b305f5ca801aa2641d))
17+
* **gofeatureflag:** Error when receiving an empty string errorCode ([#973](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/973)) ([e17b99e](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/e17b99ec7328e35760175ed100a2e13be20079b7))
18+
* **gofeatureflag:** remove NodeJS.timeout because it fails eslint ([#961](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/961)) ([e448577](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/e448577b6bf2a625a2844ccc326c6c05e6041299))
19+
20+
21+
### ✨ New Features
22+
23+
* **go-feature-flag:** Support exporter metadata during evaluation ([#1186](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1186)) ([0dfffdc](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/0dfffdc3167312b036034dd450b8b23b92d8e132))
24+
* **go-feature-flag:** Support exporter metadata in web and server providers ([#1183](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1183)) ([0edf3f5](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/0edf3f55161878684ffe809fbde8ad6fa379c4b0))
25+
* **gofeatureflag:** added cache option ([#1284](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1284)) ([7083655](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/7083655c78eed957502f46dc202522a604024886))
26+
* **gofeatureflag:** Clear cache if configuration changes + provider refactoring ([#947](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/947)) ([338123f](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/338123fadb3e421d9fce3eaf9a7a7ecbbd5961ea))
27+
* update OpenFeature SDK peer ([#798](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/798)) ([ebd16b9](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/ebd16b9630bcc6b253a7061a144e8d476cd8b586))
28+
329
## [0.7.8](https://github.com/open-feature/js-sdk-contrib/compare/go-feature-flag-provider-v0.7.7...go-feature-flag-provider-v0.7.8) (2025-05-26)
430

531

libs/providers/go-feature-flag/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openfeature/go-feature-flag-provider",
3-
"version": "0.7.8",
3+
"version": "0.8.0",
44
"license": "Apache-2.0",
55
"scripts": {
66
"publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi",

0 commit comments

Comments
 (0)