Skip to content

Commit e42b733

Browse files
committed
Bump version to 5.5.0
1 parent 0d328cf commit e42b733

File tree

6 files changed

+27
-31
lines changed

6 files changed

+27
-31
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Change Log
22

3-
## node-oracledb [v5.5.0](https://github.com/oracle/node-oracledb/compare/v5.4.0...v5.5.0) (DD MON YYYY)
4-
5-
**This release is under development and information may be incomplete**
3+
## node-oracledb [v5.5.0](https://github.com/oracle/node-oracledb/compare/v5.4.0...v5.5.0) (7 Sep 2022)
64

75
- Token-based Authentication changes:
86

INSTALL.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Installing node-oracledb Version 5.5.0-dev
1+
# Installing node-oracledb Version 5.5.0
22

33
*Copyright (c) 2015, 2022, Oracle and/or its affiliates.*
44

@@ -101,9 +101,9 @@ Alternatively, follow these instructions:
101101

102102
- If a pre-built binary is not available, you will need to build from source
103103
code. Reivew the [prerequisites](#github) and add
104-
`https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz`
104+
`https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz`
105105
to your `package.json` dependencies or run `npm install
106-
https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz`.
106+
https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz`.
107107

108108
- Add Oracle Client libraries version 21, 19, 18, 12, or 11.2 to your operating
109109
system library search path such as `PATH` on Windows or `LD_LIBRARY_PATH` on
@@ -1123,19 +1123,19 @@ export CC=gcc
11231123
```
11241124

11251125
Locate the [GitHub tag][40] of the desired node-oracledb version, for
1126-
example `v5.5.0-dev`, and use the `npm` package manager (which is
1126+
example `v5.5.0`, and use the `npm` package manager (which is
11271127
included in Node.js) to install it.
11281128

11291129
If you have the `git` utility, you can install with:
11301130

11311131
```
1132-
npm install oracle/node-oracledb.git#v5.5.0-dev
1132+
npm install oracle/node-oracledb.git#v5.5.0
11331133
```
11341134

11351135
Otherwise install using:
11361136

11371137
```
1138-
npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz
1138+
npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz
11391139
```
11401140

11411141
#### 3.5.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1243,19 +1243,19 @@ export MAKE=gmake
12431243
```
12441244

12451245
Locate the [GitHub tag][40] of the desired node-oracledb version, for
1246-
example `v5.5.0-dev`, and use the `npm` package manager (which is
1246+
example `v5.5.0`, and use the `npm` package manager (which is
12471247
included in Node.js) to install it.
12481248

12491249
If you have the `git` utility, you can install with:
12501250

12511251
```
1252-
npm install oracle/node-oracledb.git#v5.5.0-dev
1252+
npm install oracle/node-oracledb.git#v5.5.0
12531253
```
12541254

12551255
Otherwise install using:
12561256

12571257
```
1258-
npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz
1258+
npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz
12591259
```
12601260

12611261
If this fails due to an invalid `cp -a` option, you can download the
@@ -1407,7 +1407,7 @@ npm install oracle/node-oracledb#main
14071407
```
14081408

14091409
To install from a tag, replace `main` with the tag name like:
1410-
`oracle/node-oracledb#v5.5.0-dev`.
1410+
`oracle/node-oracledb#v5.5.0`.
14111411

14121412
#### <a name="sourcepackage"></a> 3.7.3 Installing from a source package
14131413

@@ -1416,14 +1416,14 @@ dependency like:
14161416

14171417
```
14181418
"dependencies": {
1419-
"oracledb": "https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz"
1419+
"oracledb": "https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz"
14201420
},
14211421
```
14221422

14231423
Or install with:
14241424

14251425
```
1426-
npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz
1426+
npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz
14271427
```
14281428

14291429
#### <a name="nogithubaccess"></a> 3.7.4 Installing from Oracle's repository
@@ -1459,10 +1459,10 @@ within your company, or it can be used directly from the file system to install
14591459
node-oracledb.
14601460

14611461
- Download
1462-
[`oracledb-src-5.5.0-dev.tgz`](https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev/oracledb-src-5.5.0-dev.tgz)
1462+
[`oracledb-src-5.5.0.tgz`](https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz)
14631463
from GitHub.
14641464

1465-
- Extract the file: `tar -xzf oracledb-src-5.5.0-dev.tgz`
1465+
- Extract the file: `tar -xzf oracledb-src-5.5.0.tgz`
14661466

14671467
- Change directory: `cd package`
14681468

@@ -1477,7 +1477,7 @@ from GitHub.
14771477
architectures.
14781478

14791479
- Run: `npm run buildpackage`
1480-
The package `oracledb-5.5.0-dev.tgz` is created.
1480+
The package `oracledb-5.5.0.tgz` is created.
14811481

14821482
This package can be shared or self-hosted, see [Hosting your own node-oracledb
14831483
Packages](#selfhost).
@@ -1486,12 +1486,12 @@ Packages](#selfhost).
14861486

14871487
On a machine with access, download the node-oracledb package from [npm][4], for
14881488
example from
1489-
[`https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev.tgz`](https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev.tgz)
1489+
[`https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz`](https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz)
14901490

14911491
This can be transferred to the desired machine and installed, for example with:
14921492

14931493
```
1494-
npm install your_dir_path/oracledb-5.5.0-dev.tgz
1494+
npm install your_dir_path/oracledb-5.5.0.tgz
14951495
```
14961496

14971497
If you are using an architecture that does not have pre-supplied binaries then
@@ -1549,25 +1549,25 @@ If you see `MSVCR80.dll` then you need the VS 2005 Redistributable.
15491549
You can host node-oracledb packages locally.
15501550

15511551
Download the node-oracledb package from npm, for example from
1552-
[`https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev.tgz`](https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev.tgz)
1552+
[`https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz`](https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz)
15531553
Alternatively, if you want to build your own binaries and node-oracledb package,
15541554
see [Creating a node-oracledb package from source code](#compilepackage).
15551555

15561556
If you make the package accessible on your local web server, for example at
1557-
www.example.com/oracledb-5.5.0-dev.tgz, then your `package.json` would contain:
1557+
www.example.com/oracledb-5.5.0.tgz, then your `package.json` would contain:
15581558

15591559
```
15601560
. . .
15611561
"dependencies": {
1562-
"oracledb": "https://www.example.com/oracledb-5.5.0-dev.tgz"
1562+
"oracledb": "https://www.example.com/oracledb-5.5.0.tgz"
15631563
},
15641564
. . .
15651565
```
15661566

15671567
Or you would install with:
15681568

15691569
```
1570-
npm install https://www.example.com/oracledb-5.5.0-dev.tgz
1570+
npm install https://www.example.com/oracledb-5.5.0.tgz
15711571
```
15721572

15731573
### <a name="docker"></a> 3.10 Using node-oracledb in Docker

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# node-oracledb version 5.5.0-dev
2-
3-
**This release is under development and information may be incomplete**
1+
# node-oracledb version 5.5.0
42

53
The node-oracledb add-on for Node.js powers high performance Oracle Database
64
applications. Applications can be written in TypeScript, or directly in
75
JavaScript.
86

9-
Use node-oracledb 5.5.0-dev to connect Node.js 14, or later, to Oracle Database.
7+
Use node-oracledb 5.5.0 to connect Node.js 14, or later, to Oracle Database.
108
Older versions of node-oracledb may work with older versions of Node.js.
119

1210
Node-oracledb supports basic and advanced features of Oracle Database

doc/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# node-oracledb 5.5.0-dev Documentation for the Oracle Database Node.js Add-on
1+
# node-oracledb 5.5.0 Documentation for the Oracle Database Node.js Add-on
22

33
*Copyright (c) 2015, 2022, Oracle and/or its affiliates.*
44

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": "5.5.0-dev",
3+
"version": "5.5.0",
44
"description": "A Node.js module for Oracle Database access from JavaScript and TypeScript",
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
@@ -42,7 +42,7 @@
4242
#define NJS_NODE_ORACLEDB_MAJOR 5
4343
#define NJS_NODE_ORACLEDB_MINOR 5
4444
#define NJS_NODE_ORACLEDB_PATCH 0
45-
#define NJS_NODE_ORACLEDB_SUFFIX "-dev"
45+
#define NJS_NODE_ORACLEDB_SUFFIX ""
4646

4747
// define stringified version and driver name
4848
#define NJS_STR_HELPER(x) #x

0 commit comments

Comments
 (0)