Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[2.2.0] - 2026-08-04
🪄 Added
- The
BgDropBlueConnectionsconfiguration parameter for the Blue/Green Deployment Plugin, which drops all tracked connections to the blue cluster when a Blue/Green switchover starts, so that applications fail fast and reconnect through the plugin's routing instead of holding connections to hosts that are being switched over (PR #332).
Note
BgDropBlueConnections defaults to true, so existing applications using the Blue/Green Deployment Plugin will start dropping blue connections at the beginning of a switchover after upgrading. Set BgDropBlueConnections=false in the connection string to keep the previous behavior.
🦀 Changed
- The PostgreSQL dialect queries are now fully qualified: functions, operators, and type casts are schema-qualified against
pg_catalog(for exampleLIKEis expressed asOPERATOR(pg_catalog.~~)and::regprocas::pg_catalog.regproc) (PR #333).