Bump mongoose from 7.4.1 to 8.0.1 #94

Closed
dependabot[bot] wants to merge 1 commits from dependabot/npm_and_yarn/mongoose-8.0.1 into main
dependabot[bot] commented 2023-11-20 08:32:25 -08:00 (Migrated from github.com)

Bumps mongoose from 7.4.1 to 8.0.1.

Release notes

Sourced from mongoose's releases.

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

7.6.2 / 2023-10-13

  • perf: avoid storing a separate entry in schema subpaths for every element in an array #13953 #13874
  • fix(document): avoid triggering setter when initializing Model.prototype.collection to allow defining collection as a schema path name #13968 #13956
  • fix(model): make bulkSave() save changes in discriminator paths if calling bulkSave() on base model #13959 #13907
  • fix(document): allow calling $model() with no args for TypeScript #13963 #13878
  • fix(schema): handle embedded discriminators defined using Schema.prototype.discriminator() #13958 #13898
  • types(model): make InsertManyResult consistent with return type of insertMany #13965 #13904
  • types(models): add cleaner type definitions for insertMany() with no generics to prevent errors when using insertMany() in generic classes #13964 #13957
  • types(schematypes): allow defining map path using type: 'Map' in addition to type: Map #13960 #13755

... (truncated)

Changelog

Sourced from mongoose's changelog.

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

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

7.6.4 / 2023-10-30

  • fix(connection): retain modified status for documents created outside a transaction during transaction retries #14017 #13973
  • fix(schema): handle recursive schemas in discriminator definitions #14011 #13978
  • fix: handle casting $or underneath $elemMatch #14007 #13974
  • fix(populate): allow using options: { strictPopulate: false } to disable strict populate #13863
  • docs: fix differences between sample codes and documentation #13998 suzuki
  • docs: fix missing import and change wrong variable name #13992 suzuki

6.12.2 / 2023-10-25

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

... (truncated)

Commits
  • 4e78234 chore: release 8.0.1
  • 287d304 docs: add mongoose 8 to mongodb server compatibility guide
  • 069ffaa Merge branch '7.x'
  • 8fb5ece chore: quick fix for 7.x docs build
  • fd40799 chore: fix docs search generation for 8.x release
  • 7f935cf chore: use 8.x as default search version
  • 6bc0291 style: fix lint from merge issues
  • 37d6051 Merge branch '7.x'
  • db7a983 chore: improve 7.x docs deploy script
  • c6f1121 chore: add publish script for 7.x
  • 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.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.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> <h1>7.6.2 / 2023-10-13</h1> <ul> <li>perf: avoid storing a separate entry in schema subpaths for every element in an array <a href="https://redirect.github.com/Automattic/mongoose/issues/13953">#13953</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13874">#13874</a></li> <li>fix(document): avoid triggering setter when initializing Model.prototype.collection to allow defining collection as a schema path name <a href="https://redirect.github.com/Automattic/mongoose/issues/13968">#13968</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13956">#13956</a></li> <li>fix(model): make bulkSave() save changes in discriminator paths if calling bulkSave() on base model <a href="https://redirect.github.com/Automattic/mongoose/issues/13959">#13959</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13907">#13907</a></li> <li>fix(document): allow calling $model() with no args for TypeScript <a href="https://redirect.github.com/Automattic/mongoose/issues/13963">#13963</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13878">#13878</a></li> <li>fix(schema): handle embedded discriminators defined using Schema.prototype.discriminator() <a href="https://redirect.github.com/Automattic/mongoose/issues/13958">#13958</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13898">#13898</a></li> <li>types(model): make InsertManyResult consistent with return type of insertMany <a href="https://redirect.github.com/Automattic/mongoose/issues/13965">#13965</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13904">#13904</a></li> <li>types(models): add cleaner type definitions for insertMany() with no generics to prevent errors when using insertMany() in generic classes <a href="https://redirect.github.com/Automattic/mongoose/issues/13964">#13964</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13957">#13957</a></li> <li>types(schematypes): allow defining map path using type: 'Map' in addition to type: Map <a href="https://redirect.github.com/Automattic/mongoose/issues/13960">#13960</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13755">#13755</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.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> <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>7.6.4 / 2023-10-30</h1> <ul> <li>fix(connection): retain modified status for documents created outside a transaction during transaction retries <a href="https://redirect.github.com/Automattic/mongoose/issues/14017">#14017</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13973">#13973</a></li> <li>fix(schema): handle recursive schemas in discriminator definitions <a href="https://redirect.github.com/Automattic/mongoose/issues/14011">#14011</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13978">#13978</a></li> <li>fix: handle casting $or underneath $elemMatch <a href="https://redirect.github.com/Automattic/mongoose/issues/14007">#14007</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13974">#13974</a></li> <li>fix(populate): allow using options: { strictPopulate: false } to disable strict populate <a href="https://redirect.github.com/Automattic/mongoose/issues/13863">#13863</a></li> <li>docs: fix differences between sample codes and documentation <a href="https://redirect.github.com/Automattic/mongoose/issues/13998">#13998</a> <a href="https://github.com/suzuki">suzuki</a></li> <li>docs: fix missing import and change wrong variable name <a href="https://redirect.github.com/Automattic/mongoose/issues/13992">#13992</a> <a href="https://github.com/suzuki">suzuki</a></li> </ul> <h1>6.12.2 / 2023-10-25</h1> <ul> <li>fix: add fullPath to ValidatorProps <a href="https://redirect.github.com/Automattic/mongoose/issues/13995">#13995</a> <a href="https://github.com/Freezystem">Freezystem</a></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> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Automattic/mongoose/commit/4e782340cda0c51d2e3e7456a115a94b706f5b2b"><code>4e78234</code></a> chore: release 8.0.1</li> <li><a href="https://github.com/Automattic/mongoose/commit/287d30482d8fd2537c3f31934964eb4f7f7585c9"><code>287d304</code></a> docs: add mongoose 8 to mongodb server compatibility guide</li> <li><a href="https://github.com/Automattic/mongoose/commit/069ffaa07af4539df4ddc2bb7013812ee1b1d5c4"><code>069ffaa</code></a> Merge branch '7.x'</li> <li><a href="https://github.com/Automattic/mongoose/commit/8fb5ecec36d0091761cf61ca4af306f6060f20fa"><code>8fb5ece</code></a> chore: quick fix for 7.x docs build</li> <li><a href="https://github.com/Automattic/mongoose/commit/fd407997e49ca2c9fb2663e1faab6d6ae96ca43c"><code>fd40799</code></a> chore: fix docs search generation for 8.x release</li> <li><a href="https://github.com/Automattic/mongoose/commit/7f935cf58ac2be0783606a121bce6744ab4b1efc"><code>7f935cf</code></a> chore: use 8.x as default search version</li> <li><a href="https://github.com/Automattic/mongoose/commit/6bc02916b14e2ca0381f46ae72420e6466f3bc99"><code>6bc0291</code></a> style: fix lint from merge issues</li> <li><a href="https://github.com/Automattic/mongoose/commit/37d605125c426a496a16c772320ad1fd904e07a3"><code>37d6051</code></a> Merge branch '7.x'</li> <li><a href="https://github.com/Automattic/mongoose/commit/db7a9838d553823f40482fd078f2d95083a8bacf"><code>db7a983</code></a> chore: improve 7.x docs deploy script</li> <li><a href="https://github.com/Automattic/mongoose/commit/c6f11215a4ad9e5cdb995ebc86e2a109b134c684"><code>c6f1121</code></a> chore: add publish script for 7.x</li> <li>Additional commits viewable in <a href="https://github.com/Automattic/mongoose/compare/7.4.1...8.0.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=7.4.1&new-version=8.0.1)](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-04 08:11:40 -08:00 (Migrated from github.com)

Superseded by #96.

Superseded by #96.

Pull request closed

Sign in to join this conversation.
No description provided.