Change log update

This commit is contained in:
Michael Klishin 2013-06-23 23:14:24 +04:00
parent c0f1112d34
commit 8c58ab0155

View file

@ -8,6 +8,8 @@ in the `monger.collection` namespace but always take a database reference as an
They are supposed to be used in cases when relying on `monger.core/*mongodb-database*` is not They are supposed to be used in cases when relying on `monger.core/*mongodb-database*` is not
enough. enough.
Erik Bakstad contributed most of this work.
## monger.core/drop-db ## monger.core/drop-db
@ -773,7 +775,7 @@ If you need to use `keywordize`, use 4-arity:
### Query DSL has a way to specify if fields need to be keywordized ### Query DSL has a way to specify if fields need to be keywordized
It is now possible to opt-out of field keywordization in the query DSL: It is now possible to opt-out of field keywordization in the query DSL:
``` clojure ``` clojure
(with-collection coll (with-collection coll
(find {}) (find {})
@ -799,7 +801,7 @@ monger.collection/find-map-by-id no longer ignore fields argument. Contributed b
### Meet monger.db and monger.command ### Meet monger.db and monger.command
`monger.db` namespace was added to perform operations like adding users or dropping databases. Several functions from `monger.db` namespace was added to perform operations like adding users or dropping databases. Several functions from
`monger.core` will eventually be moved there, but not for 1.0. `monger.core` will eventually be moved there, but not for 1.0.
`monger.command` namespace includes convenience methods for issuing MongoDB commands. `monger.command` namespace includes convenience methods for issuing MongoDB commands.
@ -815,4 +817,3 @@ given ObjectId. `monger.collection/remove-by-id` is its counterpart for removing
### monger.core/get-db-names ### monger.core/get-db-names
monger.core/get-db-names returns a set of databases. Contributed by Toby Hede. monger.core/get-db-names returns a set of databases. Contributed by Toby Hede.