Skip to content

Commit 3cd3cf2

Browse files
v3.0.0
1 parent c8be6e3 commit 3cd3cf2

File tree

11 files changed

+110
-15
lines changed

11 files changed

+110
-15
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.5...v3.0.0) (2023-11-16)
7+
8+
9+
### Bug Fixes
10+
11+
* **result-status-bar:** only use valid mutants ([#2842](https://github.com/stryker-mutator/mutation-testing-elements/issues/2842)) ([7af8305](https://github.com/stryker-mutator/mutation-testing-elements/commit/7af8305a8c9951099aa657052f4eb00fc3ad91fa))
12+
13+
14+
### Build System
15+
16+
* overhaul build with vite & playwright ([#2825](https://github.com/stryker-mutator/mutation-testing-elements/issues/2825)) ([3176cdc](https://github.com/stryker-mutator/mutation-testing-elements/commit/3176cdc7f3faaed319aadaf112e8b2224b3b7ffc))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* mutation-testing-report-schema and mutation-testing-metrics are now ESM
22+
* report-schema `MutantStatus` is a union type instead of TS enum
23+
24+
25+
26+
27+
628
## [2.0.5](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.4...v2.0.5) (2023-10-31)
729

830
**Note:** Version bump only for package root

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages": ["packages/*"],
3-
"version": "2.0.5",
3+
"version": "3.0.0",
44
"command": {
55
"version": {
66
"allowBranch": "master",

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/elements/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.5...v3.0.0) (2023-11-16)
7+
8+
9+
### Bug Fixes
10+
11+
* **result-status-bar:** only use valid mutants ([#2842](https://github.com/stryker-mutator/mutation-testing-elements/issues/2842)) ([7af8305](https://github.com/stryker-mutator/mutation-testing-elements/commit/7af8305a8c9951099aa657052f4eb00fc3ad91fa))
12+
13+
14+
### Build System
15+
16+
* overhaul build with vite & playwright ([#2825](https://github.com/stryker-mutator/mutation-testing-elements/issues/2825)) ([3176cdc](https://github.com/stryker-mutator/mutation-testing-elements/commit/3176cdc7f3faaed319aadaf112e8b2224b3b7ffc))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* mutation-testing-report-schema and mutation-testing-metrics are now ESM
22+
* report-schema `MutantStatus` is a union type instead of TS enum
23+
24+
25+
26+
27+
628
## [2.0.5](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.4...v2.0.5) (2023-10-31)
729

830
**Note:** Version bump only for package mutation-testing-elements

packages/elements/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-elements",
3-
"version": "2.0.5",
3+
"version": "3.0.0",
44
"description": "A suite of web components for a mutation testing report.",
55
"unpkg": "dist/mutation-test-elements.js",
66
"main": "dist/index.cjs",
@@ -56,8 +56,8 @@
5656
"eslint-config-mte": "*",
5757
"express": "4.18.2",
5858
"lit": "3.1.0",
59-
"mutation-testing-metrics": "2.0.5",
60-
"mutation-testing-report-schema": "2.0.5",
59+
"mutation-testing-metrics": "3.0.0",
60+
"mutation-testing-report-schema": "3.0.0",
6161
"postcss": "8.4.31",
6262
"prism-svelte": "0.5.0",
6363
"prismjs": "1.29.0",

packages/metrics-scala/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.5...v3.0.0) (2023-11-16)
7+
8+
9+
### Build System
10+
11+
* overhaul build with vite & playwright ([#2825](https://github.com/stryker-mutator/mutation-testing-elements/issues/2825)) ([3176cdc](https://github.com/stryker-mutator/mutation-testing-elements/commit/3176cdc7f3faaed319aadaf112e8b2224b3b7ffc))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* mutation-testing-report-schema and mutation-testing-metrics are now ESM
17+
* report-schema `MutantStatus` is a union type instead of TS enum
18+
19+
20+
21+
22+
623
## [2.0.5](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.4...v2.0.5) (2023-10-31)
724

825
**Note:** Version bump only for package mutation-testing-metrics-scala

packages/metrics-scala/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-metrics-scala",
3-
"version": "2.0.5",
3+
"version": "3.0.0",
44
"description": "Zero-dependency library to calculate mutation testing metrics in Scala.",
55
"nx": {
66
"name": "metrics-scala"

packages/metrics/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.5...v3.0.0) (2023-11-16)
7+
8+
9+
### Build System
10+
11+
* overhaul build with vite & playwright ([#2825](https://github.com/stryker-mutator/mutation-testing-elements/issues/2825)) ([3176cdc](https://github.com/stryker-mutator/mutation-testing-elements/commit/3176cdc7f3faaed319aadaf112e8b2224b3b7ffc))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* mutation-testing-report-schema and mutation-testing-metrics are now ESM
17+
* report-schema `MutantStatus` is a union type instead of TS enum
18+
19+
20+
21+
22+
623
## [2.0.5](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.4...v2.0.5) (2023-10-31)
724

825
**Note:** Version bump only for package mutation-testing-metrics

packages/metrics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-metrics",
3-
"version": "2.0.5",
3+
"version": "3.0.0",
44
"description": "Utility functions to calculate mutation testing metrics.",
55
"type": "module",
66
"main": "dist/src/index.js",
@@ -26,7 +26,7 @@
2626
},
2727
"homepage": "https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/metrics#readme",
2828
"dependencies": {
29-
"mutation-testing-report-schema": "2.0.5"
29+
"mutation-testing-report-schema": "3.0.0"
3030
},
3131
"devDependencies": {
3232
"eslint-config-mte": "*"

packages/report-schema/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.5...v3.0.0) (2023-11-16)
7+
8+
9+
### Build System
10+
11+
* overhaul build with vite & playwright ([#2825](https://github.com/stryker-mutator/mutation-testing-elements/issues/2825)) ([3176cdc](https://github.com/stryker-mutator/mutation-testing-elements/commit/3176cdc7f3faaed319aadaf112e8b2224b3b7ffc))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* mutation-testing-report-schema and mutation-testing-metrics are now ESM
17+
* report-schema `MutantStatus` is a union type instead of TS enum
18+
19+
20+
21+
22+
623
## [2.0.5](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.4...v2.0.5) (2023-10-31)
724

825
**Note:** Version bump only for package mutation-testing-report-schema

packages/report-schema/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-report-schema",
3-
"version": "2.0.5",
3+
"version": "3.0.0",
44
"description": "The json schema for a mutation testing report.",
55
"main": "dist/src/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)