Skip to content

Commit 8768323

Browse files
[Hotfix 4.0.2] | Release notes (#1760)
1 parent b02e0b0 commit 8768323

File tree

4 files changed

+100
-0
lines changed

4 files changed

+100
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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+
## Microsoft.Data.SqlClient 4.0.2 released 13 September 2022
8+
9+
This update brings the below changes over the previous preview release:
10+
11+
### Fixed
12+
13+
- Fixed connection failure by not requiring Certificate Revocation List (CRL) check during authentication. [#1718](https://github.com/dotnet/SqlClient/pull/1718)
14+
- Parallelize SSRP requests on Linux and macOS when MultiSubNetFailover is specified. [#1720](https://github.com/dotnet/SqlClient/pull/1720), [#1747](https://github.com/dotnet/SqlClient/pull/1747)
15+
- Added CommandText length validation when using stored procedure command types. [#1721](https://github.com/dotnet/SqlClient/pull/1721)
16+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1722](https://github.com/dotnet/SqlClient/pull/1722)
17+
- Fixed null SqlBinary as rowversion. [#1724](https://github.com/dotnet/SqlClient/pull/1724)
18+
- Fixed table's collation overriding with default UTF8 collation. [#1750](https://github.com/dotnet/SqlClient/pull/1750)
19+
20+
## Changed
21+
22+
- Updated `Microsoft.Data.SqlClient.SNI` (.NET Framework dependency) and `Microsoft.Data.SqlClient.SNI.runtime` (.NET Core/Standard dependency) version to `v4.0.1` [#1754](https://github.com/dotnet/SqlClient/pull/1754), which includes the fix for AppDomain crash introducing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418)
23+
- Various code improvements: [#1723](https://github.com/dotnet/SqlClient/pull/1723)
24+
725
## Microsoft.Data.SqlClient 4.0.1 released 17 January 2022
826

927
This update brings the below changes over the previous preview release:

release-notes/4.0/4.0.2.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 4.0.2 released 13 September 2022
4+
5+
This update brings the below changes over the previous preview release:
6+
7+
### Fixed
8+
9+
- Fixed connection failure by not requiring Certificate Revocation List (CRL) check during authentication. [#1718](https://github.com/dotnet/SqlClient/pull/1718)
10+
- Parallelize SSRP requests on Linux and macOS when MultiSubNetFailover is specified. [#1720](https://github.com/dotnet/SqlClient/pull/1720), [#1747](https://github.com/dotnet/SqlClient/pull/1747)
11+
- Added CommandText length validation when using stored procedure command types. [#1721](https://github.com/dotnet/SqlClient/pull/1721)
12+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1722](https://github.com/dotnet/SqlClient/pull/1722)
13+
- Fixed null SqlBinary as rowversion. [#1724](https://github.com/dotnet/SqlClient/pull/1724)
14+
- Fixed table's collation overriding with default UTF8 collation. [#1750](https://github.com/dotnet/SqlClient/pull/1750)
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 `v4.0.1` [#1754](https://github.com/dotnet/SqlClient/pull/1754), which includes the fix for AppDomain crash introducing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418)
19+
- Various code improvements: [#1723](https://github.com/dotnet/SqlClient/pull/1723)
20+
21+
## Target Platform Support
22+
23+
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
24+
- .NET Core 3.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
25+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
26+
27+
### Dependencies
28+
29+
#### .NET Framework
30+
31+
- Microsoft.Data.SqlClient.SNI 4.0.1
32+
- Azure.Identity 1.3.0
33+
- Microsoft.Identity.Client 4.22.0
34+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
35+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
36+
- System.Buffers 4.5.1
37+
- System.Configuration.ConfigurationManager 5.0.0
38+
- System.IO 4.3.0
39+
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
40+
- System.Security.Cryptography.Algorithms 4.3.1
41+
- System.Security.Cryptography.Primitives 4.3.0
42+
- System.Text.Encodings.Web 4.7.2
43+
44+
#### .NET Core
45+
46+
- Microsoft.Data.SqlClient.SNI.runtime 4.0.1
47+
- Azure.Identity 1.3.0
48+
- Microsoft.Identity.Client 4.22.0
49+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
50+
- Microsoft.IdentityModel.JsonWebTokens 6.8.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 4.0.1
66+
- Azure.Identity 1.3.0
67+
- Microsoft.Identity.Client 4.22.0
68+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
69+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
70+
- Microsoft.Win32.Registry 5.0.0
71+
- System.Buffers 4.5.1
72+
- System.Configuration.ConfigurationManager 5.0.0
73+
- System.IO 4.3.0
74+
- System.Runtime.Caching 5.0.0
75+
- System.Text.Encoding.CodePages 5.0.0
76+
- System.Text.Encodings.Web 4.7.2
77+
- System.Resources.ResourceManager 4.3.0
78+
- System.Runtime.Loader 4.3.0
79+
- System.Security.Cryptography.Cng 5.0.0
80+
- System.Security.Principal.Windows 5.0.0

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2022/09/13 | 4.0.2 | [release notes](4.0.2.md) |
78
| 2022/01/17 | 4.0.1 | [release notes](4.0.1.md) |
89
| 2021/11/18 | 4.0.0 | [release notes](4.0.0.md) |
910

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2022/09/13 | 4.0.2 | [release notes](4.0.2.md) |
78
| 2022/01/17 | 4.0.1 | [release notes](4.0.1.md) |
89
| 2021/11/18 | 4.0.0 | [release notes](4.0.0.md) |
910

0 commit comments

Comments
 (0)