Update all dependencies #10
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/all"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
v1.5.0->v1.6.3v1.4.9->v1.7.0v1.7.0->v1.10.2v1.8.2->v1.11.1v0.2.0->v0.19.0Release Notes
hashicorp/go-hclog (github.com/hashicorp/go-hclog)
v1.6.3: Optional JSON escapingCompare Source
What's Changed
New Contributors
Full Changelog: https://github.com/hashicorp/go-hclog/compare/v1.6.2...v1.6.3
v1.6.2: Fix level syncingCompare Source
What's Changed
Full Changelog: https://github.com/hashicorp/go-hclog/compare/v1.6.1...v1.6.2
v1.6.1: Fix forcing colorCompare Source
What's Changed
Full Changelog: https://github.com/hashicorp/go-hclog/compare/v1.6.0...v1.6.1
v1.6.0: New level inheritance modeCompare Source
This release adds the ability to have sub-loggers arrange themselves into a tree and sync the level changes downward in the tree.
What's Changed
New Contributors
Full Changelog: https://github.com/hashicorp/go-hclog/compare/v1.5.0...v1.6.0
hashicorp/go-plugin (github.com/hashicorp/go-plugin)
v1.7.0Compare Source
CHANGES:
ENHANCEMENTS:
v1.6.3Compare Source
ENHANCEMENTS:
Full Changelog: https://github.com/hashicorp/go-plugin/compare/v1.6.2...v1.6.3
v1.6.2Compare Source
ENHANCEMENTS:
DialAPI [GH-257]BUGS:
v1.6.1Compare Source
BUGS:
os.ErrClosedon plugin shutdown [GH-299]ENHANCEMENTS:
v1.6.0Compare Source
CHANGES:
If the environment variable
PLUGIN_MULTIPLEX_GRPCis set, it is safe to include a seventh field containing a booleanvalue in the
|-separated protocol negotiation line.ENHANCEMENTS:
buffor proto generation [GH-286]v1.5.2Compare Source
ENHANCEMENTS:
client: New
UnixSocketConfig.TempDiroption allows setting the directory to use when creating plugin-specific Unix socket directories [GH-282]v1.5.1Compare Source
BUGS:
PLUGIN_UNIX_SOCKET_DIRis consistently used for gRPC broker sockets as well as the initial socket [GH-277]ENHANCEMENTS:
UnixSocketConfigoption inClientConfigto support making the client's Unix sockets group-writable [GH-277]v1.5.0Compare Source
ENHANCEMENTS:
runner.Runnerinterface to support clients providing custom plugin command runner implementations [GH-270]ClientConfigfieldRunnerFunc, which is mutually exclusive withCmdandReattachReattachConfigfieldReattachFuncClientConfigfieldSkipHostEnvallows omitting the client process' own environment variables from the plugin command's environment [GH-270]ID()method toClientfor retrieving the pid or other unique ID of a running plugin [GH-272]PLUGIN_UNIX_SOCKET_DIR[GH-270]PLUGIN_UNIX_SOCKET_GROUP[GH-270]v1.4.10Compare Source
BUG FIXES:
ENHANCEMENTS:
spf13/cobra (github.com/spf13/cobra)
v1.10.2Compare Source
🔧 Dependencies
gopkg.in/yaml.v3togo.yaml.in/yaml/v3by @dims in https://github.com/spf13/cobra/pull/2336 - thegopkg.in/yaml.v3package has been deprecated for some time: this should significantly cleanup dependency/supply-chains for consumers ofspf13/cobra📈 CI/CD
🔥✍🏼 Docs
🍂 Refactors
🤗 New Contributors
Full Changelog: https://github.com/spf13/cobra/compare/v1.10.1...v1.10.2
Thank you to our amazing contributors!!!!! 🐍 🚀
v1.10.1Compare Source
🐛 Fix
v1.0.9 of pflags brought back
ParseErrorsWhitelistand marked it as deprecatedFull Changelog: https://github.com/spf13/cobra/compare/v1.10.0...v1.10.1
v1.10.0Compare Source
What's Changed
🚨 Attention!
This version of
pflagcarried a breaking change: it renamedParseErrorsWhitelisttoParseErrorsAllowlistwhich can break builds if bothpflagandcobraare dependencies in your project.pflag andcobra, upgradepflagto 1.0.8 andcobrato1.10.0`pflagv1.0.9 which keeps the deprecatedParseErrorsWhitelistMore details can be found here: https://github.com/spf13/cobra/pull/2303#issuecomment-3242333515
✨ Features
🐛 Fix
🪠 Testing
📝 Docs
New Contributors
Full Changelog: https://github.com/spf13/cobra/compare/v1.9.1...v1.9.2
v1.9.1Compare Source
🐛 Fixes
Full Changelog: https://github.com/spf13/cobra/compare/v1.9.0...v1.9.1
v1.9.0Compare Source
✨ Features
🐛 Fixes
🤖 Completions
🧪 Testing
✍🏼 Documentation
🔧 Dependency upgrades
pflagdependencies for v1.9.0 by @jpmcb in https://github.com/spf13/cobra/pull/2233Thank you to all of our amazing contributors and all the great work that's been going into the completions feature!!
👋🏼 New Contributors
Full Changelog: https://github.com/spf13/cobra/compare/v1.8.1...v1.9.0
v1.8.1Compare Source
✨ Features
🐛 Bug fixes
🔧 Maintenance
🧪 Testing & CI/CD
✏️ Documentation
New Contributors
Thank you everyone who contributed to this release and all your hard work! Cobra and this community would never be possible without all of you!!!! 🐍
Full Changelog: https://github.com/spf13/cobra/compare/v1.8.0...v1.8.1
v1.8.0Compare Source
✨ Features
MarkFlagsOneRequiredAPI for flags which can be used to mark a flag group as required and cause command failure if at least one is not used when invoked.SetErrPrefixandErrPrefixAPIs on theCommandstruct to allow for setting a custom prefix for errors🐛 Bug fixes
🔧 Maintenance
🧪 Testing & CI/CD
✏️ Documentation
Thank you everyone who contributed to this release and all your hard work! Cobra and this community would never be possible without all of you!!!! 🐍
Full Changelog: https://github.com/spf13/cobra/compare/v1.7.0...v1.8.0
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: https://github.com/stretchr/testify/compare/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
New Contributors
Full Changelog: https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0
v1.10.0Compare Source
What's Changed
Functional Changes
Fixes
Documentation, Build & CI
New Contributors
Full Changelog: https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0
v1.9.0Compare Source
What's Changed
Calledby @aud10slave in https://github.com/stretchr/testify/pull/631NotImplementsand variants by @hslatman in https://github.com/stretchr/testify/pull/1385New Contributors
Full Changelog: https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0
v1.8.4Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/stretchr/testify/compare/v1.8.3...v1.8.4
v1.8.3Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/stretchr/testify/compare/v1.8.2...v1.8.3
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 has been generated by Renovate Bot.
Update module github.com/stretchr/testify to v1.8.3to Update module github.com/stretchr/testify to v1.8.4c029303344to6ea5f5ffd06ea5f5ffd0to0827d1affbUpdate module github.com/stretchr/testify to v1.8.4to Update all dependencies0827d1affbto7bb9ff39d27bb9ff39d2to17aeaf135317aeaf1353to06161856dc06161856dcto5eb28afced5eb28afcedto32cb07ba5232cb07ba52tof3a4e38777f3a4e38777to0f6f5c34d80f6f5c34d8to9c3fbd037a9c3fbd037ato376f0e7dfe376f0e7dfeto6eb9b278e46eb9b278e4tod36ce94c8cd36ce94c8cto54c97ba67d54c97ba67dtoad2170ee0cad2170ee0ctob1c32d28a2b1c32d28a2to6842571e086842571e08to4b852b29864b852b2986to74743e786eℹ Artifact update notice
File name: go.mod
In order to perform the update(s) described in the table above, Renovate ran the
go getcommand, which resulted in the following additional change(s):godirective was updated for compatibility reasonsDetails:
go1.19->1.24.0github.com/golang/protobufv1.3.4->v1.5.4github.com/hashicorp/yamuxv0.0.0-20180604194846-3520598351bb->v0.1.2github.com/mattn/go-isattyv0.0.14->v0.0.17github.com/oklog/runv1.0.0->v1.1.0github.com/spf13/pflagv1.0.5->v1.0.9golang.org/x/netv0.0.0-20190311183353-d8887717615a->v0.38.0golang.org/x/sysv0.0.0-20220503163025-988cb79eb6c6->v0.31.0golang.org/x/textv0.3.0->v0.23.0google.golang.org/genprotov0.0.0-20190819201941-24fa4b261c55->v0.0.0-20231106174013-bbf56f31fb1774743e786eto13817b058313817b0583toc4d90f2ee5c4d90f2ee5tof8750cac9cf8750cac9cto717a873932717a873932to57c65c522e57c65c522etod1ffbe8173d1ffbe8173to82c302b01982c302b019to181d73b207181d73b207to79d878a47879d878a478toe355071576e355071576tofd9b3b93a3fd9b3b93a3tobc3e32f8a4bc3e32f8a4to075fbe610d075fbe610dto0d8fc579660d8fc57966to636098280e636098280eto4ed5a841934ed5a84193to8e09f2f13d8e09f2f13dtoebe12cebf8ebe12cebf8to725a2097a4725a2097a4tod30e6cc31fd30e6cc31fto152fab0ea0152fab0ea0toc33ab5d833View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.