You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...does not yield any warning. However the new parameter parent_hashes shifts subject, body and url positional-or-keyword parameters. So it's a breaking change.
Describe the solution you'd like
Report such inserted positional-or-keyword parameters when checking for breaking changes.
Describe alternatives you've considered
/
Additional context
/
Boost priority
Boost priority in our backlog through Polar.sh. Higher pledge, higher priority.
Minimum pledge by user/organization is $5, minimum amount for boost is $30.
Is your feature request related to a problem? Please describe.
I noticed in a git-changelog PR that this diff
class Commit: """A class to represent a commit.""" def __init__( self, commit_hash: str, author_name: str = "", author_email: str = "", author_date: str | datetime = "", committer_name: str = "", committer_email: str = "", committer_date: str | datetime = "", refs: str = "", + parent_hashes: str | list[str] = "", subject: str = "", body: list[str] | None = None, url: str = "", *, parse_trailers: bool = False, ):
...does not yield any warning. However the new parameter
parent_hashes
shiftssubject
,body
andurl
positional-or-keyword parameters. So it's a breaking change.Describe the solution you'd like
Report such inserted positional-or-keyword parameters when checking for breaking changes.
Describe alternatives you've considered
/
Additional context
/
Boost priority
The text was updated successfully, but these errors were encountered: