Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
bump version of codecov dep
Browse files Browse the repository at this point in the history
  • Loading branch information
chgohlke committed Aug 1, 2020
1 parent cdbcd0a commit f6e4ef0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function doThrowAnException(body) {
}
```
With the key word `errorMapping` shown in the example above you can custom mapping of thrown errors to http response code error.
With the key word `errorMapping` shown in the example above you can adjust the assignment of thrown errors to http response code error.
The action can throw an object like
"throw {reason: 'NotFound', message: 'object id not found'}"
Expand Down Expand Up @@ -406,6 +406,8 @@ Increase version in **package.json** (using [semantic version syntax](https://se
Thats all.
## Release History
* 0.8.4
* proxyIntegration: expose route path (#49) (thanks to [@evgenykireev ](https://github.com/evgenykireev))
* 0.8.3
* added records to the SQS (#43) and SNS (#44) action for further processing
* 0.8.2
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-lambda-router",
"version": "0.8.3",
"version": "0.8.4",
"description": "AWS lambda router",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -32,12 +32,12 @@
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/node": "^8.10.59",
"codecov": "^3.6.2",
"codecov": "3.7.2",
"jest": "24.9.0",
"ts-jest": "24.2.0",
"typescript": "3.7.5"
},
"dependencies": {
"@types/aws-lambda": "^8.10.40"
"@types/aws-lambda": "8.10.59"
}
}
14 changes: 8 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,10 @@
version "1.0.0"
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.0.0.tgz#9c13c2574c92d4503b005feca8f2e16cc1611506"

"@types/aws-lambda@^8.10.40":
version "8.10.40"
resolved "https://registry.yarnpkg.com/@types/aws-lambda/-/aws-lambda-8.10.40.tgz#d60b912a9425f74f60c57667a8c6b99d58df4ada"
"@types/aws-lambda@8.10.59":
version "8.10.59"
resolved "https://registry.yarnpkg.com/@types/aws-lambda/-/aws-lambda-8.10.59.tgz#64f602aef1cac9b21a74aad6705bf350c4a5173a"
integrity sha512-X/JclTKqHvo3nMTkHzClHhRz0yxn/VAr7J7LO6jBqaksZlhcDAWuU4oT1Yrt3E9MvX5jyyVIZtrwAI7oPXzXIg==

"@types/babel__core@^7.1.0":
version "7.1.3"
Expand Down Expand Up @@ -730,9 +731,10 @@ co@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"

codecov@^3.6.2:
version "3.6.5"
resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.6.5.tgz#d73ce62e8a021f5249f54b073e6f2d6a513f172a"
codecov@3.7.2:
version "3.7.2"
resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.7.2.tgz#998e68c8c1ef4b55cfcf11cd456866d35e13d693"
integrity sha512-fmCjAkTese29DUX3GMIi4EaKGflHa4K51EoMc29g8fBHawdk/+KEq5CWOeXLdd9+AT7o1wO4DIpp/Z1KCqCz1g==
dependencies:
argv "0.0.2"
ignore-walk "3.0.3"
Expand Down

0 comments on commit f6e4ef0

Please sign in to comment.