Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
471f94c
wip
Totodore May 5, 2025
da03dc8
feat(adapter/postgres): `Driver` wip
Totodore May 7, 2025
092e447
wip
Totodore Jun 22, 2025
25d607c
Merge remote-tracking branch 'origin/main' into postgres-adapter
Totodore Oct 10, 2025
818a306
wip
Totodore Feb 22, 2026
0017403
feat(adapter/postgre): wip
Totodore Mar 29, 2026
5e3b767
Merge remote-tracking branch 'origin/main' into postgres-adapter
Totodore Mar 29, 2026
7acdde2
feat(adapter/postgre): wip
Totodore Mar 29, 2026
db72426
feat(adapter/postgre): wip
Totodore Mar 29, 2026
3453a86
feat(adapter/postgre): wip
Totodore Mar 29, 2026
aa54305
feat(adapter/postgre): wip
Totodore Mar 29, 2026
8747992
feat(adapter/postgre): wip
Totodore Mar 29, 2026
0a36ade
feat(adapter/postgre): wip
Totodore Mar 29, 2026
d6fbb14
feat(adapter/postgre): add tests
Totodore Mar 29, 2026
d906918
Merge remote-tracking branch 'origin/main' into postgres-adapter
Totodore Apr 12, 2026
68bea2c
fix: fmt
Totodore Apr 12, 2026
128102c
fix: tests
Totodore Apr 12, 2026
e4001f2
feat: tokio postgres driver
Totodore Apr 12, 2026
117f103
fix: ci check featuree flag
Totodore Apr 12, 2026
ef327b8
fix: ci check featuree flag
Totodore Apr 12, 2026
838b433
Merge branch 'main' into postgres-adapter
Totodore Apr 17, 2026
2f0c33c
fix(adapter/postgres): minor fixes
Totodore Apr 18, 2026
67e1f5e
Merge remote-tracking branch 'origin/main' into postgres-adapter
Totodore Apr 18, 2026
a78ac92
feat(adapter/postgre): fix tokio postgre driver
Totodore Apr 18, 2026
bdc8bf0
docs(example): add postgres adapter examples
Totodore Apr 18, 2026
16bfddc
fix: remove dbg logging
Totodore Apr 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/adapter-ci/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,17 @@ services:
';
wait
"
postgres:
image: postgres:18-alpine
ports:
- 5432:5432
environment:
POSTGRES_DB: socketio
POSTGRES_PASSWORD: socketio
POSTGRES_USER: socketio
healthcheck:
test: "pg_isready -U socketio"
interval: 2s
timeout: 5s
retries: 5
3 changes: 2 additions & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ jobs:
-p socketioxide \
-p engineioxide \
-p socketioxide-redis \
-p socketioxide-mongodb
-p socketioxide-mongodb \
-p socketioxide-postgres
examples:
runs-on: ubuntu-latest
Expand Down
Loading
Loading