Skip to content

Commit 5b9cda5

Browse files
author
rstam
committed
Added release notes.
1 parent 4fdd8cc commit 5b9cda5

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
BSON library changes from 1.7 to 1.7.1
22

3+
CSharp275Tests.cs
4+
a minor change so test passes in 2013
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
C#/.NET driver changes from 1.7 to 1.7.1
22

3+
MongoConnection.cs
4+
LastUsedAt now set when data is sent or received, not when connection is returned to the pool
5+
new IsExpired method checks both idle and life time
6+
7+
MongoConnectionPool.cs
8+
AcquireConnection is strict about discarding expired connections and replacing them with new ones
9+
MaintainPoolSize has been simplified a bit
10+
ReleaseConnection doesn't return expired connections to the pool

Release Notes/Release Notes v1.7.1.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
C# Driver Version 1.7.1 Release Notes
22
=====================================
33

4-
This is a minor release.
4+
This is a minor release. The only change is to strictly enforce the
5+
MaxConnectionIdleTime and MaxConnectionLifeTime settings. These used to be
6+
loosely enforced, and connections were sometimes allowed to be used for a
7+
bit longer. However, in certain environments (some firewalls, and in particular
8+
in Windows Azure) connections that exceed the limits by even a little bit are
9+
guaranteed to fail, so it is much safer to enforce these values strictly.
10+
11+
An online version of these release notes is available at:
12+
13+
https://github.com/mongodb/mongo-csharp-driver/blob/v1.7.1/Release%20Notes/Release%20Notes%20v1.7.1.md
14+
15+
File by file change logs are available at:
16+
17+
https://github.com/mongodb/mongo-csharp-driver/blob/v1.7.1/Release%20Notes/Change%20Log%20v1.7.1-Bson.txt
18+
https://github.com/mongodb/mongo-csharp-driver/blob/v1.7.1/Release%20Notes/Change%20Log%20v1.7.1-Driver.txt
19+
20+
The full list of JIRA issues resolved in this release is available at:
21+
22+
https://jira.mongodb.org/secure/IssueNavigator.jspa?mode=hide&requestId=13109
23+
24+
Documentation on the C# driver can be found at:
25+
26+
http://www.mongodb.org/display/DOCS/CSharp+Language+Center
27+
http://api.mongodb.org/csharp/current/

0 commit comments

Comments
 (0)