-
-
Notifications
You must be signed in to change notification settings - Fork 154
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 all (major) #423
Closed
Closed
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
renovate
bot
force-pushed
the
renovate/major-all
branch
3 times, most recently
from
April 24, 2021 22:34
d0f4054
to
8adda0c
Compare
renovate
bot
force-pushed
the
renovate/major-all
branch
2 times, most recently
from
May 1, 2021 13:19
085634a
to
7217bd9
Compare
|
renovate
bot
force-pushed
the
renovate/major-all
branch
from
June 1, 2021 08:21
7217bd9
to
1f70fab
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:
v2.22.0+incompatible
->v3.2.2
v2.20.9+incompatible
->v3.21.5
v1.22.5
->v2.3.0
Release Notes
Masterminds/sprig
v3.2.2
Compare Source
This release is here simply to satisfy the Go module system. The code is precisely the same as v3.2.1.
v3.2.1
Compare Source
This is a security release for
Masterminds/goutils
v1.1.1
. See the Security Advisory.Changelog
Release 3.2.1 (2021-02-04)
Changed
Masterminds/goutils
tov1.1.1
. see the Security Advisoryv3.2.0
Compare Source
Added
(thanks @andrewmostello)
ed25519
keys (thanks @misberner)Changed
ed25519
support requires Go 1.13 or newerFixed
NOTE: The dependency github.com/imdario/mergo reverted the breaking change in
0.3.9 via 0.3.10 release.
v3.1.0
Compare Source
NOTE: The dependency github.com/imdario/mergo made a behavior change in 0.3.9
that impacts sprig functionality. Do not use sprig with a version newer than 0.3.8.
Added
seq
function (thanks @thadc23)Changed
as it causes a breaking change for sprig. That issue is tracked at
0.3.9 no longer merges public fields in embedded structs darccio/mergo#139
Fixed
seq
example in docs (thanks @kalmant)v3.0.2
Compare Source
Fixed
v3.0.1
Compare Source
Fixed
v3.0.0
Compare Source
Sprig v3 brings some changes while retaining the same Go API. This should enable projects to migrate to v3 with relative ease.
You might be wondering, why increment the major version if the Go API didn't break? The reason for that is some edge case behavior changed. Most importantly the use of
^
while handling major version 0 use cases with semver. To be cautious, the major version of sprig was incremented to limit the number of surprises.Added
Changed
shirou/gopsutil
v3.21.5
Compare Source
v3.21.4
Compare Source
v3.21.3
Compare Source
v3.21.2
Compare Source
v3.21.1
Compare Source
v3.20.12
Compare Source
v3.20.11
Compare Source
v3.20.10
Compare Source
urfave/cli
v2.3.0
Compare Source
These release notes were written for the git hash
09ac54c
.Fixed
App.ErrWriter
not being initialized inApp.Setup()
in #1100 via @Nokel81Destination
field in theStringSliceFlag
in #1121 via @sgoroshkoStringSlice
values would be mutated in #1170 via @tych0Changed
Added
Value
withTimeStamp
flag in #1160 via @vschettinoMapInputSource
type in #1194 via @igorriusApp.Reader
that defaults toos.Stdin
via #1191 via @stellirinv2.2.0
Compare Source
These release notes were written for the git hash
d648edd
Fixed
Changed
Added
v2.1.1
Compare Source
Fixed a
Context
regression introduced inv2.1.0
in urfave/cli#1014 via @lynncyrinv2.1.0
Compare Source
These release notes were written for the git hash ae84df4cef4a2a6f1a0cb1d41ea0f3af8755e5a8
Fixed
Changed
App.Run
to use an optional context for timeouts and cancellation in add RunWithContext + remove signal cancellation urfave/cli#975 via @marwan-at-workValue
accessor in Exposed thevalue
accessor inContext
urfave/cli#741 via @corruptmemoryAdded
v2.0.0
Compare Source
V2 was merged in urfave/cli#892, which included the work of all of these contributors: @asahasrabuddhe, @meatballhat, @jszwedko, @lynncyrin, @AudriusButkevicius, @saschagrunert, @rliebz, @johnweldon, @nlewo, @grubernaut, @OneOfOne, @VMitov, @cbranch, @marwan-at-work, @uudashr, @bfreis
Discuss the state of V2 here => urfave/cli#826
Added
NewStringSlice
andNewIntSlice
for creating their related typesFloat64SliceFlag
for unmarshaling a list of floats from the userContext.Lineage
to get all contexts from current up to globalContext.LocalFlagNames
to get the flag names from only the current contextBoolFlag.Value
to handle both default-false and default-trueIsSet
method to theFlag
interface which allows us to detect whether or not a flag has been setChanged
[]Command
have been changed to[]*Command
[]cli.Flag
have been changed to[]*cli.Flag
Context.FlagNames
now returns all flags in the context lineageContext.IsSet
now considers the full context lineageRemoved
Global*
flags since all flags are now globalGlobalBool
withBool
GlobalInt
withInt
GlobalString
withString
Context.Parent
method, as this is now available viaContext.Lineage
Context.Parent()
withContext.Lineage()[1]
App.Author
andApp.Email
Authors []*Author
fieldCommand.Name
fieldName: "a, b, c"
withName: "a", Aliases: []string{"b", "c"}
Command.ShortName
fieldShortName: "i"
withAliases: []string{"i"}
Context.Global*
methods, as the non-global versions now traverse upthe context lineage automatically.
&StringSlice{...string}
or&IntSlice{...int}
.Action
func signatureBoolTFlag
and related code, as this is now available viaBoolFlag.Value
Configuration
📅 Schedule: 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 has been generated by WhiteSource Renovate. View repository job log here.