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
[fix] Personal access token name fix
Until now a random string was generated as a personal access token name
in the schema upgrade script that copies auth session tokens to the
personal_access_tokens table. In rare cases the random generator could
return the same random string twice. For this reason in PostgreSQL an
incremental integer is used instead of the random name.
Until now all auth session tokens became a personal access token. From
now only the "can_expire = false" tokens become personal access tokens.