Skip to content

Update poetry-deps#300

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/poetry-deps
Open

Update poetry-deps#300
renovate[bot] wants to merge 1 commit intomainfrom
renovate/poetry-deps

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Sep 16, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
flask (changelog) 3.1.23.1.3 age adoption passing confidence
gitpython 3.1.453.1.46 age adoption passing confidence
ipython 9.5.09.12.0 age adoption passing confidence
openshift-python-utilities 6.0.146.0.16 age adoption passing confidence
pygithub 2.8.12.9.0 age adoption passing confidence
pytest-mock (changelog) 3.15.03.15.1 age adoption passing confidence
python-gitlab (changelog) 6.3.06.5.0 age adoption passing confidence
python-simple-logger 2.0.162.0.19 age adoption passing confidence
redhat-qe-cloud-tools 2.0.182.0.20 age adoption passing confidence
requests (changelog) 2.32.52.33.1 age adoption passing confidence

Release Notes

pallets/flask (flask)

v3.1.3

Compare Source

Released 2026-02-18

  • The session is marked as accessed for operations that only access the keys
    but not the values, such as in and len. :ghsa:68rp-wp8r-4726
gitpython-developers/GitPython (gitpython)

v3.1.46

Compare Source

What's Changed

New Contributors

Full Changelog: gitpython-developers/GitPython@3.1.45...3.1.46

ipython/ipython (ipython)

v9.12.0

Compare Source

v9.11.0

Compare Source

v9.10.1

Compare Source

v9.10.0

Compare Source

v9.9.0

Compare Source

v9.8.0

Compare Source

v9.7.0

Compare Source

v9.6.0

Compare Source

RedHatQE/openshift-python-utilities (openshift-python-utilities)

v6.0.16: Release 6.0.16

Compare Source

  • [pre-commit.ci] pre-commit autoupdate (#​449) (bb02cad) by pre-commit-ci[bot] on 2026-02-17
  • Use get_client from ocp_resources and remove example for ocp_utilities/infra.py (#​448) (fb80709) by Debarati Basu-Nag on 2026-02-12
  • [pre-commit.ci] pre-commit autoupdate (#​447) (36865f1) by pre-commit-ci[bot] on 2026-02-10
  • [pre-commit.ci] pre-commit autoupdate (#​446) (5c11cb7) by pre-commit-ci[bot] on 2026-01-27
  • [pre-commit.ci] pre-commit autoupdate (#​445) (6bffaa7) by pre-commit-ci[bot] on 2026-01-20
  • [pre-commit.ci] pre-commit autoupdate (#​444) (3323cc4) by pre-commit-ci[bot] on 2025-12-22
  • [pre-commit.ci] pre-commit autoupdate (#​443) (49d6bc9) by pre-commit-ci[bot] on 2025-12-16
  • [pre-commit.ci] pre-commit autoupdate (#​442) (a8f80c4) by pre-commit-ci[bot] on 2025-12-08
  • [pre-commit.ci] pre-commit autoupdate (#​441) (5bd6c20) by pre-commit-ci[bot] on 2025-12-02
  • [pre-commit.ci] pre-commit autoupdate (#​440) (1737fda) by pre-commit-ci[bot] on 2025-11-24
  • [pre-commit.ci] pre-commit autoupdate (#​439) (5a2c5ae) by pre-commit-ci[bot] on 2025-11-17
  • [pre-commit.ci] pre-commit autoupdate (#​438) (1da0207) by pre-commit-ci[bot] on 2025-11-10
  • [pre-commit.ci] pre-commit autoupdate (#​437) (833bb98) by pre-commit-ci[bot] on 2025-11-03
  • [pre-commit.ci] pre-commit autoupdate (#​435) (e424f0e) by pre-commit-ci[bot] on 2025-10-29
  • [pre-commit.ci] pre-commit autoupdate (#​434) (17b821d) by pre-commit-ci[bot] on 2025-10-21
  • [pre-commit.ci] pre-commit autoupdate (#​433) (a85c7ce) by pre-commit-ci[bot] on 2025-10-14
  • [pre-commit.ci] pre-commit autoupdate (#​432) (5e7ce73) by pre-commit-ci[bot] on 2025-10-07
  • [pre-commit.ci] pre-commit autoupdate (#​431) (56f1a6f) by pre-commit-ci[bot] on 2025-09-29

v6.0.15: Release 6.0.15

Compare Source

  • [pre-commit.ci] pre-commit autoupdate (#​430) (ebb9821) by pre-commit-ci[bot] on 2025-09-23
  • [pre-commit.ci] pre-commit autoupdate (#​429) (a91ffe2) by pre-commit-ci[bot] on 2025-09-16
  • [pre-commit.ci] pre-commit autoupdate (#​428) (b6685f0) by pre-commit-ci[bot] on 2025-09-09
  • [pre-commit.ci] pre-commit autoupdate (#​427) (59e929b) by pre-commit-ci[bot] on 2025-09-02
  • [pre-commit.ci] pre-commit autoupdate (#​426) (438adf0) by pre-commit-ci[bot] on 2025-08-26
  • [pre-commit.ci] pre-commit autoupdate (#​425) (334619e) by pre-commit-ci[bot] on 2025-08-19
  • [pre-commit.ci] pre-commit autoupdate (#​424) (519540f) by pre-commit-ci[bot] on 2025-08-11
  • [pre-commit.ci] pre-commit autoupdate (#​423) (36f10b3) by pre-commit-ci[bot] on 2025-08-04
  • [pre-commit.ci] pre-commit autoupdate (#​422) (ca20af2) by pre-commit-ci[bot] on 2025-07-28
  • [pre-commit.ci] pre-commit autoupdate (#​421) (8c21cd1) by pre-commit-ci[bot] on 2025-07-22
pygithub/pygithub (pygithub)

v2.9.0

Compare Source

Notable changes
Lazy PyGithub objects

The notion of lazy objects has been added to some PyGithub classes in version 2.6.0. This release now makes all CompletableGithubObjects optionally lazy (if useful). See PyGithub/PyGithub#3403 for a complete list.

In lazy mode, getting a PyGithub object does not send a request to the GitHub API. Only accessing methods and properties sends the necessary requests to the GitHub API:

# Use lazy mode
g = Github(auth=auth, lazy=True)

# these method calls do not send requests to the GitHub API
user = g.get_user("PyGithub")    # get the user
repo = user.get_repo("PyGithub") # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue()          # turn the pull request into an issue

# these method and property calls send requests to Github API
issue.create_reaction("rocket")  # create a reaction
created = repo.created_at        # get property of lazy object repo

# once a lazy object has been fetched, all properties are available (no more requests)
licence = repo.license

All PyGithub classes that implement CompletableGithubObject support lazy mode (if useful). This is only useful for classes that have methods creating, changing, or getting objects.

By default, PyGithub objects are not lazy.

PyGithub objects with a paginated property

The GitHub API has the "feature" of paginated properties. Some objects returned by the API have a property that allows for pagination. Fetching subsequent pages of that property means fetching the entire object (with all other properties) and the specified page of the paginated property. Iterating over the paginated property means fetching all other properties multiple times. Fortunately, the allowed size of each page (per_page is usually 300, in contrast to the "usual" per_page maximum of 100).

Objects with paginated properties:

  • Commit.files
  • Comparison.commits
  • EnterpriseConsumedLicenses.users

This PR makes iterating those paginated properties use the configured per_page setting.

It further allows to specify an individual per_page when either retrieving such objects, or fetching paginated properties.

See Classes with paginated properties for details.

Drop Python 3.8 support due to End-of-Life

Python 3.8 reached its end-of-life September 6, 2024. Support has been removed with this release.

Deprecations
  • Method delete of Reaction is deprecated, use IssueComment.delete_reaction,
    PullRequestComment.delete_reaction, CommitComment.delete_reaction or Issue.delete_reaction instead.
  • Method Issue.assignee and parameter Issue.edit(assignee=…) are deprecated,
    use Issue.assignees and Issue.edit(assignees=…) instead.
  • Method Organization.edit_hook is deprecated, use Organization.get_hook(id).edit(…) instead.
    If you need to avoid Organization.get_hook(id) to fetch the Hook object from Github API,
    use a lazy Github instance:
Github(…, lazy=True).get_organization(…).get_hook(id).edit(…)
  • Methods Team.add_to_members and Team.remove_from_members are deprecated,
    use Team.add_membership or Team.remove_membership instead.
New Features
Improvements
Bug Fixes
Maintenance

New Contributors

Full Changelog: PyGithub/PyGithub@v2.8.0...v2.9.0

pytest-dev/pytest-mock (pytest-mock)

v3.15.1

Compare Source

2025-09-16

  • #&#8203;529 <https://github.com/pytest-dev/pytest-mock/issues/529>_: Fixed itertools._tee object has no attribute error -- now duplicate_iterators=True must be passed to mocker.spy to duplicate iterators.
python-gitlab/python-gitlab (python-gitlab)

v6.5.0

Compare Source

Bug Fixes
  • semantic-release: Enable CHANGELOG.md generation
    (fb9693b)
Continuous Integration
  • stale: Fix permission for stale action and allow manual run
    (9357a37)
Documentation
  • pull_mirror: Fix incorrect start() method usage example
    (2acac19)
Features
  • api: Add content_ref and dry_run_ref parameters to ProjectCiLintManager
    (e8d2538)

  • users: Implement 'skip_confirmation' in users 'emails' creation
    (2981730)

v6.4.0

Compare Source

Features
  • users: Implement missing arguments in users 'list'
    (99923d4)

  • users: Sort 'user list' arguments against documentation
    (99923d4)

RedHatQE/python-simple-logger (python-simple-logger)

v2.0.19

Compare Source

  • fix: escape % in DuplicateFilter to prevent TypeError with format placeholders (#​230) (3a59bc3) by Meni Yakove on 2026-02-26
  • [pre-commit.ci] pre-commit autoupdate (#​228) (3b16215) by pre-commit-ci[bot] on 2026-02-23
  • [pre-commit.ci] pre-commit autoupdate (#​227) (c5ab31b) by pre-commit-ci[bot] on 2026-02-17
  • chore(deps): lock file maintenance (#​226) (0a96824) by renovate[bot] on 2026-02-16
  • [pre-commit.ci] pre-commit autoupdate (#​225) (1895c64) by pre-commit-ci[bot] on 2026-02-10
  • chore(deps): lock file maintenance (#​224) (5efa14d) by renovate[bot] on 2026-02-09
  • chore(deps): lock file maintenance (#​223) (b447594) by renovate[bot] on 2026-02-03
  • [pre-commit.ci] pre-commit autoupdate (#​222) (8144112) by pre-commit-ci[bot] on 2026-01-27
  • chore(deps): lock file maintenance (#​221) (54302f8) by renovate[bot] on 2026-01-26
  • [pre-commit.ci] pre-commit autoupdate (#​220) (19f70bf) by pre-commit-ci[bot] on 2026-01-20
  • [pre-commit.ci] pre-commit autoupdate (#​219) (e9c8263) by pre-commit-ci[bot] on 2026-01-13
  • chore(deps): lock file maintenance (#​218) (32cd566) by renovate[bot] on 2026-01-12
  • chore(deps): lock file maintenance (#​217) (cfaa01b) by renovate[bot] on 2025-12-29
  • [pre-commit.ci] pre-commit autoupdate (#​216) (8ae329b) by pre-commit-ci[bot] on 2025-12-22
  • [pre-commit.ci] pre-commit autoupdate (#​215) (6f733be) by pre-commit-ci[bot] on 2025-12-16
  • chore(deps): lock file maintenance (#​214) (f5a52f7) by renovate[bot] on 2025-12-15
  • [pre-commit.ci] pre-commit autoupdate (#​213) (e9ca944) by pre-commit-ci[bot] on 2025-12-08
  • chore(deps): lock file maintenance (#​212) (38618c4) by renovate[bot] on 2025-12-08
  • [pre-commit.ci] pre-commit autoupdate (#​211) (81ac3c9) by pre-commit-ci[bot] on 2025-12-02
  • [pre-commit.ci] pre-commit autoupdate (#​210) (6ad817b) by pre-commit-ci[bot] on 2025-11-27
  • chore(deps): lock file maintenance (#​209) (002b354) by renovate[bot] on 2025-11-24
  • [pre-commit.ci] pre-commit autoupdate (#​208) (377575e) by pre-commit-ci[bot] on 2025-11-17
  • chore(deps): lock file maintenance (#​207) (173cff5) by renovate[bot] on 2025-11-17
  • [pre-commit.ci] pre-commit autoupdate (#​206) (737c891) by pre-commit-ci[bot] on 2025-11-11
  • chore(deps): lock file maintenance (#​205) (e94ff2e) by renovate[bot] on 2025-11-10
  • [pre-commit.ci] pre-commit autoupdate (#​204) (f3aec5a) by pre-commit-ci[bot] on 2025-11-04
  • chore(deps): lock file maintenance (#​203) (2bc5a1a) by renovate[bot] on 2025-10-29

v2.0.18

Compare Source

  • feat: add force_color support for Docker and non-TTY environments (13d52a6) by Meni Yakove on 2025-10-25
  • [pre-commit.ci] pre-commit autoupdate (#​202) (4f9a394) by pre-commit-ci[bot] on 2025-10-21
  • chore(deps): lock file maintenance (#​201) (5396f0d) by renovate[bot] on 2025-10-20
  • [pre-commit.ci] pre-commit autoupdate (#​200) (823cf91) by pre-commit-ci[bot] on 2025-10-14
  • chore(deps): lock file maintenance (#​199) (cb1e72c) by renovate[bot] on 2025-10-13
  • [pre-commit.ci] pre-commit autoupdate (#​198) (64839a4) by pre-commit-ci[bot] on 2025-10-07
  • chore(deps): lock file maintenance (#​197) (ed8144d) by renovate[bot] on 2025-10-06
  • [pre-commit.ci] pre-commit autoupdate (#​196) (2281852) by pre-commit-ci[bot] on 2025-09-29

v2.0.17

Compare Source

  • chore(deps): lock file maintenance (#​195) (d3e18a1) by renovate[bot] on 2025-09-29
  • [pre-commit.ci] pre-commit autoupdate (#​194) (c8e16c1) by pre-commit-ci[bot] on 2025-09-23
  • chore(deps): lock file maintenance (#​193) (cf748a0) by renovate[bot] on 2025-09-22
  • chore(deps): lock file maintenance (#​190) (8696dc6) by renovate[bot] on 2025-09-18
  • [pre-commit.ci] pre-commit autoupdate (#​192) (f473abb) by pre-commit-ci[bot] on 2025-09-16
  • [pre-commit.ci] pre-commit autoupdate (#​191) (ebb6315) by pre-commit-ci[bot] on 2025-09-09
  • chore(deps): update actions/stale action to v10 (#​189) (c5ebefc) by renovate[bot] on 2025-09-04
  • [pre-commit.ci] pre-commit autoupdate (#​188) (b502147) by pre-commit-ci[bot] on 2025-09-02
  • [pre-commit.ci] pre-commit autoupdate (#​187) (e3b56f0) by pre-commit-ci[bot] on 2025-08-26
  • chore(deps): lock file maintenance (#​186) (9415add) by renovate[bot] on 2025-08-25
  • [pre-commit.ci] pre-commit autoupdate (#​185) (ad21b55) by pre-commit-ci[bot] on 2025-08-19
  • chore(deps): lock file maintenance (#​184) (918e171) by renovate[bot] on 2025-08-18
  • [pre-commit.ci] pre-commit autoupdate (#​183) (db9fa7c) by pre-commit-ci[bot] on 2025-08-11
  • chore(deps): lock file maintenance (#​182) (b2d749b) by renovate[bot] on 2025-08-11
  • [pre-commit.ci] pre-commit autoupdate (#​181) (35c6e2b) by pre-commit-ci[bot] on 2025-08-04
  • chore(deps): lock file maintenance (#​180) (4f38a26) by renovate[bot] on 2025-08-04
RedHatQE/cloud-tools (redhat-qe-cloud-tools)

v2.0.20

Compare Source

  • Lock file maintenance (#​1193) (b772cc8) by renovate[bot] on 2025-12-29
  • [pre-commit.ci] pre-commit autoupdate (#​1192) (a205a15) by pre-commit-ci[bot] on 2025-12-22
  • Lock file maintenance (#​1191) (bc58b0f) by renovate[bot] on 2025-12-22
  • [pre-commit.ci] pre-commit autoupdate (#​1190) (c4bd63f) by pre-commit-ci[bot] on 2025-12-16
  • Lock file maintenance (#​1189) (3660da9) by renovate[bot] on 2025-12-15
  • [pre-commit.ci] pre-commit autoupdate (#​1188) (739cfca) by pre-commit-ci[bot] on 2025-12-08
  • Lock file maintenance (#​1187) (950e47d) by renovate[bot] on 2025-12-08
  • [pre-commit.ci] pre-commit autoupdate (#​1186) (3d72c7f) by pre-commit-ci[bot] on 2025-12-02
  • Lock file maintenance (#​1185) (55b3dea) by renovate[bot] on 2025-12-01
  • [pre-commit.ci] pre-commit autoupdate (#​1184) (139bda8) by pre-commit-ci[bot] on 2025-11-24
  • Lock file maintenance (#​1183) (b52bc8c) by renovate[bot] on 2025-11-24
  • [pre-commit.ci] pre-commit autoupdate (#​1182) (a9e0b41) by pre-commit-ci[bot] on 2025-11-17
  • ci:(deps): lock file maintenance (#​1181) (a9be12d) by renovate[bot] on 2025-11-17
  • ci:(deps): update python-deps (#​1176) (e56ed5e) by renovate[bot] on 2025-11-13
  • Remove python3.9 and add 3.12 to 4.14 (#​1178) (78921ab) by Ruth Netser on 2025-11-12
  • [pre-commit.ci] pre-commit autoupdate (#​1180) (b609d30) by pre-commit-ci[bot] on 2025-11-11
  • ci:(deps): lock file maintenance (#​1177) (20d2b98) by renovate[bot] on 2025-11-10
  • [pre-commit.ci] pre-commit autoupdate (#​1174) (c8e0aff) by pre-commit-ci[bot] on 2025-11-04
  • ci:(deps): lock file maintenance (#​1175) (b2dd2fe) by renovate[bot] on 2025-11-03
  • ci:(deps): lock file maintenance (#​1173) (80b0df9) by renovate[bot] on 2025-10-29
  • ci:(deps): update dependency azure-mgmt-network to v30 (#​1172) (5743b43) by renovate[bot] on 2025-10-26
  • [pre-commit.ci] pre-commit autoupdate (#​1171) (c7ce023) by pre-commit-ci[bot] on 2025-10-21
  • ci:(deps): lock file maintenance (#​1170) (8e393e4) by renovate[bot] on 2025-10-20
  • [pre-commit.ci] pre-commit autoupdate (#​1168) (98a80ce) by pre-commit-ci[bot] on 2025-10-14
  • ci:(deps): lock file maintenance (#​1169) (aaef8b1) by renovate[bot] on 2025-10-13
  • ci:(deps): lock file maintenance (#​1167) (fec42b3) by renovate[bot] on 2025-10-06
  • [pre-commit.ci] pre-commit autoupdate (#​1166) (1d3c2bd) by pre-commit-ci[bot] on 2025-09-29

v2.0.19

Compare Source

  • ci:(deps): lock file maintenance (#​1165) (080da26) by renovate[bot] on 2025-09-29
  • [pre-commit.ci] pre-commit autoupdate (#​1164) (8b6f41f) by pre-commit-ci[bot] on 2025-09-23
  • ci:(deps): lock file maintenance (#​1163) (4e7cfba) by renovate[bot] on 2025-09-22
  • ci:(deps): update dependency pytest-cov to v7 (#​1161) (856cf48) by renovate[bot] on 2025-09-18
  • feat: move from poetry to uv (#​1158) (fa280d2) by Meni Yakove on 2025-09-16
  • [pre-commit.ci] pre-commit autoupdate (#​1160) (f993d54) by pre-commit-ci[bot] on 2025-09-16
  • chore(deps): update poetry-deps (#​1156) (688a7ab) by renovate[bot] on 2025-09-14
  • chore(deps): update poetry-deps (#​1154) (64fa92d) by renovate[bot] on 2025-09-11
  • [pre-commit.ci] pre-commit autoupdate (#​1152) (1e2f0eb) by pre-commit-ci[bot] on 2025-09-09
  • chore(deps): update poetry-deps (#​1153) (605c0cf) by renovate[bot] on 2025-09-09
  • chore(deps): update dependency click to v8.2.1 (#​1150) (b9ab597) by renovate[bot] on 2025-09-07
  • chore(deps): update dependency pytest to v8.4.2 (#​1146) (73de6da) by renovate[bot] on 2025-09-07
  • chore(deps): update dependency pytest-mock to v3.15.0 (#​1148) (dda30a4) by renovate[bot] on 2025-09-07
  • chore(deps): update dependency pytest-cov to v6.3.0 (#​1151) (62b104a) by renovate[bot] on 2025-09-06
  • chore(deps): update poetry-deps (#​1149) (177a566) by renovate[bot] on 2025-09-05
  • chore(deps): update poetry-deps (#​1147) (d84a5db) by renovate[bot] on 2025-09-05
  • chore(deps): update dependency click to v8.2.1 (#​1145) ([6ee3401](ht

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/poetry-deps branch from f9325b5 to 00c64fe Compare September 28, 2025 02:08
@renovate renovate bot changed the title Update dependency pytest-mock to v3.15.1 Update poetry-deps Sep 28, 2025
@renovate renovate bot force-pushed the renovate/poetry-deps branch 2 times, most recently from 4467754 to 43cd69a Compare September 29, 2025 17:40
@renovate renovate bot force-pushed the renovate/poetry-deps branch from 43cd69a to 6667c66 Compare October 18, 2025 01:09
@renovate renovate bot force-pushed the renovate/poetry-deps branch from 6667c66 to 0be0caf Compare October 25, 2025 13:49
@renovate renovate bot force-pushed the renovate/poetry-deps branch from 0be0caf to d182ef1 Compare November 9, 2025 11:48
@renovate renovate bot force-pushed the renovate/poetry-deps branch from d182ef1 to 1c762d9 Compare December 3, 2025 10:40
@renovate renovate bot force-pushed the renovate/poetry-deps branch 3 times, most recently from 52c7590 to 57fbb64 Compare January 5, 2026 15:49
@renovate renovate bot force-pushed the renovate/poetry-deps branch from 57fbb64 to b432305 Compare February 2, 2026 13:51
@renovate renovate bot force-pushed the renovate/poetry-deps branch from b432305 to e0dbfea Compare February 19, 2026 08:15
@renovate renovate bot force-pushed the renovate/poetry-deps branch 2 times, most recently from 62cbab5 to aeb8a5b Compare March 5, 2026 10:40
@renovate renovate bot force-pushed the renovate/poetry-deps branch 3 times, most recently from 223fdc2 to c6d783e Compare March 27, 2026 14:45
@renovate renovate bot force-pushed the renovate/poetry-deps branch from c6d783e to 664a156 Compare March 30, 2026 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants