-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
socket: handle npipe close #3056
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nicks
force-pushed
the
nicks/npipe
branch
3 times, most recently
from
October 21, 2022 19:22
8cd2eaa
to
4c55e07
Compare
cc @milas |
Signed-off-by: Nick Santos <nick.santos@docker.com>
milas
approved these changes
Nov 2, 2022
coolguy1771
referenced
this pull request
in coolguy1771/home-ops
Nov 3, 2022
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker](https://github.com/docker/docker-py) ([changelog](https://docker-py.readthedocs.io/en/stable/change-log.html)) | patch | `6.0.0` -> `6.0.1` | --- ### Release Notes <details> <summary>docker/docker-py</summary> ### [`v6.0.1`](https://github.com/docker/docker-py/releases/tag/6.0.1) [Compare Source](https://github.com/docker/docker-py/compare/6.0.0...6.0.1) ##### 🐛 Bugfixes - Fix for `The pipe has been ended` errors on Windows ([#​3056](https://github.com/docker/docker-py/issues/3056)) - Support floats for timestamps in Docker logs (`since` / `until`) ([#​3031](https://github.com/docker/docker-py/issues/3031)) ##### What's Changed - docs: install package in ReadTheDocs build by [@​milas](https://github.com/milas) in [https://github.com/docker/docker-py/pull/3032](https://github.com/docker/docker-py/pull/3032) - Use latest stable syntax for Dockerfiles by [@​thaJeztah](https://github.com/thaJeztah) in [https://github.com/docker/docker-py/pull/3035](https://github.com/docker/docker-py/pull/3035) - feat: add support for floats to docker logs params since / until sinc… by [@​ArchiMoebius](https://github.com/ArchiMoebius) in [https://github.com/docker/docker-py/pull/3031](https://github.com/docker/docker-py/pull/3031) - Change prune test to use anonymous volumes by [@​cpuguy83](https://github.com/cpuguy83) in [https://github.com/docker/docker-py/pull/3051](https://github.com/docker/docker-py/pull/3051) - socket: handle npipe close by [@​nicks](https://github.com/nicks) in [https://github.com/docker/docker-py/pull/3056](https://github.com/docker/docker-py/pull/3056) ##### New Contributors - [@​ArchiMoebius](https://github.com/ArchiMoebius) made their first contribution in [https://github.com/docker/docker-py/pull/3031](https://github.com/docker/docker-py/pull/3031) - [@​nicks](https://github.com/nicks) made their first contribution in [https://github.com/docker/docker-py/pull/3056](https://github.com/docker/docker-py/pull/3056) **Full Changelog**: docker/docker-py@6.0.0...6.0.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMi4xIiwidXBkYXRlZEluVmVyIjoiMzQuMTIuMSJ9--> Co-authored-by: lumiere-bot <98047013+lumiere-bot[bot]@users.noreply.github.com>
felixfontein
added a commit
to felixfontein/community.docker
that referenced
this pull request
Nov 30, 2022
Fixes docker/docker-py#3045 Cherry-picked from docker/docker-py@3002298 Co-authored-by: Nick Santos <nick.santos@docker.com>
felixfontein
added a commit
to ansible-collections/community.docker
that referenced
this pull request
Dec 1, 2022
* socket: handle npipe close on Windows (docker/docker-py#3056) Fixes docker/docker-py#3045 Cherry-picked from docker/docker-py@3002298 Co-authored-by: Nick Santos <nick.santos@docker.com> * Add changelog fragment. Co-authored-by: Nick Santos <nick.santos@docker.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #3045
I tried to do something minimally invasive (e.g., not importing pywintypes)
Signed-off-by: Nick Santos nick.santos@docker.com