summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-23 15:25:04 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-23 15:25:04 -0700
commit1785cf85899db8329c1998aa172bd5e9aa84939c (patch)
tree3c827d8752c4660e218560b81365c84a8c626606
parent42cccd00a58b23ffa6f8d48aa465b0b9c0f2c0cc (diff)
downloadchef-1785cf85899db8329c1998aa172bd5e9aa84939c.tar.gz
Update examples and fix markdown errors
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--RELEASE_NOTES.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index b8a81131a2..660e120309 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -22,8 +22,8 @@ The `windows_firewall_profile` allows you to `enable`, `disable`, or `configure`
windows_firewall_profile 'Public' do
default_inbound_action 'Block'
default_outbound_action 'Allow'
- allow_inbound_rules 'False'
- display_notification 'False'
+ allow_inbound_rules false
+ display_notification false
action :enable
end
```
@@ -52,14 +52,14 @@ The `git` resource will no longer fail if syncing a branch that already exists l
The `macos_user_defaults` has received a ground-up refactoring with new actions, additional properties, and better overall reliability:
- - Improved idempotency by properly loading the current state of domains.
- - Improved how we set `dict` and `array` type data.
- - Improved logging to show the existing key/value pair that are being changed and improved the property state data we send to handlers and/or Chef Automate.
- - Fixed a failure when setting keys or values that included a space.
- - Replaced the existing non-functional `global` property with a new default for the `domain` property. To set a key/value on the `NSGlobalDomain` domain you can either set that value explicitly or just skip `domain` property entirely and Chef Infra Client will default to `NSGlobalDomain`. The existing property has been marked as deprecated and we will ship a Cookstyle rule to detect cookbooks using this property in the future.
- - Fixed the type property to only accepts valid inputs. Previously typos or otherwise incorrect values would just be ignored, resulting in unexpected behavior. This may cause failures in your codebase if you previously used incorrect values, and we will be shipping a Cookstyle rule to detect and correct these values in the future.
- - Added a new `delete` action to allow users to remove a key from a domain.
- - Added a new host property that lets you set per-host values. If you set this to :current it sets the -currentHost flag.
+- Improved idempotency by properly loading the current state of domains.
+- Improved how we set `dict` and `array` type data.
+- Improved logging to show the existing key/value pair that are being changed and improved the property state data we send to handlers and/or Chef Automate.
+- Fixed a failure when setting keys or values that included a space.
+- Replaced the existing non-functional `global` property with a new default for the `domain` property. To set a key/value on the `NSGlobalDomain` domain you can either set that value explicitly or just skip `domain` property entirely and Chef Infra Client will default to `NSGlobalDomain`. The existing property has been marked as deprecated and we will ship a Cookstyle rule to detect cookbooks using this property in the future.
+- Fixed the type property to only accepts valid inputs. Previously typos or otherwise incorrect values would just be ignored, resulting in unexpected behavior. This may cause failures in your codebase if you previously used incorrect values, and we will be shipping a Cookstyle rule to detect and correct these values in the future.
+- Added a new `delete` action to allow users to remove a key from a domain.
+- Added a new host property that lets you set per-host values. If you set this to :current it sets the -currentHost flag.
### windows_dns_record