Skip to content

Commit 08662b2

Browse files
abetomoDeviaVir
authored andcommitted
bump to 0.12.0 (#459)
1 parent c8c8686 commit 08662b2

File tree

5 files changed

+79
-102
lines changed

5 files changed

+79
-102
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,3 +309,31 @@ This project adheres to [Semantic Versioning](http://semver.org/).
309309

310310
### Bugfixes
311311
- remove env var value from commanderjs flag definition [#409](https://github.com/motdotla/node-lambda/pull/409)
312+
313+
## [0.12.0] - 2018-08-10
314+
### Features
315+
- Implemente to specify bucket name of S3 [#458](https://github.com/motdotla/node-lambda/pull/458)
316+
- Implement deployment using S3 (Create a bucket for each region.) [#455](https://github.com/motdotla/node-lambda/pull/455)
317+
- Add class for uploading deploy package to S3 [#454](https://github.com/motdotla/node-lambda/pull/454)
318+
- Fix to throw an error except ResourceNotFoundException [#452](https://github.com/motdotla/node-lambda/pull/452)
319+
- Feature upload to s3 and deploy from bucket [#446](https://github.com/motdotla/node-lambda/pull/446)
320+
- npm update [#445](https://github.com/motdotla/node-lambda/pull/445)
321+
- Upgrade dependent packages [#441](https://github.com/motdotla/node-lambda/pull/441)
322+
- Add simple test of `_deployToRegion()` and `deploy()` [#439](https://github.com/motdotla/node-lambda/pull/439)
323+
- Remove unnecessary package load in `test/main.js` [#438](https://github.com/motdotla/node-lambda/pull/438)
324+
- Add cache of `node modules` to CI setting [#436](https://github.com/motdotla/node-lambda/pull/436)
325+
- Modify `require` to `{ }` statement [#435](https://github.com/motdotla/node-lambda/pull/435)
326+
- Fix to use `includes` instead of `indexOf` [#433](https://github.com/motdotla/node-lambda/pull/433)
327+
- Remove test code for Node.js4 [#432](https://github.com/motdotla/node-lambda/pull/432)
328+
- Upgrade `fs-extra` [#431](https://github.com/motdotla/node-lambda/pull/431)
329+
- Stop supporting Node.js 4 [#430](https://github.com/motdotla/node-lambda/pull/430)
330+
- Fix using `klaw` instead of `fs.walk` [#424](https://github.com/motdotla/node-lambda/pull/424)
331+
- Add Node.js10 to CI setting [#428](https://github.com/motdotla/node-lambda/pull/428)
332+
333+
### Bugfixes
334+
- Fix StatementId [#451](https://github.com/motdotla/node-lambda/pull/451)
335+
- Bugfix of initialValue of recude in s3events [#447](https://github.com/motdotla/node-lambda/pull/447)
336+
- Added handling to catch and log error return from async lambda [#443](https://github.com/motdotla/node-lambda/pull/443)
337+
- Log result of an async handler method by resolving promise if a promise [#440](https://github.com/motdotla/node-lambda/pull/440)
338+
- Fix to display return value of handler [#427](https://github.com/motdotla/node-lambda/pull/427)
339+
- Fix to set array when same bucket [#423](https://github.com/motdotla/node-lambda/pull/423)

package-lock.json

Lines changed: 37 additions & 88 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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "0.11.7",
3+
"version": "0.12.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": {
@@ -32,17 +32,17 @@
3232
"author": "motdotla",
3333
"license": "BSD-2-Clause",
3434
"devDependencies": {
35-
"aws-sdk-mock": "^4.0.0",
35+
"aws-sdk-mock": "^4.1.0",
3636
"chai": "^4.1.2",
3737
"mocha": "",
3838
"node-zip": "^1.1.1",
3939
"standard": "^11.0.1"
4040
},
4141
"dependencies": {
4242
"archiver": "^2.1.1",
43-
"aws-sdk": "^2.279.1",
43+
"aws-sdk": "^2.290.0",
4444
"aws-xray-sdk-core": "^1.3.0",
45-
"commander": "^2.16.0",
45+
"commander": "^2.17.1",
4646
"continuation-local-storage": "^3.2.1",
4747
"dotenv": "^6.0.0",
4848
"fs-extra": "^7.0.0",

test/main.js

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

155155
it('version should be set', () => {
156-
assert.equal(lambda.version, '0.11.7')
156+
assert.equal(lambda.version, '0.12.0')
157157
})
158158

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

yarn.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ atomic-batcher@^1.0.2:
159159
version "1.0.2"
160160
resolved "https://registry.yarnpkg.com/atomic-batcher/-/atomic-batcher-1.0.2.tgz#d16901d10ccec59516c197b9ccd8930689b813b4"
161161

162-
aws-sdk-mock@^4.0.0:
163-
version "4.0.0"
164-
resolved "https://registry.yarnpkg.com/aws-sdk-mock/-/aws-sdk-mock-4.0.0.tgz#759d938f5df5eda4ef90b0535059a61b2e57f4dd"
162+
aws-sdk-mock@^4.1.0:
163+
version "4.1.0"
164+
resolved "https://registry.yarnpkg.com/aws-sdk-mock/-/aws-sdk-mock-4.1.0.tgz#e156de7010640f0a399072c852146fbfea9ad4aa"
165165
dependencies:
166166
aws-sdk "^2.260.1"
167167
sinon "^6.0.0"
@@ -181,9 +181,9 @@ aws-sdk@^2.260.1:
181181
uuid "3.1.0"
182182
xml2js "0.4.17"
183183

184-
aws-sdk@^2.279.1:
185-
version "2.279.1"
186-
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.279.1.tgz#3a4fd4167932e4361dbdcfcb174ce4840ffcbf20"
184+
aws-sdk@^2.290.0:
185+
version "2.290.0"
186+
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.290.0.tgz#e0e4777a62ad29df3b86521a103b3f02189a30f5"
187187
dependencies:
188188
buffer "4.9.1"
189189
events "1.1.1"
@@ -349,9 +349,9 @@ [email protected]:
349349
dependencies:
350350
graceful-readlink ">= 1.0.0"
351351

352-
commander@^2.16.0:
353-
version "2.16.0"
354-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50"
352+
commander@^2.17.1:
353+
version "2.17.1"
354+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
355355

356356
compress-commons@^1.2.0:
357357
version "1.2.0"

0 commit comments

Comments
 (0)