-
Notifications
You must be signed in to change notification settings - Fork 61
Release 2.9.0 - LiveObjects #2029
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe changes update the project to version 2.9.0, as reflected in the changelog, package metadata, and a version constant in the React hooks source. The changelog documents the addition of Ably LiveObjects, a new feature for realtime state synchronization, and provides a link to further documentation. Changes
Poem
Tip ⚡️ Faster reviews with caching
Enjoy the performance boost—your workflow just got faster. ✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
mschristensen
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving ahead of #2007, looks good once merged
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (3)
CHANGELOG.md(1 hunks)package.json(1 hunks)src/platform/react-hooks/src/AblyReactHooks.ts(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (7)
- GitHub Check: test-browser (chromium)
- GitHub Check: test-node (16.x)
- GitHub Check: test-browser (webkit)
- GitHub Check: test-node (20.x)
- GitHub Check: test-node (18.x)
- GitHub Check: test-browser (firefox)
- GitHub Check: test-npm-package
🔇 Additional comments (2)
package.json (1)
4-4:Details
✅ Verification successful
Confirm Lockfile Update.
The
versionfield was bumped to2.9.0. Please ensure that the lockfile (package-lock.jsonoryarn.lock) has been regenerated and committed to reflect this new version.
🏁 Script executed:
#!/bin/bash # Verify lockfile contains the updated version if grep -R '"version": "2.9.0"' package-lock.json; then echo "package-lock.json updated" else echo "ERROR: package-lock.json does not contain version 2.9.0" exit 1 fi if [ -f yarn.lock ]; then if grep -R 'version "2.9.0"' yarn.lock; then echo "yarn.lock updated" else echo "ERROR: yarn.lock does not contain version 2.9.0" exit 1 fi fiLength of output: 180
Lockfile Updated Successfully
The
package-lock.jsonhas been updated to version 2.9.0. Noyarn.lockfile is present in the repository. No further changes are required.CHANGELOG.md (1)
5-17: Changelog entry looks good.The new
2.9.0section follows the existing format, clearly describes the LiveObjects feature, includes the documentation link, and references PR #2007.
release for LiveObjects feature #2007
Summary by CodeRabbit
Documentation
Chores