File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,17 @@ Common Changes
16
16
Thin Mode Changes
17
17
+++++++++++++++++
18
18
19
- #) Added support for fetching the list of network service names from
20
- tnsnames.ora using a new method, oracledb.getNetworkServiceNames()
19
+ #) Changed the password type parameter values from `vault-oci ` and
20
+ `vault-azure ` to `ocivault ` and `azurevault ` respectively for consistency
21
+ with other Oracle Database drivers.
22
+
23
+ #) Added method :meth: `oracledb.getNetworkServiceNames() ` to support fetching
24
+ the list of network service names from the ``tnsnames.ora `` file.
21
25
22
26
#) Fixed bug that did not allow connection to Oracle Database 23ai instances
23
27
that have fast authentication disabled.
24
28
25
- #) Fixed bug with statement cache which threw an `NJS-111 ` error when select
29
+ #) Fixed bug with statement cache which threw an `` NJS-111 ` ` error when select
26
30
SQL is run on CLOB columns fetched as string.
27
31
See `Issue #1684 <https://github.com/oracle/node-oracledb/issues/
28
32
1684> `__.
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ class OCIProvider extends base {
155
155
configObject . connectString = obj . connect_descriptor ;
156
156
configObject . user = obj . user ;
157
157
if ( obj . password ) {
158
- if ( obj . password . type == "vault-azure " ) {
158
+ if ( obj . password . type == "azurevault " ) {
159
159
if ( obj . password . authentication ) {
160
160
const { SecretClient } = require ( "@azure/keyvault-secrets" ) ;
161
161
const { ClientSecretCredential, ClientCertificateCredential} = require ( "@azure/identity" ) ;
@@ -171,7 +171,7 @@ class OCIProvider extends base {
171
171
} else {
172
172
errors . throwErr ( errors . ERR_AZURE_VAULT_AUTH_FAILED ) ;
173
173
}
174
- } else if ( obj . password . type == "vault-oci " ) {
174
+ } else if ( obj . password . type == "ocivault " ) {
175
175
const secrets = require ( 'oci-secrets' ) ;
176
176
const secretClientOci = new secrets . SecretsClient ( {
177
177
authenticationDetailsProvider : credential
You can’t perform that action at this time.
0 commit comments