fix(deps): update go dependencies (major) #663
Closed
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
v1.3.4
->v4.0.2
v1.13.1
->v20.10.7
v1.14.7
->v2.0.6
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
bmatcuk/doublestar
v4.0.2
Compare Source
Thanks @micimize!
v4.0.1
Compare Source
Fixed some Windows bugs in v4.0.0.
v4.0.0
Compare Source
v4 is a complete rewrite with a focus on performance. Additionally, doublestar has been updated to use the new io/fs package for filesystem access. As a result, it is only supported by golang v1.16+. See README.md and UPGRADING.md for additional information.
v3.0.0
Compare Source
To match POSIX patterns, v3 of doublestar supports negating character classes with exclamation marks (ie,
[!...]
) in addition to carets ([^...]
). This is a minor breaking change if any of your existing patterns happen to include an exclamation mark as the first character in a character class. To fix the issue, simply escape the exclamation mark (ie,[\!...]
) or move it later in the character class (ie, `[...!...]').v2.0.4
Compare Source
Thanks @pavelbazika!
v2.0.3
Compare Source
This release reduces some of the allocations in Match and PathMatch, improving performance. I've also added benchmarks in the tests.
v2.0.2
Compare Source
A small change to close directories immediately, rather than deferring. Thanks @luhring!
v2.0.1
Compare Source
If
Readdir
failed, doublestar was returningnil
instead of the accumulated results. Thanks for the bug report @InfiniteTF!v2.0.0
Compare Source
doublestar only needs
Readdir
and theCloser
interface for the type returned byOS.Open()
. By changing the return type to this basic interface, it's even easier to abstract the calls to the filesystem for testing. This is an API change, though, necessitating a major version bump. Updating should be fairly easy. See: https://github.com/bmatcuk/doublestar/blob/master/UPGRADING.mdThanks for the suggestion @c4milo!
docker/docker
v20.10.7
Compare Source
20.10.7
Client
SIGURG
signals to container on Linux and macOS. The Go runtime(starting with Go 1.14) uses
SIGURG
signals internally as an interrupt tosupport preemptable syscalls. In situations where the Docker CLI was attached
to a container, these interrupts were forwarded to the container. This fix
changes the Docker CLI to ignore
SIGURG
signals docker/cli#3107,moby/moby#42421.
Builder
a breaking change in runc v1.0.0-rc94 and up. moby/buildkit#2137.
a
COPY
command with a wildcard. Note that this change invalidatesexisting build caches for copy commands that use a wildcard. moby/buildkit#2018.
FROM
image is not cached when using legacy schema 1 images moby/moby#42382.Logging
Rootless
user-namespaces enabled moby/moby#42352.
Networking
parameter
ipv6.disable=1
, and to fix a deadlock causing internal DNS lookupsto fail moby/moby#42413.
Contrib
with the
slirp4netns
port driver moby/moby#42294.daemon moby/moby#42342.
Packaging
moby/moby#42398, moby/moby#42395,
ocker/containerd-packaging#234
moby/moby#42388, docker/containerd-packaging#232.
docker-scan-plugin
) to v0.8 docker/docker-ce-packaging#545.v20.10.6
Compare Source
release notes: https://docs.docker.com/engine/release-notes/[#​20106](https://togithub.com/docker/docker/issues/20106)
v20.10.5
Compare Source
release notes: https://docs.docker.com/engine/release-notes/[#​20105](https://togithub.com/docker/docker/issues/20105)
20.10.5
Client
v20.10.4
Compare Source
release notes: https://docs.docker.com/engine/release-notes/[#​20104](https://togithub.com/docker/docker/issues/20104)
20.10.4
Builder
invalid mutable ref
errors)builder prune
moby/moby#42065Client
docker login
if no config file is present docker/cli#2959WARNING: Error loading config file: .dockercfg: $HOME is not defined
docker/cli#2958Runtime
Logger
labels-regex
config even iflabels
is not set moby/moby#42046Rootless
Security
Swarm
--update-order
and--rollback-order
flags when only--update-order
or--rollback-order
is provided docker/cli#2963docker service rollback
returning a non-zero exit code in some situations docker/cli#2964docker service rollback
docker/cli#2964v20.10.3
Compare Source
Release notes: https://docs.docker.com/engine/release-notes/[#​20103](https://togithub.com/docker/docker/issues/20103)
20.10.3
Security
Client
v20.10.2
Compare Source
Release notes: https://docs.docker.com/engine/release-notes/[#​20102](https://togithub.com/docker/docker/issues/20102)
v20.10.1
Compare Source
Release notes: https://docs.docker.com/engine/release-notes/[#​20101](https://togithub.com/docker/docker/issues/20101)
v20.10.0
Compare Source
Release notes: https://docs.docker.com/engine/release-notes/[#​20100](https://togithub.com/docker/docker/issues/20100)
mattn/go-sqlite3
v2.0.6
Compare Source
v2.0.5
Compare Source
v2.0.4
Compare Source
v2.0.3
Compare Source
v2.0.2
Compare Source
v2.0.1
Compare Source
v1.14.8
Compare Source
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.