From 1a5812bff3fa65bbea9f6ad9ab58165a79a19105 Mon Sep 17 00:00:00 2001 From: BorisDog Date: Wed, 12 Jun 2024 11:04:57 -0700 Subject: [PATCH 1/3] 2.26.0 Release notes --- Release Notes/Release Notes v2.26.0.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Release Notes/Release Notes v2.26.0.md diff --git a/Release Notes/Release Notes v2.26.0.md b/Release Notes/Release Notes v2.26.0.md new file mode 100644 index 00000000000..e71497574cb --- /dev/null +++ b/Release Notes/Release Notes v2.26.0.md @@ -0,0 +1,18 @@ +# .NET Driver Version 2.26.0 Release Notes + +This is the general availability release for the 2.26.0 version of the driver. + +The main new features in 2.26.0 include: + ++ Support SelectMany inside Project/Select - [CSHARP-2509](https://jira.mongodb.org/browse/CSHARP-2509) ++ Support Dictionary.ContainsValue in LINQ queries - [CSHARP-5081](https://jira.mongodb.org/browse/CSHARP-5081) ++ Support string concatenation of mixed types - [CSHARP-5071](https://jira.mongodb.org/browse/CSHARP-5071) ++ Support serialization of Memory and ReadOnlyMemory structs - [CSHARP-4807](https://jira.mongodb.org/browse/CSHARP-4807) ++ OIDC: support for GCP Identity Provider - [CSHARP-4610](https://jira.mongodb.org/browse/CSHARP-4610) ++ Nuget packages signing - [CSHARP-5050](https://jira.mongodb.org/browse/CSHARP-5050) ++ Direct read/write retries to another mongos if possible - [CSHARP-3757](https://jira.mongodb.org/browse/CSHARP-3757) ++ Multiple bug fixes and improvements. + +The full list of issues resolved in this release is available at [CSHARP JIRA project](https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.26.0%20ORDER%20BY%20key%20ASC). + +Documentation on the .NET driver can be found [here](https://www.mongodb.com/docs/drivers/csharp/v2.26.0}/). From 925ca20339f795740b6bf1eea26fec6e5a939264 Mon Sep 17 00:00:00 2001 From: BorisDog Date: Wed, 12 Jun 2024 11:17:42 -0700 Subject: [PATCH 2/3] - PR comments --- Release Notes/Release Notes v2.26.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Release Notes/Release Notes v2.26.0.md b/Release Notes/Release Notes v2.26.0.md index e71497574cb..5db5947906f 100644 --- a/Release Notes/Release Notes v2.26.0.md +++ b/Release Notes/Release Notes v2.26.0.md @@ -4,8 +4,8 @@ This is the general availability release for the 2.26.0 version of the driver. The main new features in 2.26.0 include: -+ Support SelectMany inside Project/Select - [CSHARP-2509](https://jira.mongodb.org/browse/CSHARP-2509) -+ Support Dictionary.ContainsValue in LINQ queries - [CSHARP-5081](https://jira.mongodb.org/browse/CSHARP-5081) ++ Support SelectMany inside Project/Select - [CSHARP-5081](https://jira.mongodb.org/browse/CSHARP-5081) ++ Support Dictionary.ContainsValue in LINQ queries - [CSHARP-2509](https://jira.mongodb.org/browse/CSHARP-2509) + Support string concatenation of mixed types - [CSHARP-5071](https://jira.mongodb.org/browse/CSHARP-5071) + Support serialization of Memory and ReadOnlyMemory structs - [CSHARP-4807](https://jira.mongodb.org/browse/CSHARP-4807) + OIDC: support for GCP Identity Provider - [CSHARP-4610](https://jira.mongodb.org/browse/CSHARP-4610) From 95dd453c17f6d0c442bf1cae693468368c7394ae Mon Sep 17 00:00:00 2001 From: BorisDog Date: Wed, 12 Jun 2024 11:38:33 -0700 Subject: [PATCH 3/3] - PR comments --- Release Notes/Release Notes v2.26.0.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Release Notes/Release Notes v2.26.0.md b/Release Notes/Release Notes v2.26.0.md index 5db5947906f..c48d4d466c6 100644 --- a/Release Notes/Release Notes v2.26.0.md +++ b/Release Notes/Release Notes v2.26.0.md @@ -7,9 +7,10 @@ The main new features in 2.26.0 include: + Support SelectMany inside Project/Select - [CSHARP-5081](https://jira.mongodb.org/browse/CSHARP-5081) + Support Dictionary.ContainsValue in LINQ queries - [CSHARP-2509](https://jira.mongodb.org/browse/CSHARP-2509) + Support string concatenation of mixed types - [CSHARP-5071](https://jira.mongodb.org/browse/CSHARP-5071) ++ Enable use of native crypto in libmongocrypt bindings - [CSHARP-4944](https://jira.mongodb.org/browse/CSHARP-4944) + Support serialization of Memory and ReadOnlyMemory structs - [CSHARP-4807](https://jira.mongodb.org/browse/CSHARP-4807) + OIDC: support for GCP Identity Provider - [CSHARP-4610](https://jira.mongodb.org/browse/CSHARP-4610) -+ Nuget packages signing - [CSHARP-5050](https://jira.mongodb.org/browse/CSHARP-5050) ++ Implement signing of NuGet packages - [CSHARP-5050](https://jira.mongodb.org/browse/CSHARP-5050) + Direct read/write retries to another mongos if possible - [CSHARP-3757](https://jira.mongodb.org/browse/CSHARP-3757) + Multiple bug fixes and improvements.