From 43a6061f4f87df1715114ac7863b42864d1b0491 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 2 Jul 2026 09:56:23 -0400 Subject: [PATCH] release version 18.00.0002 --- configure.ac | 2 +- docs/release.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++ version.h | 4 ++-- 3 files changed, 58 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 16964c08..31d65307 100644 --- a/configure.ac +++ b/configure.ac @@ -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 diff --git a/docs/release.html b/docs/release.html index 8666ddaa..c4b9c454 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,61 @@

psqlODBC release notes


+
    +

    psqlODBC 18.00.0002 Release

    + Changes:
    +
  1. + Use signed type for error status (#193) +
  2. +
  3. + Redact sensitive connection parameters in driver logs +
  4. +
  5. + Fix double-free / heap corruption during SQLDisconnect cleanup (#189, #190) +
  6. +
  7. + Clear PGresults from per-query rollback (#188) +
  8. +
  9. + Validate UTF-16 surrogate pairs before combining (#187) +
  10. +
  11. + Pass SQLSetDescRec field values correctly (#186) +
  12. +
  13. + Avoid reading before leading string literals (#185) +
  14. +
  15. + Detach freed app descriptors from statements (#183) +
  16. +
  17. + Reject invalid SQLPutData lengths (#182) +
  18. +
  19. + Reject overlong cursor names (#178) +
  20. +
  21. + Fix version reporting (#181) +
  22. +
  23. + Handle ARD bookmark allocation failure (#179) +
  24. +
  25. + Validate percent escapes before decoding (#175) +
  26. +
  27. + Avoid reading past conn_settings end (#176) +
  28. +
  29. + Fix stack buffer overflow in getPrecisionPart() (#173, #174) +
  30. +
  31. + Fix SQLPrimaryKeys to exclude INCLUDE columns from results (#171) +
  32. +
  33. + Use openssl 3.5.5 (#169) +
  34. +

    psqlODBC 18.00.0001 Release

    Changes:
    diff --git a/version.h b/version.h index 0ba41610..7c601ccb 100644 --- a/version.h +++ b/version.h @@ -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