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

build(deps-dev): bump mongoose from 8.0.0 to 8.1.2 #272

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 12, 2024

Bumps mongoose from 8.0.0 to 8.1.2.

Release notes

Sourced from mongoose's releases.

8.1.2 / 2024-02-08

  • fix: include virtuals in document array toString() output if toObject.virtuals set #14335 #14315
  • fix(document): handle setting nested path to spread doc with extra properties #14287 #14269
  • fix(populate): call setter on virtual populated path with populated doc instead of undefined #14314
  • fix(QueryCursor): remove callback parameter of AggregationCursor and QueryCursor #14299 DevooKim
  • types: add typescript support for arbitrary fields for the options parameter of Model functions which are of type MongooseQueryOptions #14342 #14341 FaizBShah
  • types(model): correct return type for findOneAndUpdate with includeResultMetadata and lean set #14336 #14303
  • types(connection): add type definition for createCollections() #14295 #14279
  • docs(timestamps): clarify that replaceOne() and findOneAndReplace() overwrite timestamps #14337 #14309

8.1.1 / 2024-01-24

  • fix(model): throw readable error when calling Model() with a string instead of model() #14288 #14281
  • fix(document): handle setting nested path to spread doc with extra properties #14287 #14269
  • types(query): add back context and setDefaultsOnInsert as Mongoose-specific query options #14284 #14282
  • types(query): add missing runValidators back to MongooseQueryOptions #14278 #14275

8.1.0 / 2024-01-16

  • feat: upgrade MongoDB driver -> 6.3.0 #14241 #14189 #14108 #14104
  • feat: add Atlas search index helpers to Models and Schemas #14251 #14232
  • feat(connection): add listCollections() helper to connections #14257
  • feat(schematype): merge rather than overwrite default schematype validators #14124 #14070
  • feat(types): support type hints in InferSchemaType #14008 JavaScriptBach

8.0.4 / 2024-01-08

  • fix(update): set CastError path to full path if casting update fails #14161 #14114
  • fix: cast error when there is an elemMatch in the and clause #14171 tosaka-n
  • fix: allow defining index on base model that applies to all discriminators #14176 peplin
  • fix(model): deep clone bulkWrite() updateOne arguments to avoid mutating documents in update #14197 #14164
  • fix(populate): handle deselecting _id with array of fields in populate() #14242 #14231
  • types(model+query): use stricter typings for updateX(), replaceOne(),deleteX() Model functions #14228 #14204
  • types: fix return types for findByIdAndDelete overrides #14196 #14190
  • types(schema): add missing omit() method #14235 amitbeck
  • types(model): add missing strict property to bulkWrite() top level options #14239
  • docs(compatibility): add note that Mongoose 5.13 is fully compatible with MongoDB server 5 #14230 #14149
  • docs: add shared schemas guide #14211
  • docs: update TLS/SSL guide for Mongoose v8 - MongoDB v6 driver deprecations #14170 andylwelch
  • docs: update findOneAndUpdate tutorial to use includeResultMetadata #14208 #14207
  • docs: clarify disabling _id on subdocs #14195 #14194

8.0.3 / 2023-12-07

  • fix(schema): avoid creating unnecessary clone of schematype in nested array so nested document arrays use correct constructor #14128 #14101
  • docs(connections): add example of registering connection event handlers #14150
  • docs(populate): add example of using refPath and ref functions #14133 #13834
  • types: handle using BigInt global class in schema definitions #14160 #14147
  • types: make findOneAndDelete() without options return result doc, not ModifyResult #14153 #14130

... (truncated)

Changelog

Sourced from mongoose's changelog.

8.1.2 / 2024-02-08

  • fix: include virtuals in document array toString() output if toObject.virtuals set #14335 #14315
  • fix(document): handle setting nested path to spread doc with extra properties #14287 #14269
  • fix(populate): call setter on virtual populated path with populated doc instead of undefined #14314
  • fix(QueryCursor): remove callback parameter of AggregationCursor and QueryCursor #14299 DevooKim
  • types: add typescript support for arbitrary fields for the options parameter of Model functions which are of type MongooseQueryOptions #14342 #14341 FaizBShah
  • types(model): correct return type for findOneAndUpdate with includeResultMetadata and lean set #14336 #14303
  • types(connection): add type definition for createCollections() #14295 #14279
  • docs(timestamps): clarify that replaceOne() and findOneAndReplace() overwrite timestamps #14337 #14309

8.1.1 / 2024-01-24

  • fix(model): throw readable error when calling Model() with a string instead of model() #14288 #14281
  • fix(document): handle setting nested path to spread doc with extra properties #14287 #14269
  • types(query): add back context and setDefaultsOnInsert as Mongoose-specific query options #14284 #14282
  • types(query): add missing runValidators back to MongooseQueryOptions #14278 #14275

8.1.0 / 2024-01-16

  • feat: upgrade MongoDB driver -> 6.3.0 #14241 #14189 #14108 #14104
  • feat: add Atlas search index helpers to Models and Schemas #14251 #14232
  • feat(connection): add listCollections() helper to connections #14257
  • feat(schematype): merge rather than overwrite default schematype validators #14124 #14070
  • feat(types): support type hints in InferSchemaType #14008 JavaScriptBach

8.0.4 / 2024-01-08

  • fix(update): set CastError path to full path if casting update fails #14161 #14114
  • fix: cast error when there is an elemMatch in the and clause #14171 tosaka-n
  • fix: allow defining index on base model that applies to all discriminators #14176 peplin
  • fix(model): deep clone bulkWrite() updateOne arguments to avoid mutating documents in update #14197 #14164
  • fix(populate): handle deselecting _id with array of fields in populate() #14242 #14231
  • types(model+query): use stricter typings for updateX(), replaceOne(),deleteX() Model functions #14228 #14204
  • types: fix return types for findByIdAndDelete overrides #14196 #14190
  • types(schema): add missing omit() method #14235 amitbeck
  • types(model): add missing strict property to bulkWrite() top level options #14239
  • docs(compatibility): add note that Mongoose 5.13 is fully compatible with MongoDB server 5 #14230 #14149
  • docs: add shared schemas guide #14211
  • docs: update TLS/SSL guide for Mongoose v8 - MongoDB v6 driver deprecations #14170 andylwelch
  • docs: update findOneAndUpdate tutorial to use includeResultMetadata #14208 #14207
  • docs: clarify disabling _id on subdocs #14195 #14194

7.6.8 / 2024-01-08

  • perf(schema): remove unnecessary lookahead in numeric subpath check
  • fix(discriminator): handle reusing schema with embedded discriminators defined using Schema.prototype.discriminator #14202 #14162
  • fix(ChangeStream): avoid suppressing errors in closed change stream #14206 #14177

6.12.5 / 2024-01-03

... (truncated)

Commits
  • c9877b6 chore: release 8.1.2
  • f164b44 Merge pull request #14342 from FaizBShah/master
  • 348ec51 Merge branch 'Automattic:master' into master
  • a842bf7 fix: added typescript support for arbitary fields in the options parameter of...
  • 6579f93 Merge pull request #14335 from Automattic/vkarpov15/gh-14315
  • 2c34102 Merge pull request #14337 from Automattic/vkarpov15/gh-14309
  • 870b94f Merge pull request #14336 from Automattic/vkarpov15/gh-14303
  • 3eceee6 Merge pull request #14326 from Automattic/dependabot/github_actions/master/ac...
  • c5c2f24 Merge pull request #14325 from Automattic/dependabot/github_actions/master/ac...
  • 26f0c96 Merge pull request #14320 from Automattic/dependabot/npm_and_yarn/master/mark...
  • 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 8.0.0 to 8.1.2.
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@8.0.0...8.1.2)

---
updated-dependencies:
- dependency-name: mongoose
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 12, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 19, 2024

Superseded by #274.

@dependabot dependabot bot closed this Feb 19, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/mongoose-8.1.2 branch February 19, 2024 08:41
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants