Bump mongoose from 7.4.1 to 8.0.0 #88

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

Bumps mongoose from 7.4.1 to 8.0.0.

Release notes

Sourced from mongoose's releases.

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

7.6.1 / 2023-10-09

7.6.0 / 2023-10-06

... (truncated)

Changelog

Sourced from mongoose's changelog.

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

7.6.1 / 2023-10-09

7.6.0 / 2023-10-06

... (truncated)

Commits
  • 5821568 chore: release 8.0.0
  • 3f850ce docs: add version support notes for Mongoose 8, including EOL date for Mongoo...
  • db92dd9 Merge pull request #14004 from hasezoey/fixwebsite
  • 68166bf chore(scripts/website): fix script to correctly parse "-rc" like versions
  • c28cffe chore: release 8.0.0-rc0
  • 4280457 Merge pull request #13937 from Automattic/8.0
  • 502ec4b Merge pull request #13990 from Automattic/vkarpov15/gh-13897
  • 572e018 chore: add 8.0.0-rc0 changelog
  • b567ec6 feat: upgrade to MongoDB driver 6.2.0
  • 9e9ad37 Merge branch 'master' into 8.0
  • 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.0. <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.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> <h1>7.6.1 / 2023-10-09</h1> <ul> <li>fix: bump bson to match mongodb@5.9.0 exactly <a href="https://redirect.github.com/Automattic/mongoose/issues/13947">#13947</a> <a href="https://github.com/hasezoey">hasezoey</a></li> <li>fix: raw result deprecation message <a href="https://redirect.github.com/Automattic/mongoose/issues/13954">#13954</a> <a href="https://github.com/simllll">simllll</a></li> <li>type: add types for includeResultMetadata <a href="https://redirect.github.com/Automattic/mongoose/issues/13955">#13955</a> <a href="https://github.com/simllll">simllll</a></li> <li>perf(npmignore): ignore newer files <a href="https://redirect.github.com/Automattic/mongoose/issues/13946">#13946</a> <a href="https://github.com/hasezoey">hasezoey</a></li> <li>perf: move mocha config from package.json to mocharc <a href="https://redirect.github.com/Automattic/mongoose/issues/13948">#13948</a> <a href="https://github.com/hasezoey">hasezoey</a></li> </ul> <h1>7.6.0 / 2023-10-06</h1> <ul> <li>feat: upgrade mongodb node driver -&gt; 5.9.0 <a href="https://redirect.github.com/Automattic/mongoose/issues/13927">#13927</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13926">#13926</a> <a href="https://github.com/sanguineti">sanguineti</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.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> <h1>7.6.1 / 2023-10-09</h1> <ul> <li>fix: bump bson to match mongodb@5.9.0 exactly <a href="https://redirect.github.com/Automattic/mongoose/issues/13947">#13947</a> <a href="https://github.com/hasezoey">hasezoey</a></li> <li>fix: raw result deprecation message <a href="https://redirect.github.com/Automattic/mongoose/issues/13954">#13954</a> <a href="https://github.com/simllll">simllll</a></li> <li>type: add types for includeResultMetadata <a href="https://redirect.github.com/Automattic/mongoose/issues/13955">#13955</a> <a href="https://github.com/simllll">simllll</a></li> <li>perf(npmignore): ignore newer files <a href="https://redirect.github.com/Automattic/mongoose/issues/13946">#13946</a> <a href="https://github.com/hasezoey">hasezoey</a></li> <li>perf: move mocha config from package.json to mocharc <a href="https://redirect.github.com/Automattic/mongoose/issues/13948">#13948</a> <a href="https://github.com/hasezoey">hasezoey</a></li> </ul> <h1>7.6.0 / 2023-10-06</h1> <ul> <li>feat: upgrade mongodb node driver -&gt; 5.9.0 <a href="https://redirect.github.com/Automattic/mongoose/issues/13927">#13927</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13926">#13926</a> <a href="https://github.com/sanguineti">sanguineti</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/582156858db3ca7fbaa8950dc997e0d9e8117b21"><code>5821568</code></a> chore: release 8.0.0</li> <li><a href="https://github.com/Automattic/mongoose/commit/3f850ceb9d9f13fa297d39c849fceee2b88d15bf"><code>3f850ce</code></a> docs: add version support notes for Mongoose 8, including EOL date for Mongoo...</li> <li><a href="https://github.com/Automattic/mongoose/commit/db92dd9f906bc609de0b96f52773b6320637ad86"><code>db92dd9</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/14004">#14004</a> from hasezoey/fixwebsite</li> <li><a href="https://github.com/Automattic/mongoose/commit/68166bf17c05d6652232bf0f2b3ecaddb3779279"><code>68166bf</code></a> chore(scripts/website): fix script to correctly parse &quot;-rc&quot; like versions</li> <li><a href="https://github.com/Automattic/mongoose/commit/c28cffea0a47ce07a4b154d4435eacfbc72c56d7"><code>c28cffe</code></a> chore: release 8.0.0-rc0</li> <li><a href="https://github.com/Automattic/mongoose/commit/428045768e9f9216a9680a7d7fae13b1d6fa3087"><code>4280457</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13937">#13937</a> from Automattic/8.0</li> <li><a href="https://github.com/Automattic/mongoose/commit/502ec4b77950e64031db7f66ca02361ab3cc9692"><code>502ec4b</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13990">#13990</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/13897">gh-13897</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/572e018e527f631997642c53ce39b878d1059f82"><code>572e018</code></a> chore: add 8.0.0-rc0 changelog</li> <li><a href="https://github.com/Automattic/mongoose/commit/b567ec6159beae7b2d6975d356ce8055ac7e7030"><code>b567ec6</code></a> feat: upgrade to MongoDB driver 6.2.0</li> <li><a href="https://github.com/Automattic/mongoose/commit/9e9ad375d5ebb4b11856b12699dc17225b9cb54e"><code>9e9ad37</code></a> Merge branch 'master' into 8.0</li> <li>Additional commits viewable in <a href="https://github.com/Automattic/mongoose/compare/7.4.1...8.0.0">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.0)](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-11-20 08:32:28 -08:00 (Migrated from github.com)

Superseded by #94.

Superseded by #94.

Pull request closed

Sign in to join this conversation.
No description provided.