forked from whitesource/log4j-detect-distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Update Mend: high confidence minor and patch dependency updates #4
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
Open
mend-for-github-com
wants to merge
1
commit into
main
Choose a base branch
from
whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+52
−14
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3e18190 to
16f21dc
Compare
16f21dc to
26910cf
Compare
26910cf to
6cdc363
Compare
6cdc363 to
4f32393
Compare
9f33c51 to
ac47221
Compare
9c2b072 to
1d62a69
Compare
1d62a69 to
64f21fe
Compare
Author
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
64f21fe to
d561bd3
Compare
e001bf6 to
d144256
Compare
703a6c1 to
e242be1
Compare
e242be1 to
65a45e3
Compare
65a45e3 to
15df6a3
Compare
69b2bf1 to
ff5af30
Compare
ff5af30 to
29cf2b6
Compare
29cf2b6 to
94f44e0
Compare
17a06bd to
b0ac4af
Compare
e19993a to
a2184cc
Compare
295ae89 to
c48a310
Compare
bfa17dc to
b9f56ce
Compare
b85cc41 to
eb061fb
Compare
a28900e to
df9aab6
Compare
dbf2015 to
636a568
Compare
a7743d7 to
a4875ed
Compare
78073ee to
3d6dca1
Compare
d533035 to
1a23528
Compare
1a23528 to
cce01ba
Compare
87dfbb8 to
a275172
Compare
13a49a0 to
9d0fbec
Compare
8156b8a to
f84d37a
Compare
02d79f5 to
18c7a91
Compare
18c7a91 to
cf8366b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.2.2->v1.4.3v1.2.2->v1.3.0v1.2.1->v1.2.3v1.5.0->v1.6.0v1.26.1->v1.34.0v1.7.0->v1.11.1Release Notes
go-logr/logr (github.com/go-logr/logr)
v1.4.3Compare Source
Minor release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.4.2...v1.4.3
v1.4.2Compare Source
What's Changed
Dependencies:
Full Changelog: go-logr/logr@v1.4.1...v1.4.2
v1.4.1Compare Source
What's Changed
Full Changelog: go-logr/logr@v1.4.0...v1.4.1
v1.4.0Compare Source
This release dramatically improves interoperability with Go's
log/slogpackage. In particular,logr.NewContextandlogr.NewContextWithSlogLoggeruse the same context key, which allowslogr.FromContextandlogr.FromContextAsSlogLoggerto returnlogr.Loggeror*slog.Loggerrespectively, including transparently converting each to the other as needed.Functions
logr/slogr.NewLograndlogr/slogr.ToSlogHandlerhave been superceded bylogr.FromSlogHandlerandlogr.ToSlogHandlerrespectively, and typelogr/slogr.SlogSinkhas been superceded bylogr.SlogSink. All of the old names inlogr/slogrremain, for compatibility.Package
logr/funcrnow supportslogr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being thatfuncrhandles the timestamp itself).Users who have a
logr.Loggerand need a*slog.Loggercan callslog.New(logr.ToSlogHandler(...))and all output will go through the same stack.Users who have a
*slog.Loggerorslog.Handlercan calllogr.FromSlogHandler(...)and all output will go through the same stack.What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.3.0...v1.4.0
v1.3.0Compare Source
This release adds support for slog in a new, self-contained
logr/slogrpackage. Implementers of alogr.LogSinkare encouraged, but not required, to extend their implementation to improve the quality of log output coming from aslogAPI call.Breaking change: the call depth for
LogSink.Enabledwhen called viaLogger.Enabledwas fixed to be the same as for other call paths. Implementers of aLogSinkwho have worked around this bug will need to remove their workarounds.Security best practices were improved. Only Go versions >= 1.18 are supported by this release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.2.4...v1.3.0
v1.2.4Compare Source
This is a collection of small bugfixes and documentation updates.
NOTE: A change (#166) which was thought to be compatible seems to be a breaking change. In particular, one used to be able to differentiate the result of
Discard()fromLogger{}. After this change, those are the same. We are considering how to address this, but do not currently plan to revert this change. Apologies!What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.2.3...v1.2.4
v1.2.3Compare Source
This is a minor release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.2.2...v1.2.3
go-logr/zapr (github.com/go-logr/zapr)
v1.3.0Compare Source
This release adds support for slog. zapr implements
slogr.SlogSinkand therefore can be used throughslogr.NewSlogHandleras backend for slog.What's Changed
New Contributors
Full Changelog: go-logr/zapr@v1.2.4...v1.3.0
v1.2.4Compare Source
What's Changed
New Contributors
Full Changelog: go-logr/zapr@v1.2.3...v1.2.4
v1.2.3Compare Source
What's Changed
Full Changelog: go-logr/zapr@v1.2.2...v1.2.3
go-logr/zerologr (github.com/go-logr/zerologr)
v1.2.3Compare Source
v1.2.2Compare Source
gookit/color (github.com/gookit/color)
v1.6.0Compare Source
Change Log
Fixed
d4a4cd9bdf44896de7584Feature
d95f213Update
e5329354ac4e07c5db0d0173325af46f52eOther
62dd3d2b79b464ecb557091529f03df6d418fa89549c0ef294af2bdd44243ab72fbeaf0c83bae1bc67c423187d9d7e962bf6fd20f18d84cb7e68fa7532f1f3c76538d7eaf97afedc17407ab70b4bcc6db992eecf90a1068860732e5a49561db128cf5eae38c370e227c34c15ef14a7b8cc45966fa478910b1dc4cNew Contributors
Full Changelog: gookit/color@v1.5.4...v1.6.0
v1.5.4Compare Source
Change Log
Fixed
74bb513Feature
fe2b2519027b9dOther
a43d13713c3e97264b64fdd23b120354c4a7da3fe3v1.5.3Compare Source
Change Log
Feature
6037df8Other
3cee7ac64f6508b564cabc0a8b52v1.5.2Compare Source
Change Log
Refactor
efc6d3fFixed
bf93227Update
daca06fOther
ab29a708e41e71895e8822f5b36df30c873e12eb6fd305f5f0ec8e781823e0cd0fe513Full Changelog: gookit/color@v1.5.1...v1.5.2
v1.5.1Compare Source
Change Log
Feature
85b9eb0Update
fb141c4d5924d195811afbef594fOther
ce925d0ef040583ec66012d784a3rs/zerolog (github.com/rs/zerolog)
v1.34.0Compare Source
v1.33.0Compare Source
v1.32.0Compare Source
v1.31.0Compare Source
v1.30.0Compare Source
v1.29.1Compare Source
v1.29.0Compare Source
v1.28.0Compare Source
v1.27.0Compare Source
stretchr/testify (github.com/stretchr/testify)
v1.11.1Compare Source
This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (
String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.What's Changed
Full Changelog: stretchr/testify@v1.11.0...v1.11.1
v1.11.0Compare Source
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
Fixes
Documentation, Build & CI
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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.