Skip to content

Commit

Permalink
Merge pull request #646 from rollbar/icsaba/add-scrub-fields
Browse files Browse the repository at this point in the history
fix: resolve #644
  • Loading branch information
csaba-ilonka-rollbar authored Jan 17, 2024
2 parents c8fbf46 + 4c9f6e9 commit 75f128c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions Rollbar/RollbarDataScrubbingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,17 @@ 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",
"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 75f128c

Please sign in to comment.