Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hc-github-team-tf-provider-devex committed Mar 21, 2024
1 parent a7607bb commit 332d5d1
Show file tree
Hide file tree
Showing 15 changed files with 42 additions and 76 deletions.
21 changes: 21 additions & 0 deletions .changes/1.7.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## 1.7.0 (March 21, 2024)

BREAKING CHANGES:

* function: All parameters must be explicitly named via the `Name` field ([#964](https://github.com/hashicorp/terraform-plugin-framework/issues/964))
* function: `DefaultParameterNamePrefix` and `DefaultVariadicParameterName` constants have been removed ([#964](https://github.com/hashicorp/terraform-plugin-framework/issues/964))

FEATURES:

* types/basetypes: Added `DynamicType` and `DynamicValue` implementations for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* types/basetypes: Added interfaces `basetypes.DynamicTypable`, `basetypes.DynamicValuable`, and `basetypes.DynamicValuableWithSemanticEquals` for dynamic custom type and value implementations ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema: Added `DynamicAttribute` implementation for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* datasource/schema: Added `DynamicAttribute` implementation for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* provider/schema: Added `DynamicAttribute` implementation for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* function: Added `DynamicParameter` and `DynamicReturn` for dynamic value handling` ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/dynamicdefault: New package with `StaticValue` implementation for dynamic schema-based default values ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/dynamicplanmodifier: New package with built-in implementations for dynamic value plan modification. ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/defaults: New `Dynamic` interface for dynamic schema-based default implementations ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/planmodifier: New `Dynamic` interface for dynamic value plan modification implementations ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* schema/validator: New `Dynamic` interface for dynamic value schema validation ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))

5 changes: 0 additions & 5 deletions .changes/unreleased/BREAKING CHANGES-20240320-095152.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/BREAKING CHANGES-20240320-171454.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-175905.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/unreleased/FEATURES-20240311-180136.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-180351.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-180418.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-180430.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/FEATURES-20240311-180515.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-180859.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-181044.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-181151.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/FEATURES-20240311-181242.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/FEATURES-20240311-181424.yaml

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 1.7.0 (March 21, 2024)

BREAKING CHANGES:

* function: All parameters must be explicitly named via the `Name` field ([#964](https://github.com/hashicorp/terraform-plugin-framework/issues/964))
* function: `DefaultParameterNamePrefix` and `DefaultVariadicParameterName` constants have been removed ([#964](https://github.com/hashicorp/terraform-plugin-framework/issues/964))

FEATURES:

* types/basetypes: Added `DynamicType` and `DynamicValue` implementations for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* types/basetypes: Added interfaces `basetypes.DynamicTypable`, `basetypes.DynamicValuable`, and `basetypes.DynamicValuableWithSemanticEquals` for dynamic custom type and value implementations ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema: Added `DynamicAttribute` implementation for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* datasource/schema: Added `DynamicAttribute` implementation for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* provider/schema: Added `DynamicAttribute` implementation for dynamic value handling ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* function: Added `DynamicParameter` and `DynamicReturn` for dynamic value handling` ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/dynamicdefault: New package with `StaticValue` implementation for dynamic schema-based default values ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/dynamicplanmodifier: New package with built-in implementations for dynamic value plan modification. ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/defaults: New `Dynamic` interface for dynamic schema-based default implementations ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* resource/schema/planmodifier: New `Dynamic` interface for dynamic value plan modification implementations ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))
* schema/validator: New `Dynamic` interface for dynamic value schema validation ([#147](https://github.com/hashicorp/terraform-plugin-framework/issues/147))

## 1.6.1 (March 05, 2024)

NOTES:
Expand Down

0 comments on commit 332d5d1

Please sign in to comment.