2010-09-28 00:14:15 +00:00
|
|
|
## 0.6.4 (unreleased)
|
|
|
|
|
2010-09-30 06:47:17 +00:00
|
|
|
- SSH gives error message if `ssh` binary is not found. [GH-161]
|
2010-09-30 06:37:24 +00:00
|
|
|
- SSH gives proper error message if VM is not running. [GH-167]
|
2010-09-30 06:31:21 +00:00
|
|
|
- Fix some issues with undefined constants in command errors.
|
2010-09-28 00:14:15 +00:00
|
|
|
|
2010-09-28 00:13:47 +00:00
|
|
|
## 0.6.1, 0.6.2, 0.6.3 (September 27, 2010)
|
2010-09-27 18:23:16 +00:00
|
|
|
|
2010-09-28 00:13:47 +00:00
|
|
|
A lot of quick releases which all were to fix issues with Ruby 1.8.7
|
|
|
|
compatibility.
|
2010-09-27 18:23:16 +00:00
|
|
|
|
|
|
|
## 0.6.0 (September 27, 2010)
|
2010-08-24 04:18:01 +00:00
|
|
|
|
2010-09-20 14:55:13 +00:00
|
|
|
- VM name now defaults to the name of the containing folder, plus a timestamp.
|
|
|
|
This should make it easier to identify VMs in the VirtualBox GUI.
|
2010-09-15 15:19:38 +00:00
|
|
|
- Exposed Vagrant test helpers in `Vagrant::TestHelpers` for plugins to easily
|
|
|
|
test themselves against Vagrant environments.
|
2010-09-15 05:10:51 +00:00
|
|
|
- **Plugins** have landed. Plugins are simply gems which have a `vagrant_init.rb`
|
|
|
|
file somewhere in their load path. Please read the documentation on
|
|
|
|
vagrantup.com before attempting to create a plugin (which is very easy)
|
|
|
|
for more information on how it all works and also some guidelines.
|
2010-09-13 05:01:55 +00:00
|
|
|
- `vagrant package` now takes a `--vagrantfile` option to specify a
|
|
|
|
Vagrantfile to package. The `--include` approach for including a Vagrantfile
|
|
|
|
no longer works (previously built boxes will continue to work).
|
|
|
|
- `vagrant package` has new logic with regards to the `--include` option
|
|
|
|
depending on if the file path is relative or absolute (they can be
|
|
|
|
intermixed):
|
|
|
|
* _Relative_ paths are copied directly into the box, preserving
|
|
|
|
their path. So `--include lib/foo` would be in the box as "lib/foo"
|
|
|
|
* _Absolute_ paths are simply copied files into the root of the
|
|
|
|
box. So `--include /lib/foo` would be in the box as "foo"
|
2010-09-12 23:10:09 +00:00
|
|
|
- "vagrant_main" is no longer the default run list. Instead, chef
|
|
|
|
run list starts empty. It is up to you to specify all recipes in
|
|
|
|
the Vagrantfile now.
|
2010-09-12 22:38:54 +00:00
|
|
|
- Fixed various issues with certain action middleware not working if
|
|
|
|
the VM was not created.
|
2010-09-09 07:28:21 +00:00
|
|
|
- SSH connection is retried 5 times if there is a connection refused.
|
|
|
|
Related to GH-140.
|
2010-09-09 03:59:22 +00:00
|
|
|
- If `http_proxy` environmental variable is set, it will be used as the proxy
|
|
|
|
box adding via http.
|
2010-09-05 18:26:38 +00:00
|
|
|
- Remove `config.ssh.password`. It hasn't been used for a few versions
|
|
|
|
now and was only kept around to avoid exceptions in Vagrantfiles.
|
2010-09-05 17:57:33 +00:00
|
|
|
- Configuration is now validated so improper input can be found in
|
|
|
|
Vagrantfiles.
|
2010-09-03 21:58:27 +00:00
|
|
|
- Fixed issue with not detecting Vagrantfile at root directory ("/").
|
2010-09-03 21:22:34 +00:00
|
|
|
- Vagrant now gives a nice error message if there is a syntax error
|
|
|
|
in any Vagrantfile. [GH-154]
|
2010-09-03 04:20:47 +00:00
|
|
|
- The format of the ".vagrant" file which stores persisted VMs has
|
|
|
|
changed. This is **backwards incompatible**. Will provide an upgrade
|
|
|
|
utility prior to 0.6 launch.
|
2010-08-27 07:08:00 +00:00
|
|
|
- Every [expected] Vagrant error now exits with a clean error message
|
|
|
|
and a unique exit status, and raises a unique exception (if you're
|
|
|
|
scripting Vagrant).
|
|
|
|
- Added I18n gem dependency for pulling strings into clean YML files.
|
|
|
|
Vagrant is now localizable as a side effect! Translations welcome.
|
2010-08-26 05:51:35 +00:00
|
|
|
- Fixed issue with "Waiting for cleanup" message appearing twice in
|
|
|
|
some cases. [GH-145]
|
2010-08-25 06:46:10 +00:00
|
|
|
- Converted CLI to use Thor. As a tradeoff, there are some backwards
|
|
|
|
incompatibilities:
|
|
|
|
* `vagrant package` - The `--include` flag now separates filenames
|
|
|
|
by spaces, instead of by commas. e.g. `vagrant package --include x y z`
|
|
|
|
* `vagrant ssh` - If you specify a command to execute using the `--execute`
|
|
|
|
flag, you may now only specify one command (before you were able to
|
|
|
|
specify an arbitrary amount). e.g. `vagrant ssh -e "echo hello"`
|
2010-08-25 06:55:53 +00:00
|
|
|
* `vagrant ssh-config` has become `vagrant ssh_config` due to a limitation
|
|
|
|
in Thor.
|
2010-08-24 04:18:01 +00:00
|
|
|
|
2010-09-07 21:19:06 +00:00
|
|
|
## 0.5.4 (September 7, 2010)
|
|
|
|
|
|
|
|
- Fix issue with the "exec failed" by running on Tiger as well.
|
2010-09-07 21:31:36 +00:00
|
|
|
- Give an error when downloading a box which already exists prior
|
|
|
|
to actually downloading the box.
|
2010-09-07 21:19:06 +00:00
|
|
|
|
2010-08-24 04:16:54 +00:00
|
|
|
## 0.5.3 (August 23, 2010)
|
2010-08-04 03:11:33 +00:00
|
|
|
|
2010-08-20 05:15:47 +00:00
|
|
|
- Add erubis as a dependency since its rendering of `erb` is sane.
|
|
|
|
- Fixed poorly formatted Vagrantfile after `vagrant init`. [GH-142]
|
2010-08-18 20:34:48 +00:00
|
|
|
- Fixed NFS not working properly with multiple NFS folders.
|
2010-08-18 18:40:49 +00:00
|
|
|
- Fixed chef solo provision to work on Windows. It was expanding a linux
|
|
|
|
path which prepended a drive letter onto it.
|
2010-08-04 03:11:33 +00:00
|
|
|
|
2010-08-04 03:10:25 +00:00
|
|
|
## 0.5.2 (August 3, 2010)
|
2010-07-31 18:28:55 +00:00
|
|
|
|
2010-08-04 02:43:39 +00:00
|
|
|
- `vagrant up` can be used as a way to resume the VM as well (same as
|
|
|
|
`vagrant resume`). [GH-134]
|
2010-08-03 16:14:35 +00:00
|
|
|
- Sudo uses "-E" flag to preserve environment for chef provisioners.
|
|
|
|
This fixes issues with CentOS. [GH-133]
|
2010-08-03 02:52:11 +00:00
|
|
|
- Added "IdentitiesOnly yes" to options when `vagrant ssh` is run to
|
|
|
|
avoid "Too Many Authentication Failures" error. [GH-131]
|
2010-08-03 02:44:15 +00:00
|
|
|
- Fix regression with `package` not working. [GH-132]
|
2010-08-02 00:18:17 +00:00
|
|
|
- Added ability to specify box url in `init`, which populates the
|
|
|
|
Vagrantfile with the proper `config.vm.box_url`.
|
2010-07-31 18:28:55 +00:00
|
|
|
|
|
|
|
## 0.5.1 (July 31, 2010)
|
2010-07-29 03:34:29 +00:00
|
|
|
|
2010-07-31 17:46:22 +00:00
|
|
|
- Allow specifying cookbook paths which exist only on the VM in `config.chef.cookbooks_path`.
|
|
|
|
This is used for specifying cookbook paths when `config.chef.recipe_url` is used. [GH-130]
|
|
|
|
See updated chef solo documentation for more information on this.
|
2010-07-31 15:36:33 +00:00
|
|
|
- No longer show "Disabling host only networks..." if no host only networks
|
|
|
|
are destroyed. Quiets `destroy`, `halt`, etc output a bit.
|
2010-07-31 15:03:11 +00:00
|
|
|
- Updated getting started guide to be more up to date and generic. [GH-125]
|
2010-07-31 01:01:12 +00:00
|
|
|
- Fixed error with doing a `vagrant up` when no Vagrantfile existed. [GH-128]
|
2010-07-30 16:38:45 +00:00
|
|
|
- Fixed NFS erroring when NFS wasn't even enabled if `/etc/exports` doesn't
|
|
|
|
exist. [GH-126]
|
2010-07-30 03:26:02 +00:00
|
|
|
- Fixed `vagrant resume` to properly resume a suspended VM. [GH-122]
|
2010-07-30 03:15:38 +00:00
|
|
|
- Fixed `halt`, `destroy`, `reload` to where they failed if the VM was
|
|
|
|
in a saved state. [GH-123]
|
2010-07-29 04:34:28 +00:00
|
|
|
- Added `config.chef.recipe_url` which allows you to specify a URL to
|
|
|
|
a gzipped tar file for chef solo to download cookbooks. See the
|
|
|
|
[chef-solo docs](http://wiki.opscode.com/display/chef/Chef+Solo#ChefSolo-RunningfromaURL) for more information.
|
2010-07-30 03:15:38 +00:00
|
|
|
[GH-121]
|
2010-07-29 03:34:29 +00:00
|
|
|
- Added `vagrant box repackage` which repackages boxes which have
|
|
|
|
been added. This is useful in case you want to redistribute a base
|
2010-07-30 03:15:38 +00:00
|
|
|
box you have but may have lost the actual "box" file. [GH-120]
|
2010-07-29 03:34:29 +00:00
|
|
|
|
|
|
|
## Previous
|
|
|
|
|
|
|
|
The changelog began with version 0.5.1 so any changes prior to that
|
|
|
|
can be seen by checking the tagged releases and reading git commit
|
|
|
|
messages.
|
|
|
|
|