Bump mongoose from 7.4.1 to 8.0.2 #96

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

Bumps mongoose from 7.4.1 to 8.0.2.

Release notes

Sourced from mongoose's releases.

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
  • BREAKING CHANGE: refactor out mongoose/lib/mongoose.js file to allow importing Mongoose without MongoDB driver #13905
  • BREAKING CHANGE(types): allow null for optional fields #13901
  • BREAKING CHANGE(types): infer return types types for Model.distinct and Query.distinct #13836 kaulshashank

7.6.3 / 2023-10-17

  • fix(populate): handle multiple spaces when specifying paths to populate using space-delimited paths #13984 #13951
  • fix(update): avoid applying defaults on query filter when upserting with empty update #13983 #13962
  • fix(model): add versionKey to bulkWrite when inserting or upserting #13981 #13944
  • docs: fix typo in timestamps docs #13976 danielcoker

... (truncated)

Changelog

Sourced from mongoose's changelog.

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
  • 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

7.6.5 / 2023-11-14

  • fix: handle update validators and single nested doc with numeric paths #14066 #13977
  • fix: handle recursive schema array in discriminator definition #14068 #14055
  • fix: diffIndexes treats namespace error as empty #14048 #14029
  • docs(migrating_to_7): add note about requiring new with ObjectId #14021 #14020

6.12.3 / 2023-11-07

  • fix(ChangeStream): correctly handle hydrate option when using change stream as stream instead of iterator #14052
  • fix(schema): fix dangling reference to virtual in tree after removeVirtual() #14019 #13085
  • fix(document): avoid unmarking modified on nested path if no initial value stored and already modified #14053 #14024
  • fix(document): consistently avoid marking subpaths of nested paths as modified #14053 #14022

8.0.0 / 2023-10-31

... (truncated)

Commits
  • 12c5892 chore: release 8.0.2
  • 4dead0a Merge branch '7.x'
  • 6b78ba1 Merge pull request #14125 from hasezoey/fixWebsiteMongoose
  • f2fc4c4 Merge pull request #14126 from hasezoey/80release
  • d31310a Merge pull request #14116 from hasezoey/slightWebsite
  • 79aab0c chore: release 7.6.6
  • 0634ba4 Merge pull request #14102 from Automattic/IslandRhythms/cleanup
  • 280bd4a types: make property names show up in intellisense for UpdateQuery
  • 140a118 chore: correctly clean relative to version path
  • a26d304 Update package.json
  • Additional commits viewable in compare view

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.2. <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.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> <li>BREAKING CHANGE: refactor out <code>mongoose/lib/mongoose.js</code> file to allow importing Mongoose without MongoDB driver <a href="https://redirect.github.com/Automattic/mongoose/issues/13905">#13905</a></li> <li>BREAKING CHANGE(types): allow <code>null</code> for optional fields <a href="https://redirect.github.com/Automattic/mongoose/issues/13901">#13901</a></li> <li>BREAKING CHANGE(types): infer return types types for Model.distinct and Query.distinct <a href="https://redirect.github.com/Automattic/mongoose/issues/13836">#13836</a> <a href="https://github.com/kaulshashank">kaulshashank</a></li> </ul> <h1>7.6.3 / 2023-10-17</h1> <ul> <li>fix(populate): handle multiple spaces when specifying paths to populate using space-delimited paths <a href="https://redirect.github.com/Automattic/mongoose/issues/13984">#13984</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13951">#13951</a></li> <li>fix(update): avoid applying defaults on query filter when upserting with empty update <a href="https://redirect.github.com/Automattic/mongoose/issues/13983">#13983</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13962">#13962</a></li> <li>fix(model): add versionKey to bulkWrite when inserting or upserting <a href="https://redirect.github.com/Automattic/mongoose/issues/13981">#13981</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13944">#13944</a></li> <li>docs: fix typo in timestamps docs <a href="https://redirect.github.com/Automattic/mongoose/issues/13976">#13976</a> <a href="https://github.com/danielcoker">danielcoker</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.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> <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>7.6.5 / 2023-11-14</h1> <ul> <li>fix: handle update validators and single nested doc with numeric paths <a href="https://redirect.github.com/Automattic/mongoose/issues/14066">#14066</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13977">#13977</a></li> <li>fix: handle recursive schema array in discriminator definition <a href="https://redirect.github.com/Automattic/mongoose/issues/14068">#14068</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14055">#14055</a></li> <li>fix: diffIndexes treats namespace error as empty <a href="https://redirect.github.com/Automattic/mongoose/issues/14048">#14048</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14029">#14029</a></li> <li>docs(migrating_to_7): add note about requiring new with ObjectId <a href="https://redirect.github.com/Automattic/mongoose/issues/14021">#14021</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14020">#14020</a></li> </ul> <h1>6.12.3 / 2023-11-07</h1> <ul> <li>fix(ChangeStream): correctly handle hydrate option when using change stream as stream instead of iterator <a href="https://redirect.github.com/Automattic/mongoose/issues/14052">#14052</a></li> <li>fix(schema): fix dangling reference to virtual in tree after <code>removeVirtual()</code> <a href="https://redirect.github.com/Automattic/mongoose/issues/14019">#14019</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13085">#13085</a></li> <li>fix(document): avoid unmarking modified on nested path if no initial value stored and already modified <a href="https://redirect.github.com/Automattic/mongoose/issues/14053">#14053</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14024">#14024</a></li> <li>fix(document): consistently avoid marking subpaths of nested paths as modified <a href="https://redirect.github.com/Automattic/mongoose/issues/14053">#14053</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/14022">#14022</a></li> </ul> <p>8.0.0 / 2023-10-31</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Automattic/mongoose/commit/12c58921bb683acfa9c78a497a6f8e684ea5c368"><code>12c5892</code></a> chore: release 8.0.2</li> <li><a href="https://github.com/Automattic/mongoose/commit/4dead0a5c4a3cd7009ed033778cee8f5ee1b5a96"><code>4dead0a</code></a> Merge branch '7.x'</li> <li><a href="https://github.com/Automattic/mongoose/commit/6b78ba1129a2b7e2c486f4bb7d67b954d67400af"><code>6b78ba1</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14125">#14125</a> from hasezoey/fixWebsiteMongoose</li> <li><a href="https://github.com/Automattic/mongoose/commit/f2fc4c466fb5b17f3e94452725752f7f503f30e6"><code>f2fc4c4</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14126">#14126</a> from hasezoey/80release</li> <li><a href="https://github.com/Automattic/mongoose/commit/d31310ab107d4b3c7de6d1a85ad7daf34a0c84e7"><code>d31310a</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14116">#14116</a> from hasezoey/slightWebsite</li> <li><a href="https://github.com/Automattic/mongoose/commit/79aab0c0d357fc2bafb428c4ab18d2d246473892"><code>79aab0c</code></a> chore: release 7.6.6</li> <li><a href="https://github.com/Automattic/mongoose/commit/0634ba49e8e24243ea74226a0b6454d0ab55f10b"><code>0634ba4</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14102">#14102</a> from Automattic/IslandRhythms/cleanup</li> <li><a href="https://github.com/Automattic/mongoose/commit/280bd4a2c59c9d149a9bf0f0b13709d89450b4c4"><code>280bd4a</code></a> types: make property names show up in intellisense for UpdateQuery</li> <li><a href="https://github.com/Automattic/mongoose/commit/140a118dda67cbf9d9ce62ba0eac1ad0efd13154"><code>140a118</code></a> chore: correctly clean relative to version path</li> <li><a href="https://github.com/Automattic/mongoose/commit/a26d3048069bddbb404fc234bc93d97f35e15b2b"><code>a26d304</code></a> Update package.json</li> <li>Additional commits viewable in <a href="https://github.com/Automattic/mongoose/compare/7.4.1...8.0.2">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.2)](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 2023-12-11 08:35:20 -08:00 (Migrated from github.com)

Superseded by #98.

Superseded by #98.

Pull request closed

Sign in to join this conversation.
No description provided.