From d254e20c09e5810c1d2b3e01707ac6e0d2597242 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Fri, 23 May 2025 11:31:12 -0400 Subject: [PATCH 1/2] update version and release notes --- configure.ac | 2 +- docs/release.html | 64 +++++++++++++++++++++++++++++++++++++++++++++++ version.h | 4 +-- 3 files changed, 67 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index f35c8258..1ad62f2d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(psqlodbc, 17.00.0004, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 17.00.0004qq, [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 25fc365e..23fc461e 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,70 @@

psqlODBC release notes


+
    +

    psqlODBC 17.00.0005 Release

    + Changes:
    +
  1. + Fix: Use memset if memset_s is not available PR #107 + Author: Favian (Ian) Samatha +
  2. +
  3. + Feature: Safe sscanf implementation PR #108 + Author: Colin +
  4. +
  5. + Fix: Don't assume output connection string has size MAX_CONNECT_STRING PR #106 + Author: Micah Baker +
  6. +
  7. + Security: Change memset to memset_s/SecureZeroMemory PR #105 + Author: Favian (Ian) Samatha +
  8. +
  9. + Security: Replace unsafe string-to-number conversions PR #103 + Author: Favian (Ian) Samatha +
  10. +
  11. + Build: Update main.yml to use wix version 6.0.0 PR #104 + Author: Dave Cramer +
  12. +
  13. + Fix: Fix possible use of uninitialized memory (Issue #99) PR #100 + Author: Dave Cramer +
  14. +
  15. + Fix: Change SpecialColumns to return correct information for unique indexes PR #97 + Author: Dave Cramer +
  16. +
  17. + UI: Update the font and layouts of all dialogs to improve their look and feel PR #91 + Author: Keith Wedinger +
  18. +
  19. + Security: Update OPENSSL to 3.3.3 + Author: Dave Cramer +
  20. +
  21. + Test: Test with just unique keys PR #87 + Author: Dave Cramer +
  22. +
  23. + Fix: Fix duplicate component codes PR #75 + Author: Christian Ullrich +
  24. +
  25. + Documentation: Add new test table for SQLSpecialColumns PR #85 + Author: Dave Cramer +
  26. +
  27. + Fix: Fix spelling of 'statement_deferred' PR #86 + Author: Dave Cramer +
  28. +
  29. + Documentation: Fix release notes to properly reflect changes PR #81 + Author: Dave Cramer +
  30. +
/

    psqlODBC 17.00.0004 Release

    Changes:
    diff --git a/version.h b/version.h index dd398fff..5d2dd368 100644 --- a/version.h +++ b/version.h @@ -14,13 +14,13 @@ * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj. */ #ifndef POSTGRESDRIVERVERSION -#define POSTGRESDRIVERVERSION "17.00.0004" +#define POSTGRESDRIVERVERSION "17.00.0005" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 17,0,00,04 +#define PG_DRVFILE_VERSION 17,0,00,05 #endif #endif From 2d9526fd80415daa18cc8feb22d9f37539026902 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Fri, 23 May 2025 11:56:00 -0400 Subject: [PATCH 2/2] update configure.ac fix spelling mistake and get the version right --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1ad62f2d..c1942eb3 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(psqlodbc, 17.00.0004qq, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 17.00.0005, [pgsql-odbc@postgresql.org]) AC_PREREQ(2.57) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE