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 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
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, 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
Expand Down
23 changes: 22 additions & 1 deletion docs/release.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@

<h1>psqlODBC release notes</h1>
<hr>
<ol type="1">
<h2><a id="17.00.0008">psqlODBC 17.00.0008 Release</a></h2>
Changes:<br />
<li>
Security: Update OpenSSL to version 3.3.6 (CVE-2025-15467) <a href="https://github.com/postgresql/psqlodbc/issues/158">issue #158</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Fix: Fixes for issue #153 <a href="https://github.com/postgresql/psqlodbc/pull/155">PR #155</a>
Author: <a href="https://github.com/fdcastel">F.D.Castel</a>
</li>
<li>
Fix: Bug causing out-of-bounds memory access in AddUpdated when updating cached row status <a href="https://github.com/postgresql/psqlodbc/pull/151">PR #151</a>
Author: <a href="https://github.com/yashwanthchandolu">Yashwanth Chandolu</a>
</li>
<li>
Fix: Check for errors in convert_to_pgbinary instead of ignoring return value of -1 from pg_bin2hex <a href="https://github.com/postgresql/psqlodbc/pull/150">PR #150</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
</ol>
<ol type="1">
<h2><a id="17.00.0007">psqlODBC 17.00.0007 Release</a></h2>
Changes:<br />
Expand All @@ -28,7 +48,8 @@ <h2><a id="17.00.0007">psqlODBC 17.00.0007 Release</a></h2>
Refactor: check the datestyle before setting it, if it is different than ISO change it, otherwise leave it as is <a href="https://github.com/postgresql/psqlodbc/pull/144">PR #144</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>

</ol>
<ol type="1">
<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
Changes:<br />
<li>
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 "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