
* 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>
2.3 KiB
description | keywords | title | menutitle | weight | |||||
---|---|---|---|---|---|---|---|---|---|
Guide for migrating plugins from Grafana v8.3.x to v8.4.x |
|
Migrating plugins from Grafana version 8.3.x to 8.4.x | v8.3.x to v8.4.x | 2200 |
Migrating plugins from Grafana version 8.3.x to 8.4.x
This section explains how to migrate Grafana v8.3.x plugins to the updated plugin system available in Grafana v8.4.x. Depending on your plugin, you need to perform one or more of the following steps.
Value Mapping Editor has been removed from @grafana-ui library
Removed due to being an internal component.
Thresholds Editor has been removed from @grafana-ui library
Removed due to being an internal component.
8.4 deprecations
LocationService replaces getLocationSrv
In a previous release, we migrated to use a new routing system and introduced a new service for managing locations, navigation, and related information. In this release, we are making that new service the primary service.
Example: Import the service.
// before
import { getLocationSrv } from '@grafana/runtime';
// after
import { locationService } from '@grafana/runtime';
Example: Navigate to a path and add a new record in the navigation history so that you can navigate back to the previous one.
// before
getLocationSrv.update({
path: '/route-to-navigate-to',
replace: false,
});
// after
locationService.push('/route-to-navigate-to');
Example: Navigate to a path and replace the current record in the navigation history.
// before
getLocationSrv.update({
path: '/route-to-navigate-to',
replace: true,
});
// after
locationService.replace('/route-to-navigate-to');
Example: Update the search or query parameter for the current route and add a new record in the navigation history so that you can navigate back to the previous one.
// How to navigate to a new path
// before
getLocationSrv.update({
query: {
value: 1,
},
partial: true,
replace: false,
});
// after
locationService.partial({ value: 1 });
Example: Update the search or query parameter for the current route and add replacing it in the navigation history.
// before
getLocationSrv.update({
query: {
'var-variable': 1,
},
partial: true,
replace: true,
});
// after
locationService.partial({ 'var-variable': 1 }, true);