Authentication UI: Enable by default (#69803)

This commit is contained in:
Alexander Zobnin 2023-06-08 17:53:51 +02:00 committed by GitHub
parent 32f27d10ff
commit 4e1f69d83f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -38,6 +38,7 @@ Some stable features are enabled by default. You can disable a stable feature by
| `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different | Yes |
| `alertingNotificationsPoliciesMatchingInstances` | Enables the preview of matching instances for notification policies | Yes |
| `useCachingService` | When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation | |
| `authenticationConfigUI` | Enables authentication configuration UI | Yes |
| `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order and advanced mode | Yes |
## Beta feature toggles
@ -108,7 +109,6 @@ Alpha features might be changed or removed without prior notice.
| `alertStateHistoryLokiOnly` | Disable Grafana alerts from emitting annotations when a remote Loki instance is available. |
| `unifiedRequestLog` | Writes error logs to the request logger |
| `pyroscopeFlameGraph` | Changes flame graph to pyroscope one |
| `authenticationConfigUI` | Enables authentication configuration UI |
| `pluginsAPIManifestKey` | Use grafana.com API to retrieve the public manifest key |
| `extraThemes` | Enables extra themes |
| `lokiPredefinedOperations` | Adds predefined query operations to Loki query editor |

View File

@ -490,7 +490,8 @@ var (
{
Name: "authenticationConfigUI",
Description: "Enables authentication configuration UI",
State: FeatureStateAlpha,
State: FeatureStateStable,
Expression: "true",
Owner: grafanaAuthnzSquad,
},
{

View File

@ -71,7 +71,7 @@ externalServiceAuth,alpha,@grafana/grafana-authnz-team,true,false,false,false
refactorVariablesTimeRange,beta,@grafana/dashboards-squad,false,false,false,false
useCachingService,stable,@grafana/grafana-operator-experience-squad,false,false,true,false
enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false,false,false
authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false
authenticationConfigUI,stable,@grafana/grafana-authnz-team,false,false,false,false
pluginsAPIManifestKey,alpha,@grafana/plugins-platform-backend,false,false,false,false
advancedDataSourcePicker,stable,@grafana/dashboards-squad,false,false,false,true
faroDatasourceSelector,beta,@grafana/app-o11y,false,false,false,true

1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
71 refactorVariablesTimeRange beta @grafana/dashboards-squad false false false false
72 useCachingService stable @grafana/grafana-operator-experience-squad false false true false
73 enableElasticsearchBackendQuerying beta @grafana/observability-logs false false false false
74 authenticationConfigUI alpha stable @grafana/grafana-authnz-team false false false false
75 pluginsAPIManifestKey alpha @grafana/plugins-platform-backend false false false false
76 advancedDataSourcePicker stable @grafana/dashboards-squad false false false true
77 faroDatasourceSelector beta @grafana/app-o11y false false false true