Skip to content

Commit

Permalink
[Hotfix 4.0.1] Release notes (#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
Javad authored Jan 17, 2022
1 parent 807226e commit a7023be
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## Microsoft.Data.SqlClient 4.0.1 released 17 January 2022

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

### Added

- Added AppContext switch `SuppressInsecureTLSWarning` to allow suppression of TLS security warning when using `Encrypt=false` in the connection string.[#1467](https://github.com/dotnet/SqlClient/pull/1467)

### Bug Fixes

- Fixed Kerberos authentication failure when using .NET 6. [#1468](https://github.com/dotnet/SqlClient/pull/1468)
- Fixed connection failure when using `SqlLocalDB` instance pipe name. [#1475](https://github.com/dotnet/SqlClient/pull/1475)
- Fixed a failure when executing concurrent queries requiring enclaves. [#1466](https://github.com/dotnet/SqlClient/pull/1466)
- Updated obsolete API calls targeting .NET 6. [#1471](https://github.com/dotnet/SqlClient/pull/1471)

## [Stable Release 4.0.0] - 2021-11-18

### Added
Expand Down
83 changes: 83 additions & 0 deletions release-notes/4.0/4.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# Release Notes

## Microsoft.Data.SqlClient 4.0.1 released 17 January 2022

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

### Added

- Added AppContext switch `SuppressInsecureTLSWarning` to allow suppression of TLS security warning when using `Encrypt=false` in the connection string. [#1467](https://github.com/dotnet/SqlClient/pull/1467) [Read more](#suppress-tls-security-warnings)

### Bug Fixes

- Fixed Kerberos authentication failure when using .NET 6. [#1468](https://github.com/dotnet/SqlClient/pull/1468)
- Fixed connection failure when using `SqlLocalDB` instance pipe name. [#1475](https://github.com/dotnet/SqlClient/pull/1475)
- Fixed a failure when executing concurrent queries requiring enclaves. [#1466](https://github.com/dotnet/SqlClient/pull/1466)
- Updated obsolete API calls targeting .NET 6. [#1471](https://github.com/dotnet/SqlClient/pull/1471)

### Suppress TLS security warnings

When connecting to a SQL Server, if a protocol lower than TLS 1.2 is negotiated, a security warning is printed out to the console. This warning can be suppressed by enabling the following `AppContext` switch on the application startup while `Encrypt` is set to `false` on connection string.

`Switch.Microsoft.Data.SqlClient.SuppressInsecureTLSWarning`

## Target Platform Support

- .NET Framework 4.6.1+ (Windows x86, Windows x64)
- .NET Core 3.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)

### Dependencies

#### .NET Framework

- Microsoft.Data.SqlClient.SNI 4.0.0
- Azure.Identity 1.3.0
- Microsoft.Identity.Client 4.22.0
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
- System.Buffers 4.5.1
- System.Configuration.ConfigurationManager 5.0.0
- System.IO 4.3.0
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
- System.Security.Cryptography.Algorithms 4.3.1
- System.Security.Cryptography.Primitives 4.3.0
- System.Text.Encodings.Web 4.7.2

#### .NET Core

- Microsoft.Data.SqlClient.SNI.runtime 4.0.0
- Azure.Identity 1.3.0
- Microsoft.Identity.Client 4.22.0
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
- Microsoft.Win32.Registry 5.0.0
- System.Buffers 4.5.1
- System.Configuration.ConfigurationManager 5.0.0
- System.Diagnostics.DiagnosticSource 5.0.0
- System.IO 4.3.0
- System.Runtime.Caching 5.0.0
- System.Text.Encoding.CodePages 5.0.0
- System.Text.Encodings.Web 4.7.2
- System.Resources.ResourceManager 4.3.0
- System.Security.Cryptography.Cng 5.0.0
- System.Security.Principal.Windows 5.0.0

#### .NET Standard

- Microsoft.Data.SqlClient.SNI.runtime 4.0.0
- Azure.Identity 1.3.0
- Microsoft.Identity.Client 4.22.0
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
- Microsoft.Win32.Registry 5.0.0
- System.Buffers 4.5.1
- System.Configuration.ConfigurationManager 5.0.0
- System.IO 4.3.0
- System.Runtime.Caching 5.0.0
- System.Text.Encoding.CodePages 5.0.0
- System.Text.Encodings.Web 4.7.2
- System.Resources.ResourceManager 4.3.0
- System.Runtime.Loader 4.3.0
- System.Security.Cryptography.Cng 5.0.0
- System.Security.Principal.Windows 5.0.0
1 change: 1 addition & 0 deletions release-notes/4.0/4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ The following Microsoft.Data.SqlClient 4.0 stable releases have been shipped:

| Release Date | Version | Notes |
| :-- | :-- | :--: |
| 2022/01/17 | 4.0.1 | [release notes](4.0.1.md) |
| 2021/11/18 | 4.0.0 | [release notes](4.0.0.md) |

The following Microsoft.Data.SqlClient 4.0 preview releases have been shipped:
Expand Down
1 change: 1 addition & 0 deletions release-notes/4.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ The following Microsoft.Data.SqlClient 4.0 stable releases have been shipped:

| Release Date | Version | Notes |
| :-- | :-- | :--: |
| 2022/01/17 | 4.0.1 | [release notes](4.0.1.md) |
| 2021/11/18 | 4.0.0 | [release notes](4.0.0.md) |

The following Microsoft.Data.SqlClient 4.0 preview releases have been shipped:
Expand Down

0 comments on commit a7023be

Please sign in to comment.