Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"require": {
"php": ">=8.3",
"utopia-php/fetch": "^1.1.0"
"utopia-php/fetch": "1.*"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Version constraint relaxes minimum, not raises it

Changing from ^1.1.0 to 1.* widens the allowed range from >=1.1.0 <2.0.0 to >=1.0.0 <2.0.0. This means Composer can now resolve to 1.0.x versions that were previously excluded. If any API used in this codebase (such as Client::setTimeout(), which the Ollama adapter relies on) was introduced in 1.1.0, installations resolving to 1.0.x will encounter runtime errors.

Suggested change
"utopia-php/fetch": "1.*"
"utopia-php/fetch": "^1.1.0"

},
"require-dev": {
"laravel/pint": "^1.18",
Expand Down
Loading