Skip to content

Commit a3112b6

Browse files
Update changelog
1 parent 38350df commit a3112b6

14 files changed

+40
-72
lines changed

.changes/1.3.0.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## 1.3.0 (June 13, 2023)
2+
3+
FEATURES:
4+
5+
* tfversion: Introduced new `tfversion` package with interface and built-in Terraform version check functionality ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
6+
* tfversion: Added `SkipAbove` built-in version check, which skips the test if the Terraform CLI version is above the given maximum. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
7+
* tfversion: Added `SkipBelow` built-in version check, which skips the test if the Terraform CLI version is below the given minimum. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
8+
* tfversion: Added `SkipBetween` built-in version check, which skips the test if the Terraform CLI version is between the given minimum (inclusive) and maximum (exclusive). ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
9+
* tfversion: Added `SkipIf` built-in version check, which skips the test if the Terraform CLI version matches the given version. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
10+
* tfversion: Added `RequireAbove` built-in version check, which fails the test if the Terraform CLI version is below the given maximum. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
11+
* tfversion: Added `RequireBelow` built-in version check, which fails the test if the Terraform CLI version is above the given minimum. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
12+
* tfversion: Added `RequireBetween` built-in version check, fails the test if the Terraform CLI version is outside the given minimum (exclusive) and maximum (inclusive). ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
13+
* tfversion: Added `RequireNot` built-in version check, which fails the test if the Terraform CLI version matches the given version. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
14+
* tfversion: Added `Any` built-in version check, which fails the test if none of the given sub-checks return a nil error and empty skip message. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
15+
* tfversion: Added `All` built-in version check, which fails or skips the test if any of the given sub-checks return a non-nil error or non-empty skip message. ([#128](https://github.com/hashicorp/terraform-plugin-testing/issues/128))
16+
17+
BUG FIXES:
18+
19+
* helper/resource: Fix path used when persisting working directory ([#113](https://github.com/hashicorp/terraform-plugin-testing/issues/113))
20+

.changes/unreleased/BUG FIXES-20230404-100828.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-101545.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124403.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124437.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124453.yaml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124514.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124532.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124653.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/FEATURES-20230602-124711.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)