Skip to content

Commit ec4c42d

Browse files
Release notes for Microsoft.Data.SqlClient v1.1.3 (dotnet#565)
1 parent 9d4b3db commit ec4c42d

File tree

4 files changed

+75
-0
lines changed

4 files changed

+75
-0
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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 1.1.3] - 2020-05-15
8+
9+
### Fixed
10+
- Fixed driver behavior to not perform enlistment of pooled connection on aborted transaction [#551](https://github.com/dotnet/SqlClient/pull/551)
11+
- 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)
12+
13+
714
## [Preview Release 2.0.0-preview3.20122.2] - 2020-05-01
815

916
### Added

release-notes/1.1/1.1.3.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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>`

release-notes/1.1/1.1.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The following Microsoft.Data.SqlClient 1.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2020/05/15 | 1.1.3 | [release notes](1.1.3.md) |
78
| 2020/04/15 | 1.1.2 | [release notes](1.1.2.md) |
89
| 2020/02/14 | 1.1.1 | [release notes](1.1.1.md) |
910
| 2019/11/20 | 1.1.0 | [release notes](1.1.0.md) |

release-notes/1.1/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The following Microsoft.Data.SqlClient 1.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2020/05/15 | 1.1.3 | [release notes](1.1.3.md) |
78
| 2020/04/15 | 1.1.2 | [release notes](1.1.2.md) |
89
| 2020/02/14 | 1.1.1 | [release notes](1.1.1.md) |
910
| 2019/11/20 | 1.1.0 | [release notes](1.1.0.md) |

0 commit comments

Comments
 (0)