chore(main): release launchdarkly-client-provider 0.3.3 (#1370)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
523d2dec23
commit
da9748ae51
|
|
@ -5,7 +5,7 @@
|
|||
"libs/providers/flagd-web": "0.7.3",
|
||||
"libs/providers/env-var": "0.3.1",
|
||||
"libs/providers/config-cat": "0.7.6",
|
||||
"libs/providers/launchdarkly-client": "0.3.2",
|
||||
"libs/providers/launchdarkly-client": "0.3.3",
|
||||
"libs/providers/go-feature-flag-web": "0.2.6",
|
||||
"libs/shared/flagd-core": "1.1.0",
|
||||
"libs/shared/ofrep-core": "1.1.0",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
# Changelog
|
||||
|
||||
## [0.3.3](https://github.com/open-feature/js-sdk-contrib/compare/launchdarkly-client-provider-v0.3.2...launchdarkly-client-provider-v0.3.3) (2025-09-14)
|
||||
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
* **launchdarkly-client--README.md:** fix typo - options -> ldOptions ([#1367](https://github.com/open-feature/js-sdk-contrib/issues/1367)) ([9a7ef4f](https://github.com/open-feature/js-sdk-contrib/commit/9a7ef4fe1a8a0afef4358589cf066fb7b4ec1c0d))
|
||||
|
||||
|
||||
### ✨ New Features
|
||||
|
||||
* Add wrapper information to the LaunchDarkly client-side provider. ([#1368](https://github.com/open-feature/js-sdk-contrib/issues/1368)) ([ef2869f](https://github.com/open-feature/js-sdk-contrib/commit/ef2869f63668dd2c9eefd5f216895c7c485a60aa))
|
||||
|
||||
## [0.3.2](https://github.com/open-feature/js-sdk-contrib/compare/launchdarkly-client-provider-v0.3.1...launchdarkly-client-provider-v0.3.2) (2025-03-12)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@openfeature/launchdarkly-client-provider",
|
||||
"version": "0.3.2",
|
||||
"version": "0.3.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@openfeature/launchdarkly-client-provider",
|
||||
"version": "0.3.2",
|
||||
"version": "0.3.3",
|
||||
"peerDependencies": {
|
||||
"@openfeature/web-sdk": "*",
|
||||
"launchdarkly-js-client-sdk": ">=3.1.3"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@openfeature/launchdarkly-client-provider",
|
||||
"version": "0.3.2",
|
||||
"version": "0.3.3",
|
||||
"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",
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import translateContext from './translate-context';
|
|||
import translateResult from './translate-result';
|
||||
|
||||
const WRAPPER_NAME = 'open-feature-community-js-client';
|
||||
const WRAPPER_VERSION = '0.3.2'; // {{ x-release-please-version }}
|
||||
const WRAPPER_VERSION = '0.3.3'; // {{ x-release-please-version }}
|
||||
|
||||
/**
|
||||
* Create a ResolutionDetails for an evaluation that produced a type different
|
||||
|
|
|
|||
Loading…
Reference in New Issue