summaryrefslogtreecommitdiff
path: root/ReleaseNotes.md
diff options
context:
space:
mode:
Diffstat (limited to 'ReleaseNotes.md')
-rw-r--r--ReleaseNotes.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/ReleaseNotes.md b/ReleaseNotes.md
index f71967c..493252a 100644
--- a/ReleaseNotes.md
+++ b/ReleaseNotes.md
@@ -9,6 +9,15 @@
poisons future Decodes. This is something that `encoding/json`
supports.
+ - Encoder: Fixes a bug where if an encode error is encountered, all
+ future Encode calls will fail. Reusing an Encoder is something
+ that `encoding/json` supports.
+
+ - compat/json.Encoder: Now buffers the output, to avoid partial
+ writes if an encode error is encountered. This matches the
+ behavior of `encoding/json`. For memory consumption reasons, the
+ native lowmemjson Encoder still does not buffer.
+
# v0.3.4 (2023-02-05)
Theme: Fix compilation with Go 1.20