diff --git a/.kitchen.cloud.yml b/.kitchen.cloud.yml index ba38e0c1..72e2457c 100644 --- a/.kitchen.cloud.yml +++ b/.kitchen.cloud.yml @@ -11,7 +11,7 @@ platforms: - name: ubuntu-1004 driver_plugin: digitalocean driver_config: - image_id: 14097 + image_id: 5566812 flavor_id: 63 region_id: 4 ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %> @@ -22,7 +22,7 @@ platforms: - name: ubuntu-1204 driver_plugin: digitalocean driver_config: - image_id: 1505447 + image_id: 5588928 flavor_id: 63 region_id: 4 ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %> @@ -30,21 +30,10 @@ platforms: run_list: - recipe[apt] -- name: ubuntu-1304 +- name: ubuntu-1404 driver_plugin: digitalocean driver_config: - image_id: 350076 - flavor_id: 63 - region_id: 4 - ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %> - ssh_key: <%= ENV['DIGITAL_OCEAN_SSH_KEY_PATH'] %> - run_list: - - recipe[apt] - -- name: ubuntu-1310 - driver_plugin: digitalocean - driver_config: - image_id: 1505699 + image_id: 5141286 flavor_id: 63 region_id: 4 ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %> diff --git a/Berksfile b/Berksfile index 91b26e66..ce75a406 100644 --- a/Berksfile +++ b/Berksfile @@ -1,4 +1,4 @@ -site :opscode +source 'http://api.berkshelf.com' metadata diff --git a/CHANGELOG.md b/CHANGELOG.md index 4612255f..66963d5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ apt Cookbook CHANGELOG ====================== This file is used to list changes made in each version of the apt cookbook. +v2.5.0 (2014-08-12) +------------------- +- Add unattended-upgrades recipe +- Only update the cache for the created repository +- Added ChefSpec matchers and default_action for resources +- Avoid cloning resource attributes +- Minor documentation updates + v2.4.0 (2014-05-15) ------------------- - [COOK-4534]: Add option to update apt cache at compile time diff --git a/metadata.rb b/metadata.rb index b7d1c72b..d828f14d 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ license 'Apache 2.0' description 'Configures apt and apt services and LWRPs for managing apt repositories and preferences' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '2.4.1' +version '2.5.0' recipe 'apt', 'Runs apt-get update during compile phase and sets up preseed directories' recipe 'apt::cacher-ng', 'Set up an apt-cacher-ng caching proxy' recipe 'apt::cacher-client', 'Client for the apt::cacher-ng caching proxy'