bump utopia database version - #111
Conversation
WalkthroughThe dependency constraint for Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
Pre-merge checks (3 passed)✅ Passed checks (3 passed)
Poem
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. ✨ Finishing Touches🧪 Generate unit tests
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. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
composer.json (1)
24-33: Prefer caret constraints over wildcards for predictabilityUsing ^ ranges communicates intent and avoids unexpectedly allowing non-stable tags if stability flags change. Consider:
- "appwrite/appwrite": "15.*", - "utopia-php/database": "1.*", - "utopia-php/storage": "0.18.*", + "appwrite/appwrite": "^15.0", + "utopia-php/database": "^1.0", // or ^0.x if staying on Utopia 0.x + "utopia-php/storage": "^0.18",
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
composer.lockis excluded by!**/*.lock
📒 Files selected for processing (1)
composer.json(1 hunks)
🔇 Additional comments (1)
composer.json (1)
29-33: No conflict in Utopia dependencies; resolve as-is
composer.lock shows utopia-php/database@1.4.4 requiring framework 0.33.* (not 1.0.), and storage@0.18. is compatible with framework 0.., so pinning database to "1." alongside framework "0.33." is valid.
Summary by CodeRabbit