Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 28, 2025

Bumps the gha group with 6 updates in the /packages/opentelemetry-instrumentation-pinecone directory:

Package From To
flake8 7.0.0 7.2.0
pytest 8.3.2 8.3.5
openai 1.37.1 1.76.0
vcrpy 6.0.1 7.0.0
pytest-recording 0.13.2 0.13.3
pinecone-client 5.0.0 5.0.1

Updates flake8 from 7.0.0 to 7.2.0

Commits
  • 16f5f28 Release 7.2.0
  • ebad305 Merge pull request #1974 from PyCQA/update-plugins
  • d56d569 update versions of pycodestyle / pyflakes
  • a7e8f62 Merge pull request #1973 from PyCQA/py39-plus
  • 9d55ccd py39+
  • e492aeb Merge pull request #1967 from PyCQA/unnecessary-mocks
  • fa2ed71 remove a few unnecessary mocks in test_checker_manager
  • fffee8b Release 7.1.2
  • 19001f7 Merge pull request #1966 from PyCQA/limit-procs-to-file-count
  • f35737a avoid starting unnecessary processes when file count is limited
  • Additional commits viewable in compare view

Updates pytest from 8.3.2 to 8.3.5

Release notes

Sourced from pytest's releases.

8.3.5

pytest 8.3.5 (2025-03-02)

Bug fixes

  • #11777: Fixed issue where sequences were still being shortened even with -vv verbosity.
  • #12888: Fixed broken input when using Python 3.13+ and a libedit build of Python, such as on macOS or with uv-managed Python binaries from the python-build-standalone project. This could manifest e.g. by a broken prompt when using Pdb, or seeing empty inputs with manual usage of input() and suspended capturing.
  • #13026: Fixed AttributeError{.interpreted-text role="class"} crash when using --import-mode=importlib when top-level directory same name as another module of the standard library.
  • #13053: Fixed a regression in pytest 8.3.4 where, when using --import-mode=importlib, a directory containing py file with the same name would cause an ImportError
  • #13083: Fixed issue where pytest could crash if one of the collected directories got removed during collection.

Improved documentation

  • #12842: Added dedicated page about using types with pytest.

    See types{.interpreted-text role="ref"} for detailed usage.

Contributor-facing changes

  • #13112: Fixed selftest failures in test_terminal.py with Pygments >= 2.19.0
  • #13256: Support for Towncrier versions released in 2024 has been re-enabled when building Sphinx docs -- by webknjaz{.interpreted-text role="user"}.

8.3.4

pytest 8.3.4 (2024-12-01)

Bug fixes

  • #12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name.

  • #12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing.

  • #12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.

  • #9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.

Improved documentation

  • #10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}.

  • #10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).

... (truncated)

Commits

Updates openai from 1.37.1 to 1.76.0

Release notes

Sourced from openai's releases.

v1.76.0

1.76.0 (2025-04-23)

Full Changelog: v1.75.0...v1.76.0

Features

  • api: adding new image model support (74d7692)

Bug Fixes

  • pydantic v1: more robust ModelField.annotation check (#2163) (7351b12)
  • pydantic v1: more robust ModelField.annotation check (eba7856)

Chores

  • ci: add timeout thresholds for CI jobs (0997211)
  • internal: fix list file params (da2113c)
  • internal: import reformatting (b425fb9)
  • internal: minor formatting changes (aed1d76)
  • internal: refactor retries to not use recursion (8cb8cfa)
  • internal: update models test (870ad4e)
  • update completion parse signature (a44016c)

v1.75.0

1.75.0 (2025-04-16)

Full Changelog: v1.74.1...v1.75.0

Features

  • api: add o3 and o4-mini model IDs (4bacbd5)

v1.74.1

1.74.1 (2025-04-16)

Full Changelog: v1.74.0...v1.74.1

Chores

  • internal: base client updates (06303b5)
  • internal: bump pyright version (9fd1c77)

v1.74.0

1.74.0 (2025-04-14)

Full Changelog: v1.73.0...v1.74.0

... (truncated)

Changelog

Sourced from openai's changelog.

1.76.0 (2025-04-23)

Full Changelog: v1.75.0...v1.76.0

Features

  • api: adding new image model support (74d7692)

Bug Fixes

  • pydantic v1: more robust ModelField.annotation check (#2163) (7351b12)
  • pydantic v1: more robust ModelField.annotation check (eba7856)

Chores

  • ci: add timeout thresholds for CI jobs (0997211)
  • internal: fix list file params (da2113c)
  • internal: import reformatting (b425fb9)
  • internal: minor formatting changes (aed1d76)
  • internal: refactor retries to not use recursion (8cb8cfa)
  • internal: update models test (870ad4e)
  • update completion parse signature (a44016c)

1.75.0 (2025-04-16)

Full Changelog: v1.74.1...v1.75.0

Features

  • api: add o3 and o4-mini model IDs (4bacbd5)

1.74.1 (2025-04-16)

Full Changelog: v1.74.0...v1.74.1

Chores

  • internal: base client updates (06303b5)
  • internal: bump pyright version (9fd1c77)

1.74.0 (2025-04-14)

Full Changelog: v1.73.0...v1.74.0

Features

  • api: adding gpt-4.1 family of model IDs (d4dae55)

... (truncated)

Commits
  • 8e1a1cd release: 1.76.0
  • 6321004 feat(api): adding new image model support
  • 1c1d144 chore(internal): minor formatting changes
  • 8830a6c fix(pydantic v1): more robust ModelField.annotation check
  • 6a2dfbb fix(pydantic v1): more robust ModelField.annotation check (#2163)
  • 7de6c5c chore(internal): refactor retries to not use recursion
  • 1e7dea2 chore(internal): fix list file params
  • 1157528 chore(internal): import reformatting
  • 271d979 chore(ci): add timeout thresholds for CI jobs
  • 15902dc chore: update completion parse signature
  • Additional commits viewable in compare view

Updates vcrpy from 6.0.1 to 7.0.0

Release notes

Sourced from vcrpy's releases.

v7.0.0

What's Changed

- Drop support for python 3.8 (major version bump) - thanks @jairhenrique
- Various linting and test fixes - thanks @jairhenrique
- Bugfix for urllib2>=2.3.0 - missing version_string ([#888](https://github.com/kevin1024/vcrpy/issues/888))
- Bugfix for asyncio.run - thanks @alekeik1

New Contributors

v6.0.2

Changelog

Sourced from vcrpy's changelog.

Changelog

For a full list of triaged issues, bugs and PRs and what release they are targeted for please see the following link.

ROADMAP MILESTONES <https://github.com/kevin1024/vcrpy/milestones>_

All help in providing PRs to close out bug issues is appreciated. Even if that is providing a repo that fully replicates issues. We have very generous contributors that have added these to bug issues which meant another contributor picked up the bug and closed it out.

  • 7.0.0

  • 6.0.2

  • 6.0.1

    • Bugfix with to Tornado cassette generator (thanks @​graingert)
  • 6.0.0

    • BREAKING: Fix issue with httpx support (thanks @​parkerhancock) in #784. NOTE: You may have to recreate some of your cassettes produced in previous releases due to the binary format being saved incorrectly in previous releases
    • BREAKING: Drop support for boto (vcrpy still supports boto3, but is dropping the deprecated boto support in this release. (thanks @​jairhenrique)
    • Fix compatibility issue with Python 3.12 (thanks @​hartwork)
    • Drop simplejson (fixes some compatibility issues) (thanks @​jairhenrique)
    • Run CI on Python 3.12 and PyPy 3.9-3.10 (thanks @​mgorny)
    • Various linting and docs improvements (thanks @​jairhenrique)
    • Tornado fixes (thanks @​graingert)
  • 5.1.0

  • 5.0.0

    • BREAKING CHANGE: Drop support for Python 3.7. 3.7 is EOL as of 6/27/23 Thanks @​jairhenrique
    • BREAKING CHANGE: Custom Cassette persisters no longer catch ValueError. If you have implemented a custom persister (has anyone implemented a custom persister? Let us know!) then you will need to throw a CassetteNotFoundError when unable to find a cassette. See #681 for discussion and reason for this change. Thanks @​amosjyng for the PR and the review from @​hartwork
  • 4.4.0

    • HUGE thanks to @​hartwork for all the work done on this release!
    • Bring vcr/unittest in to vcrpy as a full feature of vcr instead of a separate library. Big thanks to @​hartwork for doing this and to @​agriffis for originally creating the library
    • Make decompression robust towards already decompressed input (thanks @​hartwork)

... (truncated)

Commits
  • 3278619 Release v7.0.0
  • 3fb62e0 fix: correctly handle asyncio.run when loop exists
  • 8197865 build(deps): update sphinx requirement from <8 to <9
  • be651bd pre-commit: Autoupdate
  • a6698ed Fix aiohttp tests
  • 48d0a2e Fixed missing version_string attribute when used with urllib3>=2.3.0
  • 5b858b1 Fix lint
  • c8d99a9 Fix ruff configuration
  • ce27c63 Merge pull request #736 from kevin1024/drop-python38
  • ab8944d Drop python 3.8 support
  • Additional commits viewable in compare view

Updates pytest-recording from 0.13.2 to 0.13.3

Release notes

Sourced from pytest-recording's releases.

Release 0.13.3

Fixed

  • Limit generated cassette names to prevent OSError. #172
Changelog

Sourced from pytest-recording's changelog.

0.13.3_ - 2025-04-24

  • Limit generated cassette names to prevent OSError. [#172](https://github.com/kiwicom/pytest-recording/issues/172)_
Commits
  • 3ad7910 chore: Release 0.13.3
  • 9a6e12c docs: Add a note for package maintainers
  • a70532b chore: Revert "test: Disable pretty plugin in pytest"
  • 6b84832 chore(deps): update codecov/codecov-action action to v5.4.2
  • 460a7f9 test: Add long_cassette_name test
  • 9822a50 fix: Check default_cassette to prevent it from being too long.
  • b31d092 fix: shorten default_cassette to avoid too long filenames
  • 73b6ce9 chore(deps): update codecov/codecov-action action to v5.4.0
  • 20e5232 test: Disable pretty plugin in pytest
  • ee1f7de fix: fix conditional pycurl import, actually isort files
  • Additional commits viewable in compare view

Updates pinecone-client from 5.0.0 to 5.0.1

Release notes

Sourced from pinecone-client's releases.

Release v5.0.1

What's Changed

Full Changelog: pinecone-io/pinecone-python-client@v5.0.0...v5.0.1

Commits

You can trigger a rebase of this PR 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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 28, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 7 times, most recently from a480015 to 074d23b Compare April 30, 2025 12:46
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 4 times, most recently from c826019 to ba7df45 Compare May 13, 2025 19:31
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 5 times, most recently from 29a93b9 to 1a26962 Compare May 20, 2025 15:07
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 2 times, most recently from d5f7b80 to fb6dbe7 Compare June 9, 2025 02:55
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 2 times, most recently from 56f77c7 to d73fbf7 Compare June 23, 2025 02:21
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch from d73fbf7 to a484a7b Compare June 30, 2025 02:50
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch from a484a7b to d0882d0 Compare July 7, 2025 03:04
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 2 times, most recently from 4763327 to 33b5dd2 Compare July 21, 2025 02:30
Copy link

coderabbitai bot commented Jul 21, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Join our Discord community for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch 2 times, most recently from 5b9abc3 to 5b4277d Compare August 4, 2025 03:07
Bumps the gha group with 6 updates in the /packages/opentelemetry-instrumentation-pinecone directory:

| Package | From | To |
| --- | --- | --- |
| [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.2.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.5` |
| [openai](https://github.com/openai/openai-python) | `1.37.1` | `1.76.0` |
| [vcrpy](https://github.com/kevin1024/vcrpy) | `6.0.1` | `7.0.0` |
| [pytest-recording](https://github.com/kiwicom/pytest-recording) | `0.13.2` | `0.13.3` |
| [pinecone-client](https://github.com/pinecone-io/pinecone-python-client) | `5.0.0` | `5.0.1` |



Updates `flake8` from 7.0.0 to 7.2.0
- [Commits](PyCQA/flake8@7.0.0...7.2.0)

Updates `pytest` from 8.3.2 to 8.3.5
- [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.3.2...8.3.5)

Updates `openai` from 1.37.1 to 1.76.0
- [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.37.1...v1.76.0)

Updates `vcrpy` from 6.0.1 to 7.0.0
- [Release notes](https://github.com/kevin1024/vcrpy/releases)
- [Changelog](https://github.com/kevin1024/vcrpy/blob/master/docs/changelog.rst)
- [Commits](kevin1024/vcrpy@v6.0.1...v7.0.0)

Updates `pytest-recording` from 0.13.2 to 0.13.3
- [Release notes](https://github.com/kiwicom/pytest-recording/releases)
- [Changelog](https://github.com/kiwicom/pytest-recording/blob/master/docs/changelog.rst)
- [Commits](kiwicom/pytest-recording@v0.13.2...v0.13.3)

Updates `pinecone-client` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/pinecone-io/pinecone-python-client/releases)
- [Changelog](https://github.com/pinecone-io/pinecone-python-client/blob/main/CHANGELOG.md)
- [Commits](pinecone-io/pinecone-python-client@v5.0.0...v5.0.1)

---
updated-dependencies:
- dependency-name: flake8
  dependency-version: 7.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: pytest
  dependency-version: 8.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: openai
  dependency-version: 1.76.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: gha
- dependency-name: vcrpy
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: gha
- dependency-name: pytest-recording
  dependency-version: 0.13.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
- dependency-name: pinecone-client
  dependency-version: 5.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gha
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch from 5b4277d to 7a7ee3a Compare August 11, 2025 04:03
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 18, 2025

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

@dependabot dependabot bot closed this Aug 18, 2025
@dependabot dependabot bot deleted the dependabot/pip/packages/opentelemetry-instrumentation-pinecone/gha-bc15b67165 branch August 18, 2025 02:49
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