This repository was archived by the owner on Feb 1, 2021. It is now read-only.
File tree 2 files changed +41
-1
lines changed
2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.1.0 (2015-01-14)
4
+
5
+ #### Scheduler
6
+
7
+ - Add support for container rescheduling on node failure. (experimental)
8
+ - Use failureCount as a secondary health indicator
9
+ - Add swarm container create retry option
10
+ - Fixed the way soft affinities and handled
11
+
12
+ #### API
13
+
14
+ - Support private registry on docker run
15
+ - Expose error and last update time in docker info
16
+ - Sort images by Created
17
+ - Fix error when inspect on unhealthy node
18
+ - Prevent panic in filters when container has no name
19
+ - Add buildtime, kernelversion and experimental to API version
20
+
21
+ #### Node Managment
22
+
23
+ - Add a random delay to avoid synchronized registration at swarm join
24
+ - Use engine connection error to fail engine fast
25
+ - Introduce pending state
26
+
27
+ #### Mesos integration
28
+
29
+ - Rename slave to agent
30
+ - Upgrade tests to use mesos 0.25
31
+ - Code refactors
32
+ - Improve debug output
33
+ - Enable checkpoint failover in FrameworkInfo
34
+ - Fix timeout when pulling images
35
+ - Add timeout to refuse offers
36
+
37
+ #### Misc
38
+
39
+ - Fix license grant
40
+ - Documentation update
41
+ - Use discovery from docker/docker
42
+
3
43
## 1.0.1 (2015-12-09)
4
44
5
45
#### Scheduler
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package version
2
2
3
3
var (
4
4
// VERSION should be updated by hand at each release
5
- VERSION = "1.0.1 "
5
+ VERSION = "1.1.0 "
6
6
7
7
// GITCOMMIT will be overwritten automatically by the build system
8
8
GITCOMMIT = "HEAD"
You can’t perform that action at this time.
0 commit comments