Conversation
Signed-off-by: OpenFeature Bot <[email protected]>
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 version 1.8.0 of the OpenFeature Web SDK. It incorporates a new feature that optimizes package bundling by marking side-effect-free modules and updates a core development dependency to its latest minor version. 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
This pull request automates the release of web-sdk version 1.8.0. The changes primarily involve version bumps in package.json, CHANGELOG.md, and other metadata files. My review identified a potential dependency issue in packages/web/package.json where the peerDependencies for @openfeature/core has not been updated in line with the devDependencies, which could lead to compatibility problems for users of this SDK. I've left a specific comment with details.
| }, | ||
| "devDependencies": { | ||
| "@openfeature/core": "^1.9.2" | ||
| "@openfeature/core": "^1.10.0" |
There was a problem hiding this comment.
The devDependencies for @openfeature/core is being updated to ^1.10.0, but the peerDependencies version for the same package remains ^1.9.2 (on line 53).
This can lead to issues if this new version of web-sdk relies on features introduced in @openfeature/[email protected], as consumers of this package might end up with an older, incompatible version of @openfeature/core.
According to the README.md:
Every SDK version has a requirement on a single, specific version of this dependency.
Please consider updating the peerDependencies to match the new requirement, for example to ^1.10.0, to ensure compatibility for consumers of this package.
🤖 I have created a release beep boop
1.8.0 (2026-02-21)
✨ New Features
Dependencies
This PR was generated with Release Please. See documentation.