diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e15abddc..36256342 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ env: # Software versions. POSTGRESQL_SOURCE_TAG: 'REL_18_STABLE' POSTGRESQL_PACKAGE_FILEID: '1259019' - OPENSSL_VERSION: '3_3_5' + OPENSSL_VERSION: '3_3_6' PKGCONFIGLITE_VERSION: '0.28-1' WINFLEXBISON_VERSION: '2.5.24' DIFFUTILS_VERSION: '2.8.7-1' diff --git a/configure.ac b/configure.ac index 8bcd10f1..e5bc90e6 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.0007, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 17.00.0008, [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 aca5c89b..0da6b57e 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,26 @@

psqlODBC release notes


+
    +

    psqlODBC 17.00.0008 Release

    + Changes:
    +
  1. + Security: Update OpenSSL to version 3.3.6 (CVE-2025-15467) issue #158 + Author: Dave Cramer +
  2. +
  3. + Fix: Fixes for issue #153 PR #155 + Author: F.D.Castel +
  4. +
  5. + Fix: Bug causing out-of-bounds memory access in AddUpdated when updating cached row status PR #151 + Author: Yashwanth Chandolu +
  6. +
  7. + Fix: Check for errors in convert_to_pgbinary instead of ignoring return value of -1 from pg_bin2hex PR #150 + Author: Dave Cramer +
  8. +

    psqlODBC 17.00.0007 Release

    Changes:
    @@ -28,7 +48,8 @@

    psqlODBC 17.00.0007 Release

    Refactor: check the datestyle before setting it, if it is different than ISO change it, otherwise leave it as is PR #144 Author: Dave Cramer - +
+

    psqlODBC 17.00.0006 Release

    Changes:
  1. diff --git a/version.h b/version.h index 487dc989..d5d404d3 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.0007" +#define POSTGRESDRIVERVERSION "17.00.0008" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 17,0,00,07 +#define PG_DRVFILE_VERSION 17,0,00,08 #endif #endif