Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump mongoose from 5.6.3 to 6.6.6 in /server #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 20, 2022

Bumps mongoose from 5.6.3 to 6.6.6.

Release notes

Sourced from mongoose's releases.

6.6.5 / 2022-10-05

  • fix(document): set defaults on subdocuments underneath init-ed single nested subdocument #12523 #12515
  • fix: make Jest fake timers check more robust to other libs that overwrite time functions #12527 #12514
  • fix(types): indicate that Schema.prototype.discriminator() returns this #12522 #12457
  • fix(types): add "estimatedDocumentCount" and "countDocuments" as possible hooks #12519 #12516
  • docs(models): add section on MongoDB Views #12526 #5694
  • docs(subdocs): clarify that populated docs are not subdocs #12521 #12398
  • docs(change-streams): remove unnecessary obsolete comment about needing to use mongodb driver change streams #12444

6.6.4 / 2022-10-03

  • fix(model): avoid saving applied defaults if path is deselected #12506 #12414
  • fix(types): correct DocType for auto typed query helpers #12342
  • fix(types): avoid "excessively deep" type instantiation error when using bulkWrite() with type that extends from document #12277
  • fix(types): avoid relying on typeof this, which isn't supported in TypeScript < 4.4 #12375
  • docs(schema): correct example for Schema.prototype.discriminator() #12493
  • docs(typescript): clean up query helpers examples #12342
  • chore: use mongodb-memory-server for testing #12262 hasezoey

6.6.3 / 2022-09-30

  • fix(query): treat findOne(_id) as equivalent to findOne({ _id }) #12485 #12325
  • fix(timestamps): findOneAndUpdate creates subdocs with timestamps in reverse order #12484 #12475 lpizzinidev
  • fix(types): make schema.plugin() more flexible for schemas that don't define any generics #12486 #12454
  • fix(types): add "array of array key-value pairs" as a argument option for "query.sort()" #12483 #12434 hasezoey
  • fix(types): remove unused defaults in "PluginFunction" #12459 hasezoey
  • fix(types): update DiscriminatorSchema to have better names and combine statics #12460 hasezoey

6.6.2 / 2022-09-26

  • fix(model): avoid deleting shared schema methods in fix for #12254 #12423
  • fix(document): set $inc default value in case field has not been specified on the document #12435 lpizzinidev
  • fix(query): handle select: false on map paths in query results #12467 lpizzinidev
  • fix(types): add HydratedDocumentFromSchema to make it easier to pull inferred hydrated doc type #12464 #12319
  • fix(types): add sanitizeFilter to types #12465 zrosenbauer
  • fix(types): infer number enum types from schema if using enum: [0, 1] as const #12463 #12242
  • docs(validation): add section on global schematype validation, clean up other issues #12430
  • docs: add clarification about overwrite flag in model.js #12447 Tzvika-m
  • docs: change to consistent "Example:" for jsdoc comments #12432 hasezoey

6.6.1 / 2022-09-14

  • fix: correctly apply defaults after subdoc init #12328
  • fix(array): avoid using default _id when using pull() #12294
  • fix: allow null values inside $expr objects #12429 MartinDrost
  • fix(query): use correct Query constructor when cloning query #12418
  • docs(website): remove setting "latest38x" which is not used anywhere #12396 hasezoey

6.6.0 / 2022-09-08

... (truncated)

Changelog

Sourced from mongoose's changelog.

6.6.6 / 2022-10-20

  • fix(update): handle runValidators when using $set on a doc array in discriminator schema #12571 #12518
  • fix(document): allow creating document with document array and top-level key named schema #12569 #12480
  • fix(cast): make schema-level strictQuery override schema-level strict for query filters #12570 #12508
  • fix(aggregate): avoid adding extra $match stage if user manually set discriminator key to correct value in first pipeline stage #12568 #12478
  • fix: Throws error when updating a key name that match the discriminator key name on nested object #12534 #12517 lpizzinidev
  • fix(types): add limit to $filter expression #12553 raphael-papazikas
  • fix(types): correct replaceWith type pipeline stage #12535 FabioCingottini
  • fix(types): add missing densify type pipeline type #12533 FabioCingottini
  • docs(populate): added transform option description #12560 #12551 lpizzinidev
  • docs(connection): add sample to useDb() documentation #12541 lpizzinidev
  • docs(guide): update broken read-preference links #12538 #12525 hasezoey
  • chore: add TypeScript version field to issue template #12532 hasezoey

6.6.5 / 2022-10-05

  • fix(document): set defaults on subdocuments underneath init-ed single nested subdocument #12523 #12515
  • fix: make Jest fake timers check more robust to other libs that overwrite time functions #12527 #12514
  • fix(types): indicate that Schema.prototype.discriminator() returns this #12522 #12457
  • fix(types): add "estimatedDocumentCount" and "countDocuments" as possible hooks #12519 #12516
  • docs(models): add section on MongoDB Views #12526 #5694
  • docs(subdocs): clarify that populated docs are not subdocs #12521 #12398
  • docs(change-streams): remove unnecessary obsolete comment about needing to use mongodb driver change streams #12444

6.6.4 / 2022-10-03

  • fix(model): avoid saving applied defaults if path is deselected #12506 #12414
  • fix(types): correct DocType for auto typed query helpers #12342
  • fix(types): avoid "excessively deep" type instantiation error when using bulkWrite() with type that extends from document #12277
  • fix(types): avoid relying on typeof this, which isn't supported in TypeScript < 4.4 #12375
  • docs(schema): correct example for Schema.prototype.discriminator() #12493
  • docs(typescript): clean up query helpers examples #12342
  • chore: use mongodb-memory-server for testing #12262 hasezoey

6.6.3 / 2022-09-30

  • fix(query): treat findOne(_id) as equivalent to findOne({ _id }) #12485 #12325
  • fix(timestamps): findOneAndUpdate creates subdocs with timestamps in reverse order #12484 #12475 lpizzinidev
  • fix(types): make schema.plugin() more flexible for schemas that don't define any generics #12486 #12454
  • fix(types): add "array of array key-value pairs" as a argument option for "query.sort()" #12483 #12434 hasezoey
  • fix(types): remove unused defaults in "PluginFunction" #12459 hasezoey
  • fix(types): update DiscriminatorSchema to have better names and combine statics #12460 hasezoey

6.6.2 / 2022-09-26

  • fix(model): avoid deleting shared schema methods in fix for #12254 #12423
  • fix(document): set $inc default value in case field has not been specified on the document #12435 lpizzinidev
  • fix(query): handle select: false on map paths in query results #12467 lpizzinidev
  • fix(types): add HydratedDocumentFromSchema to make it easier to pull inferred hydrated doc type #12464 #12319

... (truncated)

Commits
  • c3e9206 chore: release 6.6.6
  • 7fb5114 Merge pull request #12571 from Automattic/vkarpov15/gh-12518
  • 9133393 Merge pull request #12569 from Automattic/vkarpov15/gh-12480
  • 03f19f5 Merge pull request #12568 from Automattic/vkarpov15/gh-12478
  • 2b8434d fix(update): handle runValidators when using $set on a doc array in discrim...
  • 3141cb6 fix(document): allow creating document with document array and top-level key ...
  • c798368 fix(aggregate): avoid adding extra $match stage if user manually set discri...
  • e519505 Merge pull request #12534 from lpizzinidev/fix-nested-discriminator-key
  • e852d85 docs(populate): add info on using populate transform to set localization para...
  • bf42639 Merge pull request #12560 from lpizzinidev/docs-populate-transform
  • 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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [mongoose](https://github.com/Automattic/mongoose) from 5.6.3 to 6.6.6.
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@5.6.3...6.6.6)

---
updated-dependencies:
- dependency-name: mongoose
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants