summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-03-02 14:58:10 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2015-03-02 14:58:10 -0800
commitf1312396da9a546488678e257472374f69a17268 (patch)
tree898758afc8d5da87070dc8cf0a064b1b6f61f1e2
parent18d2f5afbaa9f31a64a1f7d64d1088b1b0cdd290 (diff)
downloadchef-jdm/12.1.0.tar.gz
add RELEASE_NOTES.mdjdm/12.1.0
-rw-r--r--RELEASE_NOTES.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 4d0a6cc7ef..b8e5e148e7 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -151,3 +151,16 @@ should mitigate some of the need to precreate the node object by hand first.
You can now set the amount of time a chef-client run is allowed when running the provided windows service. This can be configured by
setting `windows_service.watchdog_timeout` in your `client.rb` to the number of seconds desired. The default value is 2 hours.
+
+## Nillable deploy resource parameters
+
+The deploy resource parameters now support injecting nil arguments back into the resource. Previously passing a parameter of nil
+resulted in the setter becoming an accessor and returning the old value. Now passing an argument of nil will set the parameter
+to nil. So `symlink_before_migrate nil` results in that parameter being nil.
+
+This has not been extended to the rest of the core chef resources yet.
+
+## Nillable LWRP arguments
+
+LWRP parameters now can also be set to be nil.
+