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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the pip group across 7 directories with 5 updates #1621

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 14, 2024

Bumps the pip group with 3 updates in the /aws-cs-langserve directory: fastapi, langchain-core and orjson.
Bumps the pip group with 3 updates in the /aws-go-langserve directory: fastapi, langchain-core and orjson.
Bumps the pip group with 3 updates in the /aws-js-langserve directory: fastapi, langchain-core and orjson.
Bumps the pip group with 4 updates in the /aws-py-langserve directory: aiohttp, fastapi, langchain-core and orjson.
Bumps the pip group with 1 update in the /aws-py-oidc-provider-pulumi-cloud directory: cryptography.
Bumps the pip group with 3 updates in the /aws-ts-langserve directory: fastapi, langchain-core and orjson.
Bumps the pip group with 3 updates in the /aws-yaml-langserve directory: fastapi, langchain-core and orjson.

Updates fastapi from 0.109.2 to 0.110.0

Release notes

Sourced from fastapi's releases.

0.110.0

Breaking Changes

  • 馃悰 Fix unhandled growing memory for internal server errors, refactor dependencies with yield and except to require raising again as in regular Python. PR #11191 by @鈥媡iangolo.
    • This is a breaking change (and only slightly) if you used dependencies with yield, used except in those dependencies, and didn't raise again.
    • This was reported internally by @鈥媟ushilsrivastava as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    • Read the new docs: Dependencies with yield and except.

In short, if you had dependencies that looked like:

def my_dep():
    try:
        yield
    except SomeException:
        pass

Now you need to make sure you raise again after except, just as you would in regular Python:

def my_dep():
    try:
        yield
    except SomeException:
        raise

Docs

Translations

... (truncated)

Commits
  • e40747f 馃敄 Release version 0.110.0
  • 32b56a8 馃摑 Update release notes
  • b6b0f2a 馃摑 Update release notes
  • bf771bd 馃悰 Fix unhandled growing memory for internal server errors, refactor dependenc...
  • 6336604 馃摑 Update release notes
  • cb93874 馃摑 Update release notes
  • 9210e6a 馃寪 Add German translation for docs/de/docs/reference/background.md (#10820)
  • dec45c5 馃寪 Add German translation for docs/de/docs/reference/templating.md (#10842)
  • 5da35ff 馃摑 Update release notes
  • 626b066 馃寪 Add German translation for docs/de/docs/external-links.md (#10852)
  • Additional commits viewable in compare view

Updates langchain-core from 0.1.22 to 0.1.30

Commits

Updates orjson from 3.9.13 to 3.9.15

Release notes

Sourced from orjson's releases.

3.9.15

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Changelog

Sourced from orjson's changelog.

3.9.15 - 2024-02-23

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14 - 2024-02-14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Commits
  • a348f59 3.9.15
  • b0e4d2c yyjson 0eca326, recursion limit
  • 5067ead impl_escape_unchecked() byte exact read
  • e04ea73 cargo update, build misc
  • ba8c701 3.9.14
  • a2f7b7b impl_format_simd!() lift create from loop, rotate left
  • 528220f format_escaped_str() fast and slow paths depending on page boundary
  • 29884e6 Fix buffer overread in format_escaped_str
  • c825472 cargo update
  • See full diff in compare view

Updates fastapi from 0.109.2 to 0.110.0

Release notes

Sourced from fastapi's releases.

0.110.0

Breaking Changes

  • 馃悰 Fix unhandled growing memory for internal server errors, refactor dependencies with yield and except to require raising again as in regular Python. PR #11191 by @鈥媡iangolo.
    • This is a breaking change (and only slightly) if you used dependencies with yield, used except in those dependencies, and didn't raise again.
    • This was reported internally by @鈥媟ushilsrivastava as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    • Read the new docs: Dependencies with yield and except.

In short, if you had dependencies that looked like:

def my_dep():
    try:
        yield
    except SomeException:
        pass

Now you need to make sure you raise again after except, just as you would in regular Python:

def my_dep():
    try:
        yield
    except SomeException:
        raise

Docs

Translations

... (truncated)

Commits
  • e40747f 馃敄 Release version 0.110.0
  • 32b56a8 馃摑 Update release notes
  • b6b0f2a 馃摑 Update release notes
  • bf771bd 馃悰 Fix unhandled growing memory for internal server errors, refactor dependenc...
  • 6336604 馃摑 Update release notes
  • cb93874 馃摑 Update release notes
  • 9210e6a 馃寪 Add German translation for docs/de/docs/reference/background.md (#10820)
  • dec45c5 馃寪 Add German translation for docs/de/docs/reference/templating.md (#10842)
  • 5da35ff 馃摑 Update release notes
  • 626b066 馃寪 Add German translation for docs/de/docs/external-links.md (#10852)
  • Additional commits viewable in compare view

Updates langchain-core from 0.1.22 to 0.1.30

Commits

Updates orjson from 3.9.13 to 3.9.15

Release notes

Sourced from orjson's releases.

3.9.15

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Changelog

Sourced from orjson's changelog.

3.9.15 - 2024-02-23

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14 - 2024-02-14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Commits
  • a348f59 3.9.15
  • b0e4d2c yyjson 0eca326, recursion limit
  • 5067ead impl_escape_unchecked() byte exact read
  • e04ea73 cargo update, build misc
  • ba8c701 3.9.14
  • a2f7b7b impl_format_simd!() lift create from loop, rotate left
  • 528220f format_escaped_str() fast and slow paths depending on page boundary
  • 29884e6 Fix buffer overread in format_escaped_str
  • c825472 cargo update
  • See full diff in compare view

Updates fastapi from 0.109.2 to 0.110.0

Release notes

Sourced from fastapi's releases.

0.110.0

Breaking Changes

  • 馃悰 Fix unhandled growing memory for internal server errors, refactor dependencies with yield and except to require raising again as in regular Python. PR #11191 by @鈥媡iangolo.
    • This is a breaking change (and only slightly) if you used dependencies with yield, used except in those dependencies, and didn't raise again.
    • This was reported internally by @鈥媟ushilsrivastava as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    • Read the new docs: Dependencies with yield and except.

In short, if you had dependencies that looked like:

def my_dep():
    try:
        yield
    except SomeException:
        pass

Now you need to make sure you raise again after except, just as you would in regular Python:

def my_dep():
    try:
        yield
    except SomeException:
        raise

Docs

Translations

... (truncated)

Commits
  • e40747f 馃敄 Release version 0.110.0
  • 32b56a8 馃摑 Update release notes
  • b6b0f2a 馃摑 Update release notes
  • bf771bd 馃悰 Fix unhandled growing memory for internal server errors, refactor dependenc...
  • 6336604 馃摑 Update release notes
  • cb93874 馃摑 Update release notes
  • 9210e6a 馃寪 Add German translation for docs/de/docs/reference/background.md (#10820)
  • dec45c5 馃寪 Add German translation for docs/de/docs/reference/templating.md (#10842)
  • 5da35ff 馃摑 Update release notes
  • 626b066 馃寪 Add German translation for docs/de/docs/external-links.md (#10852)
  • Additional commits viewable in compare view

Updates langchain-core from 0.1.22 to 0.1.30

Commits

Updates orjson from 3.9.13 to 3.9.15

Release notes

Sourced from orjson's releases.

3.9.15

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Changelog

Sourced from orjson's changelog.

3.9.15 - 2024-02-23

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14 - 2024-02-14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Commits
  • a348f59 3.9.15
  • b0e4d2c yyjson 0eca326, recursion limit
  • 5067ead impl_escape_unchecked() byte exact read
  • e04ea73 cargo update, build misc
  • ba8c701 3.9.14
  • a2f7b7b impl_format_simd!() lift create from loop, rotate left
  • 528220f format_escaped_str() fast and slow paths depending on page boundary
  • 29884e6 Fix buffer overread in format_escaped_str
  • c825472 cargo update
  • See full diff in compare view

Updates aiohttp from 3.9.1 to 3.9.2

Release notes

Sourced from aiohttp's releases.

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.

    Related issues and pull requests on GitHub: #8014.

  • Added runtime type check for ClientSession timeout parameter.

    Related issues and pull requests on GitHub: #8021.

  • Fixed an unhandled exception in the Python HTTP parser on header lines starting with a colon -- by :user:pajod.

    Invalid request lines with anything but a dot between the HTTP major and minor version are now rejected. Invalid header field names containing question mark or slash are now rejected. Such requests are incompatible with :rfc:9110#section-5.6.2 and are not known to be of any legitimate use.

    Related issues and pull requests on GitHub: #8074.

  • Improved validation of paths for static resources requests to the server -- by :user:bdraco.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

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.

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

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

  • Added runtime type check for ClientSession timeout parameter.

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

  • Fixed an unhandled exception in the Python HTTP parser on header lines starting with a colon -- by :user:pajod.

    Invalid request lines with anything but a dot between the HTTP major and minor version are now rejected. Invalid header field names containing question mark or slash are now rejected. Such requests are incompatible with :rfc:9110#section-5.6.2 and are not known to be of any legitimate use.

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

... (truncated)

Commits
  • 24a6d64 Release v3.9.2 (#8082)
  • 9118a58 [PR #8079/1c335944 backport][3.9] Validate static paths (#8080)
  • 435ad46 [PR #3955/8960063e backport][3.9] Replace all tmpdir fixtures with tmp_path (...
  • d33bc21 Improve validation in HTTP parser (#8074) (#8078)
  • 0d945d1 [PR #7916/822fbc74 backport][3.9] Add more information to contributing page (...
  • 3ec4fa1 [PR #8069/69bbe874 backport][3.9] 馃摑 Only show changelog draft for non-release...
  • 419d715 [PR #8066/cba34699 backport][3.9] 馃拝馃摑 Restructure the changelog for clarity (#...
  • a54dab3 [PR #8049/a379e634 backport][3.9] Set cause for ClientPayloadError (#8050)
  • 437ac47 [PR #7995/43a5bc50 backport][3.9] Fix examples of fallback_charset_resolver...
  • 034e5e3 [PR #8042/4b91b530 backport][3.9] Tightening the runtime type check for ssl (...
  • Additional commits viewable in compare view

Updates fastapi from 0.109.0 to 0.109.1

Release notes

Sourced from fastapi's releases.

0.110.0

Breaking Changes

  • 馃悰 Fix unhandled growing memory for internal server errors, refactor dependencies with yield and except to require raising again as in regular Python. PR #11191 by @鈥媡iangolo.
    • This is a breaking change (and only slightly) if you used dependencies with yield, used except in those dependencies, and didn't raise again.
    • This was reported internally by @鈥媟ushilsrivastava as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    • Read the new docs: Dependencies with yield and except.

In short, if you had dependencies that looked like:

def my_dep():
    try:
        yield
    except SomeException:
        pass

Now you need to make sure you raise again after except, just as you would in regular Python:

def my_dep():
    try:
        yield
    except SomeException:
        raise

Docs

Translations

... (truncated)

Commits
  • e40747f 馃敄 Release version 0.110.0
  • 32b56a8 馃摑 Update release notes
  • b6b0f2a 馃摑 Update release notes
  • bf771bd 馃悰 Fix unhandled growing memory for internal server errors, refactor dependenc...
  • 6336604 馃摑 Update release notes
  • cb93874 馃摑 Update release notes
  • 9210e6a 馃寪 Add German translation for docs/de/docs/reference/background.md (#10820)
  • dec45c5 馃寪 Add German translation for docs/de/docs/reference/templating.md (#10842)
  • 5da35ff 馃摑 Update release notes
  • 626b066 馃寪 Add German translation for docs/de/docs/external-links.md (#10852)
  • Additional commits viewable in compare view

Updates langchain-core from 0.1.16 to 0.1.30

Commits

Updates orjson from 3.9.12 to 3.9.15

Release notes

Sourced from orjson's releases.

3.9.15

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Changelog

Sourced from orjson's changelog.

3.9.15 - 2024-02-23

Fixed

  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

3.9.14 - 2024-02-14

Fixed

  • Fix crash serializing str introduced in 3.9.11.

Changed

  • Build now depends on Rust 1.72 or later.
Commits
  • a348f59 3.9.15
  • b0e4d2c yyjson 0eca326, recursion limit
  • 5067ead impl_escape_unchecked() byte exact read
  • e04ea73 cargo update, build misc
  • ba8c701 3.9.14
  • a2f7b7b impl_format_simd!() lift create from loop, rotate left
  • 528220f format_escaped_str() fast and slow paths depending on page boundary
  • 29884e6 Fix buffer overread in format_escaped_str
  • c825472 cargo update
  • See full diff in compare view

Updates cryptography from 41.0.6 to 42.0.4

Changelog

Sourced from cryptography's changelog.

42.0.4 - 2024-02-20


* Fixed a null-pointer-dereference and segfault that could occur when creating
  a PKCS#12 bundle. Credit to **Alexander-Programming** for reporting the
  issue. **CVE-2024-26130**
* Fixed ASN.1 encoding for PKCS7/SMIME signed messages. The fields ``SMIMECapabilities``
  and ``SignatureAlgorithmIdentifier`` should now be correctly encoded according to the
  definitions in :rfc:`2633` :rfc:`3370`.

.. _v42-0-3:

42.0.3 - 2024-02-15

  • Fixed an initialization issue that caused key loading failures for some users.

.. _v42-0-2:

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


</tr></table> 

... (truncated)

Commits

Updates fastapi from 0.109.2 to 0.110.0

Release notes

Sourced from fastapi's releases.

0.110.0

Breaking Changes

  • 馃悰 Fix unhandled growing memory for internal server errors, refactor dependencies with yield and except to require raising again as in regular Python. PR #11191 by @鈥媡iangolo.
    • This is a breaking change (and only slightly) if you used dependencies with yield, used except in those dependencies, and didn't raise again.
    • This was reported internally by @鈥媟ushilsrivastava as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    • Read the new docs: Dependencies with yield and except.

In short, if you had dependencies that looked like:

def my_dep():
    try:
        yield
    except SomeException:
        pass

Now you need to make sure you raise again after except, just as you would in regular Python:

def my_dep():
    try:
        yield
    except SomeException:
        raise

Docs

Translations

... (truncated)

Commits
  • e40747f 馃敄 Release version 0.110.0
  • 32b56a8 馃摑 Update release notes
  • b6b0f2a 馃摑 Update release notes
  • bf771bd 馃悰 Fix unhandled growing memory for internal server errors, refactor dependenc...
  • 6336604 馃摑 Update release notes
  • cb93874 馃摑 Update release notes
  • 9210e6a 馃寪 Add German translation for docs/de/docs/reference/background.md (

Bumps the pip group with 3 updates in the /aws-cs-langserve directory: [fastapi](https://github.com/tiangolo/fastapi), [langchain-core](https://github.com/langchain-ai/langchain) and [orjson](https://github.com/ijl/orjson).
Bumps the pip group with 3 updates in the /aws-go-langserve directory: [fastapi](https://github.com/tiangolo/fastapi), [langchain-core](https://github.com/langchain-ai/langchain) and [orjson](https://github.com/ijl/orjson).
Bumps the pip group with 3 updates in the /aws-js-langserve directory: [fastapi](https://github.com/tiangolo/fastapi), [langchain-core](https://github.com/langchain-ai/langchain) and [orjson](https://github.com/ijl/orjson).
Bumps the pip group with 4 updates in the /aws-py-langserve directory: [aiohttp](https://github.com/aio-libs/aiohttp), [fastapi](https://github.com/tiangolo/fastapi), [langchain-core](https://github.com/langchain-ai/langchain) and [orjson](https://github.com/ijl/orjson).
Bumps the pip group with 1 update in the /aws-py-oidc-provider-pulumi-cloud directory: [cryptography](https://github.com/pyca/cryptography).
Bumps the pip group with 3 updates in the /aws-ts-langserve directory: [fastapi](https://github.com/tiangolo/fastapi), [langchain-core](https://github.com/langchain-ai/langchain) and [orjson](https://github.com/ijl/orjson).
Bumps the pip group with 3 updates in the /aws-yaml-langserve directory: [fastapi](https://github.com/tiangolo/fastapi), [langchain-core](https://github.com/langchain-ai/langchain) and [orjson](https://github.com/ijl/orjson).


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

Updates `langchain-core` from 0.1.22 to 0.1.30
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](https://github.com/langchain-ai/langchain/commits)

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

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

Updates `langchain-core` from 0.1.22 to 0.1.30
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](https://github.com/langchain-ai/langchain/commits)

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

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

Updates `langchain-core` from 0.1.22 to 0.1.30
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](https://github.com/langchain-ai/langchain/commits)

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

Updates `aiohttp` from 3.9.1 to 3.9.2
- [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.2)

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

Updates `langchain-core` from 0.1.16 to 0.1.30
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](https://github.com/langchain-ai/langchain/commits)

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

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

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

Updates `langchain-core` from 0.1.22 to 0.1.30
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](https://github.com/langchain-ai/langchain/commits)

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

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

Updates `langchain-core` from 0.1.22 to 0.1.30
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](https://github.com/langchain-ai/langchain/commits)

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

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: langchain-core
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: orjson
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: fastapi
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: langchain-core
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: orjson
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: fastapi
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: langchain-core
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: orjson
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: aiohttp
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: fastapi
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: langchain-core
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: orjson
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: cryptography
  dependency-type: direct:production
  dependency-group: pip-security-group
- dependency-name: fastapi
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: langchain-core
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: orjson
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: fastapi
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: langchain-core
  dependency-type: indirect
  dependency-group: pip-security-group
- dependency-name: orjson
  dependency-type: indirect
  dependency-group: pip-security-group
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 26, 2024

Superseded by #1626.

@dependabot dependabot bot closed this Mar 26, 2024
@dependabot dependabot bot deleted the dependabot/pip/aws-cs-langserve/pip-security-group-e427faab0d branch March 26, 2024 22:00
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.

None yet

0 participants