Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(psqlodbc, 18.00.0001, [pgsql-odbc@postgresql.org])
AC_INIT(psqlodbc, 18.00.0002, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
Expand Down
55 changes: 55 additions & 0 deletions docs/release.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,61 @@

<h1>psqlODBC release notes</h1>
<hr>
<ol type="1">
<h2><a id="18.00.0002">psqlODBC 18.00.0002 Release</a></h2>
Changes:<br />
<li>
Use signed type for error status (#193)
</li>
<li>
Redact sensitive connection parameters in driver logs
</li>
<li>
Fix double-free / heap corruption during SQLDisconnect cleanup (#189, #190)
</li>
<li>
Clear PGresults from per-query rollback (#188)
</li>
<li>
Validate UTF-16 surrogate pairs before combining (#187)
</li>
<li>
Pass SQLSetDescRec field values correctly (#186)
</li>
<li>
Avoid reading before leading string literals (#185)
</li>
<li>
Detach freed app descriptors from statements (#183)
</li>
<li>
Reject invalid SQLPutData lengths (#182)
</li>
<li>
Reject overlong cursor names (#178)
</li>
<li>
Fix version reporting (#181)
</li>
<li>
Handle ARD bookmark allocation failure (#179)
</li>
<li>
Validate percent escapes before decoding (#175)
</li>
<li>
Avoid reading past conn_settings end (#176)
</li>
<li>
Fix stack buffer overflow in getPrecisionPart() (#173, #174)
</li>
<li>
Fix SQLPrimaryKeys to exclude INCLUDE columns from results (#171)
</li>
<li>
Use openssl 3.5.5 (#169)
</li>
</ol>
<ol type="1">
<h2><a id="18.00.0001">psqlODBC 18.00.0001 Release</a></h2>
Changes:<br />
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
#define POSTGRESDRIVERVERSION "18.00.0001"
#define POSTGRESDRIVERVERSION "18.00.0002"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
#define PG_DRVFILE_VERSION 18,0,00,01
#define PG_DRVFILE_VERSION 18,0,00,02
#endif

#endif
Loading