Skip to content

Conversation

@pull
Copy link

@pull pull bot commented Mar 14, 2022

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

vvoland and others added 28 commits December 17, 2025 14:58
vendor: github.com/moby/moby/api v1.53.0-rc.1
cdi: read XDG_CONFIG_HOME/cdi and XDG_RUNTIME_DIR/cdi for rootless
vendor: github.com/moby/moby/client v0.2.2-rc.1
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
dropreplace now accepts an optional argument that allows to manually
specify a git ref to use for the modules.

It's not required though and if not present it will default to a master
branch from the upstream (preferred) or origin remote.

This is much more reliable than "module@master" which for some reason
tends to not resolve to the actual latest commit on the master branch.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
Remove the `replace` rule check as it's not needed because it will also
pass the second check.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This option was added in e6d7df2 to allow
skipping copying the source code as part of `docker build` if a bind-mount
was used to improve the build performance.

This trick was replaced in 1c82d11, which
now uses a separate target.

With the above, the `DOCKER_BUILD_OPTS` is no longer used, so we can remove it.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This option was added in 0bff251 to control
what packages were built for the deb and rpm packages.

This repository no longer builds the deb and rpm packages, and this variable
is no longer used, so we can remove it.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This option was added in 9672afa in 2016,
at which time tweaking GOGC showed a significant difference when building
the binary (`1m14.221s` vs `0m49.929s`).

Testing this Today doesn't show a real difference;

With GOGC=1000:

    rm -rf bundles/
    time hack/make.sh binary
    real	0m15.303s
    user	0m26.285s
    sys	0m6.383s

    real	0m4.931s
    user	0m3.103s
    sys	0m1.670s

    real	0m5.693s
    user	0m3.827s
    sys	0m2.384s

Without GOGC set;

    real	0m5.012s
    user	0m3.689s
    sys	0m1.549s

    real	0m5.298s
    user	0m3.997s
    sys	0m1.695s

    real	0m4.899s
    user	0m3.579s
    sys	0m1.423s

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This variable is no longer used since 9e7651d

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Makefile: remove unused or outdated make-vars
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Dockerfile: update RootlessKit to v2.3.6
vendor: go.opentelemetry.io/contrib/* v0.63.0
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
    types/swarm/task.go:151:2: structtag: struct field tag `json:MemorySwappiness,omitzero"` not compatible with reflect.StructTag.Get: bad syntax for struct tag value (govet)
        MemorySwappiness *int64 `json:MemorySwappiness,omitzero"`
        ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
    client/container_exec.go:8:2: import "github.com/containerd/errdefs" imported without alias but must be with alias "cerrdefs" according to config (importas)
        "github.com/containerd/errdefs"
        ^
    client/container_exec_test.go:9:2: import "github.com/containerd/errdefs" imported without alias but must be with alias "cerrdefs" according to config (importas)
        "github.com/containerd/errdefs"
        ^
    client/container_rename.go:8:2: import "github.com/containerd/errdefs" imported without alias but must be with alias "cerrdefs" according to config (importas)
        "github.com/containerd/errdefs"
        ^
    client/pkg/security/security_opts_test.go:8:2: import "gotest.tools/v3/assert/cmp" imported without alias but must be with alias "is" according to config (importas)
        "gotest.tools/v3/assert/cmp"
        ^
    client/volume_prune.go:9:2: import "github.com/containerd/errdefs" imported without alias but must be with alias "cerrdefs" according to config (importas)
        "github.com/containerd/errdefs"
        ^
    client/volume_prune_test.go:8:2: import "github.com/containerd/errdefs" imported without alias but must be with alias "cerrdefs" according to config (importas)
        "github.com/containerd/errdefs"
        ^
    client/container_exec_test.go:10:2: ST1019(related information): other import of "github.com/containerd/errdefs" (staticcheck)
        cerrdefs "github.com/containerd/errdefs"
        ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
    client/client_test.go:367:5: ineffectual assignment to err (ineffassign)
        _, err = client.Ping(t.Context(), PingOptions{
           ^
    client/client_test.go:381:5: ineffectual assignment to err (ineffassign)
        _, err = client.Ping(t.Context(), PingOptions{
           ^
    client/client_test.go:425:5: ineffectual assignment to err (ineffassign)
        _, err = client.Ping(t.Context(), PingOptions{
           ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
    client/system_disk_usage.go:275:3: missing cases in switch of type container.ContainerState: container.StateCreated, container.StateRemoving, container.StateExited, container.StateDead (exhaustive)
            switch c.State {
            ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
    client/container_exec_test.go:152:19: use-errors-new: replace fmt.Errorf by errors.New (revive)
                            return nil, fmt.Errorf("should not have made API request")
                                        ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
renovate-bot and others added 30 commits January 22, 2026 22:57
Signed-off-by: Mend Renovate <bot@renovateapp.com>
Signed-off-by: Mend Renovate <bot@renovateapp.com>
…in-5.x

chore(deps): update docker/compose-bin docker tag to v5.0.2
Signed-off-by: Mend Renovate <bot@renovateapp.com>
Signed-off-by: Mend Renovate <bot@renovateapp.com>
…ions-1.x

chore(deps): update lima-vm/lima-actions action to v1.1.0
…n-0.x

chore(deps): update docker/buildx-bin docker tag to v0.31.0
…-dns-1.x

fix(deps): update module github.com/miekg/dns to v1.1.72
Signed-off-by: Mend Renovate <bot@renovateapp.com>
…fore

The `Before` and `Since` options were used for the `before` and `since`
query parameters. These parameters were replaced with the `before` and
`since` filters in docker 1.10.0 (API 1.22)through [1921c62], and
[b41dba5].

The query parameters were removed from the CLI and daemon in docker 1.12.0
(API 1.24) through [91b7157], however the fields themselves were never
removed.

This patch deprecates the fields as they are non-functional.

[1921c62]: 1921c62
[b41dba5]: b41dba5
[91b7157]: 91b7157

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
The `--latest` option was implemented in [b295239] as a CLI shortcut
for `--last=1`.

However, as part of a large refactor of the client in [d05aa41], a
`ContainerListOptions` type was introduced, which contained a `Latest`
field.

This field was never used, as the `Latest` option was handled in the CLI,
and had no corresponding option for the API (other than `limit`).

This patch deprecates the field as it is non-functional.

[b295239]: b295239
[d05aa41]: d05aa41

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
…mithy-go-1.x

fix(deps): update module github.com/aws/smithy-go to v1.24.0
Signed-off-by: Mend Renovate <bot@renovateapp.com>
chore(deps): update alpine docker tag to v3.23
Fixes Escape target name: GHSA-fcv2-xgw5-pqxf

full diff: sigstore/sigstore@v1.10.0...v1.10.4

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
client: ContainerListOptions: deprecate `Since`, `Before`, and `Latest` fields
…norepo

fix(deps): update aws-sdk-go-v2 monorepo
chore(deps): update tonistiigi/xx docker tag to v1.9.0
Signed-off-by: Mend Renovate <bot@renovateapp.com>
vendor: github.com/sigstore/sigstore v1.10.4
…g-grpc-1.x

fix(deps): update module google.golang.org/grpc to v1.78.0
vendor: update github.com/go-openapi dependencies
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This release fixes GHSA-273p-m2cw-6833 and GHSA-4c4x-jm2x-pf9j. Note that this
drops support for fetching public keys via URL when querying the search API.

Vulnerability Fixes

- Handle malformed COSE and DSSE entries
- Drop support for fetching public keys by URL in the search index

Features

- Add support for a custom TLS config for clients (#2709)

full diff: sigstore/rekor@v1.4.3...v1.5.0

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
vendor: github.com/sigstore/rekor v1.5.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.