Skip to content

Commit

Permalink
Add fields to the scrubber field set.
Browse files Browse the repository at this point in the history
  • Loading branch information
csaba-ilonka-rollbar committed Jan 11, 2024
1 parent c8fbf46 commit 0affa98
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions Rollbar/RollbarDataScrubbingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,19 @@ public virtual ISet<string> GetDefaultFields()
return new HashSet<string>(
new[]
{
"Password",
"Password",
"password",
"passwd",
"confirm_password",
"password_confirmation",
"password_confirmation",
"AccessToken",
"accessToken",
"auth_token",
"authentication",
"Authentication",
"authentication",
"Authorization",
"authorization",
"Secret",
"secret",
}
);
Expand Down
4 changes: 2 additions & 2 deletions SdkCommon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</ItemGroup>

<PropertyGroup Label="SDK Release Essential Info">
<SdkVersion>5.2.0</SdkVersion> <!-- Required: major.minor.patch -->
<SdkVersion>5.2.1</SdkVersion> <!-- Required: major.minor.patch -->
<SdkVersionSuffix></SdkVersionSuffix> <!-- Optional. Examples: alpha, beta, preview, RC etc. -->
<SdkLtsRelease>false</SdkLtsRelease> <!-- Optional. Examples: false (default) or true. -->
<SdkReleaseNotes> <!-- Required -->

feat: resolve #630 - No option to set code_version at the config level in v5 of the SDK
fix: resolve #644 - Scrub access token in the message payload

</SdkReleaseNotes>

Expand Down

0 comments on commit 0affa98

Please sign in to comment.