Skip to content

Commit

Permalink
[4.1.0] | Release notes 4.1.0 (#1493)
Browse files Browse the repository at this point in the history
* Release notes 4.1.0 servicing

Release notes 4.1.0 servicing

* review comments

review comments

* Update release-notes/4.1/4.1.0.md

Co-authored-by: Johnny Pham <[email protected]>

* adding CHANGELOG

adding CHANGELOG

* Apply suggestions from code review

review comments

* Apply suggestions from code review

Co-authored-by: DavoudEshtehari <[email protected]>

* Update release-notes/4.1/4.1.md

Co-authored-by: DavoudEshtehari <[email protected]>

* Update release-notes/4.1/README.md

Co-authored-by: DavoudEshtehari <[email protected]>

Co-authored-by: Johnny Pham <[email protected]>
Co-authored-by: DavoudEshtehari <[email protected]>
  • Loading branch information
3 people authored Feb 1, 2022
1 parent c23f971 commit 100eaaa
Show file tree
Hide file tree
Showing 5 changed files with 104 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Stable release 4.1.0] - 2022-01-31

### Added

- Added new Attestation Protocol `None` for `VBS` enclave types. This protocol will allow users to forgo enclave attestation for VBS enclaves. [#1489](https://github.com/dotnet/SqlClient/pull/1489)

## Microsoft.Data.SqlClient 4.0.1 released 17 January 2022

This update brings the below changes over the previous preview release:
Expand Down
82 changes: 82 additions & 0 deletions release-notes/4.1/4.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# Release Notes

## Microsoft.Data.SqlClient 4.1.0 released 31 January 2022

This update brings the below changes over the previous preview release:

### Added

- Added new Attestation Protocol `None` for `VBS` enclave types. This protocol will allow users to forgo enclave attestation for VBS enclaves. [#1489](https://github.com/dotnet/SqlClient/pull/1489) [Read more](#introduce-attestation-protocol-none)

### Introduce Attestation Protocol None

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.

Connection string example:

```cs
//Attestation protocol NONE with no URL
"Data Source = {server}; Initial Catalog = {db}; Column Encryption Setting = Enabled; Attestation Protocol = None;"

```

## Target Platform Support

- .NET Framework 4.6.1+ (Windows x86, Windows x64)
- .NET Core 3.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)

### Dependencies

#### .NET Framework

- Microsoft.Data.SqlClient.SNI 4.0.0
- Azure.Identity 1.3.0
- Microsoft.Identity.Client 4.22.0
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
- System.Buffers 4.5.1
- System.Configuration.ConfigurationManager 5.0.0
- System.IO 4.3.0
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
- System.Security.Cryptography.Algorithms 4.3.1
- System.Security.Cryptography.Primitives 4.3.0
- System.Text.Encodings.Web 4.7.2

#### .NET Core

- Microsoft.Data.SqlClient.SNI.runtime 4.0.0
- Azure.Identity 1.3.0
- Microsoft.Identity.Client 4.22.0
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
- Microsoft.Win32.Registry 5.0.0
- System.Buffers 4.5.1
- System.Configuration.ConfigurationManager 5.0.0
- System.Diagnostics.DiagnosticSource 5.0.0
- System.IO 4.3.0
- System.Runtime.Caching 5.0.0
- System.Text.Encoding.CodePages 5.0.0
- System.Text.Encodings.Web 4.7.2
- System.Resources.ResourceManager 4.3.0
- System.Security.Cryptography.Cng 5.0.0
- System.Security.Principal.Windows 5.0.0

#### .NET Standard

- Microsoft.Data.SqlClient.SNI.runtime 4.0.0
- Azure.Identity 1.3.0
- Microsoft.Identity.Client 4.22.0
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
- Microsoft.Win32.Registry 5.0.0
- System.Buffers 4.5.1
- System.Configuration.ConfigurationManager 5.0.0
- System.IO 4.3.0
- System.Runtime.Caching 5.0.0
- System.Text.Encoding.CodePages 5.0.0
- System.Text.Encodings.Web 4.7.2
- System.Resources.ResourceManager 4.3.0
- System.Runtime.Loader 4.3.0
- System.Security.Cryptography.Cng 5.0.0
- System.Security.Principal.Windows 5.0.0
7 changes: 7 additions & 0 deletions release-notes/4.1/4.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Microsoft.Data.SqlClient 4.1 Releases

The following Microsoft.Data.SqlClient 4.1 stable releases have been shipped:

| Release Date | Version | Notes |
| :-- | :-- | :--: |
| 2022/01/31| 4.1.0 | [release notes](4.1.0.md) |
7 changes: 7 additions & 0 deletions release-notes/4.1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Microsoft.Data.SqlClient 4.1 Releases

The following Microsoft.Data.SqlClient 4.1 stable releases have been shipped:

| Release Date | Version | Notes |
| :-- | :-- | :--: |
| 2022/01/31 | 4.1.0 | [release notes](4.1.0.md) |
3 changes: 2 additions & 1 deletion release-notes/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Microsoft.Data.SqlClient Release Notes

The latest stable release is [Microsoft.Data.SqlClient 4.0](4.0).
The latest stable release is [Microsoft.Data.SqlClient 4.1](4.1).

## Release Information

- [Microsoft.Data.SqlClient 4.1](4.1)
- [Microsoft.Data.SqlClient 4.0](4.0)
- [Microsoft.Data.SqlClient 3.0](3.0)
- [Microsoft.Data.SqlClient 2.1](2.1)
Expand Down

0 comments on commit 100eaaa

Please sign in to comment.