Files
grafana/docs/sources/developers/plugins/migration-guide/_index.md
Joseph Perez f9df1f3051 Docs: Plugins doc reorganization, part 1 (#69864)
* Initial commit

* Prettier fixes

* Doc-validator fixes part 1

* Doc-validator fixes part 2

* More doc-validator fixes

* More doc-validator fixes

* Test

* link test

* Linnk test

* Link test

* More fixes

* More fixes

* Doc-validator fixes

* Doc-validator fixes

* fix broken link

* Fix

* Testing

* Doc fixes

* Link fixes

* Fix links

* Update docs/sources/developers/plugins/create-a-grafana-plugin/_index.md

Co-authored-by: David Harris <david.harris@grafana.com>

* Testing

* Testing

* Testing

* Testing

* Doc-validator fixes

* Doc-validator fixes

* Doc-validator fixes

* Fix broken links for plugins reorganization project

* Prettier fixes

* Prettier fixes

* Incorporate reviewer feedback

* Link fixes

* Link fixes

* Link fixes

* Link fix

* Deleted space

* Codeowners fix

* Change grafana.com links to absolute URLs for Hugo

---------

Co-authored-by: David Harris <david.harris@grafana.com>
2023-07-05 13:25:11 -05:00

1.3 KiB

title, aliases, description, keywords, weight
title aliases description keywords weight
Migrate a plugin
../../plugins/developing/migration-guide
A guide for migrating and updating a Grafana plugin.
grafana
plugins
migration
plugin
documentation
500
<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>

Migrate a plugin

The following guides help you identify the steps required to update a plugin following changes between versions of Grafana.

{{< section menuTitle="true">}}