Prep release 09.06.0410 REL-09_06_0410
authorHiroshi Saito <hiroshi@winpg.jp>
Thu, 27 Jul 2017 13:51:53 +0000 (22:51 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Thu, 27 Jul 2017 13:51:53 +0000 (22:51 +0900)
configure.ac
docs/release.html
version.h

index fa1325fa961a7bafd456786c4e9b7637c2f411e8..dfd3d405ec11231d6fd11f1a6bd09e17c36b4f37 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 09.06.0400, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 09.06.0410, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 291203f9d28b464be039a7fd29ad60124b34e366..f318d3f5efa2b524712c9267c185a81089f5d159 100644 (file)
@@ -9,6 +9,17 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="09.06.0410">psqlODBC 09.06.0410 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Fix buffer truncations. The truncations occured when concatenating 'RELEASE xxxx...;' and 'SAVEPOINT xxxx....'.</li>
+Per reported by Pavel Raiskup.
+<li>Correct the behavior of snprintfcat() on Windows using posix_vsnprintf() instead of _vsnprintf().</li>
+<li>Handle StrLen_or_IndPtr argument of SQLBindParameter() properly when StrLen_or_IndPtr doesn't point to SQL_NTS and conversions between SQLWCHAR and SQLCHAR occur.</li>
+This change fixes MSACCESS errors reported by Christian Ullrich and Robert Ball.
+<li>Make quote_table() and ti_quote() thread safe.This change fixes "relation does not exist".</li>
+Per report and patch by Scott Beil.
+</ol><br />
 <h2><a id="09.06.0400">psqlODBC 09.06.0400 Release</a></h2>
 Changes:<br />
 <ol type="1">
index f2186f040aed23f4169074d8732a530147c74f1d..7bb45a70700b3581f3582fdb3f2395e9ec585ab5 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "09.06.0400"
+#define POSTGRESDRIVERVERSION      "09.06.0410"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     9,6,04,00
+#define PG_DRVFILE_VERSION     9,6,04,10
 #endif
 
 #endif