Skip to content

Commit 25b3fda

Browse files
committed
Rename MongoDB 2.8 to 3.0.
1 parent 529d69f commit 25b3fda

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

MongoDB.Driver/Operations/ListCollectionsOperation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ private IEnumerable<BsonDocument> ExecuteUsingQuery(MongoConnection connection)
142142
var value = queryDocument["name"];
143143
if (!value.IsString)
144144
{
145-
throw new NotSupportedException("Name criteria must be a plain string when connected to a server version less than 2.8.");
145+
throw new NotSupportedException("Name criteria must be a plain string when connected to a server version less than 3.0.");
146146
}
147147
var clonedQueryDocument = new QueryDocument(queryDocument);
148148
clonedQueryDocument["name"] = _databaseName + "." + value;

Release Notes/Release Notes v1.10.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ C#/.NET Driver Version 1.10-rc1 Release Notes (RELEASE CANDIDATE)
33

44
NOTE: This is a release candidate and should only be used for testing. It is not recommended for production use.
55

6-
This is a minor release which is fully compatible with server version 2.8 and fully supports
7-
the new features introduced by server version 2.8.
6+
This is a minor release which is fully compatible with server version 3.0 and fully supports
7+
the new features introduced by server version 3.0.
88

99
It also fixes some issues reported since 1.9.2 was released.
1010

@@ -28,15 +28,15 @@ The 1.x releases will be the last non-bug fix release supporting .NET 3.5.
2828

2929
The issues fixed in 1.10 are:
3030

31-
- Support for changes in server 2.8
31+
- Support for changes in server 3.0
3232
- Support SCRAM-SHA1 authentication
3333
- Deprecate classes, properties and methods that will be removed in version 2.0
3434
- other minor fixes (see JIRA tickets)
3535

3636
Note about SCRAM-SHA1 authenticaton
3737
-----------------------------------
3838

39-
Starting with the MongoDB 2.8 release, the SCRAM-SHA1 authentication protocol is supported. By
39+
Starting with the MongoDB 3.0 release, the SCRAM-SHA1 authentication protocol is supported. By
4040
itself, this will not cause any compatibility issues. However, before updating the server's
4141
authentication schema such that the MONGODB-CR protocol is no longer available, you must
4242
replace any calls to:

0 commit comments

Comments
 (0)