Skip to content

Commit

Permalink
feat(release): v0.1.0-beta.9 (#252)
Browse files Browse the repository at this point in the history
## v0.1.0-beta.9 - February 13, 2025

### ✨ Added

*
[#215](#215)
Definition support in the `fabric_kql_database` Resource / Data-Source
*
[#237](#237)
Enable API/SDK interaction logging.

### 🪲 Fixed

*
[#235](#235)
Error when referencing non-text source for Fabric Item Definition part.
*
[#239](#239)
Inconsistent result for dynamic_executor_allocation
(min_executors/max_executors) when enabled is false.
*
[#247](#247)
Add support for missing `definition/expressions.tmdl` and
`definition/relationships.tmdl` paths in the Semantic Model TMDL format.
  • Loading branch information
DariuszPorowski authored Feb 13, 2025
1 parent 108d209 commit 9246abb
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 30 deletions.
5 changes: 0 additions & 5 deletions .changes/unreleased/added-20250125-102124.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/added-20250206-133034.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/fixed-20250206-140422.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/fixed-20250206-214937.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/fixed-20250212-122940.yaml

This file was deleted.

12 changes: 12 additions & 0 deletions .changes/v0.1.0-beta.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## v0.1.0-beta.9 - February 13, 2025

### ✨ Added

* [#215](https://github.com/microsoft/terraform-provider-fabric/issues/215) Definition support in the `fabric_kql_database` Resource / Data-Source
* [#237](https://github.com/microsoft/terraform-provider-fabric/issues/237) Enable API/SDK interaction logging.

### 🪲 Fixed

* [#235](https://github.com/microsoft/terraform-provider-fabric/issues/235) Error when referencing non-text source for Fabric Item Definition part.
* [#239](https://github.com/microsoft/terraform-provider-fabric/issues/239) Inconsistent result for dynamic_executor_allocation (min_executors/max_executors) when enabled is false.
* [#247](https://github.com/microsoft/terraform-provider-fabric/issues/247) Add support for missing `definition/expressions.tmdl` and `definition/relationships.tmdl` paths in the Semantic Model TMDL format.
2 changes: 1 addition & 1 deletion .semver.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
alpha: 0
beta: 8
beta: 9
rc: 0
release: v0.1.0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ 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.9 - February 13, 2025

### ✨ Added

* [#215](https://github.com/microsoft/terraform-provider-fabric/issues/215) Definition support in the `fabric_kql_database` Resource / Data-Source
* [#237](https://github.com/microsoft/terraform-provider-fabric/issues/237) Enable API/SDK interaction logging.

### 🪲 Fixed

* [#235](https://github.com/microsoft/terraform-provider-fabric/issues/235) Error when referencing non-text source for Fabric Item Definition part.
* [#239](https://github.com/microsoft/terraform-provider-fabric/issues/239) Inconsistent result for dynamic_executor_allocation (min_executors/max_executors) when enabled is false.
* [#247](https://github.com/microsoft/terraform-provider-fabric/issues/247) Add support for missing `definition/expressions.tmdl` and `definition/relationships.tmdl` paths in the Semantic Model TMDL format.

## v0.1.0-beta.8 - January 30, 2025

### 💥 Breaking
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8"
version = "0.1.0-beta.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
fabric = {
source = "microsoft/fabric"
version = "0.1.0-beta.8"
version = "0.1.0-beta.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
fabric = {
source = "microsoft/fabric"
version = "0.1.0-beta.8"
version = "0.1.0-beta.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion templates/guides/getting_started.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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.8"
version = "0.1.0-beta.9"
}
}
}
Expand Down

0 comments on commit 9246abb

Please sign in to comment.