You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.textile
+4
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@ h2. Change Log
2
2
3
3
Also see the "release notes of underlying morphia library":http://code.google.com/p/morphia/wiki/ReleaseNotes and the GORM-MongoDB "User Guide":http://jkuehn.github.com/gorm-mongodb/
4
4
5
+
h3. v0.8.0 - 2012-09-12
6
+
* Updated MongoDB Java driver to *2.9.1*
7
+
* Added the ability to configure MongoOptions in DataSource.groovy - see quickstart in user guide (thanks to Thomas)
8
+
5
9
h3. v0.7.9 - 2012-08-31
6
10
* Updated MongoDB Java driver to *2.9* (aggregation framework)
Copy file name to clipboardExpand all lines: src/docs/guide/2. Quickstart.gdoc
+3-2
Original file line number
Diff line number
Diff line change
@@ -28,16 +28,17 @@ mongodb {
28
28
port = 27017
29
29
databaseName = 'test'
30
30
username = 'user' // database user and password, if server requires authentication
31
-
password = 's3cret'
31
+
password = 's3cret'
32
32
}
33
33
{code}
34
34
35
-
You can configure "replica sets":http://www.mongodb.org/display/DOCS/Replica+Sets this way:
35
+
You can configure "replica sets":http://www.mongodb.org/display/DOCS/Replica+Sets and override default "MongoOptions":http://api.mongodb.org/java/2.9.1/com/mongodb/MongoOptions.html this way:
0 commit comments