projectsyn / lieutenant-operator

The Project Syn Inventory API Operator
https://docs.syn.tools/lieutenant-operator/
BSD 3-Clause "New" or "Revised" License
3 stars 1 forks source link

Update module go.uber.org/zap to v1.27.0 - autoclosed #243

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
go.uber.org/zap v1.21.0 -> v1.27.0 age adoption passing confidence

Release Notes

uber-go/zap (go.uber.org/zap) ### [`v1.27.0`](https://togithub.com/uber-go/zap/releases/tag/v1.27.0) [Compare Source](https://togithub.com/uber-go/zap/compare/v1.26.0...v1.27.0) 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](https://togithub.com/defval), [@​dimmo](https://togithub.com/dimmo), [@​arxeiss](https://togithub.com/arxeiss), and [@​MKrupauskas](https://togithub.com/MKrupauskas) for their contributions to this release. [#​1378]: https://togithub.com/uber-go/zap/pull/1378 [#​1399]: https://togithub.com/uber-go/zap/pull/1399 [#​1406]: https://togithub.com/uber-go/zap/pull/1406 [#​1416]: https://togithub.com/uber-go/zap/pull/1416 ### [`v1.26.0`](https://togithub.com/uber-go/zap/releases/tag/v1.26.0) [Compare Source](https://togithub.com/uber-go/zap/compare/v1.25.0...v1.26.0) Enhancements: - [#​1297][]: Add `Dict` as a `Field`. - [#​1319][]: Add `WithLazy` method to `Logger` which lazily evaluates the structured context. - [#​1350][]: String encoding is much (~50%) faster now. Thanks to [@​hhk7734](https://togithub.com/hhk7734), [@​jquirke](https://togithub.com/jquirke), [@​cdvr1993](https://togithub.com/cdvr1993) for their contributions to this release. [#​1297]: https://togithub.com/uber-go/zap/pull/1297 [#​1319]: https://togithub.com/uber-go/zap/pull/1319 [#​1350]: https://togithub.com/uber-go/zap/pull/1350 ### [`v1.25.0`](https://togithub.com/uber-go/zap/releases/tag/v1.25.0) [Compare Source](https://togithub.com/uber-go/zap/compare/v1.24.0...v1.25.0) This release contains several improvements including performance, API additions, and two new experimental packages whose APIs are unstable and may change in the future. Enhancements: - [#​1246][]: Add `zap/exp/zapslog` package for integration with slog. - [#​1273][]: Add `Name` to `Logger` which returns the Logger's name if one is set. - [#​1281][]: Add `zap/exp/expfield` package which contains helper methods `Str` and `Strs` for constructing String-like zap.Fields. - [#​1310][]: Reduce stack size on `Any`. Thanks to [@​knight42](https://togithub.com/knight42), [@​dzakaammar](https://togithub.com/dzakaammar), [@​bcspragu](https://togithub.com/bcspragu), and [@​rexywork](https://togithub.com/rexywork) for their contributions to this release. [#​1246]: https://togithub.com/uber-go/zap/pull/1246 [#​1273]: https://togithub.com/uber-go/zap/pull/1273 [#​1281]: https://togithub.com/uber-go/zap/pull/1281 [#​1310]: https://togithub.com/uber-go/zap/pull/1310 ### [`v1.24.0`](https://togithub.com/uber-go/zap/releases/tag/v1.24.0) [Compare Source](https://togithub.com/uber-go/zap/compare/v1.23.0...v1.24.0) Enhancements: - [#​1148][]: Add `Level` to both `Logger` and `SugaredLogger` that reports the current minimum enabled log level. - [#​1185][]: `SugaredLogger` turns errors to zap.Error automatically. Thanks to [@​Abirdcfly](https://togithub.com/Abirdcfly), [@​craigpastro](https://togithub.com/craigpastro), [@​nnnkkk7](https://togithub.com/nnnkkk7), and [@​sashamelentyev](https://togithub.com/sashamelentyev) for their contributions to this release. [#​1148]: https://togithub.com/uber-go/zap/pull/1148 [#​1185]: https://togithub.com/uber-go/zap/pull/1185 ### [`v1.23.0`](https://togithub.com/uber-go/zap/releases/tag/v1.23.0) [Compare Source](https://togithub.com/uber-go/zap/compare/v1.22.0...v1.23.0) Enhancements: - [#​1147][]: Add a `zapcore.LevelOf` function to determine the level of a `LevelEnabler` or `Core`. - [#​1155][]: Add `zap.Stringers` field constructor to log arrays of objects that implement `String() string`. [#​1147]: https://togithub.com/uber-go/zap/pull/1147 [#​1155]: https://togithub.com/uber-go/zap/pull/1155 ### [`v1.22.0`](https://togithub.com/uber-go/zap/releases/tag/v1.22.0) [Compare Source](https://togithub.com/uber-go/zap/compare/v1.21.0...v1.22.0) Enhancements: - [#​1071][]: Add `zap.Objects` and `zap.ObjectValues` field constructors to log arrays of objects. With these two constructors, you don't need to implement `zapcore.ArrayMarshaler` for use with `zap.Array` if those objects implement `zapcore.ObjectMarshaler`. - [#​1079][]: Add `SugaredLogger.WithOptions` to build a copy of an existing `SugaredLogger` with the provided options applied. - [#​1080][]: Add `*ln` variants to `SugaredLogger` for each log level. These functions provide a string joining behavior similar to `fmt.Println`. - [#​1088][]: Add `zap.WithFatalHook` option to control the behavior of the logger for `Fatal`-level log entries. This defaults to exiting the program. - [#​1108][]: Add a `zap.Must` function that you can use with `NewProduction` or `NewDevelopment` to panic if the system was unable to build the logger. - [#​1118][]: Add a `Logger.Log` method that allows specifying the log level for a statement dynamically. Thanks to [@​cardil](https://togithub.com/cardil), [@​craigpastro](https://togithub.com/craigpastro), [@​sashamelentyev](https://togithub.com/sashamelentyev), [@​shota3506](https://togithub.com/shota3506), and [@​zhupeijun](https://togithub.com/zhupeijun) for their contributions to this release. [#​1071]: https://togithub.com/uber-go/zap/pull/1071 [#​1079]: https://togithub.com/uber-go/zap/pull/1079 [#​1080]: https://togithub.com/uber-go/zap/pull/1080 [#​1088]: https://togithub.com/uber-go/zap/pull/1088 [#​1108]: https://togithub.com/uber-go/zap/pull/1108 [#​1118]: https://togithub.com/uber-go/zap/pull/1118

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.