Skip to content

Commit c96e4aa

Browse files
Add release notes for 5.2.3 (#3303)
1 parent a11dae7 commit c96e4aa

File tree

4 files changed

+115
-0
lines changed

4 files changed

+115
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,22 @@ This update brings the below changes over the previous release:
147147
- Updated assembly version to 6.0.0.0. [#2382](https://github.com/dotnet/SqlClient/pull/2382)
148148
- Code health improvements: [#2366](https://github.com/dotnet/SqlClient/pull/2366), [#2369](https://github.com/dotnet/SqlClient/pull/2369), [#2381](https://github.com/dotnet/SqlClient/pull/2381), [#2390](https://github.com/dotnet/SqlClient/pull/2390), [#2392](https://github.com/dotnet/SqlClient/pull/2392), [#2403](https://github.com/dotnet/SqlClient/pull/2403), [#2410](https://github.com/dotnet/SqlClient/pull/2410), [#2413](https://github.com/dotnet/SqlClient/pull/2413), [#2425](https://github.com/dotnet/SqlClient/pull/2425), [#2428](https://github.com/dotnet/SqlClient/pull/2428), [#2440](https://github.com/dotnet/SqlClient/pull/2440), [#2443](https://github.com/dotnet/SqlClient/pull/2443), [#2450](https://github.com/dotnet/SqlClient/pull/2450), [#2466](https://github.com/dotnet/SqlClient/pull/2466), [#2486](https://github.com/dotnet/SqlClient/pull/2486), [#2521](https://github.com/dotnet/SqlClient/pull/2521), [#2522](https://github.com/dotnet/SqlClient/pull/2522), [#2533](https://github.com/dotnet/SqlClient/pull/2533), [#2552](https://github.com/dotnet/SqlClient/pull/2552), [#2560](https://github.com/dotnet/SqlClient/pull/2560), [#2726](https://github.com/dotnet/SqlClient/pull/2726), [#2751](https://github.com/dotnet/SqlClient/pull/2751), [#2811](https://github.com/dotnet/SqlClient/pull/2811)
149149

150+
## [Stable release 5.2.3] - 2025-04-29
151+
152+
This update brings the following changes since the 5.2.2 release:
153+
154+
### Fixed
155+
156+
- Fixed possible `NullPointerException` during socket receive (PR [#3284](https://github.com/dotnet/SqlClient/pull/3284))
157+
- Fixed inconsistencies between source and reference projects (PR [#3124](https://github.com/dotnet/SqlClient/pull/3124))
158+
- Adjusted retry logic to allow errors with negative numbers to be considered transient (PR [#3185](https://github.com/dotnet/SqlClient/pull/3185))
159+
160+
### Changed
161+
162+
- Updated the following dependencies:
163+
- [System.Private.Uri](https://www.nuget.org/packages/System.Private.Uri) 4.3.2 - Avoid transitive [CVE-2019-0820](https://msrc.microsoft.com/update-guide/en-US/advisory/CVE-2019-0820) (PR [#3076](https://github.com/dotnet/SqlClient/pull/3076))
164+
- [Microsoft.Extensions.Caching.Memory](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/6.0.3) 6.0.1 to 6.0.3 - Avoid [CVE-2024-43483](https://github.com/advisories/GHSA-qj66-m88j-hmgj) (PR [#3280](https://github.com/dotnet/SqlClient/pull/3280))
165+
150166
## [Stable release 5.2.2] - 2024-08-27
151167

152168
### Fixed

release-notes/5.2/5.2.3.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# Release Notes
2+
3+
## [Stable release 5.2.3] - 2025-04-29
4+
5+
This update brings the following changes since the 5.2.2 release:
6+
7+
### Fixed
8+
9+
- Fixed possible `NullPointerException` during socket receive (PR [#3284](https://github.com/dotnet/SqlClient/pull/3284))
10+
- Fixed inconsistencies between source and reference projects (PR [#3124](https://github.com/dotnet/SqlClient/pull/3124))
11+
- Adjusted retry logic to allow errors with negative numbers to be considered transient (PR [#3185](https://github.com/dotnet/SqlClient/pull/3185))
12+
13+
### Changed
14+
15+
- Updated the following dependencies:
16+
- [System.Private.Uri](https://www.nuget.org/packages/System.Private.Uri) 4.3.2 - Avoid transitive [CVE-2019-0820](https://msrc.microsoft.com/update-guide/en-US/advisory/CVE-2019-0820) (PR [#3076](https://github.com/dotnet/SqlClient/pull/3076))
17+
- [Microsoft.Extensions.Caching.Memory](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/6.0.3) 6.0.1 to 6.0.3 - Avoid [CVE-2024-43483](https://github.com/advisories/GHSA-qj66-m88j-hmgj) (PR [#3280](https://github.com/dotnet/SqlClient/pull/3280))
18+
19+
## Target Platform Support
20+
21+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
22+
- .NET 6.0+ (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 5.2.0
30+
- Azure.Identity 1.11.4
31+
- Microsoft.Identity.Client 4.61.3
32+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
33+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
34+
- System.Buffers 4.5.1
35+
- System.Configuration.ConfigurationManager 6.0.1
36+
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
37+
- System.Text.Encodings.Web 6.0.0
38+
39+
#### .NET 6
40+
41+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
42+
- Azure.Identity 1.11.4
43+
- Microsoft.Identity.Client 4.61.3
44+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
45+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
46+
- Microsoft.SqlServer.Server 1.0.0
47+
- System.Configuration.ConfigurationManager 6.0.1
48+
- System.Runtime.Caching 6.0.0
49+
50+
#### .NET 8
51+
52+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
53+
- Azure.Identity 1.11.4
54+
- Microsoft.Identity.Client 4.61.3
55+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
56+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
57+
- Microsoft.SqlServer.Server 1.0.0
58+
- System.Configuration.ConfigurationManager 8.0.0
59+
- System.Runtime.Caching 8.0.0
60+
61+
#### .NET Standard 2.0
62+
63+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
64+
- Azure.Identity 1.11.4
65+
- Microsoft.Identity.Client 4.61.3
66+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
67+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
68+
- Microsoft.SqlServer.Server 1.0.0
69+
- Microsoft.Win32.Registry 5.0.0
70+
- System.Buffers 4.5.1
71+
- System.Configuration.ConfigurationManager 6.0.1
72+
- System.Diagnostics.DiagnosticSource 6.0.1
73+
- System.Runtime.Caching 6.0.0
74+
- System.Text.Encoding.CodePages 6.0.0
75+
- System.Text.Encodings.Web 6.0.0
76+
- System.Runtime.Loader 4.3.0
77+
- System.Security.Cryptography.Cng 5.0.0
78+
- System.Security.Principal.Windows 5.0.0
79+
80+
#### .NET Standard 2.1
81+
82+
- Microsoft.Data.SqlClient.SNI.runtime 5.2.0
83+
- Azure.Identity 1.11.4
84+
- Microsoft.Identity.Client 4.61.3
85+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0
86+
- Microsoft.IdentityModel.JsonWebTokens 6.35.0
87+
- Microsoft.SqlServer.Server 1.0.0
88+
- Microsoft.Win32.Registry 5.0.0
89+
- System.Configuration.ConfigurationManager 6.0.1
90+
- System.Diagnostics.DiagnosticSource 6.0.1
91+
- System.Runtime.Caching 6.0.0
92+
- System.Text.Encoding.CodePages 6.0.0
93+
- System.Text.Encodings.Web 6.0.0
94+
- System.Runtime.Loader 4.3.0
95+
- System.Security.Cryptography.Cng 5.0.0
96+
- System.Security.Principal.Windows 5.0.0
97+

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+
| 2025/04/29 | 5.2.3 | [release notes](5.2.3.md) |
78
| 2024/08/27 | 5.2.2 | [release notes](5.2.2.md) |
89
| 2024/05/31 | 5.2.1 | [release notes](5.2.1.md) |
910
| 2024/02/28 | 5.2.0 | [release notes](5.2.0.md) |

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+
| 2025/04/29 | 5.2.3 | [release notes](5.2.3.md) |
78
| 2024/08/27 | 5.2.2 | [release notes](5.2.2.md) |
89
| 2024/05/31 | 5.2.1 | [release notes](5.2.1.md) |
910
| 2024/02/28 | 5.2.0 | [release notes](5.2.0.md) |

0 commit comments

Comments
 (0)