Skip to content

Commit abb8b96

Browse files
committed
Merge branch 'release/3.1.0'
2 parents 438631c + 8463239 commit abb8b96

File tree

2 files changed

+23
-33
lines changed

2 files changed

+23
-33
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## Unreleased
7+
8+
## [3.1.0] - 2023-11-08
9+
10+
### Changed
11+
12+
- Encoding implementation no longer catches and re-throws exceptions when encoding compound document. Although the
13+
implementation here was correct, we're getting far too many questions from developers who do not refer to the previous
14+
exception even though the exception message specified that there was a previous exception.
15+
616
## [3.0.1] - 2023-02-18
717

818
### Changed

src/Document.php

+13-33
Original file line numberDiff line numberDiff line change
@@ -157,53 +157,33 @@ public function toString(): string
157157
*/
158158
public function toArray()
159159
{
160-
try {
161-
return json_decode($this->toJson(), true, 512, JSON_THROW_ON_ERROR);
162-
} catch (\Throwable $ex) {
163-
throw new \LogicException(
164-
'Unable to convert document to an array. See previous exception for cause of failure.',
165-
0,
166-
$ex,
167-
);
168-
}
160+
return json_decode(
161+
json: $this->toJson(),
162+
associative: true,
163+
flags: JSON_THROW_ON_ERROR,
164+
);
169165
}
170166

171167
/**
172168
* @inheritDoc
173169
*/
174170
public function jsonSerialize(): array
175171
{
176-
try {
177-
$this->prepareEncoder();
178-
179-
return $this->serialize();
180-
} catch (\Throwable $ex) {
181-
throw new \LogicException(
182-
'Unable to serialize compound document. See previous exception for cause of failure.',
183-
0,
184-
$ex,
185-
);
186-
}
172+
$this->prepareEncoder();
173+
174+
return $this->serialize();
187175
}
188176

189177
/**
190178
* @inheritDoc
191179
*/
192180
public function toJson($options = 0)
193181
{
194-
try {
195-
$this->prepareEncoder();
196-
197-
$this->encoder->withEncodeOptions($options | JSON_THROW_ON_ERROR);
198-
199-
return $this->encode();
200-
} catch (\Throwable $ex) {
201-
throw new \LogicException(
202-
'Unable to encode compound document. See previous exception for cause of failure.',
203-
0,
204-
$ex,
205-
);
206-
}
182+
$this->prepareEncoder();
183+
184+
$this->encoder->withEncodeOptions($options | JSON_THROW_ON_ERROR);
185+
186+
return $this->encode();
207187
}
208188

209189
/**

0 commit comments

Comments
 (0)