diff options
author | Tim Smith <tsmith@chef.io> | 2017-10-24 10:34:22 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-10-24 10:34:22 -0700 |
commit | bddbf4768e32d0b6b34ead8277eafb4cc83f2447 (patch) | |
tree | ad6fc97be42c3f6fea091244597624336f4c8d2f | |
parent | aee837b65cc3e1fd12bdf737f0d778db9b2bd10a (diff) | |
download | ohai-bddbf4768e32d0b6b34ead8277eafb4cc83f2447.tar.gz |
Release 13.613.6
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | CHANGELOG.md | 18 | ||||
-rw-r--r-- | RELEASE_NOTES.md | 20 | ||||
-rw-r--r-- | lib/ohai/version.rb | 2 |
3 files changed, 31 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d11dc18..c3b484d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## [v13.6.0](https://github.com/chef/ohai/tree/v13.6.0) (2017-10-24) + +[Full Changelog](https://github.com/chef/ohai/compare/v13.5.0...v13.6.0) + +- Add support for Critical Plugins [#1064](https://github.com/chef/ohai/pull/1064) +- Fix LXC detection on lxc 1+ by also checking for lxc-start [#1070](https://github.com/chef/ohai/pull/1070) +- Gather packages on Amazon Linux [#1071](https://github.com/chef/ohai/pull/1071) +- Updating AIX uptime_seconds to reflect elapsed seconds from boot rather than epoch [#1075](https://github.com/chef/ohai/pull/1075) +- Detect Rackspace on Windows [#1060](https://github.com/chef/ohai/pull/1060) + +## [v13.5.0](https://github.com/chef/ohai/tree/v13.5.0) (2017-09-28) + +[Full Changelog](https://github.com/chef/ohai/compare/v13.4.0...v13.5.0) + +- Fix the route support for IPV6 routes ending in :: [#1058](https://github.com/chef/ohai/pull/1058) +- Add plugin timing information in debug mode [#1056](https://github.com/chef/ohai/pull/1056) +- Make sure we require wmi/lite in the ec2 plugin [#1059](https://github.com/chef/ohai/pull/1059) + ## [v13.4.0](https://github.com/chef/ohai/tree/v13.4.0) (2017-09-11) [Full Changelog](https://github.com/chef/ohai/compare/v13.3.0...v13.4.0) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 71e7a524..b53c7f35 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -# Unreleased +# Ohai Release Notes 13.6 ### Critical Plugins @@ -10,21 +10,25 @@ ohai.critical_plugins << :Filesystem ### Filesystem now has a `allow_partial_data` configuration option -The Filesystem plugin now has a `allow_partial_data` configuration option. If -set, the filesystem will return whatever data it can even if some commands it -ran failed. +The Filesystem plugin now has a `allow_partial_data` configuration option. If set, the filesystem will return whatever data it can even if some commands it ran failed. + +### Rackspace detection on Windows + +Windows nodes running on Rackspace will now properly detect themselves as running on Rackspace without a hint file. + +### Package data on Amazon Linux + +The Packages plugin now supports gathering packages data on Amazon Linux # Ohai Release Notes 13.5 ### Correctly detect IPv6 routes ending in :: -Previously we would ignore routes that ended `::`, and now we properly -detect them. +Previously we would ignore routes that ended `::`, and now we properly detect them. ### Plugin run time is now measured -Debug logs will show the length of time each plugin takes to run, making -debugging of long ohai runs easier. +Debug logs will show the length of time each plugin takes to run, making debugging of long ohai runs easier. # Ohai Release Notes 13.4 diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb index 14798132..24947c87 100644 --- a/lib/ohai/version.rb +++ b/lib/ohai/version.rb @@ -18,5 +18,5 @@ module Ohai OHAI_ROOT = File.expand_path(File.dirname(__FILE__)) - VERSION = "13.5.0" + VERSION = "13.6.0" end |