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

chore(deps): bump the poetry group across 1 directory with 17 updates #49

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 2, 2024

Bumps the poetry group with 17 updates in the / directory:

Package From To
beanie 1.26.0 1.27.0
colorlog 6.8.2 6.9.0
cryptography 43.0.1 44.0.0
fastapi 0.115.0 0.115.5
httpx 0.27.2 0.28.0
minio 7.2.8 7.2.12
pre-commit 3.8.0 4.0.1
pydantic 2.9.2 2.10.2
python-multipart 0.0.10 0.0.19
qdrant-client 1.11.2 1.12.1
ruff 0.6.7 0.8.1
uvicorn 0.30.6 0.32.1
langchain 0.3.0 0.3.9
mmh3 5.0.0 5.0.1
pystemmer 2.2.0.1 2.2.0.3
sentence-transformers 3.1.1 3.3.1
xformers 0.0.28.post1 0.0.28.post3

Updates beanie from 1.26.0 to 1.27.0

Release notes

Sourced from beanie's releases.

1.27.0

This is Beanie's first-ever community release! A big thanks to @​roman-right and all the other contributors who made this possible!

What's Changed

Add tests on all major mongo version

Fix return type from document update

Fix expression type hint not allowing some type beanieodm/beanie#1020

Fix type hint using pymongo client session instead of motor client session

Fix logical operator typing #1000

Use session in document insert

Use sequence instead of list in init_beanie

Replace deprecated datetime.utcnow with datetime.now

Fix uniondoc type hint missing in init_beanie and on findinterface

Add test to ensure dict with enum keys are encoded properly

Project publishing instruction + changelog generation script

Revert project publishing gh action

Extend motor option to beanie

Fix regex storing

Remove links to ko-fi from the project

Fix typo in source code comment in inheritance.md

... (truncated)

Changelog

Sourced from beanie's changelog.

[1.27.0] - 2024-10-06

Add tests on all major mongo version

Fix return type from document update

Fix expression type hint not allowing some type beanieodm/beanie#1020

Fix type hint using pymongo client session instead of motor client session

Fix logical operator typing #1000

Use session in document insert

Use sequence instead of list in init_beanie

Replace deprecated datetime.utcnow with datetime.now

Fix uniondoc type hint missing in init_beanie and on findinterface

Add test to ensure dict with enum keys are encoded properly

Project publishing instruction + changelog generation script

Revert project publishing gh action

Extend motor option to beanie

Fix regex storing

Remove links to ko-fi from the project

Fix typo in source code comment in inheritance.md

Fix gh action to grant permissions and use tags

... (truncated)

Commits

Updates colorlog from 6.8.2 to 6.9.0

Commits

Updates cryptography from 43.0.1 to 44.0.0

Changelog

Sourced from cryptography's changelog.

44.0.0 - 2024-11-27


* **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.9.
* Deprecated Python 3.7 support. Python 3.7 is no longer supported by the
  Python core team. Support for Python 3.7 will be removed in a future
  ``cryptography`` release.
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.4.0.
* macOS wheels are now built against the macOS 10.13 SDK. Users on older
  versions of macOS should upgrade, or they will need to build
  ``cryptography`` themselves.
* Enforce the :rfc:`5280` requirement that extended key usage extensions must
  not be empty.
* Added support for timestamp extraction to the
  :class:`~cryptography.fernet.MultiFernet` class.
* Relax the Authority Key Identifier requirements on root CA certificates
  during X.509 verification to allow fields permitted by :rfc:`5280` but
  forbidden by the CA/Browser BRs.
* Added support for :class:`~cryptography.hazmat.primitives.kdf.argon2.Argon2id`
  when using OpenSSL 3.2.0+.
* Added support for the :class:`~cryptography.x509.Admissions` certificate extension.
* Added basic support for PKCS7 decryption (including S/MIME 3.2) via
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_der`,
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_pem`, and
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_smime`.

.. _v43-0-3:

43.0.3 - 2024-10-18

  • Fixed release metadata for cryptography-vectors

.. _v43-0-2:

43.0.2 - 2024-10-18


* Fixed compilation when using LibreSSL 4.0.0.

.. _v43-0-1:

Commits

Updates fastapi from 0.115.0 to 0.115.5

Release notes

Sourced from fastapi's releases.

0.115.5

Refactors

Docs

... (truncated)

Commits
  • f057f4a 🔖 Release version 0.115.5
  • c6f021e 📝 Update release notes
  • 91a9293 ♻️ Update internal checks to support Pydantic 2.10 (#12914)
  • f716490 📝 Update release notes
  • c178106 📝 Update includes for docs/en/docs/tutorial/body.md (#12757)
  • 88cc900 📝 Update release notes
  • 20809a1 ⬆ [pre-commit.ci] pre-commit autoupdate (#12907)
  • 5a48c37 📝 Update release notes
  • 13892a3 📝 Update includes in docs/en/docs/advanced/testing-dependencies.md (#12647)
  • 9467000 📝 Update release notes
  • Additional commits viewable in compare view

Updates httpx from 0.27.2 to 0.28.0

Release notes

Sourced from httpx's releases.

Version 0.28.0

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#3363)
  • Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
  • Ensure certifi and httpcore are only imported if required. (#3377)
  • Treat socks5h as a valid proxy scheme. (#3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
Changelog

Sourced from httpx's changelog.

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#3363)
  • Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
  • Ensure certifi and httpcore are only imported if required. (#3377)
  • Treat socks5h as a valid proxy scheme. (#3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
Commits

Updates minio from 7.2.8 to 7.2.12

Release notes

Sourced from minio's releases.

Bugfix Release

What's Changed

Full Changelog: minio/minio-py@7.2.11...7.2.12

Bugfix Release

What's Changed

New Contributors

Full Changelog: minio/minio-py@7.2.10...7.2.11

Bugfix Release

What's Changed

New Contributors

Full Changelog: minio/minio-py@7.2.9...7.2.10

Bugfix Release

What's Changed

New Contributors

Full Changelog: minio/minio-py@7.2.8...7.2.9

Commits
  • 7ec72b8 list_objects: add extra headers and extra query parameters (#1458)
  • caf9ab0 Pass request_headers to stat_object API from fget_object API (#1461)
  • b048920 Update version to next release
  • 1e7b7ce fix python3.13 leap day parsing warning in time.from_http_header() (#1452)
  • c3f0254 fix calling cleanup function in Worker.run() to avoid race condition (#1455)
  • 3ead668 WebIdentityClientGrantsProvider: use 'id_token' as fallback to 'access_token'...
  • 246da60 remove EOLed python 3.8 support (#1453)
  • 1b44255 prompt_object API support (#1450)
  • 13868b0 Update version to next release
  • 96212de fix SnowballObject typing (#1449)
  • Additional commits viewable in compare view

Updates pre-commit from 3.8.0 to 4.0.1

Release notes

Sourced from pre-commit's releases.

pre-commit v4.0.1

Fixes

pre-commit v4.0.0

Features

Migrating

Changelog

Sourced from pre-commit's changelog.

4.0.1 - 2024-10-08

Fixes

4.0.0 - 2024-10-05

Features

Migrating

Commits
  • cc4a522 v4.0.1
  • 772d7d4 Merge pull request #3324 from pre-commit/migrate-config-purelib
  • 222c62b fix migrate-config for purelib yaml
  • 3d5548b Merge pull request #3323 from pre-commit/pre-commit-ci-update-config
  • 4235a87 [pre-commit.ci] pre-commit autoupdate
  • dbccd57 v4.0.0
  • d07e529 Merge pull request #3320 from pre-commit/remove-python-venv
  • 801b956 remove deprecated python_venv alias
  • a2f7b80 Merge pull request #3315 from pre-commit/warn-deprecated-stage-names-on-init
  • d317223 add warning for deprecates stages for remote repos on init
  • Additional commits viewable in compare view

Updates pydantic from 2.9.2 to 2.10.2

Release notes

Sourced from pydantic's releases.

v2.10.2 2024-11-26

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.1...v2.10.2

v2.10.1 2024-11-21

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.10.0...v2.10.1

v2.10.0 2024-11-20

The code released in v2.10.0 is practically identical to that of v2.10.0b2. See the v2.10 release blog post for the highlights!

What's Changed

Packaging

New Features

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

v2.10.1 (2024-11-21)

GitHub release

What's Changed

Packaging

Fixes

New Contributors

v2.10.0 (2024-11-20)

The code released in v2.10.0 is practically identical to that of v2.10.0b2.

GitHub release

See the v2.10 release blog post for the highlights!

What's Changed

Packaging

... (truncated)

Commits

Bumps the poetry group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [beanie](https://github.com/roman-right/beanie) | `1.26.0` | `1.27.0` |
| [colorlog](https://github.com/borntyping/python-colorlog) | `6.8.2` | `6.9.0` |
| [cryptography](https://github.com/pyca/cryptography) | `43.0.1` | `44.0.0` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.0` | `0.115.5` |
| [httpx](https://github.com/encode/httpx) | `0.27.2` | `0.28.0` |
| [minio](https://github.com/minio/minio-py) | `7.2.8` | `7.2.12` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.8.0` | `4.0.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.9.2` | `2.10.2` |
| [python-multipart](https://github.com/Kludex/python-multipart) | `0.0.10` | `0.0.19` |
| [qdrant-client](https://github.com/qdrant/qdrant-client) | `1.11.2` | `1.12.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.7` | `0.8.1` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.6` | `0.32.1` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.3.0` | `0.3.9` |
| [mmh3](https://github.com/hajimes/mmh3) | `5.0.0` | `5.0.1` |
| [pystemmer](https://github.com/snowballstem/pystemmer) | `2.2.0.1` | `2.2.0.3` |
| [sentence-transformers](https://github.com/UKPLab/sentence-transformers) | `3.1.1` | `3.3.1` |
| [xformers](https://github.com/facebookresearch/xformers) | `0.0.28.post1` | `0.0.28.post3` |



Updates `beanie` from 1.26.0 to 1.27.0
- [Release notes](https://github.com/roman-right/beanie/releases)
- [Changelog](https://github.com/BeanieODM/beanie/blob/main/docs/changelog.md)
- [Commits](BeanieODM/beanie@1.26.0...1.27.0)

Updates `colorlog` from 6.8.2 to 6.9.0
- [Release notes](https://github.com/borntyping/python-colorlog/releases)
- [Commits](borntyping/python-colorlog@v6.8.2...v6.9.0)

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

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

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

Updates `minio` from 7.2.8 to 7.2.12
- [Release notes](https://github.com/minio/minio-py/releases)
- [Commits](minio/minio-py@7.2.8...7.2.12)

Updates `pre-commit` from 3.8.0 to 4.0.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.8.0...v4.0.1)

Updates `pydantic` from 2.9.2 to 2.10.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.9.2...v2.10.2)

Updates `python-multipart` from 0.0.10 to 0.0.19
- [Release notes](https://github.com/Kludex/python-multipart/releases)
- [Changelog](https://github.com/Kludex/python-multipart/blob/master/CHANGELOG.md)
- [Commits](Kludex/python-multipart@0.0.10...0.0.19)

Updates `qdrant-client` from 1.11.2 to 1.12.1
- [Release notes](https://github.com/qdrant/qdrant-client/releases)
- [Commits](qdrant/qdrant-client@v1.11.2...v1.12.1)

Updates `ruff` from 0.6.7 to 0.8.1
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.7...0.8.1)

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

Updates `langchain` from 0.3.0 to 0.3.9
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain==0.3.0...langchain==0.3.9)

Updates `mmh3` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/hajimes/mmh3/releases)
- [Changelog](https://github.com/hajimes/mmh3/blob/master/CHANGELOG.md)
- [Commits](hajimes/mmh3@v5.0.0...v5.0.1)

Updates `pystemmer` from 2.2.0.1 to 2.2.0.3
- [Changelog](https://github.com/snowballstem/pystemmer/blob/master/ChangeLog)
- [Commits](https://github.com/snowballstem/pystemmer/commits)

Updates `sentence-transformers` from 3.1.1 to 3.3.1
- [Release notes](https://github.com/UKPLab/sentence-transformers/releases)
- [Commits](UKPLab/sentence-transformers@v3.1.1...v3.3.1)

Updates `xformers` from 0.0.28.post1 to 0.0.28.post3
- [Release notes](https://github.com/facebookresearch/xformers/releases)
- [Changelog](https://github.com/facebookresearch/xformers/blob/main/CHANGELOG.md)
- [Commits](facebookresearch/xformers@v0.0.28.post1...v0.0.28.post3)

---
updated-dependencies:
- dependency-name: beanie
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: colorlog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: minio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: python-multipart
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: qdrant-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: langchain
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: mmh3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: pystemmer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: sentence-transformers
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: xformers
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
...

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 Dec 2, 2024
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.

0 participants