mirror of https://github.com/docker/docs.git
Merge pull request #1640 from vieux/bump-v1.1.0-rc1
Bump version to 1.1.0-rc1
This commit is contained in:
commit
b63b05aabb
40
CHANGELOG.md
40
CHANGELOG.md
|
@ -1,5 +1,45 @@
|
|||
# Changelog
|
||||
|
||||
## 1.1.0 (2015-01-14)
|
||||
|
||||
#### Scheduler
|
||||
|
||||
- Add support for container rescheduling on node failure. (experimental)
|
||||
- Use failureCount as a secondary health indicator
|
||||
- Add swarm container create retry option
|
||||
- Fixed the way soft affinities and handled
|
||||
|
||||
#### API
|
||||
|
||||
- Support private registry on docker run
|
||||
- Expose error and last update time in docker info
|
||||
- Sort images by Created
|
||||
- Fix error when inspect on unhealthy node
|
||||
- Prevent panic in filters when container has no name
|
||||
- Add buildtime, kernelversion and experimental to API version
|
||||
|
||||
#### Node Managment
|
||||
|
||||
- Add a random delay to avoid synchronized registration at swarm join
|
||||
- Use engine connection error to fail engine fast
|
||||
- Introduce pending state
|
||||
|
||||
#### Mesos integration
|
||||
|
||||
- Rename slave to agent
|
||||
- Upgrade tests to use mesos 0.25
|
||||
- Code refactors
|
||||
- Improve debug output
|
||||
- Enable checkpoint failover in FrameworkInfo
|
||||
- Fix timeout when pulling images
|
||||
- Add timeout to refuse offers
|
||||
|
||||
#### Misc
|
||||
|
||||
- Fix license grant
|
||||
- Documentation update
|
||||
- Use discovery from docker/docker
|
||||
|
||||
## 1.0.1 (2015-12-09)
|
||||
|
||||
#### Scheduler
|
||||
|
|
|
@ -2,7 +2,7 @@ package version
|
|||
|
||||
var (
|
||||
// VERSION should be updated by hand at each release
|
||||
VERSION = "1.0.1"
|
||||
VERSION = "1.1.0"
|
||||
|
||||
// GITCOMMIT will be overwritten automatically by the build system
|
||||
GITCOMMIT = "HEAD"
|
||||
|
|
Loading…
Reference in New Issue