Skip to content

Commit 141aa41

Browse files
Release notes v2.1.6 (#2023)
1 parent 4657311 commit 141aa41

File tree

5 files changed

+93
-1
lines changed

5 files changed

+93
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,14 @@ This update brings the below changes over the previous release:
479479

480480
- Modified column encryption key store provider registrations to give built-in system providers precedence over providers registered on connection and command instances. [#1101](https://github.com/dotnet/SqlClient/pull/1101)
481481

482+
## [Stable Release 2.1.6] - 2023-04-27
483+
484+
### Fixed
485+
486+
- Fixed TDS RPC error on large queries in `SqlCommand.ExecuteReaderAsync`.[#1986](https://github.com/dotnet/SqlClient/pull/1986)
487+
- Fixed Default UTF8 collation conflict. [#1989](https://github.com/dotnet/SqlClient/pull/1989)
488+
- Fixed async deadlock issue when sending attention fails due to network failure. [#1767](https://github.com/dotnet/SqlClient/pull/1767)
489+
482490
## [Stable Release 2.1.5] - 2022-08-30
483491

484492
### Fixed

release-notes/2.1/2.1.6.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 2.1.6 released 27 April 2023
4+
5+
This update brings the below changes over the previous stable release:
6+
7+
### Fixed
8+
9+
- Fixed TDS RPC error on large queries in `SqlCommand.ExecuteReaderAsync`.[#1986](https://github.com/dotnet/SqlClient/pull/1986)
10+
- Fixed Default UTF8 collation conflict. [#1989](https://github.com/dotnet/SqlClient/pull/1989)
11+
- Fixed async deadlock issue when sending attention fails due to network failure. [#1767](https://github.com/dotnet/SqlClient/pull/1767)
12+
13+
### Target Platform Support
14+
15+
- .NET Framework 4.6+ (Windows x86, Windows x64)
16+
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
17+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
18+
19+
### Ensure connections fail when encryption is required
20+
21+
In scenarios where client encryption libraries were disabled or unavailable, it was possible for unencrypted connections to be made when Encrypt was set to true or the server required encryption.
22+
23+
### Dependencies
24+
25+
#### .NET Framework
26+
27+
- Microsoft.Data.SqlClient.SNI 2.1.1
28+
- Microsoft.Identity.Client 4.21.1
29+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
30+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
31+
32+
#### .NET Core 2.1
33+
34+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
35+
- Microsoft.Win32.Registry 4.7.0
36+
- System.Security.Principal.Windows 4.7.0
37+
- System.Text.Encoding.CodePages 4.7.0
38+
- System.Diagnostics.DiagnosticSource 4.7.0
39+
- System.Configuration.ConfigurationManager 4.7.0
40+
- System.Runtime.Caching 4.7.0
41+
- Microsoft.Identity.Client 4.21.1
42+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
43+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
44+
45+
#### .NET Core 3.1
46+
47+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
48+
- Microsoft.Win32.Registry 4.7.0
49+
- System.Security.Principal.Windows 4.7.0
50+
- System.Text.Encoding.CodePages 4.7.0
51+
- System.Diagnostics.DiagnosticSource 4.7.0
52+
- System.Configuration.ConfigurationManager 4.7.0
53+
- System.Runtime.Caching 4.7.0
54+
- Microsoft.Identity.Client 4.21.1
55+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
56+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
57+
58+
#### .NET Standard 2.0
59+
60+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
61+
- Microsoft.Win32.Registry 4.7.0
62+
- System.Buffers 4.5.1
63+
- System.Memory 4.5.4
64+
- System.Security.Principal.Windows 4.7.0
65+
- System.Text.Encoding.CodePages 4.7.0
66+
- System.Runtime.Caching 4.7.0
67+
- Microsoft.Identity.Client 4.21.1
68+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
69+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
70+
71+
#### .NET Standard 2.1
72+
73+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
74+
- Microsoft.Win32.Registry 4.7.0
75+
- System.Buffers 4.5.1
76+
- System.Memory 4.5.4
77+
- System.Security.Principal.Windows 4.7.0
78+
- System.Text.Encoding.CodePages 4.7.0
79+
- System.Runtime.Caching 4.7.0
80+
- Microsoft.Identity.Client 4.21.1
81+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
82+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0

release-notes/2.1/2.1.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.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2023/04/27 | 2.1.6 | [release notes](2.1.6.md) |
78
| 2022/08/30 | 2.1.5 | [release notes](2.1.5.md) |
89
| 2021/09/20 | 2.1.4 | [release notes](2.1.4.md) |
910
| 2021/05/21 | 2.1.3 | [release notes](2.1.3.md) |

release-notes/2.1/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.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2023/04/27 | 2.1.6 | [release notes](2.1.6.md) |
78
| 2022/08/30 | 2.1.5 | [release notes](2.1.5.md) |
89
| 2021/09/20 | 2.1.4 | [release notes](2.1.4.md) |
910
| 2021/05/21 | 2.1.3 | [release notes](2.1.3.md) |

release-notes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Microsoft.Data.SqlClient Release Notes
22

3-
The latest stable release is [Microsoft.Data.SqlClient 5.0](5.0).
3+
The latest stable release is [Microsoft.Data.SqlClient 5.1](5.1).
44

55
## Release Information
66

0 commit comments

Comments
 (0)