Releases: ackintosh/ganesha
3.1.2 - Loosened requirement for psr/http-message
3.1.1 - Fix dependency issue with guzzle/promises
What's Changed
- CI: Fix libmemcached installation by @ackintosh in #103
- Test against php 8.2 by @BackEndTea in #102
- Upgrade Guzzle Promises Function API to Static API by @DimionX in #104
New Contributors
- @BackEndTea made their first contribution in #102
- @DimionX made their first contribution in #104
Full Changelog: 3.1.0...3.1.1
3.1.0 - Guzzle Failure Detector
Failure detector for Guzzle middleware has been introduced in this release. See README for details.
What's Changed
- Add guzzle failure detector by @e-zannelli in #100
New Contributors
- @e-zannelli made their first contribution in #100
Full Changelog: 3.0.1...3.1.0
3.0.1 - Psalm type annotations
3.0.0 - Bump minimum supported PHP version and update deps
Since this release, the minimum supported PHP version is bumped from 7.3
to 8.0
. Also symfony/http-client
version is bumped.
Please see Version Guidance for the supported PHP version in each release.
There are no changes to the interfaces and features Ganesha provides.
2.0.2 - RedisStore: use ClientInterface instead of Client
RedisStore use ClientInterface instead of Client by @fhjbalfoort
Since this release, RedisStore
allows an instance of \Predis\ClientInterface
instead of \Predis\Client
as a constructor argument.
This allows you to use your custom redis client that implements the \Predis\ClientInterface
interface.
2.0.1 - Reduce the size of package
Added .gitattributes to reduce the size of package.
#86
It reduces the package size from ~1,600KB to ~200KB. 🚀
2.0.0 - Drop support for PHP 7.1 and 7.2
Updates in this version is only drop the support for the versions reached EOL. So the interfaces and features ganesha provides has not been changed in this update.
Drop support for PHP 7.1 and 7.2
Support for the versions that reached the EOL has been dropped.
1.3.0 - Option to trigger failure on 5xx response
feat: Add option to configure HTTP status codes to consider as failure · Pull Request #82 by @pvgnd
GaheshaHttpClient which provides integration of Symfony HttpClient and Ganesha, now allows an option to trigger failure on 5xx response.
For the details please see README.