Prep release 09.05.0400. REL-09_05_0400
authorHiroshi Saito <hiroshi@winpg.jp>
Sat, 30 Jul 2016 13:27:37 +0000 (22:27 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Sat, 30 Jul 2016 13:27:37 +0000 (22:27 +0900)
configure.ac
docs/release.html
installer/productcodes.mak
version.h

index 9b88d4c56677ff4f15487ca9dc2cea6781a5569f..c19896f59096022025aa05cf4c6a5218f50c0389 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 09.05.0300, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 09.05.0400, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 7dc5e0aa19b4cfb8b5bd25a3bb81b7c4a3ff8909..2828e1ae9f275e62e37d79b0f41b216dd441c865 100644 (file)
@@ -9,6 +9,22 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="09.05.0400">psqlODBC 09.05.0400 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li><b>Enable COMMLOG and MYLOG button.</b><br /></li>
+<li><b>Default of *level of rollback on errors* is default(statement) not transaction.</b><br /></li>
+<li><b>Fix the bug SQLGetDescFieldW or SQLColAttributeW mistakenly returns SQL_ERROR.</b><br /></li>
+<li><b>Move src/*.exe to exe/*.exe on Windows.</b><br /></li>
+Also use fc command instead of diff command on Windows. Fix a compilation error in large-object-data-at-exec-test.c regarding a type declaration in the middle of a code block.<br />
+Patch by Michael Paquier.
+<li><b>Ignore the difference between CR LF, LF and CR line break when comparing expected and result output.</b><br /></li>
+<li><b>Prior to Visual Studio 2015 Update 3, the hook functions of type PfnDliHook __pfnDliNotifyHook2 and __pfnDliFailureHook2 were non-const.</b><br /></li>
+They were made const to improve security (global, writable function pointers are bad).  If for backwards compatibility you require the hooks to be writable, define the macro DELAYIMP_INSECURE_WRITABLE_HOOKS prior to including this header and provide your own non-const definition of the hooks.<br />
+The following infomation is from Dave Cramer(davecramer@gmail.com).
+<li><b>Fix a regression test some failures.</b><br /></li>
+</ol><br />
+
 <h2><a id="09.05.0300">psqlODBC 09.05.0300 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 0f0f3fcf06195e3398b4609244baf91fb4deffb4..bca5351d275ae071263a2cba9b071bdeada6b278 100644 (file)
@@ -22,6 +22,9 @@ SUBLOC=0905
 !ELSE IF "$(POSTGRESDRIVERVERSION)" == "09.05.0300"
 PRODUCTCODE="6621B0BF-1017-4b6d-AB9A-C1F9CFF092C8"
 SUBLOC=0905
+!ELSE IF "$(POSTGRESDRIVERVERSION)" == "09.05.0400"
+PRODUCTCODE="B047E4C0-B2C9-44DE-B125-6A4DEEFD26CD"
+SUBLOC=0905
 !ELSE
 !MESSAGE Driver version $(POSTGRESDRIVERVERSION) is not listed in productcodes.mak
 EXIT
index 82c0674010d76439ef83f0f2557f61c68c1a87c9..d802d7c22b4106491be76bf70b7c59f4108f8e84 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "09.05.0300"
+#define POSTGRESDRIVERVERSION      "09.05.0400"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     9,5,03,00
+#define PG_DRVFILE_VERSION     9,5,04,00
 #endif
 
 #endif