-
Notifications
You must be signed in to change notification settings - Fork 383
fix(deps): update minor dependencies (master) #8997
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
base: master
Are you sure you want to change the base?
Conversation
|
2cd8d47
to
8c0b131
Compare
d64768e
to
d4ef7e1
Compare
d4ef7e1
to
993b629
Compare
This PR is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 5 days. Please review it as soon as possible. cc @harvester/dev |
This pull request is now in conflict. Could you fix it @renovate[bot]? 🙏 |
This PR contains the following updates:
==1.51
->==1.59.1
0.28.0
->0.33.1
v2.6.0
->v2.8.0
v3.12.2
->v3.13.0
v1.9.1
->v1.10.1
v1.4.2
->v1.5.1
v0.22.0
->v0.26.1
v0.6.9
->v0.7.0
v0.1.3
->v0.3.11
v0.2.0
->v0.3.0
v1.8.1
->v1.9.1
v2.23.3
->v2.25.3
v1.37.0
->v1.38.2
v0.0.0-20190128024246-5eb7ae5bdb7a
->v0.35.0
v0.82.0
->v0.85.0
v0.68.0
->v0.85.0
v0.6.2
->v0.7.3
v0.6.2
->v0.7.1
v0.10.0
->v0.13.0
v0.0.0-20241202185148-04649f379358
->v0.2.4
v0.6.0
->v0.7.0
v0.0.0-20240618122559-b9ec494d4f6f
->v0.63.1
v0.0.0-20240919204204-3da2ae0cabd1
->v0.63.1
v0.6.17
->v0.7.15
v1.9.1
->v1.10.1
v1.10.0
->v1.11.1
v1.14.2
->v1.18.0
v0.38.0
->v0.42.0
v0.40.0
->v0.44.0
v0.14.0
->v0.17.0
v0.25.0
->v0.29.0
v3.17.3
->v3.18.6
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.31.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.31.1
->v0.34.1
v0.32.5
->v0.34.1
v0.26.13
->v0.34.1
v0.32.5
->v0.34.1
v1.32.5
->v1.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v0.32.5
->v0.34.1
v1.61.0
->v1.63.0
v1.61.0
->v1.63.0
v1.7.3
->v1.11.1
v0.24.0
->v0.30.0
v0.18.1
->v0.20.1
Release Notes
pygithub/pygithub (PyGitHub)
v1.59.1
Compare Source
Bug Fixes
adbfce9
)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=…)
andgithub.GithubIntegration(integration_id=…, private_key=…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…)
are replaced by a singleauth=…
argument. Modulegithub.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
position
argument ingithub.PullRequest.create_review_comment(position=…)
has been renamed toline
.This breaks user code that calls
create_review_comment
with keyword argumentposition
. Call withline=…
instead.Calling this method with positional arguments is not breaking.
jwt_expiry
,jwt_issued_at
andjwt_algorithm
arguments ingithub.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=…)
.since
argument ingithub.PullRequest.get_review_comments(…)
has changed position.User code calling
github.PullRequest.get_review_comments(…)with this argument as positional argument breaks. Please use keyword argument:
github.PullRequest.get_review_comments(since=…)`.Deprecations
github.Github(login_or_token=…)
is deprecated, usegithub.Github(auth=github.Auth.Login(…))
orgithub.Github(auth=github.Auth.Token(…))
instead.github.Github(password=…)
is deprecated, usegithub.Github(auth=github.Auth.Login(…))
instead.github.Github(jwt=…)
is deprecated, usegithub.Github(auth=github.AppAuth(…))
orgithub.Github(auth=github.AppAuthToken(…))
instead.github.Github(app_auth=…)
is deprecated, usegithub.Github(auth=github.Auth.AppInstallationAuth(…))
instead.github.GithubIntegration(integration_id=…, private_key=…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…)
is deprecated, usegithub.GithubIntegration(auth=github.Auth.AppAuth(…))
instead.github.GithubIntegration.create_jwt
is deprecated, usegithub.Github(auth=github.Auth.AppAuth)
,github.Auth.AppAuth.token
orgithub.Auth.AppAuth.create_jwt(expiration)
instead.AppAuthentication
is deprecated, usegithub.Auth.AppInstallationAuth
instead.github.Github.get_app()
without providing argumentslug
is deprecated, usegithub.GithubIntegration(auth=github.Auth.AppAuth(…)).get_app()
.Bug Fixes
ff3b80f
)7be3f76
)Installation.get_repos
(#2547) (6407512
)f82ad61
)17cd0b7
)5011548
)822fc05
)554b2b2
)45f3d72
)e414c32
)bdceae2
)Improvements
517ad33
)804c310
)6d4b6d1
)6a21761
)AppUserAuth
for Github App user tokens (#2546) (f291a36
)0384e2f
)daf62bd
)MainClass.get_app
return completedGithubApp
when slug is given (#2543) (84912a6
)fc2d0e1
)a8e7c42
)name
filter toRepository.get_artifacts()
(#2459) (9f52e94
)name
,display_title
andpath
attributes toWorkflowRun
(#2397) (1081638
)create_fork
arguments (#2493) (b94a83c
)ref
to Deployment (#2489) (e8075c4
)check_suite_id
integer toWorkflow.get_runs
(#2466) (a485451
)generate_release_notes
parameter tocreate_git_release
andcreate_git_tag_and_release
(#2417) (49b3ae1
)c2f12bd
)8c4b946
)artifact_id
argument toRepository.get_artifact()
(#2458) (4fa0a5f
)e296dbd
)bab4180
)5aa544a
)4198dbf
)Maintenance
d514222
)ea45237
)f4e9dcb
)006766f
)cb50dec
)b6258f4
)52fc107
)217d424
)8e8cfb3
)03a2f69
)GithubCredentials.py
to CONTRIBUTING.md (#2482) (297317b
)600217f
)300c501
)def5223
)9c96faa
)3ea91a3
)v1.58.2
Compare Source
Fixes
v1.58.1
Compare Source
Changes
Bug Fixes
v1.58.0
Compare Source
Bug Fixes & Improvements
v1.57
Compare Source
Breaking Changes
1e2f10d
)Bug Fixes & Improvements
6725ece
)run_started_at
&run_attempt
), remove deprecatedunicode
type (#2273) (3a6235b
)0fadd6b
)784a3ef
)db9337a
)437ff84
)v1.56
Compare Source
Important
This is the last release that will support Python 3.6.
Bug Fixes & Improvements
b50283a
)001970d
)8d1397a
)6452ddf
)c8a945b
)f1faf94
)93b92cd
)4f00cbf
)d417e4c
)b1c8eec
)53fb498
)html_url
property in Team Class. (#1983) (6570892
)aa694f8
)bc5e595
)fcc1236
)99e00a2
)1da600a
)1265747
)ed7d0fe
)b466470
)d1644e3
)v1.55
Compare Source
Breaking Changes
901af8c
)2c77cfa
)ad124ef
)ddd437a
)Bug Fixes & Improvements
27ba783
)4faff23
)e416810
)54b6a97
)babcbcd
)5aab6f5
)7687961
)7d6bac9
)916da53
)0245b75
](https://redirect.githubConfiguration
📅 Schedule: Branch creation - "after 10am on sunday" in timezone Asia/Taipei, 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.
👻 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.