Skip to content

Commit 77ad58b

Browse files
authored
3.1 release notes (#1566)
1 parent f2c9ca2 commit 77ad58b

File tree

5 files changed

+102
-0
lines changed

5 files changed

+102
-0
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,17 @@ This update brings the below changes over the previous release:
145145
- Optimized async method allocations in .NET Framework by porting changes from .NET Core. [#1084](https://github.com/dotnet/SqlClient/pull/1084)
146146
- 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)
147147

148+
## [Stable release 3.1.0] - 2022-03-30
149+
150+
### Added
151+
152+
- 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)
153+
- Included `42108` and `42109` error codes to retriable transient errors list. [#1560](https://github.com/dotnet/SqlClient/pull/1560)
154+
155+
### Fixed
156+
157+
- Changed EnclaveDelegate.Crypto GetEnclaveProvider to use a thread safe concurrent dictionary. [#1564](https://github.com/dotnet/SqlClient/pull/1564
158+
148159
## [Stable Release 3.0.1] - 2021-09-24
149160

150161
### 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.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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/03/30 | 3.1.0 | [release notes](3.1.0.md) |

release-notes/3.1/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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/03/30 | 3.1.0 | [release notes](3.1.0.md) |

release-notes/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
The latest stable release is [Microsoft.Data.SqlClient 4.1](4.1).
44

55
## Release Information
6+
67
- [Microsoft.Data.SqlClient 5.0](5.0)
78
- [Microsoft.Data.SqlClient 4.1](4.1)
89
- [Microsoft.Data.SqlClient 4.0](4.0)
910
- [Microsoft.Data.SqlClient 3.0](3.0)
11+
- [Microsoft.Data.SqlClient 3.1](3.1)
1012
- [Microsoft.Data.SqlClient 2.1](2.1)
1113
- [Microsoft.Data.SqlClient 2.0](2.0)
1214
- [Microsoft.Data.SqlClient 1.1](1.1)

0 commit comments

Comments
 (0)