Skip to content

AWS Advanced .NET Data Provider Wrapper - v2.2.0

Latest

Choose a tag to compare

@github-actions github-actions released this 05 Aug 00:27

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 BgDropBlueConnections configuration 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 example LIKE is expressed as OPERATOR(pg_catalog.~~) and ::regproc as ::pg_catalog.regproc) (PR #333).