Skip to content

Commit 9afba5f

Browse files
committed
chore: release 7.6.10
1 parent a9cf7b0 commit 9afba5f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
7.6.10 / 2024-03-13
2+
===================
3+
* docs(model): add extra note about lean option for insertMany() skipping casting #14415
4+
* docs(mongoose): add options.overwriteModel details to mongoose.model() docs #14422
5+
16
6.12.7 / 2024-03-01
27
===================
38
* perf(model): make insertMany() lean option skip hydrating Mongoose docs #14376 #14372

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mongoose",
33
"description": "Mongoose MongoDB ODM",
4-
"version": "7.6.9",
4+
"version": "7.6.10",
55
"author": "Guillermo Rauch <[email protected]>",
66
"keywords": [
77
"mongodb",

scripts/tsc-diagnostics-check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const fs = require('fs');
44

55
const stdin = fs.readFileSync(0).toString('utf8');
6-
const maxInstantiations = isNaN(process.argv[2]) ? 120000 : parseInt(process.argv[2], 10);
6+
const maxInstantiations = isNaN(process.argv[2]) ? 125000 : parseInt(process.argv[2], 10);
77

88
console.log(stdin);
99

0 commit comments

Comments
 (0)