File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
src/main/java/tools/jackson/core/json Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,13 @@ JSON library.
15
15
=== Releases ===
16
16
------------------------------------------------------------------------
17
17
18
- 3.0.0-rc5 (18-Jul-2025)
18
+ 3.0.0-rc7 (not yet released)
19
+
20
+ * REVERT #1200: Change `JsonWriteFeature.ESCAPE_FORWARD_SLASHES` default
21
+ to `true` for 3.0
22
+ (that is, default remains `false` same as in 2.x)
23
+
24
+ 3.0.0-rc6 (18-Jul-2025)
19
25
20
26
#1434: Change `JsonParser.getNumberType()` to return `null` instead of
21
27
throwing exception in 3.0
@@ -59,7 +65,8 @@ No changes since 3.0.0-rc1
59
65
#793: Rename "com.fasterxml.jackson" -> "tools.jackson"
60
66
#1090: Remove `BufferRecyclers.SYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS`
61
67
#1125: Remove `TokenStreamFactory.Feature.USE_THREAD_LOCAL_FOR_BUFFER_RECYCLING`
62
- #1200: Change `JsonWriteFeature.ESCAPE_FORWARD_SLASHES` default to `true` for 3.0
68
+ (REVERTED in 3.0.0-rc7: #1200: Change `JsonWriteFeature.ESCAPE_FORWARD_SLASHES`
69
+ default to `true` for 3.0)
63
70
#1231: Enable Fast Floating-Point reading by default in 3.0
64
71
#1233: Lower default `maxNestingDepth` of `StreamReadConstraints` /
65
72
`StreamWriteConstraints` to 500 in 3.0
Original file line number Diff line number Diff line change @@ -59,9 +59,10 @@ public enum JsonWriteFeature
59
59
COMBINE_UNICODE_SURROGATES_IN_UTF8 (true ),
60
60
61
61
/**
62
- * Feature that specifies whether {@link JsonGenerator} should escape forward slashes.
62
+ * Feature that specifies whether {@link JsonGenerator} should escape forward slashes
63
+ * (unless overridden by custom escaping (see {@link tools.jackson.core.io.CharacterEscapes})).
63
64
* <p>
64
- * Feature is enabled by default in Jackson 3.0 (was disabled in 2.x) .
65
+ * Feature is disabled by default.
65
66
*/
66
67
ESCAPE_FORWARD_SLASHES (true ),
67
68
You can’t perform that action at this time.
0 commit comments