mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Plugins: Enable userStorageAPI feature flag by default (#98745)
This commit is contained in:
parent
3c0dc15bf0
commit
82892fa034
@ -79,6 +79,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
||||
| `cloudwatchMetricInsightsCrossAccount` | Enables cross account observability for Cloudwatch Metric Insights query builder | Yes |
|
||||
| `newFiltersUI` | Enables new combobox style UI for the Ad hoc filters variable in scenes architecture | Yes |
|
||||
| `useSessionStorageForRedirection` | Use session storage for handling the redirection after login | Yes |
|
||||
| `userStorageAPI` | Enables the user storage API | Yes |
|
||||
| `azureMonitorDisableLogLimit` | Disables the log limit restriction for Azure Monitor when true. The limit is enabled by default. | |
|
||||
| `preinstallAutoUpdate` | Enables automatic updates for pre-installed plugins | Yes |
|
||||
| `zipkinBackendMigration` | Enables querying Zipkin data source without the proxy | Yes |
|
||||
@ -219,7 +220,6 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `unifiedStorageBigObjectsSupport` | Enables to save big objects in blob storage |
|
||||
| `timeRangeProvider` | Enables time pickers sync |
|
||||
| `prometheusUsesCombobox` | Use new combobox component for Prometheus query editor |
|
||||
| `userStorageAPI` | Enables the user storage API |
|
||||
| `playlistsReconciler` | Enables experimental reconciler for playlists |
|
||||
| `prometheusSpecialCharsInLabelValues` | Adds support for quotes and special characters in label values for Prometheus queries |
|
||||
| `enableExtensionsAdminPage` | Enables the extension admin page regardless of development mode |
|
||||
|
@ -1549,8 +1549,9 @@ var (
|
||||
{
|
||||
Name: "userStorageAPI",
|
||||
Description: "Enables the user storage API",
|
||||
Stage: FeatureStageExperimental,
|
||||
Stage: FeatureStageGeneralAvailability,
|
||||
Owner: grafanaPluginsPlatformSquad,
|
||||
Expression: "true", // enabled by default
|
||||
},
|
||||
{
|
||||
Name: "azureMonitorDisableLogLimit",
|
||||
|
@ -205,7 +205,7 @@ pluginsSriChecks,experimental,@grafana/plugins-platform-backend,false,false,fals
|
||||
unifiedStorageBigObjectsSupport,experimental,@grafana/search-and-storage,false,false,false
|
||||
timeRangeProvider,experimental,@grafana/grafana-frontend-platform,false,false,false
|
||||
prometheusUsesCombobox,experimental,@grafana/oss-big-tent,false,false,false
|
||||
userStorageAPI,experimental,@grafana/plugins-platform-backend,false,false,false
|
||||
userStorageAPI,GA,@grafana/plugins-platform-backend,false,false,false
|
||||
azureMonitorDisableLogLimit,GA,@grafana/partner-datasources,false,false,false
|
||||
preinstallAutoUpdate,GA,@grafana/plugins-platform-backend,false,false,false
|
||||
playlistsReconciler,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
||||
|
|
@ -3823,13 +3823,17 @@
|
||||
{
|
||||
"metadata": {
|
||||
"name": "userStorageAPI",
|
||||
"resourceVersion": "1730204321785",
|
||||
"creationTimestamp": "2024-10-29T12:18:41Z"
|
||||
"resourceVersion": "1736438999910",
|
||||
"creationTimestamp": "2024-10-29T12:18:41Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2025-01-09 16:09:59.910083 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables the user storage API",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/plugins-platform-backend"
|
||||
"stage": "GA",
|
||||
"codeowner": "@grafana/plugins-platform-backend",
|
||||
"expression": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user