From 1c64becab64b1c665887cf45fbdb6fb4dce8c77c Mon Sep 17 00:00:00 2001 From: Tibor Vass Date: Mon, 7 Mar 2016 17:52:17 -0500 Subject: [PATCH 1/3] Update CHANGELOG for 1.10.3 Signed-off-by: Tibor Vass (cherry picked from commit f33460253887ec05b804cfa9f1daee8d1fd229e1) --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c27e96bf36..90be7d68d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,34 @@ information on the list of deprecated flags and APIs please have a look at https://docs.docker.com/misc/deprecated/ where target removal dates can also be found. +## 1.10.3 (2016-03-10) + +### Runtime + +- Fix Docker client exiting with an "Unrecognized input header" error [#20706](https://github.com/docker/docker/pull/20706) +- Fix Docker exiting if Exec is started with both `AttachStdin` and `Detach` [#20647](https://github.com/docker/docker/pull/20647) +- Fix loss of output in short-lived containers [#20729](https://github.com/docker/docker/pull/20729) +- Fix an issue that caused the client to hang if the container process died [#20967](https://github.com/docker/docker/pull/20967) + +### Distribution + +- 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) + +### Plugin system + +- Fix issue preventing volume plugins to start when SELinux is enabled [#20834](https://github.com/docker/docker/pull/20834) +- Prevent Docker from exiting if a volume plugin returns a null response for Get requests [#20682](https://github.com/docker/docker/pull/20682) +- Fix plugin system leaking file descriptors if a plugin has an error [#20680](https://github.com/docker/docker/pull/20680) + +### Security + +- Fix linux32 emulation to fail during docker build [#20672](https://github.com/docker/docker/pull/20672) + It was due to the `personality` syscall being blocked by the default seccomp profile. +- Fix Oracle XE 10g failing to start in a container [#20981](https://github.com/docker/docker/pull/20981) + It was due to the `ipc` syscall being blocked by the default seccomp profile. +- Fix user namespaces not working on Linux From Scratch [#20685](https://github.com/docker/docker/pull/20685) +- 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) + ## 1.10.2 (2016-02-22) ### Runtime From 1f4e87f6384cf8a7c956cdb3f4bb37b0bf4a7095 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Tue, 8 Mar 2016 15:56:16 +0100 Subject: [PATCH 2/3] distribution: registry: do not access the errors slice if it's empty Signed-off-by: Antonio Murdaca (cherry picked from commit 0186f4d4223a094a050d06f456355da3ae431468) --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90be7d68d8..6fa61646fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,8 @@ be found. ### Distribution -- 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) +- 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) +- Fix a panic when pushing images to a registry which uses a misconfigured token service [#21030](https://github.com/docker/docker/pull/21030) ### Plugin system From b5725434c6b01f5e25841d0d5165fd5b68187dca Mon Sep 17 00:00:00 2001 From: Tibor Vass Date: Wed, 9 Mar 2016 13:38:57 -0500 Subject: [PATCH 3/3] Update CHANGELOG with reverts Signed-off-by: Tibor Vass (cherry picked from commit 320d17b2a2b42a71089b7109797dc4c0f6a06fa8) --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fa61646fe..3d7864de8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,6 @@ be found. - Fix Docker client exiting with an "Unrecognized input header" error [#20706](https://github.com/docker/docker/pull/20706) - Fix Docker exiting if Exec is started with both `AttachStdin` and `Detach` [#20647](https://github.com/docker/docker/pull/20647) -- Fix loss of output in short-lived containers [#20729](https://github.com/docker/docker/pull/20729) -- Fix an issue that caused the client to hang if the container process died [#20967](https://github.com/docker/docker/pull/20967) ### Distribution