Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/nest": "0.2.5",
"packages/react": "1.2.1",
"packages/react": "1.3.0",
"packages/web": "1.7.3",
"packages/server": "1.20.2",
"packages/shared": "1.9.2",
Expand Down
17 changes: 17 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [1.3.0](https://github.com/open-feature/js-sdk/compare/react-sdk-v1.2.1...react-sdk-v1.3.0) (2026-04-10)


### ✨ New Features

* add "sideEffects": false to package.json files for all packages ([#1343](https://github.com/open-feature/js-sdk/issues/1343)) ([d8e968e](https://github.com/open-feature/js-sdk/commit/d8e968ed2513fe986a6500895f3399303a2f0b96))
* support type-safe flag keys via module augmentation ([#1349](https://github.com/open-feature/js-sdk/issues/1349)) ([fb2ed4a](https://github.com/open-feature/js-sdk/commit/fb2ed4a7d64d9b8437975a0ef6cb4fe6a12dd671))
* support type-safe variant values for InMemoryProvider ([#1356](https://github.com/open-feature/js-sdk/issues/1356)) ([431f899](https://github.com/open-feature/js-sdk/commit/431f899191a2f7693fea9fab40f7cfb1f22f61f8))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @openfeature/core bumped from * to 1.10.0
* @openfeature/web-sdk bumped from * to 1.8.0

## [1.2.1](https://github.com/open-feature/js-sdk/compare/react-sdk-v1.2.0...react-sdk-v1.2.1) (2026-02-18)


Expand Down
4 changes: 2 additions & 2 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<img alt="Specification" src="https://img.shields.io/static/v1?label=specification&message=v0.8.0&color=yellow&style=for-the-badge" />
</a>
<!-- x-release-please-start-version -->
<a href="https://github.com/open-feature/js-sdk/releases/tag/react-sdk-v1.2.1">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v1.2.1&color=blue&style=for-the-badge" />
<a href="https://github.com/open-feature/js-sdk/releases/tag/react-sdk-v1.3.0">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v1.3.0&color=blue&style=for-the-badge" />
</a>
<!-- x-release-please-end -->
<br/>
Expand Down
6 changes: 3 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openfeature/react-sdk",
"version": "1.2.1",
"version": "1.3.0",
"description": "OpenFeature React SDK",
"main": "./dist/cjs/index.js",
"files": [
Expand Down Expand Up @@ -51,8 +51,8 @@
"react": ">=16.8.0"
},
"devDependencies": {
"@openfeature/core": "*",
"@openfeature/web-sdk": "*"
"@openfeature/core": "1.10.0",
"@openfeature/web-sdk": "1.8.0"
Comment on lines +54 to +55
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The devDependencies for @openfeature/core and @openfeature/web-sdk are being updated to 1.10.0 and 1.8.0. However, the current versions in the repository are 1.9.2 and 1.7.3. If these new versions haven't been published to NPM yet, npm install will fail. It's generally safer in a monorepo to use the current workspace versions or the * wildcard for internal dev dependencies.

Suggested change
"@openfeature/core": "1.10.0",
"@openfeature/web-sdk": "1.8.0"
"@openfeature/core": "1.9.2",
"@openfeature/web-sdk": "1.7.3"

},
"sideEffects": false
}
Loading