Skip to content

Commit aa20f40

Browse files
committed
Updated changelog
1 parent 7d85f68 commit aa20f40

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

docs/change_log.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,55 @@
11
Change Log
22
==========
33

4+
1.3.0
5+
-----
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.3.0+is%3Aclosed)
8+
9+
### Deprecation warning
10+
11+
* As announced in the 1.2.0 release, `Client.execute` has been removed in favor of
12+
`Client.exec_create` and `Client.exec_start`.
13+
14+
### Features
15+
16+
* `extra_hosts` parameter in host config can now also be provided as a list.
17+
* Added support for `memory_limit` and `memswap_limit` in host config to
18+
comply with recent deprecations.
19+
* Added support for `volume_driver` in `Client.create_container`
20+
* Added support for advanced modes in volume binds (using the `mode` key)
21+
* Added support for `decode` in `Client.build` (decodes JSON stream on the fly)
22+
* docker-py will now look for login configuration under the new config path,
23+
and fall back to the old `~/.dockercfg` path if not present.
24+
25+
### Bugfixes
26+
27+
* Configuration file lookup now also work on platforms that don't define a
28+
`$HOME` environment variable.
29+
* Fixed an issue where pinging a v2 private registry wasn't working properly,
30+
preventing users from pushing and pulling.
31+
* `pull` parameter in `Client.build` now defaults to `False`. Fixes a bug where
32+
the default options would try to force a pull of non-remote images.
33+
* Fixed a bug where getting logs from tty-enabled containers wasn't working
34+
properly with more recent versions of Docker
35+
* `Client.push` and `Client.pull` will now raise exceptions if the HTTP
36+
status indicates an error.
37+
* Fixed a bug with adapter lookup when using the Unix socket adapter
38+
(this affected some weird edge cases, see issue #647 for details)
39+
* Fixed a bug where providing `timeout=None` to `Client.stop` would result
40+
in an exception despite the usecase being valid.
41+
* Added `git@` to the list of valid prefixes for remote build paths.
42+
43+
### Dependencies
44+
45+
* The websocket-client dependency has been updated to a more recent version.
46+
This new version also supports Python 3.x, making `attach_socket` available
47+
on those versions as well.
48+
49+
### Documentation
50+
51+
* Various fixes
52+
453
1.2.3
554
-----
655

0 commit comments

Comments
 (0)