Update Mend: high confidence minor and patch dependency updates#48
Open
mend-for-github-com[bot] wants to merge 1 commit into
Conversation
ff28012 to
2f9ef47
Compare
78e4e7d to
f1f7ff6
Compare
34918b9 to
7548173
Compare
34062f3 to
81e1bc9
Compare
81e1bc9 to
ac30391
Compare
cd8c623 to
6bd3355
Compare
b3b0ea8 to
61a899d
Compare
e8c4cae to
a8c6b98
Compare
2cd53d6 to
06956d1
Compare
69d768f to
0c94fa4
Compare
2c09fd4 to
a022480
Compare
763bc79 to
c1738f4
Compare
c1738f4 to
a15cce3
Compare
83353a4 to
6d600da
Compare
5be507f to
ee8ce2e
Compare
d811136 to
5214217
Compare
cf69ab2 to
20ae5ca
Compare
20ae5ca to
e87e0c5
Compare
cac0139 to
8f027c8
Compare
864afa6 to
831f347
Compare
831f347 to
a7fadb4
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:
==3.1.3→==3.1.6==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==1.47.0→==1.80.0==0.20.2→==0.31.2==4.6.4→==4.13.0==0.7.1→==0.9.0==1.10.16→==1.11.0==8.10.0→==8.14.0==24.1→==24.2==4.25.3→==4.25.9==18.0.0→==18.1.0==7.45.3→==7.46.0==1.43.5→==1.59.1==3.1.0→==3.3.9==2.32.3→==2.34.2==1.12.0→==1.17.1==1.16.0→==1.17.0==0.8.6→==0.10.0==4.67.1→==4.67.3==1.3.6→==1.3.9==1.26.3→==1.38.0Release Notes
pallets/jinja (Jinja2)
v3.1.6Compare Source
Released 2025-03-05
|attrfilter does not bypass the environment's attribute lookup,allowing the sandbox to apply its checks. :ghsa:
cpwx-vrp4-4pq7v3.1.5Compare Source
Released 2024-12-21
str.format, such asby passing a stored reference to a filter that calls its argument.
:ghsa:
q2x7-8rv6-6q7hissues with names that contain f-string syntax.
:issue:
1792, :ghsa:gmj6-6f8f-6699clearandpopon known mutable sequencetypes. :issue:
2032renderfor an async template usesasyncio.run.:pr:
1952auto_aiterwarnings. :pr:1960aclose-ableAsyncGeneratorfromTemplate.generate_async. :pr:1960root_render_func()unclosed inTemplate.generate_async. :pr:1960:pr:
1960concatfunction for the current environmentwhen calling block references. :issue:
1701|uniqueasync-aware, allowing it to be used after anotherasync-aware filter. :issue:
1781|intfilter handlesOverflowErrorfrom scientific notation.:issue:
1921{% set ... %}call. :issue:
2021copy/pickle/etc) interaction withUndefinedobjects. :issue:
2025copy/picklesupport for the internalmissingobject.:issue:
2027Environment.overlay(enable_async)is applied correctly. :pr:2061FileSystemLoaderincludes the paths that weresearched. :issue:
1661PackageLoadershows a clearer error message when the package does notcontain the templates directory. :issue:
17051880urlizedoes not addmailto:to values like@a@b. :pr:1870@pass_context`` can be used with the ``|select`` filter. :issue:1624`setfor multiple assignment (a, b = 1, 2) does not fail when thetarget is a namespace attribute. :issue:
1413setin all branches of{% if %}{% elif %}{% else %}blocksdoes not cause the variable to be considered initially undefined.
:issue:
1253v3.1.4Compare Source
Released 2024-05-05
xmlattrfilter does not allow keys with/solidus,>greater-than sign, or
=equals sign, in addition to disallowing spaces.Regardless of any validation done by Jinja, user input should never be used
as keys to this filter, or must be separately validated first.
:ghsa:
h75v-3vvj-5mfjpygithub/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:114[
v1.5](https://redirect.github.com/palleConfiguration
📅 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.