Update Mend: high confidence minor and patch dependency updates#15
Open
mend-for-github-com[bot] wants to merge 1 commit into
Conversation
847dcd2 to
8d01696
Compare
e9d0868 to
ecb4d4b
Compare
94831bb to
ab12147
Compare
18f2d06 to
0eba6cb
Compare
fe72c47 to
a345fab
Compare
f5e75ab to
3c14be8
Compare
a0b2b95 to
9c3257a
Compare
231d118 to
faf3364
Compare
4aa620e to
f309969
Compare
f309969 to
218002b
Compare
5353ce7 to
f5dfdec
Compare
26094ba to
6bea59f
Compare
70447f2 to
a0e2901
Compare
369ce8d to
89044e7
Compare
0cc54ea to
0ccb983
Compare
0ccb983 to
8e162ea
Compare
3f36d30 to
0e106fa
Compare
0e106fa to
04d281e
Compare
3a2d290 to
6030c1d
Compare
df185d7 to
c5fb207
Compare
0541c0f to
28e9bb8
Compare
28e9bb8 to
54d80b3
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:
==2.6.1→==2.9.1==3.3.1→==3.5.0==1.4→==1.9.0==2.2.1→==2.4.2==1.7.0→==1.9.0==4.6.4→==4.13.0==0.7.1→==0.9.0==1.10.16→==1.11.0==8.10.0→==8.14.0==1.15.0→==1.20.2==3.2.2→==3.3.1==24.1→==24.2==4.25.3→==4.25.9==18.0.0→==18.1.0==1.43.5→==1.59.1==3.1.0→==3.3.9==1.16.0→==1.17.0==0.8.6→==0.10.0==1.3.6→==1.3.9==1.26.3→==1.38.0==3.19.1→==3.23.1Release Notes
pygithub/pygithub (PyGitHub)
v2.9.1Compare Source
Bug Fixes
Full Changelog: PyGithub/PyGithub@v2.9.0...v2.9.1
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
v2.8.1Compare Source
What's Changed
Bug Fixes
Full Changelog: PyGithub/PyGithub@v2.8.0...v2.8.1
v2.8.0Compare Source
What's Changed
New Features
Improvements
Repository.get_automated_security_fixesmethod by @zstyblik in PyGithub/PyGithub#3303Issueclass with API spec by @EnricoMi in PyGithub/PyGithub#3338NamedUser | Organization | Enterpriseby @EnricoMi in PyGithub/PyGithub#3224Enterpriseclass with API spec by @EnricoMi in PyGithub/PyGithub#3342GitReleaseAssetclass with API spec by @EnricoMi in PyGithub/PyGithub#3343Teamrepo methods by @EnricoMi in PyGithub/PyGithub#3356Bug Fixes
Repository.get_git_refby @csalerno-asml in PyGithub/PyGithub#2992GitRelease.name, deprecateGitRelease.titleby @EnricoMi in PyGithub/PyGithub#3346"COMMENT"as the default event forcreate_reviewby @eddie-santos in PyGithub/PyGithub#3078maintainersinOrganization.create_teamby @interifter in PyGithub/PyGithub#3291Maintenance
PaginatedListby @sam93210 in PyGithub/PyGithub#3039github_actionslabel to Maintenance section by @EnricoMi in PyGithub/PyGithub#3357New Contributors
Full Changelog: PyGithub/PyGithub@v2.7.0...v2.8.0
v2.7.0Compare Source
What's Changed
Breaking Changes
Github.get_rate_limit()now returnsRateLimitOverviewrather thanRateLimit(PyGithub/PyGithub#3205).Code like
should be replaced with
GitTag.verificationnow returnsGitCommitVerificationrather thandict[str, Any](PyGithub/PyGithub#3226).Code like
should be replaced with
New Features
Improvements
OrganizationInvitationby @EnricoMi in PyGithub/PyGithub#3207RepositoryAdvisorytests with OpenAPI spec by @EnricoMi in PyGithub/PyGithub#3215ProjectColumnandProjectCardtests with OpenAPI spec by @EnricoMi in PyGithub/PyGithub#3216CopilotSeatclass with API spec by @EnricoMi in PyGithub/PyGithub#3232HookDeliverySummaryclass with API spec by @EnricoMi in PyGithub/PyGithub#3233RequiredPullRequestReviewsclass with API spec by @EnricoMi in PyGithub/PyGithub#3234RequiredStatusChecksclass with API spec by @EnricoMi in PyGithub/PyGithub#3236Teamclass with API spec by @EnricoMi in PyGithub/PyGithub#3237deprecated.deprecated()withtyping_extensions.deprecated()by @lazka in PyGithub/PyGithub#3255prevent_self_reviewproperty toRepository.createEnvironmentby @gopidesupavan in PyGithub/PyGithub#3246PullRequest.get_issue_timelinemethod by @kukarkinmm in PyGithub/PyGithub#3259reversed()onPaginatedListby @mfocko in PyGithub/PyGithub#3260Requesterexception handling by @jsmolar in PyGithub/PyGithub#3299delete_self_hosted_runnertoOrganizationby @uncleDecart in PyGithub/PyGithub#3306Bug Fixes
Authclasses by @EnricoMi in PyGithub/PyGithub#3211Deployment, removemessageattribute by @EnricoMi in PyGithub/PyGithub#3223CodeSecurityConfigRepositoryreturned byget_repos_for_code_security_configby @EnricoMi in PyGithub/PyGithub#3219Branch.get_required_status_checksreturn type by @EnricoMi in PyGithub/PyGithub#3235multi_selectandtrue_falseoptions toCustomProperty.value_typeby @gfog-floqast in PyGithub/PyGithub#3173TimingData.run_duration_msoptional by @LifeLex in PyGithub/PyGithub#3268Dependencies
Maintenance
AppAuth.private_keyin changelog by @EnricoMi in PyGithub/PyGithub#3212HookDeliveryRequestand…Responseprivate headers fields by @EnricoMi in PyGithub/PyGithub#3221PaginatedList[int]by @EnricoMi in PyGithub/PyGithub#3240Organization.get_repos_for_code_security_configtest by @billnapier in PyGithub/PyGithub#3239TimingDataby @EnricoMi in PyGithub/PyGithub#3206New Contributors
Full Changelog: PyGithub/PyGithub@v2.6.0...v2.7.0
mitya57/secretstorage (SecretStorage)
v3.5.0Compare Source
===============================
timeoutargument to theunlock()methods ofCollectionand
Item[#33_].int_to_bytes()function in favor of the built-in method... _
#33: #33v3.4.1Compare Source
===============================
#48_].This fixes
Client public key size is invaliderror from KWallet... _
#48: #48v3.4.0Compare Source
===============================
UnknownObjecterror when no collection is found [#43_].Thanks to Renato Alencar for the pull request!
__repr__methods to Collection and Item classes [#47_].pyproject.toml.Thanks to Hugo van Kemenade and Tomasz Kłoczko for the pull requests!
.. _
#43: #43.. _
#47: #47v3.3.3Compare Source
===============================
#39_].8standard... _
#39: #39v3.3.2Compare Source
===============================
Thanks to Sam McKelvie for the pull request!
pallets-eco/blinker (blinker)
v1.9.0Compare Source
Released 2024-11-08
175__version__,receiver_connected,Signal.temporarily_connected_toandWeakNamespace. :pr:172:issue:
173v1.8.2Compare Source
Released 2024-05-06
_async_wrapperand_sync_wrapperarguments.:pr:
156v1.8.1Compare Source
Released 2024-04-28
strandintsenders. :pr:148blinker.base.WeakNamespaceimport. :pr:149blinker.base.receiver_connected import. :pr:153collections.abcinstead oftyping. :pr:150152v1.8.0Compare Source
Released 2024-04-27
__version__attribute. Use feature detection, orimportlib.metadata.version("blinker"), instead. :issue:128temporarily_connected_towill be removed inthe next version.
receiver_connectedsignal and specify that it will be removed in the next version.
WeakNamespaceand specifythat it will be removed in the next version.
internally but should not affect any public API. :pr:
144signal()asdefault_namespace.:pr:
145v1.7.0Compare Source
Released 2023-11-01
signal cleanup, typically during interpreter shutdown. :pr:
123set_classto be customised, to allow calling ofreceivers in registration order. :pr:
116.126v1.6.3Compare Source
Released 2023-09-23
SyncWrapperTypeandAsyncWrapperType:pr:108connected_towould not disconnect the receiver if aninstance of
BaseExceptionwas raised. :pr:114v1.6.2Compare Source
Released 2023-04-12
runtime dependency. :pr:
94v1.6.1Compare Source
Released 2023-04-09
py.typedis present in the distributions (to enable otherprojects to use Blinker's typing).
ParamSpec.:issue:
90v1.6Compare Source
Released 2023-09-23
SyncWrapperTypeandAsyncWrapperType:pr:108connected_towould not disconnect the receiver if aninstance of
BaseExceptionwas raised. :pr:114v1.5Released 2022-07-17
may continue to work, but the next release will make incompatible
changes.
codespell-project/codespell (codespell)
v2.4.2Compare Source
Highlights
What's Changed
liento the rare dictionary by @nikolaik in #3631timeourtotimeoutby @jamesbraza in #3656Configuration
📅 Schedule: (UTC)
🚦 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.