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

Update dependency PyGithub to v2.3.0 #198

Merged
merged 1 commit into from
Jun 10, 2024
Merged

Update dependency PyGithub to v2.3.0 #198

merged 1 commit into from
Jun 10, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
PyGithub 2.1.1 -> 2.3.0 age adoption passing confidence

Release Notes

pygithub/pygithub (PyGithub)

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

Bug Fixes

Maintenance

Full Changelog: PyGithub/PyGithub@v2.1.1...v2.2.0


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 this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 2 times, most recently from 84af116 to cdf82ac Compare February 17, 2024 00:27
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 3 times, most recently from 96a035b to 4e274f4 Compare February 25, 2024 22:05
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 4 times, most recently from 5846e03 to e2478e6 Compare March 9, 2024 17:09
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 3 times, most recently from ae03957 to 75d91d8 Compare March 17, 2024 13:23
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch from 75d91d8 to 55efbee Compare March 24, 2024 15:18
@renovate renovate bot changed the title Update dependency PyGithub to v2.2.0 Update dependency PyGithub to v2.3.0 Mar 24, 2024
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch from 55efbee to 89be84a Compare April 13, 2024 00:24
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 5 times, most recently from 21211e0 to cfcdf8d Compare April 28, 2024 05:01
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 5 times, most recently from 609cd6d to 296bc17 Compare May 20, 2024 11:21
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 2 times, most recently from 9a6fd97 to 11eccb0 Compare May 28, 2024 21:57
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch 2 times, most recently from d0cf249 to dbf4a39 Compare June 4, 2024 18:07
@renovate renovate bot force-pushed the renovate/pygithub-2.x branch from dbf4a39 to 3a642e1 Compare June 6, 2024 17:28
@simu simu merged commit 5eb08f2 into master Jun 10, 2024
8 checks passed
@simu simu deleted the renovate/pygithub-2.x branch June 10, 2024 11:44
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.

1 participant