Releases: Moesif/moesif-dotnet
Releases · Moesif/moesif-dotnet
v3.1.3
v3.1.2
v3.1.1
v3.1.0
Release Notes:
- Use Latest Moesif API 3.1.0 (deprecated support for .Net Core 2.0)
- Added support for .NET6
- Configuration Related changes
- Added support for
RequestMaxBodySize
&ResposneMaxBodySize
(defaults to 100K)- Does not log request or response body if body size exceeds configured max size.
- For AWS Lambda,
EnableBatching
is disabled ifIsLambda
is enabled (true)
- Added support for
- Fixed performance issue
- Create Memory Stream to read response body only if LogBody is enabled (true)
- Use latest serializer/deserializer (.NET6) to improve perf
v1.5.2
Release Notes Version 1.5.2 for .NET5 or NetCore2 or earlier frameworks
- Two new options have been added:
RequestMaxBodySize
(defaults to 100000) : The maximum request body size in bytes to log when sending the data to Moesif. Request body will not be logged if its size exceedsRequestMaxBodySize
.ResponseMaxBodySize
(defaults to 100000) : The maximum response body size in bytes to log when sending the data to Moesif. Reponse body will not be logged if its size exceedsRequestMaxBodySize
.
- Fixed
LogBody
option. If set to false, body is not read into memory.