## New Features #### Event feed visualization filters by type If you select an event type, you'll notice that the 'guitar strings' visualization will show only events of that type. #### No data experience for Client Runs If a node has no client run data associated with it, you'll see it in the list but you won't be be able to click into the details (because there are none). Instead it will be marked with 'no data.' ## Improvements ## Bug Fixes #### Don't prefix external teams twice In the previous release, an externally provided team would have been prefixed twice: for example, `admins` (LDAP) would be recognized and processed as `team:ldap:team:ldap:admins`. As a consequence, policies written for `team:ldap:admins` would fail to match. #### Unable to Install with `umask 0027` Prior to this release, Chef Automate failed to install on systems with a restrictive `umask` of `0027`. Automate is now able to install on systems with this `umask` without needing to change system settings. #### Elasticsearch not Starting Because of `noexec` Mounts This release fixes an issue that prevented Elasticsearch from starting when there were no mounts available that the `hab` user could write to and exec from. Elasticsearch now creates and uses its own temp directory for loading the required executable code. #### Sign out in Firefox Fixed a bug that prevented you from signing out in Firefox. We don't want you to leave, but you should be able to have the choice. #### Chef Server and Server Org filters on the left sidebar Fixed some corner cases with the filter selection logic. ## Backward Incompatibilities #### Changed Subjects of local users for Policies Changed the format of local user subjects in authorization policies. Before, this was `user:local:a980dc21-1d54-4614-86a8-a144fc91c282`, now, it's `user:local:admin@example.com`. #### Policies are versioned in our public API All policy creation requests now need to include a version key, e.g. ```json { "action": "*", "subjects": [ "user:local:alice@example.com" ], "id": "06c293e7-e27a-4e7b-bb9d-11b83ba8b133", "resource": "cfgmgt:foo:bar", "effect": "allow", "version": "v0" } ```