From 1defb283b131d0813c8e969100db235839aca038 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Tue, 20 Feb 2024 11:56:56 -0800 Subject: [PATCH 1/3] Release v1.27.0 --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5f78d19d..ee3467ad9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.27.0 (20 Feb 2024) +Enhancements: +* [#1378][]: Add `WithLazy` method for `SugaredLogger`. +* [#1406][]: Add `Log`, `Logw`, `Logln` methods for `SugaredLogger`. +* [#1416][]: Add `WithPanicHook` option for testing panic logs. + +Thanks to @defval, @arxeiss, and @MKrupauskas for their contributions to this release. + +[#1378]: https://github.com/uber-go/zap/pull/1378 +[#1406]: https://github.com/uber-go/zap/pull/1406 +[#1416]: https://github.com/uber-go/zap/pull/1416 + ## 1.26.0 (14 Sep 2023) Enhancements: * [#1297][]: Add Dict as a Field. From 2760225a9e3e157d1e69d3bb4ebfe2109003984e Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Tue, 20 Feb 2024 12:44:52 -0800 Subject: [PATCH 2/3] Add entry on zaptest.NewTestingWriter --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee3467ad9..f28f6fe23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## 1.27.0 (20 Feb 2024) Enhancements: * [#1378][]: Add `WithLazy` method for `SugaredLogger`. +* [#1399][]: zaptest: Add `NewTestingWriter` for customizing TestingWriter with more flexibility than `NewLogger`. * [#1406][]: Add `Log`, `Logw`, `Logln` methods for `SugaredLogger`. * [#1416][]: Add `WithPanicHook` option for testing panic logs. -Thanks to @defval, @arxeiss, and @MKrupauskas for their contributions to this release. +Thanks to @defval, @dimmo, @arxeiss, and @MKrupauskas for their contributions to this release. [#1378]: https://github.com/uber-go/zap/pull/1378 [#1406]: https://github.com/uber-go/zap/pull/1406 From 8dc2c0dc2cc05976149f9521f165ba4bfc0c6877 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Tue, 20 Feb 2024 12:51:57 -0800 Subject: [PATCH 3/3] Update CHANGELOG.md Co-authored-by: Abhinav Gupta --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f28f6fe23..6d6cd5f4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Enhancements: Thanks to @defval, @dimmo, @arxeiss, and @MKrupauskas for their contributions to this release. [#1378]: https://github.com/uber-go/zap/pull/1378 +[#1399]: https://github.com/uber-go/zap/pull/1399 [#1406]: https://github.com/uber-go/zap/pull/1406 [#1416]: https://github.com/uber-go/zap/pull/1416