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 python-deps group with 6 updates #148

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 19, 2024

Bumps the python-deps group with 6 updates:

Package From To
fastapi 0.112.0 0.112.1
langchain 0.2.12 0.2.14
openai 1.40.3 1.41.0
sentry-sdk[fastapi,openai,starlette] 2.12.0 2.13.0
unstructured 0.15.1 0.15.5
uvicorn 0.30.5 0.30.6

Updates fastapi from 0.112.0 to 0.112.1

Release notes

Sourced from fastapi's releases.

0.112.1

Upgrades

Docs

Translations

  • 🌐 Add Portuguese translation for docs/pt/docs/tutorial/bigger-applications.md. PR #11971 by @​marcelomarkus.
  • 🌐 Add Portuguese translation for docs/pt/docs/advanced/testing-websockets.md. PR #11994 by @​ceb10n.
  • 🌐 Add Portuguese translation for docs/pt/docs/advanced/testing-dependencies.md. PR #11995 by @​ceb10n.
  • 🌐 Add Portuguese translation for docs/pt/docs/advanced/using-request-directly.md. PR #11956 by @​ceb10n.
  • 🌐 Add French translation for docs/fr/docs/tutorial/body-multiple-params.md. PR #11796 by @​pe-brian.
  • 🌐 Update Chinese translation for docs/zh/docs/tutorial/query-params.md. PR #11557 by @​caomingpei.
  • 🌐 Update typo in Chinese translation for docs/zh/docs/advanced/testing-dependencies.md. PR #11944 by @​bestony.
  • 🌐 Add Portuguese translation for docs/pt/docs/advanced/sub-applications.md and docs/pt/docs/advanced/behind-a-proxy.md. PR #11856 by @​marcelomarkus.
  • 🌐 Add Portuguese translation for docs/pt/docs/tutorial/cors.md and docs/pt/docs/tutorial/middleware.md. PR #11916 by @​wesinalves.
  • 🌐 Add French translation for docs/fr/docs/tutorial/path-params-numeric-validations.md. PR #11788 by @​pe-brian.

Internal

Commits
  • 4f937c0 🔖 Release version 0.112.1
  • 94be8ff 📝 Update release notes
  • 285a54c ⬆ Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#11727)
  • b7c80cb 📝 Update release notes
  • 0d92b42 🔧 Add changelog URL to pyproject.toml, shows in PyPI (#11152)
  • 2f5ed4f 📝 Update release notes
  • 2c98017 👷 Do not sync labels as it overrides manually added labels (#12024)
  • fc91078 📝 Update release notes
  • 5fd9ab9 ⬆️ Allow Starlette 0.38.x, update the pin to >=0.37.2,<0.39.0 (#11876)
  • 84d69bb 📝 Update release notes
  • Additional commits viewable in compare view

Updates langchain from 0.2.12 to 0.2.14

Release notes

Sourced from langchain's releases.

langchain==0.2.14

Changes since langchain==0.2.13

langchain: bump core to 0.2.32 (#25421) langchain: bump min core version (#25418) langchain: release 0.2.14 (#25416) docs: udpated api reference (#25172) core[minor]: Prevent PydanticOutputParser from encoding schema as ASCII (#25386) multiple: update removal targets (#25361)

Commits

Updates openai from 1.40.3 to 1.41.0

Release notes

Sourced from openai's releases.

v1.41.0

1.41.0 (2024-08-16)

Full Changelog: v1.40.8...v1.41.0

Features

  • client: add uploads.upload_file helper (aae079d)

v1.40.8

1.40.8 (2024-08-15)

Full Changelog: v1.40.7...v1.40.8

Chores

v1.40.7

1.40.7 (2024-08-15)

Full Changelog: v1.40.6...v1.40.7

Bug Fixes

  • cli/migrate: change grit binaries download source (#1649) (85e8935)

Chores

  • docs: fix typo in example snippet (4e83b57)
  • internal: use different 32bit detection method (#1652) (5831af6)

v1.40.6

1.40.6 (2024-08-12)

Full Changelog: v1.40.5...v1.40.6

Chores

v1.40.5

1.40.5 (2024-08-12)

Full Changelog: v1.40.4...v1.40.5

... (truncated)

Changelog

Sourced from openai's changelog.

1.41.0 (2024-08-16)

Full Changelog: v1.40.8...v1.41.0

Features

  • client: add uploads.upload_file helper (aae079d)

1.40.8 (2024-08-15)

Full Changelog: v1.40.7...v1.40.8

Chores

1.40.7 (2024-08-15)

Full Changelog: v1.40.6...v1.40.7

Bug Fixes

  • cli/migrate: change grit binaries download source (#1649) (85e8935)

Chores

  • docs: fix typo in example snippet (4e83b57)
  • internal: use different 32bit detection method (#1652) (5831af6)

1.40.6 (2024-08-12)

Full Changelog: v1.40.5...v1.40.6

Chores

1.40.5 (2024-08-12)

Full Changelog: v1.40.4...v1.40.5

Documentation

  • helpers: make async client usage more clear (34e1edf), closes #1639

1.40.4 (2024-08-12)

... (truncated)

Commits

Updates sentry-sdk[fastapi,openai,starlette] from 2.12.0 to 2.13.0

Release notes

Sourced from sentry-sdk[fastapi,openai,starlette]'s releases.

2.13.0

Various fixes & improvements

  • New integration: Ray (#2400) (#2444) by @​glowskir

    Usage: (add the RayIntegration to your sentry_sdk.init() call and make sure it is called in the worker processes)

    import ray
    import sentry_sdk
    from sentry_sdk.integrations.ray import RayIntegration
    def init_sentry():
    sentry_sdk.init(
    dsn="...",
    traces_sample_rate=1.0,
    integrations=[RayIntegration()],
    )
    init_sentry()
    ray.init(
    runtime_env=dict(worker_process_setup_hook=init_sentry),
    )

    For more information, see the documentation for the Ray integration.

  • New integration: Litestar (#2413) (#3358) by @​KellyWalker

    Usage: (add the LitestarIntegration to your sentry_sdk.init())

    from litestar import Litestar, get
    import sentry_sdk
    from sentry_sdk.integrations.litestar import LitestarIntegration
    sentry_sdk.init(
    dsn="...",
    traces_sample_rate=1.0,
    integrations=[LitestarIntegration()],
    )
    @​get("/")
    async def index() -> str:
    return "Hello, world!"
    app = Litestar(...)

    For more information, see the documentation for the Litestar integration.

... (truncated)

Changelog

Sourced from sentry-sdk[fastapi,openai,starlette]'s changelog.

2.13.0

Various fixes & improvements

  • New integration: Ray (#2400) (#2444) by @​glowskir

    Usage: (add the RayIntegration to your sentry_sdk.init() call and make sure it is called in the worker processes)

    import ray
    import sentry_sdk
    from sentry_sdk.integrations.ray import RayIntegration
    def init_sentry():
    sentry_sdk.init(
    dsn="...",
    traces_sample_rate=1.0,
    integrations=[RayIntegration()],
    )
    init_sentry()
    ray.init(
    runtime_env=dict(worker_process_setup_hook=init_sentry),
    )

    For more information, see the documentation for the Ray integration.

  • New integration: Litestar (#2413) (#3358) by @​KellyWalker

    Usage: (add the LitestarIntegration to your sentry_sdk.init())

    from litestar import Litestar, get
    import sentry_sdk
    from sentry_sdk.integrations.litestar import LitestarIntegration
    sentry_sdk.init(
    dsn="...",
    traces_sample_rate=1.0,
    integrations=[LitestarIntegration()],
    )
    @​get("/")
    async def index() -> str:
    return "Hello, world!"
    app = Litestar(...)

    For more information, see the documentation for the Litestar integration.

... (truncated)

Commits

Updates unstructured from 0.15.1 to 0.15.5

Release notes

Sourced from unstructured's releases.

0.15.5

Enhancements

Features

Fixes

  • Revert to using unstructured.pytesseract fork. Due to the unavailability of some recent release versions of pytesseract on PyPI, the project now uses the unstructured.pytesseract fork to ensure stability and continued support.
  • Bump libreoffice verson in image. Bumps the libreoffice version to 25.2.5.2 to address CVEs.
  • Downgrade NLTK dependency version for compatibility. Due to the unavailability of nltk==3.8.2 on PyPI, the NLTK dependency has been downgraded to <3.8.2. This change ensures continued functionality and compatibility.

0.15.4

Enhancements

Features

Fixes

  • Resolve an installation error with pytesseract>=0.3.12 that occurred during pip install unstructured[pdf]==0.15.3.

0.15.3

Enhancements

Features

Fixes

  • Remove the custom index URL from extra-paddleocr.in to resolve the error in the setup.py configuration.

0.15.2

Enhancements

  • Improve directory handling when extracting image blocks. The figures directory is no longer created when the extract_image_block_to_payload parameter is set to True.

Features

  • Added per-class Object Detection metrics in the evaluation. The metrics include average precision, precision, recall, and f1-score for each class in the dataset.

Fixes

  • Updates NLTK data file for compatibility with nltk>=3.8.2. The NLTK data file now container punkt_tab, making it possible to upgrade to nltk>=3.8.2. The nltk==3.8.2 patches CVE-2024-39705.
  • Renames Astra to Astra DB Conforms with DataStax internal naming conventions.
  • Accommodate single-column CSV files. Resolves a limitation of partition_csv() where delimiter detection would fail on a single-column CSV file (which naturally has no delimeters).
  • Accommodate image/jpg in PPTX as alias for image/jpeg. Resolves problem partitioning PPTX files having an invalid image/jpg (should be image/jpeg) MIME-type in the [Content_Types].xml member of the PPTX Zip archive.
  • Fixes an issue in Object Detection metrics The issue was in preprocessing/validating the ground truth and predicted data for object detection metrics.
  • Removes dependency on unstructured.pytesseract Unstructured forked pytesseract while waiting for code to be upstreamed. Now that the new version has been released, this fork can be removed.
Changelog

Sourced from unstructured's changelog.

0.15.5

Enhancements

Features

Fixes

  • Revert to using unstructured.pytesseract fork. Due to the unavailability of some recent release versions of pytesseract on PyPI, the project now uses the unstructured.pytesseract fork to ensure stability and continued support.
  • Bump libreoffice verson in image. Bumps the libreoffice version to 25.2.5.2 to address CVEs.
  • Downgrade NLTK dependency version for compatibility. Due to the unavailability of nltk==3.8.2 on PyPI, the NLTK dependency has been downgraded to <3.8.2. This change ensures continued functionality and compatibility.

0.15.4

Enhancements

Features

Fixes

  • Resolve an installation error with pytesseract>=0.3.12 that occurred during pip install unstructured[pdf]==0.15.3.

0.15.3

Enhancements

Features

Fixes

  • Remove the custom index URL from extra-paddleocr.in to resolve the error in the setup.py configuration.

0.15.2

Enhancements

  • Improve directory handling when extracting image blocks. The figures directory is no longer created when the extract_image_block_to_payload parameter is set to True.

Features

  • Added per-class Object Detection metrics in the evaluation. The metrics include average precision, precision, recall, and f1-score for each class in the dataset.

Fixes

  • Updates NLTK data file for compatibility with nltk>=3.8.2. The NLTK data file now container punkt_tab, making it possible to upgrade to nltk>=3.8.2. The nltk==3.8.2 patches CVE-2024-39705.
  • Renames Astra to Astra DB Conforms with DataStax internal naming conventions.
  • Accommodate single-column CSV files. Resolves a limitation of partition_csv() where delimiter detection would fail on a single-column CSV file (which naturally has no delimeters).
  • Accommodate image/jpg in PPTX as alias for image/jpeg. Resolves problem partitioning PPTX files having an invalid image/jpg (should be image/jpeg) MIME-type in the [Content_Types].xml member of the PPTX Zip archive.
  • Fixes an issue in Object Detection metrics The issue was in preprocessing/validating the ground truth and predicted data for object detection metrics.
  • Removes dependency on unstructured.pytesseract Unstructured forked pytesseract while waiting for code to be upstreamed. Now that the new version has been released, this fork can be removed.
Commits

Updates uvicorn from 0.30.5 to 0.30.6

Release notes

Sourced from uvicorn's releases.

Version 0.30.6

Fixed

  • Don't warn when upgrade is not WebSocket and depedencies are installed (#2360)

Full Changelog: encode/uvicorn@0.30.5...0.30.6

Changelog

Sourced from uvicorn's changelog.

0.30.6 (2024-08-13)

Fixed

  • Don't warn when upgrade is not WebSocket and depedencies are installed (#2360)
Commits
  • 7dc027d Version 0.30.6 (#2428)
  • 587a1cc fix: upgrade is not websocket and dependencies are installed, should not warn...
  • cee31a6 test(signal): add sleep to ensure shutdown completion (#2427)
  • eba64ef ci: timeout for test suite runs to 30 minutes (#2426)
  • 0f513d2 Remove signal testing order dependency (#2382)
  • See full diff in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Summary by CodeRabbit

  • New Features

    • Updated multiple libraries to their latest versions, enhancing performance and stability.
  • Bug Fixes

    • Minor bug fixes and improvements included with library updates.

Bumps the python-deps group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.112.0` | `0.112.1` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.2.12` | `0.2.14` |
| [openai](https://github.com/openai/openai-python) | `1.40.3` | `1.41.0` |
| [sentry-sdk[fastapi,openai,starlette]](https://github.com/getsentry/sentry-python) | `2.12.0` | `2.13.0` |
| [unstructured](https://github.com/Unstructured-IO/unstructured) | `0.15.1` | `0.15.5` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.5` | `0.30.6` |


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

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

Updates `openai` from 1.40.3 to 1.41.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@v1.40.3...v1.41.0)

Updates `sentry-sdk[fastapi,openai,starlette]` from 2.12.0 to 2.13.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.12.0...2.13.0)

Updates `unstructured` from 0.15.1 to 0.15.5
- [Release notes](https://github.com/Unstructured-IO/unstructured/releases)
- [Changelog](https://github.com/Unstructured-IO/unstructured/blob/main/CHANGELOG.md)
- [Commits](Unstructured-IO/unstructured@0.15.1...0.15.5)

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

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: langchain
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: sentry-sdk[fastapi,openai,starlette]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: unstructured
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
...

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 Aug 19, 2024
Copy link
Contributor

coderabbitai bot commented Aug 19, 2024

Walkthrough

The updates to the requirements.txt file reflect minor version changes for several libraries, ensuring improved performance, compatibility, and bug fixes. Key libraries like FastAPI, Langchain, OpenAI, Sentry SDK, Unstructured, and Uvicorn have been upgraded to their latest versions, indicating routine maintenance aimed at enhancing overall functionality and stability.

Changes

Files Change Summary
requirements.txt Updated versions: fastapi (0.112.0 to 0.112.1), langchain (0.2.12 to 0.2.14), openai (1.40.3 to 1.41.0), sentry-sdk (2.12.0 to 2.13.0), unstructured (0.15.1 to 0.15.5), uvicorn (0.30.5 to 0.30.6).

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 26, 2024

Superseded by #150.

@dependabot dependabot bot closed this Aug 26, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-deps-f864aea782 branch August 26, 2024 01:08
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