Bump mongoose from 7.4.1 to 7.6.3 #73

Merged
dependabot[bot] merged 1 commits from dependabot/npm_and_yarn/mongoose-7.6.3 into main 2023-11-01 02:22:51 -07:00
dependabot[bot] commented 2023-10-23 09:19:14 -07:00 (Migrated from github.com)

Bumps mongoose from 7.4.1 to 7.6.3.

Release notes

Sourced from mongoose's releases.

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

7.5.4 / 2023-10-04

  • fix: avoid stripping out id property when _id is set #13933 #13892 #13867
  • fix(QueryCursor): avoid double-applying schema paths so you can include select: false fields with + projection using cursors #13932 #13773
  • fix(query): allow deselecting discriminator key using - syntax #13929 #13760
  • fix(query): handle $round in $expr as array #13928 #13881
  • fix(document): call pre('validate') hooks when modifying a path underneath triply nested subdoc #13912 #13876
  • fix(mongoose): correctly handle global applyPluginsToChildSchemas option #13911 #13887
  • types: add insertMany array overload with options #13931 t1bb4r
  • docs(compatibility): add Mongoose 7 support to compatibility matrix #13875
  • docs: amend some awkward FAQ wording #13925 peteboere

7.5.3 / 2023-09-25

  • fix(document): handle MongoDB Long when casting BigInts #13869 #13791
  • fix(model): make bulkSave() persist changes that happen in pre('save') middleware #13885 #13799
  • fix: handle casting $elemMatch underneath $not underneath another $elemMatch #13893 #13880
  • fix(model): make bulkWrite casting respect global setDefaultsOnInsert #13870 #13823
  • fix(document): handle default values for discriminator key with embedded discriminators #13891 #13835

... (truncated)

Changelog

Sourced from mongoose's changelog.

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

7.5.4 / 2023-10-04

  • fix: avoid stripping out id property when _id is set #13933 #13892 #13867
  • fix(QueryCursor): avoid double-applying schema paths so you can include select: false fields with + projection using cursors #13932 #13773
  • fix(query): allow deselecting discriminator key using - syntax #13929 #13760
  • fix(query): handle $round in $expr as array #13928 #13881
  • fix(document): call pre('validate') hooks when modifying a path underneath triply nested subdoc #13912 #13876
  • fix(mongoose): correctly handle global applyPluginsToChildSchemas option #13911 #13887
  • types: add insertMany array overload with options #13931 t1bb4r
  • docs(compatibility): add Mongoose 7 support to compatibility matrix #13875
  • docs: amend some awkward FAQ wording #13925 peteboere

7.5.3 / 2023-09-25

  • fix(document): handle MongoDB Long when casting BigInts #13869 #13791
  • fix(model): make bulkSave() persist changes that happen in pre('save') middleware #13885 #13799
  • fix: handle casting $elemMatch underneath $not underneath another $elemMatch #13893 #13880
  • fix(model): make bulkWrite casting respect global setDefaultsOnInsert #13870 #13823
  • fix(document): handle default values for discriminator key with embedded discriminators #13891 #13835

... (truncated)

Commits
  • 8831f03 chore: release 7.6.3
  • d7b2bde Merge pull request #13984 from Automattic/vkarpov15/gh-13951
  • d7a3052 Merge pull request #13983 from Automattic/vkarpov15/gh-13962
  • 68c50c2 Merge pull request #13981 from Automattic/vkarpov15/gh-13944
  • bbe3a0b Merge pull request #13979 from ZachLeviPixel/schema-discriminator-typescript-...
  • 6419a87 fix(populate): handle multiple spaces when specifying paths to populate using...
  • e44e75b fix(update): avoid applying defaults on query filter when upserting with empt...
  • fa05928 fix(model): add versionKey to bulkWrite when inserting or upserting
  • 49f5296 Fix Typescript definition of schema.discriminator to allow strings.
  • 236a7a7 Merge pull request #13976 from danielcoker/patch-1
  • 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 7.6.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>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> <li>fix: avoid CastError when passing different value of discriminator key in <code>$or</code> <a href="https://redirect.github.com/Automattic/mongoose/issues/13938">#13938</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13906">#13906</a></li> </ul> <h1>7.5.4 / 2023-10-04</h1> <ul> <li>fix: avoid stripping out <code>id</code> property when <code>_id</code> is set <a href="https://redirect.github.com/Automattic/mongoose/issues/13933">#13933</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13892">#13892</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13867">#13867</a></li> <li>fix(QueryCursor): avoid double-applying schema paths so you can include select: false fields with + projection using cursors <a href="https://redirect.github.com/Automattic/mongoose/issues/13932">#13932</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13773">#13773</a></li> <li>fix(query): allow deselecting discriminator key using - syntax <a href="https://redirect.github.com/Automattic/mongoose/issues/13929">#13929</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13760">#13760</a></li> <li>fix(query): handle $round in $expr as array <a href="https://redirect.github.com/Automattic/mongoose/issues/13928">#13928</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13881">#13881</a></li> <li>fix(document): call pre('validate') hooks when modifying a path underneath triply nested subdoc <a href="https://redirect.github.com/Automattic/mongoose/issues/13912">#13912</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13876">#13876</a></li> <li>fix(mongoose): correctly handle global applyPluginsToChildSchemas option <a href="https://redirect.github.com/Automattic/mongoose/issues/13911">#13911</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13887">#13887</a></li> <li>types: add insertMany array overload with options <a href="https://redirect.github.com/Automattic/mongoose/issues/13931">#13931</a> <a href="https://github.com/t1bb4r">t1bb4r</a></li> <li>docs(compatibility): add Mongoose 7 support to compatibility matrix <a href="https://redirect.github.com/Automattic/mongoose/issues/13875">#13875</a></li> <li>docs: amend some awkward FAQ wording <a href="https://redirect.github.com/Automattic/mongoose/issues/13925">#13925</a> <a href="https://github.com/peteboere">peteboere</a></li> </ul> <h1>7.5.3 / 2023-09-25</h1> <ul> <li>fix(document): handle MongoDB Long when casting BigInts <a href="https://redirect.github.com/Automattic/mongoose/issues/13869">#13869</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13791">#13791</a></li> <li>fix(model): make bulkSave() persist changes that happen in pre('save') middleware <a href="https://redirect.github.com/Automattic/mongoose/issues/13885">#13885</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13799">#13799</a></li> <li>fix: handle casting $elemMatch underneath $not underneath another $elemMatch <a href="https://redirect.github.com/Automattic/mongoose/issues/13893">#13893</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13880">#13880</a></li> <li>fix(model): make bulkWrite casting respect global setDefaultsOnInsert <a href="https://redirect.github.com/Automattic/mongoose/issues/13870">#13870</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13823">#13823</a></li> <li>fix(document): handle default values for discriminator key with embedded discriminators <a href="https://redirect.github.com/Automattic/mongoose/issues/13891">#13891</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13835">#13835</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>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> <li>fix: avoid CastError when passing different value of discriminator key in <code>$or</code> <a href="https://redirect.github.com/Automattic/mongoose/issues/13938">#13938</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13906">#13906</a></li> </ul> <h1>7.5.4 / 2023-10-04</h1> <ul> <li>fix: avoid stripping out <code>id</code> property when <code>_id</code> is set <a href="https://redirect.github.com/Automattic/mongoose/issues/13933">#13933</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13892">#13892</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13867">#13867</a></li> <li>fix(QueryCursor): avoid double-applying schema paths so you can include select: false fields with + projection using cursors <a href="https://redirect.github.com/Automattic/mongoose/issues/13932">#13932</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13773">#13773</a></li> <li>fix(query): allow deselecting discriminator key using - syntax <a href="https://redirect.github.com/Automattic/mongoose/issues/13929">#13929</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13760">#13760</a></li> <li>fix(query): handle $round in $expr as array <a href="https://redirect.github.com/Automattic/mongoose/issues/13928">#13928</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13881">#13881</a></li> <li>fix(document): call pre('validate') hooks when modifying a path underneath triply nested subdoc <a href="https://redirect.github.com/Automattic/mongoose/issues/13912">#13912</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13876">#13876</a></li> <li>fix(mongoose): correctly handle global applyPluginsToChildSchemas option <a href="https://redirect.github.com/Automattic/mongoose/issues/13911">#13911</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13887">#13887</a></li> <li>types: add insertMany array overload with options <a href="https://redirect.github.com/Automattic/mongoose/issues/13931">#13931</a> <a href="https://github.com/t1bb4r">t1bb4r</a></li> <li>docs(compatibility): add Mongoose 7 support to compatibility matrix <a href="https://redirect.github.com/Automattic/mongoose/issues/13875">#13875</a></li> <li>docs: amend some awkward FAQ wording <a href="https://redirect.github.com/Automattic/mongoose/issues/13925">#13925</a> <a href="https://github.com/peteboere">peteboere</a></li> </ul> <h1>7.5.3 / 2023-09-25</h1> <ul> <li>fix(document): handle MongoDB Long when casting BigInts <a href="https://redirect.github.com/Automattic/mongoose/issues/13869">#13869</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13791">#13791</a></li> <li>fix(model): make bulkSave() persist changes that happen in pre('save') middleware <a href="https://redirect.github.com/Automattic/mongoose/issues/13885">#13885</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13799">#13799</a></li> <li>fix: handle casting $elemMatch underneath $not underneath another $elemMatch <a href="https://redirect.github.com/Automattic/mongoose/issues/13893">#13893</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13880">#13880</a></li> <li>fix(model): make bulkWrite casting respect global setDefaultsOnInsert <a href="https://redirect.github.com/Automattic/mongoose/issues/13870">#13870</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13823">#13823</a></li> <li>fix(document): handle default values for discriminator key with embedded discriminators <a href="https://redirect.github.com/Automattic/mongoose/issues/13891">#13891</a> <a href="https://redirect.github.com/Automattic/mongoose/issues/13835">#13835</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/8831f031f3d759802422f15d8602922f4def31d7"><code>8831f03</code></a> chore: release 7.6.3</li> <li><a href="https://github.com/Automattic/mongoose/commit/d7b2bde4ca611b1781c47dfd6b906065cc9cf673"><code>d7b2bde</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13984">#13984</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/13951">gh-13951</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/d7a3052cda816e88b1982dfcf3da551d1b022e2f"><code>d7a3052</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13983">#13983</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/13962">gh-13962</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/68c50c20f1adbaf7290da6f9aa6a3e04f1544f68"><code>68c50c2</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13981">#13981</a> from Automattic/vkarpov15/<a href="https://redirect.github.com/Automattic/mongoose/issues/13944">gh-13944</a></li> <li><a href="https://github.com/Automattic/mongoose/commit/bbe3a0b3c56865eec535d4743b05da2980488e74"><code>bbe3a0b</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13979">#13979</a> from ZachLeviPixel/schema-discriminator-typescript-...</li> <li><a href="https://github.com/Automattic/mongoose/commit/6419a8787f2b4ce2dbaaf143dcfa0cd1feb733e9"><code>6419a87</code></a> fix(populate): handle multiple spaces when specifying paths to populate using...</li> <li><a href="https://github.com/Automattic/mongoose/commit/e44e75b07ae5a4974249905761249d73d28d5951"><code>e44e75b</code></a> fix(update): avoid applying defaults on query filter when upserting with empt...</li> <li><a href="https://github.com/Automattic/mongoose/commit/fa059289e5bb14531a225b239fe6f9c29d0e4730"><code>fa05928</code></a> fix(model): add versionKey to bulkWrite when inserting or upserting</li> <li><a href="https://github.com/Automattic/mongoose/commit/49f5296eb22f10e56c88bce2f435ba75d4d9bb4f"><code>49f5296</code></a> Fix Typescript definition of schema.discriminator to allow strings.</li> <li><a href="https://github.com/Automattic/mongoose/commit/236a7a76ede18cc99a95f9760faf241160814f5b"><code>236a7a7</code></a> Merge pull request <a href="https://redirect.github.com/Automattic/mongoose/issues/13976">#13976</a> from danielcoker/patch-1</li> <li>Additional commits viewable in <a href="https://github.com/Automattic/mongoose/compare/7.4.1...7.6.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=7.6.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>
Sign in to join this conversation.
No description provided.