Skip to content

Commit 033f504

Browse files
authored
Merge pull request #863 from serverless-heaven/release/5.5.1
Prepare release 5.5.1
2 parents 69db76d + c40466b commit 033f504

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ updates:
2020
- dependency-name: fs-extra
2121
versions:
2222
- ">= 10.0.0"
23+
# require node > 10
24+
- dependency-name: mocha
25+
versions:
26+
- ">= 9.0.0"

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
# Change Log
22

3+
* 5.5.1
4+
* chore: use processedOptions ([#834][] @CorentinDoue)
5+
* Reduce memory usage by releasing webpack stats objects after compile ([#858][] @janicduplessis)
6+
* (fix) allow boolean or number values in slsw.lib.options ([#857][] @coyoteecd)
7+
* Fix packaging for non-node functions ([#876][] @FatalTouch)
8+
9+
[#834]: https://github.com/serverless-heaven/serverless-webpack/pull/834
10+
[#858]: https://github.com/serverless-heaven/serverless-webpack/pull/858
11+
[#876]: https://github.com/serverless-heaven/serverless-webpack/pull/876
12+
[#857]: https://github.com/serverless-heaven/serverless-webpack/pull/857
13+
314
* 5.5.0
415
* Add ability to specify the node_modules relative dir ([#689][] @ypxing)
516
* Fix the spawn E2BIG error when zipping ([#813][] @j0k3r)
617
* Extends the --no-build option to serverless offline start ([#770][] @nponeccop)
718
* Add Serverless Container Support ([#723][] @rogersgt)
8-
* Add support for Yarn network-concurrency option ([#550][] @cfroese )
19+
* Add support for Yarn network-concurrency option ([#550][] @cfroese)
920

1021
[#689]: https://github.com/serverless-heaven/serverless-webpack/pull/689
1122
[#813]: https://github.com/serverless-heaven/serverless-webpack/pull/813

package-lock.json

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

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serverless-webpack",
3-
"version": "5.5.0",
3+
"version": "5.5.1",
44
"description": "Serverless plugin to bundle your javascript with Webpack",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -83,5 +83,8 @@
8383
},
8484
"optionalDependencies": {
8585
"ts-node": ">= 8.3.0"
86+
},
87+
"engines": {
88+
"node": ">= 10.12.0"
8689
}
8790
}

0 commit comments

Comments
 (0)