|
...
|
...
|
@@ -1,5 +1,34 @@
|
|
1
|
1
|
# Changelog
|
|
2
|
2
|
|
|
|
3
|
+## 0.6.5 (2013-10-29)
|
|
|
4
|
++ Runtime: Containers can now be named
|
|
|
5
|
++ Runtime: Containers can now be linked together for service discovery
|
|
|
6
|
++ Runtime: 'run -a', 'start -a' and 'attach' can forward signals to the container for better integration with process supervisors
|
|
|
7
|
++ Runtime: Automatically start crashed containers after a reboot
|
|
|
8
|
++ Runtime: Expose IP, port, and proto as separate environment vars for container links
|
|
|
9
|
+* Runtime: Allow ports to be published to specific ips
|
|
|
10
|
+* Runtime: Prohibit inter-container communication by default
|
|
|
11
|
+* Documentation: Fix the flags for nc in example
|
|
|
12
|
+- Client: Only pass stdin to hijack when needed to avoid closed pipe errors
|
|
|
13
|
+* Testing: Remove warnings and prevent mount issues
|
|
|
14
|
+* Client: Use less reflection in command-line method invocation
|
|
|
15
|
+- Runtime: Ignore ErrClosedPipe for stdin in Container.Attach
|
|
|
16
|
+- Testing: Change logic for tty resize to avoid warning in tests
|
|
|
17
|
+- Client: Monitor the tty size after starting the container, not prior
|
|
|
18
|
+- Hack: Update install.sh with $sh_c to get sudo/su for modprobe
|
|
|
19
|
+- Client: Remove useless os.Exit() calls after log.Fatal
|
|
|
20
|
+* Hack: Update all the mkimage scripts to use --numeric-owner as a tar argument
|
|
|
21
|
+* Hack: Update hack/release.sh process to automatically invoke hack/make.sh and bail on build and test issues
|
|
|
22
|
++ Hack: Add initial init scripts library and a safer Ubuntu packaging script that works for Debian
|
|
|
23
|
+- Runtime: Fix untag during removal of images
|
|
|
24
|
+- Runtime: Remove unused field kernelVersion
|
|
|
25
|
+* Hack: Add -p option to invoke debootstrap with http_proxy
|
|
|
26
|
+- Builder: Fix race condition in docker build with verbose output
|
|
|
27
|
+- Registry: Fix content-type for PushImageJSONIndex method
|
|
|
28
|
+* Runtime: Fix issue when mounting subdirectories of /mnt in container
|
|
|
29
|
+* Runtime: Check return value of syscall.Chdir when changing working directory inside dockerinit
|
|
|
30
|
+* Contrib: Improve helper tools to generate debian and Arch linux server images
|
|
|
31
|
+
|
|
3
|
32
|
## 0.6.4 (2013-10-16)
|
|
4
|
33
|
- Runtime: Add cleanup of container when Start() fails
|
|
5
|
34
|
- Testing: Catch errClosing error when TCP and UDP proxies are terminated
|