-
Notifications
You must be signed in to change notification settings - Fork 225
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
fix(deps): update misc non-major dependencies #366
base: master
Are you sure you want to change the base?
Conversation
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: gwy/templates/go.mod.tmpl
|
a0fdeb9
to
c09f4b5
Compare
c09f4b5
to
64c72c1
Compare
5d43ff1
to
8ab6539
Compare
4fb0a31
to
14b68ec
Compare
14b68ec
to
2d0a6b3
Compare
2d0a6b3
to
aa1c8b3
Compare
aa1c8b3
to
602f8df
Compare
602f8df
to
b65d74c
Compare
039c186
to
c103e0e
Compare
c103e0e
to
e7e2b2f
Compare
ae3b2f3
to
a467757
Compare
a171bfe
to
955bbcd
Compare
2d2fefd
to
60742a8
Compare
826d920
to
6e17e8d
Compare
6e17e8d
to
be068a2
Compare
|
a0f9dbe
to
1310f39
Compare
9bd79e3
to
6c5ca29
Compare
64bf178
to
8f8a13c
Compare
3c4995b
to
998186b
Compare
998186b
to
e1e0e04
Compare
aab1d64
to
b215849
Compare
c63a6f7
to
8b07ee5
Compare
8b07ee5
to
45b1f84
Compare
45b1f84
to
ed4aa83
Compare
ed4aa83
to
af3e120
Compare
af3e120
to
a86c3ef
Compare
a86c3ef
to
5402c6f
Compare
5402c6f
to
b090a86
Compare
This PR contains the following updates:
0.9.1
->0.10.1
v1.5.1
->v1.5.2
v1.9.0
->v1.14.0
v1.9.0
->v1.9.3
v1.14.0
->v1.19.0
v1.8.1
->v1.10.0
v1.2.0
->v1.5.1
v1.28.1
->v1.36.1
v1.28.1
->v1.36.1
1.12.3
->1.12.4
1.4.2
->1.5.0
5.3.2
->5.3.3
3.4.0
->3.6.0
1.4.1
->1.5.0
v3.21.2
->v3.21.4
1.138.0
->1.181.2
Release Notes
envoyproxy/protoc-gen-validate (envoyproxy/protoc-gen-validate)
v0.10.1
Compare Source
What's Changed
New Contributors
Full Changelog: bufbuild/protoc-gen-validate@v0.10.0...v0.10.1
v0.10.0
Compare Source
What's Changed
New Contributors
Dependency Changes
Full Changelog: bufbuild/protoc-gen-validate@v0.9.1...v0.10.0
gorilla/handlers (github.com/gorilla/handlers)
v1.5.2
Compare Source
What's Changed
New Contributors
Full Changelog: gorilla/handlers@v1.5.1...v1.5.2
otiai10/copy (github.com/otiai10/copy)
v1.14.0
: Concurrency OptionCompare Source
v1.12.0
Compare Source
v1.11.0
: AddOnError
optionCompare Source
so that users can suppress specific errors.
v1.10.0
Compare Source
sirupsen/logrus (github.com/sirupsen/logrus)
v1.9.3
Compare Source
Full Changelog: sirupsen/logrus@v1.9.2...v1.9.3
v1.9.2
Compare Source
Full Changelog: sirupsen/logrus@v1.9.1...v1.9.2
v1.9.1
Compare Source
What's Changed
New Contributors
Full Changelog: sirupsen/logrus@v1.9.0...v1.9.1
spf13/viper (github.com/spf13/viper)
v1.19.0
Compare Source
What's Changed
Bug Fixes 🐛
Dependency Updates ⬆️
Other Changes
New Contributors
Full Changelog: spf13/viper@v1.18.1...v1.19.0
v1.18.2
Compare Source
tl;dr Skip 1.18.0 and 1.18.1 and upgrade to this version instead.
This release fixes a regression that appears in rare circumstances when using
Unmarshal
orUnmarshalExact
to decode values onto pointers with multiple indirection (eg. pointer to a pointer, etc). The change was introduced in 1.18.0 as a means to resolve a long-standing bug when decoding environment variables to structs.The feature is now disabled by default and can be enabled using the
viper_bind_struct
build tag. It's also considered experimental at this point, so breaking changes may be introduced in the future.What's Changed
Bug Fixes 🐛
Full Changelog: spf13/viper@v1.18.1...v1.18.2
v1.18.1
Compare Source
What's Changed
Bug Fixes 🐛
Full Changelog: spf13/viper@v1.18.0...v1.18.1
v1.18.0
Compare Source
Major changes
Highlighting some of the changes for better visibility.
Please share your feedback in the Discussion forum. Thanks! ❤️
AutomaticEnv
works withUnmarshal
Previously, environment variables that weren't bound manually or had no defaults could not be mapped by
Unmarshal
. (The problem is explained in details in this issue: #761)#1429 introduced a solution that solves that issue.
What's Changed
Enhancements 🚀
Bug Fixes 🐛
Dependency Updates ⬆️
Other Changes
New Contributors
Full Changelog: spf13/viper@v1.17.0...v1.18.0
v1.17.0
Compare Source
Major changes
Highlighting some of the changes for better visibility.
Please share your feedback in the Discussion forum. Thanks! ❤️
Minimum Go version: 1.19
Viper now requires Go 1.19
This change ensures we can stay up to date with modern practices and dependencies.
log/slog
support [BREAKING]Viper v1.11.0 added an experimental
Logger
interface to allow custom implementations (besides jwalterweatherman).In addition, it also exposed an experimental
WithLogger
function allowing to set a custom logger.This release deprecates that interface in favor of log/slog released in Go 1.21.
To preserve backwards compatibility with older Go versions, prior to Go 1.21 Viper accepts a *golang.org/x/exp/slog.Logger.
The experimental flag is removed.
New finder implementation [BREAKING]
As of this release, Viper uses a new library to look for files, called locafero.
The new library is better covered by tests and has been built from scratch as a general purpose file finder library.
The implementation is experimental and is hidden behind a
finder
build tag.What's Changed
Exciting New Features 🎉
Enhancements 🚀
strings.Cut
by @scop in https://github.com/spf13/viper/pull/1650Breaking Changes 🛠
Dependency Updates ⬆️
Other Changes
New Contributors
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.