-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Go 1.19 fmt for Gitea 1.17, sync emoji data #21239
Use Go 1.19 fmt for Gitea 1.17, sync emoji data #21239
Conversation
@@ -214,8 +214,7 @@ const hdr = ` | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 2020
three lines above is now outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But we should probably fix this on main rather then on this branch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, this is only a backport
The emoji-data is also synchronized from main branch (by the backport part), I think it's fine to get it in 1.17. If there are some worries, we can revert it later. |
Recently, the images used by Gitea's drone pipeline were upgraded to Go 1.19.x
It causes the lint fails because Go 1.19 uses new code format.
This PR partially backport #20758 (including the emoji-data sync), partially fix the format manually.