From 74cb4b9f5f6928315a992a8deed469687f7f9681 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 10 Sep 2026 11:29:34 -0400 Subject: [PATCH] release version 18.00.0003 --- configure.ac | 2 +- docs/release.html | 33 +++++++++++++++++++++++++++++++++ version.h | 4 ++-- 3 files changed, 36 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 31d65307..9e151744 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.0002, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 18.00.0003, [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 c4b9c454..89b4accb 100644 --- a/docs/release.html +++ b/docs/release.html @@ -10,6 +10,39 @@

psqlODBC release notes


    +

    psqlODBC 18.00.0003 Release

    + Changes:
    +
  1. + Report SQLSTATE 22003 for out-of-range integer conversions instead of silently returning the wrapped low bits (#207, #210, #211) +
  2. +
  3. + Fix statement-level rollback (Protocol=7.4-2) discarding the whole transaction on a syntax error (#203, #204) +
  4. +
  5. + Don't wrap internal queries in a savepoint at rollback-on-error level 0 (Protocol=7.4-0), which lost transactions on servers without SAVEPOINT support (#208, #209) +
  6. +
  7. + Redact the database password (ODBC PWD and libpq pqopt password) in debug logs (#206) +
  8. +
  9. + Fix hang on COPY ... FROM STDIN / TO STDOUT: report it as unsupported and keep the connection usable (#202) +
  10. +
  11. + Fix 'infinity'/'-infinity' dates silently returned as today's date (#199) +
  12. +
  13. + Document connection string escaping rules (#140, #197) +
  14. +
  15. + Resolve Visual Studio 2026 (v18) build issues and circular dependencies (#201) +
  16. +
  17. + Add Windows on Arm (ARM64) CI build and regression testing (#196) +
  18. +
  19. + Build Windows OpenSSL 3.5.8 in CI (#205) +
  20. +

    psqlODBC 18.00.0002 Release

    Changes:
  21. diff --git a/version.h b/version.h index 7c601ccb..9d560a33 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.0002" +#define POSTGRESDRIVERVERSION "18.00.0003" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 18,0,00,02 +#define PG_DRVFILE_VERSION 18,0,00,03 #endif #endif