Skip to content

Tags: docker/docker-py

Tags

7.1.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #3264 from krissetto/rename-env-var-in-release-pip…

…eline

Change env var name in release pipeline to match hatch expectations

7.0.0b2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: fix missing setuptools in CI (#3189)

Install `setuptools` in addition to `wheel` before trying to run
`python setup.py` manually.

Note that `setuptools` is already correctly listed in the
`pyproject.toml` file for consumers installing via `pip` etc, but
in CI the file is run directly to generate `sdist` and `bdist_wheel`
artifacts for PyPI.

Signed-off-by: Milas Bowman <milas.bowman@docker.com>

7.0.0b1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: update MAINTAINERS and remove CODEOWNERS (#3188)

Update `MAINTAINERS` with the current folks, adn remove the
`CODEOWNERS` file entirely -- it's not really helpful here,
as this project isn't big enough to have multiple subsections
with different maintainers/owners.

Signed-off-by: Milas Bowman <milas.bowman@docker.com>

6.1.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: eventlet compatibility (#3132)

Check if poll attribute exists on select module instead of win32 platform check

The implementation done in #2865 is breaking usage of docker-py library within eventlet.
As per the Python `select.poll` documentation (https://docs.python.org/3/library/select.html#select.poll) and eventlet select removal advice (eventlet/eventlet#608 (comment)), it is preferable to use an implementation based on the availability of the `poll()` method that trying to check if the platform is `win32`.

Fixes #3131

Signed-off-by: Mathieu Virbel <mat@meltingrocks.com>

6.1.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: update changelog (#3127)

Signed-off-by: Milas Bowman <milas.bowman@docker.com>

6.1.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix container.stats infinite blocking on stream mode (#3120)

fix: api - container.stats infinite blocking on stream mode

Includes additional test for no streaming

Signed-off-by: Bharath Vignesh J K <52282402+RazCrimson@users.noreply.github.com>

6.1.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
deps: compatiblity with requests ≥ 2.29.0 and urllib3 2.x (#3116)

Requirements are the same, so it's still possible to use `urllib3 < 2`
or `requests == 2.28.2` for example.

Signed-off-by: Felix Fontein <felix@fontein.de>

6.0.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
socket: handle npipe close on Windows (#3056)

Fixes #3045

Signed-off-by: Nick Santos <nick.santos@docker.com>