summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-09-09 15:38:38 -0700
committerMatt Wrock <matt@mattwrock.com>2016-09-09 15:38:38 -0700
commit3b7e3ec1e04ac59ed89233416119ff2b1bdc95ac (patch)
treea853cbffc5b5d7f3f4dd282951b834d6680bd4e3
parent3731bff0641d0cb12780bc52376e50d9a0a71644 (diff)
downloadchef-3b7e3ec1e04ac59ed89233416119ff2b1bdc95ac.tar.gz
update release notes for 12.14.60
-rw-r--r--RELEASE_NOTES.md38
1 files changed, 13 insertions, 25 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 14e30f1f77..2e6858b8d1 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,33 +1,21 @@
*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/<major>-<minor>/release_notes.html` for the official Chef release notes.*
-# Chef Client Release Notes 12.13:
+# Chef Client Release Notes 12.14:
-Highlights for this release:
+## Highlighted enhancements for this release:
-- Ohai 8.18 includes a new plugin for gathering available user shells. Additionally for OS X users there is a new hardware plugin that gathers system information, and we’ve added detection of VMware and VirtualBox installations.
+* 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.
-## Updated Dependencies
+## Highlighted bug fixes for this release:
-- ruby - 2.1.9 (was 2.1.8)
+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:
-### Updated Gems
-
-- chef-zero - 4.8.0 (was 4.7.0)
-- cheffish - 2.0.5 (was 2.0.4)
-- compat_resource - 12.10.7 (was 12.10.6)
-- ffi - 1.9.14 (was 1.9.10)
-- ffi-yajl - 2.3.0 (was 2.2.3)
-- fuzzyurl - 0.9.0 (was 0.8.0)
-- mixlib-cli - 1.7.0 (was 1.6.0)
-- mixlib-log - 1.7.0 (was 1.6.0)
-- ohai - 8.18.0 (was 8.17.1)
-- pry - 0.10.4 (was 0.10.3)
-- rspec - 3.5.0 (was 3.4.0)
-- rspec-core - 3.5.2 (was 3.4.4)
-- rspec-expectations - 3.5.0 (was 3.4.0)
-- rspec-mocks - 3.5.0 (was 3.4.1)
-- rspec-support - 3.5.0 (was 3.4.1)
-- simplecov - 0.12.0 (was 0.11.2)
-- specinfra - 2.60.3 (was 2.59.4)
-- mixlib-archive - 0.2.0 (added to package)
+```
+chef_gem 'my-gem' do
+ source '/tmp/gems/my-gem.gem'
+ options '--local'
+ action :install
+end
+```