Conversation
Summary of ChangesHello @openfeaturebot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request automates the release of @openfeature/react-sdk version 1.3.0. It incorporates a new feature that adds "sideEffects": false to package.json files to improve tree-shaking capabilities for bundlers. Additionally, it updates several development dependencies to their latest stable versions. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
The pull request prepares the release of @openfeature/react-sdk version 1.3.0. The primary concern is the update of devDependencies in packages/react/package.json to versions of @openfeature/core and @openfeature/web-sdk that do not currently exist in the repository. This mismatch will likely lead to broken builds and installation errors. On a positive note, the inclusion of "sideEffects": false in the package.json files is a good improvement for tree-shaking.
| "@openfeature/core": "1.10.0", | ||
| "@openfeature/web-sdk": "1.8.0" |
There was a problem hiding this comment.
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.
| "@openfeature/core": "1.10.0", | |
| "@openfeature/web-sdk": "1.8.0" | |
| "@openfeature/core": "1.9.2", | |
| "@openfeature/web-sdk": "1.7.3" |
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
7dd9e56 to
c452c03
Compare
🤖 I have created a release beep boop
1.3.0 (2026-03-31)
✨ New Features
Dependencies
This PR was generated with Release Please. See documentation.