- 28 Mar, 2019 5 kayıt (commit)
-
-
Ulysses Souza yazdı
Bump 3.7.2 release
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ian Campbell yazdı
The `lstrip` and `rstrip` functions take a set of characters to remove, not a prefix/suffix. Thus `rstrip('-x86_64')` will remove any trailing characters in the string `'-x86_64'` in any order (in effect it strips the suffix matching the regex `[-_x468]*`). So with `18.09.4` it removes the `4` suffix resulting in trying to `int('')` later on: Traceback (most recent call last): File "/src/scripts/versions.py", line 80, in <module> main() File "/src/scripts/versions.py", line 73, in main versions, reverse=True, key=operator.attrgetter('order') File "/src/scripts/versions.py", line 52, in order return (int(self.major), int(self.minor), int(self.patch)) + stage ValueError: invalid literal for int() with base 10: '' Since we no longer need to check for the arch suffix (since it no longer appears in the URLs we are traversing) we could just drop the `rstrip` and invent a local prefix stripping helper to replace `lstrip('docker-')`. Instead lets take advantage of the behaviour of `re.findall` which is that if the regex contains a single `()` match that will be returned. This lets us match exactly the sub-section of the regex we require. While editing the regex, also ensure that the suffix is precisely `.tgz` and not merely `tgz` by adding an explicit `\.`, previously the literal `.` would be swallowed by the `.*` instead. Signed-off-by: Ian Campbell <ijc@docker.com>
-
Ulysses Souza yazdı
This fix lets the responsability of changing the protocol to `parse_host` afterwards, letting `base_url` with the original value. Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
This test is quite flaky on ssl integration test Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
- 20 Mar, 2019 5 kayıt (commit)
-
-
Djordje Lukic yazdı
3.7.1 release
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
- Adds a BaseHTTPAdapter with a close method to ensure that the pools is clean on close() - Makes SSHHTTPAdapter reopen a closed connection when needed like the others Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
Ulysses Souza yazdı
This is because default the number of connections in OpenSSH is 10 Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
- 10 Ock, 2019 2 kayıt (commit)
-
-
Chris Crone yazdı
3.7.0 release
-
Ulysses Souza yazdı
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
-
- 09 Ock, 2019 19 kayıt (commit)
-
-
Joffrey F yazdı
Remove use_config_proxy from exec. Add use_config_proxy docs to DockerClient
-
Joffrey F yazdı
Signed-off-by: Joffrey F <joffrey@docker.com>
-
Joffrey F yazdı
Regression 443 test: relax status-code check
-
Sebastiaan van Stijn yazdı
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>
-
Joffrey F yazdı
Support using proxy values from config
-
Joffrey F yazdı
Signed-off-by: Joffrey F <joffrey@docker.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
This is to avoid a breaking change Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
This reverts commit 7584e5d7f068400d33d6658ae706c79db1aab2c5. Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
the _cfg attribute does not exist anymore Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Corentin Henry yazdı
Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
-
Joffrey F yazdı
Update test dependencies to latest version, fix some flake8 errors
-
Joffrey F yazdı
Signed-off-by: Joffrey F <joffrey@docker.com>
-
- 29 Ara, 2018 1 kayıt (commit)
-
-
Joffrey F yazdı
Make swarm.init() return value match documentation
-
- 28 Ara, 2018 1 kayıt (commit)
-
-
Joffrey F yazdı
Signed-off-by: Joffrey F <joffrey@docker.com>
-
- 27 Ara, 2018 2 kayıt (commit)
- 20 Ara, 2018 2 kayıt (commit)
-
-
Mickaël Schoentgen yazdı
Signed-off-by: Mickaël Schoentgen <contact@tiger-222.fr>
-
Mickaël Schoentgen yazdı
Signed-off-by: Mickaël Schoentgen <contact@tiger-222.fr>
-
- 14 Ara, 2018 2 kayıt (commit)
-
-
Joffrey F yazdı
Fixed a typo in the configs api doc
-
Maximilian Bischoff yazdı
The documentation for id in ConfigApiMixin inspect_config was wrongly mentioning removal of a config Signed-off-by: Maximilian Bischoff <maximilianbischoff2@gmail.com>
-
- 11 Ara, 2018 1 kayıt (commit)
-
-
Joffrey F yazdı
Improve handling of placement preferences and associated docs
-