-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor changelog header template (#465)
Co-authored-by: github-actions[bot] <[email protected]>
- Loading branch information
Showing
17 changed files
with
56 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
## 3.0.0 - 2024-09-24 | ||
|
||
### 💥 Breaking | ||
|
||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_solution.settings_file_checksum` is now generated using SHA256 instead of MD5. | ||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_solution.solution_file_checksum` is now generated using SHA256 instead of MD5. | ||
* [#399](https://github.com/microsoft/terraform-provider-power-platform/issues/399) `powerplatform_tenant_settings.id` is now set to the tenant id instead of a random guid. This will cause a change in the id value of existing resources. | ||
* [#412](https://github.com/microsoft/terraform-provider-power-platform/issues/412) Removed `powerplatform_solution.solution_name` property because it is no longer required or used by implementation | ||
* [#457](https://github.com/microsoft/terraform-provider-power-platform/issues/457) Removed `id` attribute from datasource_tenant_application_packages, datasource_securityroles, datasource_connection_shares, datasource_connections, datasource_connectors, datasource_currencies, datasource_dlp_policy, datasource_environments, datasource_environment_settings, datasource_environment_templates, datasource_languages, datasource_billing_policies, datasource_locations, datasource_environment_powerapps, datasource_solutions, datasource_tenant_settings | ||
|
||
### ✨ Added | ||
|
||
* [#399](https://github.com/microsoft/terraform-provider-power-platform/issues/399) Environment Routing configuration added to `powerplatform_tenant_settings` | ||
* [#401](https://github.com/microsoft/terraform-provider-power-platform/issues/401) `powerplatform_tenant` data source added to get information about current tenant | ||
* [#401](https://github.com/microsoft/terraform-provider-power-platform/issues/401) `powerplatform_tenant_capcity` data source added for capacity information | ||
* [#408](https://github.com/microsoft/terraform-provider-power-platform/issues/408) User defined timeouts implemented for all resources | ||
* [#393](https://github.com/microsoft/terraform-provider-power-platform/issues/393) `powerplatform_environment_group` resource added to support basic creation of environment groups (no rules yet) | ||
|
||
### 💫 Changed | ||
|
||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_rest.expected_http_status` type is changed from []int64 to []int. Practically, this should not affect any existing configurations. | ||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_rest_query.expected_http_status` type is changed from []int64 to []int. Practically, this should not affect any existing configurations. | ||
|
||
### 🪲 Fixed | ||
|
||
* [#376](https://github.com/microsoft/terraform-provider-power-platform/issues/376) Fixed timeout error in `powerplatform_billing_policy` | ||
* [#452](https://github.com/microsoft/terraform-provider-power-platform/issues/452) Fixed authentication error when calling `powerplatform_rest` or `powerplatform_rest_query` on newly created environment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,36 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), | ||
and is generated by [Changie](https://github.com/miniscruff/changie). | ||
|
||
|
||
No releases yet, this file will be updated when generating your first release. | ||
## 3.0.0 - 2024-09-24 | ||
|
||
### 💥 Breaking | ||
|
||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_solution.settings_file_checksum` is now generated using SHA256 instead of MD5. | ||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_solution.solution_file_checksum` is now generated using SHA256 instead of MD5. | ||
* [#399](https://github.com/microsoft/terraform-provider-power-platform/issues/399) `powerplatform_tenant_settings.id` is now set to the tenant id instead of a random guid. This will cause a change in the id value of existing resources. | ||
* [#412](https://github.com/microsoft/terraform-provider-power-platform/issues/412) Removed `powerplatform_solution.solution_name` property because it is no longer required or used by implementation | ||
* [#457](https://github.com/microsoft/terraform-provider-power-platform/issues/457) Removed `id` attribute from datasource_tenant_application_packages, datasource_securityroles, datasource_connection_shares, datasource_connections, datasource_connectors, datasource_currencies, datasource_dlp_policy, datasource_environments, datasource_environment_settings, datasource_environment_templates, datasource_languages, datasource_billing_policies, datasource_locations, datasource_environment_powerapps, datasource_solutions, datasource_tenant_settings | ||
|
||
### ✨ Added | ||
|
||
* [#399](https://github.com/microsoft/terraform-provider-power-platform/issues/399) Environment Routing configuration added to `powerplatform_tenant_settings` | ||
* [#401](https://github.com/microsoft/terraform-provider-power-platform/issues/401) `powerplatform_tenant` data source added to get information about current tenant | ||
* [#401](https://github.com/microsoft/terraform-provider-power-platform/issues/401) `powerplatform_tenant_capcity` data source added for capacity information | ||
* [#408](https://github.com/microsoft/terraform-provider-power-platform/issues/408) User defined timeouts implemented for all resources | ||
* [#393](https://github.com/microsoft/terraform-provider-power-platform/issues/393) `powerplatform_environment_group` resource added to support basic creation of environment groups (no rules yet) | ||
|
||
### 💫 Changed | ||
|
||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_rest.expected_http_status` type is changed from []int64 to []int. Practically, this should not affect any existing configurations. | ||
* [#458](https://github.com/microsoft/terraform-provider-power-platform/issues/458) `powerplatform_rest_query.expected_http_status` type is changed from []int64 to []int. Practically, this should not affect any existing configurations. | ||
|
||
### 🪲 Fixed | ||
|
||
* [#376](https://github.com/microsoft/terraform-provider-power-platform/issues/376) Fixed timeout error in `powerplatform_billing_policy` | ||
* [#452](https://github.com/microsoft/terraform-provider-power-platform/issues/452) Fixed authentication error when calling `powerplatform_rest` or `powerplatform_rest_query` on newly created environment |