summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hass <rhass@users.noreply.github.com>2016-10-12 10:33:39 -0700
committerGitHub <noreply@github.com>2016-10-12 10:33:39 -0700
commit999e3ee3003026249761e8536effad8cc8785211 (patch)
tree92efd4dd95af12960dd6485f4dd397a2bf1cdf4d
parent15fa6e3a18c281e75cad06b7123dca0044d2945f (diff)
parent8856a0e4309e23315e2a185f46e2c9f5e19d93ba (diff)
downloadchef-999e3ee3003026249761e8536effad8cc8785211.tar.gz
Merge pull request #5434 from chef/rhass/release_12.15.18
Update RELEASE_NOTES.md for 12.15 Release.
-rw-r--r--RELEASE_NOTES.md45
1 files changed, 11 insertions, 34 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 0eb8c798d3..39842b7a5e 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,35 +1,12 @@
*This file holds "in progress" release notes for the current release under development and is intended for consumption by the Chef Documentation team.
Please see [https://docs.chef.io/release_notes.html](https://docs.chef.io/release_notes.html) for the official Chef release notes.*
-# Chef Client Release Notes 12.14:
+# Chef Client Release Notes 12.15:
## Highlighted enhancements for this release:
-* Upgraded Ruby version from 2.1.9 to 2.3.1 which adds several performance and functionality enhancements.
-* Added a small patch to Ruby 2.3.1 and improvements to the Ohai Network plugin in order to support chef client runs on Windows Nano Server.
-* Added the ability to mark a property of a custom resource as "sensitive." This will suppress the property's value when it's used in other outputs, such as messages used by the [Data Collector](https://github.com/chef/chef-rfc/blob/master/rfc077-mode-agnostic-data-collection.md). To use, add `sensitive: true` when definine the property. Example:
+* Omnibus packages are now available for Ubuntu 16.04.
- ```ruby
- property :db_password, String, sensitive: true
- ```
-
-* Ported the yum_repository resource from the yum cookbook to core chef. With this change you can create and remove repositories without depending on the yum cookbook. Example:
-
- ```ruby
- yum_repository 'OurCo' do
- description 'OurCo yum repository'
- mirrorlist 'http://artifacts.ourco.org/mirrorlist?repo=ourco-6&arch=$basearch'
- gpgkey 'http://artifacts.ourco.org/pub/yum/RPM-GPG-KEY-OURCO-6'
- action :create
- end
-
- yum 'Oldrepo' do
- action :delete
- end
- ```
-
-* Support for Solaris releases before 10u11 has been removed
-* Upgraded Ohai to 8.20 with new / enhanced plugins. See the [ohai changelog](https://github.com/chef-cookbooks/ohai/blob/master/CHANGELOG.md)
* Added cab_package resource and provider which supports the installation of CAB/cabinet packages on Windows. Example:
```ruby
@@ -45,14 +22,14 @@ Please see [https://docs.chef.io/release_notes.html](https://docs.chef.io/releas
```
**NOTE:** cab_package resource does not support URLs in `source`.
-## Highlighted bug fixes for this release:
+* Added exit code 213 (Chef Upgrades) from [RFC062](https://github.com/chef/chef-rfc/blob/master/rfc062-exit-status.md)
+ * This allows for easier testing of chef client upgrades in Test Kitchen. See [omnibus_updater](https://github.com/chef-cookbooks/omnibus_updater)
+
+* Set `yum_repository` gpgcheck default to true.
-Fixed `chef_gem` for local gems with remote dependencies. A recent chef release introduced a breaking change which added the `--local` argument to `gem installs` for local gems prohibiting remote dependencies from being installed. Users who want to ensure that gem installs remain completely local should add `--local` to the `options` property:
+* Allow deletion of `registry_key` without the need for users to pass data key in values hash.
+
+* `knife ssh` will pass the -P option on the command line, if it is given, as the sudo password and will bypass prompting.
+
+## Highlighted bug fixes for this release:
-```
-chef_gem 'my-gem' do
- source '/tmp/gems/my-gem.gem'
- options '--local'
- action :install
-end
-```