Browse code

Merge pull request #462 from dotcloud/initial_changelog

+ Add initial Changelog

Solomon Hykes authored on 2013/04/23 16:32:25
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,77 @@
0
+# Changelog
1
+
2
+## 0.1.8 (2013-04-22)
3
+ - Dynamically detect cgroup capabilities
4
+ - Issue stability warning on kernels <3.8
5
+ - 'docker push' buffers on disk instead of memory
6
+ - Fix 'docker diff' for removed files
7
+ - Fix 'docker stop' for ghost containers 
8
+ - Fix handling of pidfile
9
+ - Various bugfixes and stability improvements
10
+
11
+## 0.1.7 (2013-04-18)
12
+ - Container ports are available on localhost
13
+ - 'docker ps' shows allocated TCP ports
14
+ - Contributors can run 'make hack' to start a continuous integration VM
15
+ - Streamline ubuntu packaging & uploading
16
+ - Various bugfixes and stability improvements
17
+
18
+## 0.1.6 (2013-04-17)
19
+ - Record the author an image with 'docker commit -author'
20
+
21
+## 0.1.5 (2013-04-17)
22
+ - Disable standalone mode
23
+ - Use a custom DNS resolver with 'docker -d -dns'
24
+ - Detect ghost containers
25
+ - Improve diagnosis of missing system capabilities
26
+ - Allow disabling memory limits at compile time
27
+ - Add debian packaging
28
+ - Documentation: installing on Arch Linux 
29
+ - Documentation: running Redis on docker
30
+ - Fixed lxc 0.9 compatibility
31
+ - Automatically load aufs module
32
+ - Various bugfixes and stability improvements
33
+
34
+## 0.1.4 (2013-04-09)
35
+ - Full support for TTY emulation
36
+ - Detach from a TTY session with the escape sequence `C-p C-q`
37
+ - Various bugfixes and stability improvements
38
+ - Minor UI improvements
39
+ - Automatically create our own bridge interface 'docker0'
40
+
41
+## 0.1.3 (2013-04-04)
42
+ - Choose TCP frontend port with '-p :PORT'
43
+ - Layer format is versioned
44
+ - Major reliability improvements to the process manager
45
+ - Various bugfixes and stability improvements
46
+
47
+## 0.1.2 (2013-04-03)
48
+ - Set container hostname with 'docker run -h'
49
+ - Selective attach at run with 'docker run -a [stdin[,stdout[,stderr]]]'
50
+ - Various bugfixes and stability improvements
51
+ - UI polish
52
+ - Progress bar on push/pull
53
+ - Use XZ compression by default
54
+ - Make IP allocator lazy
55
+
56
+## 0.1.1 (2013-03-31)
57
+ - Display shorthand IDs for convenience
58
+ - Stabilize process management
59
+ - Layers can include a commit message
60
+ - Simplified 'docker attach'
61
+ - Fixed support for re-attaching
62
+ - Various bugfixes and stability improvements
63
+ - Auto-download at run
64
+ - Auto-login on push
65
+ - Beefed up documentation
66
+
67
+## 0.1.0 (2013-03-23)
68
+ - First release
69
+ - Implement registry in order to push/pull images
70
+ - TCP port allocation
71
+ - Fix termcaps on Linux
72
+ - Add documentation
73
+ - Add Vagrant support with Vagrantfile
74
+ - Add unit tests
75
+ - Add repository/tags to ease image management
76
+ - Improve the layer implementation