Skip to content

Commit ee69621

Browse files
abetomoDeviaVir
authored andcommitted
bump to 0.15.0 (#512)
1 parent 0db1863 commit ee69621

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,3 +365,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
365365
- Remove 'packageDirectory' option from 'deploy' [#484](https://github.com/motdotla/node-lambda/pull/484)
366366
- Update s3deploy bucket handling [#475](https://github.com/motdotla/node-lambda/pull/475)
367367
- Fix Docker volume mount from OSX - #461 [#471](https://github.com/motdotla/node-lambda/pull/471)
368+
369+
## [0.15.0] - 2019-12-11
370+
### Features
371+
- adds tagging on new and updated functions [#508](https://github.com/motdotla/node-lambda/pull/508)
372+
- Add nodejs12.x to runtime [#510](https://github.com/motdotla/node-lambda/pull/510)
373+
- Don't audit packages when installing [#505](https://github.com/motdotla/node-lambda/pull/505)
374+
- Use `ci` instead of `install` when installing packages [#502](https://github.com/motdotla/node-lambda/pull/502)
375+
- Add reference to TypeScript example/template [#497](https://github.com/motdotla/node-lambda/pull/497)
376+
- Drop nodejs6.10 [#495](https://github.com/motdotla/node-lambda/pull/495)
377+
- Warn on providing unknown commands [#494](https://github.com/motdotla/node-lambda/pull/494)
378+
- Fix tests
379+
- Fix GitHub Actions workflow [#506](https://github.com/motdotla/node-lambda/pull/506)
380+
- Fix `npm ci` test. [#509](https://github.com/motdotla/node-lambda/pull/509)
381+
- Remove appveyor.yml [#504](https://github.com/motdotla/node-lambda/pull/504)
382+
- Modify unit tests [#501](https://github.com/motdotla/node-lambda/pull/501)
383+
- Fix GitHub Actions workflow [#500](https://github.com/motdotla/node-lambda/pull/500)
384+
- Add GitHub Actions workflow [#499](https://github.com/motdotla/node-lambda/pull/499)

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "0.14.0",
3+
"version": "0.15.0",
44
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
55
"main": "lib/main.js",
66
"directories": {

test/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ describe('lib/main', function () {
148148
})
149149

150150
it('version should be set', () => {
151-
assert.equal(lambda.version, '0.14.0')
151+
assert.equal(lambda.version, '0.15.0')
152152
})
153153

154154
describe('_codeDirectory', () => {

0 commit comments

Comments
 (0)