Skip to content

Releases: Moesif/moesif-dotnet

v3.1.3

16 Dec 07:50
dd9d7ea
Compare
Choose a tag to compare

Release Notes:

  • Performance improvement in Lambda environment.
  • Code Refactoring

v3.1.2

07 Dec 09:37
61132e4
Compare
Choose a tag to compare

Release Notes:

  • Performance improvement based on stress test results.
  • Code cleanup
  • No change in feature.

v3.1.1

22 Nov 23:42
0d8d4a6
Compare
Choose a tag to compare

Release Notes:

  • Fixed a bug WebAPI Stream was created even if LogBody was disabled in .NetFramework target
    • stream creation for WebApi if LogBody is disabled.
    • Create Owin Stream only if WebAPI stream is not created or invalid and LogBody is enabled.

v3.1.0

22 Nov 17:05
0ab81ce
Compare
Choose a tag to compare

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 if IsLambda is enabled (true)
  • 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

15 Nov 08:52
4f4d2ef
Compare
Choose a tag to compare

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 exceeds RequestMaxBodySize.
    • 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 exceeds RequestMaxBodySize.
  • Fixed LogBody option. If set to false, body is not read into memory.

v1.5.1

14 Nov 20:00
a5cc647
Compare
Choose a tag to compare

Release Notes:

  • Added instrumentation for perf testing.

v1.4.9

30 Aug 05:33
a9270b2
Compare
Choose a tag to compare

Release Notes:

  • Added support for AWS Lambda to fix the issue of response body not getting logged to Moesif.
    • To use the middleware in AWS Lambda, set IsLambda option (default is false) to true.

v1.4.7

04 Jun 00:58
d4c1baf
Compare
Choose a tag to compare

Release Notes:

  • Refactor: Avoid reading body when logBody is set to false
  • Bump version to 1.4.7

v1.4.6

29 May 19:20
1f9a768
Compare
Choose a tag to compare

Release Notes:

  • Fixes nuget spec to include correct version of dependency package

v1.4.5

23 May 01:08
4a8d063
Compare
Choose a tag to compare

Release Notes:

  • Fixes nuget spec to include missing dependency package
  • Doc cleanup.