Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Packages/src": "3.0.0-beta.49",
"cli/dispatcher": "3.0.1-beta.13",
"cli/project-runner": "3.0.0-beta.47"
"Packages/src": "3.0.0-beta.50",
"cli/dispatcher": "3.1.0-beta.13",
"cli/project-runner": "3.0.0-beta.48"
}
2 changes: 1 addition & 1 deletion .uloop/project-runner-pin.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"projectRunnerVersion": "3.0.0-beta.47",
"projectRunnerVersion": "3.0.0-beta.48",
"minimumDispatcherVersion": "3.0.1-beta.6"
}
23 changes: 23 additions & 0 deletions Packages/src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [3.0.0-beta.50](https://github.com/hatayama/unity-cli-loop/compare/v3.0.0-beta.49...v3.0.0-beta.50) (2026-07-13)


### Features

* add pause point capture modes and history ([#1729](https://github.com/hatayama/unity-cli-loop/issues/1729)) ([0b5e72e](https://github.com/hatayama/unity-cli-loop/commit/0b5e72e788a6f032001ee3670c117d8034089234))
* add pause-point watch expressions ([#1733](https://github.com/hatayama/unity-cli-loop/issues/1733)) ([875835f](https://github.com/hatayama/unity-cli-loop/commit/875835fc71deb70ccdc0bea0d67582a0d42a2f80))
* Improve CLI guidance for tool enums, busy errors, and dynamic-code diagnostics ([7318b9d](https://github.com/hatayama/unity-cli-loop/commit/7318b9d1dcead7b52241e88adab7538b47a5f95a))
* Improve pause point observability with cleared reasons, collection previews, and raw capture ([03c656b](https://github.com/hatayama/unity-cli-loop/commit/03c656b8734de3d87a32dc7e7f90fea61031eeaf))
* Pause point wait command is now await-pause-point ([#1698](https://github.com/hatayama/unity-cli-loop/issues/1698)) ([f1d0a9d](https://github.com/hatayama/unity-cli-loop/commit/f1d0a9d1c6c72a8699a2468e68a05262a50642dc))
* Pause-point snapshots now identify which instance was hit ([#1737](https://github.com/hatayama/unity-cli-loop/issues/1737)) ([a086ac9](https://github.com/hatayama/unity-cli-loop/commit/a086ac9f192dcc2e7c087c6f475f42b0962052e5))
* Prompt to remove the temporary V3 migration skill after docs are migrated ([#1711](https://github.com/hatayama/unity-cli-loop/issues/1711)) ([a6eff6e](https://github.com/hatayama/unity-cli-loop/commit/a6eff6e889a9d980040a1a1901b5e2390bfe0214))


### Bug Fixes

* captured variables stay readable after re-enabling a pause point while paused ([#1734](https://github.com/hatayama/unity-cli-loop/issues/1734)) ([4e63cc5](https://github.com/hatayama/unity-cli-loop/commit/4e63cc5c56ba2b9257ac334ef2fa0a41c0384205))
* Harden V2-to-V3 third-party migration for safe apply and reliable scans ([#1710](https://github.com/hatayama/unity-cli-loop/issues/1710)) ([b4fbb0d](https://github.com/hatayama/unity-cli-loop/commit/b4fbb0db6b8837e4036637e11684bc08da427935))
* Improve CLI PlayMode reliability for background input simulation ([#1714](https://github.com/hatayama/unity-cli-loop/issues/1714)) ([8845709](https://github.com/hatayama/unity-cli-loop/commit/8845709d3f70af6fc50ae98501b184f659ef5a33))
* run-tests hangs no longer hold the tool slot for up to 30 minutes ([#1742](https://github.com/hatayama/unity-cli-loop/issues/1742)) ([efa4898](https://github.com/hatayama/unity-cli-loop/commit/efa48982e37e39dd4d6b6459d2616cefb04eb81a))
* run-tests timeout can cancel in-flight Test Runner jobs ([#1743](https://github.com/hatayama/unity-cli-loop/issues/1743)) ([b348ad5](https://github.com/hatayama/unity-cli-loop/commit/b348ad562dc1d9be0cdd44cd5c18773e5ccee2ab))
* Tool Settings pause-point toggle now gates every pause point command ([#1700](https://github.com/hatayama/unity-cli-loop/issues/1700)) ([8785326](https://github.com/hatayama/unity-cli-loop/commit/8785326661d899751b8ba4ba4d20aebac2b78cc8))

## [3.0.0-beta.49](https://github.com/hatayama/unity-cli-loop/compare/v3.0.0-beta.48...v3.0.0-beta.49) (2026-07-11)


Expand Down
2 changes: 1 addition & 1 deletion Packages/src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "io.github.hatayama.uloopmcp",
"version": "3.0.0-beta.49",
"version": "3.0.0-beta.50",
"displayName": "Unity CLI Loop",
"description": "AI-driven development loop for Unity via CLI.",
"unity": "2022.3",
Expand Down
2 changes: 1 addition & 1 deletion Packages/src/project-runner-pin.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"projectRunnerVersion": "3.0.0-beta.47",
"projectRunnerVersion": "3.0.0-beta.48",
"minimumDispatcherVersion": "3.0.1-beta.6"
}
2 changes: 1 addition & 1 deletion cli/common/clicontract/contract.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"protocolVersion": 3,
"projectRunnerVersion": "3.0.0-beta.47"
"projectRunnerVersion": "3.0.0-beta.48"
}
15 changes: 15 additions & 0 deletions cli/dispatcher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [3.1.0-beta.13](https://github.com/hatayama/unity-cli-loop/compare/dispatcher-v3.0.1-beta.13...dispatcher-v3.1.0-beta.13) (2026-07-13)


### Features

* add pause-point watch expressions ([#1733](https://github.com/hatayama/unity-cli-loop/issues/1733)) ([875835f](https://github.com/hatayama/unity-cli-loop/commit/875835fc71deb70ccdc0bea0d67582a0d42a2f80))
* Improve CLI guidance for tool enums, busy errors, and dynamic-code diagnostics ([7318b9d](https://github.com/hatayama/unity-cli-loop/commit/7318b9d1dcead7b52241e88adab7538b47a5f95a))
* Pause point wait command is now await-pause-point ([#1698](https://github.com/hatayama/unity-cli-loop/issues/1698)) ([f1d0a9d](https://github.com/hatayama/unity-cli-loop/commit/f1d0a9d1c6c72a8699a2468e68a05262a50642dc))


### Bug Fixes

* bound Go external OS commands and propagate Ctrl+C cancellation ([#1738](https://github.com/hatayama/unity-cli-loop/issues/1738)) ([ddb0581](https://github.com/hatayama/unity-cli-loop/commit/ddb058124507d0207d371bcf988ef6449b0c0b66))
* Harden V2-to-V3 third-party migration for safe apply and reliable scans ([#1710](https://github.com/hatayama/unity-cli-loop/issues/1710)) ([b4fbb0d](https://github.com/hatayama/unity-cli-loop/commit/b4fbb0db6b8837e4036637e11684bc08da427935))

## [3.0.1-beta.13](https://github.com/hatayama/unity-cli-loop/compare/dispatcher-v3.0.1-beta.12...dispatcher-v3.0.1-beta.13) (2026-07-11)


Expand Down
2 changes: 1 addition & 1 deletion cli/dispatcher/dispatchercontract/dispatcher-contract.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"dispatcherVersion": "3.0.1-beta.13"
"dispatcherVersion": "3.1.0-beta.13"
}
17 changes: 17 additions & 0 deletions cli/project-runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [3.0.0-beta.48](https://github.com/hatayama/unity-cli-loop/compare/uloop-project-runner-v3.0.0-beta.47...uloop-project-runner-v3.0.0-beta.48) (2026-07-13)


### Features

* add pause point capture modes and history ([#1729](https://github.com/hatayama/unity-cli-loop/issues/1729)) ([0b5e72e](https://github.com/hatayama/unity-cli-loop/commit/0b5e72e788a6f032001ee3670c117d8034089234))
* add pause-point watch expressions ([#1733](https://github.com/hatayama/unity-cli-loop/issues/1733)) ([875835f](https://github.com/hatayama/unity-cli-loop/commit/875835fc71deb70ccdc0bea0d67582a0d42a2f80))
* Improve CLI guidance for tool enums, busy errors, and dynamic-code diagnostics ([7318b9d](https://github.com/hatayama/unity-cli-loop/commit/7318b9d1dcead7b52241e88adab7538b47a5f95a))
* Improve pause point observability with cleared reasons, collection previews, and raw capture ([03c656b](https://github.com/hatayama/unity-cli-loop/commit/03c656b8734de3d87a32dc7e7f90fea61031eeaf))
* Pause point wait command is now await-pause-point ([#1698](https://github.com/hatayama/unity-cli-loop/issues/1698)) ([f1d0a9d](https://github.com/hatayama/unity-cli-loop/commit/f1d0a9d1c6c72a8699a2468e68a05262a50642dc))


### Bug Fixes

* bound Go external OS commands and propagate Ctrl+C cancellation ([#1738](https://github.com/hatayama/unity-cli-loop/issues/1738)) ([ddb0581](https://github.com/hatayama/unity-cli-loop/commit/ddb058124507d0207d371bcf988ef6449b0c0b66))
* Tool Settings pause-point toggle now gates every pause point command ([#1700](https://github.com/hatayama/unity-cli-loop/issues/1700)) ([8785326](https://github.com/hatayama/unity-cli-loop/commit/8785326661d899751b8ba4ba4d20aebac2b78cc8))

## [3.0.0-beta.47](https://github.com/hatayama/unity-cli-loop/compare/uloop-project-runner-v3.0.0-beta.46...uloop-project-runner-v3.0.0-beta.47) (2026-07-11)


Expand Down
Loading