You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
✅ High Priority Fixes:
1. Rename variable to 'error_code' in encoder.rs (requested)
2. Use error display format instead of debug format (requested)
3. Update tokio-rustls to use ring backend for Windows compatibility (requested)
4. Remove println/eprintln from library code (requested)
5. Add bold authentication warning in README (requested)
✅ Medium Priority Improvements:
6. Implement proper pgwire AuthSource instead of custom startup handler (requested)
- Added DfAuthSource with proper LoginInfo handling
- Deprecated AuthStartupHandler in favor of standard pgwire auth
- Fixed compilation errors with proper type handling
✅ Low Priority Documentation:
7. Reference pgwire transaction example (requested)
- Added comment linking to official pgwire transaction.rs example
- Updated transaction responses to use TransactionStart/TransactionEnd
All feedback addressed! Ready for merge 🚀
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,8 @@ Listening on 127.0.0.1:5432 (unencrypted)
149
149
150
150
### Connect with psql
151
151
152
+
> **⚠️ IMPORTANT AUTHENTICATION NOTE**: Currently, the default authentication allows the `postgres` user to connect without a password for development convenience. For production deployments, use `DfAuthSource` with proper cleartext/md5/scram authentication instead of the deprecated `AuthStartupHandler`. See the auth.rs module for implementation details.
0 commit comments