From 1baedfc880ab8d3a1f2f5d4fd4ddb1a8527609e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Dec 2025 18:24:40 +0000 Subject: [PATCH] chore(main): release flagd-provider 0.13.4 --- .release-please-manifest.json | 2 +- libs/providers/flagd/CHANGELOG.md | 11 +++++++++++ libs/providers/flagd/package.json | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 396818977..42ed33749 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { "libs/hooks/open-telemetry": "1.0.0", "libs/providers/go-feature-flag": "1.0.1", - "libs/providers/flagd": "0.13.3", + "libs/providers/flagd": "0.13.4", "libs/providers/flagd-web": "0.7.3", "libs/providers/env-var": "0.3.1", "libs/providers/config-cat": "0.8.0", diff --git a/libs/providers/flagd/CHANGELOG.md b/libs/providers/flagd/CHANGELOG.md index 4b9aa877a..acee760c2 100644 --- a/libs/providers/flagd/CHANGELOG.md +++ b/libs/providers/flagd/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.13.4](https://github.com/open-feature/js-sdk-contrib/compare/flagd-provider-v0.13.3...flagd-provider-v0.13.4) (2025-12-17) + + +### ✨ New Features + +* Add custom certPath support ([#1405](https://github.com/open-feature/js-sdk-contrib/issues/1405)) ([8163190](https://github.com/open-feature/js-sdk-contrib/commit/81631908a94f107b61b298d19e1814dbd0150a13)) +* Add FLAGD_SYNC_PORT support for in-process providers with backwards compatibility ([#1413](https://github.com/open-feature/js-sdk-contrib/issues/1413)) ([8feffee](https://github.com/open-feature/js-sdk-contrib/commit/8feffee5029e37b2d3c8b7f94b959587f836ddea)) +* Add tests for config feature ([#1407](https://github.com/open-feature/js-sdk-contrib/issues/1407)) ([1bccd11](https://github.com/open-feature/js-sdk-contrib/commit/1bccd1116d733eda444c88765085c7bb5da8f352)) +* support no default variant ([#1354](https://github.com/open-feature/js-sdk-contrib/issues/1354)) ([f2efa55](https://github.com/open-feature/js-sdk-contrib/commit/f2efa559410751dfab80f1e749a86dc04703189c)) +* Use SyncContext from SyncFlagsResponse instead of Metadata Request ([#1401](https://github.com/open-feature/js-sdk-contrib/issues/1401)) ([17fd726](https://github.com/open-feature/js-sdk-contrib/commit/17fd726871fca1e33855651fb465388d7d083e64)) + ## [0.13.3](https://github.com/open-feature/js-sdk-contrib/compare/flagd-provider-v0.13.2...flagd-provider-v0.13.3) (2025-02-07) diff --git a/libs/providers/flagd/package.json b/libs/providers/flagd/package.json index 7b54cfa24..82c7cce67 100644 --- a/libs/providers/flagd/package.json +++ b/libs/providers/flagd/package.json @@ -1,6 +1,6 @@ { "name": "@openfeature/flagd-provider", - "version": "0.13.3", + "version": "0.13.4", "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",