Skip to content

Commit 58985ca

Browse files
[Release 6.1.2] Release notes (#3666)
* [Release 6.1.2] Release notes * Update CHANGELOG.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update readme --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent beebb71 commit 58985ca

File tree

3 files changed

+92
-1
lines changed

3 files changed

+92
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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 6.1.2] - 2025-10-07
8+
9+
This update brings the below changes over the previous stable release:
10+
11+
### Fixed
12+
13+
- Fixed an issue where initializing PerformanceCounters would throw `System.InvalidOperationException` [#3629](https://github.com/dotnet/sqlclient/pull/3629)
14+
- Fixed an issue where a Custom SqlClientAuthenticationProvider was being overwritten by default implementation. [#3651](https://github.com/dotnet/SqlClient/pull/3651)
15+
- Fixed a concurrency issue in connection pooling where the number of active connections could be lower than the configured maximum pool size. [#3653](https://github.com/dotnet/SqlClient/pull/3653)
16+
717
## [Stable release 6.0.3] - 2025-10-07
818

919
This update brings the below changes over the previous stable release:

release-notes/6.1/6.1.2.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Release Notes
2+
3+
## Stable Release 6.1.2 - 2025-10-07
4+
5+
This update includes the following changes since the [6.1.1](6.1.1.md) release:
6+
7+
### Fixed
8+
9+
- Fixed an issue where initializing PerformanceCounters would throw `System.InvalidOperationException` [#3629](https://github.com/dotnet/sqlclient/pull/3629)
10+
- Fixed an issue where a Custom SqlClientAuthenticationProvider was being overwritten by default implementation. [#3651](https://github.com/dotnet/SqlClient/pull/3651)
11+
- Fixed a concurrency issue in connection pooling where the number of active connections could be lower than the configured maximum pool size. [#3653](https://github.com/dotnet/SqlClient/pull/3653)
12+
13+
## Target Platform Support
14+
15+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
16+
- .NET 8.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
17+
18+
### Dependencies
19+
20+
#### .NET Framework 4.6.2+
21+
22+
- Azure.Core 1.47.1
23+
- Azure.Identity 1.14.2
24+
- Microsoft.Bcl.Cryptography 8.0.0
25+
- Microsoft.Data.SqlClient.SNI 6.0.2
26+
- Microsoft.Extensions.Caching.Memory 8.0.1
27+
- Microsoft.IdentityModel.JsonWebTokens 7.7.1
28+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 7.7.1
29+
- System.Buffers 4.5.1
30+
- System.Data.Common 4.3.0
31+
- System.Security.Cryptography.Pkcs 8.0.1
32+
- System.Text.Encodings.Web 8.0.0
33+
- System.Text.Json 8.0.5
34+
35+
#### .NET 8.0
36+
37+
- Azure.Core 1.47.1
38+
- Azure.Identity 1.14.2
39+
- Microsoft.Bcl.Cryptography 8.0.0
40+
- Microsoft.Data.SqlClient.SNI.runtime 6.0.2
41+
- Microsoft.Extensions.Caching.Memory 8.0.1
42+
- Microsoft.IdentityModel.JsonWebTokens 7.7.1
43+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 7.7.1
44+
- Microsoft.SqlServer.Server 1.0.0
45+
- System.Configuration.ConfigurationManager 8.0.1
46+
- System.Security.Cryptography.Pkcs 8.0.1
47+
- System.Text.Json 8.0.5
48+
49+
#### .NET 9.0
50+
51+
- Azure.Core 1.47.1
52+
- Azure.Identity 1.14.2
53+
- Microsoft.Bcl.Cryptography 9.0.4
54+
- Microsoft.Data.SqlClient.SNI.runtime 6.0.2
55+
- Microsoft.Extensions.Caching.Memory 9.0.4
56+
- Microsoft.IdentityModel.JsonWebTokens 7.7.1
57+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 7.7.1
58+
- Microsoft.SqlServer.Server 1.0.0
59+
- System.Configuration.ConfigurationManager 9.0.4
60+
- System.Security.Cryptography.Pkcs 9.0.4
61+
- System.Text.Json 9.0.5
62+
63+
#### .NET Standard 2.0
64+
65+
- Azure.Core 1.47.1
66+
- Azure.Identity 1.14.2
67+
- Microsoft.Bcl.Cryptography 9.0.4
68+
- Microsoft.Data.SqlClient.SNI.runtime 6.0.2
69+
- Microsoft.Extensions.Caching.Memory 9.0.4
70+
- Microsoft.IdentityModel.JsonWebTokens 7.7.1
71+
- Microsoft.IdentityModel.Protocols.OpenIdConnect 7.7.1
72+
- Microsoft.SqlServer.Server 1.0.0
73+
- System.Configuration.ConfigurationManager 9.0.4
74+
- System.Security.Cryptography.Pkcs 9.0.4
75+
- System.Text.Json 9.0.5

release-notes/6.1/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Microsoft.Data.SqlClient 6.1 Releases
22

3-
The following Microsoft.Data.SqlClient 6.1 preview releases have been shipped:
3+
The following Microsoft.Data.SqlClient 6.1 stable releases have been shipped:
44

55
| Release Date | Version | Notes |
66
| :-- | :-- | :--: |
7+
| 2025-10-07 | 6.1.2 | [Release Notes](6.1.2.md) |
78
| 2025-08-14 | 6.1.1 | [Release Notes](6.1.1.md) |
89
| 2025-07-25 | 6.1.0 | [Release Notes](6.1.0.md) |
10+
11+
The following Microsoft.Data.SqlClient 6.1 preview releases have been shipped:
12+
13+
| Release Date | Version | Notes |
14+
| :-- | :-- | :--: |
915
| 2025-06-27 | 6.1.0-preview2.25178.5 | [Release Notes](6.1.0-preview2.md) |
1016
| 2025-04-30 | 6.1.0-preview1.25120.4 | [Release Notes](6.1.0-preview1.md) |

0 commit comments

Comments
 (0)