summaryrefslogtreecommitdiff
path: root/RELEASE_NOTES.md
Commit message (Collapse)AuthorAgeFilesLines
* Release 13.613.6Tim Smith2017-10-241-8/+12
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Fix regression in #1047 (#1066)Phil Dibowitz2017-10-041-0/+6
| | | | | | | | PR #1047 allows a plugin to return partial data which may be incredibly dangerous. It's a totally reasonable thing to want, however, so we gate it behind a plugin config. However, the default behavior reverts to where it was. Signed-off-by: Phil Dibowitz <phil@ipom.com>
* Critical Plugins (#1064)Phil Dibowitz2017-10-041-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a new Ohai configuration `critical_plugins` which will cause Ohai to exit (or `fail` if inside of Chef) if the plugins in the list do not run successfully. This feature only supports Ohai 7-style named plugins, not the ancient Ohai 6-style stuff. Tests to follow, but: ``` $ cat /home/phild/ohai.rb ohai.critical_plugins << :Filesystem $ ./bin/ohai -c /home/phild/ohai.rb [2017-10-03T13:43:14-07:00] INFO: The plugin path /etc/chef/ohai/plugins does not exist. Skipping... [2017-10-03T13:43:14-07:00] ERROR: The following plugins marked as critical failed: [:Filesystem] ``` And when I run Chef: ``` [2017-10-03T13:44:11-07:00] FATAL: RuntimeError: The following plugins marked as critical failed: [:Filesystem2]. Failing Chef run. ``` This fixes #879. Signed-off-by: Phil Dibowitz <phil@ipom.com>
* prep 13.5 for releasetm/13_5Thom May2017-09-281-0/+12
| | | | Signed-off-by: Thom May <thom@chef.io>
* Release Ohai 13.4Tim Smith2017-09-111-4/+73
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Merge pull request #1042 from oslerw/masterTim Smith2017-09-101-0/+4
|\ | | | | Add Arch Linux support to package plugin
| * Add Arch Linux support to package pluginWilliam Osler2017-09-101-0/+4
| | | | | | | | Signed-off-by: William Osler <oslerw@fb.com>
* | Release 13.3Tim Smith2017-08-101-2/+2
|/ | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Add f5 detection to the release notestas50-patch-1Tim Smith2017-07-191-0/+9
| | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Release note update per jaymzh13.2Tim Smith2017-06-291-1/+1
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Release 13.2Tim Smith2017-06-291-18/+24
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Release Ohai 13.1.0ohai_131Tim Smith2017-05-091-51/+17
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Update Ohai 13 release notesTim Smith2017-04-061-20/+54
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Release 8.23.0Tim Smith2017-01-241-0/+5
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Update release notes and chefstyle fixespr/941Tim Smith2017-01-231-0/+4
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Update RELEASE_NOTES.mdTim Smith2016-12-201-0/+14
|
* Add Cumulus Linux detection to the release notesTim Smith2016-12-151-17/+2
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Release 8.22.0Tim Smith2016-11-301-0/+19
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Wipe the release notesnotesTim Smith2016-11-091-4/+0
| | | These were very out of date
* Release 8.17.08.17Tim Smith2016-06-191-10/+2
| | | | | | Let's make sure we get our recent changes into the next Chef release. Signed-off-by: Tim Smith <tsmith@chef.io>
* Release 8.16.08.16.0Tim Smith2016-05-111-7/+6
| | | | Time to get this into our nightlies
* Update release notesTim Smith2016-04-081-23/+6
|
* Update release notes with functionality on masterTim Smith2016-03-091-0/+17
|
* Update RELEASE_NOTES.mdTim Smith2016-03-021-0/+7
|
* Update RELEASE_NOTES.mdTim Smith2016-03-021-0/+5
|
* Zero out release notes post releaseTim Smith2015-12-141-3/+0
|
* Update changelog & release notes with PR#sSalim Alam2015-12-091-2/+2
|
* Rev version to 8.8.1, update changelog and release notessalam/ohai-updateSalim Alam2015-12-081-24/+3
|
* Release notesTim Smith2015-12-021-1/+27
|
* Clean out release notesSalim Alam2015-12-011-66/+1
|
* Minor spelling fixesTim Smith2015-08-141-2/+2
|
* Fix my_mountpoint view in filesystem2; add testsPhil Dibowitz2015-06-251-1/+4
| | | | | | | The same trick for by_device to list multiple pointpoints should be in by_mounpoint for multiple devices. Add tests for both alternative views.
* Port new filesystem2 plugin to darwin.Phil Dibowitz2015-06-241-1/+2
| | | | This is just a port of #559 to Darwin. See that PR for the details.
* Add docsPhil Dibowitz2015-06-231-0/+36
|
* [Ohai 7] Add support for ECMP routes to linux::networkPhil Dibowitz2014-08-151-0/+1
| | | | Fixes #388
* Fix reading /proc/mounts harderPhil Dibowitz2014-07-311-0/+1
| | | | Due to kernel bugs we have to nonblock read.
* [ohai 7] Linux::filesystems should prefer lsblk to blkid when availablePhil Dibowitz2014-07-161-0/+1
| | | | | | | | | | | | | | blkid has several bugs, and will miss a variety of things. For starters, it'll never report on a device that has partitions even if the parent is the thing with a filesystem on it. It has weird bugs like: http://marc.info/?l=linux-ext4&m=119636478426226&w=2 lsblk, on the other hand, probes everything in /sys/block and reports consistently. This is the Ohai7 port of #353 and addresses #351
* OHAI-568, OHAI-575, OHAI-578: Release notesBryan McLellan2014-05-151-0/+6
|
* OHAI-573: Release notesBryan McLellan2014-05-151-1/+12
|
* OHAI-182: release notesBryan McLellan2014-05-071-0/+2
|
* New policy files for OHAI.new-policy-filessersut2014-02-271-0/+12