diff --git a/.changes/3.3.0.md b/.changes/3.3.0.md new file mode 100644 index 00000000..b0aef1b1 --- /dev/null +++ b/.changes/3.3.0.md @@ -0,0 +1,11 @@ +## 3.3.0 (April 25, 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. ([#245](https://github.com/hashicorp/terraform-provider-http/issues/245)) + +ENHANCEMENTS: + +* data-source/http: Added `retry` with nested `attempts`, `max_delay_ms` and `min_delay_ms` ([#151](https://github.com/hashicorp/terraform-provider-http/issues/151)) +* data-source/http: Added `request_timeout_ms` ([#151](https://github.com/hashicorp/terraform-provider-http/issues/151)) + diff --git a/.changes/unreleased/ENHANCEMENTS-20230209-165728.yaml b/.changes/unreleased/ENHANCEMENTS-20230209-165728.yaml deleted file mode 100644 index 09867460..00000000 --- a/.changes/unreleased/ENHANCEMENTS-20230209-165728.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: ENHANCEMENTS -body: 'data-source/http: Added `retry` with nested `attempts`, `max_delay_ms` and `min_delay_ms`' -time: 2023-02-09T16:57:28.046924Z -custom: - Issue: "151" diff --git a/.changes/unreleased/ENHANCEMENTS-20230209-165747.yaml b/.changes/unreleased/ENHANCEMENTS-20230209-165747.yaml deleted file mode 100644 index 2f338ff3..00000000 --- a/.changes/unreleased/ENHANCEMENTS-20230209-165747.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: ENHANCEMENTS -body: 'data-source/http: Added `request_timeout_ms`' -time: 2023-02-09T16:57:47.790638Z -custom: - Issue: "151" diff --git a/.changes/unreleased/NOTES-20230303-150722.yaml b/.changes/unreleased/NOTES-20230303-150722.yaml deleted file mode 100644 index 0ceb5f0a..00000000 --- a/.changes/unreleased/NOTES-20230303-150722.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-03T15:07:22.447548Z -custom: - Issue: "245" diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd31cb8..593063c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 3.3.0 (April 25, 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. ([#245](https://github.com/hashicorp/terraform-provider-http/issues/245)) + +ENHANCEMENTS: + +* data-source/http: Added `retry` with nested `attempts`, `max_delay_ms` and `min_delay_ms` ([#151](https://github.com/hashicorp/terraform-provider-http/issues/151)) +* data-source/http: Added `request_timeout_ms` ([#151](https://github.com/hashicorp/terraform-provider-http/issues/151)) + ## 3.2.1 (November 7, 2022) BUG FIXES