Prep Release 13.02.0000. REL-13_02_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Wed, 22 Sep 2021 09:59:47 +0000 (18:59 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Wed, 22 Sep 2021 09:59:47 +0000 (18:59 +0900)
configure.ac
docs/release.html
readme.txt
version.h

index 409487ea25ca8f6843b14c14d8a6a1a8b08ea0c9..7f79563a85397ffff2c4bc879894bfc95126a192 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 13.01.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 13.02.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 4c8944e58f497a45c7346d6269ef2d060e719f7a..3f2dbf95de4b5953c01fc8ff3c2803048d41fe58 100644 (file)
@@ -9,6 +9,27 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="13.02.0000">psqlODBC 13.02.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Fix a bug of CC_send_query_append() when the ignore_roundtrip_time flag is onRemove a mylog() call which is a dupilicate of the preceding MYLOG() macro call.</li>
+Also direct use of mylog() should be avoided because mylog() uses lots of CPU.
+<li>Noticed that the password field on the PostgreSQL Connection</li>
+dialog is always focused when empty, even when other fields that appear
+earlier on the dialog (and in the tab order) are empty. This is only a
+minor annoyance, but it does seem like it would be contrary to the
+expectation of most users.
+I would propose separating the conditional to inform the user that the
+password is required, but still focus the first empty field.
+<li>Remove REFCUR_SUPPORT, add FetchRefcursors setting</li>
+<li>Support fetching results from multiple refcursors</li>
+Multiple result sets are returned if multiple refcursors are found
+Works with both ODBC CALL and PostgreSQL CALL syntaxes
+Query must be executed in a transaction to avoid cursors being closed
+Now works when output parameters are present.
+<li>Named parameter binding support</li>
+<li>Use ODBC 3 column names for the result set of catalog functions.</li>
+</ol>
 <h2><a id="13.01.0000">psqlODBC 13.01.0000 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 277d9b3c8994083778e2b0c44075cb61fb0d7520..44fb68052d98f46072a7ec996d35b8aef38232b2 100644 (file)
@@ -5,7 +5,7 @@
 
 
   Copyright (C) 1998          Insight Distribution Systems
-  Copyright (C) 1998 - 2020   The PostgreSQL Global Development Group
+  Copyright (C) 1998 - 2021   The PostgreSQL Global Development Group
 
   Multibyte support was added by Sankyo Unyu Service, (C) 2001.
 
index 58449d146b3d44413674031b2b7dc99aaadd8518..92237b7d3c2fa2428f702d7a9b3c286bbd41c591 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "13.01.0000"
+#define POSTGRESDRIVERVERSION      "13.02.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     13,1,00,00
+#define PG_DRVFILE_VERSION     13,2,00,00
 #endif
 
 #endif