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 mongodb and mongoose #232

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 31, 2023

Bumps mongodb to 5.8.1 and updates ancestor dependency mongoose. These dependencies need to be updated together.

Updates mongodb from 5.7.0 to 5.8.1

Release notes

Sourced from mongodb's releases.

v5.8.1

5.8.1 (2023-08-23)

The MongoDB Node.js team is pleased to announce version 5.8.1 of the mongodb package!

Release Notes

Import of saslprep updated to correct library.

Fixes the import of saslprep to be the correct @mongodb-js/saslprep library.

Bug Fixes

Documentation

We invite you to try the mongodb library immediately, and report any issues to the NODE project.

v5.8.0

5.8.0 (2023-08-21)

The MongoDB Node.js team is pleased to announce version 5.8.0 of the mongodb package!

Release Notes

The AutoEncrypter interface has been deprecated

The AutoEncrypter interface was used internally but accidentally made public in the 4.x version of the driver. It is now deprecated and will be made internal in the next major release.

Kerberos support for 1.x and 2.x

Moves the kerberos dependency back to ^1.0.0 || ^2.0.0 to indicate support for both 1.x and 2.x. Support for 1.x is removed in 6.0.

Fixed accidental deprecation warning

Because of internal options handling, a deprecation was emitted for tlsCertificateFile when using tlsCertificateKeyFile. That has been corrected.

Remove credential availability on ConnectionPoolCreatedEvent

... (truncated)

Changelog

Sourced from mongodb's changelog.

5.8.1 (2023-08-23)

Bug Fixes

5.8.0 (2023-08-21)

Features

  • NODE-5399: use mongodb-js/saslprep instead of saslprep (#3818) (c0d3927)
  • NODE-5429: deprecate the AutoEncrypter interface (#3764) (9bb0d95)
  • NODE-5465,NODE-5538: lower @aws-sdk/credential-providers version to 3.188.0 and zstd to ^1.0.0 (#3821) (39ff81d)
  • NODE-5489: update kerberos dependency (8c25d6d)

Bug Fixes

  • NODE-5489: set kerberos compatibility to ^1.0.0 || ^2.0.0 (#3803) (c3b35b3)
  • NODE-5495: do not emit deprecation warning when tlsCertificateKeyFile is specified and tlsCertificateFile is not (#3810) (e81d4a2)
  • NODE-5537: remove credentials from ConnectionPoolCreatedEvent options (#3813) (4cf1e96)
Commits
  • 435f88b chore(5.x): release 5.8.1 [skip-ci] (#3839)
  • 250dc21 fix(NODE-5572): fix saslprep import (#3837)
  • d6eac31 docs(NODE-5562): update upcoming crl option changes (#3836)
  • 43673fa chore(5.x): release 5.8.0 [skip-ci] (#3825)
  • 4b2fc79 docs: fix cutoff sentence on CommandStartedEvent (#3828)
  • 39ff81d feat(NODE-5465,NODE-5538): lower @aws-sdk/credential-providers version to 3...
  • e1af343 chore: update release automation scripts 5.x (#3823)
  • c0d3927 feat(NODE-5399): use mongodb-js/saslprep instead of saslprep (#3818)
  • 4cf1e96 fix(NODE-5537): remove credentials from ConnectionPoolCreatedEvent options (#...
  • e81d4a2 fix(NODE-5495): do not emit deprecation warning when tlsCertificateKeyFile is...
  • Additional commits viewable in compare view

Updates mongoose from 7.4.2 to 7.5.0

Release notes

Sourced from mongoose's releases.

7.5.0 / 2023-08-29

  • feat: allow top level dollar keys with findOneAndUpdate(), update() for MongoDB 5 #13786
  • fix(document): make array getters avoid unintentionally modifying array, defer getters until index access instead #13774
  • feat: deprecate overwrite option for findOneAndUpdate() #13578
  • feat: add pathsToSkip option for Model.validate #13663 #10353
  • feat: support alias when declaring index #13659 #13276
  • fix(query): remove unnecessary check for atomic operators in findOneAndReplace() #13678
  • types: add SearchMeta Interface for Atlas Search #13792 mreouven
  • types(schematypes): add missing BigInt SchemaType #13787

7.4.5 / 2023-08-25

  • fix(debug): avoid putting virtuals and getters in debug output #13778
  • fix(model): make Model.bulkWrite() with empty array and ordered false not throw an error #13664
  • fix(document): correctly handle inclusive/exclusive projections when applying subdocument defaults #13763 #13720

7.4.4 / 2023-08-22

  • fix(connection): reset document state in between transaction retries #13726 #13698
  • fix(cursor): bubble up resumeTokenChanged event from change streams #13736 #13607
  • fix(query+populate): add refPath to projection by default, unless explicitly excluded #13758
  • fix(schema): support 'ascending', 'asc', 'descending', 'desc' for index direction #13761 #13725
  • fix(ChangeStream): add _bindEvents to addListener function for observable support #13759 yury-ivaniutsenka
  • types: infer return type when using get(), markModified(), etc. with known property name literal #13739 maybesmurf
  • types: add missing typings for option includeResultMetadata #13747 #13746 Idnan
  • types: export InferSchemaType #13737
  • docs(middleware): clarify that query middleware applies to document by default #13734 #13713
  • docs: add brief note on TypeScript generic usage for embedded discriminator path() calls #13728 #10435
  • docs: link v7 migration guide #13742 Cooldogyum
  • docs(migrating_to_6): add note about incompatible packages #13733

7.4.3 / 2023-08-11

  • fix: avoid applying map property getters when saving #13704 #13657
  • fix(query): allow deselecting discriminator key #13722 #13679
  • types(models+query): return lean type when passing QueryOptions with lean: true to relevant model functions like find() and findOne() #13721 #13705
  • types(schema): correct return type for Schema.prototype.indexes() #13718 #13702
  • types: allow accessing options from pre middleware #13708 #13633
  • types: add UpdateQueryKnownOnly type for stricter UpdateQuery type checking #13699 #13630
  • types(schema): support required: { isRequired: true } syntax in schema definition #13680
  • docs(middleware): clarify that doc.deleteOne() doesn't run query middleware currently #13707 #13669
Changelog

Sourced from mongoose's changelog.

7.5.0 / 2023-08-29

  • feat: allow top level dollar keys with findOneAndUpdate(), update() for MongoDB 5 #13786
  • fix(document): make array getters avoid unintentionally modifying array, defer getters until index access instead #13774
  • feat: deprecate overwrite option for findOneAndUpdate() #13578
  • feat: add pathsToSkip option for Model.validate #13663 #10353
  • feat: support alias when declaring index #13659 #13276
  • fix(query): remove unnecessary check for atomic operators in findOneAndReplace() #13678
  • types: add SearchMeta Interface for Atlas Search #13792 mreouven
  • types(schematypes): add missing BigInt SchemaType #13787

7.4.5 / 2023-08-25

  • fix(debug): avoid putting virtuals and getters in debug output #13778
  • fix(model): make Model.bulkWrite() with empty array and ordered false not throw an error #13664
  • fix(document): correctly handle inclusive/exclusive projections when applying subdocument defaults #13763 #13720

6.12.0 / 2023-08-24

  • feat: use mongodb driver v4.17.1
  • fix(model): make Model.bulkWrite() with empty array and ordered false not throw an error #13664
  • fix(document): correctly handle inclusive/exclusive projections when applying subdocument defaults #13763 #13720

7.4.4 / 2023-08-22

  • fix(connection): reset document state in between transaction retries #13726 #13698
  • fix(cursor): bubble up resumeTokenChanged event from change streams #13736 #13607
  • fix(query+populate): add refPath to projection by default, unless explicitly excluded #13758
  • fix(schema): support 'ascending', 'asc', 'descending', 'desc' for index direction #13761 #13725
  • fix(ChangeStream): add _bindEvents to addListener function for observable support #13759 yury-ivaniutsenka
  • types: infer return type when using get(), markModified(), etc. with known property name literal #13739 maybesmurf
  • types: add missing typings for option includeResultMetadata #13747 #13746 Idnan
  • types: export InferSchemaType #13737
  • docs(middleware): clarify that query middleware applies to document by default #13734 #13713
  • docs: add brief note on TypeScript generic usage for embedded discriminator path() calls #13728 #10435
  • docs: link v7 migration guide #13742 Cooldogyum
  • docs(migrating_to_6): add note about incompatible packages #13733

6.11.6 / 2023-08-21

7.4.3 / 2023-08-11

  • fix: avoid applying map property getters when saving #13704 #13657
  • fix(query): allow deselecting discriminator key #13722 #13679
  • types(models+query): return lean type when passing QueryOptions with lean: true to relevant model functions like find() and findOne() #13721 #13705
  • types(schema): correct return type for Schema.prototype.indexes() #13718 #13702
  • types: allow accessing options from pre middleware #13708 #13633

... (truncated)

Commits

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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [mongodb](https://github.com/mongodb/node-mongodb-native) to 5.8.1 and updates ancestor dependency [mongoose](https://github.com/Automattic/mongoose). These dependencies need to be updated together.


Updates `mongodb` from 5.7.0 to 5.8.1
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/v5.8.1/HISTORY.md)
- [Commits](mongodb/node-mongodb-native@v5.7.0...v5.8.1)

Updates `mongoose` from 7.4.2 to 7.5.0
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@7.4.2...7.5.0)

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

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 Aug 31, 2023
@FlorianLeChat FlorianLeChat self-requested a review August 31, 2023 06:44
@FlorianLeChat
Copy link
Owner

FlorianLeChat commented Aug 31, 2023

There is an issue with dependabot/dependabot-core#4893 and dependabot/fetch-metadata#339.

@FlorianLeChat
Copy link
Owner

@dependabot merge

@dependabot dependabot bot merged commit 77507ea into master Aug 31, 2023
8 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/mongodb-and-mongoose-5.8.1 branch August 31, 2023 07:55
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

1 participant