Bump docker from 6.0.1 to 6.1.1
Bumps docker from 6.0.1 to 6.1.1.
Release notes
Sourced from docker's releases.
6.1.1
ℹ ️ Upgrade Notes (6.1.x)
- 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.
🐛 Bugfixes
- Fix
containers.stats()
hanging withstream=True
- Correct return type in docs for
containers.diff()
methodWhat's Changed
- api: update return type of
diff
method by@john-b-yang
in docker/docker-py#3115- Fix container.stats infinite blocking on stream mode by
@RazCrimson
in docker/docker-py#3120New Contributors
@john-b-yang
made their first contribution in docker/docker-py#3115@RazCrimson
made their first contribution in docker/docker-py#3120Full Changelog: https://github.com/docker/docker-py/compare/6.1.0...6.1.1
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#3116
... (truncated)
Commits
-
443a353
Fix container.stats infinite blocking on stream mode (#3120) -
576e47a
api: update return type ofdiff
method (#3115) -
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) - Additional commits viewable in compare view