Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
Update CHANGELOG.md and prepare for 0.4.0 release #minor. (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
linouk23 authored Jan 31, 2022
1 parent d2678f1 commit 036be15
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.4.0 (January 28, 2022)

[Full Changelog](https://github.com/confluentinc/terraform-provider-confluentcloud/compare/v0.3.0...v0.4.0)

* Added data sources ([#36](https://github.com/confluentinc/terraform-provider-confluentcloud/issues/36)) for:
* `confluentcloud_environment`
* `confluentcloud_kafka_cluster`
* `confluentcloud_kafka_topic`
* `confluentcloud_service_account`
* Improved readability of error messages by adding details to them ([#28](https://github.com/confluentinc/terraform-provider-confluentcloud/issues/28)).
* Resolved potential HTTP 429 errors by adding automatic retries with exponential backoff for HTTP requests ([#15](https://github.com/confluentinc/terraform-provider-confluentcloud/issues/15), [#22](https://github.com/confluentinc/terraform-provider-confluentcloud/issues/22)).
* Added graceful handling for resources created via Terraform but deleted via Confluent Cloud Console, Confluent CLI, or Confluent Cloud APIs.
* Fixed minor bugs and docs issues.

**Breaking changes**

* Removed a friction around manual look-up of IntegerID for Service Accounts by removing the need to use a `service_account_int_id` TF variable. If you are using the `confluentcloud_kafka_acl` resource you might see an input validation error after running `terraform plan`, which can be resolved by following [this guide](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs/guides/upgrade-guide-0.4.0).
* Updated "Sample project" [guide](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs/guides/sample-project) to reflect this change.
* Simplified `confluentcloud_role_binding` resource creation by adding a new `rbac_crn` attribute for `confluentcloud_kafka_cluster` resource.
* Updated the `confluentcloud_role_binding` resource examples to reflect this simplified approach.

## 0.3.0 (January 11, 2022)

[Full Changelog](https://github.com/confluentinc/terraform-provider-confluentcloud/compare/v0.2.0...v0.3.0)
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/sample-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Kafka cluster.
required_providers {
confluentcloud = {
source = "confluentinc/confluentcloud"
version = "0.3.0"
version = "0.4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ terraform {
required_providers {
confluentcloud = {
source = "confluentinc/confluentcloud"
version = "0.3.0"
version = "0.4.0"
}
}
}
Expand Down

0 comments on commit 036be15

Please sign in to comment.