Skip to content

fix(deps): update dependency pygithub to v2#5269

Open
red-hat-konflux[bot] wants to merge 1 commit intomasterfrom
konflux/mintmaker/master/pygithub-2.x
Open

fix(deps): update dependency pygithub to v2#5269
red-hat-konflux[bot] wants to merge 1 commit intomasterfrom
konflux/mintmaker/master/pygithub-2.x

Conversation

@red-hat-konflux
Copy link
Contributor

@red-hat-konflux red-hat-konflux bot commented Oct 31, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
PyGithub >=1.58,<1.59 -> >=2.8,<2.9 age confidence
pygithub ==1.58.2 -> ==2.8.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

pygithub/pygithub (PyGithub)

v2.8.1

Compare Source

What's Changed
Bug Fixes

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

v2.8.0

Compare Source

What's Changed
New Features
Improvements
Bug Fixes
Maintenance
New Contributors

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

v2.7.0

Compare Source

What's Changed
Breaking Changes
  • Method Github.get_rate_limit() now returns RateLimitOverview rather than RateLimit (PyGithub/PyGithub#3205).

Code like

gh.get_rate_limit().core.remaining

should be replaced with

gh.get_rate_limit().resources.core.remaining
  • Method GitTag.verification now returns GitCommitVerification rather than dict[str, Any] (PyGithub/PyGithub#3226).

Code like

tag.verification["reason"]
tag.verification.get("reason")

should be replaced with

tag.verification.reason
New Features
Improvements
Bug Fixes
Dependencies
Maintenance
New Contributors

Full Changelog: PyGithub/PyGithub@v2.6.0...v2.7.0

v2.6.1

Compare Source

Bug Fixes
Maintenance

Full Changelog: PyGithub/PyGithub@v2.6.0...v2.6.1

v2.6.0

Compare Source

Breaking Changes
  • Rework Views and Clones by @​EnricoMi in PyGithub/PyGithub#3168:
    View and clones traffic information returned by Repository.get_views_traffic and Repository.get_clones_traffic
    now return proper PyGithub objects, instead of a dict, with all information that used to be provided by the dict:

Code like

repo.get_views_traffic().["views"].timestamp
repo.get_clones_traffic().["clones"].timestamp

should be replaced with

repo.get_views_traffic().views.timestamp
repo.get_clones_traffic().clones.timestamp
New Features
Improvements
Bug Fixes
Others
Maintenance
New Contributors

Full Changelog: PyGithub/PyGithub@v2.5.0...v2.6.0

v2.5.0

Compare Source

Breaking Changes
  • Parameters of method github.Requester.Requester.graphql_named_mutation have been renamed:
    • Parameter variables renamed to mutation_input
    • Parameter output renamed to output_schema
    • Default value of parameter output has been removed
New features
Improvements
Bug Fixes
Maintenance

v2.4.0

Compare Source

New features
Improvements
Bug Fixes
Maintenance

v2.3.0

Compare Source

New features
Improvements
Bug Fixes
Maintenance

v2.2.0

Compare Source

Breaking Changes

The github.Comparison.Comparison instance returned by Repository.compare provides a commits property that used to return a list[github.Commit.Commit], which has now been changed to PaginatedList[github.Commit.Commit]. This breaks user code that assumes a list:

commits = repo.compare("v0.6", "v0.7").commits
no_of_commits = len(commits)  # will raise a TypeError

This will raise a TypeError: object of type 'PaginatedList' has no len(), as the returned PaginatedList
does not support the len() method. Use the totalCount property instead:

commits = repo.compare("v0.6", "v0.7").commits
no_of_commits = commits.totalCount
New features
  • Add support to call GraphQL API
Improvements

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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/master/pygithub-2.x branch 6 times, most recently from 8d7bad4 to 62ba043 Compare November 17, 2025 08:16
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/master/pygithub-2.x branch 2 times, most recently from 8a80d4e to 3f3986e Compare January 26, 2026 08:17
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/master/pygithub-2.x branch 2 times, most recently from 471bf0f to faedbdc Compare February 5, 2026 16:19
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/master/pygithub-2.x branch from faedbdc to 469e8ec Compare February 11, 2026 08:39
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/master/pygithub-2.x branch from 469e8ec to 9593a44 Compare March 2, 2026 12:08
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