| ... | ... |
@@ -1,5 +1,43 @@ |
| 1 | 1 |
# Changelog |
| 2 | 2 |
|
| 3 |
+## 0.6.7 (2013-11-21) |
|
| 4 |
+ |
|
| 5 |
+#### Runtime |
|
| 6 |
+ |
|
| 7 |
+* Improved stability, fixes some race conditons |
|
| 8 |
+* Skip the volumes mounted when deleting the volumes of container. |
|
| 9 |
+* Fix layer size computation: handle hard links correctly |
|
| 10 |
+* Use the work Path for docker cp CONTAINER:PATH |
|
| 11 |
+* Fix tmp dir never cleanup |
|
| 12 |
+* Speedup docker ps |
|
| 13 |
+* More informative error message on name collisions |
|
| 14 |
+* Fix nameserver regex |
|
| 15 |
+* Always return long id's |
|
| 16 |
+* Fix container restart race condition |
|
| 17 |
+* Keep published ports on docker stop;docker start |
|
| 18 |
+* Fix container networking on Fedora |
|
| 19 |
+* Correctly express "any address" to iptables |
|
| 20 |
+* Fix network setup when reconnecting to ghost container |
|
| 21 |
+* Prevent deletion if image is used by a running container |
|
| 22 |
+* Lock around read operations in graph |
|
| 23 |
+ |
|
| 24 |
+#### RemoteAPI |
|
| 25 |
+ |
|
| 26 |
+* Return full ID on docker rmi |
|
| 27 |
+ |
|
| 28 |
+#### Client |
|
| 29 |
+ |
|
| 30 |
++ Add -tree option to images |
|
| 31 |
++ Offline image transfer |
|
| 32 |
+* Exit with status 2 on usage error and display usage on stderr |
|
| 33 |
+* Do not forward SIGCHLD to container |
|
| 34 |
+* Use string timestamp for docker events -since |
|
| 35 |
+ |
|
| 36 |
+#### Other |
|
| 37 |
+ |
|
| 38 |
+* Update to go 1.2rc5 |
|
| 39 |
++ Add /etc/default/docker support to upstart |
|
| 40 |
+ |
|
| 3 | 41 |
## 0.6.6 (2013-11-06) |
| 4 | 42 |
|
| 5 | 43 |
#### Runtime |
| ... | ... |
@@ -17,6 +55,7 @@ |
| 17 | 17 |
+ Prevent DNS server conflicts in CreateBridgeIface |
| 18 | 18 |
+ Validate bind mounts on the server side |
| 19 | 19 |
+ Use parent image config in docker build |
| 20 |
+* Fix regression in /etc/hosts |
|
| 20 | 21 |
|
| 21 | 22 |
#### Client |
| 22 | 23 |
|