Skip to content

Commit 9a44ffa

Browse files
Release notes v4.0.3 (#2007)
1 parent 4a91443 commit 9a44ffa

File tree

4 files changed

+80
-0
lines changed

4 files changed

+80
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,13 @@ This update brings the below changes over the previous release:
239239

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

242+
## [Stable release 4.0.3] - 2023-04-20
243+
244+
### Fixed
245+
246+
- Fixed throttling of token requests by calling AcquireTokenSilent in AAD Integrated/Password flows when the account is already cached.[#1995](https://github.com/dotnet/SqlClient/pull/1995)
247+
- Fixed TDS RPC error on large queries in `SqlCommand.ExecuteReaderAsync`.[#1987](https://github.com/dotnet/SqlClient/pull/1987)
248+
242249
## [Stable release 4.0.2] - 2022-09-13
243250

244251
### Fixed

release-notes/4.0/4.0.3.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Release Notes
2+
3+
## Microsoft.Data.SqlClient 4.0.3 released 20 April 2023
4+
5+
This update brings the below changes over the previous preview release:
6+
7+
### Fixed
8+
9+
- Fixed throttling of token requests by calling AcquireTokenSilent in AAD Integrated/Password flows when the account is already cached.[#1995](https://github.com/dotnet/SqlClient/pull/1995)
10+
- Fixed TDS RPC error on large queries in `SqlCommand.ExecuteReaderAsync`.[#1987](https://github.com/dotnet/SqlClient/pull/1987)
11+
12+
## Target Platform Support
13+
14+
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
15+
- .NET Core 3.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
16+
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
17+
18+
### Dependencies
19+
20+
#### .NET Framework
21+
22+
- Microsoft.Data.SqlClient.SNI 4.0.1
23+
- Azure.Identity 1.3.0
24+
- Microsoft.Identity.Client 4.22.0
25+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
26+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
27+
- System.Buffers 4.5.1
28+
- System.Configuration.ConfigurationManager 5.0.0
29+
- System.IO 4.3.0
30+
- System.Runtime.InteropServices.RuntimeInformation 4.3.0
31+
- System.Security.Cryptography.Algorithms 4.3.1
32+
- System.Security.Cryptography.Primitives 4.3.0
33+
- System.Text.Encodings.Web 4.7.2
34+
35+
#### .NET Core
36+
37+
- Microsoft.Data.SqlClient.SNI.runtime 4.0.1
38+
- Azure.Identity 1.3.0
39+
- Microsoft.Identity.Client 4.22.0
40+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
41+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
42+
- Microsoft.Win32.Registry 5.0.0
43+
- System.Buffers 4.5.1
44+
- System.Configuration.ConfigurationManager 5.0.0
45+
- System.Diagnostics.DiagnosticSource 5.0.0
46+
- System.IO 4.3.0
47+
- System.Runtime.Caching 5.0.0
48+
- System.Text.Encoding.CodePages 5.0.0
49+
- System.Text.Encodings.Web 4.7.2
50+
- System.Resources.ResourceManager 4.3.0
51+
- System.Security.Cryptography.Cng 5.0.0
52+
- System.Security.Principal.Windows 5.0.0
53+
54+
#### .NET Standard
55+
56+
- Microsoft.Data.SqlClient.SNI.runtime 4.0.1
57+
- Azure.Identity 1.3.0
58+
- Microsoft.Identity.Client 4.22.0
59+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0
60+
- Microsoft.IdentityModel.JsonWebTokens 6.8.0
61+
- Microsoft.Win32.Registry 5.0.0
62+
- System.Buffers 4.5.1
63+
- System.Configuration.ConfigurationManager 5.0.0
64+
- System.IO 4.3.0
65+
- System.Runtime.Caching 5.0.0
66+
- System.Text.Encoding.CodePages 5.0.0
67+
- System.Text.Encodings.Web 4.7.2
68+
- System.Resources.ResourceManager 4.3.0
69+
- System.Runtime.Loader 4.3.0
70+
- System.Security.Cryptography.Cng 5.0.0
71+
- System.Security.Principal.Windows 5.0.0

release-notes/4.0/4.0.md

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2023/04/20 | 4.0.3 | [release notes](4.0.3.md) |
78
| 2022/09/13 | 4.0.2 | [release notes](4.0.2.md) |
89
| 2022/01/17 | 4.0.1 | [release notes](4.0.1.md) |
910
| 2021/11/18 | 4.0.0 | [release notes](4.0.0.md) |

release-notes/4.0/README.md

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

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2023/04/20 | 4.0.3 | [release notes](4.0.3.md) |
78
| 2022/09/13 | 4.0.2 | [release notes](4.0.2.md) |
89
| 2022/01/17 | 4.0.1 | [release notes](4.0.1.md) |
910
| 2021/11/18 | 4.0.0 | [release notes](4.0.0.md) |

0 commit comments

Comments
 (0)