Skip to content

Commit 0a48cb6

Browse files
emmaling27Convex, Inc.
authored andcommitted
[self-hosted] Release 86ae5d3 (#34489)
GitOrigin-RevId: 18da5f7551c3906d82d6d9181e2bf758cd4d3845
1 parent d0d52c4 commit 0a48cb6

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

self-hosted/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ Different versions are not guaranteed to be compatible with one another.
1010
Follow the instructions in the [README](README.md#software-upgrades) to upgrade
1111
your self-hosted backend and dashboard.
1212

13+
## 2025-02-19 `86ae5d34c8164075b66fa0c52beabd19212d8df7`
14+
15+
- Fix bug in MySQL where certificates were not verified upon connection. Now,
16+
you must set `DO_NOT_REQUIRE_SSL` for running locally.
17+
1318
## 2025-02-19 `663640f5a01018914dc4314145f23a31f3afdca6`
1419

1520
- Add support for MySQL! The `DATABASE_URL` env variable is now `POSTGRES_URL`

self-hosted/docker/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
backend:
3-
image: ghcr.io/get-convex/convex-backend:663640f5a01018914dc4314145f23a31f3afdca6
3+
image: ghcr.io/get-convex/convex-backend:86ae5d34c8164075b66fa0c52beabd19212d8df7
44
ports:
55
- "${PORT:-3210}:3210"
66
- "${SITE_PROXY_PORT:-3211}:3211"
@@ -24,10 +24,10 @@ services:
2424
healthcheck:
2525
test: curl -f http://localhost:3210/version
2626
interval: 5s
27-
start_period: 5s
27+
start_period: 10s
2828

2929
dashboard:
30-
image: ghcr.io/get-convex/convex-dashboard:663640f5a01018914dc4314145f23a31f3afdca6
30+
image: ghcr.io/get-convex/convex-dashboard:86ae5d34c8164075b66fa0c52beabd19212d8df7
3131
ports:
3232
- "${DASHBOARD_PORT:-6791}:6791"
3333
environment:

self-hosted/fly/backend/fly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ app = 'convex-backend'
77
primary_region = 'iad'
88

99
[build]
10-
image = 'ghcr.io/get-convex/convex-backend:663640f5a01018914dc4314145f23a31f3afdca6'
10+
image = 'ghcr.io/get-convex/convex-backend:86ae5d34c8164075b66fa0c52beabd19212d8df7
1111
1212
[env]
1313
TMPDIR = '/convex/data/tmp'

self-hosted/fly/dashboard/fly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ app = 'convex-dashboard'
77
primary_region = 'iad'
88

99
[build]
10-
image = 'ghcr.io/get-convex/convex-dashboard:663640f5a01018914dc4314145f23a31f3afdca6'
10+
image = 'ghcr.io/get-convex/convex-dashboard:86ae5d34c8164075b66fa0c52beabd19212d8df7
1111
1212
[[services]]
1313
protocol = 'tcp'

0 commit comments

Comments
 (0)