diff --git a/releasenotes/notes/bump-go-sqllexer-0.0.15-18432a15bec8d683.yaml b/releasenotes/notes/bump-go-sqllexer-0.0.15-18432a15bec8d683.yaml index 97be566b8eb88..21708cacfb2aa 100644 --- a/releasenotes/notes/bump-go-sqllexer-0.0.15-18432a15bec8d683.yaml +++ b/releasenotes/notes/bump-go-sqllexer-0.0.15-18432a15bec8d683.yaml @@ -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``. diff --git a/releasenotes/notes/bump-go-sqllexer-with-more-obfuscation-options-ca13fcbeb4c9b299.yaml b/releasenotes/notes/bump-go-sqllexer-with-more-obfuscation-options-ca13fcbeb4c9b299.yaml index 21708cacfb2aa..de69a7ffb6411 100644 --- a/releasenotes/notes/bump-go-sqllexer-with-more-obfuscation-options-ca13fcbeb4c9b299.yaml +++ b/releasenotes/notes/bump-go-sqllexer-with-more-obfuscation-options-ca13fcbeb4c9b299.yaml @@ -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``.