From 1e16d8d226664d9b24119d368bdd9731be8021a5 Mon Sep 17 00:00:00 2001 From: webimpress Date: Mon, 9 Oct 2017 16:05:27 +0100 Subject: [PATCH] Fixed links in CHANGELOG --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2e0e57..bf6ac7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Versions 0.3.0 and prior were released as "weierophinney/problem-details". ### Added -- In [#1](https://github.com/zendframework/problem-details/pull/1), +- In [#1](https://github.com/zendframework/zend-problem-details/pull/1), `Zend\ProblemDetails\ProblemDetailsResponseFactory` was updated to attempt to generate a secure-by-default and secure-in-production Problem Details response when the response is generated from an exception; essentially, it now defaults @@ -27,27 +27,27 @@ Versions 0.3.0 and prior were released as "weierophinney/problem-details". Additionally, `ProblemDetailsResponseFactoryFactory` was updated to re-use the configuration `debug` setting for the `$exceptionDetailsInResponse` flag. -- [#7](https://github.com/zendframework/problem-details/pull/7) adds a +- [#7](https://github.com/zendframework/zend-problem-details/pull/7) adds a `ProblemDetailsNotFoundHandler` class and associated factory. This can be used in place of the default application `NotFoundHandler`, in addition to it, or within specific routed pipelines in order to provide Problem Details 404 responses. -- [#8](https://github.com/zendframework/problem-details/pull/8) adds +- [#8](https://github.com/zendframework/zend-problem-details/pull/8) adds `Zend\Expressive\ProblemDetails\Exception\ExceptionInterface`, a marker interface for exceptions provided by the package. ### Changed -- [#8](https://github.com/zendframework/problem-details/pull/8) renames the +- [#8](https://github.com/zendframework/zend-problem-details/pull/8) renames the interface `ProblemDetailsException` to `ProblemDetailsExceptionInterface`. This was done to make the naming consistent with other ZF packages. -- [#8](https://github.com/zendframework/problem-details/pull/8) renames the +- [#8](https://github.com/zendframework/zend-problem-details/pull/8) renames the trait `CommonProblemDetailsException` to `CommonProblemDetailsExceptionTrait`. This was done to make the naming consistent with other ZF packages. -- [#8](https://github.com/zendframework/problem-details/pull/8) updates the +- [#8](https://github.com/zendframework/zend-problem-details/pull/8) updates the shipped `InvalidResponseBodyException` and `MissingResponseException` to extend the new `ExceptionInterface`.