-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot log in after updated to the 1.39.1 #1583
Comments
Below here is my Nginx configuration: location ^~ / |
Me too. Here's the error in my log: |
I had similar error after updating to v1.39.1 - I was able to fix and restore all my data after executing the following commands on the postgres database: 1)
|
Thanks @nicolasluckie I checked the _prisma_migrations table and saw the same error. I just ran And restarted Umami to re-apply. I suppose creating pgcrypto should've been part of the migration. |
@nicolasluckie Thank you for the quick solution! It looks like gen_random_uuid() was added in postgres v13+ natively (https://pgpedia.info/g/gen_random_uuid-function.html) and I should have taken versions into consideration. |
I get this error:
|
Maybe you do not use the DB container but the application container. |
Reverting back to --- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,7 +2,7 @@
version: '3'
services:
umami:
- image: ghcr.io/umami-software/umami:postgresql-latest
+ image: ghcr.io/umami-software/umami:postgresql-v1.38.0
ports:
- "3000:3000"
environment: |
Root cause of issue appears to be centered around migration not running. We had a lot of fixes to apply to auth and migrations in 1.39.2. Should be fixed tonight. |
Fixed in v1.39.2. |
Hello, I cannot log in anymore after the update.
I got 500 error when post the credentials to the /auth/login
I am using Nginx and did not have that issue before
The text was updated successfully, but these errors were encountered: