mongoose 6.2.3 → 6.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.lgtm.yml +3 -0
- package/CHANGELOG.md +16 -0
- package/dist/browser.umd.js +43 -46
- package/lib/document.js +7 -11
- package/lib/helpers/document/cleanModifiedSubpaths.js +1 -0
- package/lib/helpers/isAsyncFunction.js +6 -7
- package/lib/query.js +3 -3
- package/lib/queryhelpers.js +0 -20
- package/lib/schema/SubdocumentPath.js +1 -1
- package/lib/schema/documentarray.js +5 -4
- package/lib/types/ArraySubdocument.js +1 -1
- package/package.json +1 -1
- package/types/Connection.d.ts +212 -0
- package/types/index.d.ts +30 -199
package/.lgtm.yml
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
6.2.4 / 2022-02-28
|
|
2
|
+
==================
|
|
3
|
+
* fix(query): correctly return full deleteOne(), deleteMany() result #11211
|
|
4
|
+
* fix(query): handle update validators on deeply nested subdocuments #11455 #11394
|
|
5
|
+
* fix(discriminator): handle modifying multiple nested paths underneath a discriminator #11428
|
|
6
|
+
* perf: improve isAsyncFunction #11408 [Uzlopak](https://github.com/Uzlopak)
|
|
7
|
+
* fix(index.d.ts): add typedefs for Schema `pick()` #11448 [Moisei-Shkil](https://github.com/Moisei-Shkil)
|
|
8
|
+
* fix(index.d.ts): allow type override for distinct() #11306
|
|
9
|
+
* fix(index.d.ts): allow array of validators in schema definition #11355
|
|
10
|
+
* fix(index.d.ts): improve connection typings #11418 [Uzlopak](https://github.com/Uzlopak)
|
|
11
|
+
* docs: add timestamps docs #11336
|
|
12
|
+
* docs(timestamps): explain how timestamps works under the hood #11336
|
|
13
|
+
* docs(migrating_to_6): add model.exists breaking change returning doument instead of boolean #11407 [AbdelrahmanHafez](https://github.com/AbdelrahmanHafez)
|
|
14
|
+
* docs(index.d.ts): add docs for FilterQuery, UpdateQuery, and LeanDocument #11457 [Moisei-Shkil](https://github.com/Moisei-Shkil)
|
|
15
|
+
|
|
1
16
|
6.2.3 / 2022-02-21
|
|
2
17
|
==================
|
|
3
18
|
* fix(model): avoid dropping base model indexes when using discriminators with `Connection.prototype.syncIndexes()` #11424 #11421 [AbdelrahmanHafez](https://github.com/AbdelrahmanHafez)
|
|
@@ -10,6 +25,7 @@
|
|
|
10
25
|
* fix(index.d.ts): ValidationError `errors` only contains CastError or ValidationError #11369 [Uzlopak](https://github.com/Uzlopak)
|
|
11
26
|
* fix(index.d.ts): make InsertManyResult.insertedIds return an array of Types.ObjectId by default #11197
|
|
12
27
|
* fix(index.d.ts): allow pre('save') middleware with pre options #11257
|
|
28
|
+
* fix(index.d.ts): add `supressReservedKeysWarning` option to schema #11439 [hiukky](https://github.com/hiukky)
|
|
13
29
|
* docs(connections): improve replica set hostname docs with correct error message and info about `err.reason.servers` #11200
|
|
14
30
|
* docs(populate): add virtual populate match option documentation #11411 [remirobichet](https://github.com/remirobichet)
|
|
15
31
|
* docs(document): add note to API docs that flattenMaps defaults to `true` for `toJSON()` but not `toObject()` #11213
|