summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerdar Sutay <serdar@opscode.com>2014-10-07 14:51:35 -0700
committerSerdar Sutay <serdar@opscode.com>2014-10-07 14:51:35 -0700
commitcd4358911e913b47670a48df3bf5ff631bd4cccc (patch)
tree56fae1464e031f7c65ac218462c03d9f9c2eb120
parentf075fd4570efba234ccf78b65348d22adf9269df (diff)
downloadchef-cd4358911e913b47670a48df3bf5ff631bd4cccc.tar.gz
CHANGELOG and version updates for 11.16.4.
-rw-r--r--CHANGELOG.md11
-rw-r--r--RELEASE_NOTES.md40
-rw-r--r--lib/chef/version.rb2
3 files changed, 12 insertions, 41 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a7d846eb98..13ecaf592c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,16 @@
## Unreleased:
-* Fix bug on Windows where using the env resource on path could render the path unusable
+## Last Release: 11.16.4
-## Last Released: 11.16.2
+* Windows omnibus installer security updates for redistributed bash.exe / sh.exe
+ vulnerabilities ("Shellshock") CVE-2014-6271, CVE-2014-6271, CVE-2014-6278,
+ CVE-2014-7186, CVE-2014-7187.
+* Fix bug on Windows where using the env resource on path could render the path unusable.
+* Chef Client now retries when it gets 50X from Chef Server.
+* Chef Client 11.16.4 can use the policyfiles generated with Chef DK 0.3.0.
+
+## Release: 11.16.2
* This is a packaging-only release there are no code changes
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index bffd1f0b7d..d211005780 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,39 +1,3 @@
-# Chef Client Release Notes 11.16.0:
-
-## Known Issues
-
-### Some Ubuntu 13.10+ services will require a provider
-
-The Upstart "compatibility interface" for /etc/init.d/ is no longer used as of
-Ubuntu 13.10 (Saucy). The default service provider in Chef for Ubuntu uses the sysvinit
-scripts located in /etc/init.d, but some of these init scripts will now exit with a failure when
-sent a start command and exit with success but do nothing for a stop command.
-
-The "ssh" and "rsyslog" services are currently known to exhibit this behavior. A Chef service resource
-that manages these services, on these versions of Ubuntu, must be passed the provider attribute
-to manually specify the Upstart provider, e.g.:
-
-```
-service "ssh" do
- provider Chef::Provider::Service::Upstart if platform?("ubuntu") && node["platform_version"].to_f >= 13.10
- action :start
-end
-```
-
-Fix status: [Github Issue #1587](https://github.com/opscode/chef/issues/1587)
-Original bug: [JIRA CHEF-5276](https://tickets.opscode.com/browse/CHEF-5276)
-
-## Bug Fixes and New Features
-
-### New dsc\_script resource for PowerShell DSC on Windows
-The `dsc_script` resource is new in Chef with this release. `dsc_script`
-allows the invocation of
-[PowerShell Desired State Configuration]((http://technet.microsoft.com/en-us/library/dn249912.aspx) (DSC) scripts
-from Chef recipes. The `dsc_script` resource is only available for systems
-running the Windows operating systtem with **PowerShell version 4.0 or later** installed. Windows systems may be
-updated to PowerShell version 4.0 or later using the [PowerShell cookbook](https://supermarket.getchef.com/cookbooks/powershell)
-available at [Chef Supermarket](http://supermarket.getchef.com).
-
-The **WinRM** service required by PowerShell DSC must be enabled on the system as well in order to use
-the `dsc_script` resource -- this can be accomplished using the Windows OS `winrm quickconfig` command.
+# Chef Client Release Notes 11.16.4:
+Please see CHANGELOG.md for changes in 11.16.4.
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 76752fb002..eb7157c038 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -17,7 +17,7 @@
class Chef
CHEF_ROOT = File.dirname(File.expand_path(File.dirname(__FILE__)))
- VERSION = '11.16.2'
+ VERSION = '11.16.4'
end
# NOTE: the Chef::Version class is defined in version_class.rb