Newer
Older
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
==================
* Added support for replica sets.
1.0.16 / 2011-02-18
===================
* Added $nin as another whitelisted $conditional for SchemaArray [brian]
* Changed #with to #where [brian]
* Added ability to use $in conditional with Array types [brian]
1.0.15 / 2011-02-18
===================
* Added `id` virtual getter for documents to easily access the hexString of
the `_id`.
1.0.14 / 2011-02-17
===================
* Fix for arrays within subdocuments [brian]
1.0.13 / 2011-02-16
===================
* Fixed embedded documents saving.
1.0.12 / 2011-02-14
===================
* Minor refactorings [brian]
1.0.11 / 2011-02-14
===================
* Query refactor and $ne, $slice, $or, $size, $elemMatch, $nin, $exists support [brian]
* Named scopes sugar [brian]
1.0.10 / 2011-02-11
===================
* Updated node-mongodb-native driver [thanks John Allen]
1.0.9 / 2011-02-09
==================
* Fixed single member arrays as defaults [brian]
1.0.8 / 2011-02-09
==================
* Fixed for collection-level buffering of commands [gitfy]
* Fixed `Document#toJSON` [dalejefferson]
* Fixed `Connection` authentication [robrighter]
* Fixed clash of accessors in getters/setters [eirikurn]
* Improved `Model#save` promise handling
1.0.7 / 2011-02-05
==================
* Fixed memory leak warnings for test suite on 0.3
* Fixed querying documents that have an array that contain at least one
specified member. [brian]
* Fixed default value for Array types (fixes GH-210). [brian]
* Fixed example code.
1.0.6 / 2011-02-03
==================
* Fixed `post` middleware
* Fixed; it's now possible to instantiate a model even when one of the paths maps
to an undefined value [brian]
1.0.5 / 2011-02-02
==================
* Fixed; combo $push and $pushAll auto-converts into a $pushAll [brian]
* Fixed; combo $pull and $pullAll auto-converts to a single $pullAll [brian]
* Fixed; $pullAll now removes said members from array before save (so it acts just
like pushAll) [brian]
* Fixed; multiple $pulls and $pushes become a single $pullAll and $pushAll.
Moreover, $pull now modifies the array before save to reflect the immediate
change [brian]
* Added tests for nested shortcut getters [brian]
* Added tests that show that Schemas with nested Arrays don't apply defaults
[brian]
1.0.4 / 2011-02-02
==================
* Added MongooseNumber#toString
* Added MongooseNumber unit tests
1.0.3 / 2011-02-02
==================
* Make sure safe mode works with Model#save
* Changed Schema options: safe mode is now the default
* Updated node-mongodb-native to HEAD
1.0.2 / 2011-02-02
==================
* Added a Model.create shortcut for creating documents. [brian]
* Fixed; we can now instantiate models with hashes that map to at least one
null value. [brian]
* Fixed Schema with more than 2 nested levels. [brian]
1.0.1 / 2011-02-02
==================
* Improved `MongooseNumber`, works almost like the native except for `typeof`
not being `'number'`.