1+++
2title = "What's New in Grafana v6.7"
3description = "Feature and improvement highlights for Grafana v6.7"
4keywords = ["grafana", "new", "documentation", "6.7", "release notes"]
5aliases = ["/docs/grafana/latest/guides/whats-new-in-v6-7/"]
6weight = -26
7[_build]
8list = false
9+++
10
11# What's new in Grafana v6.7
12
13This topic includes the release notes for the Grafana v6.7. For all details, read the full [CHANGELOG.md](https://github.com/grafana/grafana/blob/master/CHANGELOG.md).
14
15Grafana 6.7 comes with a lot of new features and enhancements:
16
17- [**Dashboard:** Enforce minimum refresh interval]({{< relref "#enforce-minimum-dashboard-refresh-interval" >}})
18- **Data source:** Google Sheets data source
19- [**Explore:** Query history]({{< relref "#query-history" >}})
20- [**Authorization:** Azure OAuth]({{< relref "#azure-oauth" >}})
21- [**Stackdriver:** Project Selector]({{< relref "#stackdriver-project-selector" >}})
22- [**Enterprise:** White Labeling for application title]({{< relref "#white-labeling-for-application-title" >}})
23- [**Enterprise:** Reporting configuration for timeout and concurrency]({{< relref "#reporting-configuration-for-timeout-and-concurrency" >}})
24- [**Enterprise:** Export dashboard as pdf]({{< relref "#export-dashboard-as-pdf" >}})
25- [**Enterprise:** Report landscape mode]({{< relref "#report-landscape-mode" >}})
26- [**Enterprise:** Azure OAuth Team Sync support]({{< relref "#azure-oauth-team-sync-support" >}})
27
28## General features
29
30General features are included in all Grafana editions.
31
32### Query history
33
34> BETA: Query history is a beta feature. It is local to your browser and is not shared with others.
35
36Query history is a new feature that lets you view and interact with the queries that you have previously run in Explore. You can add queries to the Explore query editor, write comments, create and share URL links, star your favorite queries, and much more. Starred queries are displayed in Starred tab, so it is easier to reuse queries that you run often without typing them from scratch.
37
38Learn more about query history in [Explore]({{< relref "../explore" >}}).
39
40{{< figure src="/static/img/docs/v67/rich-history.gif" max-width="1024px" caption="Query history" >}}
41
42### Azure OAuth
43
44Grafana v6.7 comes with a new OAuth integration for Microsoft Azure Active Directory. You can now assign users and groups to Grafana roles from the Azure Portal. Learn how to enable and configure it in [Azure AD OAuth2 authentication]({{< relref "../auth/azuread/" >}}).
45
46### Enforce minimum dashboard refresh interval
47
48Allowing a low dashboard refresh interval can cause severe load on data sources and Grafana. Grafana v6.7 allows you to restrict the dashboard refresh interval so it cannot be set lower than a given interval. This provides a way for administrators to control dashboard refresh behavior on a global level.
49
50Refer to min_refresh_interval in [Configuration]({{< relref "../administration/configuration#min-refresh-interval" >}}) for more information and how to enable this feature.
51
52### Stackdriver project selector
53
54A Stackdriver data source in Grafana is configured for one service account only. That service account is always associated with a default project in Google Cloud Platform (GCP). Depending on your setup in GCP, the service account might be granted access to more projects than just the default project.
55
56In Grafana 6.7, the query editor has been enhanced with a project selector that makes it possible to query different projects without changing datasource. Many thanks [Eraac](https://github.com/Eraac), [eliaslaouiti](https://github.com/eliaslaouiti), and [NaurisSadovskis](https://github.com/NaurisSadovskis) for making this happen!
57
58## Grafana Enterprise features
59
60General features are included in the Grafana Enterprise edition software.
61
62### White labeling customizes application title
63
64This release adds a new white labeling option to customize the application title. Learn how to configure it in [White labeling]({{< relref "../enterprise/white-labeling/" >}}).
65
66```
67[white_labeling]
68# Set to your company name to override application title
69app_title = Your Company
70```
71
72### Configure reporting for timeout and concurrency
73
74This release adds more configuration for the reporting feature rendering requests. You can set the panel rendering request timeout and the maximum number of concurrent calls to the rendering service in your configuration. Learn how to do it in [Reporting]({{< relref "../enterprise/reporting/" >}}).
75
76```
77[reporting]
78# Set timeout for each panel rendering request
79rendering_timeout = 10s
80# Set maximum number of concurrent calls to the rendering service
81concurrent_render_limit = 10
82```
83
84### Export dashboard as PDF
85
86This feature allows you to export a dashboard as a PDF document. All dashboard panels will be rendered as images and added into the PDF document. Learn more in [Export dashboard as PDF]({{< relref "../enterprise/export-pdf/" >}}).
87
88### Report landscape mode
89
90You can now use either portrait or landscape mode in your reports. Portrait will render three panels per page and landscape two.
91{{< figure src="/static/img/docs/enterprise/reports_create_new.png" max-width="1024px" caption="New report" >}}
92
93[Reporting]({{< relref "../enterprise/reporting/" >}}) has been updated as a result of this change.
94
95### Azure OAuth Team Sync support
96
97When setting up OAuth with Microsoft Azure AD, you can now sync Azure groups with Teams in Grafana.
98Learn more in [Team sync]({{< relref "../enterprise/team-sync/" >}}).
99