Skip to content

Commit c223dfb

Browse files
authored
Hotfix v5.2.2 Release notes (#2770)
1 parent 12d5391 commit c223dfb

File tree

4 files changed

+119
-0
lines changed

4 files changed

+119
-0
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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 5.2.2] - 2024-08-27
8+
9+
### Fixed
10+
11+
- Fixed `AcquireTokenAsync` timeout handling for edge cases in `ActiveDirectoryAuthenticationProvider`. [#2650](https://github.com/dotnet/SqlClient/pull/2650)
12+
- Fixed issue with `Socket.Connect` in managed SNI. [#2779](https://github.com/dotnet/SqlClient/pull/2779)
13+
- Fixed path for `AssemblyAttributes` in obj folder causing NET 8.0 assembly to appear in NET 6.0 dll. [#2789](https://github.com/dotnet/SqlClient/pull/2789)
14+
- Fixed SSPI retry negotiation with default port in .NET. [#2815](https://github.com/dotnet/SqlClient/pull/2815)
15+
- Fixed `ArgumentNullException` on `SqlDataRecord.GetValue` when using user-defined data type on .NET. [#2816](https://github.com/dotnet/SqlClient/pull/2816)
16+
- Fixed pending data with `SqlDataReader` against an encrypted column. [#2817](https://github.com/dotnet/SqlClient/pull/2817)
17+
18+
### Changed
19+
20+
- Upgraded `Azure.Identity` version from 1.11.3 to 1.11.4 [#2648](https://github.com/dotnet/SqlClient/pull/2648) to address [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9).
21+
- Upgraded `Microsoft.Identity.Client` version from 4.60.0 to 4.61.3 [#2648](https://github.com/dotnet/SqlClient/pull/2648) to address [CVE-2024-35255](https://github.com/advisories/GHSA-m5vv-6r4h-3vj9).
22+
- Added caching to `TokenCredential` objects to take advantage of token caching. [#2775](https://github.com/dotnet/SqlClient/pull/2775)
23+
724
## [Stable release 5.2.1] - 2024-05-31
825

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

release-notes/5.2/5.2.2.md

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Release Notes
2+
3+
## [Stable release 5.2.2] - 2024-08-27
4+
5+
This update brings the below changes over the previous release:
6+
7+
### Fixed
8+
9+
- Fixed `AcquireTokenAsync` timeout handling for edge cases in `ActiveDirectoryAuthenticationProvider`. [#2650](https://github.com/dotnet/SqlClient/pull/2650)
10+
- Fixed issue with `Socket.Connect` in managed SNI. [#2779](https://github.com/dotnet/SqlClient/pull/2779)
11+
- Fixed path for `AssemblyAttributes` in obj folder causing NET 8.0 assembly to appear in NET 6.0 dll. [#2789](https://github.com/dotnet/SqlClient/pull/2789)
12+
- Fixed SSPI retry negotiation with default port in .NET. [#2815](https://github.com/dotnet/SqlClient/pull/2815)
13+
- Fixed `ArgumentNullException` on `SqlDataRecord.GetValue` when using user-defined data type on .NET. [#2816](https://github.com/dotnet/SqlClient/pull/2816)
14+
- Fixed pending data with `SqlDataReader` against an encrypted column. [#2817](https://github.com/dotnet/SqlClient/pull/2817)
15+
16+
### Changed
17+
18+
- Upgraded `Azure.Identity` version from 1.11.3 to 1.11.4 [#2648](https://github.com/dotnet/SqlClient/pull/2648) 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 [#2648](https://github.com/dotnet/SqlClient/pull/2648) 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. [#2775](https://github.com/dotnet/SqlClient/pull/2775)
21+
22+
## Target Platform Support
23+
24+
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
25+
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
26+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
27+
28+
### Dependencies
29+
30+
#### .NET Framework
31+
32+
- Microsoft.Data.SqlClient.SNI 5.2.0
33+
- Azure.Identity 1.11.4
34+
- Microsoft.Identity.Client 4.61.3
35+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
36+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
37+
- System.Buffers 4.5.1
38+
- System.Configuration.ConfigurationManager 6.0.1
39+
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
40+
- System.Text.Encodings.Web 6.0.0
41+
42+
#### .NET 6
43+
44+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
45+
- Azure.Identity 1.11.4
46+
- Microsoft.Identity.Client 4.61.3
47+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
48+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
49+
- Microsoft.SqlServer.Server 1.0.0
50+
- System.Configuration.ConfigurationManager 6.0.1
51+
- System.Runtime.Caching 6.0.0
52+
53+
#### .NET 8
54+
55+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
56+
- Azure.Identity 1.11.4
57+
- Microsoft.Identity.Client 4.61.3
58+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
59+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
60+
- Microsoft.SqlServer.Server 1.0.0
61+
- System.Configuration.ConfigurationManager 8.0.0
62+
- System.Runtime.Caching 8.0.0
63+
64+
#### .NET Standard 2.0
65+
66+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
67+
- Azure.Identity 1.11.4
68+
- Microsoft.Identity.Client 4.61.3
69+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
70+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
71+
- Microsoft.SqlServer.Server 1.0.0
72+
- Microsoft.Win32.Registry 5.0.0
73+
- System.Buffers 4.5.1
74+
- System.Configuration.ConfigurationManager 6.0.1
75+
- System.Diagnostics.DiagnosticSource 6.0.1
76+
- System.Runtime.Caching 6.0.0
77+
- System.Text.Encoding.CodePages 6.0.0
78+
- System.Text.Encodings.Web 6.0.0
79+
- System.Runtime.Loader 4.3.0
80+
- System.Security.Cryptography.Cng 5.0.0
81+
- System.Security.Principal.Windows 5.0.0
82+
83+
#### .NET Standard 2.1
84+
85+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
86+
- Azure.Identity 1.11.4
87+
- Microsoft.Identity.Client 4.61.3
88+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
89+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
90+
- Microsoft.SqlServer.Server 1.0.0
91+
- Microsoft.Win32.Registry 5.0.0
92+
- System.Configuration.ConfigurationManager 6.0.1
93+
- System.Diagnostics.DiagnosticSource 6.0.1
94+
- System.Runtime.Caching 6.0.0
95+
- System.Text.Encoding.CodePages 6.0.0
96+
- System.Text.Encodings.Web 6.0.0
97+
- System.Runtime.Loader 4.3.0
98+
- System.Security.Cryptography.Cng 5.0.0
99+
- System.Security.Principal.Windows 5.0.0
100+

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2024/08/27 | 5.2.2 | [release notes](5.2.2.md) |
78
| 2024/05/31 | 5.2.1 | [release notes](5.2.1.md) |
89
| 2024/02/28 | 5.2.0 | [release notes](5.2.0.md) |
910

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2024/08/27 | 5.2.2 | [release notes](5.2.2.md) |
78
| 2024/05/31 | 5.2.1 | [release notes](5.2.1.md) |
89
| 2024/02/28 | 5.2.0 | [release notes](5.2.0.md) |
910

0 commit comments

Comments
 (0)