Skip to content

Commit 327d3cc

Browse files
Release Notes M.D.S v3.1.2 (#1916)
Release Notes M.D.S v3.1.2 #1916
1 parent 32e5364 commit 327d3cc

File tree

4 files changed

+96
-0
lines changed

4 files changed

+96
-0
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,19 @@ This update brings the below changes over the previous release:
350350
- Optimized async method allocations in .NET Framework by porting changes from .NET Core. [#1084](https://github.com/dotnet/SqlClient/pull/1084)
351351
- Various code improvements [#902](https://github.com/dotnet/SqlClient/pull/902) [#925](https://github.com/dotnet/SqlClient/pull/925) [#933](https://github.com/dotnet/SqlClient/pull/933) [#934](https://github.com/dotnet/SqlClient/pull/934) [#1024](https://github.com/dotnet/SqlClient/pull/1024) [#1057](https://github.com/dotnet/SqlClient/pull/1057) [#1122](https://github.com/dotnet/SqlClient/pull/1122) [#1133](https://github.com/dotnet/SqlClient/pull/1133) [#1134](https://github.com/dotnet/SqlClient/pull/1134) [#1141](https://github.com/dotnet/SqlClient/pull/1141) [#1187](https://github.com/dotnet/SqlClient/pull/1187) [#1188](https://github.com/dotnet/SqlClient/pull/1188) [#1223](https://github.com/dotnet/SqlClient/pull/1223) [#1225](https://github.com/dotnet/SqlClient/pull/1225) [#1226](https://github.com/dotnet/SqlClient/pull/1226)
352352

353+
## [Stable release 3.1.2] - 2023-02-03
354+
355+
### Added
356+
357+
- Added Windows ARM64 support when targeting .NET Framework. [#1908](https://github.com/dotnet/SqlClient/pull/1908)
358+
359+
### Fixed
360+
361+
- Fixed thread safety of transient error list in configurable retry logic. [#1911](https://github.com/dotnet/SqlClient/pull/1911)
362+
- Fixed deadlock when using SinglePhaseCommit with distributed transactions. [#1912](https://github.com/dotnet/SqlClient/pull/1912)
363+
- Fixed Default UTF8 collation conflict. [#1910](https://github.com/dotnet/SqlClient/pull/1910)
364+
- Added CommandText length validation when using stored procedure command types. [#1909](https://github.com/dotnet/SqlClient/pull/1909)
365+
353366
## [Stable release 3.1.1] - 2022-08-12
354367

355368
### Fixed

release-notes/3.1/3.1.2.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 3.1.2 released 03 February 2023
4+
5+
This update brings the below changes over the previous release:
6+
7+
### Added
8+
9+
- Added Windows ARM64 support when targeting .NET Framework. [#1908](https://github.com/dotnet/SqlClient/pull/1908)
10+
11+
### Fixed
12+
13+
- Fixed thread safety of transient error list in configurable retry logic. [#1911](https://github.com/dotnet/SqlClient/pull/1911)
14+
- Fixed deadlock when using SinglePhaseCommit with distributed transactions. [#1912](https://github.com/dotnet/SqlClient/pull/1912)
15+
- Fixed Default UTF8 collation conflict. [#1910](https://github.com/dotnet/SqlClient/pull/1910)
16+
- Added CommandText length validation when using stored procedure command types. [#1909](https://github.com/dotnet/SqlClient/pull/1909)
17+
18+
## Target Platform Support
19+
20+
- .NET Framework 4.6+ (Windows x86, Windows x64)
21+
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
22+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
23+
24+
### Dependencies
25+
26+
#### .NET Framework 4.61
27+
28+
- Microsoft.Data.SqlClient.SNI 3.0.1
29+
- Azure.Identity 1.3.0
30+
- Microsoft.Identity.Client 4.14.0
31+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
32+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
33+
- System.Configuration.ConfigurationManager 4.7.0
34+
- System.Text.Encodings.Web 4.7.2
35+
36+
#### .NET Core 2.1
37+
38+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.1
39+
- Microsoft.Win32.Registry 4.7.0
40+
- System.Security.Principal.Windows 4.7.0
41+
- System.Text.Encoding.CodePages 4.7.0
42+
- System.Text.Encodings.Web 4.7.2
43+
- System.Diagnostics.DiagnosticSource 4.7.0
44+
- System.Configuration.ConfigurationManager 4.7.0
45+
- System.Runtime.Caching 4.7.0
46+
- Azure.Identity 1.3.0
47+
- Microsoft.Identity.Client 4.14.0
48+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
49+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
50+
51+
#### .NET Core 3.1
52+
53+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.1
54+
- Microsoft.Win32.Registry 4.7.0
55+
- System.Security.Principal.Windows 4.7.0
56+
- System.Text.Encoding.CodePages 4.7.0
57+
- System.Text.Encodings.Web 4.7.2
58+
- System.Diagnostics.DiagnosticSource 4.7.0
59+
- System.Configuration.ConfigurationManager 4.7.0
60+
- System.Runtime.Caching 4.7.0
61+
- Azure.Identity 1.3.0
62+
- Microsoft.Identity.Client 4.14.0
63+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
64+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
65+
66+
#### .NET Standard
67+
68+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.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.Text.Encodings.Web 4.7.2
75+
- System.Runtime.Caching 4.7.0
76+
- Azure.Identity 1.3.0
77+
- Microsoft.Identity.Client 4.14.0
78+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
79+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
80+
- System.Configuration.ConfigurationManager 4.7.0
81+
- System.Runtime.Loader 4.3.0

release-notes/3.1/3.1.md

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2023/02/03 | 3.1.2 | [release notes](3.1.2.md) |
78
| 2022/08/12 | 3.1.1 | [release notes](3.1.1.md) |
89
| 2022/03/30 | 3.1.0 | [release notes](3.1.0.md) |

release-notes/3.1/README.md

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2023/02/03 | 3.1.2 | [release notes](3.1.2.md) |
78
| 2022/08/12 | 3.1.1 | [release notes](3.1.1.md) |
89
| 2022/03/30 | 3.1.0 | [release notes](3.1.0.md) |

0 commit comments

Comments
 (0)