Skip to content

Commit 02ebd7e

Browse files
authored
Merge pull request #1859 from hashicorp/changelog/one.seventy.zero
v0.70.0 release prep
2 parents 0fd8c7b + 2ba38c9 commit 02ebd7e

File tree

10 files changed

+32
-25
lines changed

10 files changed

+32
-25
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818

1919
tests:
2020
name: run
21+
if: "!startsWith(github.head_ref, 'changelog/')"
2122
runs-on: ubuntu-latest
2223
timeout-minutes: 60
2324
strategy:
@@ -59,6 +60,7 @@ jobs:
5960

6061
tests-combine-summaries:
6162
name: Combine Test Reports
63+
if: "!startsWith(github.head_ref, 'changelog/')"
6264
needs: [ tests ]
6365
runs-on: ubuntu-latest
6466
steps:
@@ -83,9 +85,9 @@ jobs:
8385

8486
tests-summarize:
8587
name: Summarize Tests
88+
if: "!startsWith(github.head_ref, 'changelog/') && always()"
8689
needs: [ tests ]
8790
runs-on: ubuntu-latest
88-
if: ${{ always() }}
8991
steps:
9092
- name: Check tests Status
9193
run: |

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## v0.70.0
4+
35
FEATURES:
46
* `d/tfe_agent_pool`: Adds the `allowed_project_ids` and `excluded_workspace_ids` attributes, by @tylerworlf [#1822](https://github.com/hashicorp/terraform-provider-tfe/pull/1822)
57
* `r/tfe_agent_pool_allowed_projects`: Adds support for scoping agent pools to projects, by @tylerworlf [#1822](https://github.com/hashicorp/terraform-provider-tfe/pull/1822)
@@ -9,6 +11,9 @@ FEATURES:
911
BUG FIXES:
1012
* `r/tfe_workspace_settings`: Prevent unintended clearing of workspace-level tags on the first apply when tags is unset by making tag updates sparse. By @shwetamurali [#1851](https://github.com/hashicorp/terraform-provider-tfe/pull/1851)
1113

14+
DEPRECATIONS:
15+
* `r/tfe_stack` The `deployment_names` has been removed, by @maed223 [#1855](https://github.com/hashicorp/terraform-provider-tfe/pull/1855)
16+
1217
## v0.69.0
1318

1419
BREAKING CHANGES:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Declare the provider in your configuration and `terraform init` will automatical
2828
terraform {
2929
required_providers {
3030
tfe = {
31-
version = "~> 0.69.0"
31+
version = "~> 0.70.0"
3232
}
3333
}
3434
}
@@ -44,14 +44,14 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
4444

4545
```hcl
4646
provider "tfe" {
47-
version = "~> 0.69.0"
47+
version = "~> 0.70.0"
4848
...
4949
}
5050
```
5151

5252
Since v0.24.0, this provider requires [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 0.12
5353

54-
Since v0.69.0, this provider requires [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
54+
Since v0.70.0, this provider requires [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
5555

5656
For more information on provider installation and constraining provider versions, see the [Provider Requirements documentation](https://developer.hashicorp.com/terraform/language/providers/requirements).
5757

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.69.0
1+
0.70.0

website/docs/cdktf/csharp/index.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
1818

1919
Since v0.24.0, this provider requires Terraform >= 0.12.
2020

21-
~> **Important:** Since v0.69.0, this provider requires Terraform >= 1.0.
21+
~> **Important:** Since v0.70.0, this provider requires Terraform >= 1.0.
2222

2323
~> **Important:** For production use, you should constrain the acceptable provider versions via configuration,
2424
to ensure that new versions with breaking changes will not be automatically installed.
@@ -78,7 +78,7 @@ automatically installed by `terraform init` in the future:
7878
terraform {
7979
required_providers {
8080
tfe = {
81-
version = "~> 0.69.0"
81+
version = "~> 0.70.0"
8282
}
8383
}
8484
}
@@ -91,7 +91,7 @@ The above snippet using `RequiredProviders` is for Terraform 0.13+; if you are u
9191

9292
```hcl
9393
provider "tfe" {
94-
version = "~> 0.69.0"
94+
version = "~> 0.70.0"
9595
...
9696
}
9797
```
@@ -104,7 +104,7 @@ For more information on provider installation and constraining provider versions
104104
provider "tfe" {
105105
hostname = var.hostname # Optional, defaults to HCP Terraform `AppTerraformIo`
106106
token = var.token
107-
version = "~> 0.69.0"
107+
version = "~> 0.70.0"
108108
}
109109
110110
# Create an organization

website/docs/cdktf/go/index.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
1818

1919
Since v0.24.0, this provider requires Terraform >= 0.12.
2020

21-
~> **Important:** Since v0.69.0, this provider requires Terraform >= 1.0.
21+
~> **Important:** Since v0.70.0, this provider requires Terraform >= 1.0.
2222

2323
~> **Important:** For production use, you should constrain the acceptable provider versions via configuration,
2424
to ensure that new versions with breaking changes will not be automatically installed.
@@ -78,7 +78,7 @@ automatically installed by `terraform init` in the future:
7878
terraform {
7979
required_providers {
8080
tfe = {
81-
version = "~> 0.69.0"
81+
version = "~> 0.70.0"
8282
}
8383
}
8484
}
@@ -91,7 +91,7 @@ The above snippet using `RequiredProviders` is for Terraform 0.13+; if you are u
9191

9292
```hcl
9393
provider "tfe" {
94-
version = "~> 0.69.0"
94+
version = "~> 0.70.0"
9595
...
9696
}
9797
```
@@ -104,7 +104,7 @@ For more information on provider installation and constraining provider versions
104104
provider "tfe" {
105105
hostname = var.hostname # Optional, defaults to HCP Terraform `AppTerraformIo`
106106
token = var.token
107-
version = "~> 0.69.0"
107+
version = "~> 0.70.0"
108108
}
109109
110110
# Create an organization

website/docs/cdktf/java/index.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
1818

1919
Since v0.24.0, this provider requires Terraform >= 0.12.
2020

21-
~> **Important:** Since v0.69.0, this provider requires Terraform >= 1.0.
21+
~> **Important:** Since v0.70.0, this provider requires Terraform >= 1.0.
2222

2323
~> **Important:** For production use, you should constrain the acceptable provider versions via configuration,
2424
to ensure that new versions with breaking changes will not be automatically installed.
@@ -78,7 +78,7 @@ automatically installed by `terraform init` in the future:
7878
terraform {
7979
required_providers {
8080
tfe = {
81-
version = "~> 0.69.0"
81+
version = "~> 0.70.0"
8282
}
8383
}
8484
}
@@ -91,7 +91,7 @@ The above snippet using `requiredProviders` is for Terraform 0.13+; if you are u
9191

9292
```hcl
9393
provider "tfe" {
94-
version = "~> 0.69.0"
94+
version = "~> 0.70.0"
9595
...
9696
}
9797
```
@@ -104,7 +104,7 @@ For more information on provider installation and constraining provider versions
104104
provider "tfe" {
105105
hostname = var.hostname # Optional, defaults to HCP Terraform `appTerraformIo`
106106
token = var.token
107-
version = "~> 0.69.0"
107+
version = "~> 0.70.0"
108108
}
109109
110110
# Create an organization

website/docs/cdktf/python/index.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
1818

1919
Since v0.24.0, this provider requires Terraform >= 0.12.
2020

21-
~> **Important:** Since v0.69.0, this provider requires Terraform >= 1.0.
21+
~> **Important:** Since v0.70.0, this provider requires Terraform >= 1.0.
2222

2323
~> **Important:** For production use, you should constrain the acceptable provider versions via configuration,
2424
to ensure that new versions with breaking changes will not be automatically installed.
@@ -90,7 +90,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
9090

9191
```hcl
9292
provider "tfe" {
93-
version = "~> 0.69.0"
93+
version = "~> 0.70.0"
9494
...
9595
}
9696
```

website/docs/cdktf/typescript/index.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
1818

1919
Since v0.24.0, this provider requires Terraform >= 0.12.
2020

21-
~> **Important:** Since v0.69.0, this provider requires Terraform >= 1.0.
21+
~> **Important:** Since v0.70.0, this provider requires Terraform >= 1.0.
2222

2323
~> **Important:** For production use, you should constrain the acceptable provider versions via configuration,
2424
to ensure that new versions with breaking changes will not be automatically installed.
@@ -93,7 +93,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
9393

9494
```hcl
9595
provider "tfe" {
96-
version = "~> 0.69.0"
96+
version = "~> 0.70.0"
9797
...
9898
}
9999
```

website/docs/index.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use the navigation to the left to read about the available resources.
1616

1717
Since v0.24.0, this provider requires Terraform >= 0.12.
1818

19-
~> **Important:** Since v0.69.0, this provider requires Terraform >= 1.0.
19+
~> **Important:** Since v0.70.0, this provider requires Terraform >= 1.0.
2020

2121
~> **Important:** For production use, you should constrain the acceptable provider versions via configuration,
2222
to ensure that new versions with breaking changes will not be automatically installed.
@@ -76,7 +76,7 @@ automatically installed by `terraform init` in the future:
7676
terraform {
7777
required_providers {
7878
tfe = {
79-
version = "~> 0.69.0"
79+
version = "~> 0.70.0"
8080
}
8181
}
8282
}
@@ -89,7 +89,7 @@ The above snippet using `required_providers` is for Terraform 0.13+; if you are
8989

9090
```hcl
9191
provider "tfe" {
92-
version = "~> 0.69.0"
92+
version = "~> 0.70.0"
9393
...
9494
}
9595
```
@@ -102,7 +102,7 @@ For more information on provider installation and constraining provider versions
102102
provider "tfe" {
103103
hostname = var.hostname # Optional, defaults to HCP Terraform `app.terraform.io`
104104
token = var.token
105-
version = "~> 0.69.0"
105+
version = "~> 0.70.0"
106106
}
107107
108108
# Create an organization

0 commit comments

Comments
 (0)