Skip to content

Commit 12d5391

Browse files
authored
Hotfix v5.1.6 Release notes (#2769)
1 parent f8f2a96 commit 12d5391

File tree

4 files changed

+92
-0
lines changed

4 files changed

+92
-0
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,21 @@ This update brings the below changes over the previous release:
216216
- Added Microsoft.SqlServer.Types to verify support for SqlHierarchyId and Spatial for .NET Core. [#1848](https://github.com/dotnet/SqlClient/pull/1848)
217217
- Code health improvements:[#1943](https://github.com/dotnet/SqlClient/pull/1943)[#1949](https://github.com/dotnet/SqlClient/pull/1949)[#1198](https://github.com/dotnet/SqlClient/pull/1198)[#1829](https://github.com/dotnet/SqlClient/pull/1829)
218218

219+
## [Stable release 5.1.6] - 2024-08-27
220+
221+
### Fixed
222+
223+
- Fixed Transient fault handling issue with `OpenAsync`. [#1983](https://github.com/dotnet/SqlClient/pull/1983) [#2508](https://github.com/dotnet/SqlClient/pull/2508)
224+
- Fixed `AcquireTokenAsync` timeout handling for edge cases in `ActiveDirectoryAuthenticationProvider`. [#2706](https://github.com/dotnet/SqlClient/pull/2706)
225+
- Fixed pending data with `SqlDataReader` against an encrypted column. [#2618](https://github.com/dotnet/SqlClient/pull/2618) [#2818](https://github.com/dotnet/SqlClient/pull/2818)
226+
227+
### Changed
228+
229+
- Upgraded `Azure.Identity` version from 1.11.3 to 1.11.4 [#2649] (https://github.com/dotnet/SqlClient/pull/2649) [#2529] (https://github.com/dotnet/SqlClient/pull/2529) to address [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9).
230+
- Upgraded `Microsoft.Identity.Client` version from 4.60.0 to 4.61.3 [#2649] (https://github.com/dotnet/SqlClient/pull/2649) [#2529] (https://github.com/dotnet/SqlClient/pull/2529) to address [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9).
231+
- Added caching to `TokenCredential` objects to take advantage of token caching. [#2776](https://github.com/dotnet/SqlClient/pull/2776)
232+
- Code health improvements: [#2490] (https://github.com/dotnet/SqlClient/pull/2490)
233+
219234
## [Stable release 5.1.5] - 2024-01-29
220235

221236
This update brings the below changes over the previous release:

release-notes/5.1/5.1.6.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 5.1.6 released 27 August 2024
4+
5+
This update includes the following changes over the previous release:
6+
7+
### Contributors
8+
Thanks to the following public contributors. Their efforts toward this project are very much appreciated.
9+
10+
### Fixed
11+
12+
- Fixed Transient fault handling issue with `OpenAsync`. [#1983](https://github.com/dotnet/SqlClient/pull/1983) [#2508](https://github.com/dotnet/SqlClient/pull/2508)
13+
- Fixed `AcquireTokenAsync` timeout handling for edge cases in `ActiveDirectoryAuthenticationProvider`. [#2706](https://github.com/dotnet/SqlClient/pull/2706)
14+
- Fixed pending data with `SqlDataReader` against an encrypted column. [#2618](https://github.com/dotnet/SqlClient/pull/2618) [#2818](https://github.com/dotnet/SqlClient/pull/2818)
15+
16+
### Changed
17+
18+
- Upgraded `Azure.Identity` version from 1.11.3 to 1.11.4 [#2649] (https://github.com/dotnet/SqlClient/pull/2649) [#2529] (https://github.com/dotnet/SqlClient/pull/2529) to address [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9).
19+
- Upgraded `Microsoft.Identity.Client` version from 4.60.0 to 4.61.3 [#2649] (https://github.com/dotnet/SqlClient/pull/2649) [#2529] (https://github.com/dotnet/SqlClient/pull/2529) to address [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9).
20+
- Added caching to `TokenCredential` objects to take advantage of token caching. [#2776](https://github.com/dotnet/SqlClient/pull/2776)
21+
- Code health improvements: [#2490] (https://github.com/dotnet/SqlClient/pull/2490)
22+
23+
## Target Platform Support
24+
25+
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
26+
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
27+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
28+
29+
### Dependencies
30+
31+
#### .NET Framework
32+
33+
- Microsoft.Data.SqlClient.SNI 5.1.1
34+
- Azure.Identity 1.11.4
35+
- Microsoft.Identity.Client 4.61.3
36+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
37+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
38+
- System.Buffers 4.5.1
39+
- System.Configuration.ConfigurationManager 6.0.1
40+
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
41+
- System.Text.Encodings.Web 6.0.0
42+
43+
#### .NET
44+
45+
- Microsoft.Data.SqlClient.SNI.runtime 5.1.1
46+
- Azure.Identity 1.11.4
47+
- Microsoft.Identity.Client 4.61.3
48+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
49+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
50+
- Microsoft.SqlServer.Server 1.0.0
51+
- System.Configuration.ConfigurationManager 6.0.1
52+
- System.Diagnostics.DiagnosticSource 6.0.0
53+
- System.Runtime.Caching 6.0.0
54+
- System.Text.Encoding.CodePages 6.0.0
55+
- System.Text.Encodings.Web 6.0.0
56+
- System.Security.Cryptography.Cng 5.0.0
57+
- System.Security.Principal.Windows 5.0.0
58+
59+
#### .NET Standard
60+
61+
- Microsoft.Data.SqlClient.SNI.runtime 5.1.1
62+
- Azure.Identity 1.11.4
63+
- Microsoft.Identity.Client 4.61.3
64+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
65+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
66+
- Microsoft.SqlServer.Server 1.0.0
67+
- Microsoft.Win32.Registry 5.0.0
68+
- System.Buffers 4.5.1
69+
- System.Configuration.ConfigurationManager 6.0.1
70+
- System.Runtime.Caching 6.0.0
71+
- System.Text.Encoding.CodePages 6.0.0
72+
- System.Text.Encodings.Web 6.0.0
73+
- System.Runtime.Loader 4.3.0
74+
- System.Security.Cryptography.Cng 5.0.0
75+
- System.Security.Principal.Windows 5.0.0

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2024/08/27 | 5.1.6 | [release notes](5.1.6.md) |
78
| 2024/01/29 | 5.1.5 | [release notes](5.1.5.md) |
89
| 2024/01/09 | 5.1.4 | [release notes](5.1.4.md) |
910
| 2024/01/09 | 5.1.3 | [release notes](5.1.3.md) |

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2024/08/27 | 5.1.6 | [release notes](5.1.6.md) |
78
| 2024/01/29 | 5.1.5 | [release notes](5.1.5.md) |
89
| 2024/01/09 | 5.1.4 | [release notes](5.1.4.md) |
910
| 2024/01/09 | 5.1.3 | [release notes](5.1.3.md) |

0 commit comments

Comments
 (0)