mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 15:12:46 +08:00

* initial restructuring * add weights for ordering * fix links * remove aliases, add script Co-authored-by: Jack Baldry <jack.baldry@grafana.com> Co-authored-by: David Harris <david.harris@grafana.com> * make pretty * use correct link for angular to react guide * refactor: move the migration guide to /Developers * Revert "refactor: move the migration guide to /Developers" This reverts commit 8f31af8dfde3399060e8023c635174eb1243ae72. * fix: only redirect if the URL-hash has a valid redirect * fix: use a rel-ref for the Angular-React migration guide link * fix: update the hash redirects --------- Co-authored-by: David Harris <david.harris@grafana.com> Co-authored-by: Jack Baldry <jack.baldry@grafana.com>
42 lines
1.3 KiB
Markdown
42 lines
1.3 KiB
Markdown
---
|
|
aliases:
|
|
- ../../plugins/developing/migration-guide
|
|
keywords:
|
|
- grafana
|
|
- plugins
|
|
- migration
|
|
- plugin
|
|
- documentation
|
|
title: Migration guides
|
|
---
|
|
|
|
<script>
|
|
(function () {
|
|
// Previously all the migration docs were on a single page, and the different sections could be linked using URL hashes.
|
|
var anchorRedirects = {
|
|
"migrate-a-plugin-from-angular-to-react": "./angular-react/",
|
|
"from-version-62x-to-740": "./v6.x-v7.x#from-version-62x-to-740",
|
|
"from-version-65x-to-730": "./v6.x-v7.x#from-version-65x-to-730",
|
|
"from-version-6xx-to-700": "./v6.x-v7.x/",
|
|
"migrate-to-data-frames": "./v6.x-v7.x/",
|
|
"troubleshoot-plugin-migration": "./v6.x-v7.x/",
|
|
"from-version-7xx-to-8xx": "./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-9.4.x/",
|
|
};
|
|
var hash = window.location.hash.substring(1);
|
|
var redirectTo = anchorRedirects[hash];
|
|
if (redirectTo) {
|
|
window.location.replace(redirectTo);
|
|
}
|
|
})();
|
|
</script>
|
|
|
|
# Plugin migration guides
|
|
|
|
The following guides help you identify the steps required to update a plugin following changes between versions of Grafana.
|
|
|
|
{{< section menuTitle="true">}}
|