Skip to content

Commit 7de5c8d

Browse files
committed
Update release notes wrt fix for #90 (by #87)
1 parent f29e03e commit 7de5c8d

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

datetime/src/main/java/com/fasterxml/jackson/datatype/jsr310/DecimalUtils.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,13 @@
2323
* Utilities to aid in the translation of decimal types to/from multiple parts.
2424
*
2525
* @author Nick Williams
26-
* @since 2.2.0
26+
* @since 2.2
2727
*/
2828
public final class DecimalUtils
2929
{
3030
private static final BigDecimal ONE_BILLION = new BigDecimal(1_000_000_000L);
3131

32-
private DecimalUtils()
33-
{
34-
throw new RuntimeException("DecimalUtils cannot be instantiated.");
35-
}
32+
private DecimalUtils() { }
3633

3734
public static String toDecimal(long seconds, int nanoseconds)
3835
{

release-notes/CREDITS-2.x

+10-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,14 @@ Sonny Gill (sonnygill@github)
3838
(2.9.6)
3939

4040
Adrian Palanques (devdevx@github)
41-
#78: Year deserialization ignores `@JsonFormat` pattern
41+
* Reported #78: (datetime) Year deserialization ignores `@JsonFormat` pattern
4242
(2.9.7)
43+
44+
Andriy Plokhotnyuk (plokhotnyuk@github)
45+
* Reported #90 (datetime): Performance issue with malicious `BigDecimal` input,
46+
`InstantDeserializer`, `DurationDeserializer`
47+
(2.9.8)
48+
49+
Todd Jonker (toddjonker@github)
50+
* Contributed fix for #90 (see above)
51+
(2.9.8)

release-notes/VERSION-2.x

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ Modules:
88
=== Releases ===
99
------------------------------------------------------------------------
1010

11+
2.9.8 (not yet released)
12+
13+
#90 (datetime): Performance issue with malicious `BigDecimal` input,
14+
`InstantDeserializer`, `DurationDeserializer`
15+
(reported by Andriy P, fix contributed by Todd J)
16+
1117
2.9.7 (19-Sep-2018)
1218

1319
#78: Year deserialization ignores `@JsonFormat` pattern

0 commit comments

Comments
 (0)