Skip to content

Commit f582cf5

Browse files
[Release/2.0] Release notes for v2.0.1 + update SNI dependency version (#704)
1 parent 9f23105 commit f582cf5

File tree

6 files changed

+95
-9
lines changed

6 files changed

+95
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

7+
## [Stable Release 2.0.1] - 2020-08-25
8+
9+
### Added
10+
- Added support for a new Configuration Section, `SqlClientAuthenticationProviders` (duplicate of existing `SqlAuthenticationProviders`), to allow co-existence of configurations for both drivers, "System.Data.SqlClient" and "Microsoft.Data.SqlClient" [#701](https://github.com/dotnet/SqlClient/pull/701)
11+
12+
### Fixed
13+
- Fixed pooled connection re-use on access token expiry issue when using Active Directory authentication modes [#639](https://github.com/dotnet/SqlClient/pull/639)
14+
- Fixed transient fault handling for Pooled connections [#638](https://github.com/dotnet/SqlClient/pull/638)
15+
- Fixed Enclave session cache issue with Azure Database [#628](https://github.com/dotnet/SqlClient/pull/628)
16+
- Reverted changes to return empty DataTable from GetSchemaTable to return null as before. [#697](https://github.com/dotnet/SqlClient/pull/697)
17+
- Fixed configuration section collision issue with System.Data.SqlClient type [#701](https://github.com/dotnet/SqlClient/pull/701)
18+
- Fixed blank error message [HTTP Provider] issues due to unexpected pre-login failures when using Native SNI. Fixed with Microsoft.Data.SqlClient.SNI v2.0.1 and Microsoft.Data.SqlClient.SNI.runtime v2.0.1 release versions.
19+
20+
721
## [Stable Release 2.0.0] - 2020-06-16
822

923
### Added
@@ -37,7 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
3751

3852
### Fixed
3953
- Fixed `SqlBulkCopy` to work with database columns containing metadata about data classification [#568](https://github.com/dotnet/SqlClient/pull/568)
40-
- Fixed unsafe cast in `SqlException` for `SerializationEntry.Value`
54+
- Fixed unsafe cast in `SqlException` for `SerializationEntry.Value`
4155
- Fixed null reference exceptions in `SqlDelegatedTransaction` methods [#563](https://github.com/dotnet/SqlClient/pull/563)
4256

4357
### Changes
@@ -59,7 +73,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5973

6074
### Added
6175
- Allow passing username with Active Directory Interactive Authentication in .NET Framework [#492](https://github.com/dotnet/SqlClient/pull/492)
62-
- Allow large UDT buffers for .NET Framework [#456](https://github.com/dotnet/SqlClient/pull/456)
76+
- Allow large UDT buffers for .NET Framework [#456](https://github.com/dotnet/SqlClient/pull/456)
6377
- Added "Transaction Id" and "Client Version" in Diagnostic Source traces [#515](https://github.com/dotnet/SqlClient/pull/515)
6478
- Added new `SqlConnectionOverrides` APIs to perform `SqlConnection.Open()` with fail fast option [#463](https://github.com/dotnet/SqlClient/pull/463)
6579

@@ -114,7 +128,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
114128
- Updated error messages for "Always Encrypted - Secure Enclaves" to handle 'Attestation Protocol' and fixed typos [#421](https://github.com/dotnet/SqlClient/pull/421) [#397](https://github.com/dotnet/SqlClient/pull/397)
115129
- Removed sync over async in `SNINpHandle.EnableSsl` [#474](https://github.com/dotnet/SqlClient/pull/474)
116130
- Changed non-generic `ArrayList` to `List<T>` in `SqlBulkCopy` [#457](https://github.com/dotnet/SqlClient/pull/457)
117-
- Multiple performance improvements [#377](https://github.com/dotnet/SqlClient/pull/377) [#378](https://github.com/dotnet/SqlClient/pull/378) [#379](https://github.com/dotnet/SqlClient/pull/379)
131+
- Multiple performance improvements [#377](https://github.com/dotnet/SqlClient/pull/377) [#378](https://github.com/dotnet/SqlClient/pull/378) [#379](https://github.com/dotnet/SqlClient/pull/379)
118132

119133
### Breaking Changes
120134
- The driver will now perform Server Certificate validation when TLS encryption is enforced by the target Server, which is the default for Azure connections [#391](https://github.com/dotnet/SqlClient/pull/391)

release-notes/2.0/2.0.1.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 2.0.1 released 25 August 2020
4+
5+
This update brings the below changes over the previous stable release:
6+
7+
### Added
8+
- Added support for a new Configuration Section, `SqlClientAuthenticationProviders` (duplicate of existing `SqlAuthenticationProviders`), to allow co-existence of configurations for both drivers, "System.Data.SqlClient" and "Microsoft.Data.SqlClient" [#701](https://github.com/dotnet/SqlClient/pull/701)
9+
10+
### Fixed
11+
- Fixed pooled connection re-use on access token expiry issue when using Active Directory authentication modes [#639](https://github.com/dotnet/SqlClient/pull/639)
12+
- Fixed transient fault handling for Pooled connections [#638](https://github.com/dotnet/SqlClient/pull/638)
13+
- Fixed Enclave session cache issue with Azure Database [#628](https://github.com/dotnet/SqlClient/pull/628)
14+
- Reverted changes to return empty DataTable from GetSchemaTable to return null as before. [#697](https://github.com/dotnet/SqlClient/pull/697)
15+
- Fixed configuration section collision issue with System.Data.SqlClient type [#701](https://github.com/dotnet/SqlClient/pull/701)
16+
- Fixed blank error message [HTTP Provider] issues due to unexpected pre-login failures when using Native SNI. Fixed with Microsoft.Data.SqlClient.SNI v2.0.1 and Microsoft.Data.SqlClient.SNI.runtime v2.0.1 release versions.
17+
18+
19+
## Target Platform Support
20+
21+
- .NET Framework 4.6+ (Windows x86, Windows x64)
22+
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
23+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
24+
25+
### Dependencies
26+
27+
#### .NET Framework
28+
29+
- Microsoft.Data.SqlClient.SNI 2.0.1
30+
- Microsoft.Identity.Client 4.14.0
31+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
32+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
33+
34+
#### .NET Core 2.1
35+
36+
- Microsoft.Data.SqlClient.SNI.runtime 2.0.1
37+
- Microsoft.Win32.Registry 4.7.0
38+
- System.Security.Principal.Windows 4.7.0
39+
- System.Text.Encoding.CodePages 4.7.0
40+
- System.Diagnostics.DiagnosticSource 4.7.0
41+
- System.Configuration.ConfigurationManager 4.7.0
42+
- System.Runtime.Caching 4.7.0
43+
- Microsoft.Identity.Client 4.14.0
44+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
45+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
46+
47+
#### .NET Core 3.1
48+
49+
- Microsoft.Data.SqlClient.SNI.runtime 2.0.1
50+
- Microsoft.Win32.Registry 4.7.0
51+
- System.Security.Principal.Windows 4.7.0
52+
- System.Text.Encoding.CodePages 4.7.0
53+
- System.Diagnostics.DiagnosticSource 4.7.0
54+
- System.Configuration.ConfigurationManager 4.7.0
55+
- System.Runtime.Caching 4.7.0
56+
- Microsoft.Identity.Client 4.14.0
57+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
58+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
59+
60+
#### .NET Standard
61+
62+
- Microsoft.Data.SqlClient.SNI.runtime 2.0.1
63+
- Microsoft.Win32.Registry 4.7.0
64+
- System.Buffers 4.5.1
65+
- System.Memory 4.5.4
66+
- System.Security.Principal.Windows 4.7.0
67+
- System.Text.Encoding.CodePages 4.7.0
68+
- Microsoft.Identity.Client 4.14.0
69+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
70+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0

release-notes/2.0/2.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The following Microsoft.Data.SqlClient 2.0 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2020/08/25 | 2.0.1 | [release notes](2.0.1.md) |
78
| 2020/06/16 | 2.0.0 | [release notes](2.0.0.md) |
89

910
The following Microsoft.Data.SqlClient 2.0 preview releases have been shipped:

release-notes/2.0/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The following Microsoft.Data.SqlClient 2.0 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2020/08/25 | 2.0.1 | [release notes](2.0.1.md) |
78
| 2020/06/16 | 2.0.0 | [release notes](2.0.0.md) |
89

910
The following Microsoft.Data.SqlClient 2.0 preview releases have been shipped:

tools/props/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313
<!-- NetFx project dependencies -->
1414
<PropertyGroup>
15-
<MicrosoftDataSqlClientSniVersion>2.0.0</MicrosoftDataSqlClientSniVersion>
15+
<MicrosoftDataSqlClientSniVersion>2.0.1</MicrosoftDataSqlClientSniVersion>
1616
<SystemSecurityCryptographyAlgorithmsVersion>4.3.1</SystemSecurityCryptographyAlgorithmsVersion>
1717
<SystemSecurityCryptographyPrimitivesVersion>4.3.0</SystemSecurityCryptographyPrimitivesVersion>
1818
</PropertyGroup>
@@ -27,7 +27,7 @@
2727
<!-- NetCore project dependencies -->
2828
<PropertyGroup>
2929
<MicrosoftWin32RegistryVersion>4.7.0</MicrosoftWin32RegistryVersion>
30-
<MicrosoftDataSqlClientSNIRuntimeVersion>2.0.0</MicrosoftDataSqlClientSNIRuntimeVersion>
30+
<MicrosoftDataSqlClientSNIRuntimeVersion>2.0.1</MicrosoftDataSqlClientSNIRuntimeVersion>
3131
<SystemConfigurationConfigurationManagerVersion>4.7.0</SystemConfigurationConfigurationManagerVersion>
3232
<SystemDiagnosticsDiagnosticSourceVersion>4.7.0</SystemDiagnosticsDiagnosticSourceVersion>
3333
<SystemDiagnosticsPerformanceCounterVersion>4.7.0</SystemDiagnosticsPerformanceCounterVersion>

tools/specs/Microsoft.Data.SqlClient.nuspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ When using NuGet 3.x this package requires at least version 3.4.</description>
2727
<tags>sqlclient microsoft.data.sqlclient</tags>
2828
<dependencies>
2929
<group targetFramework="net46">
30-
<dependency id="Microsoft.Data.SqlClient.SNI" version="2.0.0" />
30+
<dependency id="Microsoft.Data.SqlClient.SNI" version="2.0.1" />
3131
<dependency id="Microsoft.Identity.Client" version="4.14.0" />
3232
<dependency id="Microsoft.IdentityModel.Protocols.OpenIdConnect" version="5.6.0" />
3333
<dependency id="Microsoft.IdentityModel.JsonWebTokens" version="5.6.0" />
3434
</group>
3535
<group targetFramework="netcoreapp2.1">
36-
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="2.0.0" exclude="Compile" />
36+
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="2.0.1" exclude="Compile" />
3737
<dependency id="Microsoft.Win32.Registry" version="4.7.0" exclude="Compile" />
3838
<dependency id="System.Security.Principal.Windows" version="4.7.0" exclude="Compile" />
3939
<dependency id="System.Text.Encoding.CodePages" version="4.7.0" exclude="Compile" />
@@ -45,7 +45,7 @@ When using NuGet 3.x this package requires at least version 3.4.</description>
4545
<dependency id="Microsoft.IdentityModel.JsonWebTokens" version="5.6.0" />
4646
</group>
4747
<group targetFramework="netcoreapp3.1">
48-
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="2.0.0" exclude="Compile" />
48+
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="2.0.1" exclude="Compile" />
4949
<dependency id="Microsoft.Win32.Registry" version="4.7.0" exclude="Compile" />
5050
<dependency id="System.Security.Principal.Windows" version="4.7.0" exclude="Compile" />
5151
<dependency id="System.Text.Encoding.CodePages" version="4.7.0" exclude="Compile" />
@@ -57,7 +57,7 @@ When using NuGet 3.x this package requires at least version 3.4.</description>
5757
<dependency id="Microsoft.IdentityModel.JsonWebTokens" version="5.6.0" />
5858
</group>
5959
<group targetFramework="netstandard2.0">
60-
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="2.0.0" exclude="Compile" />
60+
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="2.0.1" exclude="Compile" />
6161
<dependency id="Microsoft.Win32.Registry" version="4.7.0" exclude="Compile" />
6262
<dependency id="System.Buffers" version="4.5.1" exclude="Compile" />
6363
<dependency id="System.Memory" version="4.5.4" exclude="Compile" />

0 commit comments

Comments
 (0)