Skip to content

Commit

Permalink
Updated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMpn committed May 8, 2024
1 parent 37b04e4 commit 197d8b1
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 42 deletions.
16 changes: 15 additions & 1 deletion AzureDataStudioExtension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Change Log

## [v9.0.0](https://github.com/MarkMpn/Sql4Cds/releases/tag/v8.0.1) - 2024-05-02
## [v9.0.1](https://github.com/MarkMpn/Sql4Cds/releases/tag/v9.0.1) - 2024-05-08

Fixed `NullReferenceException` errors when:
- executing a conditional `SELECT` query
- retrieving results from a Fetch XML query using `IN` or `EXISTS`
- handling an error returned from TDS Endpoint
- handling internal errors such as `UPDATE` without `WHERE`

Standardised errors on:
- JSON path errors
- DML statement cancellation

Fixed filtering `audit` data on `changedata` attribute

## [v9.0.0](https://github.com/MarkMpn/Sql4Cds/releases/tag/v9.0.0) - 2024-05-02

Added support for latest Fetch XML features
Support `TRY`, `CATCH` & `THROW` statements and related functions
Expand Down
30 changes: 11 additions & 19 deletions MarkMpn.Sql4Cds.Engine/MarkMpn.Sql4Cds.Engine.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,17 @@
<iconUrl>https://markcarrington.dev/sql4cds-icon/</iconUrl>
<description>Convert SQL queries to FetchXml and execute them against Dataverse / D365</description>
<summary>Convert SQL queries to FetchXml and execute them against Dataverse / D365</summary>
<releaseNotes>Added support for latest Fetch XML features
Support TRY, CATCH &amp; THROW statements and related functions
Error handling consistency with SQL Server
Improved performance with large numbers of expressions and large VALUES lists
Generate the execution plan for each statement in a batch only when necessary, to allow initial statements to succeed regardless of errors in later statements
Allow access to catalog views using TDS Endpoint
Inproved EXECUTE AS support
Handle missing values in XML .value() method
Detect TDS Endpoint incompatibility with XML data type methods and error handling functions
Fixed use of TOP 1 with IN expression
Fixed escaping column names for SELECT and INSERT commands
Improved setting a partylist attribute based on an EntityReference value
Fixed sorting results for UNION
Fold DISTINCT to data source for UNION
Fold groupings without aggregates to DISTINCT
Fixed folding filters through nested loops with outer references
Fixed use of recursive CTE references within subquery
Improved performance of CROSS APPLY and OUTER APPLY
Improved query cancellation
<releaseNotes>Fixed NullReferenceException errors when:
- executing a conditional SELECT query
- retrieving results from a Fetch XML query using IN or EXISTS
- handling an error returned from TDS Endpoint
- handling internal errors such as UPDATE without WHERE

Standardised errors on:
- JSON path errors
- DML statement cancellation

Fixed filtering audit data on changedata attribute
</releaseNotes>
<copyright>Copyright © 2020 Mark Carrington</copyright>
<language>en-GB</language>
Expand Down
32 changes: 10 additions & 22 deletions MarkMpn.Sql4Cds/MarkMpn.SQL4CDS.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,17 @@ plugins or integrations by writing familiar SQL and converting it.
Queries can also run using the preview TDS Endpoint. A wide range of SQL functionality is also built
in to allow running queries that aren't directly supported by either FetchXML or the TDS Endpoint.</description>
<summary>Convert SQL queries to FetchXML and execute them against Dataverse / D365</summary>
<releaseNotes>Added support for latest Fetch XML features
Support TRY, CATCH &amp; THROW statements and related functions
Error handling consistency with SQL Server
Improved performance with large numbers of expressions and large VALUES lists
Generate the execution plan for each statement in a batch only when necessary, to allow initial statements to succeed regardless of errors in later statements
Allow access to catalog views using TDS Endpoint
Inproved EXECUTE AS support
Handle missing values in XML .value() method
Detect TDS Endpoint incompatibility with XML data type methods and error handling functions
Fixed use of TOP 1 with IN expression
Fixed escaping column names for SELECT and INSERT commands
Improved setting a partylist attribute based on an EntityReference value
Fixed sorting results for UNION
Fold DISTINCT to data source for UNION
Fold groupings without aggregates to DISTINCT
Fixed folding filters through nested loops with outer references
Fixed use of recursive CTE references within subquery
Improved performance of CROSS APPLY and OUTER APPLY
Improved query cancellation
<releaseNotes>Fixed NullReferenceException errors when:
- executing a conditional SELECT query
- retrieving results from a Fetch XML query using IN or EXISTS
- handling an error returned from TDS Endpoint
- handling internal errors such as UPDATE without WHERE

Fixed opening the tool without a connection
Improved copying results from grid
Fixed formatting queries with trailing comments
Standardised errors on:
- JSON path errors
- DML statement cancellation

Fixed filtering audit data on changedata attribute
</releaseNotes>
<copyright>Copyright © 2019 Mark Carrington</copyright>
<language>en-GB</language>
Expand Down

0 comments on commit 197d8b1

Please sign in to comment.