mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
remove aliases, add script
Co-authored-by: Jack Baldry <jack.baldry@grafana.com> Co-authored-by: David Harris <david.harris@grafana.com>
This commit is contained in:
parent
a943d4646a
commit
8964812375
@ -10,6 +10,28 @@ keywords:
|
||||
title: Migration guides
|
||||
---
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
var anchorRedirects = {
|
||||
"migrate-a-plugin-from-angular-to-react": "./angular-react/",
|
||||
"from-version-62x-to-74x": "./v6.x-v7.x/",
|
||||
"from-version-65x-to-73x": "./v6.x-v7.x/",
|
||||
"from-version-6x-to-7x": "./v6.x-v7.x/",
|
||||
"migrate-to-data-frames": "./v6.x-v7.x/",
|
||||
"troubleshoot-plugin-migration": "./v6.x-v7.x/",
|
||||
"from-version-7x-to-8x": "./v7.x-v8.x/",
|
||||
"from-version-83x-to-84x": "./v8.3.x-8.4.x/",
|
||||
"from-version-8x-to-9x": "./v8.x-v9.x/",
|
||||
"from-version-91x-to-92x": "./v9.1.x-v9.2.x/",
|
||||
"from-version-93x-to-94x": "./v9.3.x-v9.4.x/",
|
||||
};
|
||||
var anchor = window.location.hash.substring(1);
|
||||
if (anchor) {
|
||||
window.location.replace(anchorRedirects[anchor]);
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
|
||||
# Plugin migration guides
|
||||
|
||||
The following guides help you identify the steps required to update a plugin following changes between versions of Grafana.
|
||||
|
@ -1,6 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#migrate-a-plugin-from-angular-to-react
|
||||
description: Guide for migrating plugins from AngularJS to React
|
||||
keywords:
|
||||
- grafana
|
||||
|
@ -1,10 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#from-version-62x-to-74x
|
||||
- ../../plugins/developing/migration-guide#from-version-65x-to-73x
|
||||
- ../../plugins/developing/migration-guide#from-version-6x-to-7x
|
||||
- ../../plugins/developing/migration-guide#migrate-to-data-frames
|
||||
- ../../plugins/developing/migration-guide#troubleshoot-plugin-migration
|
||||
description: Guide for migrating plugins from Grafana v6.x to v7.x
|
||||
keywords:
|
||||
- grafana
|
||||
|
@ -1,6 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#from-version-7x-to-8x
|
||||
description: Guide for migrating plugins from Grafana v7.x to v8.x
|
||||
keywords:
|
||||
- grafana
|
||||
|
@ -1,6 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#from-version-83x-to-84x
|
||||
description: Guide for migrating plugins from Grafana v8.3.x to v8.4.x
|
||||
keywords:
|
||||
- grafana
|
||||
|
@ -1,6 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#from-version-8x-to-9x
|
||||
description: Guide for migrating plugins from Grafana v8.x to v9.x
|
||||
keywords:
|
||||
- grafana
|
||||
|
@ -1,6 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#from-version-91x-to-92x
|
||||
description: Guide for migrating plugins from Grafana v9.1.x to v9.2.x
|
||||
keywords:
|
||||
- grafana
|
||||
|
@ -1,6 +1,4 @@
|
||||
---
|
||||
aliases:
|
||||
- ../../plugins/developing/migration-guide#from-version-93x-to-94x
|
||||
description: Guide for migrating plugins from Grafana v9.3.x to v9.4.x
|
||||
keywords:
|
||||
- grafana
|
||||
|
Loading…
Reference in New Issue
Block a user