https://github.com/Automattic/mongoose

sort by:
Revision Author Date Message Commit Date
a110ed8 release 1.7.3 16 July 2011, 14:08:31 UTC
f039533 add colors dependency closes #398 16 July 2011, 14:04:16 UTC
ab9e0dd fixed; validation scope now set properly closes #418 16 July 2011, 14:03:50 UTC
9490e95 failing test; validation scope not set #418 16 July 2011, 14:01:46 UTC
2fc1f7d fixed; MongooseArray#indexOf now finds ObjectIds 13 July 2011, 15:16:50 UTC
5b32141 failing test; MongooseArray#indexOf can't find ObjectIds 13 July 2011, 15:16:20 UTC
3c637ac release 1.7.2 13 July 2011, 12:28:22 UTC
46e15dc update node-mongodb-native to v0.9.6-7 13 July 2011, 11:54:40 UTC
360086d release 1.7.1 13 July 2011, 01:05:01 UTC
12e93d2 rollback native driver to 0.9.6.4 also made native an npm dependency 13 July 2011, 00:54:43 UTC
db73ae8 release 1.7.0 12 July 2011, 21:32:06 UTC
2a2fec9 bump node-mongodb-native driver to 0.9.6.6 12 July 2011, 21:11:37 UTC
cb50c89 fixed; hide private MongooseArray props from Object.keys this makes us again compatible with the latest release of node-mongodb-native (V0.9.6.6) 12 July 2011, 21:04:14 UTC
aca544e failing test; Object.keys on MongooseArray 12 July 2011, 21:02:33 UTC
d6a367d add test recreating .findOne failure in native V0.9.6.6 12 July 2011, 21:01:52 UTC
12520ce refactor Model#save 12 July 2011, 16:58:25 UTC
a326e28 docs 12 July 2011, 16:57:56 UTC
698388f add test showing workaround for #402 If you want a property named "type" in your schema you can have it work reliably if you always declare it using object literal notation. Example: new Schema({ realEstate: { type: String // <= error! , owner: String } }); // happy new Schema({ realEstate: { type: { type: String } // <= works! , owner: String } }); 11 July 2011, 13:59:13 UTC
3030fc0 update tests now that invalid ObjectIds throw This is a forward looking change inline with the behavior of node-mongodb-native driver v0.9.6.5+. 11 July 2011, 13:35:56 UTC
bd8c4c4 fix docs 11 July 2011, 13:20:27 UTC
5808d55 fixed; handle invalid objectid strings closes #407 11 July 2011, 13:20:19 UTC
65e047a add test case for GH-407 11 July 2011, 13:19:31 UTC
a023f01 Merge pull request #405 from kevinmarvin/patch-1 ReplSetServers requires two parameters, apparently... Merging while we wait for #408 to be resolved. 09 July 2011, 11:40:10 UTC
b575480 Merge pull request #406 from mathrawka/patch-1 paper was misspelled. 08 July 2011, 11:53:54 UTC
7da17fc paper was misspelled. 08 July 2011, 05:40:36 UTC
9657cf1 release 1.6.0 07 July 2011, 13:13:59 UTC
460e712 better failing test message 07 July 2011, 12:58:35 UTC
ee80882 added; Query#slaveOk() support 06 July 2011, 23:28:54 UTC
8a8b026 Revert "update node-mongodb-native driver to V0.9.6-5" This reverts commit 6b811a3a4236204b6964dff344b30ea801c1bdd2. Buggy 06 July 2011, 23:16:27 UTC
6b811a3 update node-mongodb-native driver to V0.9.6-5 06 July 2011, 22:45:10 UTC
0c1eb00 ReplSetServers requires two parameters, apparently... Put in an empty hash for now. 06 July 2011, 21:46:52 UTC
65208d1 fixed; model name is now accessible function names are not writable. 06 July 2011, 16:40:43 UTC
b28b066 update test for #262 06 July 2011, 15:17:56 UTC
248606c failing test; Model.update with $inc fails 06 July 2011, 15:04:04 UTC
b5b5ddd remove comment 06 July 2011, 14:27:43 UTC
6843acc comment out double callback test for now seems to be fine 06 July 2011, 14:09:03 UTC
95cc6cc upgrade to node-mongodb-native v0.9.6.4 06 July 2011, 14:07:53 UTC
60c6f23 fixed; query.find no longer has double callback When something throws within the callback it no longer re-executes the callback. 06 July 2011, 13:23:29 UTC
dd430ee failing test; double callback in queries 06 July 2011, 13:12:34 UTC
2c593ec fixed; RegExp with $all works closes #401 06 July 2011, 02:39:37 UTC
777e797 failing test; using $all with RegExp #401 06 July 2011, 02:39:11 UTC
1471f03 remove unused ref to CastError 05 July 2011, 21:56:54 UTC
aa469d9 clean up CastError fix its message field and remove unused arguments 05 July 2011, 21:56:40 UTC
7f4a575 update #389 test so it fails 05 July 2011, 20:59:09 UTC
aa8e455 add test demonstrating nested doc > 2 levels deep working 01 July 2011, 14:52:42 UTC
9b72f81 fixed; index error during model.init emits on db wasn't actually doing anything before. 29 June 2011, 15:25:08 UTC
f1924bc add test demonstrating #389 working 29 June 2011, 14:02:48 UTC
4804a09 added; $maxDistance support to MongooseArray closes #388 29 June 2011, 02:01:05 UTC
9782463 emit unlistened errors on the instances db When a callback isn't passed to .save() the error used to be emitted on the instance itself. Now it is emitted on the db. var db = mongoose.createConnection('myconnectionstring'); var schema = new Schema({..}); schema.pre('save', function (next, callback) { next(new Error); }); var Thing = db.model('Thing', schema); var thing = new Thing; thing.save(); // throws if not listening to db.on('error', fn) 28 June 2011, 14:16:30 UTC
1bcfbf8 release 1.5.0 28 June 2011, 01:58:08 UTC
956b2ad specific version of should.js 28 June 2011, 01:30:32 UTC
3729fd3 Pass model options in remove command 28 June 2011, 01:27:53 UTC
1705ad1 Added other conditional handlers that were missing 28 June 2011, 01:24:26 UTC
fa0d53b add test for unique index error 28 June 2011, 01:00:02 UTC
1519d22 ensureIndex no longer ignores errors 27 June 2011, 23:45:42 UTC
b738517 ensureIndex now works with sparse indexes thanks to node-mongodb-native support 27 June 2011, 23:44:46 UTC
bcd8ea1 Memory leak fix: Remove self-referencial closure. 27 June 2011, 22:32:59 UTC
945277a Memory leak fix: Delete queue after processing. 27 June 2011, 22:32:59 UTC
7508b2f fix tests due to node-mongodb-native change native no longer passes "null" when no error is returned from calling .remove() 27 June 2011, 22:30:48 UTC
d4b4182 update node-mongodb-native to V0.9.6.1 27 June 2011, 22:23:03 UTC
2ac43d9 update hooks to 0.1.9 27 June 2011, 22:07:47 UTC
fb96be3 Merge pull request #391 from grahamc/master Docs Missing Space 27 June 2011, 16:44:29 UTC
61b9c10 Adding in spaces so Michael Sorrentino isn't MichaelSorrentino. 27 June 2011, 16:21:27 UTC
8629b1d Added mongoose-joins 3rd party plugin to README closes #387 26 June 2011, 01:34:56 UTC
fabfb99 readme spacing 17 June 2011, 17:16:47 UTC
029c027 Edited README.md via GitHub 17 June 2011, 17:14:22 UTC
6ec7f20 Merge pull request #385 from Zearin/patch-1 Added syntax highlighting. 17 June 2011, 17:11:21 UTC
69ce567 Added syntax highlighting. 17 June 2011, 16:55:10 UTC
368ddd2 Merge remote branch 'LearnBoost/master' Conflicts: test/model.test.js 14 June 2011, 06:12:04 UTC
15c821f Now, if an error is thrown while invoking save() without a callback, the document falls back to emitting 'error', err. 14 June 2011, 06:10:06 UTC
aebd986 release 1.4.0 10 June 2011, 22:30:53 UTC
ec5dc2f fixed; distinct Query has op of 'distinct' 10 June 2011, 19:04:12 UTC
c24d53c add failing test for distinct Query op 10 June 2011, 19:00:38 UTC
ef769e5 be specific with hooks version 10 June 2011, 18:14:56 UTC
36e6990 fixed; can overwrite conflicting values 10 June 2011, 18:03:46 UTC
6b0b2d4 failing test; overwritting conflicting values If an keys schema is an object and its value is set to a string, it is not possible to overwrite the value with an object. 10 June 2011, 17:02:07 UTC
f16f1fd Add link to https://github.com/goulash1971/mongoose-dbref 09 June 2011, 13:52:47 UTC
bb643bb Show that MongooseError and ValidationError are instanceof Error. Closes GH-209 09 June 2011, 09:33:39 UTC
1771a65 Closes GH-272. Added test to show that you can add validation with proper error message using Model.path(...).validate(...) introspection. 09 June 2011, 08:40:19 UTC
e18077a Fixed GH-249. Now embedded models can use instance methods defined on their Schemas. 09 June 2011, 00:24:02 UTC
bb8e032 Added test to demonstrate that Embedded Schemas do not generate instance methods via Schema#method. See GH-249. 08 June 2011, 23:56:30 UTC
7b8614f Added Query#distinct support and tests. Closes GH-155. 08 June 2011, 22:55:50 UTC
c947232 Added test demonstrating that field exclusion results in a Document whose doc does not have the keys being excluded. The exception to this case is if the field is an Array type or contains nested fields. 08 June 2011, 22:33:22 UTC
576c834 Removed console.log 08 June 2011, 22:25:26 UTC
93e2d69 Added another exclusion (e.g., exclude _id) test for querying, but this time for `find` (previously only tested `findOne`) 08 June 2011, 22:24:36 UTC
422d758 Added test related to GH-261 08 June 2011, 22:21:28 UTC
241b9c0 Related fix for GH-289. Take care of queries besides findOne 08 June 2011, 21:32:41 UTC
2c1f028 Fixed GH--289. Now, _id is undefined inside the pre-init in the context of a query. 08 June 2011, 21:29:31 UTC
7941903 Added failing test for GH-289 08 June 2011, 21:07:09 UTC
dc846ef Fixed GH-365. Added schema.applySetters to Document#init. Before, only schema.cast was being invoked. 08 June 2011, 20:43:00 UTC
83c23e3 Added failing test for GH-365 08 June 2011, 11:49:27 UTC
8696bd8 Fixed next(null) test, which now passes. 07 June 2011, 21:38:18 UTC
8a1cd45 add test for null defaults 07 June 2011, 12:27:40 UTC
f27f3be Merge branch 'master' of github.com:LearnBoost/mongoose 07 June 2011, 02:52:14 UTC
73bdda6 remove old clearTimeout 07 June 2011, 02:51:34 UTC
e8aff56 more focused failing test 07 June 2011, 02:51:17 UTC
43dd3a8 more focused failing test 07 June 2011, 02:49:56 UTC
c78e739 updated failing test 07 June 2011, 02:45:34 UTC
aed41ae add failing hooks test 07 June 2011, 02:42:08 UTC
218312c curlys 06 June 2011, 15:10:37 UTC
back to top