diff --git a/.changes/2.4.0.md b/.changes/2.4.0.md new file mode 100644 index 00000000..49c1f52b --- /dev/null +++ b/.changes/2.4.0.md @@ -0,0 +1,13 @@ +## 2.4.0 (March 08, 2023) + +NOTES: + +* This Go module has been updated to Go 1.19 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). Any consumers building on earlier Go versions may experience errors. ([#184](https://github.com/hashicorp/terraform-provider-local/issues/184)) + +FEATURES: + +* resource/local_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) +* resource/local_sensitive_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) +* data-source/local_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) +* data-source/local_sensitive-file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) + diff --git a/.changes/unreleased/FEATURES-20230209-110755.yaml b/.changes/unreleased/FEATURES-20230209-110755.yaml deleted file mode 100644 index dd785ea9..00000000 --- a/.changes/unreleased/FEATURES-20230209-110755.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'resource/local_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` - checksum outputs.' -time: 2023-02-09T11:07:55.67622-05:00 -custom: - Issue: "142" diff --git a/.changes/unreleased/FEATURES-20230209-110940.yaml b/.changes/unreleased/FEATURES-20230209-110940.yaml deleted file mode 100644 index 26bf9278..00000000 --- a/.changes/unreleased/FEATURES-20230209-110940.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'resource/local_sensitive_file: added support for `MD5`, `SHA1`, `SHA256`, and - `SHA512` checksum outputs.' -time: 2023-02-09T11:09:40.757015-05:00 -custom: - Issue: "142" diff --git a/.changes/unreleased/FEATURES-20230209-111044.yaml b/.changes/unreleased/FEATURES-20230209-111044.yaml deleted file mode 100644 index b199192a..00000000 --- a/.changes/unreleased/FEATURES-20230209-111044.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'data-source/local_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` - checksum outputs.' -time: 2023-02-09T11:10:44.260895-05:00 -custom: - Issue: "142" diff --git a/.changes/unreleased/FEATURES-20230209-111108.yaml b/.changes/unreleased/FEATURES-20230209-111108.yaml deleted file mode 100644 index 8ca8a6ce..00000000 --- a/.changes/unreleased/FEATURES-20230209-111108.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'data-source/local_sensitive-file: added support for `MD5`, `SHA1`, `SHA256`, - and `SHA512` checksum outputs.' -time: 2023-02-09T11:11:08.992066-05:00 -custom: - Issue: "142" diff --git a/.changes/unreleased/NOTES-20230303-160703.yaml b/.changes/unreleased/NOTES-20230303-160703.yaml deleted file mode 100644 index bc5116ce..00000000 --- a/.changes/unreleased/NOTES-20230303-160703.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: NOTES -body: This Go module has been updated to Go 1.19 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). - Any consumers building on earlier Go versions may experience errors. -time: 2023-03-03T16:07:03.002185Z -custom: - Issue: "184" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e443c9a..ed679ff4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 2.4.0 (March 08, 2023) + +NOTES: + +* This Go module has been updated to Go 1.19 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). Any consumers building on earlier Go versions may experience errors. ([#184](https://github.com/hashicorp/terraform-provider-local/issues/184)) + +FEATURES: + +* resource/local_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) +* resource/local_sensitive_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) +* data-source/local_file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) +* data-source/local_sensitive-file: added support for `MD5`, `SHA1`, `SHA256`, and `SHA512` checksum outputs. ([#142](https://github.com/hashicorp/terraform-provider-local/issues/142)) + ## 2.3.0 (January 11, 2023) NOTES: