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.