You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release v1.20.0 of Zap with a couple new features for customizing
the JSON encoder. Namely,
- support skipping newlines between log statements (#989)
- support changing the reflection JSON encoder (#1039)
Refs GO-1085
Copy file name to clipboardexpand all lines: CHANGELOG.md
+16-4
Original file line number
Diff line number
Diff line change
@@ -3,20 +3,32 @@ All notable changes to this project will be documented in this file.
3
3
4
4
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
6
-
## Unreleased
6
+
## 1.20.0 (4 Jan 2022)
7
7
8
8
Enhancements:
9
-
*[#989][]: `zapcore.EncoderConfig` provides a flag `SkipLineEnding` that can be used to skip adding a newline character to logs. Thanks to @lruggieri.
9
+
*[#989][]: Add `EncoderConfig.SkipLineEnding` flag to disable adding newline
10
+
characters between log statements.
11
+
*[#1039][]: Add `EncoderConfig.NewReflectedEncoder` field to customize JSON
12
+
encoding of reflected log fields.
10
13
11
14
Bugfixes:
12
-
*[#1011][]: JSON: Fix inaccurate precision when encoding complex64.
15
+
*[#1011][]: Fix inaccurate precision when encoding complex64 as JSON.
16
+
*[#554][], [#1017][]: Close JSON namespaces opened in `MarshalLogObject`
17
+
methods when the methods return.
18
+
*[#1033][]: Avoid panicking in Sampler core if `thereafter` is zero.
0 commit comments