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 python-dependencies group across 1 directory with 11 updates #2449

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 3, 2024

Bumps the python-dependencies group with 11 updates in the / directory:

Package From To
frozendict 2.4.3 2.4.4
ipython 8.24.0 8.25.0
libvirt-python 10.3.0 10.4.0
pre-commit 3.7.0 3.7.1
pytest 8.2.0 8.2.1
requests 2.31.0 2.32.3
scp 0.14.5 0.15.0
prompt-toolkit 3.0.43 3.0.45
ansible 9.5.1 9.6.0
oci 2.126.2 2.128.0
pep8-naming 0.13.3 0.14.1

Updates frozendict from 2.4.3 to 2.4.4

Release notes

Sourced from frozendict's releases.

frozendict v2.4.4

Added typing for deepfreeze, register and unregister (see #99)

Full Changelog: Marco-Sulla/python-frozendict@v2.4.3...v2.4.4

Commits

Updates ipython from 8.24.0 to 8.25.0

Commits

Updates libvirt-python from 10.3.0 to 10.4.0

Updates pre-commit from 3.7.0 to 3.7.1

Release notes

Sourced from pre-commit's releases.

pre-commit v3.7.1

Fixes

Changelog

Sourced from pre-commit's changelog.

3.7.1 - 2024-05-10

Fixes

Commits
  • 9ee0768 v3.7.1
  • eeac061 Merge pull request #3201 from pre-commit/rust-default-language-version
  • 296f592 determine rust default language version independent of rust-toolchain.toml
  • 1602328 Merge pull request #3193 from pre-commit/pre-commit-ci-update-config
  • 0142f45 [pre-commit.ci] pre-commit autoupdate
  • d7e21cd Merge pull request #3194 from pre-commit/handle-readonly-3-12
  • 5c3d006 use a simpler gem for testing additional_dependencies
  • 0d4c6da adjust _handle_readonly for typeshed updates
  • 85fe182 Merge pull request #3176 from pre-commit/pre-commit-ci-update-config
  • 74d05b4 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pytest from 8.2.0 to 8.2.1

Release notes

Sourced from pytest's releases.

8.2.1

pytest 8.2.1 (2024-05-19)

Improvements

  • #12334: Support for Python 3.13 (beta1 at the time of writing).

Bug Fixes

  • #12120: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.
  • #12191: Keyboard interrupts and system exits are now properly handled during the test collection.
  • #12300: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.
  • #12308: Fix a regression in pytest 8.2.0 where the permissions of automatically-created .pytest_cache directories became rwx------ instead of the expected rwxr-xr-x.

Trivial/Internal Changes

  • #12333: pytest releases are now attested using the recent Artifact Attestation support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.
Commits
  • 66ff8df Prepare release version 8.2.1
  • 3ffcfd1 Merge pull request #12340 from pytest-dev/backport-12334-to-8.2.x
  • 0b28313 [8.2.x] Add Python 3.13 (beta) support
  • f3dd93a [8.2.x] Attest package provenance (#12335)
  • bb5a125 [8.2.x] Spelling (#12331)
  • f179bf2 Merge pull request #12327 from pytest-dev/backport-12325-to-8.2.x
  • 2b671b5 [8.2.x] cacheprovider: fix .pytest_cache not being world-readable
  • 65ab7cb Merge pull request #12324 from pytest-dev/backport-12320-to-8.2.x
  • 4d5fb7d Merge pull request #12319 from pytest-dev/backport-12311-to-8.2.x
  • cbe5996 [8.2.x] changelog: document unittest 8.2 change as breaking
  • Additional commits viewable in compare view

Updates requests from 2.31.0 to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

v2.32.2

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

v2.32.1

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

2.32.0 (2024-05-20)

🐍 PYCON US 2024 EDITION 🐍

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored.

... (truncated)

Changelog

Sourced from requests's changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Updates scp from 0.14.5 to 0.15.0

Changelog

Sourced from scp's changelog.

0.15.0 (2024-05-23)

  • Add bandwidth control (limit_bw)
Commits
  • 58b9bcc Bump version to 0.15.0
  • a7397ec Merge pull request #188 from hoffmanlucas/limit_bw
  • 34c2536 Use limit_bw in some tests
  • a98ac56 Fix limit_bw default
  • 708ecda Revert formatting
  • a868536 add limit bandwidth control
  • 80216b6 CI: Fix typo for Python 3.5
  • 7f91c95 Merge branch 'python2.7-docker' into 'master'
  • 535273e CI: Link real HOME to GitHub HOME /github/home
  • c37710e CI: We're root in container, PermitRootLogin=yes
  • Additional commits viewable in compare view

Updates prompt-toolkit from 3.0.43 to 3.0.45

Release notes

Sourced from prompt-toolkit's releases.

3.0.45

Fixes:

  • Improve performance of GrammarCompleter (faster deduplication of completions).

3.0.44

New features:

  • Accept os.PathLike in FileHistory (typing fix).

Fixes:

  • Fix memory leak in filters.
  • Improve performance of progress bar formatters.
  • Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C).
  • Limit number of completions in buffer to 10k by default (for performance).
Changelog

Sourced from prompt-toolkit's changelog.

3.0.45: 2024-05-28

Fixes:

  • Improve performance of GrammarCompleter (faster deduplication of completions).

3.0.44: 2024-05-27

New features:

  • Accept os.PathLike in FileHistory (typing fix).

Fixes:

  • Fix memory leak in filters.
  • Improve performance of progress bar formatters.
  • Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C).
  • Limit number of completions in buffer to 10k by default (for performance).
Commits
  • 6a58564 Release 3.0.45
  • a21831e Improve performance of GrammarCompleter (faster deduplication of completions).
  • 81dcfda Release 3.0.44.
  • 386477a Limit number of completions in buffer to 10k by default.
  • 491b5e8 Typing fix in FileHistory.
  • 3c0290d Code style fixes for compatibility with latest Ruff.
  • 85079ad Fix compatibility when SIGINT handler is installed by non-Python
  • 2c84307 Add ass
  • e0fd8fa fix(Docs): address some typos in the tutorial pages
  • f8cf7ca Fix performance issue with ProgressBar formatters
  • Additional commits viewable in compare view

Updates ansible from 9.5.1 to 9.6.0

Commits
  • 1ba292f Ansible 9.6.0: Dependencies, changelog and porting guide (#409)
  • d46d0e3 Ansible 10.0.0b1: Dependencies, changelog and porting guide (#410)
  • 95c2801 Add constraint to avoid breaking change in community.grafana (#408)
  • 0dee49a Ansible 10.0.0a3: Dependencies, changelog and porting guide (#406)
  • 86d7661 Improve texts, fix branch name composition.
  • 1fa7454 Allow to create release from existing branch; allow to preserve existing `.de...
  • 78fbefb Release workflow should tag the PR's merge commit (and not HEAD). (#403)
  • 155d08d Document the automated release process (#381)
  • 74736c0 Add linting workflow with yamllint; fix linting issues (#396)
  • 043485a community.ciscosmb 1.0.9 reverts the breaking change from 1.0.8. (#402)
  • Additional commits viewable in compare view

Updates oci from 2.126.2 to 2.128.0

Release notes

Sourced from oci's releases.

2.127.0

Added

  • Support for Demand Signal service
  • Support for external database connectors in the Database service
  • Support for monitoring standby databases in the Database Management service
  • Support for resource overviews in the Capacity Management service
  • Support for optional parameters in the download API in the Java Management Service Downloads service

Breaking

  • The operation list_occ_availabilities can return any string for the params resource_type and workload_type in the OCI Control Center service
  • The model OccCapacityRequestComputeDetails has been removed in the OCI Control Center service
  • The params resource_type and workload_type can accept any string in the models OccAvailabilitySummary and OccCapacityRequestBaseDetails in the OCI Control Center service

File Checksums (SHA256)

oci-python-sdk-2.127.0.zip 5f5594102a926956b1fed2357400eaa7762979835d4743cdf9de9a426490683c

2.126.4

Added

  • Support for the Resource Scheduler service
  • Support for Bring Your Own Container (BYOC), custom networking and graceful termination of pipelines in the Data Science service
  • Support for backup and replacement of master, utility, and edge nodes in the Big Data service
  • Support for nested resource principal in the Data Science service

File Checksums (SHA256)

oci-python-sdk-2.126.4.zip f8945dc0be71309b5a363da4de28d9b360172856a8709f19f8962f9ad23ae880

2.126.3

Added

  • Support for the Marketplace Private Offer service
  • Support for resizing local file systems in the Database service
  • Support for PPv2 (Proxy Protocol version 2) in the Load Balancer service
  • Support for custom return path for sent emails in the Email Delivery service
  • Support for session resumption in the Load Balancer service

File Checksums (SHA256)

oci-python-sdk-2.126.3.zip db4c6feaf7485137db995be03ccf3cce156bc1676a46a1afe3f27ce35a07700f

Changelog

Sourced from oci's changelog.

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog <http://keepachangelog.com/>_.

2.127.0 - 2024-05-28

Added

  • Support for Demand Signal service
  • Support for external database connectors in the Database service
  • Support for monitoring standby databases in the Database Management service
  • Support for resource overviews in the Capacity Management service
  • Support for optional parameters in the download API in the Java Management Service Downloads service

Breaking

  • The operation list_occ_availabilities can return any string for the params resource_type and workload_type in the OCI Control Center service
  • The model OccCapacityRequestComputeDetails has been removed in the OCI Control Center service
  • The params resource_type and workload_type can accept any string in the models OccAvailabilitySummary and OccCapacityRequestBaseDetails in the OCI Control Center service

==================== 2.126.4 - 2024-05-21

Added

  • Support for the Resource Scheduler service
  • Support for Bring Your Own Container (BYOC), custom networking and graceful termination of pipelines in the Data Science service
  • Support for backup and replacement of master, utility, and edge nodes in the Big Data service
  • Support for nested resource principal in the Data Science service

==================== 2.126.3 - 2024-05-14

Added

  • Support for the Marketplace Private Offer service
  • Support for resizing local file systems in the Database service
  • Support for PPv2 (Proxy Protocol version 2) in the Load Balancer service
  • Support for custom return path for sent emails in the Email Delivery service
  • Support for session resumption in the Load Balancer service

====================

Commits

Updates pep8-naming from 0.13.3 to 0.14.1

Release notes

Sourced from pep8-naming's releases.

0.14.1

  • Require Python 3.8 or later.

0.14.0

  • Drop support for Python 3.7.
  • Add support for Python 3.12.
  • Ignore methods decorated by @typing.override.
  • Perform case-sensitive ignore-names globbing on all platforms.
Changelog

Sourced from pep8-naming's changelog.

0.14.1 - 2024-05-17

  • Require Python 3.8 or later.

0.14.0 - 2024-05-16

  • Drop support for Python 3.7.
  • Add support for Python 3.12.
  • Ignore methods decorated by @typing.override.
  • Perform case-sensitive ignore-names globbing on all platforms.
Commits
  • f0edf20 Prepare the 0.14.1 release
  • b652e8f Merge pull request #231 from PyCQA/sigmavirus24-patch-1
  • a960999 Fix python_version
  • 9451737 Update setup.py
  • c0bcb7f Prepare the 0.14.0 release
  • 975beed Refactor FunctionArgNamesCheck (N803,N804,N805)
  • 01df3f3 Pass 'parents' as a parameter when walking the tree
  • de0963c Merge Python 3.8+ tests into main test modules
  • 0ddfcea Remove Python 3.7 compatibility code
  • 0e8f745 Drop support for Python 3.7
  • 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

@dependabot dependabot bot added approved Indicates a PR has been approved by an approver from all required OWNERS files. dependencies Pull requests that update a dependency file lgtm Indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. python labels Jun 3, 2024
@openshift-ci openshift-ci bot added the size/S Denotes a PR that changes 10-29 lines, ignoring generated files. label Jun 3, 2024
@openshift-ci openshift-ci bot requested review from avishayt and eranco74 June 3, 2024 19:55
Bumps the python-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [frozendict](https://github.com/Marco-Sulla/python-frozendict) | `2.4.3` | `2.4.4` |
| [ipython](https://github.com/ipython/ipython) | `8.24.0` | `8.25.0` |
| [libvirt-python](http://www.libvirt.org) | `10.3.0` | `10.4.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.7.0` | `3.7.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.2.1` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [scp](https://github.com/jbardin/scp.py) | `0.14.5` | `0.15.0` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.43` | `3.0.45` |
| [ansible](https://github.com/ansible-community/ansible-build-data) | `9.5.1` | `9.6.0` |
| [oci](https://github.com/oracle/oci-python-sdk) | `2.126.2` | `2.128.0` |
| [pep8-naming](https://github.com/PyCQA/pep8-naming) | `0.13.3` | `0.14.1` |



Updates `frozendict` from 2.4.3 to 2.4.4
- [Release notes](https://github.com/Marco-Sulla/python-frozendict/releases)
- [Commits](Marco-Sulla/python-frozendict@v2.4.3...v2.4.4)

Updates `ipython` from 8.24.0 to 8.25.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.24.0...8.25.0)

Updates `libvirt-python` from 10.3.0 to 10.4.0

Updates `pre-commit` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.7.0...v3.7.1)

Updates `pytest` from 8.2.0 to 8.2.1
- [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.2.0...8.2.1)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.3)

Updates `scp` from 0.14.5 to 0.15.0
- [Changelog](https://github.com/jbardin/scp.py/blob/master/CHANGELOG.md)
- [Commits](jbardin/scp.py@v0.14.5...v0.15.0)

Updates `prompt-toolkit` from 3.0.43 to 3.0.45
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.43...3.0.45)

Updates `ansible` from 9.5.1 to 9.6.0
- [Changelog](https://github.com/ansible-community/ansible-build-data/blob/main/docs/release-process.md)
- [Commits](ansible-community/ansible-build-data@9.5.1...9.6.0)

Updates `oci` from 2.126.2 to 2.128.0
- [Release notes](https://github.com/oracle/oci-python-sdk/releases)
- [Changelog](https://github.com/oracle/oci-python-sdk/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/oracle/oci-python-sdk/commits)

Updates `pep8-naming` from 0.13.3 to 0.14.1
- [Release notes](https://github.com/PyCQA/pep8-naming/releases)
- [Changelog](https://github.com/PyCQA/pep8-naming/blob/main/CHANGELOG.rst)
- [Commits](PyCQA/pep8-naming@0.13.3...0.14.1)

---
updated-dependencies:
- dependency-name: frozendict
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipython
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: libvirt-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: scp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: prompt-toolkit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ansible
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: oci
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pep8-naming
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/python-dependencies-5537a76847 branch from b33e24c to 6ed18d2 Compare June 3, 2024 21:24
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Jun 3, 2024
@adriengentil
Copy link
Contributor

/retest

Copy link

openshift-ci bot commented Jun 4, 2024

@dependabot[bot]: all tests passed!

Full PR test history. Your PR dashboard.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Jun 4, 2024
Copy link

openshift-ci bot commented Jun 4, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: adriengentil, dependabot[bot]

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-bot openshift-merge-bot bot merged commit 85e1588 into master Jun 4, 2024
7 checks passed
@openshift-merge-bot openshift-merge-bot bot deleted the dependabot/pip/python-dependencies-5537a76847 branch June 4, 2024 12:02
omer-vishlitzky pushed a commit to omer-vishlitzky/assisted-test-infra that referenced this pull request Jun 5, 2024
…openshift#2449)

Bumps the python-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [frozendict](https://github.com/Marco-Sulla/python-frozendict) | `2.4.3` | `2.4.4` |
| [ipython](https://github.com/ipython/ipython) | `8.24.0` | `8.25.0` |
| [libvirt-python](http://www.libvirt.org) | `10.3.0` | `10.4.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.7.0` | `3.7.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.2.1` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [scp](https://github.com/jbardin/scp.py) | `0.14.5` | `0.15.0` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.43` | `3.0.45` |
| [ansible](https://github.com/ansible-community/ansible-build-data) | `9.5.1` | `9.6.0` |
| [oci](https://github.com/oracle/oci-python-sdk) | `2.126.2` | `2.128.0` |
| [pep8-naming](https://github.com/PyCQA/pep8-naming) | `0.13.3` | `0.14.1` |



Updates `frozendict` from 2.4.3 to 2.4.4
- [Release notes](https://github.com/Marco-Sulla/python-frozendict/releases)
- [Commits](Marco-Sulla/python-frozendict@v2.4.3...v2.4.4)

Updates `ipython` from 8.24.0 to 8.25.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.24.0...8.25.0)

Updates `libvirt-python` from 10.3.0 to 10.4.0

Updates `pre-commit` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.7.0...v3.7.1)

Updates `pytest` from 8.2.0 to 8.2.1
- [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.2.0...8.2.1)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.3)

Updates `scp` from 0.14.5 to 0.15.0
- [Changelog](https://github.com/jbardin/scp.py/blob/master/CHANGELOG.md)
- [Commits](jbardin/scp.py@v0.14.5...v0.15.0)

Updates `prompt-toolkit` from 3.0.43 to 3.0.45
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.43...3.0.45)

Updates `ansible` from 9.5.1 to 9.6.0
- [Changelog](https://github.com/ansible-community/ansible-build-data/blob/main/docs/release-process.md)
- [Commits](ansible-community/ansible-build-data@9.5.1...9.6.0)

Updates `oci` from 2.126.2 to 2.128.0
- [Release notes](https://github.com/oracle/oci-python-sdk/releases)
- [Changelog](https://github.com/oracle/oci-python-sdk/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/oracle/oci-python-sdk/commits)

Updates `pep8-naming` from 0.13.3 to 0.14.1
- [Release notes](https://github.com/PyCQA/pep8-naming/releases)
- [Changelog](https://github.com/PyCQA/pep8-naming/blob/main/CHANGELOG.rst)
- [Commits](PyCQA/pep8-naming@0.13.3...0.14.1)

---
updated-dependencies:
- dependency-name: frozendict
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipython
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: libvirt-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: scp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: prompt-toolkit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ansible
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: oci
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pep8-naming
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. dependencies Pull requests that update a dependency file lgtm Indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. python size/S Denotes a PR that changes 10-29 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants