Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed dependencies with known vulnerabilities #25

Merged
merged 13 commits into from
Jun 2, 2021
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ yarn-error.log
dist
.DS_Store
.sls-simulate-registry
coverage

# Optional eslint cache
.eslintcache
Expand Down
7 changes: 7 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.10
v14.16.1
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: node_js
node_js:
- "8.10"
- "6.10"
- "14"
- "12"
- "10"
cache:
directories:
- node_modules
Expand Down
2 changes: 1 addition & 1 deletion examples/serverless-example/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.10
v14.16.1
18 changes: 9 additions & 9 deletions examples/serverless-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"author": "unlyEd",
"license": "MIT",
"devDependencies": {
"aws-sdk": "2.363.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"serverless": "1.33.2",
"serverless-offline": "3.31.3",
"serverless-webpack": "5.2.0",
"webpack": "4.26.1",
"webpack-node-externals": "1.7.2"
"aws-sdk": "2.918.0",
"@babel/core": "7.14.3",
"babel-loader": "8.2.2",
"@babel/preset-env": "7.14.4",
"serverless": "2.43.1",
"serverless-offline": "7.0.0",
"serverless-webpack": "5.5.0",
"webpack": "5.38.1",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@unly/serverless-plugin-dynamodb-backups": "1.2.0-alpha.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/serverless-example/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

service: example-dynamodbAutoBackups

frameworkVersion: "=1.33.2"
frameworkVersion: "=2.43.1"

plugins:
- '@unly/serverless-plugin-dynamodb-backups' # Must be first, even before "serverless-webpack", see https://github.com/UnlyEd/serverless-plugin-dynamodb-backups
Expand Down
9,397 changes: 5,319 additions & 4,078 deletions examples/serverless-example/yarn.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"author": "unlyEd",
"license": "MIT",
"dependencies": {
"axios": "0.18.0",
"axios": "0.21.1",
"bluebird": "3.5.3",
"chalk": "2.4.1",
"lodash.assign": "4.2.0",
Expand All @@ -52,14 +52,14 @@
},
"devDependencies": {
"aws-sdk": "2.352.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"@babel/cli": "7.14.3",
"@babel/core": "7.14.3",
"babel-preset-env": "1.7.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14",
"jest": "23.6.0",
"serverless": "1.33.2"
"jest": "27.0.3",
"serverless": "2.43.1"
},
"peerDependencies": {
"aws-sdk": ">= 2.x.x"
Expand Down
Loading