Clone this repo:
  1. c54d719 redaction_tool: keeping the source up-to-date (memory dumps) by Donna Dionne · 10 weeks ago factory-geralt-15840.B firmware-geralt-15842.B main release-R124-15823.B release-R125-15853.B stabilize-15793.B stabilize-15828.B stabilize-15855.B stabilize-15857.B
  2. 8410793 Update team email in DIR_METADATA by Ian Barkley-Yeung · 3 months ago release-R123-15786.B stabilize-15786.48.B stabilize-15786.58.B stabilize-quickfix-15786.49.B
  3. 8b48dc0 redaction_tool: Remove debug logging by Ian Barkley-Yeung · 3 months ago
  4. 98300b6 redaction_tool: Keeping the source up-to-date by Donna Dionne · 3 months ago
  5. be9d6c7 redaction_tool: Redact partial user id hashes from cryptohome device names by Matthias Kaehlcke · 4 months ago release-R122-15753.B stabilize-15753.46.B stabilize-15753.55.B stabilize-15756.B

redaction_tool: PII Redaction Tool

A redaction_tool redacts PII using a wide set of RegEx expressions.

This code is a mirror of https://source.chromium.org/chromium/chromium/src/+/main:components/feedback/redaction_tool/

Changes should be made in chromium code base only and then be upreved here.

How to update the source

To pull in updates from chromium/src, do the following:

  • git remote update
  • git checkout -b main cros/main
  • git merge cros/upstream/main
    • BUILD.gn should mostly use the version from main, unless the upstream changes the files to be built.
    • The #include paths should use the version from main (without “components/feedback”). This should be the majority of the merge conflicts.
    • In the commit message of the merge, list the commits from upstream that are merged.
    • If you need to make changes to the merged commits (outside of conflicts), do that work in separate commits. For example, if you need to revert commits, use git revert after committing the merge commit. This preserves the history and makes it clear why a change is being reverted rather than quietly changing it in the merge commit.
    • Check the changes introduced by your merge by doing a diff against the commit before the merge. The difference should be the same as the changes in the upstream.
  • Push the resulting merge commit for review with:
    • git push HEAD:refs/for/main