Plugins: Enable userStorageAPI feature flag by default (#98745)

This commit is contained in:
Andres Martinez Gotor 2025-01-09 17:31:07 +01:00 committed by GitHub
parent 3c0dc15bf0
commit 82892fa034
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 7 deletions

View File

@ -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 |

View File

@ -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",

View File

@ -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

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
205 unifiedStorageBigObjectsSupport experimental @grafana/search-and-storage false false false
206 timeRangeProvider experimental @grafana/grafana-frontend-platform false false false
207 prometheusUsesCombobox experimental @grafana/oss-big-tent false false false
208 userStorageAPI experimental GA @grafana/plugins-platform-backend false false false
209 azureMonitorDisableLogLimit GA @grafana/partner-datasources false false false
210 preinstallAutoUpdate GA @grafana/plugins-platform-backend false false false
211 playlistsReconciler experimental @grafana/grafana-app-platform-squad false true false

View File

@ -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"
}
},
{