|
1 | 1 | Change Log
|
2 | 2 | ==========
|
3 | 3 |
|
| 4 | +1.4.0 |
| 5 | +----- |
| 6 | + |
| 7 | +[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.4.0+is%3Aclosed) |
| 8 | + |
| 9 | +### Deprecation warning |
| 10 | + |
| 11 | +* `docker.utils.create_host_config` is deprecated in favor of |
| 12 | + `Client.create_host_config`. |
| 13 | + |
| 14 | +### Features |
| 15 | + |
| 16 | +* Added `utils.parse_env_file` to support env-files. |
| 17 | + See [docs](http://docker-py.readthedocs.org/en/latest/api/#create_container) |
| 18 | + for usage. |
| 19 | +* Added support for arbitrary log drivers |
| 20 | +* Added support for URL paths in the docker host URL (`base_url`) |
| 21 | +* Drastically improved support for .dockerignore syntax |
| 22 | + |
| 23 | +### Bugfixes |
| 24 | + |
| 25 | +* Fixed a bug where exec_inspect would allow invocation when the API version |
| 26 | + was too low. |
| 27 | +* Fixed a bug where `docker.utils.ports.split_port` would break if an open |
| 28 | + range was provided. |
| 29 | +* Fixed a bug where invalid image IDs / container IDs could be provided to |
| 30 | + bypass or reroute request URLs |
| 31 | +* Default `base_url` now adapts depending on the OS (better Windows support) |
| 32 | +* Fixed a bug where using an integer as the user param in |
| 33 | + `Client.create_container` would result in a failure. |
| 34 | + |
| 35 | +### Miscellaneous |
| 36 | + |
| 37 | +* Docs fixes |
| 38 | +* Integration tests are now run as part of our continuous integration. |
| 39 | +* Updated dependency on `six` library |
| 40 | + |
4 | 41 | 1.3.1
|
5 | 42 | -----
|
6 | 43 |
|
@@ -30,8 +67,8 @@ Change Log
|
30 | 67 |
|
31 | 68 | ### Deprecation warning
|
32 | 69 |
|
33 |
| -* As announced in the 1.2.0 release, `Client.execute` has been removed in favor of |
34 |
| - `Client.exec_create` and `Client.exec_start`. |
| 70 | +* As announced in the 1.2.0 release, `Client.execute` has been removed in favor |
| 71 | + of `Client.exec_create` and `Client.exec_start`. |
35 | 72 |
|
36 | 73 | ### Features
|
37 | 74 |
|
@@ -79,8 +116,8 @@ Change Log
|
79 | 116 |
|
80 | 117 | ### Deprecation warning
|
81 | 118 |
|
82 |
| -* Passing host config in the `Client.start` method is now deprecated. Please use the |
83 |
| - `host_config` in `Client.create_container` instead. |
| 119 | +* Passing host config in the `Client.start` method is now deprecated. Please |
| 120 | + use the `host_config` in `Client.create_container` instead. |
84 | 121 |
|
85 | 122 | ### Features
|
86 | 123 |
|
|
0 commit comments