Skip to content

Commit 77c3797

Browse files
Remove the prerelease status from pipelining.
1 parent 63cd412 commit 77c3797

File tree

5 files changed

+4
-20
lines changed

5 files changed

+4
-20
lines changed

doc/src/api_manual/async_connection.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,6 @@ AsyncConnection Methods
224224

225225
.. note::
226226

227-
In this release, pipelining support is experimental and subject to
228-
change.
229-
230227
True pipelining requires Oracle Database 23ai.
231228

232229
When you connect to an older database, operations are sequentially

doc/src/api_manual/module.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,11 +1148,6 @@ Oracledb Methods
11481148
Creates a :ref:`pipeline object <pipelineobjs>` which can be used to
11491149
process a set of operations against a database.
11501150

1151-
.. note::
1152-
1153-
In this release, pipelining support is experimental and subject to
1154-
change.
1155-
11561151
.. versionadded:: 2.4.0
11571152

11581153
.. function:: create_pool(dsn=None, pool_class=oracledb.ConnectionPool, \
@@ -3260,10 +3255,6 @@ These constants belong to the enumeration called ``PipelineOpType``. The
32603255
pipelining constants listed below are used to identify the type of operation
32613256
added. They are possible values for the :attr:`PipelineOp.op_type` attribute.
32623257

3263-
.. note::
3264-
3265-
In this release, pipelining support is experimental and subject to change.
3266-
32673258
.. versionadded:: 2.4.0
32683259

32693260
.. data:: oracledb.PIPELINE_OP_TYPE_CALL_FUNC

doc/src/api_manual/pipeline.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
API: Pipeline Objects
55
*********************
66

7-
.. note::
8-
9-
In this release, pipelining support is experimental and subject to change.
10-
117
Pipelining is only supported in python-oracledb Thin mode with
128
:ref:`asyncio <concurrentprogramming>`. See :ref:`pipelining` for more
139
information about pipelining.

doc/src/release_notes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ Thin Mode Changes
4242
#) The thread that closes connection pools on interpreter shutdown is now only
4343
started when the first pool is created and not at module import
4444
(`issue 426 <https://github.com/oracle/python-oracledb/issues/426>`__).
45+
#) Added support for Transaction Guard by adding support to get the values of
46+
:attr:`Connection.ltxid` and :attr:`oracledb._Error.isrecoverable`.
47+
#) Support for :ref:`Pipelining <pipelining>` is no longer considered a
48+
pre-release.
4549
#) Fixed hang when attempting to use pipelining against a database that
4650
doesn't support the end of response flag.
4751
#) Fixed hang when using asyncio and a connection is unexpectedly closed by

doc/src/user_guide/asyncio.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,6 @@ and can destroy transactional consistency.
300300
Pipelining Database Operations
301301
==============================
302302

303-
.. note::
304-
305-
In this release, pipelining support is experimental and subject to change.
306-
307303
Pipelining allows an application to send multiple, independent statements to
308304
Oracle Database with one call. The database can be kept busy without waiting
309305
for the application to receive a result set and send the next statement. While

0 commit comments

Comments
 (0)