Skip to content

Commit d81c379

Browse files
grdsdevclaude
andcommitted
chore(auth): upgrade GoTrue to v2.180.0 and enable OAuth server
- Upgrade all GoTrue containers from v2.178.0/v2.169.0 to v2.180.0 - Enable OAuth 2.1 server on autoconfirm container for testing - Add GOTRUE_OAUTH_SERVER_ENABLED and GOTRUE_OAUTH_SERVER_ALLOW_DYNAMIC_REGISTRATION 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent b48c6ff commit d81c379

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/auth/infra/docker-compose.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: auth-tests
33
services:
44
gotrue: # Signup enabled, autoconfirm off
5-
image: supabase/auth:v2.178.0
5+
image: supabase/auth:v2.180.0
66
ports:
77
- '9999:9999'
88
environment:
@@ -42,7 +42,7 @@ services:
4242
- db
4343
restart: on-failure
4444
autoconfirm: # Signup enabled, autoconfirm on
45-
image: supabase/auth:v2.178.0
45+
image: supabase/auth:v2.180.0
4646
ports:
4747
- '9998:9998'
4848
environment:
@@ -68,11 +68,13 @@ services:
6868
GOTRUE_SMTP_PASS: GOTRUE_SMTP_PASS
6969
GOTRUE_SMTP_ADMIN_EMAIL: [email protected]
7070
GOTRUE_COOKIE_KEY: 'sb'
71+
GOTRUE_OAUTH_SERVER_ENABLED: 'true'
72+
GOTRUE_OAUTH_SERVER_ALLOW_DYNAMIC_REGISTRATION: 'true'
7173
depends_on:
7274
- db
7375
restart: on-failure
7476
autoconfirm_with_asymmetric_keys: # Signup enabled, autoconfirm on
75-
image: supabase/auth:v2.169.0
77+
image: supabase/auth:v2.180.0
7678
ports:
7779
- '9996:9996'
7880
environment:
@@ -102,7 +104,7 @@ services:
102104
- db
103105
restart: on-failure
104106
disabled: # Signup disabled
105-
image: supabase/auth:v2.178.0
107+
image: supabase/auth:v2.180.0
106108
ports:
107109
- '9997:9997'
108110
environment:

0 commit comments

Comments
 (0)