v1.0.2
Fixed
- PostgreSQL: creating a forward rule failed with
database error. The
owner-scope ownership guard inreplace_rule_targetsdecoded aSELECT 1
literal asi64. PostgreSQL types integer literals asINT4, so sqlx
rejected theINT8/INT4mismatch. SQLite's dynamic typing masked the bug,
so it only affected PostgreSQL deployments. Now decoded asi32.