https://github.com/Automattic/mongoose

sort by:
Revision Author Date Message Commit Date
de66520 chore: release 5.5.4 25 April 2019, 19:19:10 UTC
67c3140 Merge pull request #7744 from Fonger/fix-7724 Reports Validation Errors for push()-ed Subdocs with Correct Index Path 25 April 2019, 19:11:02 UTC
476607d Merge pull request #7746 from Fonger/fix-7743 Support $unset update operation for MongooseMap#delete 25 April 2019, 19:10:20 UTC
c377e65 fix(map): handle update for MongooseMap#delete resolves #7743 25 April 2019, 18:58:15 UTC
b63128b test(map): repro #7743 25 April 2019, 18:57:14 UTC
6b4479c fix(documentarray): preserve the correct index for push()-ed subdoc fix #7724 that was introduced in 764735b9bb2a577c3b5fce773bc866a75ca86474 25 April 2019, 17:42:55 UTC
679a8f6 test(documentarray): repro #7724 25 April 2019, 17:40:00 UTC
90703ba fix(array): use symbol for `_schema` property to avoid confusing deep equality checks Re: #7700 25 April 2019, 16:07:55 UTC
df96b50 Merge branch 'master' of github.com:Automattic/mongoose 25 April 2019, 14:37:17 UTC
d8c2618 fix(document): avoid calling custom getters when saving Fix #7719 25 April 2019, 14:36:47 UTC
a9aa20e test(document): repro #7719 25 April 2019, 14:35:41 UTC
3e31a35 Merge pull request #7741 from Fonger/gh-7740 Document#depopulate with empty array fields 25 April 2019, 13:57:50 UTC
47c10fc fix(document): prevent `depopulate()` from removing fields with empty array fix #7740 25 April 2019, 10:56:33 UTC
5bd1ad4 test(document): repro #7740 25 April 2019, 10:51:07 UTC
9645d87 test: fix tests re: #7712 24 April 2019, 20:30:31 UTC
9212fa3 fix(timestamps): handle child schema timestamps correctly when reusing child schemas Fix #7712 24 April 2019, 20:20:22 UTC
5e82437 test(timestamps): repro #7712 24 April 2019, 20:13:34 UTC
aab349f style: fix lint re: #7712 24 April 2019, 19:32:15 UTC
ef09de6 fix(timestamps): handle reusing child schema with nested subdoc timestamps Re: #7712 24 April 2019, 19:26:57 UTC
aadf391 test(timestamps): repro #7712 24 April 2019, 19:26:43 UTC
cac2dc8 Merge branch 'master' of github.com:Automattic/mongoose 24 April 2019, 16:50:49 UTC
bea60df fix(model+query): allow setting `replacement` parameter for `findOneAndReplace()` Fix #7654 24 April 2019, 16:49:27 UTC
06a0e7a Merge pull request #7736 from Fonger/fix-7734-7735 fix(query): pass correct callback for _legacyFindAndModify 24 April 2019, 15:58:00 UTC
c5bdf1e fix(query): pass correct callback for _legacyFindAndModify fix #7734 fix #7735 24 April 2019, 13:43:41 UTC
dd9bc16 Merge pull request #7732 from hansemannn/feature/support-array-includes feat: support MongooseArray#includes 24 April 2019, 13:12:05 UTC
199ee38 chore: now working on 5.5.4 23 April 2019, 14:45:52 UTC
b6e2206 fix: update per review comments 23 April 2019, 13:15:07 UTC
8e72b89 feat: support MongooseArray#includes 23 April 2019, 06:37:49 UTC
63be350 chore: release 5.5.3 22 April 2019, 18:56:07 UTC
6a94b74 chore: add tekhattan as an opencollective sponsor 22 April 2019, 15:09:35 UTC
082b729 docs(aggregate): use `eachAsync()` instead of nonexistent `each()` Fix #7699 21 April 2019, 21:16:05 UTC
b5a6f22 docs(model): list out all operations and options for `bulkWrite()` Fix #7055 21 April 2019, 21:11:29 UTC
ac10789 docs(validation): add CastError validation example Fix #7514 21 April 2019, 20:33:18 UTC
8f37ebf refactor(array): move `_parent` property behind a symbol Fix #7726 Re: #7700 21 April 2019, 19:49:51 UTC
0b84971 fix(query): dont show useFindAndModify deprecation warning if useFindAndModify = false Re: #7644 21 April 2019, 17:31:43 UTC
191994e style: fix lint re: #7679 20 April 2019, 21:56:43 UTC
d7c0f20 fix(update): run setters on array elements when doing $set Fix #7679 20 April 2019, 21:53:21 UTC
c0000e0 test(update): repro #7679 20 April 2019, 21:53:09 UTC
1474fe8 fix: add findAndModify deprecation warning that references the useFindAndModify option Re: #7644 19 April 2019, 19:24:06 UTC
5fa7177 docs(query+model): list out all options and callback details for Model.updateX() and Query#updateX() Fix #7646 19 April 2019, 13:25:27 UTC
e410423 fix(document): handle pushing a doc onto a discriminator that contains a doc array Fix #7704 18 April 2019, 20:01:44 UTC
b28e489 test(discriminator): repro #7704 18 April 2019, 19:56:50 UTC
92dd346 Merge pull request #7718 from rzymek/buffered-arguments-fix fix usage of arguments while buffering commands 17 April 2019, 13:23:53 UTC
c51df5f Merge pull request #7715 from bitflower/master Fix: Cannot read property '$__' of undefined 17 April 2019, 13:22:12 UTC
8f4e0c4 chore: now working on 5.5.3 17 April 2019, 13:21:16 UTC
c05d989 fix: use Arrays.from(arguments) before [].concat because (function() {return [].concat(arguments);})(1,2,3) === [Arguments] but (function() {return Array.from(arguments);})(1,2,3) === [1,2,3] 17 April 2019, 12:28:52 UTC
6c26ce2 test: should find a document inserted with a buffering 17 April 2019, 12:24:30 UTC
732551d Fix: Cannot read property '$__' of undefined I'm receiving this error on `create` and `update` in `feathers-js` app using the `feathers-mongoose` adapter. It only happens on certain models. Could this fix be included or it more like a patch instead of targeting the real root cause? 16 April 2019, 14:39:13 UTC
b43d70a chore: release 5.5.2 16 April 2019, 14:32:06 UTC
c1c1769 chore: add blokt as sponsor 15 April 2019, 16:08:58 UTC
4f86232 fix(model): set document `$session` in `create()` so session is available to validators and middleware Fix #7652 15 April 2019, 15:35:18 UTC
defa2b8 fix(document): support setting nested path to non-POJO object Fix #7639 Fix #7708 15 April 2019, 14:40:30 UTC
34cb531 test(document): repro #7639 15 April 2019, 14:39:47 UTC
0610105 perf(connection): remove leaked event handler in `Model.init()` so `deleteModel()` frees all memory Fix #7682 14 April 2019, 21:30:55 UTC
2a99c03 style: fix lint 14 April 2019, 17:04:37 UTC
b26407b fix(timestamps): handle custom statics that conflict with built-in functions (like mongoose-delete plugin) Fix #7698 14 April 2019, 16:57:57 UTC
4c70e21 test(timestamps): repro #7698 14 April 2019, 16:57:39 UTC
04b6027 fix(populate): make `Document#populated()` work for populated subdocs Fix #7685 14 April 2019, 02:17:44 UTC
ba9a72b test(populate): repro #7685 14 April 2019, 02:16:02 UTC
7f797c7 Merge branch 'master' of github.com:Automattic/mongoose 13 April 2019, 17:54:54 UTC
57f0f85 fix(document): support `.set()` on document array underneath embedded discriminator path Fix #7656 13 April 2019, 17:54:24 UTC
f3e114b test(document): repro #7656 13 April 2019, 17:54:00 UTC
0fcd912 chore: now working on 5.5.2 13 April 2019, 17:42:39 UTC
61e01e6 docs(History.md): fix formatting issue 12 April 2019, 13:14:58 UTC
bdc843b chore: add usave as a opencollective sponsor 11 April 2019, 16:07:00 UTC
98352db chore: release 5.5.1 11 April 2019, 16:04:30 UTC
2d3c4e5 fix(schematype): avoid indexing properties with `{ unique: false, index: false }` Fix #7620 11 April 2019, 15:43:24 UTC
2a5c214 test(schematype): repro #7620 11 April 2019, 15:43:07 UTC
3ac55ee Merge pull request #7696 from hellodigit/checkrequired-array allow customization of array required validator 11 April 2019, 14:20:26 UTC
dd43ef7 style: fix lint 11 April 2019, 00:02:41 UTC
0ea126d fix(aggregate): make `Aggregate#model()` with no arguments return the aggregation's model Fix #7608 10 April 2019, 23:59:40 UTC
5106455 test(aggregate): repro #7608 10 April 2019, 23:55:56 UTC
8c6032d test: fix tests re: #7687 10 April 2019, 15:17:56 UTC
fd91c2f fix(discriminator): handle embedded discriminators when casting array defaults Fix #7687 10 April 2019, 15:10:52 UTC
aeb0327 test(discriminator): repro #7687 10 April 2019, 15:10:35 UTC
74a947a fix(collection): ensure collection functions return a promise even if disconnected Fix #7676 10 April 2019, 14:12:43 UTC
fe03f3a test(collection): repro #7676 10 April 2019, 14:11:33 UTC
2eebe3b style: fix lint 09 April 2019, 18:12:00 UTC
6c66ba8 fix(document): correctly overwrite all properties when setting a single nested subdoc Fix #7660 09 April 2019, 18:10:00 UTC
53ce8f3 test(document): repro #7660 09 April 2019, 18:09:45 UTC
5bf17b8 chore: now working on 5.5.1 09 April 2019, 14:23:23 UTC
bc098ec node v4-5: rm param default 08 April 2019, 22:42:42 UTC
ac2e856 rm it.only 08 April 2019, 22:37:42 UTC
967b205 add test 08 April 2019, 22:36:28 UTC
8f3cd60 allow customization of array required validator 08 April 2019, 22:11:31 UTC
c04e01b chore: release 5.5.0 08 April 2019, 15:15:53 UTC
2cd939e Merge pull request #7691 from Automattic/5.5 5.5.0 08 April 2019, 14:49:38 UTC
6fc2991 chore: release 5.4.23 08 April 2019, 14:31:59 UTC
bb4a49c test: fix tests 08 April 2019, 14:12:27 UTC
51e0160 fix(document): report cast error when string path in schema is an array in MongoDB Fix #7619 08 April 2019, 14:08:46 UTC
46c319e test(document): repro #7619 08 April 2019, 14:08:34 UTC
8df00fb docs(subdocs): add note about parent() and ownerDocument() to subdocument docs Fix #7576 08 April 2019, 01:18:01 UTC
76d8ca5 fix(query): set deletedCount on result of remove() Fix #7629 07 April 2019, 19:59:17 UTC
d101c68 test(query): repro #7629 07 April 2019, 19:58:43 UTC
a9fcf85 chore: now working on 5.4.23 05 April 2019, 19:41:58 UTC
618f19a feat(document): add `getters` option to Document#get() Fix #7233 05 April 2019, 17:40:27 UTC
b7e9277 test: fix tests re: #7447 05 April 2019, 17:11:14 UTC
8b72173 fix(document): set full validator path on validatorProperties if `propsParameter` set on validator Fix #7447 05 April 2019, 17:00:41 UTC
af21703 style: fix lint 05 April 2019, 16:24:31 UTC
84e9884 feat(document): add Document#isEmpty() and corresponding helpers for nested paths Fix #5369 05 April 2019, 16:17:13 UTC
back to top