Skip to content

Commit 8524259

Browse files
cheenamalhotraTrayanZapryanov
authored andcommitted
Release notes for v2.0.1 (dotnet#710)
1 parent 4314ed1 commit 8524259

File tree

4 files changed

+86
-0
lines changed

4 files changed

+86
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 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
## [Preview Release 2.1.0-preview1.20235.1] - 2020-08-21
822

923
### Added

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:

0 commit comments

Comments
 (0)