Skip to content

Commit 6fdc1f3

Browse files
JavadKaur-Parminder
Javad
andauthored
3.1.1 release notes for main branch (#1716)
Co-authored-by: Parminder Kaur <[email protected]>
1 parent 914caf5 commit 6fdc1f3

File tree

4 files changed

+88
-0
lines changed

4 files changed

+88
-0
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,15 @@ This update brings the below changes over the previous release:
232232
- Optimized async method allocations in .NET Framework by porting changes from .NET Core. [#1084](https://github.com/dotnet/SqlClient/pull/1084)
233233
- 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)
234234

235+
## [Stable release 3.1.1] - 2022-08-12
236+
237+
### Fixed
238+
239+
- Fixed null SqlBinary as rowversion. [#1700](https://github.com/dotnet/SqlClient/pull/1700)
240+
- Fixed Kerberos authentication failure when using .NET 6. [#1696](https://github.com/dotnet/SqlClient/pull/1696)
241+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1695](https://github.com/dotnet/SqlClient/pull/1695)
242+
- Removed union overlay design and use reflection in `SqlTypeWorkarounds`. [#1699](https://github.com/dotnet/SqlClient/pull/1699)
243+
235244
## [Stable release 3.1.0] - 2022-03-30
236245

237246
### Added

release-notes/3.1/3.1.1.md

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 3.1.1 released 12 August 2022
4+
5+
This update brings the below changes over the previous release:
6+
7+
### Fixed
8+
9+
- Fixed null SqlBinary as rowversion. [#1700](https://github.com/dotnet/SqlClient/pull/1700)
10+
- Fixed Kerberos authentication failure when using .NET 6. [#1696](https://github.com/dotnet/SqlClient/pull/1696)
11+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1695](https://github.com/dotnet/SqlClient/pull/1695)
12+
- Removed union overlay design and use reflection in `SqlTypeWorkarounds`. [#1699](https://github.com/dotnet/SqlClient/pull/1699)
13+
14+
## Target Platform Support
15+
16+
- .NET Framework 4.6+ (Windows x86, Windows x64)
17+
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
18+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
19+
20+
### Dependencies
21+
22+
#### .NET Framework 4.61
23+
24+
- Microsoft.Data.SqlClient.SNI 3.0.0
25+
- Azure.Identity 1.3.0
26+
- Microsoft.Identity.Client 4.14.0
27+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
28+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
29+
- System.Configuration.ConfigurationManager 4.7.0
30+
- System.Text.Encodings.Web 4.7.2
31+
32+
#### .NET Core 2.1
33+
34+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.0
35+
- Microsoft.Win32.Registry 4.7.0
36+
- System.Security.Principal.Windows 4.7.0
37+
- System.Text.Encoding.CodePages 4.7.0
38+
- System.Text.Encodings.Web 4.7.2
39+
- System.Diagnostics.DiagnosticSource 4.7.0
40+
- System.Configuration.ConfigurationManager 4.7.0
41+
- System.Runtime.Caching 4.7.0
42+
- Azure.Identity 1.3.0
43+
- Microsoft.Identity.Client 4.14.0
44+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
45+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
46+
47+
#### .NET Core 3.1
48+
49+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.0
50+
- Microsoft.Win32.Registry 4.7.0
51+
- System.Security.Principal.Windows 4.7.0
52+
- System.Text.Encoding.CodePages 4.7.0
53+
- System.Text.Encodings.Web 4.7.2
54+
- System.Diagnostics.DiagnosticSource 4.7.0
55+
- System.Configuration.ConfigurationManager 4.7.0
56+
- System.Runtime.Caching 4.7.0
57+
- Azure.Identity 1.3.0
58+
- Microsoft.Identity.Client 4.14.0
59+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
60+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
61+
62+
#### .NET Standard
63+
64+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.0
65+
- Microsoft.Win32.Registry 4.7.0
66+
- System.Buffers 4.5.1
67+
- System.Memory 4.5.4
68+
- System.Security.Principal.Windows 4.7.0
69+
- System.Text.Encoding.CodePages 4.7.0
70+
- System.Text.Encodings.Web 4.7.2
71+
- System.Runtime.Caching 4.7.0
72+
- Azure.Identity 1.3.0
73+
- Microsoft.Identity.Client 4.14.0
74+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
75+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
76+
- System.Configuration.ConfigurationManager 4.7.0
77+
- System.Runtime.Loader 4.3.0

release-notes/3.1/3.1.md

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

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

release-notes/3.1/README.md

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

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

0 commit comments

Comments
 (0)