Skip to content

Commit f9a0c6d

Browse files
committed
Document support for Node.js 11
1 parent 7a01780 commit f9a0c6d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

INSTALL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ The [*node-oracledb*][1] add-on for Node.js powers high performance Oracle Datab
5252
The steps below create a Node.js installation for testing. Adjust the
5353
steps for your environment.
5454

55-
This node-oracledb release has been tested with Node.js 6, 8 and 10 on
56-
64-bit Oracle Linux, Windows and macOS. The add-on can also build on
57-
some 32-bit Linux, 32-bit Windows, Solaris and AIX environments, but
58-
these architectures have not been fully tested.
55+
This node-oracledb release has been tested with Node.js 6, 8, 10 and
56+
11 on 64-bit Oracle Linux, Windows and macOS. The add-on can also
57+
build on some 32-bit Linux, 32-bit Windows, Solaris and AIX
58+
environments, but these architectures have not been fully tested.
5959

6060
Node-oracledb is an [add-on](https://nodejs.org/api/addons.html)
6161
available as C++ and C source code. Pre-built binaries are available

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The node-oracledb add-on for Node.js powers high performance Oracle
44
Database applications.
55

6-
Use node-oracledb to connect Node.js 6, 8 and 10 to Oracle Database.
6+
Use node-oracledb to connect Node.js 6, 8, 10 and 11 to Oracle Database.
77

88
Node-oracledb supports basic and advanced features of Oracle Database
99
and Oracle Client. See the

package/oracledbinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ function done(err, alreadyInstalled) {
377377
packageUtil.error('Pre-built binary packages are not available for platform="' + process.platform + '"');
378378
} else if (process.arch !== 'x64') {
379379
packageUtil.error('Pre-built binary packages are not available for architecture="' + process.arch + '"');
380-
} else if (['48', '57', '64'].indexOf(process.versions.modules) < 0) {
380+
} else if (['48', '57', '64', '67'].indexOf(process.versions.modules) < 0) {
381381
packageUtil.error('Pre-built binary packages are not available for Node.js ' + process.version + ' (NODE_MODULE_VERSION="' + process.versions.modules + '")');
382382
}
383383
packageUtil.error('Failed to install binary package ' + packageUtil.dynamicProps.PACKAGE_FILE_NAME);

0 commit comments

Comments
 (0)