Open
Conversation
f9325b5 to
00c64fe
Compare
4467754 to
43cd69a
Compare
43cd69a to
6667c66
Compare
6667c66 to
0be0caf
Compare
0be0caf to
d182ef1
Compare
d182ef1 to
1c762d9
Compare
52c7590 to
57fbb64
Compare
57fbb64 to
b432305
Compare
b432305 to
e0dbfea
Compare
62cbab5 to
aeb8a5b
Compare
223fdc2 to
c6d783e
Compare
c6d783e to
664a156
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.1.2→3.1.33.1.45→3.1.469.5.0→9.12.06.0.14→6.0.162.8.1→2.9.03.15.0→3.15.16.3.0→6.5.02.0.16→2.0.192.0.18→2.0.202.32.5→2.33.1Release Notes
pallets/flask (flask)
v3.1.3Compare Source
Released 2026-02-18
but not the values, such as
inandlen. :ghsa:68rp-wp8r-4726gitpython-developers/GitPython (gitpython)
v3.1.46Compare Source
What's Changed
335c0f6to39d7dbfby @dependabot[bot] in #206839d7dbftof8fdfecby @dependabot[bot] in #2071SymbolicReference.referenceproperty by @emmanuel-ferdman in #2074f8fdfecto65321a2by @dependabot[bot] in #2082mypy==1.18.2by @George-Ogden in #2087os.Pathlikeby @George-Ogden in #208665321a2to4c63ee6by @dependabot[bot] in #2093PathlikeObject to Tree by @George-Ogden in #2094New Contributors
Full Changelog: gitpython-developers/GitPython@3.1.45...3.1.46
ipython/ipython (ipython)
v9.12.0Compare Source
v9.11.0Compare Source
v9.10.1Compare Source
v9.10.0Compare Source
v9.9.0Compare Source
v9.8.0Compare Source
v9.7.0Compare Source
v9.6.0Compare Source
RedHatQE/openshift-python-utilities (openshift-python-utilities)
v6.0.16: Release 6.0.16Compare Source
bb02cad) by pre-commit-ci[bot] on 2026-02-17fb80709) by Debarati Basu-Nag on 2026-02-1236865f1) by pre-commit-ci[bot] on 2026-02-105c11cb7) by pre-commit-ci[bot] on 2026-01-276bffaa7) by pre-commit-ci[bot] on 2026-01-203323cc4) by pre-commit-ci[bot] on 2025-12-2249d6bc9) by pre-commit-ci[bot] on 2025-12-16a8f80c4) by pre-commit-ci[bot] on 2025-12-085bd6c20) by pre-commit-ci[bot] on 2025-12-021737fda) by pre-commit-ci[bot] on 2025-11-245a2c5ae) by pre-commit-ci[bot] on 2025-11-171da0207) by pre-commit-ci[bot] on 2025-11-10833bb98) by pre-commit-ci[bot] on 2025-11-03e424f0e) by pre-commit-ci[bot] on 2025-10-2917b821d) by pre-commit-ci[bot] on 2025-10-21a85c7ce) by pre-commit-ci[bot] on 2025-10-145e7ce73) by pre-commit-ci[bot] on 2025-10-0756f1a6f) by pre-commit-ci[bot] on 2025-09-29v6.0.15: Release 6.0.15Compare Source
ebb9821) by pre-commit-ci[bot] on 2025-09-23a91ffe2) by pre-commit-ci[bot] on 2025-09-16b6685f0) by pre-commit-ci[bot] on 2025-09-0959e929b) by pre-commit-ci[bot] on 2025-09-02438adf0) by pre-commit-ci[bot] on 2025-08-26334619e) by pre-commit-ci[bot] on 2025-08-19519540f) by pre-commit-ci[bot] on 2025-08-1136f10b3) by pre-commit-ci[bot] on 2025-08-04ca20af2) by pre-commit-ci[bot] on 2025-07-288c21cd1) by pre-commit-ci[bot] on 2025-07-22pygithub/pygithub (pygithub)
v2.9.0Compare 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:
All PyGithub classes that implement
CompletableGithubObjectsupport 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_pageis usually 300, in contrast to the "usual"per_pagemaximum of 100).Objects with paginated properties:
This PR makes iterating those paginated properties use the configured
per_pagesetting.It further allows to specify an individual
per_pagewhen 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
deleteofReactionis deprecated, useIssueComment.delete_reaction,PullRequestComment.delete_reaction,CommitComment.delete_reactionorIssue.delete_reactioninstead.Issue.assigneeand parameterIssue.edit(assignee=…)are deprecated,use
Issue.assigneesandIssue.edit(assignees=…)instead.Organization.edit_hookis deprecated, useOrganization.get_hook(id).edit(…)instead.If you need to avoid
Organization.get_hook(id)to fetch theHookobject from Github API,use a lazy Github instance:
Team.add_to_membersandTeam.remove_from_membersare deprecated,use
Team.add_membershiporTeam.remove_membershipinstead.New Features
Improvements
api.by @EnricoMi in PyGithub/PyGithub#3419throwoption toWorkflow.create_dispatchto raise exceptions by @dblanchette in PyGithub/PyGithub#2966GETurl or_links.selfas object url by @EnricoMi in PyGithub/PyGithub#3421typeparameter to get_issues by @nrysk in PyGithub/PyGithub#3381Bug Fixes
PaginatedList.totalCountreturning 0 with GitHub deprecation notices by @odedperezcodes in PyGithub/PyGithub#3382Maintenance
Reaction.deleteby @iarspider in PyGithub/PyGithub#3435Issue.assigneeby @EnricoMi in PyGithub/PyGithub#3366Orginization.edit_hookby @EnricoMi in PyGithub/PyGithub#3404Team.add_to_membersandTeam.remove_from_membersby @EnricoMi in PyGithub/PyGithub#3368New Contributors
Full Changelog: PyGithub/PyGithub@v2.8.0...v2.9.0
pytest-dev/pytest-mock (pytest-mock)
v3.15.1Compare Source
2025-09-16
#​529 <https://github.com/pytest-dev/pytest-mock/issues/529>_: Fixeditertools._tee object has no attribute error-- nowduplicate_iterators=Truemust be passed tomocker.spyto duplicate iterators.python-gitlab/python-gitlab (python-gitlab)
v6.5.0Compare Source
Bug Fixes
(
fb9693b)Continuous Integration
(
9357a37)Documentation
(
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.0Compare 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.19Compare Source
3a59bc3) by Meni Yakove on 2026-02-263b16215) by pre-commit-ci[bot] on 2026-02-23c5ab31b) by pre-commit-ci[bot] on 2026-02-170a96824) by renovate[bot] on 2026-02-161895c64) by pre-commit-ci[bot] on 2026-02-105efa14d) by renovate[bot] on 2026-02-09b447594) by renovate[bot] on 2026-02-038144112) by pre-commit-ci[bot] on 2026-01-2754302f8) by renovate[bot] on 2026-01-2619f70bf) by pre-commit-ci[bot] on 2026-01-20e9c8263) by pre-commit-ci[bot] on 2026-01-1332cd566) by renovate[bot] on 2026-01-12cfaa01b) by renovate[bot] on 2025-12-298ae329b) by pre-commit-ci[bot] on 2025-12-226f733be) by pre-commit-ci[bot] on 2025-12-16f5a52f7) by renovate[bot] on 2025-12-15e9ca944) by pre-commit-ci[bot] on 2025-12-0838618c4) by renovate[bot] on 2025-12-0881ac3c9) by pre-commit-ci[bot] on 2025-12-026ad817b) by pre-commit-ci[bot] on 2025-11-27002b354) by renovate[bot] on 2025-11-24377575e) by pre-commit-ci[bot] on 2025-11-17173cff5) by renovate[bot] on 2025-11-17737c891) by pre-commit-ci[bot] on 2025-11-11e94ff2e) by renovate[bot] on 2025-11-10f3aec5a) by pre-commit-ci[bot] on 2025-11-042bc5a1a) by renovate[bot] on 2025-10-29v2.0.18Compare Source
13d52a6) by Meni Yakove on 2025-10-254f9a394) by pre-commit-ci[bot] on 2025-10-215396f0d) by renovate[bot] on 2025-10-20823cf91) by pre-commit-ci[bot] on 2025-10-14cb1e72c) by renovate[bot] on 2025-10-1364839a4) by pre-commit-ci[bot] on 2025-10-07ed8144d) by renovate[bot] on 2025-10-062281852) by pre-commit-ci[bot] on 2025-09-29v2.0.17Compare Source
d3e18a1) by renovate[bot] on 2025-09-29c8e16c1) by pre-commit-ci[bot] on 2025-09-23cf748a0) by renovate[bot] on 2025-09-228696dc6) by renovate[bot] on 2025-09-18f473abb) by pre-commit-ci[bot] on 2025-09-16ebb6315) by pre-commit-ci[bot] on 2025-09-09c5ebefc) by renovate[bot] on 2025-09-04b502147) by pre-commit-ci[bot] on 2025-09-02e3b56f0) by pre-commit-ci[bot] on 2025-08-269415add) by renovate[bot] on 2025-08-25ad21b55) by pre-commit-ci[bot] on 2025-08-19918e171) by renovate[bot] on 2025-08-18db9fa7c) by pre-commit-ci[bot] on 2025-08-11b2d749b) by renovate[bot] on 2025-08-1135c6e2b) by pre-commit-ci[bot] on 2025-08-044f38a26) by renovate[bot] on 2025-08-04RedHatQE/cloud-tools (redhat-qe-cloud-tools)
v2.0.20Compare Source
b772cc8) by renovate[bot] on 2025-12-29a205a15) by pre-commit-ci[bot] on 2025-12-22bc58b0f) by renovate[bot] on 2025-12-22c4bd63f) by pre-commit-ci[bot] on 2025-12-163660da9) by renovate[bot] on 2025-12-15739cfca) by pre-commit-ci[bot] on 2025-12-08950e47d) by renovate[bot] on 2025-12-083d72c7f) by pre-commit-ci[bot] on 2025-12-0255b3dea) by renovate[bot] on 2025-12-01139bda8) by pre-commit-ci[bot] on 2025-11-24b52bc8c) by renovate[bot] on 2025-11-24a9e0b41) by pre-commit-ci[bot] on 2025-11-17a9be12d) by renovate[bot] on 2025-11-17e56ed5e) by renovate[bot] on 2025-11-1378921ab) by Ruth Netser on 2025-11-12b609d30) by pre-commit-ci[bot] on 2025-11-1120d2b98) by renovate[bot] on 2025-11-10c8e0aff) by pre-commit-ci[bot] on 2025-11-04b2dd2fe) by renovate[bot] on 2025-11-0380b0df9) by renovate[bot] on 2025-10-295743b43) by renovate[bot] on 2025-10-26c7ce023) by pre-commit-ci[bot] on 2025-10-218e393e4) by renovate[bot] on 2025-10-2098a80ce) by pre-commit-ci[bot] on 2025-10-14aaef8b1) by renovate[bot] on 2025-10-13fec42b3) by renovate[bot] on 2025-10-061d3c2bd) by pre-commit-ci[bot] on 2025-09-29v2.0.19Compare Source
080da26) by renovate[bot] on 2025-09-298b6f41f) by pre-commit-ci[bot] on 2025-09-234e7cfba) by renovate[bot] on 2025-09-22856cf48) by renovate[bot] on 2025-09-18fa280d2) by Meni Yakove on 2025-09-16f993d54) by pre-commit-ci[bot] on 2025-09-16688a7ab) by renovate[bot] on 2025-09-1464fa92d) by renovate[bot] on 2025-09-111e2f0eb) by pre-commit-ci[bot] on 2025-09-09605c0cf) by renovate[bot] on 2025-09-09b9ab597) by renovate[bot] on 2025-09-0773de6da) by renovate[bot] on 2025-09-07dda30a4) by renovate[bot] on 2025-09-0762b104a) by renovate[bot] on 2025-09-06177a566) by renovate[bot] on 2025-09-05d84a5db) by renovate[bot] on 2025-09-056ee3401](htConfiguration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.