-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09c76ae
commit 92a8655
Showing
2 changed files
with
5 additions
and
38 deletions.
There are no files selected for viewing
38 changes: 2 additions & 36 deletions
38
releasenotes/notes/bump-go-sqllexer-0.0.15-18432a15bec8d683.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,5 @@ | ||
# Each section from every release note are combined when the | ||
# CHANGELOG.rst is rendered. So the text needs to be worded so that | ||
# it does not depend on any information only available in another | ||
# section. This may mean repeating some details, but each section | ||
# must be readable independently of the other. | ||
# | ||
# Each section note must be formatted as reStructuredText. | ||
--- | ||
upgrade: | ||
- | | ||
List upgrade notes here, or remove this section. | ||
Upgrade notes should be rare: only list known/potential breaking changes, | ||
or major behaviorial changes that require user action before the upgrade. | ||
Notes here must include steps that users can follow to 1. know if they're | ||
affected and 2. handle the change gracefully on their end. | ||
features: | ||
- | | ||
List new features here, or remove this section. | ||
enhancements: | ||
- | | ||
List enhancements (new behavior that is too small to be | ||
considered a new feature), or remove this section. | ||
issues: | ||
- | | ||
List known issues here, or remove this section. | ||
deprecations: | ||
- | | ||
List deprecations notes here, or remove this section. | ||
security: | ||
- | | ||
Add security notes here, or remove this section. | ||
fixes: | ||
- | | ||
Add normal bug fixes here, or remove this section. | ||
other: | ||
- | | ||
Add here every other information you want in the CHANGELOG that | ||
don't fit in any other section. This section should rarely be | ||
used. | ||
DBM: Add configuration options to SQL obfuscator to customize the obfuscation of SQL statements: | ||
- ``KeepJsonPath`` - option to control whether JSON paths following JSON operators in SQL statements should be obfuscated. This option is only valid when ``ObfuscationMode`` is ``obfuscate_and_normalize``. |
5 changes: 3 additions & 2 deletions
5
releasenotes/notes/bump-go-sqllexer-with-more-obfuscation-options-ca13fcbeb4c9b299.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
features: | ||
- | | ||
DBM: Add configuration options to SQL obfuscator to customize the obfuscation of SQL statements: | ||
- ``KeepJsonPath`` - option to control whether JSON paths following JSON operators in SQL statements should be obfuscated. This option is only valid when ``ObfuscationMode`` is ``obfuscate_and_normalize``. | ||
DBM: Add configuration options to SQL obfuscator to customize the normalization of SQL statements: | ||
- ``KeepTrailingSemicolon`` - disable removing trailing semicolon. This option is only valid when ``ObfuscationMode`` is ``obfuscate_and_normalize``. | ||
- ``KeepIdentifierQuotation`` - disable removing quotation marks around identifiers. This option is only valid when ``ObfuscationMode`` is ``obfuscate_and_normalize``. |