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 minor-patch group with 7 updates #215

Merged
merged 1 commit into from
Apr 12, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 11, 2024

Bumps the minor-patch group with 7 updates:

Package From To
pydantic 2.6.4 2.7.0
langchain 0.1.15 0.1.16
boto3 1.34.82 1.34.83
ruff 0.3.5 0.3.6
boto3-stubs 1.34.82 1.34.83
anthropic 0.25.0 0.25.1
litellm 1.34.41 1.35.1

Updates pydantic from 2.6.4 to 2.7.0

Release notes

Sourced from pydantic's releases.

v2.7.0 (2024-04-11)

The code released in v2.7.0 is practically identical to that of v2.7.0b1.

What's Changed

Packaging

New Features

Finalized in v2.7.0, rather than v2.7.0b1:

  • Add support for field level number to str coercion option by @​NeevCohen in #9137
  • Update warnings parameter for serialization utilities to allow raising a warning by @​Lance-Drane in #9166

Changes

Performance

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.7.0 (2024-04-11)

GitHub release

The code released in v2.7.0 is practically identical to that of v2.7.0b1.

What's Changed

Packaging

New Features

Finalized in v2.7.0, rather than v2.7.0b1:

  • Add support for field level number to str coercion option by @​NeevCohen in #9137
  • Update warnings parameter for serialization utilities to allow raising a warning by @​Lance-Drane in #9166

Changes

Performance

... (truncated)

Commits

Updates langchain from 0.1.15 to 0.1.16

Release notes

Sourced from langchain's releases.

v0.1.16

What's Changed

New Contributors

Full Changelog: langchain-ai/langchain@v0.1.15...v0.1.16

Commits

Updates boto3 from 1.34.82 to 1.34.83

Changelog

Sourced from boto3's changelog.

1.34.83

  • api-change:batch: [botocore] This release adds the task properties field to attempt details and the name field on EKS container detail.
  • api-change:cloudfront: [botocore] CloudFront origin access control extends support to AWS Lambda function URLs and AWS Elemental MediaPackage v2 origins.
  • api-change:cloudwatch: [botocore] This release adds support for Metric Characteristics for CloudWatch Anomaly Detection. Anomaly Detector now takes Metric Characteristics object with Periodic Spikes boolean field that tells Anomaly Detection that spikes that repeat at the same time every week are part of the expected pattern.
  • api-change:codebuild: [botocore] Support access tokens for Bitbucket sources
  • api-change:iam: [botocore] For CreateOpenIDConnectProvider API, the ThumbprintList parameter is no longer required.
  • api-change:medialive: [botocore] AWS Elemental MediaLive introduces workflow monitor, a new feature that enables the visualization and monitoring of your media workflows. Create signal maps of your existing workflows and monitor them by creating notification and monitoring template groups.
  • api-change:omics: [botocore] This release adds support for retrieval of S3 direct access metadata on sequence stores and read sets, and adds support for SHA256up and SHA512up HealthOmics ETags.
  • api-change:pipes: [botocore] LogConfiguration ARN validation fixes
  • api-change:rds: [botocore] Updates Amazon RDS documentation for Standard Edition 2 support in RDS Custom for Oracle.
  • api-change:s3control: [botocore] Documentation updates for Amazon S3-control.
Commits
  • c90f23a Merge branch 'release-1.34.83'
  • d2d1dd0 Bumping version to 1.34.83
  • c17a81b Add changelog entries from botocore
  • acef6a0 Merge branch 'release-1.34.82' into develop
  • See full diff in compare view

Updates ruff from 0.3.5 to 0.3.6

Release notes

Sourced from ruff's releases.

v0.3.6

Changes

Preview features

  • [pylint] Implement bad-staticmethod-argument (PLW0211) (#10781)
  • [pylint] Implement if-stmt-min-max (PLR1730, PLR1731) (#10002)
  • [pyupgrade] Replace str,Enum multiple inheritance with StrEnum UP042 (#10713)
  • [refurb] Implement if-expr-instead-of-or-operator (FURB110) (#10687)
  • [refurb] Implement int-on-sliced-str (FURB166) (#10650)
  • [refurb] Implement write-whole-file (FURB103) (#10802)
  • [refurb] Support itemgetter in reimplemented-operator (FURB118) (#10526)
  • [flake8_comprehensions] Add sum/min/max to unnecessary comprehension check (C419) (#10759)

Rule changes

  • [pydocstyle] Require capitalizing docstrings where the first sentence is a single word (D403) (#10776)
  • [pycodestyle] Ignore annotated lambdas in class scopes (E731) (#10720)
  • [flake8-pyi] Various improvements to PYI034 (#10807)
  • [flake8-slots] Flag subclasses of call-based typing.NamedTuples as well as subclasses of collections.namedtuple() (SLOT002) (#10808)
  • [pyflakes] Allow forward references in class bases in stub files (F821) (#10779)
  • [pygrep-hooks] Improve blanket-noqa error message (PGH004) (#10851)

CLI

  • Support FORCE_COLOR env var (#10839)

Configuration

  • Support negated patterns in [extend-]per-file-ignores (#10852)

Bug fixes

  • [flake8-import-conventions] Accept non-aliased (but correct) import in unconventional-import-alias (ICN001) (#10729)
  • [flake8-quotes] Add semantic model flag when inside f-string replacement field (#10766)
  • [pep8-naming] Recursively resolve TypeDicts for N815 violations (#10719)
  • [flake8-quotes] Respect Q00* ignores in flake8-quotes rules (#10728)
  • [flake8-simplify] Show negated condition in needless-bool diagnostics (SIM103) (#10854)
  • [ruff] Use within-scope shadowed bindings in asyncio-dangling-task (RUF006) (#10793)
  • [flake8-pytest-style] Fix single-tuple conversion in pytest-parametrize-values-wrong-type (PT007) (#10862)
  • [flake8-return] Ignore assignments to annotated variables in unnecessary-assign (RET504) (#10741)
  • [refurb] Do not allow any keyword arguments for read-whole-file in rb mode (FURB101) (#10803)
  • [pylint] Don't recommend decorating staticmethods with @singledispatch (PLE1519, PLE1520) (#10637)
  • [pydocstyle] Use section name range for all section-related docstring diagnostics (#10740)
  • Respect # noqa directives on __all__ openers (#10798)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.3.6

Preview features

  • [pylint] Implement bad-staticmethod-argument (PLW0211) (#10781)
  • [pylint] Implement if-stmt-min-max (PLR1730, PLR1731) (#10002)
  • [pyupgrade] Replace str,Enum multiple inheritance with StrEnum UP042 (#10713)
  • [refurb] Implement if-expr-instead-of-or-operator (FURB110) (#10687)
  • [refurb] Implement int-on-sliced-str (FURB166) (#10650)
  • [refurb] Implement write-whole-file (FURB103) (#10802)
  • [refurb] Support itemgetter in reimplemented-operator (FURB118) (#10526)
  • [flake8_comprehensions] Add sum/min/max to unnecessary comprehension check (C419) (#10759)

Rule changes

  • [pydocstyle] Require capitalizing docstrings where the first sentence is a single word (D403) (#10776)
  • [pycodestyle] Ignore annotated lambdas in class scopes (E731) (#10720)
  • [flake8-pyi] Various improvements to PYI034 (#10807)
  • [flake8-slots] Flag subclasses of call-based typing.NamedTuples as well as subclasses of collections.namedtuple() (SLOT002) (#10808)
  • [pyflakes] Allow forward references in class bases in stub files (F821) (#10779)
  • [pygrep-hooks] Improve blanket-noqa error message (PGH004) (#10851)

CLI

  • Support FORCE_COLOR env var (#10839)

Configuration

  • Support negated patterns in [extend-]per-file-ignores (#10852)

Bug fixes

  • [flake8-import-conventions] Accept non-aliased (but correct) import in unconventional-import-alias (ICN001) (#10729)
  • [flake8-quotes] Add semantic model flag when inside f-string replacement field (#10766)
  • [pep8-naming] Recursively resolve TypeDicts for N815 violations (#10719)
  • [flake8-quotes] Respect Q00* ignores in flake8-quotes rules (#10728)
  • [flake8-simplify] Show negated condition in needless-bool diagnostics (SIM103) (#10854)
  • [ruff] Use within-scope shadowed bindings in asyncio-dangling-task (RUF006) (#10793)
  • [flake8-pytest-style] Fix single-tuple conversion in pytest-parametrize-values-wrong-type (PT007) (#10862)
  • [flake8-return] Ignore assignments to annotated variables in unnecessary-assign (RET504) (#10741)
  • [refurb] Do not allow any keyword arguments for read-whole-file in rb mode (FURB101) (#10803)
  • [pylint] Don't recommend decorating staticmethods with @singledispatch (PLE1519, PLE1520) (#10637)
  • [pydocstyle] Use section name range for all section-related docstring diagnostics (#10740)
  • Respect # noqa directives on __all__ openers (#10798)
Commits

Updates boto3-stubs from 1.34.82 to 1.34.83

Commits

Updates anthropic from 0.25.0 to 0.25.1

Release notes

Sourced from anthropic's releases.

v0.25.1

0.25.1 (2024-04-11)

Full Changelog: v0.25.0...v0.25.1

Chores

Changelog

Sourced from anthropic's changelog.

0.25.1 (2024-04-11)

Full Changelog: v0.25.0...v0.25.1

Chores

Commits

Updates litellm from 1.34.41 to 1.35.1

Release notes

Sourced from litellm's releases.

v1.35.1

Full Changelog: BerriAI/litellm@1.35.1.dev1...v1.35.1

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 56 61.27676192407882 1.5397730909671428 0.0 461 0 50.1638559999833 1107.1635870000023
/health/liveliness Passed ✅ 40 42.92388506183409 15.664936652138612 0.0 4690 0 38.05782500000987 1342.833737000035
/health/readiness Passed ✅ 40 42.76369572825589 15.437811771041506 0.0 4622 0 38.10779999997749 1072.7217620000147
Aggregated Passed ✅ 40 43.71384527197392 32.64252151414726 0.0 9773 0 38.05782500000987 1342.833737000035

v1.35.1.dev2

What's Changed

New Contributors

Full Changelog: BerriAI/litellm@v1.35.1.dev1...v1.35.1.dev2

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 41 45.19059934868436 1.5226733311145824 0.0 456 0 35.54072000000019 345.4370799999822
/health/liveliness Passed ✅ 25 27.884267815168553 15.717595108676182 0.006678391803134133 4707 2 23.136004999969373 1308.393284000033
/health/readiness Passed ✅ 25 28.57209173287544 15.550635313597828 0.0 4657 0 23.403158000007807 1314.1930079999895
Aggregated Passed ✅ 25 29.014092984623147 32.79090375338859 0.006678391803134133 9820 2 23.136004999969373 1314.1930079999895

1.35.1.dev1

What's Changed

Full Changelog: BerriAI/litellm@v1.35.0...1.35.1.dev1

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 56 59.73776742141278 1.4667348414590125 0.0 439 0 50.6829270000253 514.3070789999911
/health/liveliness Passed ✅ 40 43.96269727512022 15.362293396420363 0.0 4598 0 38.40477699998246 1272.3044690000052
/health/readiness Passed ✅ 41 42.980002046983074 15.502618825443777 0.0 4640 0 38.25979399999824 1066.237890000025
Aggregated Passed ✅ 41 44.207148028004966 32.33164706332315 0.0 9677 0 38.25979399999824 1272.3044690000052

v1.35.1.dev1

What's Changed

... (truncated)

Commits
  • c597d61 bump: version 1.35.0 → 1.35.1
  • 84d4348 fix(router.py): make sure pre call rpm check runs even when model not in mode...
  • 240aaf7 fix - show api_base in migration script
  • 69c095b Merge pull request #2953 from BerriAI/litellm_fix_sec_issue
  • 96cd038 security fix - disable demo accounts
  • 1c1b0f9 fix - migration script for /model/new
  • 78571ba Merge pull request #2830 from onukura/onukura-patch-1
  • d999acd docs(routing.md): reorder routing strategies
  • 83a7a9f docs(routing.md): add calling via proxy tutorial to router docs
  • 6749306 Merge pull request #2945 from ushuz/hotfix
  • 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

Bumps the minor-patch group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [pydantic](https://github.com/pydantic/pydantic) | `2.6.4` | `2.7.0` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.1.15` | `0.1.16` |
| [boto3](https://github.com/boto/boto3) | `1.34.82` | `1.34.83` |
| [ruff](https://github.com/astral-sh/ruff) | `0.3.5` | `0.3.6` |
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.34.82` | `1.34.83` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.25.0` | `0.25.1` |
| [litellm](https://github.com/BerriAI/litellm) | `1.34.41` | `1.35.1` |


Updates `pydantic` from 2.6.4 to 2.7.0
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.6.4...v2.7.0)

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

Updates `boto3` from 1.34.82 to 1.34.83
- [Release notes](https://github.com/boto/boto3/releases)
- [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst)
- [Commits](boto/boto3@1.34.82...1.34.83)

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

Updates `boto3-stubs` from 1.34.82 to 1.34.83
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `anthropic` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.25.0...v0.25.1)

Updates `litellm` from 1.34.41 to 1.35.1
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](BerriAI/litellm@v1.34.41...v1.35.1)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: langchain
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: boto3-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: anthropic
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: litellm
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 11, 2024
@gecBurton gecBurton merged commit 18eb243 into main Apr 12, 2024
3 checks passed
@gecBurton gecBurton deleted the dependabot/pip/minor-patch-b0b12467ab branch April 12, 2024 07:48
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
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant