gitea

Development moved to Codeberg

Commits at 0dfc2e55ea258d2b1a3cd86e2b6f27a481e495ff

  1. 0dfc2e55 [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  2. ebe569a2 Set correct PR status on 3way on conflict checking (#19457) * Set correct PR status on 3way on conflict checking - When 3-way merge is enabled for conflict checking, it has a new interesting behavior that it doesn't return any error when it found a conflict, so we change the condition to not check for the error, but instead check if conflictedfiles is populated, this fixes a issue whereby PR status wasn't correctly on conflicted PR's. - Refactor the mergeable property(which was incorrectly set and lead me this bug) to be more maintainable. - Add a dedicated test for conflicting checking, so it should prevent future issues with this. * Fix linter Gusted authored at GitHub comitted at
  3. 3ec1b6c2 Fix logging of Transfer API (#19456) - Use the correct fullname's in tracing calls. - Return correct function name in error. Co-authored-by: 6543 <6543@obermui.de> Gusted authored at GitHub comitted at
  4. c7643556 RepoAssignment ensure to close before overwrite (#19449) * check if GitRepo already open and close if * only run RepoAssignment once * refactor context helper for api to open GitRepo 6543 authored at GitHub comitted at
  5. 225044e6 node12 is EOL (#19451) * node12 is EOL * fix lockfile techknowlogick authored at GitHub comitted at
  6. 725731cb Add Changelog v1.16.6 (#19339) (#19450) * Add Changelog v1.16.6 (#19339) Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net> * bump version Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net> 6543 authored at GitHub comitted at
  7. f4c1aa75 Fix DELETE request for non-existent public key (#19443) - Add a return for the first "block" of errors, which fixes the double error messages. - Add a return for `externallyManaged`. - Resolves #19398 Gusted authored at GitHub comitted at
  8. f7a8e5c8 [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  9. 23d37673 Don't panic on `ErrEmailInvalid` (#19441) - Don't panic on `ErrEmailInvalid`, this was caused due that we were trying to force `ErrEmailCharIsNotSupported` interface, which panics. - Resolves #19397 Gusted authored at GitHub comitted at
  10. 1e319ba4 When dumping trim the standard suffices instead of a random suffix (#19440) * When dumping trim the standard suffices instead of a random suffix Instead of using the `path.Ext()` to trim the last "extension" suffix, just iterate through the supported suffices and trim those. Fix #19424 Signed-off-by: Andrew Thornton <art27@cantab.net> * fix enum with to have correct supported types only Co-authored-by: 6543 <6543@obermui.de> zeripath authored at GitHub comitted at
  11. a7f0ce62 Add uploadpack.allowAnySHA1InWant to allow --filter=blob:none with older git clients (#19430) Older git clients need uploadpack.allowAnySHA1InWant if partial cloning is allowed. Fix #19118 Signed-off-by: Andrew Thornton <art27@cantab.net> zeripath authored at GitHub comitted at
  12. 5e68fe7d Don't allow merging PR's which are being conflict checked (#19357) * Don't allow merging PR's which are being conflict checked - When a PR is still being conflict checked, don't allow the PR to be merged(the merge button could already be visible before e.g. a new commit was pushed to the PR). - Relevant(should prevent such issue from happening) #19352 Co-authored-by: delvh <dev.lh@web.de> Gusted authored at GitHub comitted at
  13. f2229e05 doc: add brief intro on using traefik as reverse-proxy (#19432) Campbell He authored at GitHub comitted at
  14. ae6a5244 Fix panic in team repos API (#19431) * Fix panic in team repos API * Fix pagination * fmt qwerty287 authored at GitHub comitted at
  15. 409ff55a When updating mirror repo intervals by API reschedule next update too (#19429) When a mirror repo interval is updated by the UI it is rescheduled with that interval however the API does not do this. The API also lacks the enable_prune option. This PR adds this functionality in to the API Edit Repo endpoint. Signed-off-by: Andrew Thornton <art27@cantab.net> zeripath authored at GitHub comitted at
  16. a56fcdfa Fix nil error when some pages are rendered outside request context (#19427) wxiaoguang authored at GitHub comitted at
  17. 18727df7 Add Helm Chart registry (#19406) KN4CK3R authored at GitHub comitted at
  18. b74322df [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  19. 490065b9 [skip ci] Updated licenses and gitignores GiteaBot authored at GiteaBot comitted at
  20. 695c4b4b upgrade postgres refrence to 14 (#19416) Stephen J. Fuhry authored at GitHub comitted at
  21. deffe9e5 Fix datarace in gitea_uploader.go (#19409) chavacava authored at GitHub comitted at
  22. 9053096f Fix double blob-hunk (#19404) - Don't show the blob-hunk twice. Gusted authored at GitHub comitted at
  23. b8911fb4 Use a struct as test options (#19393) * Use a struct as test options * Fix name * Fix test Lunny Xiao authored at GitHub comitted at
  24. 4dabc212 Disallow selecting the text of buttons (#19330) Introduce a CSS class `.unselectable` delvh authored at GitHub comitted at
  25. 3255ba93 [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  26. 4396d0e7 Note where frontend files are located in docs (#19379) Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> ktprograms authored at GitHub comitted at
  27. f029b9ae Document 409 error returned by repos/migrate api (#19376) * Document 409 error returned by repos/migrate api * Generate swagger spec Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Chongyi Zheng authored at GitHub comitted at
  28. 0d3d9675 Fix middleware function's placements for some `/user/...` (#19377) - Add reqSignIn to `/user/task/{task}` as it specific to a logged in user currently not-logged in user could cause a NPE. - Move `/user/stopwatch` & `/user/search` middleware before the actual function is called, because functions are executed in order and currently hadn't any effect and could as well cause a NPE due to that. - Remove `/user/active` reqSignIn middleware, because when you want to active a account you're not "signed in" so it doesn't make sense to add that middleware. Gusted authored at GitHub comitted at
  29. d139c239 Fix panic in teams API when requesting members (#19360) delvh authored at GitHub comitted at
  30. ee769f74 Add logic to switch between source/rendered on Markdown (#19356) Adds a button to switch between the source blob and the rendered markdown. Gusted authored at GitHub comitted at