mirror of https://github.com/docker/docs.git
Merge pull request #2574 from dgageot/bump_v_0.6.0-dev
Update to v0.6.0-dev
This commit is contained in:
commit
df25736479
69
CHANGELOG.md
69
CHANGELOG.md
|
@ -1,5 +1,74 @@
|
|||
# Changelog
|
||||
|
||||
# 0.5.3 (2015-12-14)
|
||||
|
||||
**Please note**: With this release Machine will be reverting back to distribution in a single binary, which is more efficient on bandwidth and hard disk space. All the core driver plugins are now included in the main binary. You will want to delete the old driver binaries that you might have in your path.
|
||||
|
||||
e.g.:
|
||||
|
||||
```console
|
||||
$ rm /usr/local/bin/docker-machine-driver-{amazonec2,azure,digitalocean,exoscale,generic,google,hyperv,none,openstack,rackspace,softlayer,virtualbox,vmwarefusion,vmwarevcloudair,vmwarevsphere}
|
||||
```
|
||||
|
||||
Non-core driver plugins should still work as intended (in externally distributed binaries of the form `docker-machine-driver-name`. Please report any issues you encounter them with externally loaded plugins.
|
||||
|
||||
General
|
||||
|
||||
- Optionally report crashes to Bugsnag to help us improve docker-machine
|
||||
- Fix multiple nil dereferences in `docker-machine ls` command
|
||||
- Improve the build and CI
|
||||
- `docker-machine env` now supports emacs
|
||||
- Run Swarm containers in provisioning step using Docker API instead of SSH/shell
|
||||
- Show docker daemon version in `docker-machine ls`
|
||||
- `docker-machine ls` can filter by engine label
|
||||
- `docker-machine ls` filters are case insensitive
|
||||
- `--timeout` flag for `docker-machine ls`
|
||||
- Logs use `logrus` library
|
||||
- Swarm container network is now `host`
|
||||
- Added advertise flag to Swarm manager template
|
||||
- Fix `help` flag for `docker-machine ssh`
|
||||
- Add confirmation `-y` flag to `docker-machine rm`
|
||||
- Fix `docker-machine config` for fish
|
||||
- Embed all core drivers in `docker-machine` binary to reduce the bundle from 120M to 15M
|
||||
|
||||
Drivers
|
||||
|
||||
- Generic
|
||||
- Support password protected ssh keys though ssh-agent
|
||||
- Support DNS names
|
||||
- Virtualbox
|
||||
- Show a warning if virtualbox is too old
|
||||
- Recognize yet another Hardware Virtualization issue pattern
|
||||
- Fix Hardware Virtualization on Linux/AMD
|
||||
- Add the `--virtualbox-host-dns-resolver` flag
|
||||
- Allow virtualbox DNSProxy override
|
||||
- Google
|
||||
- Open firewall port for Swarm when needed
|
||||
- VMware Fusion
|
||||
- Explicitly set umask before invoking vmrun in vmwarefusion
|
||||
- Activate the plugin only on OSX
|
||||
- Add id/gid option to mount when using vmhgfs
|
||||
- Fix for vSphere driver boot2docker ISO issues
|
||||
- Digital Ocean
|
||||
- Support for creating Droplets with Cloud-init User Data
|
||||
- Openstack
|
||||
- Sanitize keynames by replacing dots with underscores
|
||||
- All
|
||||
- Most base images are now set to `Ubuntu 15.10`
|
||||
- Fix compatibility with drivers developed with docker-machine 0.5.0
|
||||
- Better error report for broken/incompatible drivers
|
||||
- Don't break `config.json` configuration when the disk is full
|
||||
|
||||
Provisioners
|
||||
|
||||
- Increase timeout for installing boot2docker
|
||||
- Support `Ubuntu 15.10`
|
||||
|
||||
Misc
|
||||
|
||||
- Improve the documentation
|
||||
- Update known drivers list
|
||||
|
||||
# 0.5.2 (2015-11-30)
|
||||
|
||||
General
|
||||
|
|
|
@ -4,7 +4,7 @@ import "fmt"
|
|||
|
||||
var (
|
||||
// Version should be updated by hand at each release
|
||||
Version = "0.5.3"
|
||||
Version = "0.6.0-dev"
|
||||
|
||||
// GitCommit will be overwritten automatically by the build system
|
||||
GitCommit = "HEAD"
|
||||
|
|
Loading…
Reference in New Issue