diff --git a/src/NetEvolve.Pulse.Extensibility/IEventInterceptor.cs b/src/NetEvolve.Pulse.Extensibility/IEventInterceptor.cs index eb5ebc7..f62c788 100644 --- a/src/NetEvolve.Pulse.Extensibility/IEventInterceptor.cs +++ b/src/NetEvolve.Pulse.Extensibility/IEventInterceptor.cs @@ -20,12 +20,6 @@ /// Event filtering or routing /// Metrics and monitoring /// -/// ⚠️ Upgrade Notes: -/// The delegate signature changed from Func<TEvent, Task> -/// to Func<TEvent, CancellationToken, Task>. This is a breaking change: -/// all existing interceptor implementations must update their HandleAsync overrides to pass -/// the cancellationToken argument when invoking the handler, i.e. -/// await handler(message, cancellationToken) instead of await handler(message). /// Best Practices: /// /// Keep interceptors lightweight diff --git a/src/NetEvolve.Pulse.Extensibility/IRequestInterceptor.cs b/src/NetEvolve.Pulse.Extensibility/IRequestInterceptor.cs index 236b0a6..5117163 100644 --- a/src/NetEvolve.Pulse.Extensibility/IRequestInterceptor.cs +++ b/src/NetEvolve.Pulse.Extensibility/IRequestInterceptor.cs @@ -28,12 +28,6 @@ /// Exception handling and retry logic /// Request/response transformation /// -/// ⚠️ Upgrade Notes: -/// The delegate signature changed from Func<TRequest, Task<TResponse>> -/// to Func<TRequest, CancellationToken, Task<TResponse>>. This is a breaking change: -/// all existing interceptor implementations must update their HandleAsync overrides to forward -/// the cancellationToken when invoking the handler, i.e. -/// await handler(request, cancellationToken) instead of await handler(request). /// Best Practices: /// /// Keep interceptors focused on a single concern