Skip to content

Commit 9b6ff33

Browse files
committed
Bump 2.5.0
Signed-off-by: Joffrey F <[email protected]>
1 parent 7d559a9 commit 9b6ff33

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def imageNamePy3
66
def images = [:]
77

88

9-
def dockerVersions = ["1.13.1", "17.04.0-ce", "17.05.0-ce", "17.06.1-ce", "17.07.0-ce-rc3"]
9+
def dockerVersions = ["1.13.1", "17.04.0-ce", "17.05.0-ce", "17.06.0-ce", "17.07.0-ce-rc3"]
1010

1111
def buildImage = { name, buildargs, pyTag ->
1212
img = docker.image(name)

docker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "2.5.0-dev"
1+
version = "2.5.0"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change-log.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
Change log
22
==========
33

4+
2.5.0
5+
-----
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/milestone/33?closed=1)
8+
9+
### Features
10+
11+
* Added support for the `squash` parameter in `APIClient.build` and
12+
`DockerClient.images.build`.
13+
* When using API version 1.23 or above, `load_image` will now return a
14+
generator of progress as JSON `dict`s.
15+
* `remove_image` now returns the content of the API's response.
16+
17+
18+
### Bugfixes
19+
20+
* Fixed an issue where the `auto_remove` parameter in
21+
`DockerClient.containers.run` was not taken into account.
22+
* Fixed a bug where `.dockerignore` patterns starting with a slash
23+
were ignored.
24+
* Fixed an issue with the handling of `**` patterns in `.dockerignore`
25+
* Fixed a bug where building `FROM` a private Docker Hub image when not
26+
using a cred store would fail.
27+
* Fixed a bug where calling `create_service` or `update_service` with
28+
`task_template` as a `dict` would raise an exception.
29+
* Fixed the handling of TTY-enabled containers in `attach` and `exec_run`.
30+
* `DockerClient.containers.run` will no longer attempt to stream logs if the
31+
log driver doesn't support the operation.
32+
33+
### Miscellaneous
34+
35+
* Added extra requirements for better TLS support on some platforms.
36+
These can be installed or required through the `docker[tls]` notation.
37+
438
2.4.2
539
-----
640

0 commit comments

Comments
 (0)