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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
14
14
-**pg**: `WithMaxConnLifetimeJitter` option to smear connection recycle events and avoid synchronized reconnect storms. Defaults to 5 minutes; pass `0` to disable.
15
15
-**pg**: `WithHealthCheckPeriod` option to tune how often the pool checks idle connections and enforces MinConns/MaxConnIdleTime/MaxConnLifetime. A zero value leaves the pgx default (1 minute) in place.
16
+
-**pg**: `WithApplicationName` option to set the PostgreSQL `application_name` runtime parameter, surfacing the client in `pg_stat_activity`, `pg_stat_statements`, server logs, and `pg_locks` for easier incident attribution.
17
+
18
+
### Changed
19
+
20
+
-**pg**: TLS configurations produced by `WithTLS` and `WithUnsecureTLS` now enable a client session cache, allowing reconnects to resume previous TLS sessions and skip the full handshake. Reduces tail latency on `pgxpool_acquire_duration_seconds` for WAN-reached databases.
0 commit comments