From a8c50c17628cac8886bd6ab9e2873037b61b564b Mon Sep 17 00:00:00 2001 From: Ivan De Marino Date: Fri, 15 Jul 2022 18:33:46 +0100 Subject: [PATCH] Preparing `CHANGELOG` for `v0.6.0` (#82) * Reworked the changelog entries from PR #78 * Preparing CHANGELOG for v0.6.0 --- .changelog/78.txt | 96 ++++------------------------------------------- CHANGELOG.md | 13 +++++++ 2 files changed, 21 insertions(+), 88 deletions(-) diff --git a/.changelog/78.txt b/.changelog/78.txt index 467209f..b283daa 100644 --- a/.changelog/78.txt +++ b/.changelog/78.txt @@ -1,111 +1,31 @@ ```release-note:breaking-change -tflog: renamed `With()` to `SetField()` +tflog: renamed `With()` and `SubsystemWith()`, to `SetField()` and `SubsystemSetField()` respectively ``` ```release-note:breaking-change -tflog: renamed `WithOmitLogWithFieldKeys()` to `OmitLogWithFieldKeys()` +tflog: renamed `WithOmitLogWithFieldKeys()` and `SubsystemWithOmitLogWithFieldKeys()`, to `OmitLogWithFieldKeys()` and `SubsystemOmitLogWithFieldKeys()` respectively ``` ```release-note:breaking-change -tflog: renamed `WithOmitLogWithMessageRegex()` to `OmitLogWithMessageRegexes()` +tflog: renamed `WithOmitLogWithMessageRegex()` and `SubsystemWithOmitLogWithMessageRegex()`, to `OmitLogWithMessageRegexes()` and `SubsystemOmitLogWithMessageRegexes()` respectively ``` ```release-note:breaking-change -tflog: renamed `WithOmitLogMatchingString()` to `OmitLogWithMessageStrings()` +tflog: renamed `WithOmitLogMatchingString()` and `SubsystemWithOmitLogMatchingString()`, to `OmitLogWithMessageStrings()` and `SubsystemOmitLogWithMessageStrings()` respectively ``` ```release-note:breaking-change -tflog: renamed `WithMaskFieldValueWithFieldKeys()` to `MaskFieldValuesWithFieldKeys()` +tflog: renamed `WithMaskFieldValueWithFieldKeys()` and `SubsystemWithMaskFieldValueWithFieldKeys()`, to `MaskFieldValuesWithFieldKeys()` and `SubsystemMaskFieldValuesWithFieldKeys()` respectively ``` ```release-note:breaking-change -tflog: renamed `WithMaskMessageRegex()` to `MaskMessageRegexes()` +tflog: renamed `WithMaskMessageRegex()` and `SubsystemWithMaskMessageRegex()`, to `MaskMessageRegexes()` and `SubsystemMaskMessageRegexes()` respectively ``` ```release-note:breaking-change -tflog: renamed `WithMaskLogMatchingString()` to `MaskMessageStrings()` +tflog: renamed `WithMaskLogMatchingString()` and `SubsystemWithMaskLogMatchingString()`, to `MaskMessageStrings()` and `SubsystemMaskMessageStrings()` respectively ``` ```release-note:breaking-change -tflog: renamed `SubsystemWith()` to `SubsystemSetField()` -``` - -```release-note:breaking-change -tflog: renamed `SubsystemWithOmitLogWithFieldKeys()` to `SubsystemOmitLogWithFieldKeys()` -``` - -```release-note:breaking-change -tflog: renamed `SubsystemWithOmitLogWithMessageRegex()` to `SubsystemOmitLogWithMessageRegexes()` -``` - -```release-note:breaking-change -tflog: renamed `SubsystemWithOmitLogMatchingString()` to `SubsystemOmitLogWithMessageStrings()` -``` - -```release-note:breaking-change -tflog: renamed `SubsystemWithMaskFieldValueWithFieldKeys()` to `SubsystemMaskFieldValuesWithFieldKeys()` -``` - -```release-note:breaking-change -tflog: renamed `SubsystemWithMaskMessageRegex()` to `SubsystemMaskMessageRegexes()` -``` - -```release-note:breaking-change -tflog: renamed `SubsystemWithMaskLogMatchingString()` to `SubsystemMaskMessageStrings()` -``` - -```release-note:breaking-change -tfsdklog: renamed `With()` to `SetField()` -``` - -```release-note:breaking-change -tfsdklog: renamed `WithOmitLogWithFieldKeys()` to `OmitLogWithFieldKeys()` -``` - -```release-note:breaking-change -tfsdklog: renamed `WithOmitLogWithMessageRegex()` to `OmitLogWithMessageRegexes()` -``` - -```release-note:breaking-change -tfsdklog: renamed `WithOmitLogMatchingString()` to `OmitLogWithMessageStrings()` -``` - -```release-note:breaking-change -tfsdklog: renamed `WithMaskFieldValueWithFieldKeys()` to `MaskFieldValuesWithFieldKeys()` -``` - -```release-note:breaking-change -tfsdklog: renamed `WithMaskMessageRegex()` to `MaskMessageRegexes()` -``` - -```release-note:breaking-change -tfsdklog: renamed `WithMaskLogMatchingString()` to `MaskMessageStrings()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWith()` to `SubsystemSetField()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWithOmitLogWithFieldKeys()` to `SubsystemOmitLogWithFieldKeys()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWithOmitLogWithMessageRegex()` to `SubsystemOmitLogWithMessageRegexes()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWithOmitLogMatchingString()` to `SubsystemOmitLogWithMessageStrings()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWithMaskFieldValueWithFieldKeys()` to `SubsystemMaskFieldValuesWithFieldKeys()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWithMaskMessageRegex()` to `SubsystemMaskMessageRegexes()` -``` - -```release-note:breaking-change -tfsdklog: renamed `SubsystemWithMaskLogMatchingString()` to `SubsystemMaskMessageStrings()` +tfsdklog: same renaming as for the `tflog` package ``` diff --git a/CHANGELOG.md b/CHANGELOG.md index b25ef71..4c4eecf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 0.6.0 (July 15, 2022) + +BREAKING CHANGES: + +* tflog: renamed `With()` and `SubsystemWith()`, to `SetField()` and `SubsystemSetField()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tflog: renamed `WithMaskFieldValueWithFieldKeys()` and `SubsystemWithMaskFieldValueWithFieldKeys()`, to `MaskFieldValuesWithFieldKeys()` and `SubsystemMaskFieldValuesWithFieldKeys()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tflog: renamed `WithMaskLogMatchingString()` and `SubsystemWithMaskLogMatchingString()`, to `MaskMessageStrings()` and `SubsystemMaskMessageStrings()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tflog: renamed `WithMaskMessageRegex()` and `SubsystemWithMaskMessageRegex()`, to `MaskMessageRegexes()` and `SubsystemMaskMessageRegexes()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tflog: renamed `WithOmitLogMatchingString()` and `SubsystemWithOmitLogMatchingString()`, to `OmitLogWithMessageStrings()` and `SubsystemOmitLogWithMessageStrings()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tflog: renamed `WithOmitLogWithFieldKeys()` and `SubsystemWithOmitLogWithFieldKeys()`, to `OmitLogWithFieldKeys()` and `SubsystemOmitLogWithFieldKeys()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tflog: renamed `WithOmitLogWithMessageRegex()` and `SubsystemWithOmitLogWithMessageRegex()`, to `OmitLogWithMessageRegexes()` and `SubsystemOmitLogWithMessageRegexes()` respectively ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) +* tfsdklog: same renaming as for the `tflog` package ([#78](https://github.com/hashicorp/terraform-plugin-log/issues/78)) + # 0.5.0 (July 14, 2022) FEATURES: