Skip to content

Commit 5a54583

Browse files
authored
Merge pull request #332 from serverless-heaven/release-4-4-0
Release 4.4.0
2 parents 1b8a3be + 7d13a66 commit 5a54583

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ WebPack's [Tree-Shaking][link-webpack-tree] optimization.
2727

2828
## Recent improvements and important changes
2929

30-
* Improved extensibility for plugin authors (see _For Developers_ section)
31-
* Serverless 1.12+ is now required
32-
* Support of local `file:...` module references in package.json
30+
* Restrict webpack peer dependency version to `< 4`. Compatibility with webpack 4 will be
31+
added with the next major release (5.0.0).
32+
* Support for [serverless-step-functions-offline][link-step-functions-offline]
3333

3434
For the complete release notes see the end of this document.
3535

@@ -523,6 +523,11 @@ plugin when running a command or invoked by a hook.
523523
524524
## Release Notes
525525
526+
* 4.4.0
527+
* Support serverless-step-functions-offline [#313][link-313]
528+
* Fixed webpack documentation links [#326][link-326]
529+
* Abstracted packager interface [#329][link-329]
530+
526531
* 4.3.0
527532
* Add new `webpack:compile:watch:compile` event [#315][link-315]
528533
* Added note to README about using yarn [#316][link-316]
@@ -698,3 +703,7 @@ plugin when running a command or invoked by a hook.
698703
[link-253]: https://github.com/serverless-heaven/serverless-webpack/issues/253
699704
[link-317]: https://github.com/serverless-heaven/serverless-webpack/pull/317
700705
[link-321]: https://github.com/serverless-heaven/serverless-webpack/pull/321
706+
707+
[link-313]: https://github.com/serverless-heaven/serverless-webpack/pull/313
708+
[link-326]: https://github.com/serverless-heaven/serverless-webpack/pull/326
709+
[link-329]: https://github.com/serverless-heaven/serverless-webpack/issues/329

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serverless-webpack",
3-
"version": "4.3.0",
3+
"version": "4.4.0",
44
"description": "Serverless plugin to bundle your javascript with Webpack",
55
"main": "index.js",
66
"author": "Nicola Peduzzi <nicola.peduzzi@elastic-coders.com> (http://elastic-coders.com)",
@@ -66,6 +66,6 @@
6666
"sinon-chai": "^2.14.0"
6767
},
6868
"peerDependencies": {
69-
"webpack": "*"
69+
"webpack": "<4"
7070
}
7171
}

0 commit comments

Comments
 (0)