Skip to content

Commit 0d0b453

Browse files
committed
Bump version to 4.0.1
1 parent 7c44fb5 commit 0d0b453

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## node-oracledb v4.0.1 (DD MON YYYY)
44

5+
**This release is under development**
6+
57
- Fixed a regression with missing `metaData` from `connection.getStatementInfo()`
68

79
- Fixed passing DbObjects and JavaScript objects as the `payload` attribute for

INSTALL.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ version 2.0.
164164
- Install a C Compiler such as Xcode, GCC, Visual Studio
165165
2017, or similar.
166166

167-
- Run `npm install oracle/node-oracledb.git#v4.0.0`, or add
168-
`oracle/node-oracledb.git#v4.0.0` to your `package.json`
167+
- Run `npm install oracle/node-oracledb.git#v4.0.1`, or add
168+
`oracle/node-oracledb.git#v4.0.1` to your `package.json`
169169
dependencies. Substitute your desired [GitHub tag][40].
170170

171171
- Add Oracle 19, 18, 12, or 11.2 client libraries to your operating
@@ -1074,19 +1074,19 @@ export CC=gcc
10741074
```
10751075

10761076
Locate the [GitHub tag][40] of the desired node-oracledb version, for
1077-
example `v4.0.0`, and use the `npm` package manager (which is
1077+
example `v4.0.1`, and use the `npm` package manager (which is
10781078
included in Node.js) to install it.
10791079

10801080
If you have the `git` utility, you can install with:
10811081

10821082
```
1083-
npm install oracle/node-oracledb.git#v4.0.0
1083+
npm install oracle/node-oracledb.git#v4.0.1
10841084
```
10851085

10861086
Otherwise install using:
10871087

10881088
```
1089-
npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.0/oracledb-src-4.0.0.tgz
1089+
npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.1/oracledb-src-4.0.1.tgz
10901090
```
10911091

10921092
#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1194,19 +1194,19 @@ export MAKE=gmake
11941194
```
11951195

11961196
Locate the [GitHub tag][40] of the desired node-oracledb version, for
1197-
example `v4.0.0`, and use the `npm` package manager (which is
1197+
example `v4.0.1`, and use the `npm` package manager (which is
11981198
included in Node.js) to install it.
11991199

12001200
If you have the `git` utility, you can install with:
12011201

12021202
```
1203-
npm install oracle/node-oracledb.git#v4.0.0
1203+
npm install oracle/node-oracledb.git#v4.0.1
12041204
```
12051205

12061206
Otherwise install using:
12071207

12081208
```
1209-
npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.0/oracledb-src-4.0.0.tgz
1209+
npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.1/oracledb-src-4.0.1.tgz
12101210
```
12111211

12121212
#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1309,12 +1309,12 @@ The `git` utility is required for this method.
13091309

13101310
Build node-oracledb from source code by changing the package specifier
13111311
so that `npm` downloads from GitHub instead of from npmjs.com. For
1312-
example, to install the code from the GitHub tag 'v4.0.0', add
1313-
`oracle/node-oracledb#v4.0.0` to your `package.json` dependencies, or
1312+
example, to install the code from the GitHub tag 'v4.0.1', add
1313+
`oracle/node-oracledb#v4.0.1` to your `package.json` dependencies, or
13141314
use the command:
13151315

13161316
```
1317-
npm install oracle/node-oracledb#v4.0.0
1317+
npm install oracle/node-oracledb#v4.0.1
13181318
```
13191319

13201320
This will download, compile and install node-oracledb.
@@ -1328,7 +1328,7 @@ Users without `git`, or with older versions of `npm` such as included in
13281328
Node.js 6, may alternatively need to use pre-bundled source code:
13291329

13301330
```
1331-
npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.0/oracledb-src-4.0.0.tgz
1331+
npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.1/oracledb-src-4.0.1.tgz
13321332
```
13331333

13341334
Note it may take some time before compilation begins due to the slow
@@ -1362,7 +1362,7 @@ installing.
13621362
#### <a name="nogithubaccess"></a> 3.10.3 Compiling node-oracledb without GitHub Access
13631363

13641364
Some companies block access to github.com so compiling source code
1365-
from GitHub with `npm install oracle/node-oracledb.git#v4.0.0` will
1365+
from GitHub with `npm install oracle/node-oracledb.git#v4.0.1` will
13661366
fail.
13671367

13681368
Oracle has a mirror of the GitHub repository source code that can be
@@ -1467,7 +1467,7 @@ See [Node.js for Oracle Linux][46] for details.
14671467
You can host node-oracledb packages locally.
14681468

14691469
Download the node-oracledb package from npm, for example from
1470-
`https://registry.npmjs.com/oracledb/-/oracledb-4.0.0.tgz`
1470+
`https://registry.npmjs.com/oracledb/-/oracledb-4.0.1.tgz`
14711471
Alternatively, if you want to build your own binaries and
14721472
node-oracledb package, the maintainer scripts in
14731473
[/package](https://github.com/oracle/node-oracledb/tree/master/package)
@@ -1476,19 +1476,19 @@ can be used. See
14761476
for details.
14771477

14781478
If you make the package accessible on your local web server, for
1479-
example at https://www.example.com/oracledb-4.0.0.tgz, then your
1479+
example at https://www.example.com/oracledb-4.0.1.tgz, then your
14801480
install command would be:
14811481

14821482
```
1483-
npm install https://www.example.com/oracledb-4.0.0.tgz
1483+
npm install https://www.example.com/oracledb-4.0.1.tgz
14841484
```
14851485

14861486
or your `package.json` would contain:
14871487

14881488
```
14891489
. . .
14901490
"dependencies": {
1491-
"oracledb": "https://www.example.com/oracledb-4.0.0.tgz"
1491+
"oracledb": "https://www.example.com/oracledb-4.0.1.tgz"
14921492
},
14931493
. . .
14941494
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oracledb",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "A Node.js module for Oracle Database access",
55
"license": "Apache-2.0",
66
"homepage": "http://oracle.github.io/node-oracledb/",

src/njsModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
// For production, use: #define NJS_NODE_ORACLEDB_SUFFIX ""
4242
#define NJS_NODE_ORACLEDB_MAJOR 4
4343
#define NJS_NODE_ORACLEDB_MINOR 0
44-
#define NJS_NODE_ORACLEDB_PATCH 0
44+
#define NJS_NODE_ORACLEDB_PATCH 1
4545
#define NJS_NODE_ORACLEDB_SUFFIX ""
4646

4747
// define stringified version and driver name

0 commit comments

Comments
 (0)