
12 changed files with 116 additions and 252 deletions
-
27Docs/landing/data/releases.toml
-
4Docs/landing/layouts/partials/features.html
-
2Docs/landing/static/versions.json
-
4Docs/reference/config.toml
-
6Docs/reference/content/index.md
-
160Docs/reference/content/upgrading.md
-
84Docs/reference/content/what_is_new.md
-
4Docs/reference/data/mongodb.toml
-
44Release Notes/Release Notes v2.1.0.md
-
4build/MongoDB.Driver-Build.nuspec
-
25build/MongoDB.Driver.GridFS.nuspec
-
4build/build.fsx
@ -1 +1 @@ |
|||
[{"version": "2.0"}, {"version": "1.10"}] |
|||
[{"version": "2.1"},{"version": "2.0"}, {"version": "1.10"}] |
@ -1,5 +1,5 @@ |
|||
githubRepo = "mongo-csharp-driver" |
|||
githubBranch = "master" |
|||
currentVersion = "2.0" |
|||
currentVersion = "2.1" |
|||
highlightTheme = "idea.css" |
|||
apiUrl = "http://api.mongodb.org/csharp/2.0/html" |
|||
apiUrl = "http://api.mongodb.org/csharp/2.1/html" |
@ -1,3 +1,43 @@ |
|||
# .NET Driver Version 2.1.0 Release Notes |
|||
# .NET Driver Version 2.1.0-rc0 Release Notes |
|||
|
|||
Placeholder |
|||
(Preliminary) |
|||
|
|||
This is a minor release which supports all MongoDB server versions since 2.4. |
|||
|
|||
An online version of these release notes is available at: |
|||
|
|||
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.1.0.md |
|||
|
|||
The full list of JIRA issues resolved in this release is available at: |
|||
|
|||
https://jira.mongodb.org/issues/?filter=18283 |
|||
|
|||
Documentation on the .NET driver can be found at: |
|||
|
|||
http://mongodb.github.io/mongo-csharp-driver/ |
|||
|
|||
|
|||
## New Features |
|||
|
|||
Notable new features are listed below. For a full list, see the full list of JIRA issues linked above. |
|||
|
|||
### GridFS |
|||
|
|||
[CSHARP-1191](https://jira.mongodb.org/browse/CSHARP-1191) - GridFS support has been implemented. |
|||
|
|||
|
|||
### LINQ |
|||
|
|||
[CSHARP-935](https://jira.mongodb.org/browse/CSHARP-935) LINQ support has been rewritten and now targets the aggregation framework. It is a more natural translation and enables many features of LINQ that were previously not able to be translated. |
|||
|
|||
Simply use the new [`AsQueryable`]({{< apiref "M_MongoDB_Driver_IMongoCollectionExtensions_AsQueryable__1" >}}) method to work with LINQ. |
|||
|
|||
|
|||
### Eventing |
|||
|
|||
Blurb on eventing once APM is pushed. |
|||
|
|||
|
|||
## Upgrading |
|||
|
|||
There are no known backwards breaking changes in this release. |
@ -0,0 +1,25 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<package> |
|||
<metadata> |
|||
<id>MongoDB.Driver.GridFS</id> |
|||
<version>@build.number@</version> |
|||
<authors>MongoDB, Inc.</authors> |
|||
<owners>rstam, craiggwilson</owners> |
|||
<iconUrl>http://jobs.mongodb.org/files/logos/889002/889002.png</iconUrl> |
|||
<requireLicenseAcceptance>true</requireLicenseAcceptance> |
|||
<description>GridFS Component of the Official MongoDB .NET Driver.</description> |
|||
<projectUrl>http://www.mongodb.org/display/DOCS/CSharp+Language+Center</projectUrl> |
|||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> |
|||
<tags>mongodb mongo nosql gridfs</tags> |
|||
<language>en-US</language> |
|||
@dependencies@ |
|||
</metadata> |
|||
<files> |
|||
<file src="artifacts\bin\net45\MongoDB.Driver.GridFS.dll" target="lib\net45" /> |
|||
<file src="artifacts\bin\net45\MongoDB.Driver.GridFS.pdb" target="lib\net45" /> |
|||
<file src="artifacts\bin\net45\MongoDB.Driver.GridFS.XML" target="lib\net45" /> |
|||
<file src="License.rtf" target ="" /> |
|||
<file src="src\MongoDB.Driver.GridFS\**\*.cs" target="src\MongoDB.Driver" /> |
|||
<file src="src\MongoDB.Shared\**\*.cs" target="src\MongoDB.Shared" /> |
|||
</files> |
|||
</package> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue