Browse code

Update CHANGELOG for 1.10.3

Signed-off-by: Tibor Vass <tibor@docker.com>
(cherry picked from commit f33460253887ec05b804cfa9f1daee8d1fd229e1)

Tibor Vass authored on 2016/03/08 07:52:17
Showing 1 changed files
... ...
@@ -5,6 +5,34 @@ information on the list of deprecated flags and APIs please have a look at
5 5
 https://docs.docker.com/misc/deprecated/ where target removal dates can also
6 6
 be found.
7 7
 
8
+## 1.10.3 (2016-03-10)
9
+
10
+### Runtime
11
+
12
+- Fix Docker client exiting with an "Unrecognized input header" error [#20706](https://github.com/docker/docker/pull/20706)
13
+- Fix Docker exiting if Exec is started with both `AttachStdin` and `Detach` [#20647](https://github.com/docker/docker/pull/20647)
14
+- Fix loss of output in short-lived containers [#20729](https://github.com/docker/docker/pull/20729)
15
+- Fix an issue that caused the client to hang if the container process died [#20967](https://github.com/docker/docker/pull/20967)
16
+
17
+### Distribution
18
+
19
+- Fix a crash when pushing multiple images sharing the same layers to the same repository in parallel  [#20831](https://github.com/docker/docker/pull/20831)
20
+
21
+### Plugin system
22
+
23
+- Fix issue preventing volume plugins to start when SELinux is enabled [#20834](https://github.com/docker/docker/pull/20834)
24
+- Prevent Docker from exiting if a volume plugin returns a null response for Get requests [#20682](https://github.com/docker/docker/pull/20682)
25
+- Fix plugin system leaking file descriptors if a plugin has an error [#20680](https://github.com/docker/docker/pull/20680)
26
+
27
+### Security
28
+
29
+- Fix linux32 emulation to fail during docker build [#20672](https://github.com/docker/docker/pull/20672)  
30
+  It was due to the `personality` syscall being blocked by the default seccomp profile.
31
+- Fix Oracle XE 10g failing to start in a container [#20981](https://github.com/docker/docker/pull/20981)  
32
+  It was due to the `ipc` syscall being blocked by the default seccomp profile.
33
+- Fix user namespaces not working on Linux From Scratch [#20685](https://github.com/docker/docker/pull/20685)
34
+- Fix issue preventing daemon to start if userns is enabled and the `subuid` or `subgid` files contain comments [#20725](https://github.com/docker/docker/pull/20725)
35
+
8 36
 ## 1.10.2 (2016-02-22)
9 37
 
10 38
 ### Runtime