@middy/core 6.0.0 → 6.1.2
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.
- package/README.md +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ Everyone is very welcome to contribute to this repository. Feel free to [raise i
|
|
|
59
59
|
|
|
60
60
|
## License
|
|
61
61
|
|
|
62
|
-
Licensed under [MIT License](LICENSE). Copyright (c) 2017-
|
|
62
|
+
Licensed under [MIT License](LICENSE). Copyright (c) 2017-2025 [Luciano Mammino](https://github.com/lmammino), [will Farrell](https://github.com/willfarrell), and the [Middy team](https://github.com/middyjs/middy/graphs/contributors).
|
|
63
63
|
|
|
64
64
|
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy?ref=badge_large">
|
|
65
65
|
<img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy.svg?type=large" alt="FOSSA Status" style="max-width:100%;">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/core",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda (core package)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -28,8 +28,9 @@
|
|
|
28
28
|
"index.d.ts"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"test": "npm run test:unit",
|
|
31
|
+
"test": "npm run test:unit && npm run test:fuzz",
|
|
32
32
|
"test:unit": "node --test __tests__/index.js",
|
|
33
|
+
"test:fuzz": "node --test __tests__/fuzz.js",
|
|
33
34
|
"test:benchmark": "node __benchmarks__/index.js",
|
|
34
35
|
"test:profile": "node --prof __benchmarks__/index.js && node --prof-process --preprocess -j isolate*.log | speedscope -"
|
|
35
36
|
},
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
},
|
|
49
50
|
"repository": {
|
|
50
51
|
"type": "git",
|
|
51
|
-
"url": "github
|
|
52
|
+
"url": "git+https://github.com/middyjs/middy.git",
|
|
52
53
|
"directory": "packages/core"
|
|
53
54
|
},
|
|
54
55
|
"bugs": {
|