diff options
author | Bryan McLellan <btm@loftninjas.org> | 2016-11-10 08:14:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-10 08:14:34 -0500 |
commit | 8c250fa44fd46328fbe0ffd1307af1923977c322 (patch) | |
tree | e054de72aca6d2c095a8a1e3b235a37cf7d3292e | |
parent | 32956a8f83bbd50c10781dcaf104fb6d152ca980 (diff) | |
parent | 1c8674b0dc32ae097c1e484aa90577b921e1fb3a (diff) | |
download | chef-8c250fa44fd46328fbe0ffd1307af1923977c322.tar.gz |
Merge pull request #5532 from chef/td/update-12.16-release-notes
Update 12.16 release notes with package locking
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | HISTORY.md | 1 | ||||
-rw-r--r-- | RELEASE_NOTES.md | 15 |
3 files changed, 17 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f3173d4874..7aa981e6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -79,6 +79,7 @@ This changelog reflects the current state of chef's master branch on github and - Knife: Add the `--field-separator` flag to knife show commands [\#5489](https://github.com/chef/chef/pull/5489) ([tduffield](https://github.com/tduffield)) - Core: Enable Signed Header Auth for Data Collector, and Configure the Data Collector Automatically [\#5487](https://github.com/chef/chef/pull/5487) ([danielsdeleo](https://github.com/danielsdeleo)) - Core: set use\_inline\_resources in package superclass [\#5483](https://github.com/chef/chef/pull/5483) ([lamont-granquist](https://github.com/lamont-granquist)) +- Package: Add new "lock" action for apt, yum and zypper packages [\#5395](https://github.com/chef/chef/pull/5395) ([yeoldegrove](https://github.com/yeoldegrove)) **Fixed bugs:** diff --git a/HISTORY.md b/HISTORY.md index 5c1a933256..8ae3abebed 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -10,6 +10,7 @@ - Knife: Add the `--field-separator` flag to knife show commands [\#5489](https://github.com/chef/chef/pull/5489) ([tduffield](https://github.com/tduffield)) - Core: Enable Signed Header Auth for Data Collector, and Configure the Data Collector Automatically [\#5487](https://github.com/chef/chef/pull/5487) ([danielsdeleo](https://github.com/danielsdeleo)) - Core: set use\_inline\_resources in package superclass [\#5483](https://github.com/chef/chef/pull/5483) ([lamont-granquist](https://github.com/lamont-granquist)) +- Package: Add new "lock" action for apt, yum and zypper packages [\#5395](https://github.com/chef/chef/pull/5395) ([yeoldegrove](https://github.com/yeoldegrove)) **Fixed bugs:** diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 986519fa4a..3e65148f04 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -86,4 +86,19 @@ webapp: alpha:beta: omega ``` +### Package locking for Apt, Yum, and Zypper + +To allow for more fine grained control of package installation the `apt_package`, +`yum_package`, and `zypper_package` resources now support the `:lock` and `:unlock` actions. + +```ruby +package "httpd" do + action :lock +end + +package "httpd" do + action :unlock +end +``` + ## Highlighted bug fixes for this release: |