diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2b6655d9d..f15cd820b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -6,7 +6,7 @@ "libs/providers/env-var": "0.3.1", "libs/providers/config-cat": "0.7.6", "libs/providers/launchdarkly-client": "0.3.2", - "libs/providers/go-feature-flag-web": "0.2.6", + "libs/providers/go-feature-flag-web": "0.3.0", "libs/shared/flagd-core": "1.1.0", "libs/shared/ofrep-core": "1.0.1", "libs/providers/ofrep": "0.2.1", diff --git a/libs/providers/go-feature-flag-web/CHANGELOG.md b/libs/providers/go-feature-flag-web/CHANGELOG.md index 14d2231fa..892f78ccb 100644 --- a/libs/providers/go-feature-flag-web/CHANGELOG.md +++ b/libs/providers/go-feature-flag-web/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.3.0](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/compare/go-feature-flag-web-provider-v0.2.6...go-feature-flag-web-provider-v0.3.0) (2025-07-11) + + +### ⚠ BREAKING CHANGES + +* update OpenFeature SDK peer ([#798](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/798)) + +### 🐛 Bug Fixes + +* **go-feature-flag-web:** avoid infinite loop in waitWebsocketFinalSt… ([#1104](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1104)) ([2cc7483](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/2cc7483ea0f8d178d5abfacfdce804db83704ba7)) +* **go-feature-flag-web:** Set API Key in headers ([#1030](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1030)) ([31a8adb](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/31a8adbedbdf655a87593f7dd87e611f64f4a8b1)) +* **go-feature-flag:** Support endpoint paths in data collector goff-api.ts ([#1184](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1184)) ([928e437](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/928e43764a9d8a4891c07aba7deb1990d52fc29c)) + + +### ✨ New Features + +* **go-feature-flag-web:** Add support for data collection ([#1101](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1101)) ([34fcecd](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/34fcecd78b9cb11b9dbc51d44a345fc24e94f91d)) +* **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)) +* **goff web:** Support tracking events ([#1268](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/issues/1268)) ([d9ffcec](https://github.com/DevCycleHQ-Sandbox/js-sdk-contrib/commit/d9ffcec1652aa96eefccc45dfe079ca126d55142)) +* 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)) + ## [0.2.6](https://github.com/open-feature/js-sdk-contrib/compare/go-feature-flag-web-provider-v0.2.5...go-feature-flag-web-provider-v0.2.6) (2025-05-26) diff --git a/libs/providers/go-feature-flag-web/package-lock.json b/libs/providers/go-feature-flag-web/package-lock.json index 87c3d4673..4d4fe90f3 100644 --- a/libs/providers/go-feature-flag-web/package-lock.json +++ b/libs/providers/go-feature-flag-web/package-lock.json @@ -1,12 +1,12 @@ { "name": "@openfeature/go-feature-flag-web-provider", - "version": "0.2.6", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@openfeature/go-feature-flag-web-provider", - "version": "0.2.6", + "version": "0.3.0", "peerDependencies": { "@openfeature/web-sdk": "*" } diff --git a/libs/providers/go-feature-flag-web/package.json b/libs/providers/go-feature-flag-web/package.json index 5dbc1fe94..b8185a069 100644 --- a/libs/providers/go-feature-flag-web/package.json +++ b/libs/providers/go-feature-flag-web/package.json @@ -1,6 +1,6 @@ { "name": "@openfeature/go-feature-flag-web-provider", - "version": "0.2.6", + "version": "0.3.0", "license": "Apache-2.0", "scripts": { "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",