Explore: Deprecate local storage singular datasource key (#86250)

* add a note?

* Let Explore own the core/history folder
This commit is contained in:
Kristina 2024-04-17 09:48:27 -05:00 committed by GitHub
parent 1c2065af60
commit 7112f1effc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

1
.github/CODEOWNERS vendored
View File

@ -383,6 +383,7 @@ playwright.config.ts @grafana/plugins-platform-frontend
/public/app/core/components/TimeSeries/ @grafana/dataviz-squad
/public/app/core/components/TimelineChart/ @grafana/dataviz-squad
/public/app/core/components/Form/ @grafana/grafana-frontend-platform
/public/app/core/history/ @grafana/explore-squad
/public/app/features/all.ts @grafana/grafana-frontend-platform
/public/app/features/admin/ @grafana/identity-access-team

View File

@ -94,7 +94,7 @@ export const sortQueries = (array: RichHistoryQuery[], sortOrder: SortOrder) =>
export const RICH_HISTORY_SETTING_KEYS = {
retentionPeriod: 'grafana.explore.richHistory.retentionPeriod',
starredTabAsFirstTab: 'grafana.explore.richHistory.starredTabAsFirstTab',
legacyActiveDatasourceOnly: 'grafana.explore.richHistory.activeDatasourceOnly',
legacyActiveDatasourceOnly: 'grafana.explore.richHistory.activeDatasourceOnly', // @deprecated
activeDatasourcesOnly: 'grafana.explore.richHistory.activeDatasourcesOnly',
datasourceFilters: 'grafana.explore.richHistory.datasourceFilters',
};