Skip to content

Commit 8aad694

Browse files
[Hotfix 4.1.1] | Release notes (#1761)
1 parent a8364e9 commit 8aad694

File tree

4 files changed

+98
-0
lines changed

4 files changed

+98
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ 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 4.1.1] - 2022-09-13
8+
9+
### Fixed
10+
11+
- Fixed connection failure by not requiring Certificate Revocation List (CRL) check during authentication. [#1706](https://github.com/dotnet/SqlClient/pull/1706)
12+
- Parallelize SSRP requests on Linux and macOS when MultiSubNetFailover is specified. [#1708](https://github.com/dotnet/SqlClient/pull/1708), [#1746](https://github.com/dotnet/SqlClient/pull/1746)
13+
- Added CommandText length validation when using stored procedure command types. [#1709](https://github.com/dotnet/SqlClient/pull/1709)
14+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1710](https://github.com/dotnet/SqlClient/pull/1710)
15+
- Fixed null SqlBinary as rowversion. [#1712](https://github.com/dotnet/SqlClient/pull/1712)
16+
- Fixed table's collation overriding with default UTF8 collation. [#1749](https://github.com/dotnet/SqlClient/pull/1749)
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 `v4.0.1` [#1755](https://github.com/dotnet/SqlClient/pull/1755), which includes the fix for AppDomain crash introducing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418)
21+
- Various code improvements: [#1711](https://github.com/dotnet/SqlClient/pull/1711)
22+
723
## [Stable release 4.1.0] - 2022-01-31
824

925
### Added

release-notes/4.1/4.1.1.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.1.1 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. [#1706](https://github.com/dotnet/SqlClient/pull/1706)
10+
- Parallelize SSRP requests on Linux and macOS when MultiSubNetFailover is specified. [#1708](https://github.com/dotnet/SqlClient/pull/1708), [#1746](https://github.com/dotnet/SqlClient/pull/1746)
11+
- Added CommandText length validation when using stored procedure command types. [#1709](https://github.com/dotnet/SqlClient/pull/1709)
12+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1710](https://github.com/dotnet/SqlClient/pull/1710)
13+
- Fixed null SqlBinary as rowversion. [#1712](https://github.com/dotnet/SqlClient/pull/1712)
14+
- Fixed table's collation overriding with default UTF8 collation. [#1749](https://github.com/dotnet/SqlClient/pull/1749)
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` [#1755](https://github.com/dotnet/SqlClient/pull/1755), which includes the fix for AppDomain crash introducing in issue [#1418](https://github.com/dotnet/SqlClient/issues/1418)
19+
- Various code improvements: [#1711](https://github.com/dotnet/SqlClient/pull/1711)
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.1/4.1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ The following Microsoft.Data.SqlClient 4.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2022/09/13| 4.1.1 | [release notes](4.1.1.md) |
78
| 2022/01/31| 4.1.0 | [release notes](4.1.0.md) |

release-notes/4.1/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ The following Microsoft.Data.SqlClient 4.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2022/09/13 | 4.1.1 | [release notes](4.1.1.md) |
78
| 2022/01/31 | 4.1.0 | [release notes](4.1.0.md) |

0 commit comments

Comments
 (0)