Comparing version 0.2.3 to 0.2.4
# Vulpes-API Changelog | ||
## v0.2.4 | ||
_2019-04-04_ | ||
* Raise JSON body limit to 10MB | ||
## v0.2.3 | ||
@@ -4,0 +9,0 @@ _2019-03-24_ |
{ | ||
"name": "vulpes-api", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "API generator for the Vulpes job management framework", | ||
@@ -5,0 +5,0 @@ "main": "source/index.js", |
@@ -35,3 +35,7 @@ const path = require("path"); | ||
if (parseJSON) { | ||
router.use(bodyParser.json()); | ||
router.use( | ||
bodyParser.json({ | ||
limit: "10MB" | ||
}) | ||
); | ||
} | ||
@@ -38,0 +42,0 @@ // Attach service |
42182
1048