mirror of https://github.com/docker/docker-py.git
Bump version to 1.8.0
Add RC bugfixes to the changelog. Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
f68a4f957d
commit
267bd34426
|
|
@ -1,2 +1,2 @@
|
||||||
version = "1.8.0-rc5"
|
version = "1.8.0"
|
||||||
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
|
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
|
||||||
|
|
|
||||||
|
|
@ -27,16 +27,19 @@ Change Log
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
|
||||||
* Fixed a bug where some environment variables specified through
|
* Fixed a bug where TLS verification would fail when using IP addresses
|
||||||
`create_container` would be improperly formatted
|
in the certificate's `subjectAltName` fields
|
||||||
* Fixed an issue where the default TLS version in TLSConfig would
|
* Fixed an issue where the default TLS version in TLSConfig would
|
||||||
break in some environments. `docker-py` now uses TLSv1 by default
|
break in some environments. `docker-py` now uses TLSv1 by default
|
||||||
This setting can be overridden using the `ssl_version` param in
|
This setting can be overridden using the `ssl_version` param in
|
||||||
`kwargs_from_env` or the `TLSConfig` constructor
|
`kwargs_from_env` or the `TLSConfig` constructor
|
||||||
|
* Fixed a bug where `tcp` hosts would fail to connect to TLS-enabled
|
||||||
|
endpoints
|
||||||
|
* Fixed a bug where loading a valid docker configuration file would fail
|
||||||
|
* Fixed a bug where some environment variables specified through
|
||||||
|
`create_container` would be improperly formatted
|
||||||
* Fixed a bug where using the unix socket connection would raise
|
* Fixed a bug where using the unix socket connection would raise
|
||||||
an error in some edge-case situations
|
an error in some edge-case situations
|
||||||
* Fixed a bug where `tcp` hosts would fail to connect to TLS-enabled
|
|
||||||
endpoints.
|
|
||||||
|
|
||||||
### Miscellaneous
|
### Miscellaneous
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue