@middy/http-multipart-body-parser 2.5.1 → 2.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -56,7 +56,7 @@ If you really have to deal with big files, then you might also want to consider
56
56
 
57
57
  ```javascript
58
58
  import middy from '@middy/core'
59
- import { httpMultipartBodyParser } from '@middy/http-multipart-body-parser'
59
+ import httpMultipartBodyParser from '@middy/http-multipart-body-parser'
60
60
  const handler = middy((event, context) => {
61
61
  return {}
62
62
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@middy/http-multipart-body-parser",
3
- "version": "2.5.1",
3
+ "version": "2.5.5",
4
4
  "description": "Http event normalizer middleware for the middy framework",
5
5
  "type": "commonjs",
6
6
  "engines": {
@@ -46,12 +46,12 @@
46
46
  },
47
47
  "homepage": "https://github.com/middyjs/middy#readme",
48
48
  "dependencies": {
49
- "@middy/util": "^2.5.1",
49
+ "@middy/util": "^2.5.5",
50
50
  "busboy": "0.3.1"
51
51
  },
52
52
  "devDependencies": {
53
- "@middy/core": "^2.5.1",
53
+ "@middy/core": "^2.5.5",
54
54
  "http-errors": "^1.8.0"
55
55
  },
56
- "gitHead": "df18e5eff7d73492a96a2ca4780a2eae45d1cedb"
56
+ "gitHead": "b84840ec8afd289f6decfd0d645be4899051792d"
57
57
  }