Skip to content

Commit 17bc225

Browse files
committed
Add explicit run commands for unit and both integration test targets.
Also updated changelog for upcoming 4.6.4 release.
1 parent 24d6293 commit 17bc225

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# ChangeLog - DataStax Node.js Driver
22

3+
## 4.6.4
4+
5+
2022-07-11
6+
7+
### Bug fixes
8+
9+
- [NODEJS-633] - Mapper error: TypeError: Cannot read property 'executor' of null
10+
- [NODEJS-645] - Travis builds are failing due to TypeScript errors
11+
- [NODEJS-646] - Unable to add address for initially unresolved host
12+
- [NODEJS-647] - Log negotiated SSL/TLS versions when using encrypted connections
13+
314
## 4.6.3
415

516
2021-05-18

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@
4141
},
4242
"scripts": {
4343
"test": "./node_modules/.bin/mocha test/unit -R spec -t 5000 --recursive",
44+
"unit": "./node_modules/.bin/mocha test/unit -R spec -t 5000 --recursive",
45+
"integration_short": "./node_modules/.bin/mocha test/integration/short -R spec -t 5000 --recursive",
46+
"integration_long": "./node_modules/.bin/mocha test/integration/long -R spec -t 5000 --recursive",
4447
"ci_jenkins": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-jenkins-reporter --exit",
4548
"ci_appveyor": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-appveyor-reporter --exit",
46-
"foo": "./node_modules/.bin/mocha test/integration/short --recursive -R spec --exit -g 'should subscribe to TOPOLOGY_CHANGE'",
4749
"ci_unit_appveyor": "./node_modules/.bin/mocha test/unit --recursive -R mocha-appveyor-reporter --exit",
4850
"server_api": "./node_modules/.bin/mocha test/integration/short -g '@SERVER_API' --recursive --exit",
4951
"eslint": "eslint lib test"

0 commit comments

Comments
 (0)