File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
src/MongoDB.Driver.Core/Core/Operations Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments