Package: docker-buildx / 0.13.1+ds1-3

Metadata

Package Version Patches format
docker-buildx 0.13.1+ds1-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Skip tests that assume a git repo or network access.patch | (download)

util/gitutil/gitutil_test.go | 31 1 + 30 - 0 !
util/metricutil/resource_test.go | 1 1 + 0 - 0 !
2 files changed, 2 insertions(+), 30 deletions(-)

 skip tests that assume a git repo or network access

The TestGit test assumes that we are in a git repository, which is not
always the case when building Debian packages.
The two test cases removed from TestGitRemoteURL assumes network access,
which is not the case on Debian's build infrastructure.

0002 Add promptForConfirmation removed from docker cli.patch | (download)

commands/util.go | 38 36 + 2 - 0 !
1 file changed, 36 insertions(+), 2 deletions(-)

 add promptforconfirmation removed from docker-cli

See: https://github.com/docker/buildx/commit/adb9bc86e51c54924e1c6ee561e1bee3eaa56e5e

0003 Add an option to generate the manual pages.patch | (download)

docs/generate.go | 4 4 + 0 - 0 !
1 file changed, 4 insertions(+)

 add an option to generate the manual pages

For an unknown reason, Docker authors disabled the manual pages
generation from their docs generator. This patch allows to use it.

0004 otel avoid tracing raw os arguments.patch | (download)

commands/bake.go | 7 6 + 1 - 0 !
commands/build.go | 6 5 + 1 - 0 !
util/tracing/trace.go | 7 3 + 4 - 0 !
3 files changed, 14 insertions(+), 6 deletions(-)

 [patch] otel: avoid tracing raw os arguments

User might pass a value that they don't expect to
be kept in trace storage. For example some cache backends
allow passing authentication tokens with a flag.

Instead use known primary config values as attributes
of the root span.

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>