Skip to content

Commit c99d478

Browse files
committed
Bump to 3.1.1 for package rebuild
1 parent 4993a01 commit c99d478

File tree

4 files changed

+23
-19
lines changed

4 files changed

+23
-19
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## node-oracledb v3.1.1 (25 Jan 2019)
4+
5+
- Rebuild npm package to resolve Linux binary build issue.
6+
37
## node-oracledb v3.1.0 (22 Jan 2019)
48

59
- Support tagging of pooled connections when releasing them to the

INSTALL.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ version 2.0.
150150
- Install a C Compiler with support for C++ 11 (such as Xcode,
151151
GCC 4.8, Visual Studio 2015, or similar)
152152

153-
- Run `npm install oracle/node-oracledb.git#v3.1.0`, or add
154-
`oracle/node-oracledb.git#v3.1.0` to your `package.json`
153+
- Run `npm install oracle/node-oracledb.git#v3.1.1`, or add
154+
`oracle/node-oracledb.git#v3.1.1` to your `package.json`
155155
dependencies. Substitute your desired [GitHub tag][40].
156156

157157
- Add Oracle 18, 12, or 11.2 client libraries to your operating
@@ -1030,19 +1030,19 @@ export CC=gcc
10301030
```
10311031

10321032
Locate the [GitHub tag][40] of the desired node-oracledb version, for
1033-
example `v3.1.0`, and use the `npm` package manager (which is
1033+
example `v3.1.1`, and use the `npm` package manager (which is
10341034
included in Node.js) to install it.
10351035

10361036
If you have the `git` utility, you can install with:
10371037

10381038
```
1039-
npm install oracle/node-oracledb.git#v3.1.0
1039+
npm install oracle/node-oracledb.git#v3.1.1
10401040
```
10411041

10421042
Otherwise install using:
10431043

10441044
```
1045-
npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.0/oracledb-src-3.1.0.tgz
1045+
npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.1/oracledb-src-3.1.1.tgz
10461046
```
10471047

10481048
#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1150,19 +1150,19 @@ export MAKE=gmake
11501150
```
11511151

11521152
Locate the [GitHub tag][40] of the desired node-oracledb version, for
1153-
example `v3.1.0`, and use the `npm` package manager (which is
1153+
example `v3.1.1`, and use the `npm` package manager (which is
11541154
included in Node.js) to install it.
11551155

11561156
If you have the `git` utility, you can install with:
11571157

11581158
```
1159-
npm install oracle/node-oracledb.git#v3.1.0
1159+
npm install oracle/node-oracledb.git#v3.1.1
11601160
```
11611161

11621162
Otherwise install using:
11631163

11641164
```
1165-
npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.0/oracledb-src-3.1.0.tgz
1165+
npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.1/oracledb-src-3.1.1.tgz
11661166
```
11671167

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

12701270
Build node-oracledb from source code by changing the package specifier
12711271
so that `npm` downloads from GitHub instead of from npmjs.com. For
1272-
example, to install the code from the GitHub tag 'v3.1.0', add
1273-
`oracle/node-oracledb#v3.1.0` to your `package.json` dependencies, or
1272+
example, to install the code from the GitHub tag 'v3.1.1', add
1273+
`oracle/node-oracledb#v3.1.1` to your `package.json` dependencies, or
12741274
use the command:
12751275

12761276
```
1277-
npm install oracle/node-oracledb#v3.1.0
1277+
npm install oracle/node-oracledb#v3.1.1
12781278
```
12791279

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

12901290
```
1291-
npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.0/oracledb-src-3.1.0.tgz
1291+
npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.1/oracledb-src-3.1.1.tgz
12921292
```
12931293

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

13221322
Some companies block access to github.com so compiling source code
1323-
from GitHub with `npm install oracle/node-oracledb.git#v3.1.0` will
1323+
from GitHub with `npm install oracle/node-oracledb.git#v3.1.1` will
13241324
fail.
13251325

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

14201420
Download the node-oracledb package from npm, for example from
1421-
`https://registry.npmjs.com/oracledb/-/oracledb-3.1.0.tgz`
1421+
`https://registry.npmjs.com/oracledb/-/oracledb-3.1.1.tgz`
14221422
Alternatively, if you want to build your own binaries and
14231423
node-oracledb package, the maintainer scripts in
14241424
[/package](https://github.com/oracle/node-oracledb/tree/master/package)
@@ -1427,19 +1427,19 @@ can be used. See
14271427
for details.
14281428

14291429
If you make the package accessible on your local web server, for
1430-
example at https://www.example.com/oracledb-3.1.0.tgz, then your
1430+
example at https://www.example.com/oracledb-3.1.1.tgz, then your
14311431
install command would be:
14321432

14331433
```
1434-
npm install https://www.example.com/oracledb-3.1.0.tgz
1434+
npm install https://www.example.com/oracledb-3.1.1.tgz
14351435
```
14361436

14371437
or your `package.json` would contain:
14381438

14391439
```
14401440
. . .
14411441
"dependencies": {
1442-
"oracledb": "https://www.example.com/oracledb-3.1.0.tgz"
1442+
"oracledb": "https://www.example.com/oracledb-3.1.1.tgz"
14431443
},
14441444
. . .
14451445
```

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": "3.1.0",
3+
"version": "3.1.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/njsOracle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ using namespace v8;
7171
// For production, leave NJS_NODE_ORACLEDB_SUFFIX undefined (not "")
7272
#define NJS_NODE_ORACLEDB_MAJOR 3
7373
#define NJS_NODE_ORACLEDB_MINOR 1
74-
#define NJS_NODE_ORACLEDB_PATCH 0
74+
#define NJS_NODE_ORACLEDB_PATCH 1
7575
#define NJS_NODE_ORACLEDB_SUFFIX
7676

7777
// define stringified version and driver name

0 commit comments

Comments
 (0)