chore(deps): update module github.com/cockroachdb/redact to v1.1.8#26
Open
red-hat-konflux[bot] wants to merge 1 commit into
Open
chore(deps): update module github.com/cockroachdb/redact to v1.1.8#26red-hat-konflux[bot] wants to merge 1 commit into
red-hat-konflux[bot] wants to merge 1 commit into
Conversation
d7bb53c to
8bcbae2
Compare
Author
|
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
8bcbae2 to
e319d65
Compare
e319d65 to
0d527a4
Compare
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
0d527a4 to
9de5a18
Compare
This file contains hidden or 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
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.
This PR contains the following updates:
v1.1.5→v1.1.8Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
cockroachdb/redact (github.com/cockroachdb/redact)
v1.1.8: Feature Enhancements and Performance ImprovementsCompare Source
Note: Behavior Change in
Redact()There is a subtle behavior change in how the
Redactmethod operates in this version.Previously,
Redact()worked with a regexp based search-and-replace methodology which would, in the case of nested markers, redact the inner markers only:‹a‹b›c›would be redacted to‹a‹×›c›. Mis-matched markers would also leak information.The changes in v1.1.8 modify behavior to be more greedy when encountering a redaction start marker. You can expect information after a start marker to be consistently redacted until we see an end marker.
Please note that the library already takes steps to prevent mismatched markers from being output. It already escapes redaction markers within provided strings automatically so nested or mismatched markers can only occur if the library is manipulating
RedactableStringinstances it did not create.Some examples below highlight what's different:
‹a‹b›c›‹b›(inner pair only)‹a‹×›c›‹left,›right‹a‹b›c›‹a‹b›(first‹to first›)‹×›c››right‹SECRET‹inner›‹inner›(inner pair only)‹SECRET‹×›‹‹SECRET‹inner›‹SECRET‹inner›(first‹to first›)‹×›‹inner›SECRET›‹inner›(inner pair only)‹×›SECRET››‹inner›SECRET›‹inner›(first‹to first›)‹×›SECRET›(same as before)›What's Changed
v1.1.8 — Performance: replace regexp with manual scanning
v1.1.7 — Hash-based redaction and OTel processor
v1.1.6 — SafeByte/SafeBytes support
Full Changelog: cockroachdb/redact@v1.1.5...v1.1.8
v1.1.7Compare Source
v1.1.6Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.