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
If you look at the OpenAPI spec, the get-commit endpoint returns a commit object containing committer with a date field, which is a string with date-time format. But githubkit's endpoint returns a Commit object containing GitUser where date is just a str, so the user needs to parse the datetime themselves
The text was updated successfully, but these errors were encountered:
As the schema shows, the date field is string but not date. If you think this should be date type, you can report this to https://github.com/github/rest-api-description/ and i will make a patch to add a format: date-time to this field.
If you look at the OpenAPI spec, the get-commit endpoint returns a commit object containing committer with a date field, which is a string with date-time format. But githubkit's endpoint returns a Commit object containing GitUser where date is just a str, so the user needs to parse the datetime themselves
The text was updated successfully, but these errors were encountered: