diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fe603988..4a862a5db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ -## Unreleased +## v0.38.0 (October 24, 2022) FEATURES: +* d/tfe_oauth_client: Adds `name`, `service_provider`, `service_provider_display_name`, `organization`, `callback_url`, and `created_at` fields, and enables searching for an OAuth client with `organization`, `name`, and `service_provider`. ([#599](https://github.com/hashicorp/terraform-provider-tfe/pull/599)) * d/tfe_organization_members: Add datasource for organization_members that returns a list of active members and members with pending invite in an organization. ([#635](https://github.com/hashicorp/terraform-provider-tfe/pull/635)) * d/tfe_organization_membership: Add new argument `username` to enable fetching an organization membership by username. ([#660](https://github.com/hashicorp/terraform-provider-tfe/pull/660)) * r/tfe_organization_membership: Add new computed attribute `username`. ([#660](https://github.com/hashicorp/terraform-provider-tfe/pull/660)) * r/tfe_team_organization_members: Add resource for managing team members via organization membership IDs ([#617](https://github.com/hashicorp/terraform-provider-tfe/pull/617)) -* d/tfe_oauth_client: Adds `name`, `service_provider`, `service_provider_display_name`, `organization`, `callback_url`, and `created_at` fields, and enables searching for an OAuth client with `organization`, `name`, and `service_provider`. ([#599](https://github.com/hashicorp/terraform-provider-tfe/pull/599)) BUG FIXES: * r/tfe_workspace: When assessments_enabled was the only change in to the resource the workspace was not being updated ([#641](https://github.com/hashicorp/terraform-provider-tfe/pull/641)) - +NOTES: +* The provider is now using go 1.18. ([#643](https://github.com/hashicorp/terraform-provider-tfe/pull/643), [#646](https://github.com/hashicorp/terraform-provider-tfe/pull/646)) ## v0.37.0 (September 28, 2022) diff --git a/README.md b/README.md index 8ae5a0e32..a5b183b1e 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Declare the provider in your configuration and `terraform init` will automatical terraform { required_providers { tfe = { - version = "~> 0.37.0" + version = "~> 0.38.0" } } } @@ -45,7 +45,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.37.0" + version = "~> 0.38.0" ... } ``` diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 822d96895..d3869c321 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown @@ -76,7 +76,7 @@ automatically installed by `terraform init` in the future: terraform { required_providers { tfe = { - version = "~> 0.37.0" + version = "~> 0.38.0" } } } @@ -89,7 +89,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are ```hcl provider "tfe" { - version = "~> 0.37.0" + version = "~> 0.38.0" ... } ``` @@ -102,7 +102,7 @@ For more information on provider installation and constraining provider versions provider "tfe" { hostname = var.hostname token = var.token - version = "~> 0.37.0" + version = "~> 0.38.0" } # Create an organization