3.3 KiB
3.3 KiB
0.6.0 (unreleased)
- 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.
- Fixed issue with "Waiting for cleanup" message appearing twice in some cases. [GH-145]
- Converted CLI to use Thor. As a tradeoff, there are some backwards
incompatibilities:
vagrant package- The--includeflag now separates filenames by spaces, instead of by commas. e.g.vagrant package --include x y zvagrant ssh- If you specify a command to execute using the--executeflag, you may now only specify one command (before you were able to specify an arbitrary amount). e.g.vagrant ssh -e "echo hello"vagrant ssh-confighas becomevagrant ssh_configdue to a limitation in Thor.
0.5.3 (August 23, 2010)
- Add erubis as a dependency since its rendering of
erbis sane. - Fixed poorly formatted Vagrantfile after
vagrant init. [GH-142] - Fixed NFS not working properly with multiple NFS folders.
- Fixed chef solo provision to work on Windows. It was expanding a linux path which prepended a drive letter onto it.
0.5.2 (August 3, 2010)
vagrant upcan be used as a way to resume the VM as well (same asvagrant resume). [GH-134]- Sudo uses "-E" flag to preserve environment for chef provisioners. This fixes issues with CentOS. [GH-133]
- Added "IdentitiesOnly yes" to options when
vagrant sshis run to avoid "Too Many Authentication Failures" error. [GH-131] - Fix regression with
packagenot working. [GH-132] - Added ability to specify box url in
init, which populates the Vagrantfile with the properconfig.vm.box_url.
0.5.1 (July 31, 2010)
- Allow specifying cookbook paths which exist only on the VM in
config.chef.cookbooks_path. This is used for specifying cookbook paths whenconfig.chef.recipe_urlis used. [GH-130] See updated chef solo documentation for more information on this. - No longer show "Disabling host only networks..." if no host only networks
are destroyed. Quiets
destroy,halt, etc output a bit. - Updated getting started guide to be more up to date and generic. [GH-125]
- Fixed error with doing a
vagrant upwhen no Vagrantfile existed. [GH-128] - Fixed NFS erroring when NFS wasn't even enabled if
/etc/exportsdoesn't exist. [GH-126] - Fixed
vagrant resumeto properly resume a suspended VM. [GH-122] - Fixed
halt,destroy,reloadto where they failed if the VM was in a saved state. [GH-123] - Added
config.chef.recipe_urlwhich allows you to specify a URL to a gzipped tar file for chef solo to download cookbooks. See the chef-solo docs for more information. [GH-121] - Added
vagrant box repackagewhich repackages boxes which have been added. This is useful in case you want to redistribute a base box you have but may have lost the actual "box" file. [GH-120]
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.