Skip to content

Commit 31f9b1c

Browse files
committed
Release notes for 2.5.
1 parent fb5521d commit 31f9b1c

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

Release Notes/Release Notes v2.5.0.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
11
# .NET Driver Version 2.5.0 Release Notes
22

3-
This file is a placeholder.
3+
The main new feature of 2.5.0 is support for the new features of the 3.6 version of the server:
4+
5+
* Sessions
6+
* Causal consistency
7+
* Retryable writes
8+
* Change streams via the collection Watch method to observe changes to a collection
9+
* ArrayFilters in filters
10+
* Translating DateTime expressions in LINQ to $dateFromParts and $dateFromString operators
11+
* The new "mongodb+srv://" connection string scheme
12+
* Improved support for reading and writing UUIDs in BsonBinary subtype 4 format
13+
14+
An online version of these release notes is available at:
15+
16+
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.5.0.md
17+
18+
The JIRA tickets resolved in this release is available at:
19+
20+
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.5%20ORDER%20BY%20key%20ASC
21+
22+
Upgrading
23+
24+
We believe there are only minor breaking changes in classes that normally would not be directly used by applications.

src/MongoDB.Driver.Core/Core/Operations/RetryableInsertCommandOperation.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ namespace MongoDB.Driver.Core.Operations
2828
/// <summary>
2929
/// Represents an insert command operation.
3030
/// </summary>
31+
/// <typeparam name="TDocument">The type of the document.</typeparam>
3132
public class RetryableInsertCommandOperation<TDocument> : RetryableWriteCommandOperationBase
3233
{
3334
// private fields

0 commit comments

Comments
 (0)