-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add redaction control based on environment variables #7
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WilliamVenner
force-pushed
the
feat/environment-override
branch
from
September 5, 2022 09:35
c4765f8
to
e2921d9
Compare
WilliamVenner
force-pushed
the
feat/environment-override
branch
from
September 6, 2022 09:44
e2f39b6
to
cb6ae55
Compare
cottinisimone
previously approved these changes
Sep 6, 2022
WilliamVenner
force-pushed
the
feat/environment-override
branch
from
September 6, 2022 10:59
cb6ae55
to
3fb52e0
Compare
cottinisimone
approved these changes
Sep 6, 2022
WilliamVenner
added a commit
that referenced
this pull request
Sep 6, 2022
* Add redaction control based on environment variables * Add dedicated headers to make this clearer * cargo fmt * Add research findings on function deduplication * Use a much clearer format for the `.veil.toml` file * Fix documentation inconsistency with README * Remove .vscode/settings.json - we dont need it anymore
WilliamVenner
added a commit
that referenced
this pull request
Sep 6, 2022
* Add redaction control based on environment variables * Add dedicated headers to make this clearer * cargo fmt * Add research findings on function deduplication * Use a much clearer format for the `.veil.toml` file * Fix documentation inconsistency with README * Remove .vscode/settings.json - we dont need it anymore
MaeIsBad
added a commit
that referenced
this pull request
Sep 22, 2022
Due to the way cargo works .veil.toml can't impact other crates consistently. This reverts commit 69dd762.
WilliamVenner
added a commit
that referenced
this pull request
Sep 26, 2022
* Revert "Add redaction control based on environment variables (#7)" Due to the way cargo works .veil.toml can't impact other crates consistently. This reverts commit 69dd762. * Remove all mentions of the environment aware feature * Add a set_debug_format function This is a simpler replacement for the environmental awareness feature. * Mention being able to skip redacting data * Move tests that disable redaction into a separate crate This is neccessary because rust runs all tests in the same process, leading to tests failing randomly, because of other tests modifying the global state. There is some proposal on the rust compiler-team github repo but until that gets stabilized we have to use this hack instead rust-lang/compiler-team#508 * Loosen the version requirement of once_cell to 1.0.0 Co-authored-by: William <[email protected]> * Hide the disable feature behind a feature flag Ensure that the use of this feature requires a very explicit opt-in from the user. * Add support for disabling veil with VEIL_DISABLE_REDACTION * Test the toggle feature with drone * Minor fixes to disable-redaction-test * Rename it to veil-tests-disable-redaction * Set publish = false * Change the outer line doc comment describing the test into a inner line doc comment * Improve the disable veil redaction docs This avoids repeating that the disable function needs the toggle feature flag which makes it clearer that the VEIL_DISABLE_REDACTION envar also needs the feature flag * Clarify RedactionBehavior doc comment Co-authored-by: William <[email protected]> * Add missing space in README.md * Update README.md Make it clear that to skip redacting data the user needs to either call the disable function *or* set the VEIL_DISABLE_REDACTION variable, not both. * Update outdated comment in the disable_redaction example Co-authored-by: mae.kasza <[email protected]> Co-authored-by: William <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There's a ton of magic to this.
The README in this PR should explain everything.