Skip to content

Commit 7a12115

Browse files
authored
[3.1] | Update the release note for 3.1 servicing branch (#1728)
1 parent e3e2dbe commit 7a12115

File tree

6 files changed

+190
-1
lines changed

6 files changed

+190
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ 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 3.1.1] - 2022-08-12
8+
9+
### Fixed
10+
11+
- Fixed null SqlBinary as rowversion. [#1700](https://github.com/dotnet/SqlClient/pull/1700)
12+
- Fixed Kerberos authentication failure when using .NET 6. [#1696](https://github.com/dotnet/SqlClient/pull/1696)
13+
- Fixed NullReferenceException during Azure Active Directory authentication. [#1695](https://github.com/dotnet/SqlClient/pull/1695)
14+
- Removed union overlay design and use reflection in `SqlTypeWorkarounds`. [#1699](https://github.com/dotnet/SqlClient/pull/1699)
15+
16+
## [Stable release 3.1.0] - 2022-03-30
17+
18+
### Added
19+
20+
- Added new Attestation Protocol `None` for `VBS` enclave types. This protocol will allow users to forgo enclave attestation for VBS enclaves. [#1539](https://github.com/dotnet/SqlClient/pull/1539)
21+
- Included `42108` and `42109` error codes to retriable transient errors list. [#1560](https://github.com/dotnet/SqlClient/pull/1560)
22+
23+
### Fixed
24+
25+
- Changed EnclaveDelegate.Crypto GetEnclaveProvider to use a thread safe concurrent dictionary. [#1564](https://github.com/dotnet/SqlClient/pull/1564
26+
727
## [Stable Release 3.0.1] - 2021-09-24
828

929
### Fixed

release-notes/3.1/3.1.0.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 3.1.0 released 30 March 2022
4+
5+
This update includes the following changes over the 3.0 release:
6+
7+
### Added
8+
9+
- Added new Attestation Protocol `None` for `VBS` enclave types. This protocol will allow users to forgo enclave attestation for VBS enclaves. [#1539](https://github.com/dotnet/SqlClient/pull/1539) [Read more](#introduce-attestation-protocol-none)
10+
- Included `42108` and `42109` error codes to retriable transient errors list. [#1560](https://github.com/dotnet/SqlClient/pull/1560)
11+
12+
### Fixed
13+
14+
- Changed EnclaveDelegate.Crypto GetEnclaveProvider to use a thread safe concurrent dictionary. [#1564](https://github.com/dotnet/SqlClient/pull/1564)
15+
16+
### Introduce Attestation Protocol None
17+
18+
A new attestation protocol called `None` will be allowed in the connection string. This protocol will allow users to forgo enclave attestation for `VBS` enclaves. When this protocol is set, the enclave attestation URL property is optional.
19+
20+
Connection string example:
21+
22+
```cs
23+
//Attestation protocol NONE with no URL
24+
"Data Source = {server}; Initial Catalog = {db}; Column Encryption Setting = Enabled; Attestation Protocol = None;"
25+
```
26+
27+
## Target Platform Support
28+
29+
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
30+
- .NET Core 3.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
31+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
32+
33+
### Dependencies
34+
35+
#### .NET Framework
36+
37+
- Microsoft.Data.SqlClient.SNI 3.0.0
38+
- Azure.Identity 1.3.0
39+
- Microsoft.Identity.Client 4.14.0
40+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
41+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
42+
- System.Configuration.ConfigurationManager 4.7.0
43+
- System.Text.Encodings.Web 4.7.2
44+
45+
#### .NET Core
46+
47+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.0
48+
- Microsoft.Win32.Registry 4.7.0
49+
- System.Security.Principal.Windows 4.7.0
50+
- System.Text.Encoding.CodePages 4.7.0
51+
- System.Text.Encodings.Web 4.7.2
52+
- System.Diagnostics.DiagnosticSource 4.7.0
53+
- System.Configuration.ConfigurationManager 4.7.0
54+
- System.Runtime.Caching 4.7.0
55+
- Azure.Identity 1.3.0
56+
- Microsoft.Identity.Client 4.14.0
57+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
58+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
59+
60+
#### .NET Standard
61+
62+
- Microsoft.Data.SqlClient.SNI.runtime 3.0.0
63+
- Microsoft.Win32.Registry 4.7.0
64+
- System.Buffers 4.5.1
65+
- System.Memory 4.5.4
66+
- System.Security.Principal.Windows 4.7.0
67+
- System.Text.Encoding.CodePages 4.7.0
68+
- System.Text.Encodings.Web 4.7.2
69+
- System.Runtime.Caching 4.7.0
70+
- Azure.Identity 1.3.0
71+
- Microsoft.Identity.Client 4.14.0
72+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 5.6.0
73+
- Microsoft.IdentityModel.JsonWebTokens 5.6.0
74+
- System.Configuration.ConfigurationManager 4.7.0
75+
- System.Runtime.Loader 4.3.0

release-notes/3.1/3.1.1.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 3.1.1 released 12 August 2022
4+
5+
This update brings the below changes over the previous preview 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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Microsoft.Data.SqlClient 3.1 Releases
2+
3+
The following Microsoft.Data.SqlClient 3.1 stable releases have been shipped:
4+
5+
| Release Date | Version | Notes |
6+
| :-- | :-- | :--: |
7+
| 2022/08/12 | 3.1.1 | [release notes](3.1.1.md) |
8+
| 2022/03/30 | 3.1.0 | [release notes](3.1.0.md) |

release-notes/3.1/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Microsoft.Data.SqlClient 3.1 Releases
2+
3+
The following Microsoft.Data.SqlClient 3.1 stable releases have been shipped:
4+
5+
| Release Date | Version | Notes |
6+
| :-- | :-- | :--: |
7+
| 2022/08/12 | 3.1.1 | [release notes](3.1.1.md) |
8+
| 2020/03/30 | 3.1.0 | [release notes](3.1.0.md) |
9+

release-notes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Microsoft.Data.SqlClient Release Notes
22

3-
The latest stable release is [Microsoft.Data.SqlClient 3.0](3.0).
3+
The latest stable release is [Microsoft.Data.SqlClient 3.1](3.1).
44

55
## Release Information
66

0 commit comments

Comments
 (0)