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 across 1 directory with 9 updates #726

Merged
merged 1 commit into from
Jul 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 5, 2024

Bumps the minor-patch group with 9 updates in the / directory:

Package From To
boto3 1.34.131 1.34.139
boto3-stubs 1.34.137 1.34.139
deepeval 0.21.62 0.21.64
playwright 1.44.0 1.45.0
pytest-playwright 0.5.0 0.5.1
litellm 1.41.3 1.41.6
openai 1.35.7 1.35.10
mkdocs-material 9.5.27 9.5.28
mlflow 2.14.1 2.14.2

Updates boto3 from 1.34.131 to 1.34.139

Commits
  • fc49bbe Merge branch 'release-1.34.139'
  • caf8684 Bumping version to 1.34.139
  • 4cd633f Add changelog entries from botocore
  • d4eec4e Merge branch 'release-1.34.138' into develop
  • a9f692a Merge branch 'release-1.34.138'
  • 2c161e0 Bumping version to 1.34.138
  • 7bc84e1 Add changelog entries from botocore
  • 02bf15d Merge branch 'release-1.34.137' into develop
  • 441bc9e Merge branch 'release-1.34.137'
  • 00b24b9 Bumping version to 1.34.137
  • Additional commits viewable in compare view

Updates boto3-stubs from 1.34.137 to 1.34.139

Commits

Updates deepeval from 0.21.62 to 0.21.64

Commits

Updates playwright from 1.44.0 to 1.45.0

Release notes

Sourced from playwright's releases.

v1.45.0

Clock

Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

  • testing with predefined time;
  • keeping consistent time and timers;
  • monitoring inactivity;
  • ticking through time manually.
# Initialize clock with some time before the test time and let the page load
# naturally. `Date.now` will progress as the timers fire.
page.clock.install(time=datetime.datetime(2024, 2, 2, 8, 0, 0))
page.goto("http://localhost:3333")
Pretend that the user closed the laptop lid and opened it again at 10am.
Pause the time once reached that point.
page.clock.pause_at(datetime.datetime(2024, 2, 2, 10, 0, 0))
Assert the page state.
expect(page.get_by_test_id("current-time")).to_have_text("2/2/2024, 10:00:00 AM")
Close the laptop lid again and open it at 10:30am.
page.clock.fast_forward("30:00")
expect(page.get_by_test_id("current-time")).to_have_text("2/2/2024, 10:30:00 AM")

See the clock guide for more details.

Miscellaneous

  • Method locator.setInputFiles() now supports uploading a directory for <input type=file webkitdirectory> elements.
    page.get_by_label("Upload directory").set_input_files('mydir')
  • Multiple methods like locator.click() or locator.press() now support a ControlOrMeta modifier key. This key maps to Meta on macOS and maps to Control on Windows and Linux.
    # Press the common keyboard shortcut Control+S or Meta+S to trigger a "Save" operation.
    page.keyboard.press("ControlOrMeta+S")
  • New property httpCredentials.send in apiRequest.newContext() that allows to either always send the Authorization header or only send it in response to 401 Unauthorized.
  • Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.
  • v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.

Browser Versions

  • Chromium 127.0.6533.5
  • Mozilla Firefox 127.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 126

... (truncated)

Commits
  • 90bf2e6 build(deps): bump mypy from 1.10.0 to 1.10.1 (#2479)
  • ecb34e3 build(deps): bump types-requests from 2.32.0.20240602 to 2.32.0.20240622 (#2470)
  • 8f9bcd1 chore(roll): roll to Playwright 1.45.1-beta-1719996498000 (#2474)
  • d83dc6e fix(fetch): serialise empty array in 'data' as JSON (#2476)
  • c6cc4c9 chore(roll): roll Playwright to 1.45.0-alpha-2024-06-14 (#2464)
  • b331b8e devops: update conda-incubator/setup-miniconda to v3 (#2467)
  • 3c46eec build(deps): bump flake8 from 7.0.0 to 7.1.0 (#2466)
  • f8c8882 devops: run conda test builds on macos-13
  • d46b729 build(deps): bump types-requests from 2.31.0.20240406 to 2.32.0.20240602 (#2459)
  • 5213511 build(deps): bump requests from 2.32.0 to 2.32.3 (#2458)
  • Additional commits viewable in compare view

Updates pytest-playwright from 0.5.0 to 0.5.1

Release notes

Sourced from pytest-playwright's releases.

v0.5.1

Bugfixes

Commits
  • cd44e24 fix: catch PermissionError when cleaning the tests results with multiple thre...
  • See full diff in compare view

Updates litellm from 1.41.3 to 1.41.6

Release notes

Sourced from litellm's releases.

v1.41.6

What's Changed

Full Changelog: BerriAI/litellm@v1.41.5...v1.41.6

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-v1.41.6

Don't want to maintain your internal proxy? get in touch 🎉

Hosted Proxy Alpha: https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-v1.41.6

Don't want to maintain your internal proxy? get in touch 🎉

Hosted Proxy Alpha: https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat

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 ✅ 99 120.03623455821207 6.427899106681398 0.0 1924 0 83.30082600002697 1524.837892999983
Aggregated Passed ✅ 99 120.03623455821207 6.427899106681398 0.0 1924 0 83.30082600002697 1524.837892999983

v1.41.5

What's Changed

... (truncated)

Commits
  • 6650104 bump: version 1.41.5 → 1.41.6
  • d66d353 test(test_prompt_factory.py): fix test
  • a3e9bc4 fix(aws_secret_manager.py): fix litellm license check
  • 19c982d fix: linting fixes
  • 17869fc Merge pull request #4536 from BerriAI/litellm_anthropic_tool_calling_streamin...
  • 5e47970 Merge branch 'main' into litellm_anthropic_tool_calling_streaming_fix
  • 2e5a81f fix(utils.py): stream_options working across all providers
  • 8dbe055 fix(utils.py): stream_options fix
  • 344268e fix(anthropic.py): support real anthropic tool calling + streaming
  • e712277 bump: version 1.41.4 → 1.41.5
  • Additional commits viewable in compare view

Updates openai from 1.35.7 to 1.35.10

Release notes

Sourced from openai's releases.

v1.35.10

1.35.10 (2024-07-03)

Full Changelog: v1.35.9...v1.35.10

Chores

v1.35.9

1.35.9 (2024-07-02)

Full Changelog: v1.35.8...v1.35.9

Bug Fixes

  • client: always respect content-type multipart/form-data if provided (#1519) (6da55e1)

Chores

v1.35.8

1.35.8 (2024-07-02)

Full Changelog: v1.35.7...v1.35.8

Chores

Changelog

Sourced from openai's changelog.

1.35.10 (2024-07-03)

Full Changelog: v1.35.9...v1.35.10

Chores

1.35.9 (2024-07-02)

Full Changelog: v1.35.8...v1.35.9

Bug Fixes

  • client: always respect content-type multipart/form-data if provided (#1519) (6da55e1)

Chores

1.35.8 (2024-07-02)

Full Changelog: v1.35.7...v1.35.8

Chores

Commits

Updates mkdocs-material from 9.5.27 to 9.5.28

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.5.28

  • Fixed #7313: Improved tooltips mounted in sidebar when feature is disabled
Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.5.28 (2024-07-02)

  • Fixed #7313: Improved tooltips mounted in sidebar when feature is disabled

mkdocs-material-9.5.27 (2024-06-16)

  • Updated Estonian translations

mkdocs-material-9.5.26 (2024-06-06)

  • Fixed #7232: Tab switches on scroll when linking tabs (9.5.19 regression)
  • Fixed #7230: Blog author avatar broken when referring to local file

mkdocs-material-9.5.25+insiders-4.53.11 (2024-05-27)

  • Fixed projects plugin crashing when serving before building subprojects

mkdocs-material-9.5.25 (2024-05-27)

  • Fixed #7209: Tags plugin crashing on numeric tags

mkdocs-material-9.5.24+insiders-4.53.10 (2024-05-20)

  • Fixed projects plugin crashing in serve mode when disabled
  • Fixed projects plugin crashing when building nested projects

mkdocs-material-9.5.24+insiders-4.53.9 (2024-05-20)

  • Fixed #7191: Tags listings not rendering when toc_depth is changed

mkdocs-material-9.5.24 (2024-05-20)

  • Fixed #7187: Version selector title rendering issue

mkdocs-material-9.5.23 (2024-05-15)

  • Fixed #7183: Edge case in anchor navigation when using instant navigation
  • Fixed #6436: Version selector not showing version alias

mkdocs-material-9.5.22 (2024-05-12)

  • Fixed #7170: Copy button adds empty lines for line spans (9.5.18 regression)
  • Fixed #7160: Version switching doesn't stay on page (9.5.5 regression)
  • Fixed #5619: Links in Mermaid.js diagrams not discernible

mkdocs-material-9.5.21 (2024-05-03)

  • Fixed #7133: Ensure latest version of Mermaid.js is used
  • Fixed #7125: Added warning for dotfiles in info plugin

... (truncated)

Commits

Updates mlflow from 2.14.1 to 2.14.2

Release notes

Sourced from mlflow's releases.

MLflow 2.14.2 is a patch release that includes several important bug fixes and documentation enhancements.

Bug fixes:

  • [Models] Fix an issue with requirements inference error handling when disabling the default warning-only behavior (#12547, @​B-Step62)
  • [Models] Fix dependency inference issues with Transformers models saved with the unified API llm/v1/xxx task definitions. (#12551, @​B-Step62)
  • [Models / Databricks] Fix an issue with MLlfow log_model introduced in MLflow 2.13.0 that causes Databricks DLT service to crash in some situations (#12514, @​WeichenXu123)
  • [Models] Fix an output data structure issue with the predict_stream implementation for LangChain AgentExecutor and other non-Runnable chains (#12518, @​B-Step62)
  • [Tracking] Fix an issue with the predict_proba inference method in the sklearn flavor when loading an sklearn pipeline object as pyfunc (#12554, @​WeichenXu123)
  • [Tracking] Fix an issue with the Tracing implementation where other services usage of OpenTelemetry would activate MLflow tracing and cause errors (#12457, @​B-Step62)
  • [Tracking / Databricks] Correct an issue when running dependency inference in Databricks that can cause duplicate dependency entries to be logged (#12493, @​sunishsheth2009)

Documentation updates:

Small bug fixes and documentation updates:

#12311, #12285, #12535, #12543, #12320, #12444, @​B-Step62; #12310, #12340, @​serena-ruan; #12409, #12432, #12471, #12497, #12499, @​harupy; #12555, @​nojaf; #12472, #12431, @​xq-yin; #12530, #12529, #12528, #12527, #12526, #12524, #12531, #12523, #12525, #12522, @​dbczumar; #12483, @​jsuchome; #12465, #12441, @​BenWilson2; #12450, @​StarryZhang-whu

Changelog

Sourced from mlflow's changelog.

2.14.2 (2024-07-03)

MLflow 2.14.2 is a patch release that includes several important bug fixes and documentation enhancements.

Bug fixes:

  • [Models] Fix an issue with requirements inference error handling when disabling the default warning-only behavior (#12547, @​B-Step62)
  • [Models] Fix dependency inference issues with Transformers models saved with the unified API llm/v1/xxx task definitions. (#12551, @​B-Step62)
  • [Models / Databricks] Fix an issue with MLlfow log_model introduced in MLflow 2.13.0 that causes Databricks DLT service to crash in some situations (#12514, @​WeichenXu123)
  • [Models] Fix an output data structure issue with the predict_stream implementation for LangChain AgentExecutor and other non-Runnable chains (#12518, @​B-Step62)
  • [Tracking] Fix an issue with the predict_proba inference method in the sklearn flavor when loading an sklearn pipeline object as pyfunc (#12554, @​WeichenXu123)
  • [Tracking] Fix an issue with the Tracing implementation where other services usage of OpenTelemetry would activate MLflow tracing and cause errors (#12457, @​B-Step62)
  • [Tracking / Databricks] Correct an issue when running dependency inference in Databricks that can cause duplicate dependency entries to be logged (#12493, @​sunishsheth2009)

Documentation updates:

Small bug fixes and documentation updates:

#12311, #12285, #12535, #12543, #12320, #12444, @​B-Step62; #12310, #12340, @​serena-ruan; #12409, #12432, #12471, #12497, #12499, @​harupy; #12555, @​nojaf; #12472, #12431, @​xq-yin; #12530, #12529, #12528, #12527, #12526, #12524, #12531, #12523, #12525, #12522, @​dbczumar; #12483, @​jsuchome; #12465, #12441, @​BenWilson2; #12450, @​StarryZhang-whu

Commits

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 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.34.131` | `1.34.139` |
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.34.137` | `1.34.139` |
| [deepeval](https://github.com/confident-ai/deepeval) | `0.21.62` | `0.21.64` |
| [playwright](https://github.com/Microsoft/playwright-python) | `1.44.0` | `1.45.0` |
| [pytest-playwright](https://github.com/microsoft/playwright-pytest) | `0.5.0` | `0.5.1` |
| [litellm](https://github.com/BerriAI/litellm) | `1.41.3` | `1.41.6` |
| [openai](https://github.com/openai/openai-python) | `1.35.7` | `1.35.10` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.27` | `9.5.28` |
| [mlflow](https://github.com/mlflow/mlflow) | `2.14.1` | `2.14.2` |



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

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

Updates `deepeval` from 0.21.62 to 0.21.64
- [Release notes](https://github.com/confident-ai/deepeval/releases)
- [Commits](confident-ai/deepeval@v0.21.62...v0.21.64)

Updates `playwright` from 1.44.0 to 1.45.0
- [Release notes](https://github.com/Microsoft/playwright-python/releases)
- [Commits](microsoft/playwright-python@v1.44.0...v1.45.0)

Updates `pytest-playwright` from 0.5.0 to 0.5.1
- [Release notes](https://github.com/microsoft/playwright-pytest/releases)
- [Commits](microsoft/playwright-pytest@v0.5.0...v0.5.1)

Updates `litellm` from 1.41.3 to 1.41.6
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](BerriAI/litellm@v1.41.3...v1.41.6)

Updates `openai` from 1.35.7 to 1.35.10
- [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.35.7...v1.35.10)

Updates `mkdocs-material` from 9.5.27 to 9.5.28
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.27...9.5.28)

Updates `mlflow` from 2.14.1 to 2.14.2
- [Release notes](https://github.com/mlflow/mlflow/releases)
- [Changelog](https://github.com/mlflow/mlflow/blob/master/CHANGELOG.md)
- [Commits](mlflow/mlflow@v2.14.1...v2.14.2)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  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: deepeval
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: playwright
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: pytest-playwright
  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-patch
  dependency-group: minor-patch
- dependency-name: openai
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: mkdocs-material
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: mlflow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Jul 5, 2024
@brunns brunns merged commit c5720b1 into main Jul 5, 2024
3 of 4 checks passed
@brunns brunns deleted the dependabot/pip/minor-patch-f1d388b0fc branch July 5, 2024 06:39
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.

1 participant