Sebastiaan van Stijn
441acb383d
vendor: github.com/mattn/go-runewidth v0.0.29
...
- Wrap: do not panic when the width is zero
- CreateLUT: rebuild the table after a DefaultCondition flag change
full diff: https://github.com/mattn/go-runewidth/compare/v0.0.28...v0.0.29
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-03 23:35:43 +02:00
Sebastiaan van Stijn
cec24c7b9a
Merge pull request #7285 from vvoland/update-docker
...
vendor: github.com/moby/moby/api v1.56.0 & client v0.6.0
2026-09-03 23:11:32 +02:00
Paweł Gronowski
d5ea3bdc8a
vendor: github.com/moby/moby/client v0.6.0
...
full diff: https://github.com/moby/moby/compare/b9b109e4d341...client/v0.6.0
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-03 23:01:04 +02:00
Paweł Gronowski
7cf09ba485
vendor: github.com/moby/moby/api v1.56.0
...
full diff: https://github.com/moby/moby/compare/b9b109e4d341...api/v1.56.0
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-03 23:00:14 +02:00
Sebastiaan van Stijn
6239084af1
Merge pull request #7108 from zhangyoufu/umask
...
cli/command/container: add create/run --umask
2026-09-03 22:34:00 +02:00
Paweł Gronowski
45a3e0bc2a
e2e/container: Skip umask test until engine support
...
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-03 22:12:34 +02:00
Paweł Gronowski
79dd1f4ad0
Merge pull request #7284 from thaJeztah/trust_bump
...
cmd/docker-trust: update dependencies and fix test
2026-09-03 21:56:58 +02:00
Sebastiaan van Stijn
32bfe54148
cmd/docker-trust: update dependencies
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-03 21:50:34 +02:00
Sebastiaan van Stijn
d7036970e8
cmd/docker-trust: fix tests
...
Some test-files were missing.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-03 21:50:34 +02:00
Sebastiaan van Stijn
ade907089f
Merge pull request #7196 from locker95/docs/global-mode-constraints
...
docs(service create): note global mode still honors constraints
2026-09-03 21:31:46 +02:00
Sebastiaan van Stijn
e92e07589b
Merge pull request #7171 from locker95/locker95-docs-system-prune-build-cache
...
docs: mention build cache in docker system prune description
2026-09-03 21:30:52 +02:00
Youfu Zhang
09d30a34bf
cli/command/container: add create/run --umask
...
Signed-off-by: Youfu Zhang <zhangyoufu@gmail.com >
2026-09-04 03:23:44 +08:00
Sebastiaan van Stijn
51780c0691
Merge pull request #7281 from vvoland/update-docker
...
vendor: github.com/moby/moby/api v1.56.0-dev (b9b109e4d341)
2026-09-03 21:18:54 +02:00
Paweł Gronowski
fee40c1660
Merge pull request #7218 from locker95/docs/history-platform-example
...
docs(history): use the pulled platform in the --platform example
2026-09-03 21:12:40 +02:00
Paweł Gronowski
91fc8ad4a2
vendor: github.com/moby/moby/client v0.5.2-dev (b9b109e4d341)
...
full diff: https://github.com/moby/moby/compare/client/v0.5.1...b9b109e4d341
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-03 20:52:14 +02:00
Paweł Gronowski
cb6c7bc03f
vendor: github.com/moby/moby/api v1.56.0-dev (b9b109e4d341)
...
full diff: https://github.com/moby/moby/compare/api/v1.55.0...b9b109e4d341
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-03 20:40:38 +02:00
Sebastiaan van Stijn
b1b8a602f6
Merge pull request #7269 from thaJeztah/slice_and_dice_step2
...
update naturalsort sorting with slice
2026-09-03 15:28:39 +02:00
Sebastiaan van Stijn
36e01adcfa
cmd/docker-trust: update naturalsort sorting with slices
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-03 15:02:50 +02:00
Sebastiaan van Stijn
e54eb133cb
update naturalsort sorting with slices
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-03 15:02:45 +02:00
Paweł Gronowski
f01f978aca
Merge pull request #7267 from thaJeztah/fix_aliases
...
cmd/docker: fix stringSliceReplaceAt with overlapping matches
2026-09-03 15:00:28 +02:00
Paweł Gronowski
d078f15f2b
Merge pull request #7254 from locker95/fix/login-client-side-basic-401
...
registry: treat basic-auth 401 as unauthorized
2026-09-03 14:30:05 +02:00
Paweł Gronowski
13e32611b5
Merge pull request #7271 from thaJeztah/bump_sortorder
...
vendor: github.com/fvbommel/sortorder v1.2.0
2026-09-03 14:22:45 +02:00
Sebastiaan van Stijn
7c883814b8
Merge pull request #7280 from vvoland/work-panic
...
cli/command: Avoid panics after client initialization errors
2026-09-03 13:03:29 +02:00
Paweł Gronowski
b07de47694
cli/command: Avoid panics after client initialization errors
...
When client.New rejects an invalid Docker host or other client option,
it returns a nil concrete client with an error.
Returning that pointer directly as client.APIClient stores a typed-nil
interface, so lazy version checks dereference it.
Return an error instead.
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-03 10:59:11 +02:00
Sebastiaan van Stijn
9878ff214b
Merge pull request #7274 from vvoland/update-go
...
Update to go1.26.8
2026-09-02 16:43:01 +02:00
Paweł Gronowski
c24195d63f
Update to go1.26.8
...
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-02 14:48:59 +02:00
Sebastiaan van Stijn
d7ad1d7268
Merge pull request #7272 from docker/dependabot/github_actions/codeql-actions-9de84475bd
...
build(deps): bump the codeql-actions group with 3 updates
2026-09-02 12:48:04 +02:00
Paweł Gronowski
e6ee8bee34
Merge pull request #7268 from thaJeztah/slice_and_dice
...
modernize code with slices and maps packages
2026-09-02 12:11:22 +02:00
dependabot[bot]
c096bd1261
build(deps): bump the codeql-actions group with 3 updates
...
Bumps the codeql-actions group with 3 updates: [github/codeql-action/init](https://github.com/github/codeql-action ), [github/codeql-action/autobuild](https://github.com/github/codeql-action ) and [github/codeql-action/analyze](https://github.com/github/codeql-action ).
Updates `github/codeql-action/init` from 4.37.8 to 4.37.9
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](https://github.com/github/codeql-action/compare/db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28...cdf488f595d80d6e07e03d4674febd5ab45fa938 )
Updates `github/codeql-action/autobuild` from 4.37.8 to 4.37.9
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](https://github.com/github/codeql-action/compare/db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28...cdf488f595d80d6e07e03d4674febd5ab45fa938 )
Updates `github/codeql-action/analyze` from 4.37.8 to 4.37.9
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](https://github.com/github/codeql-action/compare/db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28...cdf488f595d80d6e07e03d4674febd5ab45fa938 )
---
updated-dependencies:
- dependency-name: github/codeql-action/init
dependency-version: 4.37.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: codeql-actions
- dependency-name: github/codeql-action/autobuild
dependency-version: 4.37.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: codeql-actions
- dependency-name: github/codeql-action/analyze
dependency-version: 4.37.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: codeql-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-09-02 08:46:18 +00:00
Sebastiaan van Stijn
3014a55736
cmd/docker-trust: update github.com/fvbommel/sortorder v1.2.0
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 09:43:02 +02:00
Sebastiaan van Stijn
3cb9f1cb86
vendor: github.com/fvbommel/sortorder v1.2.0
...
full diff: https://github.com/fvbommel/sortorder/compare/v1.1.0...v1.2.0
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 09:41:54 +02:00
Sebastiaan van Stijn
fd25e9699e
Merge pull request #7260 from docker/dependabot/github_actions/docker-actions-cc537b3931
...
build(deps): bump docker/docker-agent-action/.github/workflows/review-pr.yml from 2.0.4 to 2.0.5 in the docker-actions group across 1 directory
2026-09-02 09:32:08 +02:00
Sebastiaan van Stijn
e480e6c6fc
volume create: simplify cluster volume options
...
Extract construction of the cluster volume spec from runCreate, and use
struct literals for the individual cluster volume options.
Also simplify topology parsing by reusing ConvertKVStringsToMap, use
slices.SortFunc for deterministic secret ordering, and use max to clamp
negative capacity values to zero.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:28 +02:00
Sebastiaan van Stijn
977d999382
cli/config: use filepath.IsLocal to validate config paths
...
Use filepath.Rel and filepath.IsLocal instead of comparing path prefixes
as strings when checking that a path stays within the config directory.
Also avoid calling Dir multiple times when constructing and validating
the path.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:28 +02:00
Sebastiaan van Stijn
64484430f4
cli-plugins: modernize with slices and maps packages
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:28 +02:00
Sebastiaan van Stijn
7631c67208
e2e: modernize
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:28 +02:00
Sebastiaan van Stijn
b1780e06a0
opts: modernize with slices and maps packages
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:27 +02:00
Sebastiaan van Stijn
6ea81b3e2e
templates: modernize with slices and maps packages
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:27 +02:00
Sebastiaan van Stijn
33d586d81f
cli/compose: modernize with slices and maps packages
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:27 +02:00
Sebastiaan van Stijn
ed406be52e
cli/command: modernize with slices and maps packages
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 02:50:27 +02:00
Sebastiaan van Stijn
be607d1163
Merge pull request #7227 from kawmy/7226-preserve-mount-order
...
cli/command/service: preserve mount order on force update
2026-09-02 02:40:47 +02:00
Sebastiaan van Stijn
f838c7c84b
cmd/docker-trust: modernize with slices and maps packages
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-02 01:28:55 +02:00
Sebastiaan van Stijn
bcc4be9f8b
cmd/docker: fix stringSliceReplaceAt with overlapping matches
...
Inline the sub-slice lookup into stringSliceReplaceAt and use
slices.Equal to compare candidate ranges. When a specific index is
required, check that position directly instead of searching the full
slice.
This also fixes overlapping matches and uses slices.Concat to construct
the replacement result.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-01 21:30:59 +02:00
Sebastiaan van Stijn
f0f38d5cb9
cmd/docker: rewrite TestStringSliceReplaceAt to table test
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-01 21:30:58 +02:00
Dean Chen
b4189c2f7f
registry: map login HTTP status through errhttp.ToNative
...
translateV2AuthError only unwraps a url.Error from Do(); a 401
status never went through it. Use errhttp.ToNative so Auth()
treats that 401 as unauthorized and stops.
Signed-off-by: Dean Chen <862469039@qq.com >
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2026-09-01 17:24:38 +02:00
Sebastiaan van Stijn
4a9a0ab3aa
Merge pull request #7265 from vvoland/docs-dockerd
...
dockerd: Document new options
2026-09-01 17:10:11 +02:00
Paweł Gronowski
7b7eb0ef6b
dockerd: Document custom AppArmor profiles
...
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-01 16:53:25 +02:00
Paweł Gronowski
a458c3871c
dockerd: Document default-stop-timeout
...
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com >
2026-09-01 16:30:31 +02:00
Sebastiaan van Stijn
dc67811426
Merge pull request #6976 from olabie2/6973-print-error-before-plugin-hooks
...
cmd/docker: print command error before running plugin hooks
2026-09-01 13:42:53 +02:00
dependabot[bot]
1164af3e60
build(deps): bump docker/docker-agent-action/.github/workflows/review-pr.yml
...
Bumps the docker-actions group with 1 update in the / directory: [docker/docker-agent-action/.github/workflows/review-pr.yml](https://github.com/docker/docker-agent-action ).
Updates `docker/docker-agent-action/.github/workflows/review-pr.yml` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/docker/docker-agent-action/releases )
- [Commits](https://github.com/docker/docker-agent-action/compare/b08367e7e9a471822464be2bb9fdaa1c0fb6061b...06e1767af06263c93d712449cbf859778d9392ee )
---
updated-dependencies:
- dependency-name: docker/docker-agent-action/.github/workflows/review-pr.yml
dependency-version: 2.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: docker-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-09-01 08:41:28 +00:00