4.3 KiB
4.3 KiB
0.6.1 (unreleased)
0.6.0 (Feb 26, 2014)
BACKWARDS INCOMPATIBILITY:
- Plugin activation is now triggered by the
cache.scope
config and that config is now required. Previous versions of the plugin had it set to:box
but there is no consensus whether:box
and:machine
is better. This is to highlight that you need to think about the caching strategy you are going to use. For more information and to discuss this move please check GH-17. - Because
cache.scope
is now a requirement and in order to reduce the amount of configuration required by the plugin, we enabled automatic bucket detection by default. To revert to the old behavior you can disable it globally from your~/.vagrant.d/Vagrantfile
. - Support for Vagrant < 1.4 is gone, please use a previous plugin version if you are running Vagrant 1.2 / 1.3
- Automatic handling of multiple machine scoped cache dirs from versions prior to 0.3.0 of this plugin was removed.
- Support for
enable_nfs
has been deprecated and will be removed on 0.7.0, please usecache.synced_folder_opts = {type: :nfs}
instead.
FEATURES:
- Warm up cache buckets with files available on guest in case bucket is empty
- Support for offline provisioning of apt-packages by caching
/var/lib/apt/lists
[GH-84] - Support for specifying custom cache bucket synced folder opts
- Support to force disabe the plugin [GH-72]
- Automatically disable the plugin for cloud providers [GH-45]
- Skip configuration of buckets that have been configured already [GH-85]
BUG FIXES:
- Properly fix NFS support for Vagrant 1.4+ [GH-76]
0.5.1 (Dec 20, 2013)
BUG FIXES:
- Fix NFS support for Vagrant 1.4+ [GH-67]
0.5.0 (Nov 8, 2013)
FEATURES:
- Support for [zypper] [GH-54]
0.4.1 (Oct 27, 2013)
BUG FIXES:
- Do not attempt to configure apt-cacher-ng bucket if it is not installed on guest machine.
0.4.0 (Oct 23, 2013)
FEATURES:
BUG FIXES:
- Allow halting nonresponsive machine when plugin is installed [GH-8]
0.3.3 (Sep 11, 2013)
BUG FIXES:
- Automatically create
partial
dir under apt cache bucket dir to allow usage on Ubuntu 10.04 guests [GH-40]
0.3.2 (Aug 14, 2013)
BUG FIXES:
- Prevent errors when caching is disabled and a provisioner is enabled [GH-41]
0.3.1 (Aug 13, 2013)
BUG FIXES:
- Prevent errors when caching is disabled
0.3.0 (Aug 5, 2013)
BACKWARDS INCOMPATIBILITIES:
- Machine scoped cache dirs are now kept on
.vagrant/machines/MACHINE/cache
to allow downloaded packages to be reused between providers. If a single cache directory exists, the plugin will automatically move it to the right place, if multiple directories are found, it will halt execution and will error out, letting the user know what has to be done in order to fix things.
FEATURES:
- Add
file_cache_path
support for Chef. [GH-14] - Reconfigure buckets before each provisioner. [GH-26] / [GH-32]
IMPROVEMENTS:
- Don't error out if a bucket is configured for a non-capable guest. [GH-27]
0.2.0 (July 10, 2013)
FEATURES:
- Support enabling NFS for root cache folder. [GH-7]
- Support RVM bucket
0.1.0 (June 9, 2013)
IMPROVEMENTS:
- Moves from
Vagrant
to recommendedVagrantPlugins
top-level module namespace. [GH-9]
0.0.6 (May 22, 2013)
- Initial public release.