Skip to content

Commit 07946be

Browse files
committedSep 6, 2021
chore: release v5.13.9
1 parent 264554f commit 07946be

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎History.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
5.13.9 / 2021-09-06
2+
===================
3+
* fix(populate): avoid setting empty array on lean document when populate result is undefined #10599
4+
* fix(document): make depopulate() handle populated paths underneath document arrays #10592
5+
* fix: peg @types/bson version to 1.x || 4.0.x to avoid stubbed 4.2.x release #10678
6+
* fix(index.d.ts): simplify UpdateQuery to avoid "excessively deep and possibly infinite" errors with `extends Document` and `any` #10647
7+
* fix(index.d.ts): allow specifying weights as an IndexOption #10586
8+
* fix: upgrade to mpath v0.8.4 re: security issue #10683
9+
110
5.13.8 / 2021-08-23
211
===================
312
* fix(populate): handle populating subdoc array virtual with sort #10552

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mongoose",
33
"description": "Mongoose MongoDB ODM",
4-
"version": "5.13.8",
4+
"version": "5.13.9",
55
"author": "Guillermo Rauch <guillermo@learnboost.com>",
66
"keywords": [
77
"mongodb",
@@ -79,7 +79,7 @@
7979
"build-browser": "node build-browser.js",
8080
"prepublishOnly": "npm run build-browser",
8181
"release": "git pull && git push origin master --tags && npm publish",
82-
"release-legacy": "git pull origin 4.x && git push origin 4.x --tags && npm publish --tag legacy",
82+
"release-legacy": "git pull origin 5.x && git push origin 5.x --tags && npm publish --tag legacy",
8383
"test": "mocha --exit ./test/*.test.js ./test/typescript/main.test.js",
8484
"tdd": "mocha ./test/*.test.js ./test/typescript/main.test.js --watch --recursive --watch-files ./**/*.js",
8585
"test-cov": "nyc --reporter=html --reporter=text npm test"

0 commit comments

Comments
 (0)
Please sign in to comment.