[MM-54183] Remove deprecated Manifest.RequiredConfig field (#24319)

This commit is contained in:
Ben Schumacher 2023-08-22 10:39:27 +02:00 committed by GitHub
parent 2e449413e8
commit ef89e9601c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,12 +188,6 @@ type Manifest struct {
// Plugins can store any kind of data in Props to allow other plugins to use it.
Props map[string]any `json:"props,omitempty" yaml:"props,omitempty"`
// RequiredConfig defines any required server configuration fields for the plugin to function properly.
//
// Deprecated: The required server configuration fields should be checked using custom code.
// This field will get removed in the next major release.
RequiredConfig *Config `json:"required_configuration,omitempty" yaml:"required_configuration,omitempty"`
}
type ManifestServer struct {