Skip to content

Commit 081fc51

Browse files
Release Notes for v6.0.1 (#3131)
* v6.0.0 Release Notes (#3063) * Adding v6.0.0 release notes, updating related files * Addressing PR comments * Remove win-arm32 from support * Retractively adding ARM64 to net462 support * Adding descriptive paragraphs for bigger features * .NET 8**+** * Update SNI version * Change PR number for SNI vbump * Move PRs for called out additions * Update release-notes/6.0/6.0.0.md Co-authored-by: David Engel <[email protected]> --------- Co-authored-by: David Engel <[email protected]> * Add v6.0.1 release docs * Addressing PR comments * Fixing one more JSON reference * Adding knock-on effect of #2258 * rewording slightly --------- Co-authored-by: David Engel <[email protected]>
1 parent 82edd8b commit 081fc51

31 files changed

+362
-33
lines changed

CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

77
# Release Notes
88

9+
## [Stable release 6.0.1] - 2025-01-23
10+
11+
This update brings the below changes over the previous release:
12+
13+
### Fixed
14+
15+
- Fixed reference assembly definitions for SqlClientDiagnostic APIs [#3097](https://github.com/dotnet/SqlClient/pull/3097)
16+
- Fixed issue with down-level SSL/TLS version warnings [#3126](https://github.com/dotnet/SqlClient/pull/3126)
17+
18+
### Changed
19+
20+
- Dependency changes
21+
- Updated SNI dependency `Microsoft.Data.SqlClient.SNI` and `Microsoft.Data.SqlClient.SNI.runtime` to `6.0.2` [#3116](https://github.com/dotnet/SqlClient/pull/3116) [#3117](https://github.com/dotnet/SqlClient/pull/3117)
22+
23+
## [Stable release 6.0.0] - 2024-12-09
24+
25+
_No changes since the last preview release_
26+
927
## [Preview Release 6.0.0-preview3.24332.3] - 2024-11-27
1028

1129
This update brings the below changes over the previous release:
1230

13-
## Breaking Changes
31+
### Breaking Changes
1432
- Dropped support for .NET 6 [#2927](https://github.com/dotnet/SqlClient/pull/2927)
1533
- Removed SQL 2000 client-side debugging support for .NET Framework [#2981](https://github.com/dotnet/SqlClient/pull/2981), [#2940](https://github.com/dotnet/SqlClient/pull/2940)
1634

@@ -73,7 +91,7 @@ This update brings the below changes over the previous release:
7391
### Added
7492

7593
- Added `TokenCredential` object to take advantage of token caching in `ActiveDirectoryAuthenticationProvider`. [#2380](https://github.com/dotnet/SqlClient/pull/2380)
76-
- Added `DateOnly` and `TimeOnly` support to `DataTable` as a structured parameter. [#2258](https://github.com/dotnet/SqlClient/pull/2258)
94+
- Added support for using `DateOnly` and `TimeOnly` in `DataTable` and `SqlDataRecord` structured parameters. [#2258](https://github.com/dotnet/SqlClient/pull/2258)
7795
- Added `Microsoft.Data.SqlClient.Diagnostics.SqlClientDiagnostic` type in .NET. [#2226](https://github.com/dotnet/SqlClient/pull/2226)
7896
- Added scope trace for `GenerateSspiClientContext`. [#2497](https://github.com/dotnet/SqlClient/pull/2497), [#2725](https://github.com/dotnet/SqlClient/pull/2725)
7997

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Microsoft.Data.SqlClient is a .NET data provider for [Microsoft SQL Server]([url
1111
The Microsoft.Data.SqlClient package supports the following environments:
1212

1313
- .NET Framework 4.6.2+
14-
- .NET 8.0
14+
- .NET 8.0+
1515

1616
## Download
1717

@@ -40,15 +40,17 @@ When targeting .NET on Windows, a package reference to [Microsoft.Data.SqlClient
4040
Special thanks to everyone who has contributed to the project.
4141
We thank you for your continuous support in improving the SqlClient library!
4242

43-
- Wraith ([@Wraith2](https://github.com/Wraith2))
43+
- Edward Neal ([@edwardneal](https://github.com/edwardneal))
4444
- Erik Ejlskov Jensen ([@ErikEJ](https://github.com/ErikEJ))
45-
- Simon Cropp ([@SimonCropp](https://github.com/SimonCropp))
46-
- Stefán Jökull Sigurðarson ([@stebet](https://github.com/stebet))
45+
- Michel Zehnder ([@MichelZ](https://github.com/MichelZ))
4746
- Shay Rojansky ([@roji](https://github.com/roji))
48-
- Stephen Toub ([@stephentoub](https://github.com/stephentoub))
49-
- Rasmus Melchior Jacobsen ([@rmja](https://github.com/rmja))
5047
- Phillip Haydon ([@phillip-haydon](https://github.com/phillip-haydon))
48+
- Rasmus Melchior Jacobsen ([@rmja](https://github.com/rmja))
5149
- Robin Sue ([@Suchiman](https://github.com/Suchiman))
50+
- Simon Cropp ([@SimonCropp](https://github.com/SimonCropp))
51+
- Stefán Jökull Sigurðarson ([@stebet](https://github.com/stebet))
52+
- Stephen Toub ([@stephentoub](https://github.com/stephentoub))
53+
- Wraith ([@Wraith2](https://github.com/Wraith2))
5254

5355
Up-to-date list of contributors: [Contributor Insights](https://github.com/dotnet/SqlClient/graphs/contributors)
5456

release-notes/3.1/3.1.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This update brings the below changes over the previous release:
1717

1818
## Target Platform Support
1919

20-
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
20+
- .NET Framework 4.6.1+ (Windows ARM64, Windows x86, Windows x64)
2121
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2222
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2323

release-notes/3.1/3.1.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This update brings the below changes over the previous release:
1111

1212
## Target Platform Support
1313

14-
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
14+
- .NET Framework 4.6.1+ (Windows ARM64, Windows x86, Windows x64)
1515
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
1616
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
1717

release-notes/3.1/3.1.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This update brings the below changes over the previous release:
1414

1515
## Target Platform Support
1616

17-
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
17+
- .NET Framework 4.6.1+ (Windows ARM64, Windows x86, Windows x64)
1818
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
1919
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2020

release-notes/3.1/3.1.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This update brings the below changes over the previous release:
1111

1212
## Target Platform Support
1313

14-
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
14+
- .NET Framework 4.6.1+ (Windows ARM64, Windows x86, Windows x64)
1515
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
1616
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
1717

release-notes/3.1/3.1.7.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This update brings the below changes over the previous release:
1717

1818
## Target Platform Support
1919

20-
- .NET Framework 4.6.1+ (Windows x86, Windows x64)
20+
- .NET Framework 4.6.1+ (Windows ARM64, Windows x86, Windows x64)
2121
- .NET Core 2.1+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2222
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2323

release-notes/5.1/5.1.0-preview2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The default value of the `ServerCertificate` connection setting is an empty stri
4242

4343
## Target Platform Support
4444

45-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
45+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
4646
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
4747
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
4848

release-notes/5.1/5.1.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The default value of the `ServerCertificate` connection setting is an empty stri
5959

6060
## Target Platform Support
6161

62-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
62+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
6363
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6464
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6565

release-notes/5.1/5.1.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Thanks to the following public contributors. Their efforts toward this project a
1717

1818
## Target Platform Support
1919

20-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
20+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2121
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2222
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2323

release-notes/5.1/5.1.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Thanks to the following public contributors. Their efforts toward this project a
2525

2626
## Target Platform Support
2727

28-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
28+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2929
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
3030
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
3131

release-notes/5.1/5.1.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Thanks to the following public contributors. Their efforts toward this project a
1414

1515
## Target Platform Support
1616

17-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
17+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
1818
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
1919
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2020

release-notes/5.1/5.1.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Thanks to the following public contributors. Their efforts toward this project a
1717

1818
## Target Platform Support
1919

20-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
20+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2121
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2222
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2323

release-notes/5.1/5.1.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Thanks to the following public contributors. Their efforts toward this project a
1919

2020
## Target Platform Support
2121

22-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
22+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2323
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2424
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2525

release-notes/5.1/5.1.6.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Thanks to the following public contributors. Their efforts toward this project a
2222

2323
## Target Platform Support
2424

25-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
25+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2626
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2727
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2828

release-notes/5.2/5.2.0-preview1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Thanks to the following public contributors. Their efforts toward this project a
4040

4141
## Target Platform Support
4242

43-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
43+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
4444
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
4545
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
4646

release-notes/5.2/5.2.0-preview2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Example usage:
6161

6262
## Target Platform Support
6363

64-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
64+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
6565
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6666
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6767

release-notes/5.2/5.2.0-preview3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Example usage:
5858

5959
## Target Platform Support
6060

61-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
61+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
6262
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6363
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6464

release-notes/5.2/5.2.0-preview4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class Program
9393

9494
## Target Platform Support
9595

96-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
96+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
9797
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
9898
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
9999

release-notes/5.2/5.2.0-preview5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Thanks to the following public contributors. Their efforts toward this project a
2727

2828
## Target Platform Support
2929

30-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
30+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
3131
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
3232
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
3333

release-notes/5.2/5.2.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Example usage:
196196

197197
## Target Platform Support
198198

199-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
199+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
200200
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
201201
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
202202

release-notes/5.2/5.2.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This update brings the below changes over the previous release:
2020

2121
## Target Platform Support
2222

23-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
23+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2424
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2525
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2626

release-notes/5.2/5.2.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This update brings the below changes over the previous release:
2121

2222
## Target Platform Support
2323

24-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
24+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
2525
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2626
- .NET Standard 2.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
2727

release-notes/6.0/6.0.0-preview1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Thanks to the following public contributors. Their efforts toward this project a
6464

6565
## Target Platform Support
6666

67-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
67+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
6868
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
6969

7070
### Dependencies

release-notes/6.0/6.0.0-preview2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Thanks to the following public contributors. Their efforts toward this project a
3737

3838
## Target Platform Support
3939

40-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
40+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
4141
- .NET 6.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
4242

4343
### Dependencies

release-notes/6.0/6.0.0-preview3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Thanks to the following public contributors. Their efforts toward this project a
4040
- Removed System.Text.Json dependency from .NET 8 [#2930](https://github.com/dotnet/SqlClient/pull/2930)
4141

4242
## Target Platform Support
43-
- .NET Framework 4.6.2+ (Windows x86, Windows x64)
43+
- .NET Framework 4.6.2+ (Windows ARM64, Windows x86, Windows x64)
4444
- .NET 8.0+ (Windows x86, Windows x64, Windows ARM64, Windows ARM, Linux, macOS)
4545

4646
### Dependencies

0 commit comments

Comments
 (0)