From 17aa8df4b8f38e7a552e80f19a136f1ab7873859 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 18:04:04 +0000 Subject: [PATCH 1/3] Initial plan From fe70c41df6a18259cfe4f2131acffa9bf72c98bd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 18:06:06 +0000 Subject: [PATCH 2/3] Propagate boxlang flag to handler-generated views Agent-Logs-Url: https://github.com/ColdBox/coldbox-cli/sessions/c18c79bb-9a9f-4f05-810e-28c19f365620 Co-authored-by: lmajano <137111+lmajano@users.noreply.github.com> --- commands/coldbox/create/handler.cfc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/commands/coldbox/create/handler.cfc b/commands/coldbox/create/handler.cfc index 299dd02..11df458 100644 --- a/commands/coldbox/create/handler.cfc +++ b/commands/coldbox/create/handler.cfc @@ -214,7 +214,8 @@ component aliases="coldbox create controller" extends="coldbox-cli.models.BaseCo boolean open, boolean rest, boolean force, - boolean resource + boolean resource, + boolean boxlang ){ var results = { actions : "", tests : "" } var actionContent = fileRead( @@ -249,7 +250,8 @@ component aliases="coldbox create controller" extends="coldbox-cli.models.BaseCo content : "

#camelCaseHandlerName#.#thisAction#

", directory: arguments.viewsDirectory, force : arguments.force, - open : arguments.open + open : arguments.open, + boxlang : arguments.boxlang ) .run(); } From e4011667ce98ad6d10454812c77b0306074243ff Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 18:21:19 +0000 Subject: [PATCH 3/3] Add changelog entry for handler view language flag fix Agent-Logs-Url: https://github.com/ColdBox/coldbox-cli/sessions/55e138bc-afc1-409f-b814-c03cb604d2f0 Co-authored-by: lmajano <137111+lmajano@users.noreply.github.com> --- changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index 15e1932..b95b64f 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 + +- `coldbox create handler --boxlang` / `--noboxlang` now propagates language selection to auto-generated views so view extensions match the requested mode (`.bxm` for BoxLang, `.cfm` for CFML) + ## [8.12.0] - 2026-05-11 ### Fixed