bba720557c
* migrate to v19 * migrate to v18 * Migration to be verified: v17 Convert minSpan to maxPerRow in panels * Migration to be verified: 16 Grid layout migration * Refactor v17 and v19 migrations to use shared helper functions * Migration to be verified: 15 No-op migration for schema consistency * Migration to be verified: 14 Shared crosshair to graph tooltip migration * cleanup * wip * complete migration * fix lint issues * refactor and test with minimal graph config * update tests * migrate to v12 * extract defaults outside the func * lint * lint * add missing showValues prop * migrate to v11 * add test files * update * add context and fix latest version * add context * add context * generate snapshots * v13 should be no-op * clean up * fix tests * snapshots * fix test * remove v28 * remove singlestat migraiton from frontend migrator because this is an automigration * remove unused function * Remove v24 table plugin logic * cleanup * remove plugin version for automigrate as it was used only in v24 and v28 that have been removed * cleanup * update snapshot * es lint --------- Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
29 lines
673 B
Go
29 lines
673 B
Go
package schemaversion
|
|
|
|
import "context"
|
|
|
|
// V11 migration is a no-op migration
|
|
// It only updates the schema version to 11
|
|
// It's created to keep the migration history consistent
|
|
// Frontend migrator doesn't have a migration for schema version 11
|
|
// No specific migration logic is needed between schema version 10 and 11
|
|
|
|
// Example before migration:
|
|
// {
|
|
// "schemaVersion": 10,
|
|
// "title": "My Dashboard",
|
|
// "panels": [...]
|
|
// }
|
|
|
|
// Example after migration:
|
|
// {
|
|
// "schemaVersion": 11,
|
|
// "title": "My Dashboard",
|
|
// "panels": [...]
|
|
// }
|
|
|
|
func V11(_ context.Context, dashboard map[string]interface{}) error {
|
|
dashboard["schemaVersion"] = 11
|
|
return nil
|
|
}
|