Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Commit

Permalink
v0.16.1
Browse files Browse the repository at this point in the history
Fixes

- (#158) PII: make the PII scrubbing of In-App WAF attack events
  case-insensitive in order to correctly scrub transformed request parameters.

- (#159) Monitoring: fix the content type and length monitoring of HTTP
  responses.

- (#157) Gin middleware: use the request Go context instead of Gin's so that the
  agent can properly manage the request execution context, but also to correctly
  propagate values stored in the Go context before the middleware function.
  • Loading branch information
Julio Guerra committed Sep 30, 2020
2 parents 664f740 + 3a7de0d commit 378102d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# v0.16.1 - 30 September 2020

## Fixes

- (#158) PII: make the PII scrubbing of In-App WAF attack events
case-insensitive in order to correctly scrub transformed request parameters.

- (#159) Monitoring: fix the content type and length monitoring of HTTP
responses.

- (#157) Gin middleware: use the request Go context instead of Gin's so that the
agent can properly manage the request execution context, but also to correctly
propagate values stored in the Go context before the middleware function.


# v0.16.0 - 22 September 2020

## New Feature
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

package version

const version = "0.16.0"
const version = "0.16.1"

func Version() string { return version }

0 comments on commit 378102d

Please sign in to comment.