-
Notifications
You must be signed in to change notification settings - Fork 1.7k
3.7.0 release #2223
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
Merged
Merged
3.7.0 release #2223
Conversation
This file contains hidden or 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
Signed-off-by: Joffrey F <joffrey@docker.com>
Bump requests dependency in requirements.txt (CVE-2018-18074)
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
The method now uses parsing methods from urllib to better split provided URLs. Addresses containing query strings, parameters, passwords or fragments no longer fail silently. SSH addresses containing paths are no longer accepted. Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Adam Dangoor <adamdangoor@gmail.com>
Add a missing space in a log message
SSH protocol support
…o use in the resulting tarball Signed-off-by: Joffrey F <joffrey@docker.com>
Add named parameter to image.save to identify which repository name to use in the resulting tarball
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Documentation fixes
Signed-off-by: Joffrey F <joffrey@docker.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Mickaël Schoentgen <contact@tiger-222.fr>
Signed-off-by: Mickaël Schoentgen <contact@tiger-222.fr>
Fix DeprecationWarning: invalid escape sequence in ports.py
Fix DeprecationWarning: invalid escape sequence in services.py
Signed-off-by: Joffrey F <joffrey@docker.com>
Make swarm.init() return value match documentation
Signed-off-by: Joffrey F <joffrey@docker.com>
Update test dependencies to latest version, fix some flake8 errors
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
the _cfg attribute does not exist anymore Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
This reverts commit 7584e5d. Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
This is to avoid a breaking change Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
Signed-off-by: Joffrey F <joffrey@docker.com>
Support using proxy values from config
This test was testing for a 500 status, but this status is actually a bug in the API (as it's due to an invalid request), and the API should actually return a 400 status. To make this test handle both situations, relax the test to accept either a 4xx or 5xx status. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Regression 443 test: relax status-code check
…rClient Signed-off-by: Joffrey F <joffrey@docker.com>
Remove use_config_proxy from exec. Add use_config_proxy docs to DockerClient
Signed-off-by: Ulysses Souza <ulysses.souza@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.
List of PRs / issues for this release
Features
attach
andexec_start
). Learnmore at https://docker-py.readthedocs.io/en/stable/user_guides/multiplex.html
use_config_proxy
parameter to the following methods:APIClient.build
,APIClient.create_container
,DockerClient.images.build
and
DockerClient.containers.run
(False
by default). This parameterwill become
True
by default in the 4.0.0 release.and documentation has been updated accordingly
Bugfixes
credentials with certain variations of the
config.json
file.DockerClient.swarm.init
now returns a boolean value as advertised.