|
| 1 | +# Release Notes |
| 2 | + |
| 3 | +## General Availability of Microsoft.Data.SqlClient 1.1.3 released 15 May 2020 |
| 4 | + |
| 5 | +This update brings the below changes over the previous release: |
| 6 | + |
| 7 | +### Fixed |
| 8 | +- Fixed driver behavior to not perform enlistment of pooled connection on aborted transaction [#551](https://github.com/dotnet/SqlClient/pull/551) |
| 9 | +- Fixed issues introduced with MARS TDS Header fix in last release by reverting original change that caused issues. [#550](https://github.com/dotnet/SqlClient/pull/550) |
| 10 | + |
| 11 | + |
| 12 | +## New Features |
| 13 | + |
| 14 | +New features over the 1.0 release of Microsoft.Data.SqlClient. |
| 15 | + |
| 16 | +- [Always Encrypted with secure enclaves](#always-encrypted-with-secure-enclaves) - Always Encrypted is available starting in Microsoft SQL Server 2016. Secure enclaves are available starting in Microsoft SQL Server 2019. |
| 17 | + |
| 18 | +## Target Platform Support |
| 19 | + |
| 20 | +- .NET Framework 4.6+ |
| 21 | +- .NET Core 2.1+ (Windows x86, Windows x64, Linux, macOS) |
| 22 | +- .NET Standard 2.0+ (Windows x86, Windows x64, Linux, macOS) |
| 23 | + |
| 24 | +### Dependencies |
| 25 | + |
| 26 | +#### .NET Framework |
| 27 | + |
| 28 | +- System.Data.Common 4.3.0 |
| 29 | +- Microsoft.Data.SqlClient.SNI [1.1.0,1.2.0) |
| 30 | +- Microsoft.Identity.Client 3.0.8 |
| 31 | +- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.5.0 |
| 32 | +- Microsoft.IdentityModel.JsonWebTokens 5.5.0 |
| 33 | + |
| 34 | +#### .NET Core |
| 35 | + |
| 36 | +- Microsoft.Win32.Registry 4.5.0 |
| 37 | +- runtime.native.System.Data.SqlClient.sni 4.4.0 |
| 38 | +- System.Security.Principal.Windows 4.5.0 |
| 39 | +- System.Text.Encoding.CodePages 4.5.0 |
| 40 | +- System.Configuration.ConfigurationManager 4.5.0 |
| 41 | +- Microsoft.Identity.Client 3.0.8 |
| 42 | +- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.5.0 |
| 43 | +- Microsoft.IdentityModel.JsonWebTokens 5.5.0 |
| 44 | + |
| 45 | +#### .NET Standard |
| 46 | + |
| 47 | +- Microsoft.Win32.Registry 4.5.0 |
| 48 | +- runtime.native.System.Data.SqlClient.sni 4.4.0 |
| 49 | +- System.Buffers 4.4.0 |
| 50 | +- System.Diagnostics.DiagnosticSource 4.5.0 |
| 51 | +- System.Memory 4.5.1 |
| 52 | +- System.Security.Principal.Windows 4.5.0 |
| 53 | +- System.Text.Encoding.CodePages 4.5.0 |
| 54 | +- System.Configuration.ConfigurationManager 4.5.0 |
| 55 | +- Microsoft.Identity.Client 3.0.8 |
| 56 | + |
| 57 | +### Always Encrypted with secure enclaves |
| 58 | + |
| 59 | +In general, existing documentation which uses System.Data.SqlClient on .NET Framework should now work with .NET Core, too. |
| 60 | + |
| 61 | +- [Develop using Always Encrypted with .NET Framework Data Provider](https://docs.microsoft.com/sql/relational-databases/security/encryption/develop-using-always-encrypted-with-net-framework-data-provider) |
| 62 | +- [Always Encrypted: Protect sensitive data and store encryption keys in the Windows certificate store](https://docs.microsoft.com/azure/sql-database/sql-database-always-encrypted) |
| 63 | + |
| 64 | +In order to use the enclave feature, connection strings should include the required attestation protocol and attestation URL. Examples: |
| 65 | + |
| 66 | +- `Attestation Protocol=HGS;Enclave Attestation Url=<attestation_url_for_HGS>` |
0 commit comments