Skip to content

Commit

Permalink
Preparing CHANGELOG for v0.6.0 (#82)
Browse files Browse the repository at this point in the history
* Reworked the changelog entries from PR #78

* Preparing CHANGELOG for v0.6.0
  • Loading branch information
Ivan De Marino committed Jul 15, 2022
1 parent a2e3687 commit a8c50c1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 88 deletions.
96 changes: 8 additions & 88 deletions .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
```
13 changes: 13 additions & 0 deletions 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:
Expand Down

0 comments on commit a8c50c1

Please sign in to comment.