2012-02-12 05:57:53 +00:00
|
|
|
## Changes between 1.0.0-beta1 and 1.0.0-beta2
|
|
|
|
|
|
|
|
|
|
### 3-arity of monger.collection/find-one-as-map now takes a vector of fields
|
|
|
|
|
|
|
|
|
|
3-arity of monger.collection/find-one-as-map now takes a vector of fields
|
|
|
|
|
instead of `keywordize` to better fit a more commonly needed case.
|
|
|
|
|
|
|
|
|
|
``` clojure
|
|
|
|
|
;; 3-arity in 1.0.0-beta1
|
|
|
|
|
(monger.collection/find-one-as-map "documents" { :first_name "John" } false)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
``` clojure
|
|
|
|
|
;; 3-arity in 1.0.0-beta2
|
2012-02-12 06:00:46 +00:00
|
|
|
(monger.collection/find-one-as-map "documents" { :first_name "John" } [:first_name, :last_name, :age])
|
2012-02-12 05:57:53 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If you need to use `keywordize`, use 4-arity:
|
|
|
|
|
|
|
|
|
|
``` clojure
|
2012-02-12 06:00:46 +00:00
|
|
|
(monger.collection/find-one-as-map "documents" { :first_name "John" } [:first_name, :last_name, :age] false)
|
2012-02-12 05:57:53 +00:00
|
|
|
```
|
2012-02-12 06:15:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
### 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:
|
|
|
|
|
|
|
|
|
|
``` clojure
|
|
|
|
|
(with-collection coll
|
|
|
|
|
(find {})
|
|
|
|
|
(limit 3)
|
|
|
|
|
(sort { :population -1 })
|
|
|
|
|
(keywordize-fields false))
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
the default value is still true, field names will be converted to keywords.
|
2012-02-13 18:52:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### monger.collection/find-by-id and /find-map-by-id fail fast when id is nil
|
|
|
|
|
|
|
|
|
|
monger.collection/find-by-id and /find-map-by-id now will throw IllegalArgumentException when id is nil
|
2012-02-18 11:22:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
### monger.collection/find-map-by-id no longer ignore fields argument
|
|
|
|
|
|
|
|
|
|
monger.collection/find-map-by-id no longer ignore fields argument. Contributed by Toby Hede.
|