summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAJ Christensen <aj@opscode.com>2009-10-27 06:24:44 +1300
committerAJ Christensen <aj@opscode.com>2009-10-27 09:40:41 +1300
commit900196fcc039b17dca6a15d6c640178dfba8a34d (patch)
tree05c91a8db3a099310afce787f38e4ba837950992
parent42a9e12c5318a9bbf4882528c50395d9de27c72e (diff)
downloadchef-900196fcc039b17dca6a15d6c640178dfba8a34d.tar.gz
Release Chef 0.7.140.7.14
-rw-r--r--CHANGELOG26
-rw-r--r--chef-server-slice/Rakefile2
-rw-r--r--chef-server/Rakefile2
-rw-r--r--chef/Rakefile4
-rw-r--r--chef/lib/chef.rb2
5 files changed, 31 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b04851fa99..87b89b4099 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,29 @@
+Mon Sep 27 6:22:00 NZST 2009
+
+Release Notes - Chef - Version 0.7.14
+
+** Bug
+ * [CHEF-454] - Centos4 yum provider failure
+ * [CHEF-565] - dpkg provider fails at packages with a dash in it, causing packages to be re-installed on every chef run
+ * [CHEF-570] - Portage package provider uses wrong regexp in load_current_resource
+ * [CHEF-577] - provider.rb doesn't give @definitions a default value of Hash.new, causing epic fail in resource DSL
+ * [CHEF-588] - RC is missing debugging info in find_preferred_file
+ * [CHEF-591] - if service doesn't have a status command, process table inspection fails in simple service provider
+ * [CHEF-593] - deploy resource is not idempotent
+ * [CHEF-602] - in deploy provider, callback-defined resources are executed in all subsequent callbacks
+ * [CHEF-603] - deploy: gems.yml support
+ * [CHEF-604] - deploy: sudo / run command handler support
+ * [CHEF-614] - LWRP undefined local variable or method `new_resource'
+ * [CHEF-619] - Mixlib-* gems installed from gemcutter.org have too restrictive permissions
+ * [CHEF-621] - LWRP dynamic attribute methods are Ruby 1.9 incompatible and cause warnings in 1.8
+ * [CHEF-628] - Deploy resource removes newest release instead of oldest
+
+** Improvement
+ * [CHEF-620] - LWRP components should be shown in Web UI
+ * [CHEF-622] - Gem Package resource/provider shouldn't silently ignore the options attribute
+ * [CHEF-631] - Should create LWRP resources/providers for new_cookbook
+
+
Fri Sep 4 7:25:00 NZST 2009
Release Notes - Chef - Version 0.7.12
diff --git a/chef-server-slice/Rakefile b/chef-server-slice/Rakefile
index c3a79b3927..12ff6cf3f6 100644
--- a/chef-server-slice/Rakefile
+++ b/chef-server-slice/Rakefile
@@ -9,7 +9,7 @@ rescue LoadError
end
GEM_NAME = "chef-server-slice"
-CHEF_SERVER_VERSION="0.7.12"
+CHEF_SERVER_VERSION="0.7.14"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef-server/Rakefile b/chef-server/Rakefile
index 68413f1225..ac7d64778d 100644
--- a/chef-server/Rakefile
+++ b/chef-server/Rakefile
@@ -18,7 +18,7 @@ require 'chef' unless defined?(Chef)
include FileUtils
GEM = "chef-server"
-CHEF_SERVER_VERSION = "0.7.12"
+CHEF_SERVER_VERSION = "0.7.14"
AUTHOR = "Opscode"
EMAIL = "chef@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
diff --git a/chef/Rakefile b/chef/Rakefile
index 57994e2a42..63ab611364 100644
--- a/chef/Rakefile
+++ b/chef/Rakefile
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
require './tasks/rspec.rb'
GEM = "chef"
-CHEF_VERSION = "0.7.12"
+CHEF_VERSION = "0.7.14"
AUTHOR = "Adam Jacob"
EMAIL = "adam@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/chef"
@@ -23,7 +23,7 @@ spec = Gem::Specification.new do |s|
s.homepage = HOMEPAGE
s.add_dependency "mixlib-config", ">= 1.0.12"
- s.add_dependency "ohai", ">= 0.3.4"
+ s.add_dependency "ohai", ">= 0.3.6"
%w{mixlib-cli mixlib-log ruby-openid
json erubis extlib
stomp}.each { |gem| s.add_dependency gem }
diff --git a/chef/lib/chef.rb b/chef/lib/chef.rb
index 7e52484b15..c57453ccc4 100644
--- a/chef/lib/chef.rb
+++ b/chef/lib/chef.rb
@@ -27,7 +27,7 @@ require 'chef/config'
Dir[File.join(File.dirname(__FILE__), 'chef/mixin/**/*.rb')].sort.each { |lib| require lib }
class Chef
- VERSION = '0.7.12'
+ VERSION = '0.7.14'
end
# Adds a Dir.glob to Ruby 1.8.5, for compat