-
Notifications
You must be signed in to change notification settings - Fork 64
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 module github.com/spf13/viper to v1.17.0 #956
Merged
Conversation
This file contains 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
✅ Deploy Preview for polite-licorice-3db33c canceled.
|
Codecov Report
@@ Coverage Diff @@
## main #956 +/- ##
=======================================
Coverage 72.62% 72.62%
=======================================
Files 28 28
Lines 2857 2857
=======================================
Hits 2075 2075
Misses 685 685
Partials 97 97 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
renovate
bot
force-pushed
the
renovate/github.com-spf13-viper-1.x
branch
from
October 6, 2023 14:47
f06a50d
to
9b1fef9
Compare
Merged
toddbaert
pushed a commit
that referenced
this pull request
Oct 12, 2023
🤖 I have created a release *beep* *boop* --- <details><summary>flagd: 0.6.7</summary> ## [0.6.7](flagd/v0.6.6...flagd/v0.6.7) (2023-10-12) ### 🐛 Bug Fixes * **deps:** update module github.com/open-feature/flagd/core to v0.6.6 ([#916](#916)) ([1f80e4d](1f80e4d)) * **deps:** update module github.com/open-feature/go-sdk-contrib/providers/flagd to v0.1.17 ([#759](#759)) ([a2a2c3c](a2a2c3c)) * **deps:** update module github.com/spf13/viper to v1.17.0 ([#956](#956)) ([31d015d](31d015d)) * **deps:** update module go.uber.org/zap to v1.26.0 ([#917](#917)) ([e57e206](e57e206)) ### 🧹 Chore * docs rework ([#927](#927)) ([27b3193](27b3193)) ### 📚 Documentation * fixed typos and linting issues ([#957](#957)) ([0bade57](0bade57)) </details> <details><summary>flagd-proxy: 0.2.12</summary> ## [0.2.12](flagd-proxy/v0.2.11...flagd-proxy/v0.2.12) (2023-10-12) ### 🐛 Bug Fixes * **deps:** update module github.com/open-feature/flagd/core to v0.6.6 ([#916](#916)) ([1f80e4d](1f80e4d)) * **deps:** update module github.com/spf13/viper to v1.17.0 ([#956](#956)) ([31d015d](31d015d)) * **deps:** update module go.uber.org/zap to v1.26.0 ([#917](#917)) ([e57e206](e57e206)) </details> <details><summary>core: 0.6.7</summary> ## [0.6.7](core/v0.6.6...core/v0.6.7) (2023-10-12) ### 🐛 Bug Fixes * **deps:** update module github.com/prometheus/client_golang to v1.17.0 ([#939](#939)) ([9065cba](9065cba)) * **deps:** update module github.com/rs/cors to v1.10.1 ([#946](#946)) ([1c39862](1c39862)) * **deps:** update module go.uber.org/zap to v1.26.0 ([#917](#917)) ([e57e206](e57e206)) * **deps:** update module golang.org/x/mod to v0.13.0 ([#952](#952)) ([be61450](be61450)) * **deps:** update module golang.org/x/sync to v0.4.0 ([#949](#949)) ([faa24a6](faa24a6)) * **deps:** update module google.golang.org/grpc to v1.58.1 ([#915](#915)) ([06d95de](06d95de)) * **deps:** update module google.golang.org/grpc to v1.58.2 ([#928](#928)) ([90f1878](90f1878)) * **deps:** update module google.golang.org/grpc to v1.58.3 ([#960](#960)) ([fee1558](fee1558)) * **deps:** update opentelemetry-go monorepo ([#943](#943)) ([e7cee41](e7cee41)) * erroneous warning about prop overwrite ([#924](#924)) ([673b76a](673b76a)) ### ✨ New Features * add `$flagd.timestamp` to json evaluator ([#958](#958)) ([a1b04e7](a1b04e7)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.16.0
->v1.17.0
Release Notes
spf13/viper (github.com/spf13/viper)
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
Full Changelog: spf13/viper@v1.16.0...v1.17.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.