Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exp: Release v0.3.0 #1465

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions exp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@ 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).

## 0.3.0 - 22 Oct 2024

Breaking changes:
* [#1339][]: zapslog: Drop `HandlerOptions` in favor of `HandlerOption`,
which uses the functional options pattern.
* [#1339][]: zapslog: Rename `AddSource` option to `WithCaller`.

Enhancements:
* [#1339][]: zapslog: Record stack traces for error logs or higher.
The new `AddStackAt` option changes this level.

Bug fixes:
* [#1344][], [#1408][]: zapslog: Comply fully with `slog.Handler` contract.
This includes ignoring empty `Attr`s, inlining `Group`s with empty names,
and omitting groups with no attributes.

[#1344]: https://github.com/uber-go/zap/pull/1344
[#1339]: https://github.com/uber-go/zap/pull/1339
[#1408]: https://github.com/uber-go/zap/pull/1408

Thanks to @zekth and @arukiidou for their contributions to this release.

## 0.2.0 - 9 Sep 2023

Breaking changes:
Expand Down
Loading