Skip to content

Commit b1172d2

Browse files
updated dependencies (#14)
1 parent acf4634 commit b1172d2

File tree

7 files changed

+1252
-965
lines changed

7 files changed

+1252
-965
lines changed

.github/workflows/mutation-testing.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ jobs:
2020
- name: Install
2121
run: yarn
2222

23-
- name: Run unit tests
24-
run: yarn test
25-
2623
- name: Run mutation tests
2724
run: yarn mutate
2825
env:

CHANGELOG.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
# <<<----- ADD NEW VERSIONS HERE
99

10+
## 2.1.1 - (October 27, 2020)
11+
### Changed
12+
- Update Dependencies
13+
1014
## 2.1.0 - (August 06, 2020)
1115
### Changed
1216
- Added feature to return failed pipeline state when a target pipeline was stopped manually.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Resources:
6262
Properties:
6363
Location:
6464
ApplicationId: arn:aws:serverlessrepo:us-east-1:673103718481:applications/CodePipeline-Waiter
65-
SemanticVersion: 2.1.0
65+
SemanticVersion: 2.1.1
6666
# Optional Parameter to control the export name of the nested stack
6767
Parameters:
6868
ExportPrefix: !Ref AWS::StackName

codepipeline-waiter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Metadata:
2424
LicenseUrl: LICENSE
2525
Name: CodePipeline-Waiter
2626
ReadmeUrl: README.md
27-
SemanticVersion: 2.1.0
27+
SemanticVersion: 2.1.1
2828
SourceCodeUrl: https://github.com/xavier-thomas/aws-codepipeline-waiter
2929
SpdxLicenseId: BSD-3-Clause
3030

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-codepipeline-waiter",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "An AWS lambda for a deployment AWS code-pipeline to monitor and wait for another pipeline.",
55
"main": "src/index.js",
66
"keywords": [
@@ -31,25 +31,25 @@
3131
}
3232
},
3333
"dependencies": {
34-
"aws-sdk": "^2.727.0"
34+
"aws-sdk": "^2.779.0"
3535
},
3636
"devDependencies": {
37-
"@babel/cli": "^7.10.5",
38-
"@babel/core": "^7.11.1",
39-
"@babel/node": "^7.10.5",
40-
"@babel/preset-env": "^7.11.0",
41-
"@stryker-mutator/babel-transpiler": "^3.3.1",
42-
"@stryker-mutator/core": "^3.3.1",
43-
"@stryker-mutator/javascript-mutator": "^3.3.1",
44-
"@stryker-mutator/jest-runner": "^3.3.1",
45-
"eslint": "^7.6.0",
46-
"eslint-config-prettier": "^6.11.0",
37+
"@babel/cli": "^7.12.1",
38+
"@babel/core": "^7.12.3",
39+
"@babel/node": "^7.12.1",
40+
"@babel/preset-env": "^7.12.1",
41+
"@stryker-mutator/babel-transpiler": "^4.0.0",
42+
"@stryker-mutator/core": "^4.0.0",
43+
"@stryker-mutator/javascript-mutator": "^4.0.0",
44+
"@stryker-mutator/jest-runner": "^4.0.0",
45+
"eslint": "^7.12.1",
46+
"eslint-config-prettier": "^6.14.0",
4747
"eslint-plugin-node": "^11.1.0",
4848
"eslint-plugin-prettier": "^3.1.4",
49-
"husky": "^4.2.5",
50-
"jest": "^26.2.2",
51-
"jest-junit": "^11.1.0",
52-
"jest-sonar": "^0.2.10",
53-
"prettier": "^2.0.5"
49+
"husky": "^4.3.0",
50+
"jest": "^26.6.1",
51+
"jest-junit": "^12.0.0",
52+
"jest-sonar": "^0.2.11",
53+
"prettier": "^2.1.2"
5454
}
5555
}

stryker.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = function(config) {
77
dashboard: {
88
reportType: 'full'
99
},
10-
maxConcurrentTestRunners: 1,
10+
maxConcurrentTestRunners: 7,
1111
mutate: ['src/**/*.js', '!src/**/*.test.js', '!src/mocks.js'],
1212
mutator: 'javascript',
1313
jest: {

0 commit comments

Comments
 (0)