Skip to content

Commit 0199c24

Browse files
committed
v3.2.9
1 parent 50788f1 commit 0199c24

3 files changed

Lines changed: 34 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
2026-04-22, Version 3.2.9
2+
=========================
3+
4+
* Add SQL_ATTR_DEFERRED_PREPARE attribute support, updated README.md and INSTALL.md for ibm_db DLL loading on Windows (#1058) (Earammak)
5+
6+
* Fix Polaris scan issues: null checks, copy-paste error, bounds validation (#1057) (bchoudhary6415)
7+
8+
* Fix array/binary parameter binding, refactor fetch_callproc and updated (#1055) (Earammak)
9+
10+
* Fix buffer over-read corruption when short strings bound to CHAR(N) columns (DBC-18059) (#1054) (bchoudhary6415)
11+
12+
* Fix DLL load failure on Windows , update workflow and simplify sdist packaging (#1053) (Earammak)
13+
14+
* Fix compile error for zos (#1049) (Earammak)
15+
16+
* Support for calling stored prcoedure with array parameter (#1048) (Earammak)
17+
18+
* Preserve s_bin_mode behavior in BLOB retrieval (#1047) (bchoudhary6415)
19+
20+
* Fix BLOB retrieval in ibm_db.result() (#1046) (bchoudhary6415)
21+
22+
* Make close() idempotent for already-closed connections (#1044) (Matthew Francis Brunetti)
23+
24+
* Make pconnect cache keys thread-specific (#1045) (Matthew Francis Brunetti)
25+
26+
* doc: update install instructions (Bimal Jha)
27+
28+
* update clone links and install instructions (Bimal Jha)
29+
30+
* Polaris scan fixes (Balram Choudhary)
31+
32+
133
# 2025-12-07, Version 3.2.8
234

335
- Add support for Python 3.14 (#1039) (Earammak)

ibm_db.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
+--------------------------------------------------------------------------+
2323
*/
2424

25-
#define MODULE_RELEASE "3.2.8"
25+
#define MODULE_RELEASE "3.2.9"
2626

2727
#include <Python.h>
2828
#include <datetime.h>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools.command.install import install
3333

3434
PACKAGE = 'ibm_db'
35-
VERSION = '3.2.8'
35+
VERSION = '3.2.9'
3636
LICENSE = 'Apache License 2.0'
3737
readme = os.path.join(os.path.dirname(__file__),'README.md')
3838

0 commit comments

Comments
 (0)