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
Copy file name to clipboardExpand all lines: doc/changes.rst
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,24 @@ should be replaced with
29
29
repo.get_views_traffic().views.timestamp
30
30
repo.get_clones_traffic().clones.timestamp
31
31
32
+
* Add ``GitCommitVerification`` class (`#3028 <https://github.com/PyGithub/PyGithub/pull/3028>`_) (`822e6d71 <https://github.com/PyGithub/PyGithub/commit/822e6d71>`_):
33
+
34
+
Changes the return value of ``GitTag.verification`` and ``GitCommit.verification`` from ``dict`` to ``GitCommitVerification``.
35
+
36
+
Code like
37
+
38
+
.. code-block:: python
39
+
40
+
tag.verification["reason"]
41
+
commit.verification["reason"]
42
+
43
+
should be replaced with
44
+
45
+
.. code-block:: python
46
+
47
+
tag.verification.reason
48
+
commit.verification.reason
49
+
32
50
* Property ``AppAuth.private_key`` has been removed (`#3065 <https://github.com/PyGithub/PyGithub/pull/3065>`_) (`36697b22 <https://github.com/PyGithub/PyGithub/commit/36697b22>`_)
0 commit comments