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
Merge remote-tracking branch 'origin/main' into rmapi
* origin/main: (35 commits)
Remove fomantic button module (go-gitea#30475)
Improve "must-change-password" logic and document (go-gitea#30472)
Fix commitstatus summary (go-gitea#30431)
Remove fomantic menu module (go-gitea#30325)
Use `flex-container` for dashboard layout (go-gitea#30214)
Rewrite and restyle reaction selector and enable no-sizzle eslint rule (go-gitea#30453)
Pulse page improvements (go-gitea#30149)
Fix JS error when opening to expanded code comment (go-gitea#30463)
fix: Fix to delete cookie when AppSubURL is non-empty (go-gitea#30375)
Add `interface{}` to `any` replacement to `make fmt`, exclude `*.pb.go` (go-gitea#30461)
Fix network error when open/close organization/individual projects and redirect to project page (go-gitea#30387)
Avoid losing token when updating mirror settings (go-gitea#30429)
Fix label rendering (go-gitea#30456)
Add comment for ContainsRedirectURI about the exact match (go-gitea#30457)
Update JS and PY deps, lock eslint and related plugins (go-gitea#30452)
Refactor cache and disable go-chi cache (go-gitea#30417)
Fix admin notice view-detail (go-gitea#30450)
Fix mirror error when mirror repo is empty (go-gitea#30432)
Add `/public/assets/img/webpack` to ignore files again (go-gitea#30451)
Lock a few tool dependencies to major versions (go-gitea#30439)
...
returnfmt.Errorf("Password is not long enough. Needs to be at least %d", setting.MinPasswordLength)
68
+
returnfmt.Errorf("password is not long enough, needs to be at least %d characters", setting.MinPasswordLength)
73
69
caseerrors.Is(err, password.ErrComplexity):
74
-
returnerrors.New("Password does not meet complexity requirements")
70
+
returnerrors.New("password does not meet complexity requirements")
75
71
caseerrors.Is(err, password.ErrIsPwned):
76
-
returnerrors.New("The password you chose is on a list of stolen passwords previously exposed in public data breaches. Please try again with a different password.\nFor more details, see https://haveibeenpwned.com/Passwords")
72
+
returnerrors.New("the password is in a list of stolen passwords previously exposed in public data breaches, please try again with a different password, to see more details: https://haveibeenpwned.com/Passwords")
0 commit comments