From 84f59d16ab2217588648e20e1a773c16c3dcaead Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Mon, 5 Sep 2022 14:16:06 -0400 Subject: [PATCH] JDBC: rel notes correction JDBC: fix for rel note description --- .../42.5.0.1/01_jdbc_rel_notes/jdbc_42.5.0.1_rel_notes.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/product_docs/docs/jdbc_connector/42.5.0.1/01_jdbc_rel_notes/jdbc_42.5.0.1_rel_notes.mdx b/product_docs/docs/jdbc_connector/42.5.0.1/01_jdbc_rel_notes/jdbc_42.5.0.1_rel_notes.mdx index a9bf30b1fab..883c7c7603a 100644 --- a/product_docs/docs/jdbc_connector/42.5.0.1/01_jdbc_rel_notes/jdbc_42.5.0.1_rel_notes.mdx +++ b/product_docs/docs/jdbc_connector/42.5.0.1/01_jdbc_rel_notes/jdbc_42.5.0.1_rel_notes.mdx @@ -12,9 +12,10 @@ New features, enhancements, bug fixes, and other changes in the EDB JDBC Connect | Upstream Merge | Merged with the upstream community driver version 42.5.0. See the community [JDBC documentation](https://jdbc.postgresql.org/documentation/changelog.html#version_42.5.0) for details. | | Security Fix | CVE-2022-31197 - Fixes the SQL generated in PgResultSet.refresh() to escape column identifiers in order to prevent SQL injection. Previously, the column names for both key and data columns were copied as-is into the generated SQL. This allowed for a malicious table with column names that included a statment terminator to be parsed and executed as multiple separate commands. Also, this fix adds a new test class ResultSetRefreshTest to verify this change. | | Change | Migrated build to Gradle. | -| Enhancement | Added new `getServerName` connection property. If the value for `changeServerName` is set to `true`, it returns a value as `PostgreSQL`. The default value is `false`. | +| Enhancement | Added new `changeServerName` connection property. If the value for `changeServerName` is set to true, the `getServerName()` call returns a value as `PostgreSQL`. The default value is `false`. | Enhancement | Added new `forceBinaryTransfer` connection property. If the value is set to `true`, forces the transfer of all binary types from the PostgreSQL server to the JDBC driver in their binary form. The default value is `false`. | +