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 v1.59.1 #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 23, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
PyGithub ==1.57 -> ==1.59.1 age adoption passing confidence

Release Notes

pygithub/pygithub (PyGithub)

v1.59.1

Compare Source

Bug Fixes

v1.59.0

Compare Source

Important

This release introduces new way of authentication. All authentication-related arguments github.Github(login_or_token=…, password=…, jwt=…, app_auth=…) and github.GithubIntegration(integration_id=…, private_key=…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…) are replaced by a single auth=… argument. Module github.Auth provides classes for all supported ways of authentication: Login, Token, AppAuth, AppAuthToken, AppInstallationAuth, AppUserAuth. Old arguments are deprecated but continue to work. They are scheduled for removal for version 2.0 release.

This project has decided to move all typing information from .pyi files into the respective .py source files. This will happen gradually over time.

Breaking Changes

  • The position argument in github.PullRequest.create_review_comment(position=…) has been renamed to line.
    This breaks user code that calls create_review_comment with keyword argument position. Call with line=… instead.
    Calling this method with positional arguments is not breaking.
  • The jwt_expiry, jwt_issued_at and jwt_algorithm arguments in github.GithubIntegration() have changed their position.
    User code calling github.GithubIntegration(…) with these arguments as positional arguments breaks.
    Please use keyword arguments: github.GithubIntegration(…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…).
  • The since argument in github.PullRequest.get_review_comments(…) has changed position.User code callinggithub.PullRequest.get_review_comments(…)with this argument as positional argument breaks. Please use keyword argument:github.PullRequest.get_review_comments(since=…)`.

Deprecations

  • The use of github.Github(login_or_token=…) is deprecated, use github.Github(auth=github.Auth.Login(…)) or github.Github(auth=github.Auth.Token(…)) instead.
  • The use of github.Github(password=…) is deprecated, use github.Github(auth=github.Auth.Login(…)) instead.
  • The use of github.Github(jwt=…) is deprecated, use github.Github(auth=github.AppAuth(…)) or github.Github(auth=github.AppAuthToken(…)) instead.
  • The use of github.Github(app_auth=…) is deprecated, use github.Github(auth=github.Auth.AppInstallationAuth(…)) instead.
  • The use of github.GithubIntegration(integration_id=…, private_key=…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…) is deprecated, use github.GithubIntegration(auth=github.Auth.AppAuth(…)) instead.
  • The use of github.GithubIntegration.create_jwt is deprecated, use github.Github(auth=github.Auth.AppAuth), github.Auth.AppAuth.token or github.Auth.AppAuth.create_jwt(expiration) instead.
  • The use of AppAuthentication is deprecated, use github.Auth.AppInstallationAuth instead.
  • The use of github.Github.get_app() without providing argument slug is deprecated, use github.GithubIntegration(auth=github.Auth.AppAuth(…)).get_app().

Bug Fixes

Improvements

Maintenance

v1.58.2

Compare Source

Fixes

v1.58.1

Compare Source

Changes

Bug Fixes

v1.58.0

Compare Source

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


  • 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 requested a review from a team February 23, 2023 07:50
@renovate renovate bot added dependencies Pull requests that update a dependency file renovate PR created by RenovateBot labels Feb 23, 2023
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch 2 times, most recently from 2c74d5b to c63e524 Compare March 18, 2023 09:04
@renovate renovate bot changed the title Update dependency PyGithub to v1.58.0 Update dependency PyGithub to v1.58.1 Mar 18, 2023
@renovate renovate bot changed the title Update dependency PyGithub to v1.58.1 Update dependency PyGithub to v1.58.2 May 9, 2023
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch from c63e524 to 117e62a Compare May 9, 2023 15:55
@renovate renovate bot changed the title Update dependency PyGithub to v1.58.2 Update dependency PyGithub to v1.59.0 Jun 22, 2023
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch from 117e62a to 8038fc4 Compare June 22, 2023 19:08
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch 2 times, most recently from be41762 to a94a102 Compare July 13, 2023 19:46
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch 2 times, most recently from 2fa9e73 to 8392716 Compare July 20, 2023 13:59
@renovate renovate bot changed the title Update dependency PyGithub to v1.59.0 Update dependency PyGithub to v1.59.1 Aug 3, 2023
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch from 8392716 to 7abbed4 Compare August 3, 2023 10:44
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch from 7abbed4 to 41ad5ef Compare August 17, 2023 22:20
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch from 41ad5ef to c3db822 Compare August 7, 2024 01:32
@renovate renovate bot force-pushed the renovate/pygithub-1.x branch from c3db822 to b95c653 Compare December 22, 2024 00:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file renovate PR created by RenovateBot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants