summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-01-24 09:54:26 -0800
committerGitHub <noreply@github.com>2017-01-24 09:54:26 -0800
commit5804e6dabd1bb7e4aa97f5cc868406e0965efc63 (patch)
tree06ef57333dde2b7568d1c3f99314bc442c57987e
parentde03b1e4926bbdf9d25c88375c2d0641506caee8 (diff)
parent0d293ff3fa6af456f389a40b75e2c000ce0474bb (diff)
downloadohai-8.tar.gz
Merge pull request #945 from chef/8.23v8.23.0ohai-8
Release 8.23.0
-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..9b681a41 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 log level selection when running the ohai command [\#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