Skip to content

Commit 3c96331

Browse files
authored
Merge pull request #85 from ifwe/update-deps
3.1.0 Update dependencies, excluding jsen
2 parents 3e4d995 + 040281b commit 3c96331

File tree

5 files changed

+51
-87
lines changed

5 files changed

+51
-87
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ npm-debug.log
66
.idea
77
.*.swp
88
.*.swo
9+
.nyc_output

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
3.1.0
2+
=====
3+
4+
+ Update dependencies, excluding `jsen`. See https://github.com/ifwe/monocle-api/issues/86

package-lock.json

Lines changed: 34 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monocle-api",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "API router focused on consistency, flexibility, and performance.",
55
"main": "lib/index.js",
66
"scripts": {
@@ -26,12 +26,12 @@
2626
},
2727
"homepage": "https://github.com/ifwe/monocle-api",
2828
"devDependencies": {
29-
"@types/bluebird": "^3.5.24",
29+
"@types/bluebird": "^3.5.30",
3030
"@types/busboy": "^0.2.3",
3131
"@types/debug": "0.0.31",
3232
"@types/jsen": "0.0.19",
3333
"@types/lodash": "^4.14.118",
34-
"@types/node": "^10.12.3",
34+
"@types/node": "^10.17.17",
3535
"@types/path-to-regexp": "^1.7.0",
3636
"chai": "1.9.1",
3737
"grunt": "^1.0.4",
@@ -45,13 +45,13 @@
4545
"sinon": "1.17.1"
4646
},
4747
"dependencies": {
48-
"bluebird": "3.3.5",
49-
"busboy": "0.2.12",
48+
"bluebird": "^3.7.2",
49+
"busboy": "^0.3.1",
5050
"debug": "^4.1.0",
51-
"jsen": "0.6.0",
52-
"jstransformer-stylus": "1.3.0",
51+
"jsen": "^0.6.0",
52+
"jstransformer-stylus": "^1.5.0",
5353
"lodash": "^4.17.15",
54-
"monocle-api-props": "0.0.4",
55-
"path-to-regexp": "1.2.0"
54+
"monocle-api-props": "^0.1.0",
55+
"path-to-regexp": "^1.8.0"
5656
}
5757
}

test/lib/Router_test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,9 @@ describe('API Router', function() {
10081008
type: 'object',
10091009
properties: {
10101010
paramIntAndBool: {type: ['integer', 'boolean']},
1011+
// NOTE(TysonAndre) 'float' is not part of the latest version of JSON schema v4,
1012+
// this should be changed to 'number' when jsen is upgraded
1013+
// See https://github.com/ifwe/monocle-api/issues/86
10111014
paramIntAndFloat: {type: ['integer', 'float']},
10121015
paramStringAndBooleanAndInt: {type: ['integer', 'string', 'boolean']},
10131016
paramArrayAndString: {type: ['array', 'string'], items: {type: 'integer'}},

0 commit comments

Comments
 (0)