From 35fc88bcd966a71991c24aecf4f19e8427f30616 Mon Sep 17 00:00:00 2001 From: jose-bigio Date: Wed, 18 Apr 2018 09:51:43 -0700 Subject: [PATCH 1/3] Update changelog for 18.03.1 Signed-off-by: jose-bigio --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e394968b34..dc1ced477b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ https://docs.docker.com/engine/deprecated/ where you can find the target removal ## 18.03.1-ce (2018-04-DD) +### Client + +- Fix error with merge composefile with networks [docker/cli#983](https://github.com/docker/cli/pull/983) +- Fix stack redeploying with service after `--force` [docker/cli#963](https://github.com/docker/cli/pull/963) + ### Runtime - Fix AppArmor profiles not being applied to `docker exec` processes [moby/moby#36466](https://github.com/moby/moby/pull/36466) @@ -13,6 +18,12 @@ https://docs.docker.com/engine/deprecated/ where you can find the target removal - Daemon/stats: more resilient cpu sampling [moby/moby#36519](https://github.com/moby/moby/pull/36519) * Containerd: update to 1.0.3 release [moby/moby#36749](https://github.com/moby/moby/pull/36749) - Fix Windows layer leak when write fails [moby/moby#36728](https://github.com/moby/moby/pull/36728) +* Don't make container mount unbindable [moby/moby#36768](https://github.com/moby/moby/pull/36768) +* Ensure hijacked connection implements a CloseWrite fucntion [moby/moby#36517](https://github.com/moby/moby/pull/36517) + +### Swarm Mode + +* Increase raft Election tick to 10 times Heartbeat tick [moby/moby#36672](https://github.com/moby/moby/pull/36672) ## 18.03.0-ce (2018-03-21) From a78f916dfbb7ff9baff3f171450b9652b11f529d Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 19 Apr 2018 00:25:35 +0000 Subject: [PATCH 2/3] Add more updates for 18.03.1-ce Signed-off-by: Eli Uriegas --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1ced477b..25fac51816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,8 @@ https://docs.docker.com/engine/deprecated/ where you can find the target removal ### Client - Fix error with merge composefile with networks [docker/cli#983](https://github.com/docker/cli/pull/983) -- Fix stack redeploying with service after `--force` [docker/cli#963](https://github.com/docker/cli/pull/963) +* Fix docker stack deploy re-deploying services after the service was updated with `--force` [docker/cli#963](https://github.com/docker/cli/pull/963) +* Fix docker version output alignment [docker/cli#965](https://github.com/docker/cli/pull/965) ### Runtime @@ -20,11 +21,21 @@ https://docs.docker.com/engine/deprecated/ where you can find the target removal - Fix Windows layer leak when write fails [moby/moby#36728](https://github.com/moby/moby/pull/36728) * Don't make container mount unbindable [moby/moby#36768](https://github.com/moby/moby/pull/36768) * Ensure hijacked connection implements a CloseWrite fucntion [moby/moby#36517](https://github.com/moby/moby/pull/36517) +- Fix Daemon panics on container export after a daemon restart [moby/moby/36586](https://github.com/moby/moby/pull/36586) +- Fix digest cache being removed on autherrors [moby/moby#36509](https://github.com/moby/moby/pull/36509) ### Swarm Mode * Increase raft Election tick to 10 times Heartbeat tick [moby/moby#36672](https://github.com/moby/moby/pull/36672) +### Networking + +* Gracefully remove LB endpoints from services [docker/libnetwork#2112](https://github.com/docker/libnetwork/pull/2112) +* Retry other external DNS servers on ServFail [docker/libnetwork#2121](https://github.com/docker/libnetwork/pull/2121) +* Improve scalabiltiy of bridge network isolation rules [docker/libnetwork#2117](https://github.com/docker/libnetwork/pull/2117) +* Allow for larger preset property values, do not override [docker/libnetwork#2124](https://github.com/docker/libnetwork/pull/2124) +* Prevent panics on concurrent reads/writes when calling `changeNodeState` [docker/libnetwork#2136](https://github.com/docker/libnetwork/pull/2136) + ## 18.03.0-ce (2018-03-21) ### Builder From 6f1fe539658b5cb317f39729f03506e8e45cb9ee Mon Sep 17 00:00:00 2001 From: Andrew Hsu Date: Thu, 19 Apr 2018 06:15:27 +0000 Subject: [PATCH 3/3] fixup changelog Signed-off-by: Andrew Hsu --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25fac51816..0c2f354f23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ https://docs.docker.com/engine/deprecated/ where you can find the target removal ### Client -- Fix error with merge composefile with networks [docker/cli#983](https://github.com/docker/cli/pull/983) +- Fix error with merge compose file with networks [docker/cli#983](https://github.com/docker/cli/pull/983) * Fix docker stack deploy re-deploying services after the service was updated with `--force` [docker/cli#963](https://github.com/docker/cli/pull/963) * Fix docker version output alignment [docker/cli#965](https://github.com/docker/cli/pull/965) @@ -20,9 +20,11 @@ https://docs.docker.com/engine/deprecated/ where you can find the target removal * Containerd: update to 1.0.3 release [moby/moby#36749](https://github.com/moby/moby/pull/36749) - Fix Windows layer leak when write fails [moby/moby#36728](https://github.com/moby/moby/pull/36728) * Don't make container mount unbindable [moby/moby#36768](https://github.com/moby/moby/pull/36768) -* Ensure hijacked connection implements a CloseWrite fucntion [moby/moby#36517](https://github.com/moby/moby/pull/36517) - Fix Daemon panics on container export after a daemon restart [moby/moby/36586](https://github.com/moby/moby/pull/36586) - Fix digest cache being removed on autherrors [moby/moby#36509](https://github.com/moby/moby/pull/36509) +- Make sure plugin container is removed on failure [moby/moby#36715](https://github.com/moby/moby/pull/36715) +- Copy: avoid using all system memory with authz plugins [moby/moby#36595](https://github.com/moby/moby/pull/36595) +- Relax some libcontainerd client locking [moby/moby#36848](https://github.com/moby/moby/pull/36848) ### Swarm Mode