diff --git a/EventStore.Plugins.sln b/EventStore.Plugins.sln index bd86634..3f375b9 100644 --- a/EventStore.Plugins.sln +++ b/EventStore.Plugins.sln @@ -12,7 +12,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution .editorconfig = .editorconfig .gitignore = .gitignore LICENSE.md = LICENSE.md - NOTICE.md = NOTICE.md qodana.yaml = qodana.yaml README.md = README.md EndProjectSection diff --git a/src/EventStore.Plugins/Authentication/AuthenticationProviderBase.cs b/src/EventStore.Plugins/Authentication/AuthenticationProviderBase.cs index c25caa3..836f827 100644 --- a/src/EventStore.Plugins/Authentication/AuthenticationProviderBase.cs +++ b/src/EventStore.Plugins/Authentication/AuthenticationProviderBase.cs @@ -10,12 +10,14 @@ protected AuthenticationProviderBase( string? name = null, string? version = null, string? licensePublicKey = null, + string[]? requiredEntitlements = null, string? diagnosticsName = null, params KeyValuePair[] diagnosticsTags ) : this(new() { Name = name, Version = version, LicensePublicKey = licensePublicKey, + RequiredEntitlements = requiredEntitlements, DiagnosticsName = diagnosticsName, DiagnosticsTags = diagnosticsTags }) { } diff --git a/src/EventStore.Plugins/Authorization/AuthorizationProviderBase.cs b/src/EventStore.Plugins/Authorization/AuthorizationProviderBase.cs index b6a4dd8..a04a2cb 100644 --- a/src/EventStore.Plugins/Authorization/AuthorizationProviderBase.cs +++ b/src/EventStore.Plugins/Authorization/AuthorizationProviderBase.cs @@ -10,12 +10,14 @@ protected AuthorizationProviderBase( string? name = null, string? version = null, string? licensePublicKey = null, + string[]? requiredEntitlements = null, string? diagnosticsName = null, params KeyValuePair[] diagnosticsTags ) : this(new() { Name = name, Version = version, LicensePublicKey = licensePublicKey, + RequiredEntitlements = requiredEntitlements, DiagnosticsName = diagnosticsName, DiagnosticsTags = diagnosticsTags }) { } diff --git a/src/EventStore.Plugins/EventStore.Plugins.csproj b/src/EventStore.Plugins/EventStore.Plugins.csproj index 18e705f..af511c7 100644 --- a/src/EventStore.Plugins/EventStore.Plugins.csproj +++ b/src/EventStore.Plugins/EventStore.Plugins.csproj @@ -18,7 +18,7 @@ false The interfaces required to create plugins for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/ https://eventstore.com/blog/release-notes/ - Copyright 2012-2024 Event Store Ltd + Copyright 2011-2024 Event Store Ltd eventstore plugins