mirror of https://github.com/docker/docs.git
commit
48f047b046
83
CHANGELOG.md
83
CHANGELOG.md
|
@ -1,5 +1,88 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
# 0.5.5 (2015-12-28)
|
||||||
|
|
||||||
|
General
|
||||||
|
|
||||||
|
- `env`
|
||||||
|
- Better error message if swarm is down
|
||||||
|
- Add quotes to command if there are spaces in the path
|
||||||
|
- Fix Powershell env hints
|
||||||
|
- Default to cmd shell on windows
|
||||||
|
- Detect fish shell
|
||||||
|
- `scp`
|
||||||
|
- Ignore empty ssh key
|
||||||
|
- `stop`, `start`, `kill`
|
||||||
|
- Add feedback to the user
|
||||||
|
- `rm`
|
||||||
|
- Now works when `config.json` is not found
|
||||||
|
- `ssh`
|
||||||
|
- Disable ControlPath
|
||||||
|
- Log which SSH client is used
|
||||||
|
- `ls`
|
||||||
|
- Listing is now faster by reducing calls to the driver
|
||||||
|
- Shows if the active machine is a swarm cluster
|
||||||
|
|
||||||
|
Build
|
||||||
|
|
||||||
|
- Automate 90% of the release process
|
||||||
|
- Upgrade to Go 1.5.2
|
||||||
|
- Don't build 32bits binaries for Linux and OSX
|
||||||
|
- Prevent makefile from defaulting to using containers
|
||||||
|
|
||||||
|
Misc
|
||||||
|
|
||||||
|
- Update docker-machine version
|
||||||
|
- Updated the bash completion with new options added
|
||||||
|
- Bugsnag: Retrieve windows version on non-english OS
|
||||||
|
|
||||||
|
Drivers
|
||||||
|
|
||||||
|
- Amazon EC2
|
||||||
|
- Convert API calls to official SDK
|
||||||
|
- Make DeviceName configurable
|
||||||
|
- Digital Ocean
|
||||||
|
- Custom SSH port support
|
||||||
|
- Generic
|
||||||
|
- Don't support `kill` since `stop` is not supported
|
||||||
|
- Google
|
||||||
|
- Coreos provisionning
|
||||||
|
- Hyper-V
|
||||||
|
- Lot's of code simplifications
|
||||||
|
- Pre-Check that the user is an Administrator
|
||||||
|
- Pre-Check that the virtual switch exists
|
||||||
|
- Add Environment variables for each flag
|
||||||
|
- Fix how Powershell is detected
|
||||||
|
- VSwitch name should be saved to config.json
|
||||||
|
- Add a flag to set the CPU count
|
||||||
|
- Close handle after copying boot2docker.iso into vm folder - will otherwise keep hyper-v from starting vm
|
||||||
|
- Update Boot2Docker cache in PreCreateCheck phase
|
||||||
|
- OpenStack
|
||||||
|
- Filter floating IPs by tenant ID
|
||||||
|
- Virtualbox
|
||||||
|
- Reject duplicate hostonlyifs Name/IP with clear message
|
||||||
|
- Detect when hostonlyif can't be created. Point to known working version of VirtualBox
|
||||||
|
- Don't create the VM if no hardware virtualization is available and add a flag to force create
|
||||||
|
- Add `VBox.log` to bugsnag crashreport
|
||||||
|
- Update Boot2Docker cache in PreCreateCheck phase
|
||||||
|
- Detect Incompatibility with Hyper-v
|
||||||
|
- VSphere
|
||||||
|
- Rewrite driver to work with govmomi instead of wrapping govc
|
||||||
|
- All
|
||||||
|
- Change host restart to use the driver implementation
|
||||||
|
- Fix truncated logs
|
||||||
|
- Increase heartbeat interval and timeout
|
||||||
|
|
||||||
|
Provisioners
|
||||||
|
|
||||||
|
- Download latest Boot2Docker if it is out-of-date
|
||||||
|
- Add swarm config to coreos
|
||||||
|
- All provisioners now honor `engine-install-url`
|
||||||
|
|
||||||
|
# 0.5.4 (2015-12-28)
|
||||||
|
|
||||||
|
This is a patch release to fix a regression with STDOUT/STDERR behavior (#2587).
|
||||||
|
|
||||||
# 0.5.3 (2015-12-14)
|
# 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.
|
**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.
|
||||||
|
|
|
@ -32,24 +32,24 @@ instructions in the next section.
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.4/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.5.5/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
|
||||||
chmod +x /usr/local/bin/docker-machine
|
chmod +x /usr/local/bin/docker-machine
|
||||||
|
|
||||||
OSX:
|
OSX:
|
||||||
|
|
||||||
$ curl -L https://github.com/docker/machine/releases/download/v0.5.4/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
|
$ curl -L https://github.com/docker/machine/releases/download/v0.5.5/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
|
||||||
chmod +x /usr/local/bin/docker-machine
|
chmod +x /usr/local/bin/docker-machine
|
||||||
|
|
||||||
Windows (using Git Bash):
|
Windows (using Git Bash):
|
||||||
|
|
||||||
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
|
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
|
||||||
curl -L https://github.com/docker/machine/releases/download/v0.5.4/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
|
curl -L https://github.com/docker/machine/releases/download/v0.5.5/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
|
||||||
chmod +x "$HOME/bin/docker-machine.exe"
|
chmod +x "$HOME/bin/docker-machine.exe"
|
||||||
|
|
||||||
3. Check the installation by displaying the Machine version:
|
3. Check the installation by displaying the Machine version:
|
||||||
|
|
||||||
$ docker-machine version
|
$ docker-machine version
|
||||||
docker-machine version 0.5.3
|
docker-machine version 0.5.5, build 02c4254
|
||||||
|
|
||||||
## Installing bash completion scripts
|
## Installing bash completion scripts
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import "fmt"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// Version should be updated by hand at each release
|
// Version should be updated by hand at each release
|
||||||
Version = "0.5.5-dev"
|
Version = "0.5.5"
|
||||||
|
|
||||||
// GitCommit will be overwritten automatically by the build system
|
// GitCommit will be overwritten automatically by the build system
|
||||||
GitCommit = "HEAD"
|
GitCommit = "HEAD"
|
||||||
|
|
Loading…
Reference in New Issue