Browse code

Merge pull request #30515 from vieux/1.13.1-rc1-changelog

bump to 1.13.1-rc1

Victor Vieux authored on 2017/01/28 06:10:39
Showing 2 changed files
... ...
@@ -5,6 +5,47 @@ information on the list of deprecated flags and APIs please have a look at
5 5
 https://docs.docker.com/engine/deprecated/ where target removal dates can also
6 6
 be found.
7 7
 
8
+## 1.13.1 (2017-02-06)
9
+
10
+**IMPORTANT**: In Docker 1.13, the managed plugin api changed, as compared to the experimental
11
+version introduced in Docker 1.12. You must **uninstall** plugins which you installed with Docker 1.12
12
+_before_ upgrading to Docker 1.13. You can uninstall plugins using the `docker plugin rm` command.
13
+
14
+If you have already upgraded to Docker 1.13 without uninstalling
15
+previously-installed plugins, you may see this message when the Docker daemon
16
+starts:
17
+
18
+    Error starting daemon: json: cannot unmarshal string into Go value of type types.PluginEnv
19
+
20
+To manually remove all plugins and resolve this problem, take the following steps:
21
+
22
+1. Remove plugins.json from: `/var/lib/docker/plugins/`.
23
+2. Restart Docker. Verify that the Docker daemon starts with no errors.
24
+3. Reinstall your plugins.
25
+
26
+### Contrib
27
+
28
+* Do not require a custom build of tini [#28454](https://github.com/docker/docker/pull/28454)
29
+* Upgrade to Go 1.7.4 [#29142](https://github.com/docker/docker/pull/29142)
30
+
31
+### Remote API (v1.25) & Client
32
+
33
++ Support secrets in docker stack deploy with compose file [#30144](https://github.com/docker/docker/pull/30144)
34
+
35
+### Runtime
36
+
37
+* Fix size issue in `docker system df` [#30378](https://github.com/docker/docker/pull/30378)
38
+* Fix error on `docker inspect` when Swarm certificates were expired. [#29246](https://github.com/docker/docker/pull/29246)
39
+* Fix deadlock on v1 plugin with activate error [#30408](https://github.com/docker/docker/pull/30408)
40
+
41
+### Networking
42
+
43
+* Fix network plugins [#30332](https://github.com/docker/docker/pull/30332)
44
+
45
+### Windows
46
+
47
+* Fix small regression with old plugins in Windows [#30150](https://github.com/docker/docker/pull/30150)
48
+
8 49
 ## 1.13.0 (2017-01-18)
9 50
 
10 51
 **IMPORTANT**: In Docker 1.13, the managed plugin api changed, as compared to the experimental
... ...
@@ -24,6 +65,7 @@ To manually remove all plugins and resolve this problem, take the following step
24 24
 3. Reinstall your plugins.
25 25
 
26 26
 ### Builder
27
+
27 28
 + Add capability to specify images used as a cache source on build. These images do not need to have local parent chain and can be pulled from other registries [#26839](https://github.com/docker/docker/pull/26839)
28 29
 + (experimental) Add option to squash image layers to the FROM image after successful builds [#22641](https://github.com/docker/docker/pull/22641)
29 30
 * Fix dockerfile parser with empty line after escape [#24725](https://github.com/docker/docker/pull/24725)
... ...
@@ -38,6 +80,7 @@ To manually remove all plugins and resolve this problem, take the following step
38 38
 + Handle env case-insensitive on Windows [#28725](https://github.com/docker/docker/pull/28725)
39 39
 
40 40
 ### Contrib
41
+
41 42
 + Add support for building docker debs for Ubuntu 16.04 Xenial on PPC64LE [#23438](https://github.com/docker/docker/pull/23438)
42 43
 + Add support for building docker debs for Ubuntu 16.04 Xenial on s390x [#26104](https://github.com/docker/docker/pull/26104)
43 44
 + Add support for building docker debs for Ubuntu 16.10 Yakkety Yak on PPC64LE [#28046](https://github.com/docker/docker/pull/28046)
... ...
@@ -1 +1 @@
1
-1.13.0
1
+1.13.1-rc1