Skip to content

Commit

Permalink
Merge pull request #651 from hashicorp/aw/update-changelog-for-release
Browse files Browse the repository at this point in the history
📝 Update docs for 0.38.0 release
  • Loading branch information
annawinkler authored Oct 24, 2022
2 parents 7d5f15c + f57a753 commit 7ae789a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand All @@ -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"
...
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ automatically installed by `terraform init` in the future:
terraform {
required_providers {
tfe = {
version = "~> 0.37.0"
version = "~> 0.38.0"
}
}
}
Expand All @@ -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"
...
}
```
Expand All @@ -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
Expand Down

0 comments on commit 7ae789a

Please sign in to comment.