Skip to content

Commit f56a4d5

Browse files
Preparing to release cx_Oracle 6.0.3.
1 parent 418f1a0 commit f56a4d5

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

doc/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# The short X.Y version.
4343
version = '6.0'
4444
# The full version, including alpha/beta/rc tags.
45-
release = '6.0.2'
45+
release = '6.0.3'
4646

4747
# There are two options for replacing |today|: either, you set today to some
4848
# non-false value, then it is used:

doc/src/releasenotes.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,34 @@ cx_Oracle Release Notes
88

99
.. _releasenotes60:
1010

11+
Version 6.0.3 (November 2017)
12+
-----------------------------
13+
14+
#) Update to `ODPI-C 2.0.3
15+
<https://oracle.github.io/odpi/doc/releasenotes.html#version-2-0-3-tbd>`__.
16+
17+
- Prevent use of unitialized data in certain cases (`issue 77
18+
<https://github.com/oracle/python-cx_Oracle/issues/77>`__).
19+
- Attempting to ping a database earlier than 10g results in error
20+
"ORA-1010: invalid OCI operation", but that implies a response from the
21+
database and therefore a successful ping, so treat it that way!
22+
- Correct handling of conversion of some numbers to NATIVE_FLOAT.
23+
- Prevent use of NaN with Oracle numbers since it produces corrupt data
24+
(`issue 91 <https://github.com/oracle/python-cx_Oracle/issues/91>`__).
25+
- Verify that Oracle objects bound to cursors, fetched from cursors, set in
26+
object attributes or appended to collection objects are of the correct
27+
type.
28+
- Correct handling of NVARCHAR2 when used as attributes of Oracle objects
29+
or as elements of collections.
30+
31+
#) Ensure that a call to setinputsizes() with an invalid type prior to a call
32+
to executemany() does not result in a type error, but instead gracefully
33+
ignores the call to setinputsizes() as required by the DB API
34+
(https://github.com/oracle/python-cx_Oracle/issues/75).
35+
#) Check variable array size when setting variable values and raise
36+
IndexError, as is already done for getting variable values.
37+
38+
1139
Version 6.0.2 (August 2017)
1240
---------------------------
1341

0 commit comments

Comments
 (0)