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: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# Changelog
2
2
3
+
## Release v1.0.16.3 (October 28th, 2024)
4
+
* Only showing "updated at" for comments if the created_at and updated_at field values differ. This helps place focus on updated comments which could potentially reveal a contributor trying to hide a past comment. GitHub is kind to show an Edit history for said comments as a menu option next to the comment itself.
5
+
3
6
## Release v1.0.16.2 (October 25th, 2024)
4
7
* Added validation against Null values for fields "author" and "uploader" in Releases and Assets. Special thanks to @fearcito for reporting the issue.
message=f"User {login} added a comment to a Commit on [{cc.get('created_at')}], updated [{cc.get('updated_at')}]: {cc.get('html_url')}"
52
+
message=(f"User {login} added a comment to a Commit on [{cc.get('created_at')}]"+ (f", and then updated it on [{cc.get('updated_at')}]"ifcc.get('updated_at') !=cc.get('created_at') else"") +f": {cc.get('html_url')}")
message=f"User [{login}] added a comment to an Issue on [{cc.get('created_at')}], updated [{cc.get('updated_at')}]: {cc.get('html_url')}"
95
+
message=(f"User {login} added a comment to an Issue on [{cc.get('created_at')}]"+ (f", and then updated it on [{cc.get('updated_at')}]"ifcc.get('updated_at') !=cc.get('created_at') else"") +f": {cc.get('html_url')}")
message=f"User {login} added a comment to a PR on [{cc.get('created_at')}], updated [{cc.get('updated_at')}]: {cc.get('html_url')}"
139
+
message=(f"User {login} added a comment to a PR on [{cc.get('created_at')}]"+ (f", and then updated it on [{cc.get('updated_at')}]"ifcc.get('updated_at') !=cc.get('created_at') else"") +f": {cc.get('html_url')}")
0 commit comments