Browse code

Bump to version 0.8.0 Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)

Michael Crosby authored on 2014/02/05 09:08:57
Showing 2 changed files
... ...
@@ -1,5 +1,25 @@
1 1
 # Changelog
2 2
 
3
+## 0.8.0 (2014-02-04)
4
+
5
+#### Notable features since 0.7.0
6
+
7
+* Images and containers can be removed much faster
8
+* Building an image from source with docker build is now much faster
9
+* The Docker daemon starts and stops much faster
10
+* The memory footprint of many common operations has been reduced, by streaming files instead of buffering them in memory, fixing memory leaks, and fixing various suboptimal memory allocations
11
+* Several race conditions were fixed, making Docker more stable under very high concurrency load. This makes Docker more stable and less likely to crash and reduces the memory footprint of many common operations
12
+* All packaging operations are now built on the Go language’s standard tar implementation, which is bundled with Docker itself. This makes packaging more portable across host distributions, and solves several issues caused by quirks and incompatibilities between different distributions of tar
13
+* Docker can now create, remove and modify larger numbers of containers and images graciously thanks to more aggressive releasing of system resources. For example the storage driver API now allows Docker to do reference counting on mounts created by the drivers
14
+With the ongoing changes to the networking and execution subsystems of docker testing these areas have been a focus of the refactoring.  By moving these subsystems into separate packages we can test, analyze, and monitor coverage and quality of these packages
15
+* Many components have been separated into smaller sub-packages, each with a dedicated test suite. As a result the code is better-tested, more readable and easier to change
16
+
17
+* The ADD instruction now supports caching, which avoids unnecessarily re-uploading the same source content again and again when it hasn’t changed
18
+* The new ONBUILD instruction adds to your image a “trigger” instruction to be executed at a later time, when the image is used as the base for another build
19
+* Docker now ships with an experimental storage driver which uses the BTRFS filesystem for copy-on-write
20
+* Docker is officially supported on Mac OSX
21
+* The Docker daemon supports systemd socket activation
22
+
3 23
 ## 0.7.6 (2014-01-14)
4 24
 
5 25
 #### Builder
... ...
@@ -1 +1 @@
1
-0.7.6-dev
1
+0.8.0