Releases: 51Degrees/pipeline-dotnet
Releases · 51Degrees/pipeline-dotnet
Version 4.4.11
- Optimizations to logging functionality improve performance
Version 4.4.10
- Better handling for invalid urls in JavaScriptBuilderElement
- SetHeadersProvider should check if response has been sent before trying to set headers (Fixes incompatibility with SignalR OWIN module)
Version 4.4.9
Fix an issue that prevents client-side features from working when using the .NET Framework web integration. (i.e. Apple model detection, etc)
Version 4.4.8
- FEAT: Remove dependency on SourceLink package.
- BUG: Better handling for missing properties during calls to cloud service.
- BUG: Fix issues with usage sharing.
Version 4.4.7
- REFACTOR: Move pipeline builder code re. creating new instances to FiftyOneServiceProvider.
Version 4.4.6
- New Pipeline method to verify if a required element is present in the pipeline before a specific element.
Version 4.4.5
- Fix a stack overflow error that could occur when using the .NET Framework web integration
- Update 3rd party dependencies to remove vulnerabilities
Version 4.4.3
- DOC: Updated URLs to use https
Version 4.4.0
Included changes:
- BUILD: Updated to net core 3.1. Removed netcore 2.1. web example.
Version 4.3.16
- OPTIM: HttpClient SendAsync could result in a TaskCanceledException. The cause of this would likely be a Timeout Exception. Thus, move the call to HttpClient.SendAsync to a separate function to handle the TaskCanceledException accordingly and returns or rethrown with a sensible exception. Also, added Tests.
- CLEANUP: Pipeline should dispose it's elements on close by default.