-
Notifications
You must be signed in to change notification settings - Fork 0
chore: update utopia domains to 0.10 #9
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 pull request updates the dependency version constraint for utopia-php/domains in composer.json from Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
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.
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)
composer.lockis excluded by!**/*.lock
📒 Files selected for processing (1)
composer.json(1 hunks)
| "utopia-php/validators": "^0.0.2", | ||
| "utopia-php/cli": "^0.15", | ||
| "utopia-php/domains": "^0.9", | ||
| "utopia-php/domains": "^0.10", |
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.
❓ Verification inconclusive
Non-existent version constraint: utopia-php/domains 0.10 does not appear to be released.
The latest stable version of utopia-php/domains available on Packagist is 0.8.4, and there are no 0.10.x releases listed on the repository. Specifying ^0.10 will cause composer install or composer update to fail with a version constraint error.
Please verify one of the following:
- Is version 0.10 scheduled to be released before this PR merges?
- Should this target a different version (e.g.,
^0.8or^0.9)? - Is there a development or pre-release branch where 0.10 exists?
Run this script to check available versions:
🏁 Script executed:
#!/bin/bash
# Check available versions of utopia-php/domains
curl -s https://repo.packagist.org/p2/utopia-php/domains.json | jq '.packages | keys[] | select(startswith("0."))'Length of output: 0
Let me verify this with a more reliable approach:
Version 0.10 does not exist. The latest released version of utopia-php/domains is 0.8.0.
The constraint ^0.10 will fail during composer install or composer update. Verify the intended target version (likely ^0.8 or ^0.9) and update accordingly.
🤖 Prompt for AI Agents
In composer.json around line 31, the dependency "utopia-php/domains": "^0.10"
references a non-existent 0.10 release and will break composer install/update;
change the constraint to a valid released version (for example "^0.8" or the
intended target like "^0.9" if planning for an unreleased future minor) by
verifying the correct latest tag on Packagist/GitHub and updating the version
string accordingly so Composer resolves successfully.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.