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
* giteaofficial/main: (21 commits)
Prevent intermittent race in attribute reader close (go-gitea#19537)
Make repository file list useable on mobile (go-gitea#19515)
Update image URL for Discord webhook (go-gitea#19536)
[skip ci] Updated translations via Crowdin
Fix 64-bit atomic operations on 32-bit machines (go-gitea#19531)
Fix `upgrade.sh` script error with `su -c` (go-gitea#19483)
When view _Siderbar or _Footer, just display once (go-gitea#19501)
Fix migrate release from github (go-gitea#19510)
Prevent dangling archiver goroutine (go-gitea#19516)
Don't let repo clone URL overflow (go-gitea#19517)
Add commit status popup to issuelist (go-gitea#19375)
Disable unnecessary GitHooks elements (go-gitea#18485)
Disable unnecessary GitHooks elements
Improve dashboard's repo list performance (go-gitea#18963)
By default force vertical tabs on mobile (go-gitea#19486)
Refactor readme file renderer (go-gitea#19502)
Allow package dump skipping (go-gitea#19506)
Unset git author/committer variables when running integration tests (go-gitea#19512)
Allow commit status popup on /pulls page (go-gitea#19507)
Use router param for filepath in GetRawFile (go-gitea#19499)
...
Copy file name to clipboardExpand all lines: custom/conf/app.example.ini
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -398,6 +398,7 @@ INTERNAL_TOKEN=
398
398
;; By modifying the Gitea database, users can gain Gitea administrator privileges.
399
399
;; It also enables them to access other resources available to the user on the operating system that is running the Gitea instance and perform arbitrary actions in the name of the Gitea OS user.
400
400
;; WARNING: This maybe harmful to you website or your operating system.
401
+
;; WARNING: Setting this to true does not change existing hooks in git repos; adjust it before if necessary.
Copy file name to clipboardExpand all lines: docs/content/doc/advanced/config-cheat-sheet.en-us.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -497,6 +497,7 @@ Certain queues have defaults that override the defaults set in `[queue]` (this o
497
497
It also enables them to access other resources available to the user on the operating system that is running the
498
498
Gitea instance and perform arbitrary actions in the name of the Gitea OS user.
499
499
This maybe harmful to you website or your operating system.
500
+
Setting this to true does not change existing hooks in git repos; adjust it before if necessary.
500
501
-`DISABLE_WEBHOOKS`: **false**: Set to `true` to disable webhooks feature.
501
502
-`ONLY_ALLOW_PUSH_IF_GITEA_ENVIRONMENT_SET`: **true**: Set to `false` to allow local users to push to gitea-repositories without setting up the Gitea environment. This is not recommended and if you want local users to push to Gitea repositories you should set the environment appropriately.
502
503
-`IMPORT_LOCAL_PATHS`: **false**: Set to `false` to prevent all users (including admin) from importing local path on server.
Copy file name to clipboardExpand all lines: docs/content/doc/installation/with-docker.fr-fr.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Vous devriez avoir une instance fonctionnelle de Gitea. Pour accèder à l'inter
43
43
44
44
## Named Volumes
45
45
46
-
Ce guide aboutira à une installation avec les données Gita et PostgreSQL stockées dans des volumes nommés. Cela permet une sauvegarde, une restauration et des mises à niveau en toute simplicité.
46
+
Ce guide aboutira à une installation avec les données Gitea et PostgreSQL stockées dans des volumes nommés. Cela permet une sauvegarde, une restauration et des mises à niveau en toute simplicité.
Copy file name to clipboardExpand all lines: models/migrations/migrations.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -460,7 +460,7 @@ Please try upgrading to a lower version first (suggested v1.6.4), then upgrade t
460
460
461
461
// Downgrading Gitea's database version not supported
462
462
ifint(v-minDBVersion) >len(migrations) {
463
-
msg:=fmt.Sprintf("Your database (migration version: %d) is for a newer Gita, you can not use the newer database for this old Gitea release (%d).", v, minDBVersion+len(migrations))
463
+
msg:=fmt.Sprintf("Your database (migration version: %d) is for a newer Gitea, you can not use the newer database for this old Gitea release (%d).", v, minDBVersion+len(migrations))
464
464
msg+="\nGitea will exit to keep your database safe and unchanged. Please use the correct Gitea release, do not change the migration version manually (incorrect manual operation may lose data)."
465
465
if!setting.IsProd {
466
466
msg+=fmt.Sprintf("\nIf you are in development and really know what you're doing, you can force changing the migration version by executing: UPDATE version SET version=%d WHERE id=1;", minDBVersion+len(migrations))
iferr!=nil&&// If there is an error we need to return but:
207
197
c.ctx.Err() !=err&&// 1. Ignore the context error if the context is cancelled or exceeds the deadline (RunWithContext could return c.ctx.Err() which is Canceled or DeadlineExceeded)
0 commit comments