Skip to content

Commit ac1012a

Browse files
authored
Hotfix v3.1.6 Release notes (#2767)
1 parent 619fa74 commit ac1012a

File tree

4 files changed

+94
-0
lines changed

4 files changed

+94
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,18 @@ This update brings the below changes over the previous release:
660660
- Optimized async method allocations in .NET Framework by porting changes from .NET Core. [#1084](https://github.com/dotnet/SqlClient/pull/1084)
661661
- Various code improvements [#902](https://github.com/dotnet/SqlClient/pull/902) [#925](https://github.com/dotnet/SqlClient/pull/925) [#933](https://github.com/dotnet/SqlClient/pull/933) [#934](https://github.com/dotnet/SqlClient/pull/934) [#1024](https://github.com/dotnet/SqlClient/pull/1024) [#1057](https://github.com/dotnet/SqlClient/pull/1057) [#1122](https://github.com/dotnet/SqlClient/pull/1122) [#1133](https://github.com/dotnet/SqlClient/pull/1133) [#1134](https://github.com/dotnet/SqlClient/pull/1134) [#1141](https://github.com/dotnet/SqlClient/pull/1141) [#1187](https://github.com/dotnet/SqlClient/pull/1187) [#1188](https://github.com/dotnet/SqlClient/pull/1188) [#1223](https://github.com/dotnet/SqlClient/pull/1223) [#1225](https://github.com/dotnet/SqlClient/pull/1225) [#1226](https://github.com/dotnet/SqlClient/pull/1226)
662662

663+
## [Stable release 3.1.6] - 2024-08-15
664+
665+
### Fixed
666+
667+
- Fixed connection to unsubscribe from transaction completion events before returning it to the connection pool. [#2301](https://github.com/dotnet/SqlClient/pull/2301) [#2434](https://github.com/dotnet/SqlClient/pull/2434)
668+
- Fixed `AcquireTokenAsync` timeout handling for edge cases in `ActiveDirectoryAuthenticationProvider`. [#2709](https://github.com/dotnet/SqlClient/pull/2709)
669+
670+
### Changed
671+
672+
- Updated Microsoft.Data.SqlClient.SNI version 3.0.1 to 3.0.2 [#2676](https://github.com/dotnet/SqlClient/pull/2676) which includes the fix for AppDomain crashing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418) and various code refactors.
673+
- Code health improvements: [#2147](https://github.com/dotnet/SqlClient/pull/2147), [#2515](https://github.com/dotnet/SqlClient/pull/2515), [#2517](https://github.com/dotnet/SqlClient/pull/2517) addresses [CVE-2019-0545](https://github.com/advisories/GHSA-2xjx-v99w-gqf3), [#2539](https://github.com/dotnet/SqlClient/pull/2539)
674+
663675
## [Stable release 3.1.5] - 2024-01-09
664676

665677
### Fixed

release-notes/3.1/3.1.6.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 3.1.6 released 15 August 2024
4+
5+
This update brings the below changes over the previous release:
6+
7+
### Fixed
8+
9+
- Fixed connection to unsubscribe from transaction completion events before returning it to the connection pool. [#2301](https://github.com/dotnet/SqlClient/pull/2301) [#2434](https://github.com/dotnet/SqlClient/pull/2434)
10+
- Fixed `AcquireTokenAsync` timeout handling for edge cases in `ActiveDirectoryAuthenticationProvider`. [#2709](https://github.com/dotnet/SqlClient/pull/2709)
11+
12+
### Changed
13+
14+
- Updated Microsoft.Data.SqlClient.SNI version 3.0.1 to 3.0.2 [#2676](https://github.com/dotnet/SqlClient/pull/2676) which includes the fix for AppDomain crashing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418) and various code refactors.
15+
- Code health improvements: [#2147](https://github.com/dotnet/SqlClient/pull/2147), [#2515](https://github.com/dotnet/SqlClient/pull/2515), [#2517](https://github.com/dotnet/SqlClient/pull/2517) addresses [CVE-2019-0545](https://github.com/advisories/GHSA-2xjx-v99w-gqf3), [#2539](https://github.com/dotnet/SqlClient/pull/2539)
16+
17+
## Target Platform Support
18+
19+
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
20+
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
21+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
22+
23+
### Dependencies
24+
25+
#### .NET Framework 4.6.1
26+
27+
- Microsoft.Data.SqlClient.SNI 3.0.2
28+
- Azure.Identity 1.3.0
29+
- Microsoft.Identity.Client 4.22.0
30+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
31+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
32+
- System.Configuration.ConfigurationManager 4.7.0
33+
- System.Text.Encodings.Web 4.7.2
34+
35+
#### .NET Core 2.1
36+
37+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.2
38+
- Microsoft.Win32.Registry 4.7.0
39+
- System.Security.Principal.Windows 4.7.0
40+
- System.Text.Encoding.CodePages 4.7.0
41+
- System.Text.Encodings.Web 4.7.2
42+
- System.Diagnostics.DiagnosticSource 4.7.0
43+
- System.Configuration.ConfigurationManager 4.7.0
44+
- System.Runtime.Caching 4.7.0
45+
- Azure.Identity 1.3.0
46+
- Microsoft.Identity.Client 4.22.0
47+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
48+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
49+
50+
#### .NET Core 3.1
51+
52+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.2
53+
- Microsoft.Win32.Registry 4.7.0
54+
- System.Security.Principal.Windows 4.7.0
55+
- System.Text.Encoding.CodePages 4.7.0
56+
- System.Text.Encodings.Web 4.7.2
57+
- System.Diagnostics.DiagnosticSource 4.7.0
58+
- System.Configuration.ConfigurationManager 4.7.0
59+
- System.Runtime.Caching 4.7.0
60+
- Azure.Identity 1.3.0
61+
- Microsoft.Identity.Client 4.22.0
62+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
63+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
64+
65+
#### .NET Standard
66+
67+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.2
68+
- Microsoft.Win32.Registry 4.7.0
69+
- System.Buffers 4.5.1
70+
- System.Memory 4.5.4
71+
- System.Security.Principal.Windows 4.7.0
72+
- System.Text.Encoding.CodePages 4.7.0
73+
- System.Text.Encodings.Web 4.7.2
74+
- System.Runtime.Caching 4.7.0
75+
- Azure.Identity 1.3.0
76+
- Microsoft.Identity.Client 4.22.0
77+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
78+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
79+
- System.Configuration.ConfigurationManager 4.7.0
80+
- System.Runtime.Loader 4.3.0

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2024/08/15 | 3.1.6 | [release notes](3.1.6.md) |
78
| 2024/01/09 | 3.1.5 | [release notes](3.1.5.md) |
89
| 2023/10/31 | 3.1.4 | [release notes](3.1.4.md) |
910
| 2023/03/10 | 3.1.3 | [release notes](3.1.3.md) |

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2024/08/15 | 3.1.6 | [release notes](3.1.6.md) |
78
| 2024/01/09 | 3.1.5 | [release notes](3.1.5.md) |
89
| 2023/10/31 | 3.1.4 | [release notes](3.1.4.md) |
910
| 2023/03/10 | 3.1.3 | [release notes](3.1.3.md) |

0 commit comments

Comments
 (0)