mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* Use relative aliases for all non-current Grafana aliases Prevents non-latest documentation "stealing" the page away from latest and through permanent redirects for latest pages that no longer exist. The redirected pages are indexed by search engines but our robots.txt forbids them crawling the non-latest page. Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Remove aliases from shared pages Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Rewrite all current latest aliases to be next Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Fix typo in latest alias Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Remove all current page aliases find docs/sources -type f -name '*.md' -exec sed -z -i 's#\n *- /docs/grafana/next/[^\n]*\n#\n#' {} \; find docs/sources -type f -name '*.md' -exec sed -Ez -i 's#\n((aliases:\n *-)|aliases:\n)#\n\2#' {} \; Signed-off-by: Jack Baldry <jack.baldry@grafana.com> * Prettier Signed-off-by: Jack Baldry <jack.baldry@grafana.com> Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
2.9 KiB
2.9 KiB
hide_menu | title |
---|---|
true | Release notes for Grafana 9.0.0-beta1 |
Release notes for Grafana 9.0.0-beta1
Features and enhancements
- AccessControl: Add setting for permission cache. (Enterprise)
- AccessControl: Check dashboard permissions for reports. (Enterprise)
- Auth: Remove grafana ui dependency to the aws sdk. #43559, @sunker
- BasicRoles: Add API endpoint to reset basic roles permissions to factory. (Enterprise)
- LDAP Mapping: Allow Grafana Admin mapping without org role. #37189, @krzysdabro
- Licensing: Only enforce total number of users. (Enterprise)
- Loki: do not convert NaN to null. #45389, @gabor
- Report: API support for multiple dashboards. (Enterprise)
- Report: Support sending embedded image in the report email. (Enterprise)
- Report: UI for multiple dashboards. (Enterprise)
- Reporting: Remove redundant empty attachment when export to CSV is enabled. (Enterprise)
- SAML: Implement Name Templates for assertion_attribute_name option. (Enterprise)
- SSE/Alerting: Support prom instant vector responses. #44865, @kylebrandt
- Tracing: Add trace to metrics config behind feature toggle. #46298, @connorlindsey
Bug fixes
- Fix: Prevent automatic parsing of string data types to numbers. #46035, @joshhunt
- Prometheus: Fix inconsistent labels in exemplars resulting in marshal json error. #46135, @hanjm
Breaking changes
In the Loki data source, for consistency and performance reasons, we changed how we represent NaN
(not a number) values received from Loki. In the past versions, we converted these to null
in the frontend (for dashboard and explore), and kept as NaN
in the alerting path. Starting with this version, we will always keep it as NaN
. This change should be mostly invisible for the users. Issue #45389
The dependency to grafana/aws-sdk is moved from grafana/ui to the plugin. This means that any plugin that use SIGV4 auth need to pass a SIGV4 editor component as a prop to the DataSourceHttpSettings
component. Issue #43559