Bump mongoose from 8.0.2 to 8.1.1 #130

Closed
dependabot[bot] wants to merge 1 commits from dependabot/npm_and_yarn/mongoose-8.1.1 into main
dependabot[bot] commented 2024-01-29 08:38:16 -08:00 (Migrated from github.com)

Bumps mongoose from 8.0.2 to 8.1.1.

Release notes

Sourced from mongoose's releases.

8.1.1 / 2024-01-24

  • fix(model): throw readable error when calling Model() with a string instead of model() #14288 #14281
  • fix(document): handle setting nested path to spread doc with extra properties #14287 #14269
  • types(query): add back context and setDefaultsOnInsert as Mongoose-specific query options #14284 #14282
  • types(query): add missing runValidators back to MongooseQueryOptions #14278 #14275

8.1.0 / 2024-01-16

  • feat: upgrade MongoDB driver -> 6.3.0 #14241 #14189 #14108 #14104
  • feat: add Atlas search index helpers to Models and Schemas #14251 #14232
  • feat(connection): add listCollections() helper to connections #14257
  • feat(schematype): merge rather than overwrite default schematype validators #14124 #14070
  • feat(types): support type hints in InferSchemaType #14008 JavaScriptBach

8.0.4 / 2024-01-08

  • fix(update): set CastError path to full path if casting update fails #14161 #14114
  • fix: cast error when there is an elemMatch in the and clause #14171 tosaka-n
  • fix: allow defining index on base model that applies to all discriminators #14176 peplin
  • fix(model): deep clone bulkWrite() updateOne arguments to avoid mutating documents in update #14197 #14164
  • fix(populate): handle deselecting _id with array of fields in populate() #14242 #14231
  • types(model+query): use stricter typings for updateX(), replaceOne(),deleteX() Model functions #14228 #14204
  • types: fix return types for findByIdAndDelete overrides #14196 #14190
  • types(schema): add missing omit() method #14235 amitbeck
  • types(model): add missing strict property to bulkWrite() top level options #14239
  • docs(compatibility): add note that Mongoose 5.13 is fully compatible with MongoDB server 5 #14230 #14149
  • docs: add shared schemas guide #14211
  • docs: update TLS/SSL guide for Mongoose v8 - MongoDB v6 driver deprecations #14170 andylwelch
  • docs: update findOneAndUpdate tutorial to use includeResultMetadata #14208 #14207
  • docs: clarify disabling _id on subdocs #14195 #14194

8.0.3 / 2023-12-07

  • fix(schema): avoid creating unnecessary clone of schematype in nested array so nested document arrays use correct constructor #14128 #14101
  • docs(connections): add example of registering connection event handlers #14150
  • docs(populate): add example of using refPath and ref functions #14133 #13834
  • types: handle using BigInt global class in schema definitions #14160 #14147
  • types: make findOneAndDelete() without options return result doc, not ModifyResult #14153 #14130
  • types(model): add no-generic override for insertMany() with options #14152 #13999
  • types: add missing Type for applyDefaults #14159 jaypea
Changelog

Sourced from mongoose's changelog.

8.1.1 / 2024-01-24

  • fix(model): throw readable error when calling Model() with a string instead of model() #14288 #14281
  • fix(document): handle setting nested path to spread doc with extra properties #14287 #14269
  • types(query): add back context and setDefaultsOnInsert as Mongoose-specific query options #14284 #14282
  • types(query): add missing runValidators back to MongooseQueryOptions #14278 #14275

8.1.0 / 2024-01-16

  • feat: upgrade MongoDB driver -> 6.3.0 #14241 #14189 #14108 #14104
  • feat: add Atlas search index helpers to Models and Schemas #14251 #14232
  • feat(connection): add listCollections() helper to connections #14257
  • feat(schematype): merge rather than overwrite default schematype validators #14124 #14070
  • feat(types): support type hints in InferSchemaType #14008 JavaScriptBach

8.0.4 / 2024-01-08

  • fix(update): set CastError path to full path if casting update fails #14161 #14114
  • fix: cast error when there is an elemMatch in the and clause #14171 tosaka-n
  • fix: allow defining index on base model that applies to all discriminators #14176 peplin
  • fix(model): deep clone bulkWrite() updateOne arguments to avoid mutating documents in update #14197 #14164
  • fix(populate): handle deselecting _id with array of fields in populate() #14242 #14231
  • types(model+query): use stricter typings for updateX(), replaceOne(),deleteX() Model functions #14228 #14204
  • types: fix return types for findByIdAndDelete overrides #14196 #14190
  • types(schema): add missing omit() method #14235 amitbeck
  • types(model): add missing strict property to bulkWrite() top level options #14239
  • docs(compatibility): add note that Mongoose 5.13 is fully compatible with MongoDB server 5 #14230 #14149
  • docs: add shared schemas guide #14211
  • docs: update TLS/SSL guide for Mongoose v8 - MongoDB v6 driver deprecations #14170 andylwelch
  • docs: update findOneAndUpdate tutorial to use includeResultMetadata #14208 #14207
  • docs: clarify disabling _id on subdocs #14195 #14194

7.6.8 / 2024-01-08

  • perf(schema): remove unnecessary lookahead in numeric subpath check
  • fix(discriminator): handle reusing schema with embedded discriminators defined using Schema.prototype.discriminator #14202 #14162
  • fix(ChangeStream): avoid suppressing errors in closed change stream #14206 #14177

6.12.5 / 2024-01-03

  • perf(schema): remove unnecessary lookahead in numeric subpath check
  • fix(document): allow setting nested path to null #14226
  • fix(document): avoid flattening dotted paths in mixed path underneath nested path #14198 #14178
  • fix: add ignoreAtomics option to isModified() for better backwards compatibility with Mongoose 5 #14213

6.12.4 / 2023-12-27

  • fix: upgrade mongodb driver -> 4.17.2
  • fix(document): avoid treating nested projection as inclusive when applying defaults #14173 #14115
  • fix: account for null values when assigning isNew property #14172 #13883

... (truncated)

Commits
  • 6b3f998 chore: release 8.1.1
  • 0d54bea Merge pull request #14288 from Automattic/vkarpov15/gh-14281
  • 2a7fdef Merge pull request #14287 from Automattic/vkarpov15/gh-14269
  • 59ea552 docs: fix markdown typo, fix #14290
  • a36a180 fix(model): throw readable error when calling Model() with a string instead...
  • 943d6b0 fix(document): handle setting nested path to spread doc with extra properties
  • 880bb2c Merge pull request #14284 from Automattic/vkarpov15/gh-14282
  • fa00898 types(query): add back context and setDefaultsOnInsert as Mongoose-specif...
  • 8265b2e Merge pull request #14278 from Automattic/vkarpov15/gh-14275
  • c1905c1 types(query): add missing runValidators back to MongooseQueryOptions
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note


Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [mongoose](https://github.com/Automattic/mongoose) from 8.0.2 to 8.1.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Automattic/mongoose/releases">mongoose's releases</a>.</em></p> <blockquote> <h1>8.1.1 / 2024-01-24</h1> <ul> <li>fix(model): throw readable error when calling Model() with a string instead of model() <a href="https://redirect.github.com/Automattic/mongoose/issues/14288">#14288</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14281">#14281</a></li> <li>fix(document): handle setting nested path to spread doc with extra properties <a href="https://redirect.github.com/Automattic/mongoose/issues/14287">#14287</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14269">#14269</a></li> <li>types(query): add back context and setDefaultsOnInsert as Mongoose-specific query options <a href="https://redirect.github.com/Automattic/mongoose/issues/14284">#14284</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14282">#14282</a></li> <li>types(query): add missing runValidators back to MongooseQueryOptions <a href="https://redirect.github.com/Automattic/mongoose/issues/14278">#14278</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14275">#14275</a></li> </ul> <h1>8.1.0 / 2024-01-16</h1> <ul> <li>feat: upgrade MongoDB driver -&gt; 6.3.0 <a href="https://redirect.github.com/Automattic/mongoose/issues/14241">#14241</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14189">#14189</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14108">#14108</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14104">#14104</a></li> <li>feat: add Atlas search index helpers to Models and Schemas <a href="https://redirect.github.com/Automattic/mongoose/issues/14251">#14251</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14232">#14232</a></li> <li>feat(connection): add listCollections() helper to connections <a href="https://redirect.github.com/Automattic/mongoose/issues/14257">#14257</a></li> <li>feat(schematype): merge rather than overwrite default schematype validators <a href="https://redirect.github.com/Automattic/mongoose/issues/14124">#14124</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14070">#14070</a></li> <li>feat(types): support type hints in InferSchemaType <a href="https://redirect.github.com/Automattic/mongoose/issues/14008">#14008</a> <a href="https://github.com/JavaScriptBach">JavaScriptBach</a></li> </ul> <h1>8.0.4 / 2024-01-08</h1> <ul> <li>fix(update): set CastError path to full path if casting update fails <a href="https://redirect.github.com/Automattic/mongoose/issues/14161">#14161</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14114">#14114</a></li> <li>fix: cast error when there is an elemMatch in the and clause <a href="https://redirect.github.com/Automattic/mongoose/issues/14171">#14171</a> <a href="https://github.com/tosaka-n">tosaka-n</a></li> <li>fix: allow defining index on base model that applies to all discriminators <a href="https://redirect.github.com/Automattic/mongoose/issues/14176">#14176</a> <a href="https://github.com/peplin">peplin</a></li> <li>fix(model): deep clone bulkWrite() updateOne arguments to avoid mutating documents in update <a href="https://redirect.github.com/Automattic/mongoose/issues/14197">#14197</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14164">#14164</a></li> <li>fix(populate): handle deselecting _id with array of fields in populate() <a href="https://redirect.github.com/Automattic/mongoose/issues/14242">#14242</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14231">#14231</a></li> <li>types(model+query): use stricter typings for updateX(), replaceOne(),deleteX() Model functions <a href="https://redirect.github.com/Automattic/mongoose/issues/14228">#14228</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14204">#14204</a></li> <li>types: fix return types for findByIdAndDelete overrides <a href="https://redirect.github.com/Automattic/mongoose/issues/14196">#14196</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14190">#14190</a></li> <li>types(schema): add missing omit() method <a href="https://redirect.github.com/Automattic/mongoose/issues/14235">#14235</a> <a href="https://github.com/amitbeck">amitbeck</a></li> <li>types(model): add missing strict property to bulkWrite() top level options <a href="https://redirect.github.com/Automattic/mongoose/issues/14239">#14239</a></li> <li>docs(compatibility): add note that Mongoose 5.13 is fully compatible with MongoDB server 5 <a href="https://redirect.github.com/Automattic/mongoose/issues/14230">#14230</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14149">#14149</a></li> <li>docs: add shared schemas guide <a href="https://redirect.github.com/Automattic/mongoose/issues/14211">#14211</a></li> <li>docs: update TLS/SSL guide for Mongoose v8 - MongoDB v6 driver deprecations <a href="https://redirect.github.com/Automattic/mongoose/issues/14170">#14170</a> <a href="https://github.com/andylwelch">andylwelch</a></li> <li>docs: update findOneAndUpdate tutorial to use includeResultMetadata <a href="https://redirect.github.com/Automattic/mongoose/issues/14208">#14208</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14207">#14207</a></li> <li>docs: clarify disabling _id on subdocs <a href="https://redirect.github.com/Automattic/mongoose/issues/14195">#14195</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14194">#14194</a></li> </ul> <h1>8.0.3 / 2023-12-07</h1> <ul> <li>fix(schema): avoid creating unnecessary clone of schematype in nested array so nested document arrays use correct constructor <a href="https://redirect.github.com/Automattic/mongoose/issues/14128">#14128</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14101">#14101</a></li> <li>docs(connections): add example of registering connection event handlers <a href="https://redirect.github.com/Automattic/mongoose/issues/14150">#14150</a></li> <li>docs(populate): add example of using <code>refPath</code> and <code>ref</code> functions <a href="https://redirect.github.com/Automattic/mongoose/issues/14133">#14133</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13834">#13834</a></li> <li>types: handle using BigInt global class in schema definitions <a href="https://redirect.github.com/Automattic/mongoose/issues/14160">#14160</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14147">#14147</a></li> <li>types: make findOneAndDelete() without options return result doc, not ModifyResult <a href="https://redirect.github.com/Automattic/mongoose/issues/14153">#14153</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14130">#14130</a></li> <li>types(model): add no-generic override for insertMany() with options <a href="https://redirect.github.com/Automattic/mongoose/issues/14152">#14152</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13999">#13999</a></li> <li>types: add missing Type for applyDefaults <a href="https://redirect.github.com/Automattic/mongoose/issues/14159">#14159</a> <a href="https://github.com/jaypea">jaypea</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md">mongoose's changelog</a>.</em></p> <blockquote> <h1>8.1.1 / 2024-01-24</h1> <ul> <li>fix(model): throw readable error when calling Model() with a string instead of model() <a href="https://redirect.github.com/Automattic/mongoose/issues/14288">#14288</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14281">#14281</a></li> <li>fix(document): handle setting nested path to spread doc with extra properties <a href="https://redirect.github.com/Automattic/mongoose/issues/14287">#14287</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14269">#14269</a></li> <li>types(query): add back context and setDefaultsOnInsert as Mongoose-specific query options <a href="https://redirect.github.com/Automattic/mongoose/issues/14284">#14284</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14282">#14282</a></li> <li>types(query): add missing runValidators back to MongooseQueryOptions <a href="https://redirect.github.com/Automattic/mongoose/issues/14278">#14278</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14275">#14275</a></li> </ul> <h1>8.1.0 / 2024-01-16</h1> <ul> <li>feat: upgrade MongoDB driver -&gt; 6.3.0 <a href="https://redirect.github.com/Automattic/mongoose/issues/14241">#14241</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14189">#14189</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14108">#14108</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14104">#14104</a></li> <li>feat: add Atlas search index helpers to Models and Schemas <a href="https://redirect.github.com/Automattic/mongoose/issues/14251">#14251</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14232">#14232</a></li> <li>feat(connection): add listCollections() helper to connections <a href="https://redirect.github.com/Automattic/mongoose/issues/14257">#14257</a></li> <li>feat(schematype): merge rather than overwrite default schematype validators <a href="https://redirect.github.com/Automattic/mongoose/issues/14124">#14124</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14070">#14070</a></li> <li>feat(types): support type hints in InferSchemaType <a href="https://redirect.github.com/Automattic/mongoose/issues/14008">#14008</a> <a href="https://github.com/JavaScriptBach">JavaScriptBach</a></li> </ul> <h1>8.0.4 / 2024-01-08</h1> <ul> <li>fix(update): set CastError path to full path if casting update fails <a href="https://redirect.github.com/Automattic/mongoose/issues/14161">#14161</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14114">#14114</a></li> <li>fix: cast error when there is an elemMatch in the and clause <a href="https://redirect.github.com/Automattic/mongoose/issues/14171">#14171</a> <a href="https://github.com/tosaka-n">tosaka-n</a></li> <li>fix: allow defining index on base model that applies to all discriminators <a href="https://redirect.github.com/Automattic/mongoose/issues/14176">#14176</a> <a href="https://github.com/peplin">peplin</a></li> <li>fix(model): deep clone bulkWrite() updateOne arguments to avoid mutating documents in update <a href="https://redirect.github.com/Automattic/mongoose/issues/14197">#14197</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14164">#14164</a></li> <li>fix(populate): handle deselecting _id with array of fields in populate() <a href="https://redirect.github.com/Automattic/mongoose/issues/14242">#14242</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14231">#14231</a></li> <li>types(model+query): use stricter typings for updateX(), replaceOne(),deleteX() Model functions <a href="https://redirect.github.com/Automattic/mongoose/issues/14228">#14228</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14204">#14204</a></li> <li>types: fix return types for findByIdAndDelete overrides <a href="https://redirect.github.com/Automattic/mongoose/issues/14196">#14196</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14190">#14190</a></li> <li>types(schema): add missing omit() method <a href="https://redirect.github.com/Automattic/mongoose/issues/14235">#14235</a> <a href="https://github.com/amitbeck">amitbeck</a></li> <li>types(model): add missing strict property to bulkWrite() top level options <a href="https://redirect.github.com/Automattic/mongoose/issues/14239">#14239</a></li> <li>docs(compatibility): add note that Mongoose 5.13 is fully compatible with MongoDB server 5 <a href="https://redirect.github.com/Automattic/mongoose/issues/14230">#14230</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14149">#14149</a></li> <li>docs: add shared schemas guide <a href="https://redirect.github.com/Automattic/mongoose/issues/14211">#14211</a></li> <li>docs: update TLS/SSL guide for Mongoose v8 - MongoDB v6 driver deprecations <a href="https://redirect.github.com/Automattic/mongoose/issues/14170">#14170</a> <a href="https://github.com/andylwelch">andylwelch</a></li> <li>docs: update findOneAndUpdate tutorial to use includeResultMetadata <a href="https://redirect.github.com/Automattic/mongoose/issues/14208">#14208</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14207">#14207</a></li> <li>docs: clarify disabling _id on subdocs <a href="https://redirect.github.com/Automattic/mongoose/issues/14195">#14195</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14194">#14194</a></li> </ul> <h1>7.6.8 / 2024-01-08</h1> <ul> <li>perf(schema): remove unnecessary lookahead in numeric subpath check</li> <li>fix(discriminator): handle reusing schema with embedded discriminators defined using Schema.prototype.discriminator <a href="https://redirect.github.com/Automattic/mongoose/issues/14202">#14202</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14162">#14162</a></li> <li>fix(ChangeStream): avoid suppressing errors in closed change stream <a href="https://redirect.github.com/Automattic/mongoose/issues/14206">#14206</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14177">#14177</a></li> </ul> <h1>6.12.5 / 2024-01-03</h1> <ul> <li>perf(schema): remove unnecessary lookahead in numeric subpath check</li> <li>fix(document): allow setting nested path to null <a href="https://redirect.github.com/Automattic/mongoose/issues/14226">#14226</a></li> <li>fix(document): avoid flattening dotted paths in mixed path underneath nested path <a href="https://redirect.github.com/Automattic/mongoose/issues/14198">#14198</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14178">#14178</a></li> <li>fix: add ignoreAtomics option to isModified() for better backwards compatibility with Mongoose 5 <a href="https://redirect.github.com/Automattic/mongoose/issues/14213">#14213</a></li> </ul> <h1>6.12.4 / 2023-12-27</h1> <ul> <li>fix: upgrade mongodb driver -&gt; 4.17.2</li> <li>fix(document): avoid treating nested projection as inclusive when applying defaults <a href="https://redirect.github.com/Automattic/mongoose/issues/14173">#14173</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14115">#14115</a></li> <li>fix: account for null values when assigning isNew property <a href="https://redirect.github.com/Automattic/mongoose/issues/14172">#14172</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13883">#13883</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Automattic/mongoose/commit/6b3f9987e14ad18db9e531db81991e6448f3b238"><code>6b3f998</code></a> chore: release 8.1.1</li> <li><a href="https://github.com/Automattic/mongoose/commit/0d54beaaefe23ce4ffd0ded95489228e33c391c1"><code>0d54bea</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14288">#14288</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/14281">gh-14281</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/2a7fdefca8b2416570433c35f8e480c771af3d6e"><code>2a7fdef</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14287">#14287</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/14269">gh-14269</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/59ea552c90386081c850a315b6be5954f5cd71a0"><code>59ea552</code></a> docs: fix markdown typo, fix <a href="https://redirect.github.com/Automattic/mongoose/issues/14290">#14290</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/a36a180b518cbc5c7fe846c68f8c0925ccc6eb68"><code>a36a180</code></a> fix(model): throw readable error when calling <code>Model()</code> with a string instead...</li> <li><a href="https://github.com/Automattic/mongoose/commit/943d6b07a4a6127ce34bfb25951241172e6221e8"><code>943d6b0</code></a> fix(document): handle setting nested path to spread doc with extra properties</li> <li><a href="https://github.com/Automattic/mongoose/commit/880bb2c74af4847c5533b9f75818de3bb547b012"><code>880bb2c</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14284">#14284</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/14282">gh-14282</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/fa00898e3f873a66623b12882e657c2d7c17d167"><code>fa00898</code></a> types(query): add back <code>context</code> and <code>setDefaultsOnInsert</code> as Mongoose-specif...</li> <li><a href="https://github.com/Automattic/mongoose/commit/8265b2e0ad45e0a6556db222f5dc7ef1aaccdf36"><code>8265b2e</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14278">#14278</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/14275">gh-14275</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/c1905c1666fe26bca902927602702f35d273844d"><code>c1905c1</code></a> types(query): add missing <code>runValidators</code> back to MongooseQueryOptions</li> <li>Additional commits viewable in <a href="https://github.com/Automattic/mongoose/compare/8.0.2...8.1.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mongoose&package-manager=npm_and_yarn&previous-version=8.0.2&new-version=8.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
dependabot[bot] commented 2024-05-06 06:22:43 -07:00 (Migrated from github.com)

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file. If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

Pull request closed

Sign in to join this conversation.
No description provided.