diff --git a/doc/src/releasenotes.rst b/doc/src/releasenotes.rst index e2ab2ee..b1be9c4 100644 --- a/doc/src/releasenotes.rst +++ b/doc/src/releasenotes.rst @@ -8,6 +8,33 @@ cx_Oracle Release Notes .. _releasenotes70: +Version 7.1.2 (March 2019) +-------------------------- + +#) Updated to `ODPI-C 3.1.3 + `__. +#) Ensured that the strings "-0" and "-0.0" are correctly handled as zero + values + (`issue 274 `__). +#) Eliminated error when startup and shutdown events are generated + (`ODPI-C issue 102 `__). +#) Enabled the types specified in :meth:`Cursor.setinputsizes()` and + :meth:`Cursor.callfunc()` to be an object type in addition to a Python + type, just like in :meth:`Cursor.var()`. +#) Reverted changes to return decimal numbers when the numeric precision was + too great to be returned accurately as a floating point number. This change + had too great an impact on existing functionality and an output type + handler can be used to return decimal numbers where that is desirable + (`issue 279 `__). +#) Eliminated discrepancies in character sets between an external connection + handle and the newly created connection handle that references the external + connection handle + (`issue 273 `__). +#) Eliminated memory leak when receiving messages received from subscriptions. +#) Improved test suite and documentation. + + Version 7.1.1 (February 2019) -----------------------------