This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
Releases: php-http/guzzle6-adapter
Releases · php-http/guzzle6-adapter
v2.0.2
Added
- Add Support for PHP 8
This adapter can now be installed with PHP 8, even though Guzzle 6 is not tested on PHP 8. If you need a PSR-18 client, use Guzzle 7 which natively implements PSR-18. If you need the HTTPlug interfaces for asynchronous calls or for a system that still requires HTTPlug, use the guzzle7-adapter instead of this repository.
v2.0.1
Fixed
-
\Http\Adapter\Guzzle6\Client::sendRequest
no longer throws any exceptions that do not implement
the PSR exception interface.Instead of
\UnexpectedValueException
we now throwHttp\Adapter\Guzzle6\Exception\UnexpectedValueException
(which extends\UnexpectedValueException
and implementsPsr\Http\Client\ClientExceptionInterface
).Instead of
\RuntimeException
we now throwHttp\Client\Exception\TransferException
(which extends\RuntimeException
and implementsPsr\Http\Client\ClientExceptionInterface
).
v2.0.0 - Implementing PSR-18
This major release drops PHP 5.x support and implements HTTPlug 2.0/PSR-18.
v1.1.1
v1.1.0
Add config factory method
First stable release
Merge pull request #29 from php-http/stable_release Prepare stable release
Added Puli bindings
v0.2.1 Prepare release
Added Async support
v0.2.0 Merge pull request #14 from php-http/promise-exception