- ...
- add Vagrant 1.8.5 compatibility and fix TravisCI build (see #64)
- decouple from vagrant-winrm-syncedfolders, which now needs to be installed separately (see #65, which reverts #51 and applies #50. thanks @chrisbaldauf!)
- ensure rsync does not keep stale files by adding the
--del
option (see #61, thanks @stephencooke!) - add support for
vagrant share
command (see #67, thanks @nigelgbanks!) - using the vagrant builtin SyncedFolder implementation (see #68), which also fixes:
- fix bug where the vagrant-winrm-syncedfolders plugin dependency is not properly loaded (see #49, thanks @chrisbaldauf for the fix!)
- extract the WinRM synced folder mechanism into a separate plugin (see #47, thanks @chrisbaldauf!)
- use the
Vagrant::Action::Builtin::SyncedFolders
for provisioning windows guests. This will use (the much faster) SMB synced folders if possible (see README), otherwise fall back to the WinRM implementation above (see #46, thanks @chrisbaldauf!) - clean up the example Vagrantfile and add windows examples #48
- fix bug where WinRM file sync fails occasionally (retry 3 times) (#43, thanks @chrisbaldauf!)
- fix bug where only the first folder is synced on Windows (#44, thanks @chrisbaldauf!)
- quote ssh usernames to support active directory style
domain/user
logins (#38, thanks @chrisbaldauf!) - document / validate vagrant 1.6+ compatibility which is required for winrm (#40, thanks @LiamK for reporting!)
- add missing translation for
vagrant status
(#35, thanks @warrenseine for reporting!) - actually check whether a server is linked before doing any other action (fixes #34, thanks @warrenseine for reporting!)
- fix the annoying network configuration warning so that it's shown only when necessary (#37)
- fix bug where
vagrant help
failed due a leftover command declaration (#32, thanks @chrisbaldauf for reporting!)
- add
reload
functionality (#31, thanks @jdaviscooke!)
- fix missing parameters in translation for winrm (#30, thanks @chrisbaldauf!)
- clean up Rakefile and fix travis-ci build
- update licensing information and add license to gemspec
- add support for windows managed servers via winrm (#29, thanks @chrisbaldauf!)
Updates for improving the experience with Vagrant 1.5+ (but still keeping backwards-compatibility with 1.2):
- fix warning when using Vagrant > 1.5 (#19, thanks @nicolasbrechet!)
- use the tknerr/managed-server-dummy vagrantcloud box (#22)
- updated the development environment and sample Vagrantfile for this project to latest Vagrant and plugin versions
- fix rsync command for Vagrant 1.4 compatibility (#15)
- chown synced dirs recursively (#13)
- minor README fixes (#11, #12, #16)
- Initial release