gitea

Development moved to Codeberg

Commits at 77e9346342ccea20157412820b08204f122f262f

  1. 77e93463 Fix duplicate entry error when add team member (#19702) zuzuviewer authored at GitHub comitted at
  2. b135313c [Refactor] convert team(s) to apiTeam(s) (#13745) * Refactor: teams to api convert * make org load optional * more info in tests 6543 authored at GitHub comitted at
  3. 61f93935 Use a better OlderThan for DeleteInactiveUsers (#19693) * Use a better OlderThan for DeleteInactiveUsers - Currently the OlderThan is zero, for instances that enable or run this task this could actually delete just new users that still need to confirm their email. This patch fixes that by setting the default to the `ActiveCodeLives` setting, which corresponds to the amount of time that a user can active their account, thus avoiding the issue of deleting unactivated email users. * Use correct duration Gusted authored at GitHub comitted at
  4. cafa2dcb [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  5. e45738e3 Introduce eslint-plugin-jquery (#19690) Introduce the plugin that allows us to gradually forbid jQuery code. I've enabled all rules that already pass. Next step will be to go through each rule and fix the issues by using native DOM equivalents, which I think can be done in separate PRs, but if prefered I could also start here. silverwind authored at GitHub comitted at
  6. 368baf9e Use Vue to refactor pull merge UI (#19650) * Use Vue to refactor pull merge UI * add comments * fix comments * small fine tune * fix tests * adopt new pull default messages * clean up Co-authored-by: 6543 <6543@obermui.de> wxiaoguang authored at GitHub comitted at
  7. d985dcc9 [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  8. ea38e90e Fix oauth setting list bug (#19682) Lunny Xiao authored at GitHub comitted at
  9. f41c2bec Delete user related oauth stuff on user deletion too (#19677) * delete user related oauth stuff on user deletion too * extend doctor check-db-consistency 6543 authored at GitHub comitted at
  10. cbd45471 Move access and repo permission to models/perm/access (#19350) * Move access and repo permission to models/perm/access * Remove unnecessary code Lunny Xiao authored at GitHub comitted at
  11. 8e8e936a Tidy up `<head>` template (#19678) Neiter `<meta>` nor `<link>` require a closing slash at the end in HTML, remove it. silverwind authored at GitHub comitted at
  12. 318f3602 Update go tool dependencies (#19676) * Update go tool dependencies Updated all tool dependencies to latest tags, hoping CI will like it. * fix new lint errors * handle more strings.Title cases * remove lint skip silverwind authored at GitHub comitted at
  13. 3c658dff Update JS dependencies (#19675) * Update JS dependencies - Update all JS dependencies minus vue and vue-loader - Adapt to jest 28 - Add new eslint rules - Tested Mermaid and Swagger-UI * switch to @happy-dom/jest-environment for faster tests * bump eslint env to es2022 silverwind authored at GitHub comitted at
  14. 9d0253a9 Use better message for consistency check (#19672) - Don't log the reflect struct, but instead log the ID of the struct. This improves the error message, as you would actually know which row is the error. Gusted authored at GitHub comitted at
  15. 64a40962 Fix new release from tags list UI (#19670) Lunny Xiao authored at GitHub comitted at
  16. 65ccff54 Update go deps (#19665) * update gitea.com/go-chi/binding * update github.com/42wim/sshsig * update github.com/PuerkitoBio/goquery * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/duo-labs/webauthn * update github.com/editorconfig/editorconfig-core-go/v2 * update github.com/emirpasic/gods * update github.com/gliderlabs/ssh * update github.com/go-chi/cors * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-git/v5 * update github.com/go-ldap/ldap/v3 * update github.com/golang-jwt/jwt/v4 * update github.com/google/pprof * update github.com/klauspost/compress * update github.com/lib/pq * update github.com/markbates/goth * update github.com/minio/minio-go/v7 * update github.com/olivere/elastic/v7 * update github.com/unrolled/render * update github.com/urfave/cli * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * adopt breaking changes of certmagic 6543 authored at GitHub comitted at
  17. 443675d1 [doctor] Add check/fix for bogus action rows (#19656) Signed-off-by: Loïc Dachary <loic@dachary.org> Co-authored-by: Loïc Dachary <loic@dachary.org> singuliere authored at GitHub comitted at
  18. 9fc194d2 [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  19. 7e19200e Add tooltip to pending PR comments (#19662) Jack Hay authored at GitHub comitted at
  20. 3da9dafc Add Webfinger endpoint (#19462) This adds the [Webfinger](https://webfinger.net/) endpoint for federation. Supported schemes are `acct` and `mailto`. The profile and avatar url are returned as metadata. KN4CK3R authored at GitHub comitted at
  21. a61a47f9 Update documentation to disable duration settings with -1 instead of 0 (#19647) To turn off the notification endpoint polling, the value should be set to -1, not 0. Jimmy Praet authored at GitHub comitted at
  22. 9f5ddca5 Set the LastModified header for raw files (#18356) Although the use of LastModified dates for caching of git objects should be discouraged (as it is not native to git - and there are a LOT of ways this could be incorrect) - LastModified dates can be a helpful somewhat more human way of caching for simple cases. This PR adds this header and handles the If-Modified-Since header to the /raw/ routes. Fix #18354 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> zeripath authored at GitHub comitted at
  23. e435283c Don't select join table's columns (#19660) * Don't select join table * Add comment Lunny Xiao authored at GitHub comitted at
  24. cd99540c [skip ci] Updated translations via Crowdin GiteaBot authored at GiteaBot comitted at
  25. a9ca4b41 Calculate filename hash only once (#19654) * Calculate hash only once. * remove unused Sha1 template helper function, use ctx.Data["FileNameHash"] * fix unit tests KN4CK3R authored at GitHub comitted at
  26. 9efa4713 Admin should not delete himself (#19423) Admin should not be able to delete themselves. Also partially fix #15449 Lunny Xiao authored at GitHub comitted at
  27. 290cc884 Restore reviewed-on message (#19657) Regression from #18177 Lunny Xiao authored at GitHub comitted at
  28. 4ca1d754 Move some helper files out of models (#19355) * Move some helper files out of models * Some improvements Co-authored-by: delvh <dev.lh@web.de> Lunny Xiao authored at GitHub comitted at
  29. d4834071 Repository level enable package or disable (#19323) Lunny Xiao authored at GitHub comitted at
  30. 6a969681 Delete related PullAutoMerge and ReviewState on User/Repo Deletion (#19649) * delete pullautomerges on repo/user deletion * delete reviewstates on repo/user deletion * optimize automerhe code * add index to reviewstate 6543 authored at GitHub comitted at