Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
strykermutator-npa committed Nov 6, 2019
1 parent 067df6d commit 650f58e
Show file tree
Hide file tree
Showing 40 changed files with 266 additions and 61 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)


### Bug Fixes

* edge cases, duplication, log output ([#1720](https://github.com/stryker-mutator/stryker/issues/1720)) ([7f42d34](https://github.com/stryker-mutator/stryker/commit/7f42d34))
* **jest-runner:** improve error message for missing react-scripts ([#1694](https://github.com/stryker-mutator/stryker/issues/1694)) ([313e3bf](https://github.com/stryker-mutator/stryker/commit/313e3bf))
* **tempDir:** don't resolve temp dir as input file ([#1710](https://github.com/stryker-mutator/stryker/issues/1710)) ([bbdd02a](https://github.com/stryker-mutator/stryker/commit/bbdd02a))


### Features

* **javascript-mutator:** allow to override babel plugins ([#1764](https://github.com/stryker-mutator/stryker/issues/1764)) ([ddb3d60](https://github.com/stryker-mutator/stryker/commit/ddb3d60))
* **mutant-matcher:** lower memory usage ([#1794](https://github.com/stryker-mutator/stryker/issues/1794)) ([16294e5](https://github.com/stryker-mutator/stryker/commit/16294e5))
* **progress-reporter:** show timed out mutant count ([#1818](https://github.com/stryker-mutator/stryker/issues/1818)) ([067df6d](https://github.com/stryker-mutator/stryker/commit/067df6d))
* **typescript:** do not mutate `interfaces` ([#1662](https://github.com/stryker-mutator/stryker/issues/1662)) ([86b2ffe](https://github.com/stryker-mutator/stryker/commit/86b2ffe))





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "2.1.0",
"version": "2.2.0",
"command": {
"version": {
"allowBranch": "master"
Expand Down
12 changes: 12 additions & 0 deletions packages/api/CHANGELOG.md
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)


### Features

* **javascript-mutator:** allow to override babel plugins ([#1764](https://github.com/stryker-mutator/stryker/issues/1764)) ([ddb3d60](https://github.com/stryker-mutator/stryker/commit/ddb3d60))
* **mutant-matcher:** lower memory usage ([#1794](https://github.com/stryker-mutator/stryker/issues/1794)) ([16294e5](https://github.com/stryker-mutator/stryker/commit/16294e5))





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/api
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/api",
"version": "2.1.0",
"version": "2.2.0",
"description": "The api for the extendable JavaScript mutation testing framework Stryker",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/babel-transpiler/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)

**Note:** Version bump only for package @stryker-mutator/babel-transpiler





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/babel-transpiler
Expand Down
8 changes: 4 additions & 4 deletions packages/babel-transpiler/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/babel-transpiler",
"version": "2.1.0",
"version": "2.2.0",
"description": "A plugin for babel projects using Stryker",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -44,8 +44,8 @@
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/babel-transpiler#readme",
"license": "Apache-2.0",
"dependencies": {
"@stryker-mutator/api": "^2.1.0",
"@stryker-mutator/util": "^2.1.0",
"@stryker-mutator/api": "^2.2.0",
"@stryker-mutator/util": "^2.2.0",
"minimatch": "~3.0.4"
},
"peerDependencies": {
Expand All @@ -60,7 +60,7 @@
"@babel/preset-flow": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@stryker-mutator/test-helpers": "^2.1.0",
"@stryker-mutator/test-helpers": "^2.2.0",
"@types/babel__core": "~7.1.0",
"@types/babel__generator": "~7.6.0",
"@types/babel__template": "~7.0.1",
Expand Down
20 changes: 20 additions & 0 deletions packages/core/CHANGELOG.md
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)


### Bug Fixes

* edge cases, duplication, log output ([#1720](https://github.com/stryker-mutator/stryker/issues/1720)) ([7f42d34](https://github.com/stryker-mutator/stryker/commit/7f42d34))
* **tempDir:** don't resolve temp dir as input file ([#1710](https://github.com/stryker-mutator/stryker/issues/1710)) ([bbdd02a](https://github.com/stryker-mutator/stryker/commit/bbdd02a))


### Features

* **javascript-mutator:** allow to override babel plugins ([#1764](https://github.com/stryker-mutator/stryker/issues/1764)) ([ddb3d60](https://github.com/stryker-mutator/stryker/commit/ddb3d60))
* **mutant-matcher:** lower memory usage ([#1794](https://github.com/stryker-mutator/stryker/issues/1794)) ([16294e5](https://github.com/stryker-mutator/stryker/commit/16294e5))
* **progress-reporter:** show timed out mutant count ([#1818](https://github.com/stryker-mutator/stryker/issues/1818)) ([067df6d](https://github.com/stryker-mutator/stryker/commit/067df6d))
* **stryker:** remind user to add `.stryker-temp` to gitignore ([#1722](https://github.com/stryker-mutator/stryker/issues/1722)) ([596e1ee](https://github.com/stryker-mutator/stryker/commit/596e1ee))





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)


Expand Down
8 changes: 4 additions & 4 deletions packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/core",
"version": "2.1.0",
"version": "2.2.0",
"description": "The extendable JavaScript mutation testing framework",
"main": "src/Stryker.js",
"typings": "src/Stryker.d.ts",
Expand Down Expand Up @@ -54,8 +54,8 @@
"stryker": "./bin/stryker"
},
"dependencies": {
"@stryker-mutator/api": "^2.1.0",
"@stryker-mutator/util": "^2.1.0",
"@stryker-mutator/api": "^2.2.0",
"@stryker-mutator/util": "^2.2.0",
"chalk": "~2.4.1",
"commander": "~3.0.1",
"get-port": "~5.0.0",
Expand All @@ -79,7 +79,7 @@
},
"devDependencies": {
"@stryker-mutator/api": "^0.24.1",
"@stryker-mutator/test-helpers": "^2.1.0",
"@stryker-mutator/test-helpers": "^2.2.0",
"@types/inquirer": "~6.0.2",
"@types/istanbul-lib-instrument": "~1.7.0",
"@types/lodash.flatmap": "^4.5.6",
Expand Down
8 changes: 8 additions & 0 deletions packages/grunt-stryker/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)

**Note:** Version bump only for package grunt-stryker





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package grunt-stryker
Expand Down
4 changes: 2 additions & 2 deletions packages/grunt-stryker/package.json
@@ -1,7 +1,7 @@
{
"name": "grunt-stryker",
"description": "Grunt plugin for the mutation testing framework 'stryker'",
"version": "2.1.0",
"version": "2.2.0",
"bugs": {
"url": "https://github.com/stryker-mutator/stryker/issues"
},
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"main": "Gruntfile.js",
"devDependencies": {
"@stryker-mutator/api": "^2.1.0"
"@stryker-mutator/api": "^2.2.0"
},
"peerDependencies": {
"@stryker-mutator/core": "^2.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/html-reporter/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)

**Note:** Version bump only for package @stryker-mutator/html-reporter





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/html-reporter
Expand Down
8 changes: 4 additions & 4 deletions packages/html-reporter/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/html-reporter",
"version": "2.1.0",
"version": "2.2.0",
"description": "An html reporter for the JavaScript mutation testing framework Stryker",
"main": "src/index.js",
"typings": "src/index.d.ts",
Expand Down Expand Up @@ -33,8 +33,8 @@
},
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/html-reporter#readme",
"dependencies": {
"@stryker-mutator/api": "^2.1.0",
"@stryker-mutator/util": "^2.1.0",
"@stryker-mutator/api": "^2.2.0",
"@stryker-mutator/util": "^2.2.0",
"file-url": "~3.0.0",
"mkdirp": "~0.5.1",
"mutation-testing-elements": "^1.0.2",
Expand All @@ -44,7 +44,7 @@
"@stryker-mutator/core": "^2.0.0"
},
"devDependencies": {
"@stryker-mutator/test-helpers": "^2.1.0",
"@stryker-mutator/test-helpers": "^2.2.0",
"@types/jsdom": "~12.2.0",
"@types/node": "^10.11.5"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/jasmine-framework/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)

**Note:** Version bump only for package @stryker-mutator/jasmine-framework





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/jasmine-framework
Expand Down
4 changes: 2 additions & 2 deletions packages/jasmine-framework/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/jasmine-framework",
"version": "2.1.0",
"version": "2.2.0",
"description": "A plugin to use the Jasmine test framework in Stryker, the JavaScript mutation testing framework",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -34,7 +34,7 @@
"jasmine-core": ">=2"
},
"dependencies": {
"@stryker-mutator/api": "^2.1.0"
"@stryker-mutator/api": "^2.2.0"
},
"contributors": [],
"engines": {
Expand Down
8 changes: 8 additions & 0 deletions packages/jasmine-runner/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)

**Note:** Version bump only for package @stryker-mutator/jasmine-runner





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/jasmine-runner
Expand Down
10 changes: 5 additions & 5 deletions packages/jasmine-runner/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/jasmine-runner",
"version": "2.1.0",
"version": "2.2.0",
"description": "A plugin to use the Jasmine (NodeJS) test runner in Stryker, the mutation testing framework for JavaScript and friends",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -41,12 +41,12 @@
"jasmine": ">=2"
},
"devDependencies": {
"@stryker-mutator/jasmine-framework": "^2.1.0",
"@stryker-mutator/test-helpers": "^2.1.0"
"@stryker-mutator/jasmine-framework": "^2.2.0",
"@stryker-mutator/test-helpers": "^2.2.0"
},
"dependencies": {
"@stryker-mutator/api": "^2.1.0",
"@stryker-mutator/util": "^2.1.0"
"@stryker-mutator/api": "^2.2.0",
"@stryker-mutator/util": "^2.2.0"
},
"initStrykerConfig": {
"jasmineConfigFile": "spec/support/jasmine.json"
Expand Down
11 changes: 11 additions & 0 deletions packages/javascript-mutator/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)


### Features

* **javascript-mutator:** allow to override babel plugins ([#1764](https://github.com/stryker-mutator/stryker/issues/1764)) ([ddb3d60](https://github.com/stryker-mutator/stryker/commit/ddb3d60))





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/javascript-mutator
Expand Down
8 changes: 4 additions & 4 deletions packages/javascript-mutator/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/javascript-mutator",
"version": "2.1.0",
"version": "2.2.0",
"description": "A plugin for javascript projects using Stryker",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"@babel/generator": "~7.7.0",
"@babel/parser": "~7.7.0",
"@babel/traverse": "~7.7.0",
"@stryker-mutator/api": "^2.1.0",
"@stryker-mutator/api": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
"tslib": "~1.10.0"
},
Expand All @@ -49,8 +49,8 @@
},
"devDependencies": {
"@babel/types": "~7.7.1",
"@stryker-mutator/mutator-specification": "^2.1.0",
"@stryker-mutator/test-helpers": "^2.1.0",
"@stryker-mutator/mutator-specification": "^2.2.0",
"@stryker-mutator/test-helpers": "^2.2.0",
"@types/babel__generator": "^7.0.0",
"@types/babel__traverse": "^7.0.0",
"@types/lodash.clonedeep": "^4.5.6"
Expand Down
11 changes: 11 additions & 0 deletions packages/jest-runner/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/stryker-mutator/stryker/compare/v2.1.0...v2.2.0) (2019-11-06)


### Bug Fixes

* **jest-runner:** improve error message for missing react-scripts ([#1694](https://github.com/stryker-mutator/stryker/issues/1694)) ([313e3bf](https://github.com/stryker-mutator/stryker/commit/313e3bf))





# [2.1.0](https://github.com/stryker-mutator/stryker/compare/v2.0.2...v2.1.0) (2019-09-08)

**Note:** Version bump only for package @stryker-mutator/jest-runner
Expand Down
6 changes: 3 additions & 3 deletions packages/jest-runner/package.json
@@ -1,6 +1,6 @@
{
"name": "@stryker-mutator/jest-runner",
"version": "2.1.0",
"version": "2.2.0",
"description": "A plugin to use the jest test runner and framework in Stryker, the JavaScript mutation testing framework",
"main": "src/index.js",
"scripts": {
Expand Down Expand Up @@ -39,7 +39,7 @@
},
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/jest-runner#readme",
"devDependencies": {
"@stryker-mutator/test-helpers": "^2.1.0",
"@stryker-mutator/test-helpers": "^2.2.0",
"@types/semver": "~6.2.0",
"jest": "^24.8.0",
"react": "~16.11.0",
Expand All @@ -52,7 +52,7 @@
"jest": ">= 22.0.0"
},
"dependencies": {
"@stryker-mutator/api": "^2.1.0",
"@stryker-mutator/api": "^2.2.0",
"semver": "~6.3.0"
},
"initStrykerConfig": {
Expand Down

0 comments on commit 650f58e

Please sign in to comment.