Skip to content

Commit f59df96

Browse files
[Release 2.1] Release notes for v2.1.3 (#1082)
1 parent 2e04aa8 commit f59df96

File tree

4 files changed

+86
-1
lines changed

4 files changed

+86
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
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 2.1.3] - 2021-05-21
8+
9+
### Fixed
10+
11+
- Fixed wrong data blended with transactions in .NET Core by marking a connection as doomed if the transaction completes or aborts while there is an open result set [#1051](https://github.com/dotnet/SqlClient/pull/1051)
12+
- Fixed race condition issues between SinglePhaseCommit and TransactionEnded events [#1049](https://github.com/dotnet/SqlClient/pull/1049)
13+
714
## [Stable Release 2.1.2] - 2021-03-03
815

916
### Fixed
@@ -17,7 +24,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1724
- Fixed MARS header contains errors issue against .NET Framework 4.8.1 [#928](https://github.com/dotnet/SqlClient/pull/928)
1825

1926

20-
2127
## [Stable Release 2.1.1] - 2020-12-18
2228

2329
### Fixed

release-notes/2.1/2.1.3.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 2.1.3 released 21 May 2021
4+
5+
This update brings the below changes over the previous stable release:
6+
7+
### Fixed
8+
9+
- Fixed wrong data blended with transactions in .NET Core by marking a connection as doomed if the transaction completes or aborts while there is an open result set [#1051](https://github.com/dotnet/SqlClient/pull/1051)
10+
- Fixed race condition issues between SinglePhaseCommit and TransactionEnded events [#1049](https://github.com/dotnet/SqlClient/pull/1049)
11+
12+
### Target Platform Support
13+
14+
- .NET Framework 4.6+ (Windows x86, Windows x64)
15+
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
16+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
17+
18+
### Dependencies
19+
20+
#### .NET Framework
21+
22+
- Microsoft.Data.SqlClient.SNI 2.1.1
23+
- Microsoft.Identity.Client 4.21.1
24+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
25+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
26+
27+
#### .NET Core 2.1
28+
29+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
30+
- Microsoft.Win32.Registry 4.7.0
31+
- System.Security.Principal.Windows 4.7.0
32+
- System.Text.Encoding.CodePages 4.7.0
33+
- System.Diagnostics.DiagnosticSource 4.7.0
34+
- System.Configuration.ConfigurationManager 4.7.0
35+
- System.Runtime.Caching 4.7.0
36+
- Microsoft.Identity.Client 4.21.1
37+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
38+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
39+
40+
#### .NET Core 3.1
41+
42+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
43+
- Microsoft.Win32.Registry 4.7.0
44+
- System.Security.Principal.Windows 4.7.0
45+
- System.Text.Encoding.CodePages 4.7.0
46+
- System.Diagnostics.DiagnosticSource 4.7.0
47+
- System.Configuration.ConfigurationManager 4.7.0
48+
- System.Runtime.Caching 4.7.0
49+
- Microsoft.Identity.Client 4.21.1
50+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
51+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
52+
53+
#### .NET Standard 2.0
54+
55+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
56+
- Microsoft.Win32.Registry 4.7.0
57+
- System.Buffers 4.5.1
58+
- System.Memory 4.5.4
59+
- System.Security.Principal.Windows 4.7.0
60+
- System.Text.Encoding.CodePages 4.7.0
61+
- System.Runtime.Caching 4.7.0
62+
- Microsoft.Identity.Client 4.21.1
63+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
64+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
65+
66+
#### .NET Standard 2.1
67+
68+
- Microsoft.Data.SqlClient.SNI.runtime 2.1.1
69+
- Microsoft.Win32.Registry 4.7.0
70+
- System.Buffers 4.5.1
71+
- System.Memory 4.5.4
72+
- System.Security.Principal.Windows 4.7.0
73+
- System.Text.Encoding.CodePages 4.7.0
74+
- System.Runtime.Caching 4.7.0
75+
- Microsoft.Identity.Client 4.21.1
76+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
77+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0

release-notes/2.1/2.1.md

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2021/05/21 | 2.1.3 | [release notes](2.1.3.md) |
78
| 2021/03/03 | 2.1.2 | [release notes](2.1.2.md) |
89
| 2020/12/18 | 2.1.1 | [release notes](2.1.1.md) |
910
| 2020/11/19 | 2.1.0 | [release notes](2.1.0.md) |

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2021/05/21 | 2.1.3 | [release notes](2.1.3.md) |
78
| 2021/03/03 | 2.1.2 | [release notes](2.1.2.md) |
89
| 2020/12/18 | 2.1.1 | [release notes](2.1.1.md) |
910
| 2020/11/19 | 2.1.0 | [release notes](2.1.0.md) |

0 commit comments

Comments
 (0)