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 @@ -29,7 +29,7 @@
"require": {
"php": ">=8.2",
"utopia-php/validators": "0.*",
"utopia-php/cache": "1.0.*"
"utopia-php/cache": "1.0.* || 2.0.*"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 CI does not validate both cache versions

The test plan checkbox ("CI passes against both cache 1.0.x and 2.0.x") is unchecked, and the existing test.yml workflow has no matrix axis for cache version. composer install will resolve to the highest matching version (2.0.*), so 1.0.x is never installed and exercised post-merge. Adding a cache-versions: ['1.0.*', '2.0.*'] matrix dimension and running composer require utopia-php/cache:${{ matrix.cache-versions }} --no-update before composer install would verify both constraints are actually satisfied.

},
"require-dev": {
"phpunit/phpunit": "^9.3",
Expand Down
Loading