Signed-off-by: Jessica Frazelle <princess@docker.com>
(cherry picked from commit 0baf60984522744eed290348f33f396c046b2f3a)
| ... | ... |
@@ -1,5 +1,37 @@ |
| 1 | 1 |
# Changelog |
| 2 | 2 |
|
| 3 |
+## 1.7.0 (2015-06-16) |
|
| 4 |
+ |
|
| 5 |
+#### Runtime |
|
| 6 |
++ Experimental feature: support for out-of-process volume plugins |
|
| 7 |
+* The userland proxy can be disabled in favor of hairpin NAT using the daemon’s `--userland-proxy=false` flag |
|
| 8 |
+* The `exec` command supports the `-u|--user` flag to specify the new process owner |
|
| 9 |
++ Default gateway for containers can be specified daemon-wide using the `--default-gateway` and `--default-gateway-v6` flags |
|
| 10 |
++ The CPU CFS (Completely Fair Scheduler) quota can be set in `docker run` using `--cpu-quota` |
|
| 11 |
++ Container block IO can be controlled in `docker run` using`--blkio-weight` |
|
| 12 |
++ ZFS support |
|
| 13 |
++ The `docker logs` command supports a `--since` argument |
|
| 14 |
++ UTS namespace can be shared with the host with `docker run --uts=host` |
|
| 15 |
+ |
|
| 16 |
+#### Quality |
|
| 17 |
+* Networking stack was entirely rewritten as part of the libnetwork effort |
|
| 18 |
+* Engine internals refactoring |
|
| 19 |
+* Volumes code was entirely rewritten to support the plugins effort |
|
| 20 |
++ Sending SIGUSR1 to a daemon will dump all goroutines stacks without exiting |
|
| 21 |
+ |
|
| 22 |
+#### Build |
|
| 23 |
++ Support ${variable:-value} and ${variable:+value} syntax for environment variables
|
|
| 24 |
++ Support resource management flags `--cgroup-parent`, `--cpu-period`, `--cpu-quota`, `--cpuset-cpus`, `--cpuset-mems` |
|
| 25 |
++ git context changes with branches and directories |
|
| 26 |
+* The .dockerignore file support exclusion rules |
|
| 27 |
+ |
|
| 28 |
+#### Distribution |
|
| 29 |
++ Client support for v2 mirroring support for the official registry |
|
| 30 |
+ |
|
| 31 |
+#### Bugfixes |
|
| 32 |
+* Firewalld is now supported and will automatically be used when available |
|
| 33 |
+* mounting --device recursively |
|
| 34 |
+ |
|
| 3 | 35 |
## 1.6.2 (2015-05-13) |
| 4 | 36 |
|
| 5 | 37 |
#### Runtime |