You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update utopia-php/fetch constraint from 0.5.* to ^1.1.
Refresh composer.lock to install utopia-php/fetch1.1.2.
Compatibility
The direct fetch usage in this repository is limited to test helpers using Client::fetch(), Response::getStatusCode(), and Response::text(), which are still available in fetch1.1.2.
Test Plan
composer validate --strict
composer audit
composer run lint
composer run check
Notes:
composer run test requires VCS provider credentials and fails in this environment with missing access token errors.
This PR updates the utopia-php/fetch dependency constraint from 0.5.* to ^1.1 and refreshes composer.lock to pin version 1.1.2. The only in-repo consumer of the library is the test helper in tests/VCS/Base.php, which uses Client::fetch(), Response::getStatusCode(), and Response::text() — all of which remain available in the 1.1.x API.
composer.json: single-line constraint change from 0.5.* to ^1.1; no other dependencies affected.
composer.lock: locked to fetch 1.1.2 with an updated git reference and timestamp; the only structural addition is swoole/ide-helper ^6.0 as a dev dependency of the upstream package itself (not of this repo).
Confidence Score: 5/5
This is a safe dependency bump with no production code changes; the only consumer of the library is test helpers whose method calls remain compatible with the new version.
The change touches only composer.json and composer.lock. The upstream library's public API (Client::fetch(), Response::getStatusCode(), Response::text()) is unchanged in 1.1.x, and no source files outside of test helpers reference the package directly. The ^1.1 constraint correctly allows future patch and minor releases while staying on major version 1.
No files require special attention.
Important Files Changed
Filename
Overview
composer.json
Bumps utopia-php/fetch constraint from 0.5.* to ^1.1; all other dependencies unchanged.
composer.lock
Lock file regenerated for fetch 1.1.2 (new git reference, updated timestamps, adds swoole/ide-helper as a dev dependency of the fetched package itself); no other package versions changed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
utopia-php/fetchconstraint from0.5.*to^1.1.composer.lockto installutopia-php/fetch1.1.2.Compatibility
The direct fetch usage in this repository is limited to test helpers using
Client::fetch(),Response::getStatusCode(), andResponse::text(), which are still available infetch1.1.2.Test Plan
composer validate --strictcomposer auditcomposer run lintcomposer run checkNotes:
composer run testrequires VCS provider credentials and fails in this environment with missing access token errors.