From f80388cbc80f4624138ab31f15a69b8bdc792e5c Mon Sep 17 00:00:00 2001 From: Frank Schmid Date: Wed, 25 Oct 2017 13:14:54 +0200 Subject: [PATCH] Update examples added Update #265 Added #260 Added release notes. Increased version. --- README.md | 20 +++++++++++++++++++- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8c582af38..f7c46052f 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,10 @@ individually, resulting in smaller Lambda packages that contain only the code an dependencies needed to run the function. This allows the plugin to fully utilize WebPack's [Tree-Shaking][link-webpack-tree] optimization. -## Recent improvements +## Recent improvements and important changes * Improved extensibility for plugin authors (see _For Developers_ section) +* Serverless 1.12+ is now required For the complete release notes see the end of this document. @@ -476,6 +477,15 @@ plugin when running a command or invoked by a hook. ## Release Notes +* 4.0.0 + * BREAKING: Expose lifecycle events for plugin authors [#254][link-254] + * Fixed deprecated hook warning [#126][link-126] + * Support forceExclude option for external modules [#247][link-247] + * Support stats output configuration in webpack config [#260][link-260] + * Google: Only integrate package.json but not node modules into artifact [#264][link-264] + * Documentation fixes and updates [#265][link-265] + * Updated examples [#250][link-250] + * 3.1.2 * Fix issue where dependencies with dots in their names would not be installed [#251][link-251] @@ -598,3 +608,11 @@ plugin when running a command or invoked by a hook. [link-245]: https://github.com/serverless-heaven/serverless-webpack/issues/245 [link-251]: https://github.com/serverless-heaven/serverless-webpack/issues/251 + +[link-126]: https://github.com/serverless-heaven/serverless-webpack/issues/126 +[link-247]: https://github.com/serverless-heaven/serverless-webpack/issues/247 +[link-250]: https://github.com/serverless-heaven/serverless-webpack/issues/250 +[link-254]: https://github.com/serverless-heaven/serverless-webpack/pull/254 +[link-260]: https://github.com/serverless-heaven/serverless-webpack/issues/260 +[link-264]: https://github.com/serverless-heaven/serverless-webpack/pull/264 +[link-265]: https://github.com/serverless-heaven/serverless-webpack/pull/265 diff --git a/package-lock.json b/package-lock.json index eb6818305..0bb431db5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "serverless-webpack", - "version": "3.1.2", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a2a4e3a4f..4cac21250 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless-webpack", - "version": "3.1.2", + "version": "4.0.0", "description": "Serverless plugin to bundle your javascript with Webpack", "main": "index.js", "author": "Nicola Peduzzi (http://elastic-coders.com)",