-
Notifications
You must be signed in to change notification settings - Fork 329
Add 7.0.1 release notes #4191
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
Open
paulmedynski
wants to merge
2
commits into
main
Choose a base branch
from
dev/paul/7.0.1-release-notes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+173
−7
Open
Add 7.0.1 release notes #4191
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 contains hidden or 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 contains hidden or 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,115 @@ | ||
| # Release Notes | ||
|
|
||
| ## Stable Release 7.0.1 - 2026-04-23 | ||
|
|
||
| This update brings the following changes since the [7.0.0](7.0.0.md) release: | ||
|
|
||
| ### Fixed | ||
|
|
||
| - Fixed `SqlBulkCopy` failing on SQL Server 2016 with `Invalid column name 'graph_type'` error. The column metadata query now uses dynamic SQL so that references to the `graph_type` column (introduced in SQL Server 2017) are not compiled on older versions that lack the column. | ||
| ([#3714](https://github.com/dotnet/SqlClient/issues/3714), | ||
| [#4092](https://github.com/dotnet/SqlClient/pull/4092), | ||
| [#4147](https://github.com/dotnet/SqlClient/pull/4147)) | ||
|
|
||
| - Fixed `SqlBulkCopy` failing on Azure Synapse Analytics dedicated SQL pools. The column-list query previously used a variable-assignment pattern that Synapse does not support; it now uses `STRING_AGG` when targeting Synapse (engine edition 6) and falls back to the variable-assignment approach for SQL Server 2016 compatibility. | ||
| ([#4149](https://github.com/dotnet/SqlClient/issues/4149), | ||
| [#4176](https://github.com/dotnet/SqlClient/pull/4176), | ||
| [#4182](https://github.com/dotnet/SqlClient/pull/4182)) | ||
|
|
||
| - Fixed `SqlDataReader.GetFieldType()` and `GetProviderSpecificFieldType()` returning `typeof(byte[])` instead of `typeof(SqlVector<float>)` for vector float32 columns. The methods now follow the same type-determination logic as `GetValue()`. | ||
| ([#4104](https://github.com/dotnet/SqlClient/issues/4104), | ||
| [#4105](https://github.com/dotnet/SqlClient/pull/4105), | ||
| [#4152](https://github.com/dotnet/SqlClient/pull/4152)) | ||
|
|
||
| - Added missing `System.Data.Common` (v4.3.0) NuGet package dependency for .NET Framework consumers. The inbox `System.Data.Common` assembly on .NET Framework predates APIs such as `IDbColumnSchemaGenerator`; without the explicit NuGet dependency, consumers encountered `CS0012` compilation errors when using these types through `Microsoft.Data.SqlClient`. | ||
| ([#4063](https://github.com/dotnet/SqlClient/pull/4063), | ||
| [#4074](https://github.com/dotnet/SqlClient/pull/4074)) | ||
|
|
||
| ### Changed | ||
|
|
||
| - Enabled the User Agent TDS feature extension unconditionally. The `Switch.Microsoft.Data.SqlClient.EnableUserAgent` AppContext switch has been removed; the driver now always sends User Agent information during login. | ||
| ([#4124](https://github.com/dotnet/SqlClient/pull/4124), | ||
| [#4154](https://github.com/dotnet/SqlClient/pull/4154)) | ||
|
|
||
| - Added type forwards from the core `Microsoft.Data.SqlClient` assembly to public types that were moved to the `Microsoft.Data.SqlClient.Extensions.Abstractions` package: `SqlAuthenticationMethod`, `SqlAuthenticationParameters`, `SqlAuthenticationProvider`, `SqlAuthenticationProviderException`, and `SqlAuthenticationToken`. This ensures binary compatibility for assemblies compiled against earlier versions of `Microsoft.Data.SqlClient` where these types lived in the core assembly. | ||
| ([#4067](https://github.com/dotnet/SqlClient/pull/4067), | ||
| [#4117](https://github.com/dotnet/SqlClient/pull/4117)) | ||
|
|
||
| - Fixed API documentation include paths and duplicate doc snippets. | ||
| ([#4084](https://github.com/dotnet/SqlClient/pull/4084), | ||
| [#4086](https://github.com/dotnet/SqlClient/pull/4086), | ||
| [#4107](https://github.com/dotnet/SqlClient/pull/4107), | ||
| [#4161](https://github.com/dotnet/SqlClient/pull/4161)) | ||
|
|
||
| ## Contributors | ||
|
|
||
| We thank the following public contributors. Their efforts toward this project are very much appreciated. | ||
|
|
||
| - [edwardneal](https://github.com/edwardneal) | ||
|
|
||
| ## Target Platform Support | ||
|
|
||
| - .NET Framework 4.6.2+ (Windows x86, Windows x64, Windows ARM64) | ||
| - .NET 8.0+ (Windows x86, Windows x64, Windows ARM, Windows ARM64, Linux, macOS) | ||
|
|
||
| ### Dependencies | ||
|
|
||
| #### .NET 9.0 | ||
|
|
||
| - Microsoft.Bcl.Cryptography 9.0.13 | ||
| - Microsoft.Data.SqlClient.Extensions.Abstractions 1.0.0 | ||
| - Microsoft.Data.SqlClient.Internal.Logging 1.0.0 | ||
| - Microsoft.Data.SqlClient.SNI.runtime 6.0.2 | ||
| - Microsoft.Extensions.Caching.Memory 9.0.13 | ||
| - Microsoft.IdentityModel.JsonWebTokens 8.16.0 | ||
| - Microsoft.IdentityModel.Protocols.OpenIdConnect 8.16.0 | ||
| - Microsoft.SqlServer.Server 1.0.0 | ||
| - System.Configuration.ConfigurationManager 9.0.13 | ||
| - System.Security.Cryptography.Pkcs 9.0.13 | ||
|
|
||
| #### .NET 8.0 | ||
|
|
||
| - Microsoft.Bcl.Cryptography 8.0.0 | ||
| - Microsoft.Data.SqlClient.Extensions.Abstractions 1.0.0 | ||
| - Microsoft.Data.SqlClient.Internal.Logging 1.0.0 | ||
| - Microsoft.Data.SqlClient.SNI.runtime 6.0.2 | ||
| - Microsoft.Extensions.Caching.Memory 8.0.1 | ||
| - Microsoft.IdentityModel.JsonWebTokens 8.16.0 | ||
| - Microsoft.IdentityModel.Protocols.OpenIdConnect 8.16.0 | ||
| - Microsoft.SqlServer.Server 1.0.0 | ||
| - System.Configuration.ConfigurationManager 8.0.1 | ||
| - System.Security.Cryptography.Pkcs 8.0.1 | ||
|
|
||
| #### .NET Standard 2.0 | ||
|
|
||
| - Microsoft.Bcl.Cryptography 8.0.0 | ||
| - Microsoft.Data.SqlClient.Extensions.Abstractions 1.0.0 | ||
| - Microsoft.Data.SqlClient.Internal.Logging 1.0.0 | ||
| - Microsoft.Data.SqlClient.SNI.runtime 6.0.2 | ||
| - Microsoft.Extensions.Caching.Memory 8.0.1 | ||
| - Microsoft.IdentityModel.JsonWebTokens 8.16.0 | ||
| - Microsoft.IdentityModel.Protocols.OpenIdConnect 8.16.0 | ||
| - Microsoft.SqlServer.Server 1.0.0 | ||
| - System.Configuration.ConfigurationManager 8.0.1 | ||
| - System.Security.Cryptography.Pkcs 8.0.1 | ||
| - System.Text.Json 10.0.3 | ||
| - System.Threading.Channels 10.0.3 | ||
|
|
||
| #### .NET Framework 4.6.2+ | ||
|
|
||
| - Microsoft.Bcl.Cryptography 8.0.0 | ||
| - Microsoft.Data.SqlClient.Extensions.Abstractions 1.0.0 | ||
| - Microsoft.Data.SqlClient.Internal.Logging 1.0.0 | ||
| - Microsoft.Data.SqlClient.SNI 6.0.2 | ||
| - Microsoft.Extensions.Caching.Memory 8.0.1 | ||
| - Microsoft.IdentityModel.JsonWebTokens 8.16.0 | ||
| - Microsoft.IdentityModel.Protocols.OpenIdConnect 8.16.0 | ||
| - System.Buffers 4.6.1 | ||
| - System.Data.Common 4.3.0 | ||
| - System.Diagnostics.DiagnosticSource 10.0.3 | ||
| - System.Memory 4.6.3 | ||
| - System.Runtime.InteropServices.RuntimeInformation 4.3.0 | ||
| - System.Security.Cryptography.Pkcs 8.0.1 | ||
| - System.Text.Json 10.0.3 | ||
| - System.Threading.Channels 10.0.3 | ||
| - System.ValueTuple 4.6.2 |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.