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 pip group across 1 directory with 4 updates #13

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 6, 2024

Bumps the pip group with 4 updates in the /backend directory: flask-cors, requests, pymysql and langchain.

Updates flask-cors from 4.0.0 to 4.0.1

Release notes

Sourced from flask-cors's releases.

4.0.1

What's Changed

New Contributors

Full Changelog: corydolphin/flask-cors@4.0.0...4.0.1

Changelog

Sourced from flask-cors's changelog.

4.0.1

Security

Commits

Updates requests from 2.31.0 to 2.32.2

Release notes

Sourced from requests's releases.

v2.32.2

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

v2.32.1

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

2.32.0 (2024-05-20)

🐍 PYCON US 2024 EDITION 🐍

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589)
  • Fixed deserialization bug in JSONDecodeError. (#6629)
  • Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644)

... (truncated)

Changelog

Sourced from requests's changelog.

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589)
  • Fixed deserialization bug in JSONDecodeError. (#6629)
  • Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644)

Deprecations

... (truncated)

Commits
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • 970e8ce v2.32.1
  • d6ebc4a v2.32.0
  • 9a40d12 Avoid reloading root certificates to improve concurrent performance (#6667)
  • 0c030f7 Merge pull request #6702 from nateprewitt/no_char_detection
  • 555b870 Allow character detection dependencies to be optional in post-packaging steps
  • d6dded3 Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-test
  • Additional commits viewable in compare view

Updates pymysql from 1.1.0 to 1.1.1

Release notes

Sourced from pymysql's releases.

v1.1.1

[!WARNING] This release fixes a vulnerability (CVE-2024-36039). All users are recommended to update to this version.

If you can not update soon, check the input value from untrusted source has an expected type. Only dict input from untrusted source can be an attack vector.

What's Changed

Merged PRs

New Contributors

Full Changelog: PyMySQL/PyMySQL@v1.1.0...v1.1.1

Changelog

Sourced from pymysql's changelog.

v1.1.1

Release date: 2024-05-21

[!WARNING] This release fixes a vulnerability (CVE-2024-36039). All users are recommended to update to this version.

If you can not update soon, check the input value from untrusted source has an expected type. Only dict input from untrusted source can be an attack vector.

  • Prohibit dict parameter for Cursor.execute(). It didn't produce valid SQL and might cause SQL injection. (CVE-2024-36039)
  • Added ssl_key_password param. #1145
Commits

Updates langchain from 0.1.16 to 0.2.2

Release notes

Sourced from langchain's releases.

langchain-community==0.2.2

Release langchain-community==0.2.2

Changes since langchain-community==0.2.1

community[patch]: Release 0.2.2 (#22496) community, milvus, pinecone, qdrant, mongo: Broadcast operation failure while using simsimd beyond v3.7.7 (#22271) community[minor]: Add tools calls to ChatEdenAI (#22320) docs : Update docstrings for OpenAI base.py (#22221) communty[patch]: Native RAG Support in Prem AI langchain (#22238) community[minor]: Enable retrieval api calls in PebbloRetrievalQA (#21958) community[patch]: deprecate all HF classes (#22444) community[minor]: Improve Cassandra VectorStore as_retriever (#22465) community[patch]: Upstash Vector Store Namespace Support (#22251) community[minor]: Updating payload for pebblo discover API (#22309) community: add standard chat model params to Ollama (#22446) community[patch]: Update OpenVINO embedding and reranker to support static input shape (#22171) community[minor]: Implement MiniMaxChat interface (#22391) community[patch]: Airtable to allow for addtl params (#22092) community[patch]: update embeddings/oracleai.py (#22240) community[patch]: Update the default api_url and reqeust_body of sparkllm embedding (#22136) community[minor]: Add IPEX-LLM BGE embedding support on both Intel CPU and GPU (#22226) community: fix AzureSearch delete documents (#22315) community: fix missing apify_api_token field in ApifyWrapper (#22421) add embed_image API to JinaEmbedding (#22416) doc: fix wrong documentation on FAISS load_local function (#22310) community[patch]: Standardize qianfan model init args name (#22322) community: adding tool_call_id for every ToolCall (#22323) community, docs: update token usage tracking callback + how-to guides (#22145) milvus: New langchain_milvus package and new milvus features (#21077) community[patch]: Update firecrawl api key name (#22183) community[minor]: Add Zep Cloud components + docs + examples (#21671) community[patch]: DuckDB VS - expose similarity, improve performance of from_texts (#20971) community[minor]: clickhouse -- ability to use secure connection (#22108) community[patch]: Put authorized identities behind a feature flag in SharepointLoader (#22125) community: add metadata to chain logging; (#22122) community: Update costs of openai finetuned models (#22124) community[major]: lint for usage of xml library (#22132) doc: Add doc for CassandraByteStore (#22126) docs: fix some spelling mistakes caught by newest version of code spell (#22090) community[minor]: ManticoreSearch engine added to vectorstore (#19117)

langchain==0.2.2

Release langchain==0.2.2

Changes since langchain==0.2.1

langchain[patch]: Release 0.2.2 (#22495) langchain[patch]: Fix MongoDBAtlasVectorSearch reference in self query retriever (#22401) Update parent_document_retriever.py about **kwargs (#22219) infra: update langchainhub and add integration test (#22154) docs: fix some spelling mistakes caught by newest version of code spell (#22090)

... (truncated)

Commits
  • 85aa218 langchain[patch]: Release 0.2.2 (#22495)
  • 8e86080 mistralai[patch]: Release 0.1.8 (#22494)
  • e850de2 huggingface[patch]: release 0.0.2 (#22493)
  • 593de8a docs[patch]: Add robots.txt and root sitemap (#22492)
  • 99a3cad text-splitters[patch]: Release 0.2.1 (#22490)
  • 161b02a core[patch]: Release 0.2.4 (#22489)
  • 50258a7 docs: Update chroma docs link for collection reference (#22472)
  • 9b45374 docs: Added Semantic Cache Example with BedrockChat using Bedrock Embedding… ...
  • 3796672 community, milvus, pinecone, qdrant, mongo: Broadcast operation failure while...
  • 03178ee community[minor]: Add tools calls to ChatEdenAI (#22320)
  • Additional commits viewable 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the pip group with 4 updates in the /backend directory: [flask-cors](https://github.com/corydolphin/flask-cors), [requests](https://github.com/psf/requests), [pymysql](https://github.com/PyMySQL/PyMySQL) and [langchain](https://github.com/langchain-ai/langchain).


Updates `flask-cors` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/corydolphin/flask-cors/releases)
- [Changelog](https://github.com/corydolphin/flask-cors/blob/main/CHANGELOG.md)
- [Commits](corydolphin/flask-cors@4.0.0...4.0.1)

Updates `requests` from 2.31.0 to 2.32.2
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.2)

Updates `pymysql` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/PyMySQL/PyMySQL/releases)
- [Changelog](https://github.com/PyMySQL/PyMySQL/blob/main/CHANGELOG.md)
- [Commits](PyMySQL/PyMySQL@v1.1.0...v1.1.1)

Updates `langchain` from 0.1.16 to 0.2.2
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@v0.1.16...langchain==0.2.2)

---
updated-dependencies:
- dependency-name: flask-cors
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: requests
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pymysql
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 6, 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
Projects
Status: No status
Development

Successfully merging this pull request may close these issues.

0 participants