From 87e6b49c832c059723c88cd5458dfed2ea8c1024 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Fri, 10 Apr 2026 10:19:18 +0000 Subject: [PATCH 1/3] Version bump --- box.json | 2 +- changelog.md | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/box.json b/box.json index 288d083..1aedefe 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"ColdBox CLI", - "version":"8.10.0", + "version":"8.11.0", "location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/coldbox-cli/@build.version@/coldbox-cli-@build.version@.zip", "slug":"coldbox-cli", "author":"Ortus Solutions, Corp", diff --git a/changelog.md b/changelog.md index 70771ba..c24b3e8 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.10.0] - 2026-04-10 + ### Added - Automatic app layout detection for code generation commands. The CLI now detects whether the project uses a modern layout (with `app/` and `public/` directories) or a flat layout, and automatically places generated files in the correct location (e.g., `app/models` vs `models`, `app/handlers` vs `handlers`, etc.). @@ -304,7 +306,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Eclipse support -[unreleased]: https://github.com/ColdBox/coldbox-cli/compare/v8.9.0...HEAD +[unreleased]: https://github.com/ColdBox/coldbox-cli/compare/v8.10.0...HEAD +[8.10.0]: https://github.com/ColdBox/coldbox-cli/compare/v8.9.0...v8.10.0 [8.9.0]: https://github.com/ColdBox/coldbox-cli/compare/v8.8.0...v8.9.0 [8.8.0]: https://github.com/ColdBox/coldbox-cli/compare/v8.7.0...v8.8.0 [8.7.0]: https://github.com/ColdBox/coldbox-cli/compare/v8.6.0...v8.7.0 From 3c58a1b79243430989122fc5991dcdf98cea7d97 Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Mon, 9 Mar 2026 17:31:01 +0100 Subject: [PATCH 2/3] fix help --- commands/coldbox/ai/install.cfc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/coldbox/ai/install.cfc b/commands/coldbox/ai/install.cfc index 9c7ff71..1cfcce7 100644 --- a/commands/coldbox/ai/install.cfc +++ b/commands/coldbox/ai/install.cfc @@ -4,8 +4,8 @@ * * Examples: * coldbox ai install - * coldbox ai install --agent=claude,copilot - * coldbox ai install --language=boxlang + * coldbox ai install agent=claude,copilot + * coldbox ai install language=boxlang * coldbox ai install --force */ component extends="coldbox-cli.models.BaseAICommand" { From ce8bfa501c2b1c788a56bd6961c506fdc6f612e8 Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Wed, 15 Apr 2026 11:50:57 +0200 Subject: [PATCH 3/3] patch --- box.json | 2 +- changelog.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/box.json b/box.json index 1aedefe..877ce21 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"ColdBox CLI", - "version":"8.11.0", + "version":"8.10.1", "location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/coldbox-cli/@build.version@/coldbox-cli-@build.version@.zip", "slug":"coldbox-cli", "author":"Ortus Solutions, Corp", diff --git a/changelog.md b/changelog.md index c24b3e8..bea4dc4 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Corruption of box.json on build process overlapping + ## [8.10.0] - 2026-04-10 ### Added