Bump mongoose from 7.4.1 to 8.0.3 #98

Closed
dependabot[bot] wants to merge 1 commits from dependabot/npm_and_yarn/mongoose-8.0.3 into main
dependabot[bot] commented 2023-12-11 08:35:18 -08:00 (Migrated from github.com)

Bumps mongoose from 7.4.1 to 8.0.3.

Release notes

Sourced from mongoose's releases.

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

8.0.2 / 2023-11-28

  • fix(populate): set populated docs in correct order when populating virtual underneath doc array with justOne #14105
  • fix(populate): fix curPath to update appropriately #14099 #14098 csy1204
  • types: make property names show up in intellisense for UpdateQuery #14123 #14090
  • types(document): correct return type for doc.deleteOne() re: Mongoose 8 breaking change #14110 #14081
  • types: correct types for when includeResultMetadata: true is set #14078
  • types(models): allow specifying timestamps as inline option for bulkWrite() operations #14112 #14072
  • docs: fix rendering of 7.x server compatibility #14086 laupow
  • docs(source/api): fix "index.js" -> "mongoose.js" rename #14125
  • docs(README): update breaking change version #14126

8.0.1 / 2023-11-15

  • fix: retain key order with aliases when creating indexes with alias #14042 meabed
  • fix: handle nonexistent collection with diffIndexes #14029 #14010
  • types(model+query): correctly remove count from TypeScript types to reflect removal of runtime support #14076 #14067 #14062
  • types: correct this parameter for methods and statics #14028 #14027 ruxxzebre
  • types(model+query): unpack arrays in distinct return type #14047 #14026
  • types: add missing Types.UUID typings #14023 #13103 k725
  • docs: add mongoose 8 to mongodb server compatibility guide #14064
  • docs: fix typo in queries.md #14065 MuhibAhmed

8.0.0 / 2023-10-31

  • docs: add version support notes for Mongoose 8, including EOL date for Mongoose 6

8.0.0-rc0 / 2023-10-24

  • BREAKING CHANGE: use MongoDB node driver 6, drop support for rawResult option and findOneAndRemove() #13753
  • BREAKING CHANGE: apply minimize by default when updating document #13843
  • BREAKING CHANGE: remove id setter #13784
  • BREAKING CHANGE: remove overwrite option for updateOne(), findOneAndUpdate(), etc. #13989 #13578
  • BREAKING CHANGE: make model.prototype.deleteOne() return query, not promise #13660 #13369
  • BREAKING CHANGE: remove Model.count(), Query.prototype.count() #13618 #13598
  • BREAKING CHANGE: allow null values for string enum #13620 #3044
  • BREAKING CHANGE: make base schema paths come before discriminator schema paths when running setters, validators, etc. #13846 #13794
  • BREAKING CHANGE: make Model.validate() use Model.castObject() to cast, and return casted copy of object instead of modifying in place #13287 #12668
  • BREAKING CHANGE: make internal file names all camelCase #13950 #13909 #13308
  • BREAKING CHANGE: make create() wait for all documents to finish inserting or error out before throwing an error if ordered = false #13621 #4628

... (truncated)

Changelog

Sourced from mongoose's changelog.

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

7.6.7 / 2023-12-06

  • fix: avoid minimizing single nested subdocs if they are required #14151 #14058
  • fix(populate): allow deselecting discriminator key when populating #14155 #3230
  • fix: allow adding discriminators using Schema.prototype.discriminator() to subdocuments after defining parent schema #14131 #14109
  • fix(schema): avoid creating unnecessary clone of schematype in nested array so nested document arrays use correct constructor #14128 #14101
  • fix(populate): call transform object with single id instead of array when populating a justOne path under an array #14135 #14073
  • types: add back mistakenly removed findByIdAndRemove() function signature #14136 #14132

8.0.2 / 2023-11-28

  • fix(populate): set populated docs in correct order when populating virtual underneath doc array with justOne #14105
  • fix(populate): fix curPath to update appropriately #14099 #14098 csy1204
  • types: make property names show up in intellisense for UpdateQuery #14123 #14090
  • types(document): correct return type for doc.deleteOne() re: Mongoose 8 breaking change #14110 #14081
  • types: correct types for when includeResultMetadata: true is set #14078
  • types(models): allow specifying timestamps as inline option for bulkWrite() operations #14112 #14072
  • docs: fix rendering of 7.x server compatibility #14086 laupow
  • docs(source/api): fix "index.js" -> "mongoose.js" rename #14125
  • docs(README): update breaking change version #14126

7.6.6 / 2023-11-27

  • perf: avoid double-running setter logic when calling push() #14120 #11380
  • fix(populate): set populated docs in correct order when populating virtual underneath doc array with justOne #14105 #14018
  • fix: bump mongodb driver -> 5.9.1 #14084 #13829 lorand-horvath
  • types: allow defining document array using [{ prop: String }] syntax #14095 #13424
  • types: correct types for when includeResultMetadata: true is set #14078 #13987 prathamVaidya
  • types(query): base filters and projections off of RawDocType instead of DocType so autocomplete doesn't show populate #14118 #14077
  • types: make property names show up in intellisense for UpdateQuery #14123 #14090
  • types(model): support calling Model.validate() with pathsToSkip option #14088 #14003
  • docs: remove "DEPRECATED" warning mistakenly added to read() tags param #13980

8.0.1 / 2023-11-15

  • fix: retain key order with aliases when creating indexes with alias #14042 meabed
  • fix: handle nonexistent collection with diffIndexes #14029 #14010
  • types(model+query): correctly remove count from TypeScript types to reflect removal of runtime support #14076 #14067 #14062
  • types: correct this parameter for methods and statics #14028 #14027 ruxxzebre
  • types(model+query): unpack arrays in distinct return type #14047 #14026

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)
Bumps [mongoose](https://github.com/Automattic/mongoose) from 7.4.1 to 8.0.3. <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.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> <h1>8.0.2 / 2023-11-28</h1> <ul> <li>fix(populate): set populated docs in correct order when populating virtual underneath doc array with justOne <a href="https://redirect.github.com/Automattic/mongoose/issues/14105">#14105</a></li> <li>fix(populate): fix curPath to update appropriately <a href="https://redirect.github.com/Automattic/mongoose/issues/14099">#14099</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14098">#14098</a> <a href="https://github.com/csy1204">csy1204</a></li> <li>types: make property names show up in intellisense for UpdateQuery <a href="https://redirect.github.com/Automattic/mongoose/issues/14123">#14123</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14090">#14090</a></li> <li>types(document): correct return type for doc.deleteOne() re: Mongoose 8 breaking change <a href="https://redirect.github.com/Automattic/mongoose/issues/14110">#14110</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14081">#14081</a></li> <li>types: correct types for when includeResultMetadata: true is set <a href="https://redirect.github.com/Automattic/mongoose/issues/14078">#14078</a></li> <li>types(models): allow specifying timestamps as inline option for bulkWrite() operations <a href="https://redirect.github.com/Automattic/mongoose/issues/14112">#14112</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14072">#14072</a></li> <li>docs: fix rendering of 7.x server compatibility <a href="https://redirect.github.com/Automattic/mongoose/issues/14086">#14086</a> <a href="https://github.com/laupow">laupow</a></li> <li>docs(source/api): fix &quot;index.js&quot; -&gt; &quot;mongoose.js&quot; rename <a href="https://redirect.github.com/Automattic/mongoose/issues/14125">#14125</a></li> <li>docs(README): update breaking change version <a href="https://redirect.github.com/Automattic/mongoose/issues/14126">#14126</a></li> </ul> <h1>8.0.1 / 2023-11-15</h1> <ul> <li>fix: retain key order with aliases when creating indexes with alias <a href="https://redirect.github.com/Automattic/mongoose/issues/14042">#14042</a> <a href="https://github.com/meabed">meabed</a></li> <li>fix: handle nonexistent collection with diffIndexes <a href="https://redirect.github.com/Automattic/mongoose/issues/14029">#14029</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14010">#14010</a></li> <li>types(model+query): correctly remove count from TypeScript types to reflect removal of runtime support <a href="https://redirect.github.com/Automattic/mongoose/issues/14076">#14076</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14067">#14067</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14062">#14062</a></li> <li>types: correct <code>this</code> parameter for methods and statics <a href="https://redirect.github.com/Automattic/mongoose/issues/14028">#14028</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14027">#14027</a> <a href="https://github.com/ruxxzebre">ruxxzebre</a></li> <li>types(model+query): unpack arrays in distinct return type <a href="https://redirect.github.com/Automattic/mongoose/issues/14047">#14047</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14026">#14026</a></li> <li>types: add missing Types.UUID typings <a href="https://redirect.github.com/Automattic/mongoose/issues/14023">#14023</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13103">#13103</a> <a href="https://github.com/k725">k725</a></li> <li>docs: add mongoose 8 to mongodb server compatibility guide <a href="https://redirect.github.com/Automattic/mongoose/issues/14064">#14064</a></li> <li>docs: fix typo in queries.md <a href="https://redirect.github.com/Automattic/mongoose/issues/14065">#14065</a> <a href="https://github.com/MuhibAhmed">MuhibAhmed</a></li> </ul> <h1>8.0.0 / 2023-10-31</h1> <ul> <li>docs: add version support notes for Mongoose 8, including EOL date for Mongoose 6</li> </ul> <h1>8.0.0-rc0 / 2023-10-24</h1> <ul> <li>BREAKING CHANGE: use MongoDB node driver 6, drop support for rawResult option and findOneAndRemove() <a href="https://redirect.github.com/Automattic/mongoose/issues/13753">#13753</a></li> <li>BREAKING CHANGE: apply minimize by default when updating document <a href="https://redirect.github.com/Automattic/mongoose/issues/13843">#13843</a></li> <li>BREAKING CHANGE: remove <code>id</code> setter <a href="https://redirect.github.com/Automattic/mongoose/issues/13784">#13784</a></li> <li>BREAKING CHANGE: remove overwrite option for updateOne(), findOneAndUpdate(), etc. <a href="https://redirect.github.com/Automattic/mongoose/issues/13989">#13989</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13578">#13578</a></li> <li>BREAKING CHANGE: make model.prototype.deleteOne() return query, not promise <a href="https://redirect.github.com/Automattic/mongoose/issues/13660">#13660</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13369">#13369</a></li> <li>BREAKING CHANGE: remove <code>Model.count()</code>, <code>Query.prototype.count()</code> <a href="https://redirect.github.com/Automattic/mongoose/issues/13618">#13618</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13598">#13598</a></li> <li>BREAKING CHANGE: allow null values for string enum <a href="https://redirect.github.com/Automattic/mongoose/issues/13620">#13620</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/3044">#3044</a></li> <li>BREAKING CHANGE: make base schema paths come before discriminator schema paths when running setters, validators, etc. <a href="https://redirect.github.com/Automattic/mongoose/issues/13846">#13846</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13794">#13794</a></li> <li>BREAKING CHANGE: make Model.validate() use Model.castObject() to cast, and return casted copy of object instead of modifying in place <a href="https://redirect.github.com/Automattic/mongoose/issues/13287">#13287</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/12668">#12668</a></li> <li>BREAKING CHANGE: make internal file names all camelCase <a href="https://redirect.github.com/Automattic/mongoose/issues/13950">#13950</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13909">#13909</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13308">#13308</a></li> <li>BREAKING CHANGE: make create() wait for all documents to finish inserting or error out before throwing an error if ordered = false <a href="https://redirect.github.com/Automattic/mongoose/issues/13621">#13621</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/4628">#4628</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.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> <h1>7.6.7 / 2023-12-06</h1> <ul> <li>fix: avoid minimizing single nested subdocs if they are required <a href="https://redirect.github.com/Automattic/mongoose/issues/14151">#14151</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14058">#14058</a></li> <li>fix(populate): allow deselecting discriminator key when populating <a href="https://redirect.github.com/Automattic/mongoose/issues/14155">#14155</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/3230">#3230</a></li> <li>fix: allow adding discriminators using Schema.prototype.discriminator() to subdocuments after defining parent schema <a href="https://redirect.github.com/Automattic/mongoose/issues/14131">#14131</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14109">#14109</a></li> <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>fix(populate): call transform object with single id instead of array when populating a justOne path under an array <a href="https://redirect.github.com/Automattic/mongoose/issues/14135">#14135</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14073">#14073</a></li> <li>types: add back mistakenly removed findByIdAndRemove() function signature <a href="https://redirect.github.com/Automattic/mongoose/issues/14136">#14136</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14132">#14132</a></li> </ul> <h1>8.0.2 / 2023-11-28</h1> <ul> <li>fix(populate): set populated docs in correct order when populating virtual underneath doc array with justOne <a href="https://redirect.github.com/Automattic/mongoose/issues/14105">#14105</a></li> <li>fix(populate): fix curPath to update appropriately <a href="https://redirect.github.com/Automattic/mongoose/issues/14099">#14099</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14098">#14098</a> <a href="https://github.com/csy1204">csy1204</a></li> <li>types: make property names show up in intellisense for UpdateQuery <a href="https://redirect.github.com/Automattic/mongoose/issues/14123">#14123</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14090">#14090</a></li> <li>types(document): correct return type for doc.deleteOne() re: Mongoose 8 breaking change <a href="https://redirect.github.com/Automattic/mongoose/issues/14110">#14110</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14081">#14081</a></li> <li>types: correct types for when includeResultMetadata: true is set <a href="https://redirect.github.com/Automattic/mongoose/issues/14078">#14078</a></li> <li>types(models): allow specifying timestamps as inline option for bulkWrite() operations <a href="https://redirect.github.com/Automattic/mongoose/issues/14112">#14112</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14072">#14072</a></li> <li>docs: fix rendering of 7.x server compatibility <a href="https://redirect.github.com/Automattic/mongoose/issues/14086">#14086</a> <a href="https://github.com/laupow">laupow</a></li> <li>docs(source/api): fix &quot;index.js&quot; -&gt; &quot;mongoose.js&quot; rename <a href="https://redirect.github.com/Automattic/mongoose/issues/14125">#14125</a></li> <li>docs(README): update breaking change version <a href="https://redirect.github.com/Automattic/mongoose/issues/14126">#14126</a></li> </ul> <h1>7.6.6 / 2023-11-27</h1> <ul> <li>perf: avoid double-running setter logic when calling <code>push()</code> <a href="https://redirect.github.com/Automattic/mongoose/issues/14120">#14120</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/11380">#11380</a></li> <li>fix(populate): set populated docs in correct order when populating virtual underneath doc array with justOne <a href="https://redirect.github.com/Automattic/mongoose/issues/14105">#14105</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14018">#14018</a></li> <li>fix: bump mongodb driver -&gt; 5.9.1 <a href="https://redirect.github.com/Automattic/mongoose/issues/14084">#14084</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13829">#13829</a> <a href="https://github.com/lorand-horvath">lorand-horvath</a></li> <li>types: allow defining document array using [{ prop: String }] syntax <a href="https://redirect.github.com/Automattic/mongoose/issues/14095">#14095</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13424">#13424</a></li> <li>types: correct types for when includeResultMetadata: true is set <a href="https://redirect.github.com/Automattic/mongoose/issues/14078">#14078</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13987">#13987</a> <a href="https://github.com/prathamVaidya">prathamVaidya</a></li> <li>types(query): base filters and projections off of RawDocType instead of DocType so autocomplete doesn't show populate <a href="https://redirect.github.com/Automattic/mongoose/issues/14118">#14118</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14077">#14077</a></li> <li>types: make property names show up in intellisense for UpdateQuery <a href="https://redirect.github.com/Automattic/mongoose/issues/14123">#14123</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14090">#14090</a></li> <li>types(model): support calling Model.validate() with pathsToSkip option <a href="https://redirect.github.com/Automattic/mongoose/issues/14088">#14088</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14003">#14003</a></li> <li>docs: remove &quot;DEPRECATED&quot; warning mistakenly added to read() tags param <a href="https://redirect.github.com/Automattic/mongoose/issues/13980">#13980</a></li> </ul> <h1>8.0.1 / 2023-11-15</h1> <ul> <li>fix: retain key order with aliases when creating indexes with alias <a href="https://redirect.github.com/Automattic/mongoose/issues/14042">#14042</a> <a href="https://github.com/meabed">meabed</a></li> <li>fix: handle nonexistent collection with diffIndexes <a href="https://redirect.github.com/Automattic/mongoose/issues/14029">#14029</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14010">#14010</a></li> <li>types(model+query): correctly remove count from TypeScript types to reflect removal of runtime support <a href="https://redirect.github.com/Automattic/mongoose/issues/14076">#14076</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14067">#14067</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14062">#14062</a></li> <li>types: correct <code>this</code> parameter for methods and statics <a href="https://redirect.github.com/Automattic/mongoose/issues/14028">#14028</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14027">#14027</a> <a href="https://github.com/ruxxzebre">ruxxzebre</a></li> <li>types(model+query): unpack arrays in distinct return type <a href="https://redirect.github.com/Automattic/mongoose/issues/14047">#14047</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14026">#14026</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/aa4b38af06eaead585b9986e1cfd9a831abcd647"><code>aa4b38a</code></a> chore: release 8.0.3</li> <li><a href="https://github.com/Automattic/mongoose/commit/2c8b6ab4f0fb3c0db2864e94c1a400da1cd8b2ec"><code>2c8b6ab</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14160">#14160</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/14147">gh-14147</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/e3a35c267f8f2d566befc5b3adf96f079a184198"><code>e3a35c2</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14159">#14159</a> from jaypea/patch-1</li> <li><a href="https://github.com/Automattic/mongoose/commit/78a78e63098a75458a1a4c2fa25c88e9d032f24c"><code>78a78e6</code></a> seperate overrides</li> <li><a href="https://github.com/Automattic/mongoose/commit/0fc2e5c1cb9a0b5ecca0419e409aaa7f8367f3ee"><code>0fc2e5c</code></a> remove whitespace</li> <li><a href="https://github.com/Automattic/mongoose/commit/fc635bf6f8f37fd22e1900240c913ab313160bc2"><code>fc635bf</code></a> types: handle using BigInt global class in schema definitions</li> <li><a href="https://github.com/Automattic/mongoose/commit/36384e7fc360b62c9d9d3cb3b65c6b01fe2682f8"><code>36384e7</code></a> add missing Type for applyDefaults</li> <li><a href="https://github.com/Automattic/mongoose/commit/c97d91ccb95736b8d3365de8bffb02c31d6fd541"><code>c97d91c</code></a> Merge branch '7.x'</li> <li><a href="https://github.com/Automattic/mongoose/commit/4a3851760dc1f13558601a57e9f60de1c40d4b1c"><code>4a38517</code></a> chore: release 7.6.7</li> <li><a href="https://github.com/Automattic/mongoose/commit/f3ca86748c2b1dbc6cf5cd1f84fa196cd42eb65f"><code>f3ca867</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14156">#14156</a> from hasezoey/removeUtilsOptions</li> <li>Additional commits viewable in <a href="https://github.com/Automattic/mongoose/compare/7.4.1...8.0.3">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=7.4.1&new-version=8.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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>
dependabot[bot] commented 2024-01-15 08:14:58 -08:00 (Migrated from github.com)

Superseded by #121.

Superseded by #121.

Pull request closed

Sign in to join this conversation.
No description provided.