-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update all minor, patch, or digest dependencies on go #82
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
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all-minor-patch-or-digest-dependencies-on-go
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
fix(deps): update all minor, patch, or digest dependencies on go #82
renovate
wants to merge
1
commit into
main
from
renovate/all-minor-patch-or-digest-dependencies-on-go
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
9eabc67
to
839082a
Compare
4224489
to
459926d
Compare
55cd699
to
02bb41e
Compare
eb87547
to
b58958c
Compare
b58958c
to
003d906
Compare
8b78761
to
fdf3811
Compare
f813f3b
to
624983f
Compare
624983f
to
a9cda09
Compare
a9cda09
to
f8837be
Compare
2b0a5f7
to
7ebc558
Compare
894cda6
to
25deac6
Compare
cb16829
to
7cf3a1b
Compare
c07f0e9
to
065c4c7
Compare
065c4c7
to
cb07329
Compare
996a28b
to
ec12f74
Compare
7544f98
to
3d0440b
Compare
3d0440b
to
4cd163f
Compare
89f95da
to
8c34cfc
Compare
242dc4e
to
58c34df
Compare
9434f01
to
9cfda80
Compare
efcf7f7
to
25fb1e5
Compare
25fb1e5
to
26bf73e
Compare
26bf73e
to
cfffbc1
Compare
cfffbc1
to
ef57bba
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:
v0.12.0
->v0.12.1
v1.7.0
->v1.8.0
v1.2.4
->v1.4.2
v1.2.3
->v1.3.0
v10.13.0
->v10.26.0
v1.5.3
->v1.5.4
v0.5.9
->v0.7.0
v4.10.2
->v4.13.3
v1.15.1
->v1.22.0
v9.0.4
->v9.8.0
v0.12.2
->v0.16.0
v1.7.0
->v1.9.1
v1.24.0
->v1.27.0
v0.2.0
->v0.13.0
04be3eb
->7835f81
v1.3.0
->v1.4.0
Release Notes
andreykaipov/goobs (github.com/andreykaipov/goobs)
v0.12.1
: for obs websocket v5.1.0Compare Source
Release v0.12.1 contains several CI improvements but also PR #54 that fixes concurrent writes to the OBS websocket server. 🎉
What's Changed
New Contributors
Full Changelog: andreykaipov/goobs@v0.12.0...v0.12.1
creasty/defaults (github.com/creasty/defaults)
v1.8.0
Compare Source
go-logr/logr (github.com/go-logr/logr)
v1.4.2
Compare Source
What's Changed
Dependencies:
Full Changelog: go-logr/logr@v1.4.1...v1.4.2
v1.4.1
Compare Source
What's Changed
Full Changelog: go-logr/logr@v1.4.0...v1.4.1
v1.4.0
Compare Source
This release dramatically improves interoperability with Go's
log/slog
package. In particular,logr.NewContext
andlogr.NewContextWithSlogLogger
use the same context key, which allowslogr.FromContext
andlogr.FromContextAsSlogLogger
to returnlogr.Logger
or*slog.Logger
respectively, including transparently converting each to the other as needed.Functions
logr/slogr.NewLogr
andlogr/slogr.ToSlogHandler
have been superceded bylogr.FromSlogHandler
andlogr.ToSlogHandler
respectively, and typelogr/slogr.SlogSink
has been superceded bylogr.SlogSink
. All of the old names inlogr/slogr
remain, for compatibility.Package
logr/funcr
now supportslogr.SlogSink
, meaning that it's output passes all but one of the Slog conformance tests (that exception being thatfuncr
handles the timestamp itself).Users who have a
logr.Logger
and need a*slog.Logger
can callslog.New(logr.ToSlogHandler(...))
and all output will go through the same stack.Users who have a
*slog.Logger
orslog.Handler
can 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.0
Compare Source
This release adds support for slog in a new, self-contained
logr/slogr
package. Implementers of alogr.LogSink
are encouraged, but not required, to extend their implementation to improve the quality of log output coming from aslog
API call.Breaking change: the call depth for
LogSink.Enabled
when called viaLogger.Enabled
was fixed to be the same as for other call paths. Implementers of aLogSink
who 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
go-logr/zapr (github.com/go-logr/zapr)
v1.3.0
Compare Source
This release adds support for slog. zapr implements
slogr.SlogSink
and therefore can be used throughslogr.NewSlogHandler
as backend for slog.What's Changed
New Contributors
Full Changelog: go-logr/zapr@v1.2.4...v1.3.0
v1.2.4
Compare Source
What's Changed
New Contributors
Full Changelog: go-logr/zapr@v1.2.3...v1.2.4
go-playground/validator (github.com/go-playground/validator/v10)
v10.26.0
Compare Source
What's Changed
Base64RawURL
usage by @196Ikuchil in https://github.com/go-playground/validator/pull/1336New Contributors
Full Changelog: go-playground/validator@v10.25.0...v10.26.0
v10.25.0
: Release 10.25.0Compare Source
What's Changed
New Contributors
Full Changelog: go-playground/validator@v10.24.0...v10.25.0
v10.24.0
: Release 10.24.0Compare Source
What's Changed
The MSGV(Minimum Supported Go Version) has been bumped to v1.20 to address a security issues in the gaoling
net
package.Full Changelog: go-playground/validator@v10.23.0...v10.24.0
v10.23.0
: Release 10.23.0Compare Source
What's Changed
New Contributors
Full Changelog: go-playground/validator@v10.22.1...v10.23.0
v10.22.1
: Release 10.22.1Compare Source
What's Changed
New Contributors
Full Changelog: go-playground/validator@v10.22.0...v10.22.1
v10.22.0
: Release 10.22.0Compare Source
v10.21.0
: Release 10.21.0Compare Source
What's Changed
New Contributors
Full Changelog: go-playground/validator@v10.20.0...v10.21.0
v10.20.0
: Release 10.20.0Compare Source
What's Changed
New Contributors
Full Changelog: go-playground/validator@v10.19.0...v10.20.0
[
v10.19.0
](https:/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.
This PR was generated by Mend Renovate. View the repository job log.