Skip to content

Commit a43e927

Browse files
committed
chore: release master
1 parent 4f2f022 commit a43e927

5 files changed

Lines changed: 50 additions & 4 deletions

File tree

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"packages/cli": "0.1.0",
3-
"packages/mcp": "0.6.0"
2+
"packages/cli": "0.2.0",
3+
"packages/mcp": "0.7.0"
44
}

packages/cli/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
## [0.2.0](https://github.com/gemini-testing/testplane-ai/compare/cli-v0.1.0...cli-v0.2.0) (2026-06-10)
4+
5+
6+
### Features
7+
8+
* add support for headful mode in CLI ([#38](https://github.com/gemini-testing/testplane-ai/issues/38)) ([df1a7c5](https://github.com/gemini-testing/testplane-ai/commit/df1a7c567c1b384a96690f8ac5e3429b87057f05))
9+
* add the timeout option to navigate command ([#35](https://github.com/gemini-testing/testplane-ai/issues/35)) ([484a5b3](https://github.com/gemini-testing/testplane-ai/commit/484a5b3e3cff8fffbbd5bc97fb877aef0b09f7be))
10+
* close browser sessions automatically by TTL ([#37](https://github.com/gemini-testing/testplane-ai/issues/37)) ([5be97eb](https://github.com/gemini-testing/testplane-ai/commit/5be97eb8b45ff2f3d410465293199aa788316e11))
11+
* implement browser-console tool ([#40](https://github.com/gemini-testing/testplane-ai/issues/40)) ([9e965f9](https://github.com/gemini-testing/testplane-ai/commit/9e965f968371b196c65e1da1bcdc26eb5a3f4938))
12+
* implement initial version of testplane cli ([#34](https://github.com/gemini-testing/testplane-ai/issues/34)) ([9aec732](https://github.com/gemini-testing/testplane-ai/commit/9aec7321df8155196fa3f7c9f1de888405db51e8))
13+
* implement inspect-result tool ([#42](https://github.com/gemini-testing/testplane-ai/issues/42)) ([f37ca5d](https://github.com/gemini-testing/testplane-ai/commit/f37ca5d72c4eece1f7978c1e3f380aca0ccc3bc0))
14+
* implement run-code tool ([#44](https://github.com/gemini-testing/testplane-ai/issues/44)) ([e76404d](https://github.com/gemini-testing/testplane-ai/commit/e76404d9bcaa4f87e2b437b7c463e5d2deb1aec6))
15+
* implement select-option tool ([#39](https://github.com/gemini-testing/testplane-ai/issues/39)) ([0305aa4](https://github.com/gemini-testing/testplane-ai/commit/0305aa434f6ee28eac407b0b22d9d87e7ec71e1a))
16+
* implement the REPL integration ([#46](https://github.com/gemini-testing/testplane-ai/issues/46)) ([4f2f022](https://github.com/gemini-testing/testplane-ai/commit/4f2f0226e8bc75d58e87575d831c28a176d66715))
17+
* implement the test-results command ([#41](https://github.com/gemini-testing/testplane-ai/issues/41)) ([cec6a90](https://github.com/gemini-testing/testplane-ai/commit/cec6a90d289fc96aa00185246cde96c4d6af487d))
18+
* implement the time-travel-snapshot tool ([#43](https://github.com/gemini-testing/testplane-ai/issues/43)) ([7626c55](https://github.com/gemini-testing/testplane-ai/commit/7626c550313185d3f36f6ac1ed7bde57db45f963))
19+
* save snapshots to file by default and remove element-based snapshots ([#36](https://github.com/gemini-testing/testplane-ai/issues/36)) ([d692e66](https://github.com/gemini-testing/testplane-ai/commit/d692e66971b168217140f7f8b905497fe3f9747c))
20+
21+
22+
### Bug Fixes
23+
24+
* revamp autolaunch behavior and ignore resource loading errors when navigating ([#45](https://github.com/gemini-testing/testplane-ai/issues/45)) ([4170fcc](https://github.com/gemini-testing/testplane-ai/commit/4170fcc445080f78b628a3aabf4e5da7d550470f))

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@testplane/cli",
3-
"version": "0.0.1",
3+
"version": "0.2.0",
44
"description": "Daemon-backed CLI for Testplane browser-automation tools",
55
"main": "build/cli.js",
66
"type": "module",

packages/mcp/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [0.7.0](https://github.com/gemini-testing/testplane-ai/compare/mcp-v0.6.0...mcp-v0.7.0) (2026-06-10)
4+
5+
6+
### Features
7+
8+
* add support for headful mode in CLI ([#38](https://github.com/gemini-testing/testplane-ai/issues/38)) ([df1a7c5](https://github.com/gemini-testing/testplane-ai/commit/df1a7c567c1b384a96690f8ac5e3429b87057f05))
9+
* add the timeout option to navigate command ([#35](https://github.com/gemini-testing/testplane-ai/issues/35)) ([484a5b3](https://github.com/gemini-testing/testplane-ai/commit/484a5b3e3cff8fffbbd5bc97fb877aef0b09f7be))
10+
* implement browser-console tool ([#40](https://github.com/gemini-testing/testplane-ai/issues/40)) ([9e965f9](https://github.com/gemini-testing/testplane-ai/commit/9e965f968371b196c65e1da1bcdc26eb5a3f4938))
11+
* implement initial version of testplane cli ([#34](https://github.com/gemini-testing/testplane-ai/issues/34)) ([9aec732](https://github.com/gemini-testing/testplane-ai/commit/9aec7321df8155196fa3f7c9f1de888405db51e8))
12+
* implement inspect-result tool ([#42](https://github.com/gemini-testing/testplane-ai/issues/42)) ([f37ca5d](https://github.com/gemini-testing/testplane-ai/commit/f37ca5d72c4eece1f7978c1e3f380aca0ccc3bc0))
13+
* implement run-code tool ([#44](https://github.com/gemini-testing/testplane-ai/issues/44)) ([e76404d](https://github.com/gemini-testing/testplane-ai/commit/e76404d9bcaa4f87e2b437b7c463e5d2deb1aec6))
14+
* implement select-option tool ([#39](https://github.com/gemini-testing/testplane-ai/issues/39)) ([0305aa4](https://github.com/gemini-testing/testplane-ai/commit/0305aa434f6ee28eac407b0b22d9d87e7ec71e1a))
15+
* implement the REPL integration ([#46](https://github.com/gemini-testing/testplane-ai/issues/46)) ([4f2f022](https://github.com/gemini-testing/testplane-ai/commit/4f2f0226e8bc75d58e87575d831c28a176d66715))
16+
* implement the test-results command ([#41](https://github.com/gemini-testing/testplane-ai/issues/41)) ([cec6a90](https://github.com/gemini-testing/testplane-ai/commit/cec6a90d289fc96aa00185246cde96c4d6af487d))
17+
* implement the time-travel-snapshot tool ([#43](https://github.com/gemini-testing/testplane-ai/issues/43)) ([7626c55](https://github.com/gemini-testing/testplane-ai/commit/7626c550313185d3f36f6ac1ed7bde57db45f963))
18+
* save snapshots to file by default and remove element-based snapshots ([#36](https://github.com/gemini-testing/testplane-ai/issues/36)) ([d692e66](https://github.com/gemini-testing/testplane-ai/commit/d692e66971b168217140f7f8b905497fe3f9747c))
19+
20+
21+
### Bug Fixes
22+
23+
* revamp autolaunch behavior and ignore resource loading errors when navigating ([#45](https://github.com/gemini-testing/testplane-ai/issues/45)) ([4170fcc](https://github.com/gemini-testing/testplane-ai/commit/4170fcc445080f78b628a3aabf4e5da7d550470f))
24+
325
## [0.6.0](https://github.com/gemini-testing/testplane-mcp/compare/v0.5.0...v0.6.0) (2025-10-15)
426

527

packages/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@testplane/mcp",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "MCP server for Testplane tool",
55
"main": "build/cli.js",
66
"type": "module",

0 commit comments

Comments
 (0)