143008: JDBC connection proxy: don't keep pending statements if they are closed
Our connection proxy keeps a list of pending statements so they can be closed automatically when needed. By default, this would also include statements that are already closed by the application. This causes needless memory usage overhead, and has now been fixed: statements that were closed by the application are purged from the list of pending statements.
Upgrade to this version if you have memory problems due to long transactions with many JDBC statements.
WARNING: do NOT upgrade if your JDBC driver is not JDBC 4 compliant.