From ea9951f78613abe74fb236e81cd9c1d6430fce45 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 26 Nov 2025 00:04:18 +0000 Subject: [PATCH 1/2] Initial plan From cdef8d2b3b1ac3ccbd4b57fdcda7bbe58898ed72 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 26 Nov 2025 00:08:39 +0000 Subject: [PATCH 2/2] Remove unused throwOnMissingSetterMethod configuration variable Co-authored-by: grantcopley <1197835+grantcopley@users.noreply.github.com> --- .github/copilot-instructions.md | 1 - ModuleConfig.cfc | 6 ------ 2 files changed, 7 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index b21448c..b6a09dd 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -196,7 +196,6 @@ Module settings are defined in `ModuleConfig.cfc`: - `autoInjectAssets` - Auto-include CSS/JS assets (default: `true`) - `moduleRootPath` - Physical path to module (computed from module location) - `moduleRootURL` - URL to module root (default: `"/modules/cbwire"`) -- `throwOnMissingSetterMethod` - Throw exception on missing setters (default: `false`) - `wiresLocation` - Folder name for wire components (default: `"wires"`) - `trimStringValues` - Trim string properties (default: `false`) - `showProgressBar` - Enable progress bar with wire:navigate (default: `true`) diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index f673803..3d4d271 100644 --- a/ModuleConfig.cfc +++ b/ModuleConfig.cfc @@ -38,12 +38,6 @@ component { * The URL to the module root. The sometimes needs to be overridden for certain server configurations. */ "moduleRootURL": "/modules/cbwire", - /** - * Set to true to throw a 'WireSetterNotFound' exception if - * the incoming cbwire request tries to update a property - * without a setter on our component. Otherwise, missing setters are ignored. - */ - "throwOnMissingSetterMethod" : false, /** * The default folder name where your cbwire components are stored. * Defaults to 'wires' folder.