|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [Unreleased] |
| 8 | + |
| 9 | +(nothing yet) |
| 10 | + |
| 11 | +## [0.7.0] - 2019-04-03 |
| 12 | + |
| 13 | +### Changed |
| 14 | +- Update from httplug to PSR-17/PSR-18. With PSR-17 follows the requirement of a HTTP factory implementation. |
| 15 | + Run `composer require http-interop/http-factory-guzzle` to continue using sru-client as before. |
| 16 | + |
| 17 | +- Remove support for PHP 5.6 and 7.0 because we updated the tests to work with PHPUnit 7+ |
| 18 | + and can no longer run tests on PHP < 7.1. Also, PHP 5.6 and PHP 7.0 have now reached end-of-life. |
| 19 | + |
| 20 | +## [0.6.4] - 2019-03-06 |
| 21 | +### Fixed |
| 22 | +- Fix a few type hints. |
| 23 | +- Minor code style cleanups. |
| 24 | + |
| 25 | +## [0.6.3] - 2017-08-01 |
| 26 | +### Added |
| 27 | +- Add support for setting custom headers. |
| 28 | + |
| 29 | +### Changed |
| 30 | +- Don't throw `ClientErrorException` on 4XX responses, since some servers return 4XX responses whenever there is a diagnostic message, including zero result queries. Diagnostic messages are better handled by our `Response` class. |
| 31 | + |
| 32 | +## [0.6.2] - 2017-08-01 |
| 33 | +### Added |
| 34 | +- Add `__toString()` method to `Record` to allow simple string serialization. |
| 35 | + |
| 36 | +## [0.6.1] - 2017-08-01 |
| 37 | +### Changed |
| 38 | +- Update from quitesimplexmlelement 0.x to 1.x. |
| 39 | + |
| 40 | +## [0.6.0] - 2017-07-01 |
| 41 | +### Changed |
| 42 | +- Replace hard dependency on Guzzle with HTTPlug client discovery. |
| 43 | + To continue use Guzzle, run `composer require php-http/guzzle6-adapter` |
| 44 | + |
| 45 | +[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.7.0...HEAD |
| 46 | +[0.7.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.4...v0.7.0 |
| 47 | +[0.6.4]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.3...v0.6.4 |
| 48 | +[0.6.3]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.2...v0.6.3 |
| 49 | +[0.6.2]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.1...v0.6.2 |
| 50 | +[0.6.1]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.6.0...v0.6.1 |
| 51 | +[0.6.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.6.0 |
0 commit comments