Bump docker from 6.0.1 to 6.1.0
Bumps docker from 6.0.1 to 6.1.0.
Release notes
Sourced from docker's releases.
6.1.0
ℹ ️ Upgrade Notes
- Errors are no longer returned during client initialization if the credential helper cannot be found. A warning will be emitted instead, and an error is returned if the credential helper is used.
✨ Features
- Python 3.11 support
- Use
poll()
instead ofselect()
on non-Windows platforms- New API fields
network_driver_opt
on container run / createone-shot
on container statsstatus
on services list
🐛 Bugfixes
- Support for requests 2.29.0+ and urllib3 2.x
- Do not strip characters from volume names
- Fix connection leak on
container.exec_*
operations- Fix errors closing named pipes on Windows
What's Changed
- Add support for Python 3.11 by
@hugovk
in docker/docker-py#3064- Avoid stripping characters in volume names by
@loicleyendecker
in docker/docker-py#3073- docs: fix wrong command syntax in code annotation by
@serieznyi
in docker/docker-py#3081- build(deps): Bump setuptools from 63.2.0 to 65.5.1 by
@dependabot
in docker/docker-py#3082- fix(store): warn on init instead of throw by
@nomagick
in docker/docker-py#3080- exec: fix file handle leak with container.exec_* APIs by
@Lekensteyn
in docker/docker-py#2320- Add
network_driver_opt
to client.containers run and create by@Skazza94
in docker/docker-py#3083- Add
one-shot
to container APIstats
by@aroxby-wayscript
in docker/docker-py#3089- Add
status
parameter to services list API by@lorinbucher
in docker/docker-py#3093- socket: fix for errors on pipe close in Windows by
@milas
in docker/docker-py#3099- put_archive: note the data may also be a stream by
@akx
in docker/docker-py#2478- Use poll() instead of select(), unless Windows. by
@I-question-this
in docker/docker-py#2865- Make compatible with requests 2.29.0 and urllib3 2.0 by
@felixfontein
in docker/docker-py#3116New Contributors
@loicleyendecker
made their first contribution in docker/docker-py#3073@serieznyi
made their first contribution in docker/docker-py#3081@nomagick
made their first contribution in docker/docker-py#3080@Lekensteyn
made their first contribution in docker/docker-py#2320@aroxby-wayscript
made their first contribution in docker/docker-py#3089@lorinbucher
made their first contribution in docker/docker-py#3093@akx
made their first contribution in docker/docker-py#2478@I-question-this
made their first contribution in docker/docker-py#2865Full Changelog: https://github.com/docker/docker-py/compare/6.0.1...6.1.0
Commits
-
3178c8d
deps: compatiblity with requests ≥ 2.29.0 and urllib3 2.x (#3116) -
a02ba74
socket: use poll() instead of select() except on Windows (#2865) -
aaf68b7
api: note the data arg may also be a stream input_archive
(#2478) -
f846232
socket: fix for errors on pipe close in Windows (#3099) -
7cd7458
api: addstatus
parameter to services list (#3093) -
e9d4ddf
api: addone-shot
option to containerstats
(#3089) -
aca129d
Merge branch 'master' -
ee9151f
client: addnetwork_driver_opt
to container run and create (#3083) -
34e6829
exec: fix file handle leak with container.exec_* APIs (#2320) -
22718ba
fix(store): warn on init instead of throw (#3080) - Additional commits viewable in compare view