summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-11-29 15:49:52 -0800
committerTim Smith <tsmith@chef.io>2016-11-29 15:49:52 -0800
commit2b68844272013fbb737c8271e1e06ca64f48698d (patch)
treea6cc6053e9b4696988631a7ea5e6256af44f16f8
parent86ef325580c26cec5fd4afde5796895e77b7cc1b (diff)
downloadohai-8.22.0.tar.gz
Release 8.22.08.22.0
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--CHANGELOG.md21
-rw-r--r--OHAI_MVPS.md1
-rw-r--r--RELEASE_NOTES.md19
-rw-r--r--lib/ohai/version.rb2
4 files changed, 39 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 425b8050..7780febb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,27 @@
# Change Log
-## [8.21.0](https://github.com/chef/ohai/tree/8.21.0) (2016-10-16)
+## [8.22.0](https://github.com/chef/ohai/tree/8.22.0) (2016-11-29)
-[Full Changelog](https://github.com/chef/ohai/compare/v8.20.0...8.21.0)
+[Full Changelog](https://github.com/chef/ohai/compare/v8.21.0...8.22.0)
**Implemented enhancements:**
-- Add a new shard plugin [#877](https://github.com/chef/ohai/pull/877) ([jaymzh](https://github.com/jaymzh))
+- Add new haskell language plugin [#902](https://github.com/chef/ohai/pull/902) ([cdituri](https://github.com/cdituri))
+- Better handle errors in fetching the hostname on darwin (macOS) systems [#884](https://github.com/chef/ohai/pull/884) ([erikng](https://github.com/erikng))
+- Prefer lsb_release tool to /etc/lsb-release data [#873](https://github.com/chef/ohai/pull/873) ([kylev](https://github.com/kylev))
+- Extend set_attribute plugin helper method to set sub-attributes. [#822](https://github.com/chef/ohai/pull/822) ([mcquin](https://github.com/mcquin))
+
+**Fixed bugs:**
+
+- Avoid ip_scopes returning tunl/docker interfaces as privateaddress [#890](https://github.com/chef/ohai/pull/890) ([n-marton](https://github.com/n-marton))
+
+## [v8.21.0](https://github.com/chef/ohai/tree/v8.21.0) (2016-10-18)
+
+[Full Changelog](https://github.com/chef/ohai/compare/v8.20.0...v8.21.0)
+
+**Implemented enhancements:**
+
+- Add shard plugin [#877](https://github.com/chef/ohai/pull/877) ([jaymzh](https://github.com/jaymzh))
**Fixed bugs:**
diff --git a/OHAI_MVPS.md b/OHAI_MVPS.md
index cd4a3c20..f06a0b74 100644
--- a/OHAI_MVPS.md
+++ b/OHAI_MVPS.md
@@ -12,6 +12,7 @@ The [MVP list](https://github.com/opscode/chef/blob/master/CHEF_MVPS.md) is kept
| Release | Date | MVP |
|---------|------|-----|
+| Ohai 8.22.0 | 2016-11-29 | Chris Dituri |
| Ohai 8.21.0 | 2016-10-18 | Phil Dibowitz |
| Ohai 8.20.0 | 2016-09-07 | Davide Cavalca |
| Ohai 8.19.0 | 2016-08-11 | Jere Julian |
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index b108adf7..181ac106 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -8,3 +8,22 @@ Details about the thing that changed that needs to get included in the Release N
-->
# Ohai Release Notes:
+
+## Haskell Language plugin
+
+Haskell is now detected in a new haskell language plugin:
+
+```javascript
+"languages": {
+ "haskell": {
+ "stack": {
+ "version": "1.2.",
+ "description": "Version 1.2.0 x86_64 hpack-0.14.0"
+ }
+ }
+}
+```
+
+## LSB Release Detection
+
+The lsb_release command line tool is now preferred to the contents of /etc/lsb-release. This resolves an issue where a distro can be upgraded, but /etc/lsb-release is not upgraded to reflect the change
diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb
index 3bc853cf..c2a964c5 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.21.0"
+ VERSION = "8.22.0"
end