diff --git a/.changes/unreleased/added-20241219-121511.yaml b/.changes/unreleased/added-20241219-121511.yaml deleted file mode 100644 index b53644a9..00000000 --- a/.changes/unreleased/added-20241219-121511.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: added -body: Added extended properties to `fabric_spark_job_definition` Resource. -time: 2024-12-19T12:15:11.1738255-08:00 -custom: - Issue: "158" diff --git a/.changes/unreleased/changed-20241207-122252.yaml b/.changes/unreleased/changed-20241207-122252.yaml deleted file mode 100644 index 3748b60b..00000000 --- a/.changes/unreleased/changed-20241207-122252.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: changed -body: Enhance error handling by improving the diagnostic message - add additional error details, error codes and request ID. -time: 2024-12-07T12:22:52.9329218-08:00 -custom: - Issue: "126" diff --git a/.changes/unreleased/changed-20241211-011622.yaml b/.changes/unreleased/changed-20241211-011622.yaml deleted file mode 100644 index c01c6fa0..00000000 --- a/.changes/unreleased/changed-20241211-011622.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: added -body: Added extended properties to `fabric_spark_job_definition` Data Source. -time: 2024-12-11T01:16:22.8183258-08:00 -custom: - Issue: "157" diff --git a/.changes/unreleased/changed-20241213-122004.yaml b/.changes/unreleased/changed-20241213-122004.yaml deleted file mode 100644 index 81591b52..00000000 --- a/.changes/unreleased/changed-20241213-122004.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: changed -body: Enabled SPN support for Eventstream -time: 2024-12-13T12:20:04.1126467-08:00 -custom: - Issue: "148" diff --git a/.changes/v0.1.0-beta.7.md b/.changes/v0.1.0-beta.7.md new file mode 100644 index 00000000..aecfb889 --- /dev/null +++ b/.changes/v0.1.0-beta.7.md @@ -0,0 +1,11 @@ +## v0.1.0-beta.7 - December 19, 2024 + +### ✨ Added + +* [#157](https://github.com/microsoft/terraform-provider-fabric/issues/157) Added extended properties to `fabric_spark_job_definition` Data Source. +* [#158](https://github.com/microsoft/terraform-provider-fabric/issues/158) Added extended properties to `fabric_spark_job_definition` Resource. + +### 💫 Changed + +* [#126](https://github.com/microsoft/terraform-provider-fabric/issues/126) Enhance error handling by improving the diagnostic message - add additional error details, error codes and request ID. +* [#148](https://github.com/microsoft/terraform-provider-fabric/issues/148) Enabled SPN support for Eventstream diff --git a/.semver.yaml b/.semver.yaml index d0896ca1..5875aca2 100644 --- a/.semver.yaml +++ b/.semver.yaml @@ -1,4 +1,4 @@ alpha: 0 -beta: 6 +beta: 7 rc: 0 release: v0.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 45f62274..8faf8d5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v0.1.0-beta.7 - December 19, 2024 + +### ✨ Added + +* [#157](https://github.com/microsoft/terraform-provider-fabric/issues/157) Added extended properties to `fabric_spark_job_definition` Data Source. +* [#158](https://github.com/microsoft/terraform-provider-fabric/issues/158) Added extended properties to `fabric_spark_job_definition` Resource. + +### 💫 Changed + +* [#126](https://github.com/microsoft/terraform-provider-fabric/issues/126) Enhance error handling by improving the diagnostic message - add additional error details, error codes and request ID. +* [#148](https://github.com/microsoft/terraform-provider-fabric/issues/148) Enabled SPN support for Eventstream + ## v0.1.0-beta.6 - December 02, 2024 ### 🪲 Fixed diff --git a/docs/guides/getting_started.md b/docs/guides/getting_started.md index 325fc27e..0af5d3bb 100644 --- a/docs/guides/getting_started.md +++ b/docs/guides/getting_started.md @@ -46,7 +46,7 @@ This section provides a sample configuration that you can experiment with to pro required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.6" + version = "0.1.0-beta.7" } } } diff --git a/docs/index.md b/docs/index.md index 7a7f38cf..f1d2ed16 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.6" + version = "0.1.0-beta.7" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index d649f638..832ca2da 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.6" + version = "0.1.0-beta.7" } } } diff --git a/templates/guides/getting_started.md.tmpl b/templates/guides/getting_started.md.tmpl index 325fc27e..0af5d3bb 100644 --- a/templates/guides/getting_started.md.tmpl +++ b/templates/guides/getting_started.md.tmpl @@ -46,7 +46,7 @@ This section provides a sample configuration that you can experiment with to pro required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.6" + version = "0.1.0-beta.7" } } }