Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2024

Bumps the python-requirements group with 22 updates in the / directory:

Package From To
aiohttp 3.10.8 3.10.10
anyio 4.6.0 4.6.2.post1
charset-normalizer 3.3.2 3.4.0
dnspython 2.6.1 2.7.0
httpcore 1.0.5 1.0.6
idna 3.9 3.10
jiter 0.5.0 0.6.1
langchain 0.3.1 0.3.4
langchain-community 0.3.1 0.3.3
langchain-core 0.3.6 0.3.12
langchain-openai 0.2.1 0.2.3
langsmith 0.1.129 0.1.136
markupsafe 2.1.5 3.0.2
marshmallow 3.22.0 3.23.0
openai 1.50.2 1.52.0
orjson 3.10.7 3.10.9
pydantic-core 2.23.4 2.24.2
pydantic-settings 2.5.2 2.6.0
pymongo 4.9.1 4.10.1
sqlalchemy 2.0.35 2.0.36
tiktoken 0.7.0 0.8.0
yarl 1.13.1 1.15.5

Updates aiohttp from 3.10.8 to 3.10.10

Release notes

Sourced from aiohttp's releases.

3.10.10

Bug fixes

  • Fixed error messages from :py:class:~aiohttp.resolver.AsyncResolver being swallowed -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9451, #9455.

Features

  • Added :exc:aiohttp.ClientConnectorDNSError for differentiating DNS resolution errors from other connector errors -- by :user:mstojcevich.

    Related issues and pull requests on GitHub: #8455.

Miscellaneous internal changes

  • Simplified DNS resolution throttling code to reduce chance of race conditions -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9454.


3.10.9

Bug fixes

  • Fixed proxy headers being used in the ConnectionKey hash when a proxy was not being used -- by :user:bdraco.

    If default headers are used, they are also used for proxy headers. This could have led to creating connections that were not needed when one was already available.

    Related issues and pull requests on GitHub: #9368.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.10.10 (2024-10-10)

Bug fixes

  • Fixed error messages from :py:class:~aiohttp.resolver.AsyncResolver being swallowed -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9451, :issue:9455.

Features

  • Added :exc:aiohttp.ClientConnectorDNSError for differentiating DNS resolution errors from other connector errors -- by :user:mstojcevich.

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

Miscellaneous internal changes

  • Simplified DNS resolution throttling code to reduce chance of race conditions -- by :user:bdraco.

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


3.10.9 (2024-10-04)

Bug fixes

  • Fixed proxy headers being used in the ConnectionKey hash when a proxy was not being used -- by :user:bdraco.

... (truncated)

Commits
  • 47475c5 Release 3.10.10 (#9462)
  • 8b424c8 [PR #8456/b09d7cc backport][3.10] Add ClientConnectorDNSError for differentia...
  • cdf3dca [PR #9454/b20908e backport][3.10] Simplify DNS throttle implementation (#9457)
  • ee87a04 [PR #9455/dfaafac0 backport][3.10] Fix AsyncResolver query fallback swallowin...
  • ba9b33e [PR #9451/216e082 backport][3.10] Fix AsyncResolver swallowing the error mess...
  • bc9e5d6 [PR #9448/93e87c2e backport][3.10] Improve performance of fetching the conten...
  • 3ea557a Increment version to 3.10.10.dev0
  • b779432 Release 3.10.9 (#9415)
  • 08ada3e [PR #9405/b96b01b backport][3.10] Only create the connection closed exception...
  • 978ed74 [PR #9406/24b0e6f backport][3.10] Add slots to timer helpers (#9411)
  • Additional commits viewable in compare view

Updates anyio from 4.6.0 to 4.6.2.post1

Release notes

Sourced from anyio's releases.

4.6.2

  • Fixed regression caused by (#807) that prevented the use of parametrized async fixtures

4.6.1

This release contains all the changes from both v4.5.1 and v4.6.0, plus:

  • Fixed TaskGroup and CancelScope producing cyclic references in tracebacks when raising exceptions (#806) (PR by @​graingert)
Commits
  • c484425 Bumped up the version
  • fb81dfe Fixed a regression in the pytest plugin that broke parametrized async fixtures
  • 445e59e Bumped up the version
  • 64f570e Fixed tox configuration
  • 5abc9ec Updated Path documentation and made is_junction() conditional (#800)
  • ede2029 Fixed TypeError when TLS handshake fails with truststore SSLContext (#801)
  • 163f10c Fixed cyclic garbage that keeps traceback frames alive in task group exceptio...
  • 0614b4f Migrated to native TOML configuration for Tox
  • 012a60c Made test_start_task_soon_cancel_immediately() less flaky
  • 65ef48a Rebind instance method fixtures to the same instance as the test (#807)
  • Additional commits viewable in compare view

Updates charset-normalizer from 3.3.2 to 3.4.0

Release notes

Sourced from charset-normalizer's releases.

Version 3.4.0

🚀 charset-normalizer is raising awareness around HTTP/2, and HTTP/3!

Did you know that Internet Explorer 11 shipped with an optional HTTP/2 support back in 2013? also libcurl did ship it in 2014[...] All of this while our community is still struggling to make a firm advancement in HTTP clients. Now, many of you use Requests as the defacto http client, now, and for many years now, Requests has been frozen. Being left in a vegetative state and not evolving, this blocked millions of developers from using more advanced features.

We promptly invite Python developers to look at the drop-in replacement for Requests, namely Niquests. It leverage charset-normalizer in a better way! Check it out, you will be positively surprised! Don't wait another decade.

We are thankful to @​microsoft and involved parties for funding our work through the Microsoft FOSS Fund program.

3.4.0 (2024-10-08)

Added

  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#512)

Fixed

  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381)
Changelog

Sourced from charset-normalizer's changelog.

3.4.0 (2024-10-08)

Added

  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#512)

Fixed

  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381)
Commits
  • f3118e3 🔧 change download/upload artifact version to last working version
  • 33e67e8 🔧 set compile-generator in generator_generic_slsa3 action
  • 73dd24c 🔧 add explicit build deps to setuptools
  • 78f1e9b 🔧 attempt to fix cd.yml *3
  • 56ae702 🔧 attempt to fix cd.yml *2
  • 9720055 🔧 attempt to fix cd.yml (macos part)
  • 1e10d06 Update CHANGELOG.md
  • 36c103a 🔖 Release 3.4.0 (#545)
  • 7658dfc ⬆️ Bump github/codeql-action from 3.26.11 to 3.26.12 (#544)
  • ca2535d ⬆️ Bump github/codeql-action from 3.26.9 to 3.26.11 (#542)
  • Additional commits viewable in compare view

Updates dnspython from 2.6.1 to 2.7.0

Release notes

Sourced from dnspython's releases.

dnspython 2.7.0

See What's New for details.

The minimum supported version of Python is 3.9.

My thanks to the many people who have contributed to this release. Also thanks to my co-maintainers: Tomáš Křížek, Petr Špaček, and Brian Wellington.

Changelog

Sourced from dnspython's changelog.

2.7.0

  • dns.query.https() and dns.asyncquery.https() now support HTTP/3 and the http_version parameter may be used to specify which version to use.

  • If the cryptography module is installed, then dnspython will now create deterministic ECDSA signatures by default. Cryptography, if installed, must be at least version 43. Thanks to Jakob Schlyter for adding the feature.

  • The RESINFO and WALLET RdataTypes are now supported.

  • The COOKIE and Report-Channel EDNS0 options are now supported.

  • All supported RdataTypes can now be imported at a single time rather than lazily on first use by calling dns.rdata.load_all_types().

  • The SVCB and HTTPS records now support the ohttp parameter.

  • xfr() and inbound_xfr() now share a common implementation.

  • Tokens are now supported for QUIC and HTTP/3.

  • dns.message.from_wire() now saves the input wire format in the Message's "wire" attribute. Likewise, dns.message.Message.to_wire() now records the generated wire format in that attribute.

  • The dns.message.Message object now has a get_options() helper to retrieve EDNS0 options of a specified type, and an extended_errors() helper to retrieve the list of EDE options in a message (if any).

  • dns.message.make_response() now has a copy mode which controls how sections are copied. By default, a copy mode appropriate for the opcode is used. This is currently dns.message.CopyMode.QUESTION for all opcodes.

  • If an IP address is used as the hostname in a URL, the https query code now passes the sni_hostname to httpx as this is required to get httpx to validate the certificate and check for an IP subject alternative name.

  • The minimum supported aioquic version is now 1.0.0.

  • The minimum supported Python version is now 3.9.

Commits

Updates httpcore from 1.0.5 to 1.0.6

Release notes

Sourced from httpcore's releases.

Version 1.0.6 (October 1st, 2024)

  • Relax trio dependency pinning. (#956)
  • Handle trio raising NotImplementedError on unsupported platforms. (#955)
  • Handle mapping ssl.SSLError to httpcore.ConnectError. (#918)
Changelog

Sourced from httpcore's changelog.

Version 1.0.6 (October 1st, 2024)

  • Relax trio dependency pinning. (#956)
  • Handle trio raising NotImplementedError on unsupported platforms. (#955)
  • Handle mapping ssl.SSLError to httpcore.ConnectError. (#918)
Commits

Updates idna from 3.9 to 3.10

Changelog

Sourced from idna's changelog.

3.10 (2024-09-15) +++++++++++++++++

  • Reverted to Unicode 15.1.0 data. Unicode 16 has some significant changes to UTS46 processing that will require more work to properly implement.
Commits

Updates jiter from 0.5.0 to 0.6.1

Commits

Updates langchain from 0.3.1 to 0.3.4

Release notes

Sourced from langchain's releases.

langchain-core==0.3.4

Changes since langchain-core==0.3.3

core: release 0.3.4 (#26729) core: In astream_events propagate cancellation reason to inner task (#26727)

langchain==0.3.4

Changes since langchain==0.3.3

langchain: release 0.3.4 (#27458) core[patch]: add convert_to_openai_messages util (#27263) core[patch],langchain[patch],community[patch]: Bump version dependency of tenacity to >=8.1.0,!=8.4.0,<10 (#27201)

langchain-core==0.3.3

Changes since langchain-core==0.2.41

core: release 0.3.3 (#26713) core[patch]: Fix defusedxml import (#26718) core/langchain: fix version used in deprecation (#26724) core[patch],langchain[patch]: deprecate memory and entity abstractions and implementations (#26717) Avoid copying runs (#26689) core[patch]: support js chat model namespaces (#26688) core[patch]: Release 0.3.2 (#26686) core[patch]: Fix load of ChatBedrock (#26679) core[patch]: support load from path for default namespaces (#26675) core, community: move graph vectorstores to community (#26678) core: Add N(naming) ruff rules (#25362) core: use ruff.target-version instead (#26634) core: remove [project] tag from pyproject (#26633) core: Put Python version as a project requirement so it is considered by ruff (#26608) core[patch]: Add ruff rule UP006(use PEP585 annotations) (#26574) docs: pypi readme image links (#26590) core,openai,grow,fw[patch]: deprecate bind_functions, update chat mod… (#26584) core[patch]: Release 0.3.1 (#26581) core[patch]: Fix "argument of type 'NoneType' is not iterable" error in LangChainTracer (#26576) core[minor]: remove beta from RemoveMessage (#26579) core: release 0.3.0 (#26453) multiple: pydantic 2 compatibility, v0.3 (#26443)

langchain==0.3.3

Changes since langchain==0.3.2

langchain: release 0.3.3 (#27213) core[patch]: exclude model cache from ser (#27086)

langchain-community==0.3.3

Changes since langchain-community==0.3.2

community: release 0.3.3 (#27472) community[minor]: add proxy support to RecursiveUrlLoader (#27364)

... (truncated)

Commits

Updates langchain-community from 0.3.1 to 0.3.3

Release notes

Sourced from langchain-community's releases.

langchain-community==0.3.3

Changes since langchain-community==0.3.2

community: release 0.3.3 (#27472) community[minor]: add proxy support to RecursiveUrlLoader (#27364) community: Add deprecation notice for Databricks integration in langchain-community (#27355) community: Add support for clob datatype in oracle database (#27330) community[patch]: Fix vLLM integration to filter SamplingParams (#27367) community: sambastudio chat model integration minor fix (#27238) community: Fix word spelling in Text2vecEmbeddings (#27183) multiple: rely on asyncio_mode auto in tests (#27200) docs: fix community pgvector deprecation warning formatting (#27094) community: clear mypy syntax warning in openapi (#27370) community: refactor Arxiv search logic (#27084) community: Update OCI data science integration (#27083) Community: Updated Firecrawl Document Loader to v1 (#26548) community: fixed KeyError: 'client' (#27345) [community] [Bugfix] base_o365 document loader metadata needs to be JSON serializable (#26322) community: Problem with embeddings in new versions of clickhouse. (#26041) community[minor]: VectorStore Infinispan. Adding TLS and authentication (#23522) core[patch],langchain[patch],community[patch]: Bump version dependency of tenacity to >=8.1.0,!=8.4.0,<10 (#27201) community: Cassandra Vector Store: extend metadata-related methods (#27078)

langchain-community==0.3.2

Changes since langchain-community==0.3.1

community: release 0.3.2 (#27214) [community] Add timeout control and retry for UC tool execution (#26645) community: Fix database connections for neo4j (#27190) community[patch]: fix structured_output in llamacpp integration (#27202) Fixed typo in llibs/community/langchain_community/storage/sql.py (#27029) community: AzureSearch: fix reranking for empty lists (#27104) core[minor]: Improve support for id in VectorStore (#26660) community: sambastudio chat model (#27056) community[patch]: update gpt-4o cost (#27038) core,integrations[minor]: Dont error on fields in model_kwargs (#27110) community[patch]: Fix missing protected_namespaces (#27076) community[patch]: chore warn deprecate the wandb callback handler (#27062) community: deprecate community ollama integrations (#26733) Bug-Fix[Community] Fix FastEmbedEmbeddings (#26764) multiple: update docs urls to latest 2 (#26837) Update neo4j vector procedures (#26775) core[patch]: Add kwargs to Runnable (#27008) community[patch]: Add docstring for Links (#25969) community: Add conversions from GVS to networkx (#26906) community[patch]: callback before yield for cloudflare (#26927) Fix typo in mlflow code example in mlflow.py (#26931) community[patch]: callback before yield for mlx pipeline (#26928) community[patch]: callback before yield for textgen (#26929) community[patch]: callback before yield for titan takeoff (#26930)

... (truncated)

Commits

Updates langchain-core from 0.3.6 to 0.3.12

Release notes

Sourced from langchain-core's releases.

langchain-core==0.3.12

Changes since langchain-core==0.3.11

core: release 0.3.12 (#27410) docs, core: error messaging [wip] (#27397)

langchain-core==0.3.11

Changes since langchain-core==0.3.10

core[patch]: 0.3.11 release (#27403) core[patch]: add convert_to_openai_messages util (#27263) multiple: rely on asyncio_mode auto in tests (#27200) core[patch]: Ignore ASYNC110 to upgrade to newest ruff version (#27229) core[patch],langchain[patch],community[patch]: Bump version dependency of tenacity to >=8.1.0,!=8.4.0,<10 (#27201)

langchain-core==0.3.10

Changes since langchain-core==0.3.9

core: release 0.3.10 (#27209) core[patch]: utils for adding/subtracting usage metadata (#27203) core[patch]: support ValidationError from pydantic v1 in tools (#27194) core: Add various ruff rules (#26836) core: update make format to fix all autofixable things (#27174) core: Add ruff rules for error messages (EM) (#26965) core[minor]: Improve support for id in VectorStore (#26660) core[patch]: Update AsyncCallbackManager to honor run_inline attribute and prevent context loss (#26885) core[minor]: add **kwargs to index and aindex functions for custom vector_field support (#26998) core[patch]: correct typo doc-string for astream_events method (#27108)

langchain-core==0.3.9

Changes since langchain-core==0.3.8

core[patch]: Release 0.3.9 (#27117) core,integrations[minor]: Dont error on fields in model_kwargs (#27110) core: fix batch race condition in FakeListChatModel (#26924) core[patch]: exclude model cache from ser (#27086) core[patch]: add UsageMetadata details (#27072)

langchain-core==0.3.8

Changes since langchain-core==0.3.7

core[patch]: Release 0.3.8 (#27046) core[patch]: Support injected tool args that are arbitrary types (#27045) core[patch]: fix init of RunnableAssign (#26903) multiple: update docs urls to latest 2 (#26837) core[patch]: improve index/aindex api when batch_size<n_docs (#25754) core[patch]: Add kwargs to Runnable (#27008) Merge pull request #26794

langchain-core==0.3.7

... (truncated)

Commits

Updates langchain-openai from 0.2.1 to 0.2.3

Release notes

Sourced from langchain-openai's releases.

langchain-openai==0.2.3

Changes since langchain-openai==0.2.2

partners/openai: release 0.2.3 (#27457) openai: audio modality, remove sockets from unit tests (#27436) multiple: rely on asyncio_mode auto in tests (#27200) openai[patch]: default temp=1 for o1 (#27206)

langchain-openai==0.2.2

Changes since langchain-openai==0.2.1

standard-tests[patch]: fix oai usage metadata test (#27122) openai[patch]: Release 0.2.2 (#27119) core,integrations[minor]: Dont error on fields in model_kwargs (#27110) openai: fix None token detail (#27091) openai[patch]: add usage metadata details (#27080) openai[patch]: exclude http client (#26891) openai[patch]: update deprecation target in API ref (#26921) openai[patch]: increase token limit in azure integration tests (#26901)

Commits

Updates langsmith from 0.1.129 to 0.1.136

Release notes

Sourced from langsmith's releases.

v0.1.136

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.1.135...v0.1.136

v0.1.135

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.1.134...v0.1.135

v0.1.134

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.1.133...v0.1.134

v0.1.133

What's Changed

Full Changelog: https://github.com/langchain-ai/langsmith-sdk/compare/v0.1.132......

Description has been truncated

Bumps the python-requirements group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.8` | `3.10.10` |
| [anyio](https://github.com/agronholm/anyio) | `4.6.0` | `4.6.2.post1` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.3.2` | `3.4.0` |
| [dnspython](https://github.com/rthalley/dnspython) | `2.6.1` | `2.7.0` |
| [httpcore](https://github.com/encode/httpcore) | `1.0.5` | `1.0.6` |
| [idna](https://github.com/kjd/idna) | `3.9` | `3.10` |
| [jiter](https://github.com/pydantic/jiter) | `0.5.0` | `0.6.1` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.3.1` | `0.3.4` |
| [langchain-community](https://github.com/langchain-ai/langchain) | `0.3.1` | `0.3.3` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `0.3.6` | `0.3.12` |
| [langchain-openai](https://github.com/langchain-ai/langchain) | `0.2.1` | `0.2.3` |
| [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.1.129` | `0.1.136` |
| [markupsafe](https://github.com/pallets/markupsafe) | `2.1.5` | `3.0.2` |
| [marshmallow](https://github.com/marshmallow-code/marshmallow) | `3.22.0` | `3.23.0` |
| [openai](https://github.com/openai/openai-python) | `1.50.2` | `1.52.0` |
| [orjson](https://github.com/ijl/orjson) | `3.10.7` | `3.10.9` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.23.4` | `2.24.2` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.5.2` | `2.6.0` |
| [pymongo](https://github.com/mongodb/mongo-python-driver) | `4.9.1` | `4.10.1` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.35` | `2.0.36` |
| [tiktoken](https://github.com/openai/tiktoken) | `0.7.0` | `0.8.0` |
| [yarl](https://github.com/aio-libs/yarl) | `1.13.1` | `1.15.5` |



Updates `aiohttp` from 3.10.8 to 3.10.10
- [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.10.8...v3.10.10)

Updates `anyio` from 4.6.0 to 4.6.2.post1
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.6.0...4.6.2.post1)

Updates `charset-normalizer` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/Ousret/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.3.2...3.4.0)

Updates `dnspython` from 2.6.1 to 2.7.0
- [Release notes](https://github.com/rthalley/dnspython/releases)
- [Changelog](https://github.com/rthalley/dnspython/blob/main/doc/whatsnew.rst)
- [Commits](rthalley/dnspython@v2.6.1...v2.7.0)

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

Updates `idna` from 3.9 to 3.10
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.9...v3.10)

Updates `jiter` from 0.5.0 to 0.6.1
- [Release notes](https://github.com/pydantic/jiter/releases)
- [Commits](pydantic/jiter@v0.5.0...v0.6.1)

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

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

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

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

Updates `langsmith` from 0.1.129 to 0.1.136
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](langchain-ai/langsmith-sdk@v0.1.129...v0.1.136)

Updates `markupsafe` from 2.1.5 to 3.0.2
- [Release notes](https://github.com/pallets/markupsafe/releases)
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst)
- [Commits](pallets/markupsafe@2.1.5...3.0.2)

Updates `marshmallow` from 3.22.0 to 3.23.0
- [Changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst)
- [Commits](marshmallow-code/marshmallow@3.22.0...3.23.0)

Updates `openai` from 1.50.2 to 1.52.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.50.2...v1.52.0)

Updates `orjson` from 3.10.7 to 3.10.9
- [Release notes](https://github.com/ijl/orjson/releases)
- [Changelog](https://github.com/ijl/orjson/blob/master/CHANGELOG.md)
- [Commits](ijl/orjson@3.10.7...3.10.9)

Updates `pydantic-core` from 2.23.4 to 2.24.2
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.23.4...v2.24.2)

Updates `pydantic-settings` from 2.5.2 to 2.6.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.5.2...v2.6.0)

Updates `pymongo` from 4.9.1 to 4.10.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.9.1...4.10.1)

Updates `sqlalchemy` from 2.0.35 to 2.0.36
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Updates `tiktoken` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/openai/tiktoken/releases)
- [Changelog](https://github.com/openai/tiktoken/blob/main/CHANGELOG.md)
- [Commits](openai/tiktoken@0.7.0...0.8.0)

Updates `yarl` from 1.13.1 to 1.15.5
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.13.1...v1.15.5)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: anyio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: dnspython
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: httpcore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: jiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: langchain
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: langchain-community
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: langchain-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: langchain-openai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: langsmith
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-requirements
- dependency-name: marshmallow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: orjson
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: pydantic-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: pymongo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: tiktoken
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: yarl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
...

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 Oct 21, 2024
@john0isaac
Copy link
Collaborator

@dependabot recreate

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 26, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 26, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-requirements-6ab02ea68d branch October 26, 2024 17:03
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.

2 participants