Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retroactively add SDK release notes #548

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.10-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Release Notes

## Microsoft.Build.Sql 0.1.10-preview - 2023-05-11

This update brings the below changes over the previous release:

### Added
* Added support for package references from `master` and `msdb` system dacpacs. [#266](https://github.com/microsoft/DacFx/pull/266)
* Added `SqlServerless` target platform for templates. [#243](https://github.com/microsoft/DacFx/pull/243)
* Added telemetry collection. To opt out, set `DACFX_TELEMETRY_OPTOUT` environment variable to `1`. [#312](https://github.com/microsoft/DacFx/pull/312)
* Added more details to docs. [#225](https://github.com/microsoft/DacFx/pull/225)

### Fixed
* Fixed typo in sample code. [#230](https://github.com/microsoft/DacFx/pull/230)
* Fixed minor errors in tutorial. [#227](https://github.com/microsoft/DacFx/pull/227)
* Fixed an issue where the function `DATE_BUCKET` wasn't recognized as a built-in function.
* Fixed an issue where the function `DATETRUNC` wasn't recognized as a built-in function.

### Changed
* Updated DacFx version to 162.0.52. [#263](https://github.com/microsoft/DacFx/pull/263)
18 changes: 18 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.12-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Release Notes

## Microsoft.Build.Sql 0.1.12-preview - 2023-08-28

This update brings the below changes over the previous release:

### Added
* Added `SqlDwUnified` target platform for templates. [#322](https://github.com/microsoft/DacFx/pull/322)
* Added default `master` and `msdb` as default `DatabaseVariableLiteralValue` for system dacpac references. [#280](https://github.com/microsoft/DacFx/pull/280)

### Fixed
* Fixed versioning issue with NuGet centralized package management. [#344](https://github.com/microsoft/DacFx/pull/344)
* Fixed typo in NuGet link. [#321](https://github.com/microsoft/DacFx/pull/321)
* Fixed typo in `README` link. [#318](https://github.com/microsoft/DacFx/pull/318)

### Changed
* Updated `README` with OS-agnostic samples. [#320](https://github.com/microsoft/DacFx/pull/320)
* Updated DacFx version to 162.1.124-preview. [#314](https://github.com/microsoft/DacFx/pull/314)
15 changes: 15 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.14-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Release Notes

## Microsoft.Build.Sql 0.1.14-preview - 2023-10-23

This update brings the below changes over the previous release:

### Added
* Added Microsoft NuGet image icon. [#355](https://github.com/microsoft/DacFx/pull/355)
* Added support for multi-column distribution (MCD) in `CREATE VIEW` for Azure Synapse Analytics dedicated SQL pools.

### Fixed
* Fixed versioning issue with NuGet centralized package management. [#344](https://github.com/microsoft/DacFx/pull/344)

### Changed
* Updated DacFx version to 162.1.167. [#353](https://github.com/microsoft/DacFx/pull/353)
18 changes: 18 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.15-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Release Notes

## Microsoft.Build.Sql 0.1.15-preview - 2024-02-27

This update brings the below changes over the previous release:

### Added
* Added support for transitive project references. [#391](https://github.com/microsoft/DacFx/pull/391)
* Added option to add gitignore file at sqlproj creation with (-g, --gitignore). [#377](https://github.com/microsoft/DacFx/pull/377)
* Added validation to the `DW_COMPATIBILITY_LEVEL` project property to ensure that the value is within the valid options of 0, 10, 20, 30, 40, 50, 9000 during project build.

### Fixed
* Fixed target .NET framework being hardcoded to `net46`. [#391](https://github.com/microsoft/DacFx/pull/391)
* Fixed an issue where references to system tables in a values clause would fail to build with an error message that the Value cannot be null.
* Fixed an issue where the `pdw*` views were not included in the Synapse Data Warehouse master.dacpac.

### Changed
* Updated DacFx version to 162.2.111. [#414](https://github.com/microsoft/DacFx/pull/414)
18 changes: 18 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.19-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Release Notes

## Microsoft.Build.Sql 0.1.19-preview - 2024-06-06

This update brings the below changes over the previous release:

### Added
* Added some documentation links. [#454](https://github.com/microsoft/DacFx/pull/454)
* Added `SqlDbFabricDatabaseSchemaProvider` target platform.

### Fixed
* Fixed default build configuration not being overridable. [#418](https://github.com/microsoft/DacFx/pull/418)
* Fixed inconsistent build output formatting from code analysis rules. [#415](https://github.com/microsoft/DacFx/issues/415)
* Fixed build error when selecting unspecified (*) columns from the table-valued function `OPEN_JSON`.

### Changed
* Updated SDK for utilising in Visual Studio. [#443](https://github.com/microsoft/DacFx/pull/443)
* Updated DacFx version to 162.3.563. [#455](https://github.com/microsoft/DacFx/pull/455)
11 changes: 11 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.3-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Release Notes

## Microsoft.Build.Sql 0.1.3-preview - 2022-02-28

This is the first preview release for Microsoft.Build.Sql.

### Added
* Added support for building sqlproj with `dotnet build /p:NetCoreBuild=true`. [#44](https://github.com/microsoft/DacFx/pull/44)

### Changed
* Updated DacFx version to 160.5400.1. [#69](https://github.com/microsoft/DacFx/pull/69)
22 changes: 22 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.7-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Release Notes

## Microsoft.Build.Sql 0.1.7-preview - 2022-11-10

This update brings the below changes over the previous release:

### Added
* Added `dotnet new sqlproj` template. [#163](https://github.com/microsoft/DacFx/pull/163)
* Added support for building without needing to set `-p:NetcoreBuild=true`. [#153](https://github.com/microsoft/DacFx/pull/153)
* Added more metadata to NuGet packages. [#175](https://github.com/microsoft/DacFx/pull/175)
* Added license to templates package. [#174](https://github.com/microsoft/DacFx/pull/174)
* Added README instructions on building with system dacpacs. [#86](https://github.com/microsoft/DacFx/pull/86)
* Added README instructions on SDK versioning. [#84](https://github.com/microsoft/DacFx/pull/84)
* Added support for XML compression.
* Added support for SQL 2022 built-in functions.

### Fixed
* Fixed `None` scripts not being excluded from build. [#94](https://github.com/microsoft/DacFx/pull/94)
* Fixed syntax error with NULL ordinal value with `STRING_SPLIT`.

### Changed
* Updated DacFx version to 161.6374.0. [#164](https://github.com/microsoft/DacFx/pull/164)
20 changes: 20 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.1.9-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Release Notes

## Microsoft.Build.Sql 0.1.9-preview - 2023-02-13

This update brings the below changes over the previous release:

### Added
* Added support for `dotnet pack`. [#162](https://github.com/microsoft/DacFx/pull/162)
* Added support for package references to NuGets containing dacpac files. [#197](https://github.com/microsoft/DacFx/pull/197)
* Added settable `DatabaseVariableLiteralValue` to package references. [#210](https://github.com/microsoft/DacFx/pull/210)

### Fixed
* Fixed package reference resolution to system dacpacs. [#214](https://github.com/microsoft/DacFx/pull/214)
* Fixed artifact reference resolution. [#215](https://github.com/microsoft/DacFx/issues/217)
* Fixed an issue where valid options for the `QueryStoreFlushInterval` are incorrectly reported as invalid.
* Fixed an issue where compression options could not be applied to a table with a clustered index.
* Fixed external table support for `REJECT_SAMPLE_VALUE`.

### Changed
* Updated DacFx version to 161.8089.0. [#221](https://github.com/microsoft/DacFx/pull/221)
16 changes: 16 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.2.0-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Release Notes

## Microsoft.Build.Sql 0.2.0-preview - 2024-07-17

This update brings the below changes over the previous release:

### Added
* Added SSDT support. [#463](https://github.com/microsoft/DacFx/pull/463)

### Fixed
* Fixed build error with deployment extension configuration items. [#345](https://github.com/microsoft/DacFx/issues/345)
* Fixed build output formatting issue. [#415](https://github.com/microsoft/DacFx/issues/415)
* Fixed build `NullReferenceException` with `OPENJSON`. [#420](https://github.com/microsoft/DacFx/issues/420)

### Changed
* Updated DacFx version to 162.3.566. [#465](https://github.com/microsoft/DacFx/pull/465)
17 changes: 17 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.2.3-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Release Notes

## Microsoft.Build.Sql 0.2.3-preview - 2024-09-19

This update brings the below changes over the previous release:

### Added
* Added SQL code analysis from package references. [#479](https://github.com/microsoft/DacFx/pull/479)
* Added project property `SqlCodeAnalysisAssemblyPath` for setting additional code analyzer paths.
* Added support for [JSON data type](https://learn.microsoft.com/en-us/sql/t-sql/data-types/json-data-type).

### Fixed
* Fixed build error on CTAS statements. [#406](https://github.com/microsoft/DacFx/issues/406)
* Fixed incorrect syntax error on FORCESEEK parameter in CHANGETABLE function. [#434](https://github.com/microsoft/DacFx/issues/434)

### Changed
* Updated DacFx version to 162.4.92. [#492](https://github.com/microsoft/DacFx/pull/492)
8 changes: 8 additions & 0 deletions release-notes/Microsoft.Build.Sql/0.2.4-preview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Release Notes

## Microsoft.Build.Sql 0.2.4-preview - 2024-11-01

This update brings the below changes over the previous release:

### Added
* Added `dotnet publish` support. [#487](https://github.com/microsoft/DacFx/pull/487)
23 changes: 12 additions & 11 deletions release-notes/Microsoft.Build.Sql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ The following Microsoft.Build.Sql and Microsoft.Build.Sql.Templates releases hav

| Release Date | Version | Notes |
| :-- | :-- | :--: |
| 2024-12-13 | 1.0.0-rc1 | [release notes](1.0.0-rc1.md) |
| 2024-11-22 | 0.2.5-preview | [release notes](0.2.5-preview.md) |
| 2024-11-01 | 0.2.4-preview | |
| 2024-09-19 | 0.2.3-preview | |
| 2024-07-17 | 0.2.0-preview | |
| 2024-06-06 | 0.1.19-preview | |
| 2024-02-27 | 0.1.15-preview | |
| 2023-10-23 | 0.1.14-preview | |
| 2023-08-28 | 0.1.12-preview | |
| 2023-05-11 | 0.1.10-preview | |
| 2023-02-13 | 0.1.9-preview | |
| 2022-11-10 | 0.1.7-preview | |
| 2022-02-28 | 0.1.3-preview | |
| 2024-11-01 | 0.2.4-preview | [release notes](0.2.4-preview.md) |
| 2024-09-19 | 0.2.3-preview | [release notes](0.2.3-preview.md) |
| 2024-07-17 | 0.2.0-preview | [release notes](0.2.0-preview.md) |
| 2024-06-06 | 0.1.19-preview | [release notes](0.1.19-preview.md) |
| 2024-02-27 | 0.1.15-preview | [release notes](0.1.15-preview.md) |
| 2023-10-23 | 0.1.14-preview | [release notes](0.1.14-preview.md) |
| 2023-08-28 | 0.1.12-preview | [release notes](0.1.12-preview.md) |
| 2023-05-11 | 0.1.10-preview | [release notes](0.1.10-preview.md) |
| 2023-02-13 | 0.1.9-preview | [release notes](0.1.9-preview.md) |
| 2022-11-10 | 0.1.7-preview | [release notes](0.1.7-preview.md) |
| 2022-02-28 | 0.1.3-preview | [release notes](0.1.3-preview.md) |
Loading