Skip to content

Commit f567c9d

Browse files
committed
Launch 6.7.1 release
1 parent 88db945 commit f567c9d

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

doc/src/api_manual/dbobject.rst

+12-4
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,19 @@ it is to convert that DbObject to and from a JavaScript object.
127127

128128
.. method:: dbObject.append(value)
129129

130-
Adds the given value to the end of the collection.
130+
Adds the given value to the end of the collection. If no elements exist
131+
in the collection, this creates an element at index 0. Otherwise, it
132+
creates an element at the index position immediately following the highest
133+
index available in the collection.
131134

132135
.. method:: dbObject.deleteElement(Number index)
133136

134137
Deletes the value from collection at the given index.
135138

136139
.. method:: dbObject.getElement(Number index)
137140

138-
Returns the value associated with the given index.
141+
Returns the value associated with the given index. If no element exists at
142+
that index, an exception is raised.
139143

140144
.. method:: dbObject.getFirstIndex()
141145

@@ -151,7 +155,9 @@ it is to convert that DbObject to and from a JavaScript object.
151155

152156
.. method:: dbObject.getNextIndex(Number index)
153157

154-
Returns the next index value for later use to obtain a value.
158+
Returns the next index value for later use to obtain a value. If there
159+
are no elements in the collection following the specified index, it
160+
returns *undefined*.
155161

156162
If the passed-in ``index`` parameter is not found in the :ref:`associative
157163
array collection types indexed by integers <indexbyplsinteger>`, then this
@@ -160,7 +166,9 @@ it is to convert that DbObject to and from a JavaScript object.
160166

161167
.. method:: dbObject.getPrevIndex(Number index)
162168

163-
Returns the previous index for later use to obtain the value.
169+
Returns the previous index for later use to obtain the value. If there
170+
are no elements in the collection preceding the specified index, it
171+
returns *undefined*.
164172

165173
If the passed-in ``index`` parameter is not found in the :ref:`associative
166174
array collection types indexed by integers <indexbyplsinteger>`, then this

doc/src/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#
4848
# The short X.Y version.
4949
version = '6.7'
50-
release = '6.7.0'
50+
release = '6.7.1'
5151

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

doc/src/release_notes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ node-oracledb Release Notes
88
For deprecated and desupported features, see
99
:ref:`Deprecations and desupported features <deprecations>`.
1010

11-
node-oracledb `v6.7.1 <https://github.com/oracle/node-oracledb/compare/v6.7.0...v6.7.1>`__ (TBD)
11+
node-oracledb `v6.7.1 <https://github.com/oracle/node-oracledb/compare/v6.7.0...v6.7.1>`__ (23 Dec 2024)
1212
---------------------------------------------------------------------------------------------------------
1313

1414
Common Changes

0 commit comments

Comments
 (0)