-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Diagnostics: Remove unused anonymizer #1795
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1795 +/- ##
==========================================
- Coverage 82.87% 82.87% -0.01%
==========================================
Files 223 221 -2
Lines 7673 7654 -19
Branches 1078 1074 -4
==========================================
- Hits 6359 6343 -16
+ Misses 893 892 -1
+ Partials 421 419 -2 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PurchasesConfiguration.diagnosticsEnabled()
has the following line in the docs:
This information will be anonymized so it can't be traced back to the end-user.
Should we remove or reword that? We could say something like:
No personal identifiable information will be collected.
Other than that it looks good to me!
Ah great catch! Yeah, that would be better, fixing! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
**This is an automatic release.** ### New Features * Adds pricePerPeriod functions to PricingPhase (#1789) via JayShortway (@JayShortway) ### Dependency Updates * Bump rexml from 3.2.9 to 3.3.2 (#1788) via dependabot[bot] (@dependabot[bot]) * Bump fastlane from 2.221.1 to 2.222.0 (#1797) via dependabot[bot] (@dependabot[bot]) ### Other Changes * Adds the baseline file to the Detekt IntelliJ plugin settings. (#1798) via JayShortway (@JayShortway) * Adds the Detekt IntelliJ plugin settings to version control. (#1796) via JayShortway (@JayShortway) * Diagnostics: Remove unused anonymizer (#1795) via Toni Rico (@tonidero) Co-authored-by: revenuecat-ops <[email protected]>
Description
The
Anonymizer
was unused and we don't plan to track any sort of PII with this feature, so removing this code for now.