diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c2c6ae5e26..551ab51b79 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { "packages/nest": "0.1.4-experimental", "packages/react": "0.3.4", - "packages/client": "1.0.3", + "packages/client": "1.1.0", "packages/server": "1.13.5", "packages/shared": "1.1.0" } diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 9051b51eb9..dc97066117 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,6 +1,33 @@ # Changelog +## [1.1.0](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.0.3...web-sdk-v1.1.0) (2024-05-08) + + +### ✨ New Features + +* set context during provider init on web ([#919](https://github.com/open-feature/js-sdk/issues/919)) ([7e6c1c6](https://github.com/open-feature/js-sdk/commit/7e6c1c6e7082e75535bf81b4e70c8c57ef870b77)) + + +### 🐛 Bug Fixes + +* remove export of OpenFeatureClient ([#794](https://github.com/open-feature/js-sdk/issues/794)) ([3d197f2](https://github.com/open-feature/js-sdk/commit/3d197f2ea74f00ef904fc6a6960160d0cf4ded9a)) +* removes exports of OpenFeatureClient class and makes event props readonly ([#918](https://github.com/open-feature/js-sdk/issues/918)) ([e9a25c2](https://github.com/open-feature/js-sdk/commit/e9a25c21cb17c3b5700bca652e3c0ed15e8f49b4)) +* run error hook when provider returns reason error or error code ([#926](https://github.com/open-feature/js-sdk/issues/926)) ([c6d0b5d](https://github.com/open-feature/js-sdk/commit/c6d0b5da9c7f4c11319422fbe8c668a7613b044d)) +* skip reconciling event for synchronous onContextChange operations ([#931](https://github.com/open-feature/js-sdk/issues/931)) ([6c25f29](https://github.com/open-feature/js-sdk/commit/6c25f29f11ddb9d4ee617f1ed3f1d26be4f554ac)) + + +### 📚 Documentation + +* add tip about supported usage in the install section ([#941](https://github.com/open-feature/js-sdk/issues/941)) ([f0de667](https://github.com/open-feature/js-sdk/commit/f0de66770be778d7a51063e706c9cccbba4b214e)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @openfeature/core bumped from 1.1.0 to 1.2.0 + ## [1.0.3](https://github.com/open-feature/js-sdk/compare/web-sdk-v1.0.2...web-sdk-v1.0.3) (2024-04-18) diff --git a/packages/client/README.md b/packages/client/README.md index 03fb659bf5..07ae28fdf8 100644 --- a/packages/client/README.md +++ b/packages/client/README.md @@ -16,8 +16,8 @@ Specification - - Release + + Release
diff --git a/packages/client/package.json b/packages/client/package.json index d724cbc001..c6fa271d43 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@openfeature/web-sdk", - "version": "1.0.3", + "version": "1.1.0", "description": "OpenFeature SDK for Web", "main": "./dist/cjs/index.js", "files": [ @@ -49,6 +49,6 @@ "@openfeature/core": "1.1.0" }, "devDependencies": { - "@openfeature/core": "1.1.0" + "@openfeature/core": "1.2.0" } }