Browse code

Completed Changelog for all past versions

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