summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-01-23 14:32:26 -0800
committerTim Smith <tsmith@chef.io>2017-01-23 14:35:29 -0800
commitd343f0b08f0da2256d48838b00307617e5c346c3 (patch)
treedfddbba7aa94ac45b3f955bd82399cba39a01330
parentde03b1e4926bbdf9d25c88375c2d0641506caee8 (diff)
downloadohai-8.23.tar.gz
Release 8.23.08.23
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--CHANGELOG.md28
-rw-r--r--RELEASE_NOTES.md5
-rw-r--r--lib/ohai/version.rb2
3 files changed, 33 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b16575a4..86801bbf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,33 @@
# Change Log
+## [8.23.0](https://github.com/chef/ohai/tree/8.23.0) (2017-01-23)
+
+[Full Changelog](https://github.com/chef/ohai/compare/v8.22.1...v8.23.0)
+
+**Implemented enhancements:**
+
+- C Plugin: Expand GCC data & only shellout to gcc if Xcode is installed on macOS [#944](https://github.com/chef/ohai/pull/944) ([tas50](https://github.com/tas50))
+- Improve debug logging in multiple plugins [#935](https://github.com/chef/ohai/pull/935) ([tas50](https://github.com/tas50))
+- Detect guests running on Veertu hypervisor [#925](https://github.com/chef/ohai/pull/925) ([tas50](https://github.com/tas50))
+- Properly detect Cumulus Linux platform / version [#921](https://github.com/chef/ohai/pull/921) ([tas50](https://github.com/tas50))
+- Fetch AWS Account ID from metadata [#907](https://github.com/chef/ohai/pull/907) ([Fodoj](https://github.com/Fodoj))
+
+**Fixed bugs:**
+
+- Fix command log levels being ignored by only explicitly initialize a logger when needed [#942](https://github.com/chef/ohai/pull/942) ([thommay](https://github.com/thommay))
+- updating cloud plugin to populate azure private_ip as it's currently nil [#937](https://github.com/chef/ohai/pull/937) ([rshade](https://github.com/rshade))
+
+## [v8.22.1](https://github.com/chef/ohai/tree/v8.22.1) (2016-12-07)
+
+[Full Changelog](https://github.com/chef/ohai/compare/8.22.1...v8.22.1)
+
+**Implemented enhancements:**
+
+- Pull the complete version string of Erlang [#916](https://github.com/chef/ohai/pull/916) ([tas50](https://github.com/tas50))
+- Add sysconf plugin to expose system configuration variables [#893](https://github.com/chef/ohai/pull/893) ([davide125](https://github.com/davide125))
+
## [8.22.0](https://github.com/chef/ohai/tree/8.22.0) (2016-11-30)
-[Full Changelog](https://github.com/chef/ohai/compare/v8.21.0...8.22.0)
+[Full Changelog](https://github.com/chef/ohai/compare/v8.21.0...v8.22.0)
**Implemented enhancements:**
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 6dc399fa..fcdbb6c5 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -9,6 +9,11 @@ Details about the thing that changed that needs to get included in the Release N
# Ohai Release Notes:
+## Upcoming Chef/Ohai 13 release
+
+This April we'll be releasing Chef 13, and with the Chef 13 release we'll also be bumping the Ohai version to 13 to match. This release of Ohai will be the last 8.X release before we begin merging changes for Ohai 13.
+
+
## Cumulus Linux Platform
Cumulus Linux will now be detected as platform `cumulus` instead of `debian` and the `platform_version` will be properly set to the Cumulus Linux release.
diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb
index 6133a0ad..235639b0 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 = "8.22.1"
+ VERSION = "8.23.0"
end