Skip to content

Commit 35a8cd9

Browse files
committed
Publish
- mutation-server-protocol@0.4.0 - stryker-mutator@0.2.0
1 parent 386cfb4 commit 35a8cd9

File tree

6 files changed

+44
-26
lines changed

6 files changed

+44
-26
lines changed

package-lock.json

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

packages/mutation-server-protocol/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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+
# [0.4.0](https://github.com/stryker-mutator/editor-plugins/compare/mutation-server-protocol@0.3.0...mutation-server-protocol@0.4.0) (2025-11-07)
7+
8+
### Features
9+
10+
- add initial VS Code plugin ([#20](https://github.com/stryker-mutator/editor-plugins/issues/20)) ([b8edef6](https://github.com/stryker-mutator/editor-plugins/commit/b8edef60abe4c0a7928dd474b24f705b12a93092))
11+
- support dual transport modes (stdio/socket) with static port configuration ([#65](https://github.com/stryker-mutator/editor-plugins/issues/65)) ([1b82ac7](https://github.com/stryker-mutator/editor-plugins/commit/1b82ac707b6c4756c5535b4a7d139d09b15858cc))
12+
613
# [0.3.0](https://github.com/stryker-mutator/editor-plugins/compare/mutation-server-protocol@0.2.0...mutation-server-protocol@0.3.0) (2025-05-09)
714

815
### Bug Fixes

packages/mutation-server-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-server-protocol",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"type": "module",
55
"description": "Schema validation for the mutation server protocol (MSP).",
66
"main": "dist/schema.js",

packages/vscode-plugin/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.2.0 (2025-11-07)
7+
8+
### Bug Fixes
9+
10+
- update prepublish script to use build instead of package ([#21](https://github.com/stryker-mutator/editor-plugins/issues/21)) ([26b8474](https://github.com/stryker-mutator/editor-plugins/commit/26b847454782e45335edbd28dfabbd786c1260cf))
11+
- **workspace:** support local workspace directory ([#54](https://github.com/stryker-mutator/editor-plugins/issues/54)) ([3cc5418](https://github.com/stryker-mutator/editor-plugins/commit/3cc5418172f86aeaace0e732529814b023699739))
12+
13+
### Features
14+
15+
- add initial VS Code plugin ([#20](https://github.com/stryker-mutator/editor-plugins/issues/20)) ([b8edef6](https://github.com/stryker-mutator/editor-plugins/commit/b8edef60abe4c0a7928dd474b24f705b12a93092))
16+
- add reload workspace command ([#56](https://github.com/stryker-mutator/editor-plugins/issues/56)) ([e5f0668](https://github.com/stryker-mutator/editor-plugins/commit/e5f06680dfd2dc6556278b6b2ce7344a88cc96df))
17+
- **plugin:** use plugin in StrykerJS projects without requiring manual setup ([#62](https://github.com/stryker-mutator/editor-plugins/issues/62)) ([1e587ef](https://github.com/stryker-mutator/editor-plugins/commit/1e587efd89c0ca698d62f8cd4f9cdbb7d28707ee))
18+
- **plugin:** use stdio instead of tcp socket for transport ([#66](https://github.com/stryker-mutator/editor-plugins/issues/66)) ([47b3456](https://github.com/stryker-mutator/editor-plugins/commit/47b3456315755e24485b005f79526fce28a43741))
19+
20+
# Change Log
21+
322
All notable changes to the "Stryker Mutation Testing" extension will be documented in this file.
423

524
## 0.1.0

packages/vscode-plugin/package-lock.json

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

packages/vscode-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "stryker-mutator",
33
"displayName": "Stryker Mutation Testing",
44
"description": "Test your tests with mutation testing.",
5-
"version": "0.1.0",
5+
"version": "0.2.0",
66
"publisher": "stryker-mutator",
77
"private": true,
88
"author": "Jasper van der Veen",
@@ -133,7 +133,7 @@
133133
},
134134
"dependencies": {
135135
"json-rpc-2.0": "^1.7.1",
136-
"mutation-server-protocol": "^0.3.0",
136+
"mutation-server-protocol": "0.4.0",
137137
"rxjs": "^7.8.2",
138138
"typed-inject": "^5.0.0"
139139
}

0 commit comments

Comments
 (0)