Releases: serverless-heaven/serverless-webpack
3.0.0
Finally it's here - the new V3
Release Notes
- Integrate with
serverless invoke local
#151 - Support watch mode with
serverless invoke local --watch
- Stabilized and improved the bundling of node modules #116, #117
- Improved interoperability with Serverless and 3rd party plugins #173
- Support individual packaging of the functions in a service #120
- Allow setting stdio max buffers for NPM operations #185
- Support bundling of node modules via node-externals whitelist #186
- Removed the
webpack serve
command in favor of [serverless-offline
][link-serverless-offline] #152 - Updated examples #179
- Added missing unit tests to improve code stability
- Fixed unit tests to run on Windows #145
2.2.3
Move to serverless-heaven
- Changed all references in README and package.json to the new home
2.2.2
3.0.0-rc.2
2.2.1
3.0.0-rc.1
This is the first release candidate for v3. Please test it thoroughly.
Special thanks to everyone who jumped into the pit and helped to reveil issues and stabilize the v3 branch 🥇
Release Notes
- Integrate with
serverless invoke local
#151 - Support watch mode with
serverless invoke local --watch
- Stabilized and improved the bundling of node modules #116, #117
- Improved interoperability with Serverless and 3rd party plugins #173
- Support individual packaging of the functions in a service #120
- Allow setting stdio max buffers for NPM operations #185
- Support bundling of node modules via node-externals whitelist #186
- Removed the
webpack serve
command in favor of [serverless-offline
][link-serverless-offline] #152 - Updated examples #179
- Added missing unit tests to improve code stability
2.2.0
Bugfix/Feature release
- Allow full dynamic configurations #158
- Fix a bug that prevented the entries lib export to work with TypeScript #165
If you already switched to use lib.entries
and use output to define the output filename, you should now add the file extension to the definition:
const slsw = require('serverless-webpack');
...
entry: slsw.lib.entries,
output: {
...
filename: '[name].js'
...
}
2.1.0
2.0.0
Introduction
This is the first release after quite some time. It includes improvements and bug fixes that we all waited for (for a long time). Special thanks go to @hassankhan and @StevenACoffman without who continuing and reviving the project would not have been possible. Watch out for further releases which will contain changes that did not make it into this release.
The following issue have been addressed:
Community update
Happy holidays everyone! 🎄
This release has been made possible by you all through PRs. Amazing!
- Compatibility with serverless-offline has been added in #58 by @rvaidya
- Added support for function and global lever env vars in #65 by @petemill
- Improvements in local function execution when simulating a lambda proxy in #57 by @stevenyap