Signed-off-by: David Calavera <david.calavera@gmail.com>
| ... | ... |
@@ -1,5 +1,96 @@ |
| 1 | 1 |
# Changelog |
| 2 | 2 |
|
| 3 |
+## 1.8.0 (2015-08-11) |
|
| 4 |
+ |
|
| 5 |
+### Distribution |
|
| 6 |
+ |
|
| 7 |
++ Trusted pull, push and build, disabled by default |
|
| 8 |
+* Make tar layers deterministic between registries |
|
| 9 |
+* Don't allow deleting the image of running containers |
|
| 10 |
+* Check if a tag name to load is a valid digest |
|
| 11 |
+* Allow one character repository names |
|
| 12 |
+* Add a more accurate error description for invalid tag name |
|
| 13 |
+* Make build cache ignore mtime |
|
| 14 |
+ |
|
| 15 |
+### Cli |
|
| 16 |
+ |
|
| 17 |
++ Add support for DOCKER_CONFIG/--config to specify config file dir |
|
| 18 |
++ Add --type flag for docker inspect command |
|
| 19 |
++ Add formatting options to `docker ps` with `--format` |
|
| 20 |
++ Replace `docker -d` with new subcommand `docker daemon` |
|
| 21 |
+* Zsh completion updates and improvements |
|
| 22 |
+* Add some missing events to bash completion |
|
| 23 |
+* Support daemon urls with base paths in `docker -H` |
|
| 24 |
+* Validate status= filter to docker ps |
|
| 25 |
+* Display when a container is in --net=host in docker ps |
|
| 26 |
+* Extend docker inspect to export image metadata related to graph driver |
|
| 27 |
+* Restore --default-gateway{,-v6} daemon options
|
|
| 28 |
+* Add missing unpublished ports in docker ps |
|
| 29 |
+* Allow duration strings in `docker events` as --since/--until |
|
| 30 |
+* Expose more mounts information in `docker inspect` |
|
| 31 |
+ |
|
| 32 |
+### Runtime |
|
| 33 |
+ |
|
| 34 |
++ Add new Fluentd logging driver |
|
| 35 |
++ Allow `docker import` to load from local files |
|
| 36 |
++ Add logging driver for GELF via UDP |
|
| 37 |
++ Allow to copy files from host to containers with `docker cp` |
|
| 38 |
++ Promote volume drivers from experimental to master |
|
| 39 |
++ Add rollover log driver, and --log-driver-opts flag |
|
| 40 |
++ Add memory swappiness tuning options |
|
| 41 |
+* Remove cgroup read-only flag when privileged |
|
| 42 |
+* Make /proc, /sys, & /dev readonly for readonly containers |
|
| 43 |
+* Add cgroup bind mount by default |
|
| 44 |
+* Overlay: Export metadata for container and image in `docker inspect` |
|
| 45 |
+* Devicemapper: external device activation |
|
| 46 |
+* Devicemapper: Compare uuid of base device on startup |
|
| 47 |
+* Remove RC4 from the list of registry cipher suites |
|
| 48 |
+* Add syslog-facility option |
|
| 49 |
+* LXC execdriver compatibility with recent LXC versions |
|
| 50 |
+* Mark LXC execriver as deprecated (to be removed with the migration to runc) |
|
| 51 |
+ |
|
| 52 |
+### Plugins |
|
| 53 |
+ |
|
| 54 |
+* Separate plugin sockets and specs locations |
|
| 55 |
+* Allow TLS connections to plugins |
|
| 56 |
+ |
|
| 57 |
+### Bug fixes |
|
| 58 |
+ |
|
| 59 |
+- Add missing 'Names' field to /containers/json API output |
|
| 60 |
+- Make `docker rmi --dangling` safe when pulling |
|
| 61 |
+- Devicemapper: Change default basesize to 100G |
|
| 62 |
+- Go Scheduler issue with sync.Mutex and gcc |
|
| 63 |
+- Fix issue where Search API endpoint would panic due to empty AuthConfig |
|
| 64 |
+- Set image canonical names correctly |
|
| 65 |
+- Check dockerinit only if lxc driver is used |
|
| 66 |
+- Fix ulimit usage of nproc |
|
| 67 |
+- Always attach STDIN if -i,--interactive is specified |
|
| 68 |
+- Show error messages when saving container state fails |
|
| 69 |
+- Fixed incorrect assumption on --bridge=none treated as disable network |
|
| 70 |
+- Check for invalid port specifications in host configuration |
|
| 71 |
+- Fix endpoint leave failure for --net=host mode |
|
| 72 |
+- Fix goroutine leak in the stats API if the container is not running |
|
| 73 |
+- Check for apparmor file before reading it |
|
| 74 |
+- Fix DOCKER_TLS_VERIFY being ignored |
|
| 75 |
+- Set umask to the default on startup |
|
| 76 |
+- Correct the message of pause and unpause a non-running container |
|
| 77 |
+- Adjust disallowed CpuShares in container creation |
|
| 78 |
+- ZFS: correctly apply selinux context |
|
| 79 |
+- Display empty string instead of <nil> when IP opt is nil |
|
| 80 |
+- `docker kill` returns error when container is not running |
|
| 81 |
+- Fix COPY/ADD quoted/json form |
|
| 82 |
+- Fix goroutine leak on logs -f with no output |
|
| 83 |
+- Remove panic in nat package on invalid hostport |
|
| 84 |
+- Fix container linking in Fedora 22 |
|
| 85 |
+- Fix error caused using default gateways outside of the allocated range |
|
| 86 |
+- Format times in inspect command with a template as RFC3339Nano |
|
| 87 |
+- Make registry client to accept 2xx and 3xx http status responses as successful |
|
| 88 |
+- Fix race issue that caused the daemon to crash with certain layer downloads failed in a specific order. |
|
| 89 |
+- Fix error when the docker ps format was not valid. |
|
| 90 |
+- Remove redundant ip forward check. |
|
| 91 |
+- Fix issue trying to push images to repository mirrors. |
|
| 92 |
+- Fix error cleaning up network entrypoints when there is an initialization issue. |
|
| 93 |
+ |
|
| 3 | 94 |
## 1.7.1 (2015-07-14) |
| 4 | 95 |
|
| 5 | 96 |
#### Runtime |