@lipagas/fleetops-engine
Version:
Fleet & Transport Management Extension for Fleetbase
236 lines (115 loc) • 3.82 kB
Markdown
Change Log
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# 2.3.2 - 2024-03-03
## Fixed
- Fixed running the tests with Guzzle PSR-7 and PSR-17 implementations.
# 2.3.1 - 2023-11-03
## Added
- Allow installation with Symfony 7.
# 2.3.0 - 2023-04-28
## Added
- Test with PHP 8.2
## Fixed
- This client needs a PSR-17 factories implementation. Instead of requiring an implementation,
previous versions only required the interfaces which could lead to a non-functional installation.
Fixed by requiring `psr/http-factory-implementation`.
# 2.2.1 - 2021-12-10
## Added
- Symfony 6 support
- Tested with PHP 8.1
# 2.2.0 - 2020-12-14
## Added
- PHP 8.0 support
# 2.1.0 - 2019-12-27
## Added
- Symfony 5 support
# 2.0.0 - 2019-03-05
## Removed
- HHVM support removed.
## Changed
- Minimal PHP version changed to 7.1.
- `Client::__construct` now expects PSR-17 factories instead of HTTPlug ones.
## Added
- #41: Support [PSR-17](https://www.php-fig.org/psr/psr-17/) and
[PSR-18](https://www.php-fig.org/psr/psr-18/).
# 1.7.1 - 2018-03-26
## Fixed
- #36: Failure evaluating code: `is_resource($handle)` (string assertions are deprecated in PHP 7.2)
# 1.7 - 2017-02-09
## Changed
- #30: Make sure we rewind streams
# 1.6.2 - 2017-01-02
## Fixed
- #29: Request not using CURLOPT_POSTFIELDS have content-length set to
## Changed
- Use binary mode to create response body stream.
# 1.6.1 - 2016-11-11
## Fixed
- #27: ErrorPlugin and sendAsyncRequest() incompatibility
# 1.6 - 2016-09-12
## Changed
- `Client::sendRequest` now throws `Http\Client\Exception\NetworkException` on network errors.
- `\UnexpectedValueException` replaced with `Http\Client\Exception\RequestException` in
`Client::sendRequest` and `Client::sendAsyncRequest`
# 1.5.1 - 2016-08-29
## Fixed
- #26: Combining CurlClient with StopwatchPlugin causes Promise onRejected handler to never be
invoked.
# 1.5 - 2016-08-03
## Changed
- Request body can be send with any method except GET, HEAD and TRACE.
- #25: Make discovery a hard dependency.
# 1.4.2 - 2016-06-14
## Added
- #23: "php-http/async-client-implementation" added to "provide" section.
# 1.4.1 - 2016-05-30
## Fixed
- #22: Cannot create the client using `HttpClientDiscovery`.
# 1.4 - 2016-03-30
## Changed
- #20: Minimize memory usage when reading large response body.
# 1.3 - 2016-03-14
## Fixed
- #18: Invalid "Expect" header.
## Removed
- #13: Remove HeaderParser.
# 1.2 - 2016-03-09
## Added
- #16: Make sure discovery can find the curl client
## Fixed
- #15: "Out of memory" sending large files.
# 1.1.0 - 2016-01-29
## Changed
- Switch to php-http/message 1.0.
# 1.0.0 - 2016-01-28
First stable release.
# 0.7.0 - 2016-01-26
## Changed
- Migrate from `php-http/discovery` and `php-http/utils` to `php-http/message`.
# 0.6.0 - 2016-01-12
## Changed
- Root namespace changed from `Http\Curl` to `Http\Client\Curl`.
- Main client class name renamed from `CurlHttpClient` to `Client`.
- Minimum required [php-http/discovery](https://packagist.org/packages/php-http/discovery)
version changed to 0.5.
# 0.5.0 - 2015-12-18
## Changed
- Compatibility with php-http/httplug 1.0 beta
- Switch to php-http/discovery 0.4
# 0.4.0 - 2015-12-16
## Changed
- Switch to php-http/message-factory 1.0
# 0.3.1 - 2015-12-14
## Changed
- Requirements fixed.
# 0.3.0 - 2015-11-24
## Changed
- Use cURL constants as options keys.
# 0.2.0 - 2015-11-17
## Added
- HttpAsyncClient support.
# 0.1.0 - 2015-11-11
## Added
- Initial release