openfoodfacts / openfoodfacts-ai

This is a tracking repo for all our AI projects. 🍕 🤖🍼
220 stars 51 forks source link

chore(deps): bump pymongo from 3.10.1 to 4.5.0 #333

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps pymongo from 3.10.1 to 4.5.0.

Release notes

Sourced from pymongo's releases.

PyMongo 4.5.0

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-5-0-released/240662

PyMongo 4.4.1

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-4-1-released/235045

PyMongo 4.4.0

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-4-released/232211

PyMongo 4.4.0b0

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-4-0b0-release/210471

PyMongo 4.3.3

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-3-3-release/200145

PyMongo 4.3.2

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-3-2-released/194266

PyMongo 4.2.0

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-2-0-released/176012

PyMongo 4.2.0b0

Release notes: https://www.mongodb.com/community/forums/t/python-driver-4-2-0-beta-available/168488

PyMongo 4.1.1

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-1-1-released/157895

PyMongo 4.1.0

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-1-0-released/156029

PyMongo 4.0.2

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-0-2-released/150457

PyMongo 4.0.1

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-0-1-released/135979

PyMongo 4.0

Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-0-released/134677

PyMongo 3.13.0

Release notes https://www.mongodb.com/community/forums/t/pymongo-3-13-0-released/197141

PyMongo 3.12.3

Release notes: https://www.mongodb.com/community/forums/t/pymongo-3-12-3-released/135978

PyMongo 3.12.0b1 - Beta support for MongoDB Versioned API

No release notes provided.

PyMongo 3.12.0b0 - Beta support for MongoDB Versioned API

No release notes provided.

... (truncated)

Changelog

Sourced from pymongo's changelog.

Changelog

Changes in Version 4.6

PyMongo 4.6 brings a number of improvements including:

  • Added the serverMonitoringMode URI and keyword argument to :class:~pymongo.mongo_client.MongoClient.

  • Improved client performance and reduced connection requirements in Function-as-a-service (FaaS) environments like AWS Lambda, Google Cloud Functions, and Microsoft Azure Functions.

  • Added the :attr:pymongo.monitoring.CommandSucceededEvent.database_name property.

  • Added the :attr:pymongo.monitoring.CommandFailedEvent.database_name property.

  • Allow passing a dict to sort/create_index/hint.

  • Added :func:repr support to the write result classes: :class:~pymongo.results.BulkWriteResult, :class:~pymongo.results.DeleteResult, :class:~pymongo.results.InsertManyResult, :class:~pymongo.results.InsertOneResult, :class:~pymongo.results.UpdateResult, and :class:~pymongo.encryption.RewrapManyDataKeyResult. For example:

    client.t.t.insert_one({}) InsertOneResult(ObjectId('65319acdd55bb3a27ab5502b'), acknowledged=True) client.t.t.insert_many([{} for _ in range(3)]) InsertManyResult([ObjectId('6532f85e826f2b6125d6ce39'), ObjectId('6532f85e826f2b6125d6ce3a'), ObjectId('6532f85e826f2b6125d6ce3b')], acknowledged=True)

  • :meth:~pymongo.uri_parser.parse_uri now considers the delimiting slash (/) between hosts and connection options optional. For example, "mongodb://example.com?tls=true" is now a valid URI.

  • Fixed a bug where PyMongo would incorrectly promote all cursors to exhaust cursors when connected to load balanced MongoDB clusters or Serverless clusters.

Changes in Version 4.5

PyMongo 4.5 brings a number of improvements including:

  • Added new helper methods for Atlas Search Index (requires MongoDB Server 7.0+): :meth:~pymongo.collection.Collection.list_search_indexes, :meth:~pymongo.collection.Collection.create_search_index, :meth:~pymongo.collection.Collection.create_search_indexes, :meth:~pymongo.collection.Collection.drop_search_index, :meth:~pymongo.collection.Collection.update_search_index
  • Added :meth:~pymongo.database.Database.cursor_command and :meth:~pymongo.command_cursor.CommandCursor.try_next to support executing an arbitrary command that returns a cursor.
  • cryptography 2.5 or later is now required for :ref:OCSP support.
  • Improved bson encoding and decoding performance by up to 134%(PYTHON-3729, PYTHON-3797, PYTHON-3816, PYTHON-3817, PYTHON-3820, PYTHON-3824, and PYTHON-3846_).

... (truncated)

Commits
  • 3353b11 PYTHON-3914 Release 4.5.0 (#1359)
  • aaff6ed PYTHON-3912 Migrate Enterprise Auth Tests to AWS Secrets Vault (#1356)
  • 5bd444a PYTHON-3917 Fix handling of warnings in connection string tests (#1357)
  • 42c0841 PYTHON-3906 Use AWS Secrets for Atlas tests (#1342)
  • 02de1ba PYTHON-3909 Fix OIDC reauth for bulk write operations, remove unneeded AUTH_M...
  • 43845c3 PYTHON-3877 Test Python 3.12 on MacOS and build wheel (#1355)
  • 28b1121 PYTHON-3461 Test FaaS (AWS Lambda) Behavior Per Driver (#1310)
  • 0d44783 PYTHON-3821 use overload pattern for _DocumentType (#1352)
  • c1d3383 PYTHON-3907 add --disallow-untyped-defs for mypy (#1351)
  • f7738b8 PYTHON-3887 Remove custom test command in setup.py (#1350)
  • 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 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)
dependabot[bot] commented 11 months ago

Superseded by #336.