Skip to content

Commit

Permalink
Preparing to release version 2.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-tuininga committed Jan 8, 2024
1 parent 553d606 commit 4c903a8
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016, 2023 Oracle and/or its affiliates.
Copyright (c) 2016, 2024 Oracle and/or its affiliates.

This software is dual-licensed to you under the Universal Permissive License
(UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016, 2023, Oracle and/or its affiliates.
Copyright (c) 2016, 2024, Oracle and/or its affiliates.
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# General substitutions.
project = "python-oracledb"
copyright = (
"2016, 2023, Oracle and/or its affiliates. All rights reserved. "
"2016, 2024, Oracle and/or its affiliates. All rights reserved. "
"Portions Copyright © 2007-2015, Anthony Tuininga. All rights reserved. "
"Portions Copyright © 2001-2007, Computronix (Canada) Ltd., "
"Edmonton, Alberta, Canada. All rights reserved"
Expand Down
2 changes: 1 addition & 1 deletion doc/src/license.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ License

.. centered:: **LICENSE AGREEMENT FOR python-oracledb**

Copyright |copy| 2016, 2023 Oracle and/or its affiliates.
Copyright |copy| 2016, 2024 Oracle and/or its affiliates.

This software is dual-licensed to you under the Universal Permissive License
(UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
Expand Down
32 changes: 18 additions & 14 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,40 @@ python-oracledb Release Notes

For deprecations, see :ref:`Deprecations <deprecations>`.

oracledb 2.0.1 (TBD)
--------------------
oracledb 2.0.1 (January 2024)
-----------------------------

Thin Mode Changes
+++++++++++++++++

#) Added support for using alternative event loop implementations like uvloop
#) Added support for using alternative event loop implementations such as
uvloop with :ref:`asyncio <asyncio>`
(`issue 276 <https://github.com/oracle/python-oracledb/issues/276>`__).
#) Added support for the asynchronous context manager protocol on the
AsyncCursor class as a convenience.
#) Added support for the `asynchronous context manager protocol
<https://docs.python.org/3/reference/datamodel.html?
highlight=aenter#asynchronous-context-managers>`__ on the
:ref:`AsyncCursor class <asynccursorobj>` as a convenience.
#) Fixed regression when connecting to a database using listener redirects
with either a connection pool or using asyncio
with either a :ref:`connection pool <connpooling>` or using
:ref:`asyncio <asyncio>`
(`issue 275 <https://github.com/oracle/python-oracledb/issues/275>`__).
#) Fixed bug with intermittent hang on some versions of Oracle Database when
using asyncio and the database raises an error and output variables are
present
#) Fixed bug when an intermittent hang occurs on some versions of Oracle
Database while using :ref:`asyncio <asyncio>` and the database raises an
error and output variables are present
(`issue 278 <https://github.com/oracle/python-oracledb/issues/278>`__).
#) Fixed bug when fetch variables contain output converters and a query is
re-executed
(`issue 271 <https://github.com/oracle/python-oracledb/issues/271>`__).
#) Internal change to ensure that pools are closed gracefully when the main
thread terminates.
#) Internal change to slightly improve performance of LOB reads and writes.
#) Corrected typing declaration for :meth:`oracledb.connect_async()`.
#) Internal change to ensure that connection pools are closed gracefully when
the main thread terminates.
#) Internal change to slightly improve performance of LOB reads and writes.

Common Changes
++++++++++++++

#) Fixed regression which prevented a null value from being set on DbObject
attributes or used as elements of collections
#) Fixed regression which prevented a null value from being set on
:ref:`DbObject <dbobject>` attributes or used as elements of collections
(`issue 273 <https://github.com/oracle/python-oracledb/issues/273>`__).
#) Fixed regression from cx_Oracle which ignored the value of the
``encoding_errors`` parameter when creating variables by calling the method
Expand Down

0 comments on commit 4c903a8

Please sign in to comment.