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 the pip-api group in /api with 20 updates #811

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the pip-api group in /api with 20 updates:

Package From To
aiohttp 3.9.1 3.9.3
azure-storage-blob 12.18.3 12.19.0
blinker 1.6.3 1.7.0
cachetools 5.3.1 5.3.2
cryptography 41.0.4 42.0.2
fastapi 0.104.0 0.109.0
httpx 0.25.0 0.26.0
motor 3.3.1 3.3.2
msal 1.24.1 1.26.0
pydantic 1.10.13 1.10.14
pymongo 4.5.0 4.6.1
pymongo-inmemory 0.3.1 0.4.0
pytest 7.4.2 8.0.0
pytest-asyncio 0.21.1 0.23.4
uvicorn 0.23.2 0.27.0.post1
matplotlib 3.8.0 3.8.2
python-dotenv 1.0.0 1.0.1
openai 0.28.1 1.10.0
sigmf 1.1.3 1.1.5
scipy 1.11.4 1.12.0

Updates aiohttp from 3.9.1 to 3.9.3

Release notes

Sourced from aiohttp's releases.

3.9.3

Bug fixes

  • Fixed backwards compatibility breakage (in 3.9.2) of ssl parameter when set outside of ClientSession (e.g. directly in TCPConnector) -- by :user:Dreamsorcerer.

    Related issues and pull requests on GitHub: #8097, #8098.

Miscellaneous internal changes

  • Improved test suite handling of paths and temp files to consistently use pathlib and pytest fixtures.

    Related issues and pull requests on GitHub: #3957.


3.9.2

Bug fixes

  • Fixed server-side websocket connection leak.

    Related issues and pull requests on GitHub: #7978.

  • Fixed web.FileResponse doing blocking I/O in the event loop.

    Related issues and pull requests on GitHub: #8012.

  • Fixed double compress when compression enabled and compressed file exists in server file responses.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.9.3 (2024-01-29)

Bug fixes

  • Fixed backwards compatibility breakage (in 3.9.2) of ssl parameter when set outside of ClientSession (e.g. directly in TCPConnector) -- by :user:Dreamsorcerer.

    Related issues and pull requests on GitHub: :issue:8097, :issue:8098.

Miscellaneous internal changes

  • Improved test suite handling of paths and temp files to consistently use pathlib and pytest fixtures.

    Related issues and pull requests on GitHub: :issue:3957.


3.9.2 (2024-01-28)

Bug fixes

  • Fixed server-side websocket connection leak.

    Related issues and pull requests on GitHub: :issue:7978.

  • Fixed web.FileResponse doing blocking I/O in the event loop.

    Related issues and pull requests on GitHub: :issue:8012.

... (truncated)

Commits

Updates azure-storage-blob from 12.18.3 to 12.19.0

Release notes

Sourced from azure-storage-blob's releases.

azure-storage-blob_12.19.0

12.19.0 (2023-11-07)

Features Added

  • Stable release of features from 12.19.0b1
Commits

Updates blinker from 1.6.3 to 1.7.0

Changelog

Sourced from blinker's changelog.

Version 1.7.0

Released 2023-11-01

  • Fixed messages printed to standard error about unraisable exceptions during signal cleanup, typically during interpreter shutdown. :pr:123
  • Allow the Signal set_class to be customised, to allow calling of receivers in registration order. :pr:116.
  • Drop Python 3.7 and support Python 3.12. :pr:126
Commits
  • 2adbe03 Relase version 1.7.0
  • 7f3f1a0 Update the supported Python versions
  • d32c27a Update the requirements
  • 200786d Bump actions/checkout from 3.6.0 to 4.1.1
  • 5186dc1 Bump actions/upload-artifact from 3.1.2 to 3.1.3
  • 5ad0039 Allow the Signal set_class to be customised
  • fe3ec89 Add changelog entry
  • 44d29b3 Fix weakref callback errors during finalization
  • 36560da Fix deployment issue and re-release 1.6.3
  • aafe30d Relase version 1.6.3
  • See full diff in compare view

Updates cachetools from 5.3.1 to 5.3.2

Changelog

Sourced from cachetools's changelog.

v5.3.2 (2023-10-24)

  • Add support for Python 3.12.

  • Various documentation improvements.

Commits
  • 3889195 Release v5.3.2.
  • 63a5287 Add ReadTheDocs .readthedocs.yaml configuration file.
  • 8050888 Improve docs index.
  • f37f8e9 Align ReadTheDocs and doc builds in the test suite
  • fab9682 Merge pull request #289 from kurtmckee/use-sha-for-github-action-versions-iss...
  • d0d2675 Use SHAs, not mutable version tags, to ID GitHub Action versions
  • 777fc70 Merge pull request #285 from kurtmckee/de-duplicate-versions
  • dcaa85c De-duplicate the version numbers in the project
  • 44a913d Fix release info.
  • 4a27737 Merge pull request #284 from tkem/dependabot/github_actions/actions/checkout-4
  • Additional commits viewable in compare view

Updates cryptography from 41.0.4 to 42.0.2

Changelog

Sourced from cryptography's changelog.

42.0.2 - 2024-01-30


* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.2.1.
* Fixed an issue that prevented the use of Python buffer protocol objects in
  ``sign`` and ``verify`` methods on asymmetric keys.
* Fixed an issue with incorrect keyword-argument naming with ``EllipticCurvePrivateKey``
  :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.exchange`,
  ``X25519PrivateKey``
  :meth:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PrivateKey.exchange`,
  ``X448PrivateKey``
  :meth:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey.exchange`,
  and ``DHPrivateKey``
  :meth:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey.exchange`.

.. _v42-0-1:

42.0.1 - 2024-01-24

  • Fixed an issue with incorrect keyword-argument naming with EllipticCurvePrivateKey :meth:~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.sign.
  • Resolved compatibility issue with loading certain RSA public keys in :func:~cryptography.hazmat.primitives.serialization.load_pem_public_key.

.. _v42-0-0:

42.0.0 - 2024-01-22


* **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.7.
* **BACKWARDS INCOMPATIBLE:** Loading a PKCS7 with no content field using
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_pem_pkcs7_certificates`
  or
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_der_pkcs7_certificates`
  will now raise a ``ValueError`` rather than return an empty list.
* Parsing SSH certificates no longer permits malformed critical options with
  values, as documented in the 41.0.2 release notes.
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.2.0.
* Updated the minimum supported Rust version (MSRV) to 1.63.0, from 1.56.0.
* We now publish both ``py37`` and ``py39`` ``abi3`` wheels. This should
  resolve some errors relating to initializing a module multiple times per
  process.
* Support :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS` for
  X.509 certificate signing requests and certificate revocation lists with the
  keyword-only argument ``rsa_padding`` on the ``sign`` methods for
  :class:`~cryptography.x509.CertificateSigningRequestBuilder` and
  :class:`~cryptography.x509.CertificateRevocationListBuilder`.
* Added support for obtaining X.509 certificate signing request signature
  algorithm parameters (including PSS) via
</tr></table> 

... (truncated)

Commits

Updates fastapi from 0.104.0 to 0.109.0

Release notes

Sourced from fastapi's releases.

0.109.0

Features

Upgrades

Docs

  • ✏️ Fix typo in docs/en/docs/alternatives.md. PR #10931 by @​s111d.
  • 📝 Replace email with username in docs_src/security/tutorial007 code examples. PR #10649 by @​nilslindemann.
  • 📝 Add VS Code tutorial link. PR #10592 by @​nilslindemann.
  • 📝 Add notes about Pydantic v2's new .model_dump(). PR #10929 by @​tiangolo.
  • 📝 Fix broken link in docs/en/docs/tutorial/sql-databases.md. PR #10765 by @​HurSungYun.
  • 📝 Add External Link: FastAPI application monitoring made easy. PR #10917 by @​tiangolo.
  • ✨ Generate automatic language names for docs translations. PR #5354 by @​jakul.
  • ✏️ Fix typos in docs/en/docs/alternatives.md and docs/en/docs/tutorial/dependencies/index.md. PR #10906 by @​s111d.
  • ✏️ Fix typos in docs/en/docs/tutorial/dependencies/dependencies-with-yield.md. PR #10834 by @​Molkree.
  • 📝 Add article: "Building a RESTful API with FastAPI: Secure Signup and Login Functionality Included". PR #9733 by @​dxphilo.
  • 📝 Add warning about lifecycle events with AsyncClient. PR #4167 by @​andrew-chang-dewitt.
  • ✏️ Fix typos in /docs/reference/exceptions.md and /en/docs/reference/status.md. PR #10809 by @​clarencepenz.
  • ✏️ Fix typo in openapi-callbacks.md. PR #10673 by @​kayjan.
  • ✏️ Fix typo in fastapi/routing.py . PR #10520 by @​sepsh.
  • 📝 Replace HTTP code returned in case of existing user error in docs for testing. PR #4482 by @​TristanMarion.
  • 📝 Add blog for FastAPI & Supabase. PR #6018 by @​theinfosecguy.
  • 📝 Update example source files for SQL databases with SQLAlchemy. PR #9508 by @​s-mustafa.
  • 📝 Update code examples in docs for body, replace name create_item with update_item when appropriate. PR #5913 by @​OttoAndrey.
  • ✏️ Fix typo in dependencies with yield source examples. PR #10847 by @​tiangolo.

Translations

  • 🌐 Add Bengali translation for docs/bn/docs/index.md. PR #9177 by @​Fahad-Md-Kamal.
  • ✏️ Update Python version in index.md in several languages. PR #10711 by @​tamago3keran.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/request-forms-and-files.md. PR #10347 by @​AlertRED.
  • 🌐 Add Ukrainian translation for docs/uk/docs/index.md. PR #10362 by @​rostik1410.
  • ✏️ Update Python version in docs/ko/docs/index.md. PR #10680 by @​Eeap.
  • 🌐 Add Persian translation for docs/fa/docs/features.md. PR #5887 by @​amirilf.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/additional-responses.md. PR #10325 by @​ShuibeiC.
  • 🌐 Fix typos in Russian translations for docs/ru/docs/tutorial/background-tasks.md, docs/ru/docs/tutorial/body-nested-models.md, docs/ru/docs/tutorial/debugging.md, docs/ru/docs/tutorial/testing.md. PR #10311 by @​AlertRED.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/request-files.md. PR #10332 by @​AlertRED.
  • 🌐 Add Chinese translation for docs/zh/docs/deployment/server-workers.md. PR #10292 by @​xzmeng.
  • 🌐 Add Chinese translation for docs/zh/docs/deployment/cloud.md. PR #10291 by @​xzmeng.
  • 🌐 Add Chinese translation for docs/zh/docs/deployment/manually.md. PR #10279 by @​xzmeng.
  • 🌐 Add Chinese translation for docs/zh/docs/deployment/https.md. PR #10277 by @​xzmeng.
  • 🌐 Add Chinese translation for docs/zh/docs/deployment/index.md. PR #10275 by @​xzmeng.
  • 🌐 Add German translation for docs/de/docs/tutorial/first-steps.md. PR #9530 by @​fhabers21.
  • 🌐 Update Turkish translation for docs/tr/docs/index.md. PR #10444 by @​hasansezertasan.
  • 🌐 Add Chinese translation for docs/zh/docs/learn/index.md. PR #10479 by @​KAZAMA-DREAM.

... (truncated)

Commits
  • cb95d1c 🔖 Release version 0.109.0
  • 7c1aeb5 📝 Update release notes
  • 5e58319 ⬆️ Upgrade Starlette to >=0.35.0,<0.36.0 (#10938)
  • c3e0625 📝 Update release notes
  • c46eba8 ✏️ Fix typo in docs/en/docs/alternatives.md (#10931)
  • 5b1e686 📝 Update release notes
  • 69cb005 📝 Replace email with username in docs_src/security/tutorial007 code exa...
  • 0da980c 📝 Update release notes
  • 135dcba 📝 Add VS Code tutorial link (#10592)
  • 21145d8 📝 Update release notes
  • Additional commits viewable in compare view

Updates httpx from 0.25.0 to 0.26.0

Release notes

Sourced from httpx's releases.

Version 0.26.0

0.26.0 (20th December, 2023)

Added

  • The proxy argument was added. You should use the proxy argument instead of the deprecated proxies, or use mounts= for more complex configurations. (#2879)

Deprecated

  • The proxies argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)

Fixed

  • Fix cases of double escaping of URL path components. Allow / as a safe character in the query portion. (#2990)
  • Handle NO_PROXY envvar cases when a fully qualified URL is supplied as the value. (#2741)
  • Allow URLs where username or password contains unescaped '@'. (#2986)
  • Ensure ASGI raw_path does not include URL query component. (#2999)
  • Ensure Response.iter_text() cannot yield empty strings. (#2998)

Version 0.25.2

0.25.2 (24th November, 2023)

Added

  • Add missing type hints to few __init__() methods. (#2938)

Version 0.25.1

0.25.1 (3rd November, 2023)

  • Add support for Python 3.12. (#2854)
  • Add support for httpcore 1.0 (#2885)

Fixed

  • Raise ValueError on Response.encoding being set after Response.text has been accessed. (#2852)
Changelog

Sourced from httpx's changelog.

0.26.0 (20th December, 2023)

Added

  • The proxy argument was added. You should use the proxy argument instead of the deprecated proxies, or use mounts= for more complex configurations. (#2879)

Deprecated

  • The proxies argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)

Fixed

  • Fix cases of double escaping of URL path components. Allow / as a safe character in the query portion. (#2990)
  • Handle NO_PROXY envvar cases when a fully qualified URL is supplied as the value. (#2741)
  • Allow URLs where username or password contains unescaped '@'. (#2986)
  • Ensure ASGI raw_path does not include URL query component. (#2999)
  • Ensure Response.iter_text() cannot yield empty strings. (#2998)

0.25.2 (24th November, 2023)

Added

  • Add missing type hints to few __init__() methods. (#2938)

0.25.1 (3rd November, 2023)

Added

  • Add support for Python 3.12. (#2854)
  • Add support for httpcore 1.0 (#2885)

Fixed

  • Raise ValueError on Response.encoding being set after Response.text has been accessed. (#2852)
Commits

Updates motor from 3.3.1 to 3.3.2

Release notes

Sourced from motor's releases.

Motor 3.3.2

Release notes: https://www.mongodb.com/community/forums/t/motor-3-3-2-released/253562

Changelog

Sourced from motor's changelog.

Motor 3.3.2

  • Fix incorrect type hints for the following: :meth:MotorCursor.to_list, :meth:MotorCollection.name, :meth:MotorDatabase.get_collection, :meth:MotorClientSession.with_transaction
  • Fix a bug that caused application-supplied DriverInfo to be overwritten.
Commits
  • a1c57b7 MOTOR-1209: Motor's DriverInfo should not be overwritten (#233)
  • d58545a MOTOR-1219 Use PyPI Trusted Publishing (#240)
  • 593b57f MOTOR-1213 Release 3.3.2 changelog update (#241)
  • 3836246 PYTHON-4040 Pin testing to aiohttp<3.8.6 (#239)
  • f0c9ff3 MOTOR-1187 Fix Motor Types (#237)
  • c644cdd MOTOR-1216 Skip change stream test_concurrent_close tests (#238)
  • 546f754 MOTOR-1214 Fix catch_warnings on Python 3.7
  • 5e6453a MOTOR-1182 Attach an error code to workaround PYTHON-4038 (#235)
  • cb050ef MOTOR-1214 Ignore IOLoop.current deprecation to make synchro pass (#236)
  • 4513307 MOTOR-1212 Update QA Checks to Match PyMongo (#234)
  • Additional commits viewable in compare view

Updates msal from 1.24.1 to 1.26.0

Release notes

Sourced from msal's releases.

MSAL Python 1.26.0

  • Do not auto-detect region if app developer does not opt-in to region (#629, #630)
  • Support Proof-of-Possession (PoP) for Public Client based on broker (#511)

MSAL Python 1.25.0

  • Deprecation: allow_broker will be replaced by enable_broker_on_windows (#613)
  • Bugfix: Device Code Flow (and Username Password Flow) and its subsequent silent request will automatically bypass broker and succeed. (#569)
  • Enhancement: acquire_token_interactive() supports running inside Docker
  • Observability: Successful token response will contain a new token_source field to indicate where the token was obtained from: identity_provider, cache or broker. (#610)
Commits

Updates pydantic from 1.10.13 to 1.10.14

Release notes

Sourced from pydantic's releases.

v1.10.14 2024-01-19

What's Changed

New Contributors

Full Changelog: pydantic/pydantic@v1.10.13...v1.10.14

Changelog

Sourced from pydantic's changelog.

v1.10.14 (2024-01-19)

Commits

Updates pymongo from 4.5.0 to 4.6.1

Release notes

Sourced from pymongo's releases.

PyMongo 4.6.1

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

PyMongo 4.6.0

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

Changelog

Sourced from pymongo's changelog.

Changes in Version 4.6.1

PyMongo 4.6.1 fixes the following bug:

  • Ensure retryable read OperationFailure errors re-raise exception when 0 or NoneType error code is provided.

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.

  • Added the :ref:network-compression-example documentation page.

  • Added more timeout information to network errors.

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

... (truncated)

Commits
  • 485e0a5 BUMP 4.6.1
  • 995365c PYTHON-4038 [v4.6]: Ensure retryable read OperationFailures re-raise except...
  • 8e25ce1 BUMP 4.6.0
  • a17e412 Updated changelog with timeout info change (#1417)
  • a09a03e PYTHON-3930 Add docs page for network compression (#1415)
  • 4b9c5b9 PYTHON-3968 Fix mockupdb tox config (#1416)
  • c146017 PYTHON-4012 Adopt more RST static checks (#1412)
  • 8faa910 PYTHON-3743 Bump minServerVersion for CSFLE deterministic encryption … (#1411)
  • 06653c9 PYTHON-3926 Add more information to connection errors and timeouts (#1375)
  • 2825058 PYTHON-3950 Add PyMongo 3.13 Changelog Entry to Current Branch (#1410)
  • Additional commits viewable in compare view

Updates pymongo-inmemory from 0.3.1 to 0.4.0

Release notes

Sourced from pymongo-inmemory's releases.

v0.4.0

Commits

Updates pytest from 7.4.2 to 8.0.0

Release notes

Sourced from pytest's releases.

pytest 8.0.0 (2024-01-27)

See 8.0.0rc1 and 8.0.0rc2 for the full changes since pytest 7.4!

Bug Fixes

  • #11842: Properly escape the reason of a skip <pytest.mark.skip ref>{.interpreted-text role="ref"} mark when writing JUnit XML files.
  • #11861: Avoid microsecond exceeds 1_000_000 when using log-date-format with %f specifier, which might cause the test suite to crash.

8.0.0rc2

pytest 8.0.0rc2 (2024-01-17)

Improvements

  • #11233: Improvements to -r for xfailures and xpasses:
    • Report tracebacks for xfailures when -rx is set.
    • Report captured output for xpasses when -rX is set.
    • For xpasses, add - in summary between test name and reason, to match how xfail is displayed.
  • #11825: The pytest_plugin_registered{.interpreted-text role="hook"} hook has a new plugin_name parameter containing the name by which plugin is registered.

Bug Fixes

Bumps the pip-api group in /api with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.9.1` | `3.9.3` |
| [azure-storage-blob](https://github.com/Azure/azure-sdk-for-python) | `12.18.3` | `12.19.0` |
| [blinker](https://github.com/pallets-eco/blinker) | `1.6.3` | `1.7.0` |
| [cachetools](https://github.com/tkem/cachetools) | `5.3.1` | `5.3.2` |
| [cryptography](https://github.com/pyca/cryptography) | `41.0.4` | `42.0.2` |
| [fastapi](https://github.com/tiangolo/fastapi) | `0.104.0` | `0.109.0` |
| [httpx](https://github.com/encode/httpx) | `0.25.0` | `0.26.0` |
| [motor](https://github.com/mongodb/motor) | `3.3.1` | `3.3.2` |
| [msal](https://github.com/AzureAD/microsoft-authentication-library-for-python) | `1.24.1` | `1.26.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `1.10.13` | `1.10.14` |
| [pymongo](https://github.com/mongodb/mongo-python-driver) | `4.5.0` | `4.6.1` |
| [pymongo-inmemory](https://github.com/kaizendorks/pymongo_inmemory) | `0.3.1` | `0.4.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.2` | `8.0.0` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.21.1` | `0.23.4` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.23.2` | `0.27.0.post1` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.8.0` | `3.8.2` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.0` | `1.0.1` |
| [openai](https://github.com/openai/openai-python) | `0.28.1` | `1.10.0` |
| [sigmf](https://github.com/sigmf/sigmf-python) | `1.1.3` | `1.1.5` |
| [scipy](https://github.com/scipy/scipy) | `1.11.4` | `1.12.0` |


Updates `aiohttp` from 3.9.1 to 3.9.3
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.9.1...v3.9.3)

Updates `azure-storage-blob` from 12.18.3 to 12.19.0
- [Release notes](https://github.com/Azure/azure-sdk-for-python/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/esrp_release.md)
- [Commits](Azure/azure-sdk-for-python@azure-storage-blob_12.18.3...azure-storage-blob_12.19.0)

Updates `blinker` from 1.6.3 to 1.7.0
- [Release notes](https://github.com/pallets-eco/blinker/releases)
- [Changelog](https://github.com/pallets-eco/blinker/blob/main/CHANGES.rst)
- [Commits](pallets-eco/blinker@1.6.3...1.7.0)

Updates `cachetools` from 5.3.1 to 5.3.2
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](tkem/cachetools@v5.3.1...v5.3.2)

Updates `cryptography` from 41.0.4 to 42.0.2
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@41.0.4...42.0.2)

Updates `fastapi` from 0.104.0 to 0.109.0
- [Release notes](https://github.com/tiangolo/fastapi/releases)
- [Commits](fastapi/fastapi@0.104.0...0.109.0)

Updates `httpx` from 0.25.0 to 0.26.0
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.25.0...0.26.0)

Updates `motor` from 3.3.1 to 3.3.2
- [Release notes](https://github.com/mongodb/motor/releases)
- [Changelog](https://github.com/mongodb/motor/blob/master/doc/changelog.rst)
- [Commits](mongodb/motor@3.3.1...3.3.2)

Updates `msal` from 1.24.1 to 1.26.0
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-python/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-python@1.24.1...1.26.0)

Updates `pydantic` from 1.10.13 to 1.10.14
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v1.10.14/HISTORY.md)
- [Commits](pydantic/pydantic@v1.10.13...v1.10.14)

Updates `pymongo` from 4.5.0 to 4.6.1
- [Release notes](https://github.com/mongodb/mongo-python-driver/releases)
- [Changelog](https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst)
- [Commits](mongodb/mongo-python-driver@4.5.0...4.6.1)

Updates `pymongo-inmemory` from 0.3.1 to 0.4.0
- [Release notes](https://github.com/kaizendorks/pymongo_inmemory/releases)
- [Commits](kaizendorks/pymongo_inmemory@v0.3.1...v0.4.0)

Updates `pytest` from 7.4.2 to 8.0.0
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.4.2...8.0.0)

Updates `pytest-asyncio` from 0.21.1 to 0.23.4
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.21.1...v0.23.4)

Updates `uvicorn` from 0.23.2 to 0.27.0.post1
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.23.2...0.27.0.post1)

Updates `matplotlib` from 3.8.0 to 3.8.2
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.0...v3.8.2)

Updates `python-dotenv` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.0...v1.0.1)

Updates `openai` from 0.28.1 to 1.10.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v0.28.1...v1.10.0)

Updates `sigmf` from 1.1.3 to 1.1.5
- [Release notes](https://github.com/sigmf/sigmf-python/releases)
- [Commits](sigmf/sigmf-python@v1.1.3...v1.1.5)

Updates `scipy` from 1.11.4 to 1.12.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.11.4...v1.12.0)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: azure-storage-blob
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: blinker
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: cachetools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip-api
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: motor
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: msal
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: pymongo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: pymongo-inmemory
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip-api
- dependency-name: pytest-asyncio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: python-dotenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip-api
- dependency-name: sigmf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-api
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-api
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 1, 2024
@777arc 777arc closed this Feb 2, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 2, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

@dependabot dependabot bot deleted the dependabot/pip/api/pip-api-76d6c1ce1b branch February 2, 2024 15:07
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 python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant