Skip to content

Commit f361a67

Browse files
5.0.1 Release notes [main branch] (#1794)
Release notes 5.0.1
1 parent fe8d1c1 commit f361a67

File tree

5 files changed

+99
-1
lines changed

5 files changed

+99
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.0.1] - 2022-10-07
8+
9+
### Fixed
10+
11+
- Fixed missing `HostNameInCertificate` connection string property in .NET Framework. [#1782](https://github.com/dotnet/SqlClient/pull/1782)
12+
- Fixed async deadlock issue when sending attention fails due to network failure. [#1783](https://github.com/dotnet/SqlClient/pull/1783)
13+
- Fixed **Null Reference Exception** on assigning `null` to `SqlConnectionStringBuilder.Encrypt`. [#1784](https://github.com/dotnet/SqlClient/pull/1784)
14+
- Fixed `ReadAsync()` behavior to register Cancellation token action before streaming results. [#1785](https://github.com/dotnet/SqlClient/pull/1785)
15+
- Fixed hang on infinite timeout and managed SNI. [#1798](https://github.com/dotnet/SqlClient/pull/1798)
16+
- Fixed Default UTF8 collation conflict. [#1799](https://github.com/dotnet/SqlClient/pull/1799)
17+
18+
### Changed
19+
20+
- Updated `Microsoft.Data.SqlClient.SNI` (.NET Framework dependency) and `Microsoft.Data.SqlClient.SNI.runtime` (.NET Core/Standard dependency) version to `5.0.1` [#1795](https://github.com/dotnet/SqlClient/pull/1795), which includes the fix for AppDomain crash introducing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418).
21+
722
## [Stable release 5.0.0] - 2022-08-05
823

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

release-notes/5.0/5.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Switch.Microsoft.Data.SqlClient.SuppressInsecureTLSWarning
142142

143143
#### .NET Framework
144144

145-
- Microsoft.Data.SqlClient.SNI.runtime 5.0.0
145+
- Microsoft.Data.SqlClient.SNI 5.0.0
146146
- Azure.Identity 1.6.0
147147
- Microsoft.Identity.Client 4.45.0
148148
- Microsoft.IdentityModel.JsonWebTokens 6.21.0

release-notes/5.0/5.0.1.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 5.0.1 released 7 October 2022
4+
5+
This update includes the following changes over the 5.0.0 release:
6+
7+
### Fixed
8+
9+
- Fixed missing `HostNameInCertificate` connection string property in .NET Framework. [#1782](https://github.com/dotnet/SqlClient/pull/1782)
10+
- Fixed async deadlock issue when sending attention fails due to network failure. [#1783](https://github.com/dotnet/SqlClient/pull/1783)
11+
- Fixed **Null Reference Exception** on assigning `null` to `SqlConnectionStringBuilder.Encrypt`. [#1784](https://github.com/dotnet/SqlClient/pull/1784)
12+
- Fixed `ReadAsync()` behavior to register Cancellation token action before streaming results. [#1785](https://github.com/dotnet/SqlClient/pull/1785)
13+
- Fixed hang on infinite timeout and managed SNI. [#1798](https://github.com/dotnet/SqlClient/pull/1798)
14+
- Fixed Default UTF8 collation conflict. [#1799](https://github.com/dotnet/SqlClient/pull/1799)
15+
16+
### Changed
17+
18+
- Updated `Microsoft.Data.SqlClient.SNI` (.NET Framework dependency) and `Microsoft.Data.SqlClient.SNI.runtime` (.NET Core/Standard dependency) version to `5.0.1` [#1795](https://github.com/dotnet/SqlClient/pull/1795), which includes the fix for AppDomain crash introducing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418).
19+
20+
## Target Platform Support
21+
22+
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
23+
- .NET Core 3.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
24+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
25+
26+
### Dependencies
27+
28+
#### .NET Framework
29+
30+
- Microsoft.Data.SqlClient.SNI 5.0.1
31+
- Azure.Identity 1.6.0
32+
- Microsoft.Identity.Client 4.45.0
33+
- Microsoft.IdentityModel.JsonWebTokens 6.21.0
34+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.21.0
35+
- System.Buffers 4.5.1
36+
- System.Configuration.ConfigurationManager 5.0.0
37+
- System.IO 4.3.0
38+
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
39+
- System.Security.Cryptography.Algorithms 4.3.1
40+
- System.Security.Cryptography.Primitives 4.3.0
41+
- System.Text.Encoding.Web 4.7.2
42+
43+
#### .NET Core
44+
45+
- Microsoft.Data.SqlClient.SNI.runtime 5.0.1
46+
- Azure.Identity 1.6.0
47+
- Microsoft.Identity.Client 4.45.0
48+
- Microsoft.IdentityModel.JsonWebTokens 6.21.0
49+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.21.0
50+
- Microsoft.SqlServer.Server 1.0.0
51+
- Microsoft.Win32.Registry 5.0.0
52+
- System.Buffers 4.5.1
53+
- System.Configuration.ConfigurationManager 5.0.0
54+
- System.Diagnostics.DiagnosticSource 5.0.0
55+
- System.IO 4.3.0
56+
- System.Runtime.Caching 5.0.0
57+
- System.Text.Encoding.CodePages 5.0.0
58+
- System.Text.Encodings.Web 4.7.2
59+
- System.Resources.ResourceManager 4.3.0
60+
- System.Security.Cryptography.Cng 5.0.0
61+
- System.Security.Principal.Windows 5.0.0
62+
63+
#### .NET Standard
64+
65+
- Microsoft.Data.SqlClient.SNI.runtime 5.0.1
66+
- Azure.Identity 1.6.0
67+
- Microsoft.Identity.Client 4.45.0
68+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.21.0
69+
- Microsoft.IdentityModel.JsonWebTokens 6.21.0
70+
- Microsoft.SqlServer.Server 1.0.0
71+
- Microsoft.Win32.Registry 5.0.0
72+
- System.Buffers 4.5.1
73+
- System.Configuration.ConfigurationManager 5.0.0
74+
- System.IO 4.3.0
75+
- System.Runtime.Caching 5.0.0
76+
- System.Text.Encoding.CodePages 5.0.0
77+
- System.Text.Encodings.Web 4.7.2
78+
- System.Runtime.Loader 4.3.0
79+
- System.Resources.ResourceManager 4.3.0
80+
- System.Security.Cryptography.Cng 5.0.0
81+
- System.Security.Principal.Windows 5.0.0

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2022/10/07 | 5.0.1 | [release notes](5.0.1.md) |
78
| 2022/08/05 | 5.0.0 | [release notes](5.0.0.md) |
89

910
The following Microsoft.Data.SqlClient 5.0 preview releases have been shipped:

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2022/10/07 | 5.0.1 | [release notes](5.0.1.md) |
78
| 2022/08/05 | 5.0.0 | [release notes](5.0.0.md) |
89

910
The following Microsoft.Data.SqlClient 5.0 preview releases have been shipped:

0 commit comments

Comments
 (0)