Skip to content

Comments

chore(deps): bump the gha group in /packages/opentelemetry-instrumentation-mistralai with 4 updates#3716

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/packages/opentelemetry-instrumentation-mistralai/gha-71a2e0bee7
Open

chore(deps): bump the gha group in /packages/opentelemetry-instrumentation-mistralai with 4 updates#3716
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/packages/opentelemetry-instrumentation-mistralai/gha-71a2e0bee7

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 25, 2026

Bumps the gha group in /packages/opentelemetry-instrumentation-mistralai with 4 updates: opentelemetry-semantic-conventions-ai, mistralai, pytest and ruff.

Updates opentelemetry-semantic-conventions-ai from 0.4.13 to 0.4.14

Updates mistralai from 1.12.3 to 1.12.4

Release notes

Sourced from mistralai's releases.

python - v1.12.4 - 2026-02-20 17:54:29

Generated by Speakeasy CLI

mistralai 1.12.4

Python SDK Changes:

  • mistral.beta.conversations.start():
    • request.inputs.[array].[] Changed Breaking ⚠️
    • response Changed Breaking ⚠️
  • mistral.beta.conversations.list(): response.[] Changed Breaking ⚠️
  • mistral.beta.conversations.get(): response Changed Breaking ⚠️
  • mistral.beta.conversations.append():
    • request.inputs.[array].[] Changed Breaking ⚠️
    • response Changed Breaking ⚠️
  • mistral.beta.conversations.get_history(): response Changed Breaking ⚠️
  • mistral.beta.conversations.get_messages(): response Changed Breaking ⚠️
  • mistral.beta.conversations.restart():
    • request.inputs.[array].[] Changed Breaking ⚠️
    • response Changed Breaking ⚠️
  • mistral.beta.conversations.start_stream():
    • request.inputs.[array].[] Changed Breaking ⚠️
    • response.[].data Changed Breaking ⚠️
  • mistral.beta.conversations.append_stream():
    • request.inputs.[array].[] Changed Breaking ⚠️
    • response.[].data Changed Breaking ⚠️
  • mistral.beta.conversations.restart_stream():
    • request.inputs.[array].[] Changed Breaking ⚠️
    • response.[].data Changed Breaking ⚠️
  • mistral.beta.agents.create(): response.object Changed Breaking ⚠️
  • mistral.beta.agents.list(): response.[].object Changed Breaking ⚠️
  • mistral.beta.agents.get(): response.object Changed Breaking ⚠️
  • mistral.beta.agents.update(): response.object Changed Breaking ⚠️
  • mistral.beta.agents.update_version(): response.object Changed Breaking ⚠️
  • mistral.beta.agents.list_versions(): response.[].object Changed Breaking ⚠️
  • mistral.beta.agents.get_version(): response.object Changed Breaking ⚠️
  • mistral.chat.complete():
    • request.messages.[] Changed Breaking ⚠️
    • response.choices.[].message Changed Breaking ⚠️
  • mistral.chat.stream():
    • request.messages.[] Changed Breaking ⚠️
    • response.[].data.choices.[].delta.content.[array].[] Changed Breaking ⚠️
  • mistral.fim.complete(): response.choices.[].message Changed Breaking ⚠️
  • mistral.fim.stream(): response.[].data.choices.[].delta.content.[array].[] Changed Breaking ⚠️
  • mistral.agents.complete():
    • request.messages.[] Changed Breaking ⚠️
    • response.choices.[].message Changed Breaking ⚠️
  • mistral.agents.stream():
    • request.messages.[] Changed Breaking ⚠️
    • response.[].data.choices.[].delta.content.[array].[] Changed Breaking ⚠️
  • mistral.classifiers.moderate_chat():
    • request.inputs.[array].[] Changed Breaking ⚠️
  • mistral.classifiers.classify_chat():

... (truncated)

Changelog

Sourced from mistralai's changelog.

2024-08-07 14:25:13

Changes

Based on:

Generated

  • [python v1.0.0] .

Releases

2024-08-08 18:12:16

Changes

Based on:

Generated

  • [python v1.0.1] .

Releases

2024-08-20 08:36:28

Changes

Based on:

Generated

  • [python v1.0.2] .

Releases

2024-08-29 09:09:05

Changes

Based on:

Generated

  • [python v1.0.3] .

Releases

2024-09-13 16:21:24

Changes

Based on:

Generated

  • [python v1.1.0] .

Releases

... (truncated)

Commits

Updates pytest from 8.4.2 to 9.0.2

Release notes

Sourced from pytest's releases.

9.0.2

pytest 9.0.2 (2025-12-06)

Bug fixes

  • #13896: The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.

    You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.

    Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.

  • #13904: Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.

  • #13946: The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0. Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim. It will be deprecated in pytest 9.1 and removed in pytest 10.

  • #13965: Fixed quadratic-time behavior when handling unittest subtests in Python 3.10.

Improved documentation

  • #4492: The API Reference now contains cross-reference-able documentation of pytest's command-line flags <command-line-flags>.

9.0.1

pytest 9.0.1 (2025-11-12)

Bug fixes

  • #13895: Restore support for skipping tests via raise unittest.SkipTest.
  • #13896: The terminal progress plugin added in pytest 9.0 is now automatically disabled when iTerm2 is detected, it generated desktop notifications instead of the desired functionality.
  • #13904: Fixed the TOML type of the verbosity settings in the API reference from number to string.
  • #13910: Fixed UserWarning: Do not expect file_or_dir on some earlier Python 3.12 and 3.13 point versions.

Packaging updates and notes for downstreams

  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

Contributor-facing changes

  • #13891, #13942: The CI/CD part of the release automation is now capable of creating GitHub Releases without having a Git checkout on disk -- by bluetech and webknjaz.
  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

... (truncated)

Commits
  • 3d10b51 Prepare release version 9.0.2
  • 188750b Merge pull request #14030 from pytest-dev/patchback/backports/9.0.x/1e4b01d1f...
  • b7d7bef Merge pull request #14014 from bluetech/compat-note
  • bd08e85 Merge pull request #14013 from pytest-dev/patchback/backports/9.0.x/922b60377...
  • bc78386 Add CLI options reference documentation (#13930)
  • 5a4e398 Fix docs typo (#14005) (#14008)
  • d7ae6df Merge pull request #14006 from pytest-dev/maintenance/update-plugin-list-tmpl...
  • 556f6a2 pre-commit: fix rst-lint after new release (#13999) (#14001)
  • c60fbe6 Fix quadratic-time behavior when handling unittest subtests in Python 3.10 ...
  • 73d9b01 Merge pull request #13995 from nicoddemus/patchback/backports/9.0.x/1b5200c0f...
  • Additional commits viewable in compare view

Updates ruff from 0.15.1 to 0.15.2

Release notes

Sourced from ruff's releases.

0.15.2

Release Notes

Released on 2026-02-19.

Preview features

Bug fixes

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.2

Released on 2026-02-19.

Preview features

... (truncated)

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 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

Important

Update dependencies in opentelemetry-instrumentation-mistralai, including mistralai, pytest, ruff, and opentelemetry-semantic-conventions-ai.

  • Dependency Updates:
    • Bump mistralai from 1.12.3 to 1.12.4 with breaking changes in several methods.
    • Bump pytest from 8.4.2 to 9.0.2, including bug fixes and documentation improvements.
    • Bump ruff from 0.15.1 to 0.15.2, expanding the default rule set.
    • Bump opentelemetry-semantic-conventions-ai from 0.4.13 to 0.4.14.
  • Configuration Changes:
    • Update pyproject.toml to reflect new dependency versions.
    • Update uv.lock to reflect new dependency versions.

This description was created by Ellipsis for d4c2f7a. You can customize this summary. It will automatically update as commits are pushed.

Bumps the gha group in /packages/opentelemetry-instrumentation-mistralai with 4 updates: opentelemetry-semantic-conventions-ai, [mistralai](https://github.com/mistralai/client-python), [pytest](https://github.com/pytest-dev/pytest) and [ruff](https://github.com/astral-sh/ruff).


Updates `opentelemetry-semantic-conventions-ai` from 0.4.13 to 0.4.14

Updates `mistralai` from 1.12.3 to 1.12.4
- [Release notes](https://github.com/mistralai/client-python/releases)
- [Changelog](https://github.com/mistralai/client-python/blob/v1.12.4/RELEASES.md)
- [Commits](mistralai/client-python@v1.12.3...v1.12.4)

Updates `pytest` from 8.4.2 to 9.0.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.2...9.0.2)

Updates `ruff` from 0.15.1 to 0.15.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.15.1...0.15.2)

---
updated-dependencies:
- dependency-name: opentelemetry-semantic-conventions-ai
  dependency-version: 0.4.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: mistralai
  dependency-version: 1.12.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: gha
- dependency-name: ruff
  dependency-version: 0.15.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 25, 2026
Copy link
Contributor

@ellipsis-dev ellipsis-dev bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

Looks good to me! 👍

Reviewed everything up to d4c2f7a in 24 seconds. Click for details.
  • Reviewed 172 lines of code in 2 files
  • Skipped 0 files when reviewing.
  • Skipped posting 0 draft comments. View those below.
  • Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.

Workflow ID: wflow_5aiV32geOjQLSLPP

You can customize Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

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.

0 participants