- Require
guzzlehttp/guzzle^7.15 andguzzlehttp/psr7^2.13
- Require
guzzlehttp/guzzle^7.13.3,guzzlehttp/promises^2.5.1, andguzzlehttp/psr7^2.12.4
- Require
guzzlehttp/guzzle^7.12.3 andguzzlehttp/psr7^2.12.3
- Require
guzzlehttp/guzzle^7.11,guzzlehttp/promises^2.5, andguzzlehttp/psr7^2.11 - Deprecate non-iterable command collections
- Add PHP 8.5 support
- Require
guzzlehttp/guzzle^7.10,guzzlehttp/promises^2.3, andguzzlehttp/psr7^2.8 - Remove stale
createPoolreferences fromServiceClientInterfacedocumentation
- Add PHP 8.4 support
- Add PHP 8.3 support
- Add support for
guzzlehttp/promises2.x - Replace deprecated promise helper calls
- Add PHP 8.2 support
- Bump minimum Guzzle dependency versions
- Fix PHP 8.1 return type deprecation notices
- Bump minimum Guzzle dependency versions
- Add PHP 8.1 support
- Update package metadata and license text
- Add PHP 8.0 support
- Update dependency constraints for Guzzle 7.3
- Add support for PSR-7 2.x
- Update to Guzzle 7
- Raise the minimum PHP version to 7.2.5
- Add badges to README.md
- Switch README from .rst to .md format
- Update dependencies
- Add command to handler call to provide support for GuzzleServices
- Updated to use Guzzle 6 and PSR-7.
- Event system has been replaced with a middleware system
- Middleware at the command layer work the same as middleware from the
HTTP layer, but work with
CommandandResultobjects instead ofRequestandResponseobjects - The command middleware is in a separate
HandlerStackinstance than the HTTP middleware.
- Middleware at the command layer work the same as middleware from the
HTTP layer, but work with
Resultobjects are the result of executing aCommandand are used to hold the parsed response data.- Asynchronous code now uses the
guzzlehttp/promisespackage instead ofguzzlehttp/ringphp, which means that asynchronous results are implemented as Promises/A+ compliantPromiseobjects, instead of futures. - The existing
Subscribers were removed. - The
ServiceClientInterfaceandServiceClientclass now provide the basic foundation of a web service client.