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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the pip-updates group with 9 updates in the / directory:

Package From To
boto3 1.34.158 1.34.162
langchain 0.2.12 0.2.14
scipy 1.14.0 1.14.1
sentry-sdk 2.12.0 2.13.0
langchain-community 0.2.11 0.2.12
langchain-aws 0.1.16 0.1.17
ruff 0.5.7 0.6.2
factory-boy 3.3.0 3.3.1
mypy 1.11.1 1.11.2

Updates boto3 from 1.34.158 to 1.34.162

Commits
  • 59518e4 Merge branch 'release-1.34.162'
  • add8a63 Bumping version to 1.34.162
  • 2ec9480 Add changelog entries from botocore
  • 2f927ce Merge branch 'release-1.34.161'
  • 8268877 Merge branch 'release-1.34.161' into develop
  • c36a3f2 Bumping version to 1.34.161
  • d4b6006 Add changelog entries from botocore
  • 7eb51bd Merge branch 'release-1.34.160'
  • 27dcf72 Merge branch 'release-1.34.160' into develop
  • edc8a5c Bumping version to 1.34.160
  • 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 scipy from 1.14.0 to 1.14.1

Release notes

Sourced from scipy's releases.

SciPy 1.14.1 Release Notes

SciPy 1.14.1 adds support for Python 3.13, including binary wheels on PyPI. Apart from that, it is a bug-fix release with no new features compared to 1.14.0.

Authors

  • Name (commits)
  • h-vetinari (1)
  • Evgeni Burovski (1)
  • CJ Carey (2)
  • Lucas Colley (3)
  • Ralf Gommers (3)
  • Melissa Weber Mendonça (1)
  • Andrew Nelson (3)
  • Nick ODell (1)
  • Tyler Reddy (36)
  • Daniel Schmitz (1)
  • Dan Schult (4)
  • Albert Steppi (2)
  • Ewout ter Hoeven (1)
  • Tibor Völcker (2) +
  • Adam Turner (1) +
  • Warren Weckesser (2)
  • ਗਗਨਦੀਪ ਸਿੰਘ (Gagandeep Singh) (1)

A total of 17 people contributed to this release. People with a "+" by their names contributed a patch for the first time. This list of names is automatically generated, and may not be fully complete.

Commits
  • 92d2a85 REL: 1.14.1 rel commit [wheel build]
  • 85623a1 Merge pull request #21362 from tylerjereddy/treddy_1.14.1_backports
  • d924005 MAINT: PR 21362 revisions [wheel build]
  • b901a4e MAINT, CI: PR 21362 revisions [wheel build]
  • 2a7ec60 MAINT, BLD: PR 21362 revisions [wheel build]
  • f4f084d MAINT, CI: PR 21362 revisions [wheel build]
  • b712fc6 DOC: update 1.14.1 relnotes [wheel build]
  • cdd5aca MAINT: special: Accommodate changed integer handling in NumPy 2.0. (#21401)
  • 0f91838 BLD: cp313 wheels on manylinux_aarch64 (#21409)
  • 6dd0b00 MAINT, CI: wheel build changes [wheel build]
  • Additional commits viewable in compare view

Updates sentry-sdk from 2.12.0 to 2.13.0

Release notes

Sourced from sentry-sdk'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'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 langchain-community from 0.2.11 to 0.2.12

Release notes

Sourced from langchain-community's releases.

langchain-community==0.2.12

Changes since langchain-community==0.2.11

community: release 0.2.12 (#25324) community: kwargs for CassandraGraphVectorStore (#25300) core[patch]: add standard tracing params for retrievers (#25240) [Community] - Added bind_tools and with_structured_output for ChatZhipuAI (#23887) docs: Fix ChatBaichuan, QianfanChatEndpoint, ChatSparkLLM, ChatZhipuAI docs (#25265) Improvement[Embeddings] Add dimension support to ZhipuAIEmbeddings (#25274) core[patch]: Deprecating beta upsert APIs in vectorstore (#25069) community[patch],core[patch]: Update EdenaiTool root_validator and add unit test in core (#25233) community[patch]: Remove more @​allow_reuse=True validators (#25236) community[patch]: Remove usage of @​root_validator(allow_reuse=True) (#25235) community[patch]: FAISS: ValueError mentions normalize_score_fn isntead of relevance_score_fn (#25225) community: Add llm-extraction option to FireCrawl Document Loader (#25231) docs: update integration api refs (#25195) community[patch]: Use get_fields adapter for pydantic (#25191) community[minor]: [SharePointLoader] Load extended metadata for the root folder (#24872) community[patch]: Upgrade pydantic extra (#25185) Update polygon.py for business subscription (#25085) community[patch]: gpt-4o-2024-08-06 costs (#25164) docs: Standardize QianfanLLMEndpoint LLM (#25139) community: Fix ValidationError on creating GPT4AllEmbeddings with no gpt4all_kwargs (#25124) community: Add stock market tools from financialdatasets.ai (#25025) Added bedrock 3-5 sonnet cost detials for BedrockAnthropicTokenUsageCallbackHandler (#25104) [docs]: vector store integration pages (#24858) docs: Standardize Tongyi (#25103) delete the default model value from langchain and discard the need fo… (#24915) Allow ConfluenceLoader authorization via Personal Access Tokens (#25096) community: fix neo4j from_existing_graph (#24912) community: make AthenaLoader profile_name optional and fix type hint (#24958) community: fix issue of the existence of numeric object in additional_kwargs a… (#24863) community[patch]: Optimize test case for MoonshotChat (#25050) community: Fix Predibase Integration for HuggingFace-hosted fine-tuned adapters (#25015) docs: Standardize MiniMaxEmbeddings (#24983) docs: Standardize SparkLLMTextEmbeddings docstrings (#25021) docs: fix kwargs docstring (#25010) docs: standardizing tavily tool docs (#24736)

Commits

Updates langchain-aws from 0.1.16 to 0.1.17

Release notes

Sourced from langchain-aws's releases.

v0.1.17

What's Changed

New Contributors

Full Changelog: langchain-ai/langchain-aws@v0.1.16...v0.1.17

Commits
  • 2b3fdea aws[patch]: release 0.1.17 (#165)
  • 01e2f02 chatbedrock[patch]: remove redundant token counts (#164)
  • e86b551 Kcgourishetti/bedrock agents runnable (#152)
  • 052818e Fixes image type, adds document type for ChatBedrockConverse (#143)
  • 77ec2a2 bedrock[patch]: add standard tracing params (#162)
  • 89ea067 bedrock converse[patch]: support streaming in with_structured_output (#154)
  • 5649bd1 aws[patch]: Add ToolMessage's status to bedrock message for ChatBedrockConver...
  • See full diff in compare view

Updates ruff from 0.5.7 to 0.6.2

Release notes

Sourced from ruff's releases.

0.6.2

Release Notes

Preview features

  • [flake8-simplify] Extend open-file-with-context-handler to work with other standard-library IO modules (SIM115) (#12959)
  • [ruff] Avoid unused-async for functions with FastAPI route decorator (RUF029) (#12938)
  • [ruff] Ignore fstring-missing-syntax (RUF027) for fastAPI paths (#12939)
  • [ruff] Implement check for Decimal called with a float literal (RUF032) (#12909)

Rule changes

  • [flake8-bugbear] Update diagnostic message when expression is at the end of function (B015) (#12944)
  • [flake8-pyi] Skip type annotations in string-or-bytes-too-long (PYI053) (#13002)
  • [flake8-type-checking] Always recognise relative imports as first-party (#12994)
  • [flake8-unused-arguments] Ignore unused arguments on stub functions (ARG001) (#12966)
  • [pylint] Ignore augmented assignment for self-cls-assignment (PLW0642) (#12957)

Server

  • Show full context in error log messages (#13029)

Bug fixes

  • [pep8-naming] Don't flag from imports following conventional import names (N817) (#12946)
  • [pylint] - Allow __new__ methods to have cls as their first argument even if decorated with @staticmethod for bad-staticmethod-argument (PLW0211) (#12958)

Documentation

  • Add hyperfine installation instructions; update hyperfine code samples (#13034)
  • Expand note to use Ruff with other language server in Kate (#12806)
  • Update example for PT001 as per the new default behavior (#13019)
  • [perflint] Improve docs for try-except-in-loop (PERF203) (#12947)
  • [pydocstyle] Add reference to lint.pydocstyle.ignore-decorators setting to rule docs (#12996)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.6.2

Preview features

  • [flake8-simplify] Extend open-file-with-context-handler to work with other standard-library IO modules (SIM115) (#12959)
  • [ruff] Avoid unused-async for functions with FastAPI route decorator (RUF029) (#12938)
  • [ruff] Ignore fstring-missing-syntax (RUF027) for fastAPI paths (#12939)
  • [ruff] Implement check for Decimal called with a float literal (RUF032) (#12909)

Rule changes

  • [flake8-bugbear] Update diagnostic message when expression is at the end of function (B015) (#12944)
  • [flake8-pyi] Skip type annotations in string-or-bytes-too-long (PYI053) (#13002)
  • [flake8-type-checking] Always recognise relative imports as first-party (#12994)
  • [flake8-unused-arguments] Ignore unused arguments on stub functions (ARG001) (#12966)
  • [pylint] Ignore augmented assignment for self-cls-assignment (PLW0642) (#12957)

Server

  • Show full context in error log messages (#13029)

Bug fixes

  • [pep8-naming] Don't flag from imports following conventional import names (N817) (#12946)
  • [pylint] - Allow __new__ methods to have cls as their first argument even if decorated with @staticmethod for bad-staticmethod-argument (PLW0211) (#12958)

Documentation

  • Add hyperfine installation instructions; update hyperfine code samples (#13034)
  • Expand note to use Ruff with other language server in Kate (#12806)
  • Update example for PT001 as per the new default behavior (#13019)
  • [perflint] Improve docs for try-except-in-loop (PERF203) (#12947)
  • [pydocstyle] Add reference to lint.pydocstyle.ignore-decorators setting to rule docs (#12996)

0.6.1

This is a hotfix release to address an issue with ruff-pre-commit. In v0.6, Ruff changed its behavior to lint and format Jupyter notebooks by default; however, due to an oversight, these files were still excluded by default if Ruff was run via pre-commit, leading to inconsistent behavior. This has now been fixed.

Preview features

  • [fastapi] Implement fast-api-unused-path-parameter (FAST003) (#12638)

Rule changes

  • [pylint] Rename too-many-positional to too-many-positional-arguments (R0917) (#12905)

... (truncated)

Commits
  • 02c4373 Bump version to 0.6.2 (#13056)
  • d37e2e5 [flake8-simplify] Extend open-file-with-context-handler to work with other ...
  • d1d0678 [red-knot] Remove notebook support from the server (#13040)
  • 93f9023 Add hyperfine installation instructions; update hyperfine code samples (#...
  • 8144a11 [red-knot] Add definition for with items (#12920)
  • dce87c2 Eagerly validate typeshed versions (#12786)
  • f873d2a Revert "Use the system allocator for codspeed benchmarks" (#13035)
  • ecd9e6a [red-knot] Improve the unresolved-import check (#13007)
  • 785c399 Use ZIP file size metadata to allocate string (#13032)
  • a35cdbb Fix various panicks when linting black/src (#13033)
  • Additional commits viewable in compare view

Updates factory-boy from 3.3.0 to 3.3.1

Changelog

Sourced from factory-boy's changelog.

3.3.1 (2024-08-18)

New:

  • Add support for Django 4.2
  • Add support for Django 5.1
  • Add support for Python 3.12
  • :issue:903: Add basic typing annotations
  • Run the test suite against mongomock instead of an actual MongoDB server

Bugfix:

  • :issue:1031: Do not require :attr:~factory.alchemy.SQLAlchemyOptions.sqlalchemy_session when :attr:~factory.alchemy.SQLAlchemyOptions.sqlalchemy_session_factory is provided.

Removed:

  • Stop advertising and verifying support for Django 3.2, 4.0, 4.1
Commits
  • c38732f Preparing release 3.3.1
  • 0ee3c9d Enable "nitpicky" mode on Sphinx
  • a7d06b9 Target Django 5.x tests at version 5.1
  • ce39114 Stop testing for Django 3.2
  • c2188f7 Stop testing against PostgreSQL
  • 819acce Run the test suite against Mongomock
  • f8456f5 Remove various (obsolete) warning exemption flags
  • 8aaa29b Improve readability of alchemy checker
  • d6349de Call evaluate_pre() instead of evaluate() on Maybe decider
  • 01c0a73 test: add regression test for #965
  • Additional commits viewable in compare view

Updates mypy from 1.11.1 to 1.11.2

Commits
  • 789f02c Bump version to 1.11.2
  • 917cc75 An alternative fix for a union-like literal string (#17639)
  • 7d805b3 Unwrap TypedDict item types before storing (#17640)
  • 32675dd Revert "Fix Literal strings containing pipe characters" (#17638)
  • 778542b Revert "Fix RawExpressionType.accept crash with --cache-fine-grained" (#1...
  • 14ab742 Bump version to 1.11.2+dev
  • 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

Bumps the pip-updates group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.34.158` | `1.34.162` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.2.12` | `0.2.14` |
| [scipy](https://github.com/scipy/scipy) | `1.14.0` | `1.14.1` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.12.0` | `2.13.0` |
| [langchain-community](https://github.com/langchain-ai/langchain) | `0.2.11` | `0.2.12` |
| [langchain-aws](https://github.com/langchain-ai/langchain-aws) | `0.1.16` | `0.1.17` |
| [ruff](https://github.com/astral-sh/ruff) | `0.5.7` | `0.6.2` |
| [factory-boy](https://github.com/FactoryBoy/factory_boy) | `3.3.0` | `3.3.1` |
| [mypy](https://github.com/python/mypy) | `1.11.1` | `1.11.2` |



Updates `boto3` from 1.34.158 to 1.34.162
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.158...1.34.162)

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 `scipy` from 1.14.0 to 1.14.1
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.14.0...v1.14.1)

Updates `sentry-sdk` 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 `langchain-community` from 0.2.11 to 0.2.12
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-community==0.2.11...langchain-community==0.2.12)

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

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

Updates `factory-boy` from 3.3.0 to 3.3.1
- [Changelog](https://github.com/FactoryBoy/factory_boy/blob/master/docs/changelog.rst)
- [Commits](FactoryBoy/factory_boy@3.3.0...3.3.1)

Updates `mypy` from 1.11.1 to 1.11.2
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.1...v1.11.2)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: langchain
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: langchain-community
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: langchain-aws
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-updates
- dependency-name: factory-boy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-updates
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-updates
...

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 26, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 2, 2024

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

@dependabot dependabot bot closed this Sep 2, 2024
@dependabot dependabot bot deleted the dependabot/pip/pip-updates-5cbc4f0b9c branch September 2, 2024 04:22
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