Skip to content

Commit 4ec59e5

Browse files
authored
Merge pull request #86 from paparomeo/release-4.0.0
Release 4.0.0
2 parents d4d8935 + b25f129 commit 4ec59e5

File tree

3 files changed

+48
-145
lines changed

3 files changed

+48
-145
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- 2017-10-09 - v4.0.0
2+
- 2017-10-09 - Optimised Sequelize UUID column type for ids.
13
- 2017-10-02 - v3.0.0
24
- 2017-10-02 - Allow injecting a Sequelize instance.
35
- 2017-10-02 - Fix npm scripts on MS Windows.

package-lock.json

+39-138
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonapi-store-relationaldb",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "Relational data store for jsonapi-server.",
55
"keywords": [
66
"json:api",
@@ -24,10 +24,10 @@
2424
"dependencies": {
2525
"async": "2.5.0",
2626
"debug": "3.1.0",
27-
"joi": "11.1.1",
27+
"joi": "11.3.4",
2828
"lodash": "4.17.4",
2929
"semver": "5.4.1",
30-
"sequelize": "4.13.1"
30+
"sequelize": "4.13.8"
3131
},
3232
"devDependencies": {
3333
"blanket": "1.2.3",
@@ -42,7 +42,7 @@
4242
"jsonapi-server": "3.2.1",
4343
"lokka": "1.7.0",
4444
"lokka-transport-http": "1.6.1",
45-
"mocha": "3.5.3",
45+
"mocha": "4.0.1",
4646
"mocha-lcov-reporter": "1.3.0",
4747
"mocha-performance": "0.1.1",
4848
"mysql2": "1.4.2",
@@ -53,10 +53,10 @@
5353
"v8-profiler": "5.7.0"
5454
},
5555
"scripts": {
56-
"test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && ./node_modules/mocha/bin/mocha --timeout 20000 -R spec ./test/*.js'",
56+
"test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && mocha --exit --timeout 20000 -R spec ./test/*.js'",
5757
"start": "node example/server.js",
58-
"coveralls": "mocha --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
59-
"coverage": "mocha --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true",
58+
"coveralls": "mocha --exit --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
59+
"coverage": "mocha --exit --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true",
6060
"complexity": "plato -r -d complexity lib",
6161
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha --reporter mocha-performance ./test/*.js",
6262
"lint": "eslint ./example/*.js ./lib/* ./test/*.js --quiet && echo '✔ All good!'",

0 commit comments

Comments
 (0)