Skip to content

Commit

Permalink
chore: release 7.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Mar 13, 2024
1 parent a9cf7b0 commit 9afba5f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
7.6.10 / 2024-03-13
===================
* docs(model): add extra note about lean option for insertMany() skipping casting #14415
* docs(mongoose): add options.overwriteModel details to mongoose.model() docs #14422

6.12.7 / 2024-03-01
===================
* perf(model): make insertMany() lean option skip hydrating Mongoose docs #14376 #14372
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "mongoose",
"description": "Mongoose MongoDB ODM",
"version": "7.6.9",
"version": "7.6.10",
"author": "Guillermo Rauch <guillermo@learnboost.com>",
"keywords": [
"mongodb",
Expand Down
2 changes: 1 addition & 1 deletion scripts/tsc-diagnostics-check.js
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs');

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

console.log(stdin);

Expand Down

0 comments on commit 9afba5f

Please sign in to comment.