The bump from 5.10.0 to 5.11.0 changes the default end-point from 2025-04 to 2025-7, and this is backwards incompatible change, not a new feature or bug fix.
The issue comes from this line:
|
string $apiVersion = ApiVersion::LATEST, |
Where this constant value is being updated:
|
public const LATEST = self::JULY_2025; |
When running composer update we should be able to expect no breaking changes when our version constraints do not allow for major versions to be up or downgraded.
The bump from 5.10.0 to 5.11.0 changes the default end-point from 2025-04 to 2025-7, and this is backwards incompatible change, not a new feature or bug fix.
The issue comes from this line:
shopify-api-php/src/Context.php
Line 80 in ed1c9cd
Where this constant value is being updated:
shopify-api-php/src/ApiVersion.php
Line 72 in ed1c9cd
When running
composer updatewe should be able to expect no breaking changes when our version constraints do not allow for major versions to be up or downgraded.