@@ -50,7 +50,7 @@ All notable changes to this project will be documented in this file, in reverse
50
50
51
51
### Added
52
52
53
- - [ #58 ] ( https://github.com/zfcampus/zf-api-problem/pull/58 ) adds support for PHP 7.2.
53
+ - [ zfcampus/zf-api-problem #58 ] ( https://github.com/zfcampus/zf-api-problem/pull/58 ) adds support for PHP 7.2.
54
54
55
55
### Changed
56
56
@@ -62,7 +62,7 @@ All notable changes to this project will be documented in this file, in reverse
62
62
63
63
### Removed
64
64
65
- - [ #58 ] ( https://github.com/zfcampus/zf-api-problem/pull/58 ) removes support for HHVM.
65
+ - [ zfcampus/zf-api-problem #58 ] ( https://github.com/zfcampus/zf-api-problem/pull/58 ) removes support for HHVM.
66
66
67
67
### Fixed
68
68
@@ -84,8 +84,8 @@ All notable changes to this project will be documented in this file, in reverse
84
84
85
85
### Fixed
86
86
87
- - [ #52 ] ( https://github.com/zfcampus/zf-api-problem/pull/52 ) and
88
- [ #55 ] ( https://github.com/zfcampus/zf-api-problem/pull/55 ) update the
87
+ - [ zfcampus/zf-api-problem #52 ] ( https://github.com/zfcampus/zf-api-problem/pull/52 ) and
88
+ [ zfcampus/zf-api-problem #55 ] ( https://github.com/zfcampus/zf-api-problem/pull/55 ) update the
89
89
` ApiProblemListener ` and ` RenderErrorListener ` to check for either exceptions
90
90
or PHP 7 ` Throwable ` instances when creating an ` ApiProblem ` to return.
91
91
@@ -105,7 +105,7 @@ All notable changes to this project will be documented in this file, in reverse
105
105
106
106
### Fixed
107
107
108
- - [ #49 ] ( https://github.com/zfcampus/zf-api-problem/pull/49 ) fixes ` ApiProblem ` 's
108
+ - [ zfcampus/zf-api-problem #49 ] ( https://github.com/zfcampus/zf-api-problem/pull/49 ) fixes ` ApiProblem ` 's
109
109
detail message marshaling when PHP 7 ` Throwable ` types are provided as the
110
110
detail.
111
111
@@ -125,20 +125,20 @@ All notable changes to this project will be documented in this file, in reverse
125
125
126
126
### Fixed
127
127
128
- - [ #47 ] ( https://github.com/zfcampus/zf-api-problem/pull/47 ) fixes an issue with
128
+ - [ zfcampus/zf-api-problem #47 ] ( https://github.com/zfcampus/zf-api-problem/pull/47 ) fixes an issue with
129
129
the various factories introduced in 1.2.0; they had been updated to implement the
130
- zend -servicemanager v3 interfaces, which broke usage with v2. They are now
130
+ laminas -servicemanager v3 interfaces, which broke usage with v2. They are now
131
131
written in a way that will work with both versions.
132
132
133
133
## 1.2.0 - 2016-07-06
134
134
135
135
### Added
136
136
137
- - [ #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) adds support for PHP 7.
138
- - [ #44 ] ( https://github.com/zfcampus/zf-api-problem/pull/44 ) and
139
- [ #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) add support for
140
- version 3 components of Zend Framework .
141
- - [ #39 ] ( https://github.com/zfcampus/zf-api-problem/pull/39 ) adds the constant
137
+ - [ zfcampus/zf-api-problem #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) adds support for PHP 7.
138
+ - [ zfcampus/zf-api-problem #44 ] ( https://github.com/zfcampus/zf-api-problem/pull/44 ) and
139
+ [ zfcampus/zf-api-problem #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) add support for
140
+ version 3 components of Laminas .
141
+ - [ zfcampus/zf-api-problem #39 ] ( https://github.com/zfcampus/zf-api-problem/pull/39 ) adds the constant
142
142
` ApiProblem::CONTENT_TYPE ` for specifying the Content-Type of API Problem
143
143
responses.
144
144
@@ -148,18 +148,18 @@ All notable changes to this project will be documented in this file, in reverse
148
148
149
149
### Removed
150
150
151
- - [ #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) removes support for
151
+ - [ zfcampus/zf-api-problem #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) removes support for
152
152
PHP 5.6.
153
- - [ #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) removes the
153
+ - [ zfcampus/zf-api-problem #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) removes the
154
154
` Module::getAutoloaderConfig() ` implementation, as it was redundant in
155
155
composer-based applications.
156
156
157
157
### Fixed
158
158
159
- - [ #44 ] ( https://github.com/zfcampus/zf-api-problem/pull/44 ) and
160
- [ #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) ensure that
159
+ - [ zfcampus/zf-api-problem #44 ] ( https://github.com/zfcampus/zf-api-problem/pull/44 ) and
160
+ [ zfcampus/zf-api-problem #45 ] ( https://github.com/zfcampus/zf-api-problem/pull/45 ) ensure that
161
161
definition and attachment of the listener aggregates defined in the module
162
- will work with both v2 and v3 versions of zend -eventmanager.
163
- - [ #38 ] ( https://github.com/zfcampus/zf-api-problem/pull/38 ) fixes an issue
162
+ will work with both v2 and v3 versions of laminas -eventmanager.
163
+ - [ zfcampus/zf-api-problem #38 ] ( https://github.com/zfcampus/zf-api-problem/pull/38 ) fixes an issue
164
164
whereby JSON encoding failed for included stack traces if they originated
165
165
within a PHP stream.
0 commit comments