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 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, 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
Expand Down
33 changes: 33 additions & 0 deletions docs/release.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,39 @@
<h1>psqlODBC release notes</h1>
<hr>
<ol type="1">
<h2><a id="18.00.0003">psqlODBC 18.00.0003 Release</a></h2>
Changes:<br />
<li>
Report SQLSTATE 22003 for out-of-range integer conversions instead of silently returning the wrapped low bits (#207, #210, #211)
</li>
<li>
Fix statement-level rollback (Protocol=7.4-2) discarding the whole transaction on a syntax error (#203, #204)
</li>
<li>
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)
</li>
<li>
Redact the database password (ODBC PWD and libpq pqopt password) in debug logs (#206)
</li>
<li>
Fix hang on COPY ... FROM STDIN / TO STDOUT: report it as unsupported and keep the connection usable (#202)
</li>
<li>
Fix 'infinity'/'-infinity' dates silently returned as today's date (#199)
</li>
<li>
Document connection string escaping rules (#140, #197)
</li>
<li>
Resolve Visual Studio 2026 (v18) build issues and circular dependencies (#201)
</li>
<li>
Add Windows on Arm (ARM64) CI build and regression testing (#196)
</li>
<li>
Build Windows OpenSSL 3.5.8 in CI (#205)
</li>
<hr>
<h2><a id="18.00.0002">psqlODBC 18.00.0002 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 "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
Loading