From 47e32b2c21bc88fae3b8c5b67557e8518eabebd6 Mon Sep 17 00:00:00 2001 From: Dipak Parmar Date: Mon, 14 Jul 2025 19:51:26 +0000 Subject: [PATCH 1/2] fix(schema): correct namespaced field type from string to boolean Update cumulusci.jsonschema.json to fix the data type for the 'namespaced' field from string to boolean, which better reflects its intended usage. --- cumulusci/schema/cumulusci.jsonschema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulusci/schema/cumulusci.jsonschema.json b/cumulusci/schema/cumulusci.jsonschema.json index 255d2de4d4..4959bff237 100644 --- a/cumulusci/schema/cumulusci.jsonschema.json +++ b/cumulusci/schema/cumulusci.jsonschema.json @@ -421,7 +421,7 @@ }, "namespaced": { "title": "Namespaced", - "type": "string" + "type": "boolean" }, "setup_flow": { "title": "Setup Flow", From 1279dd449fb6d45e06ced4180d9cc3ac95b87824 Mon Sep 17 00:00:00 2001 From: Dipak Parmar Date: Wed, 10 Sep 2025 16:37:24 +0000 Subject: [PATCH 2/2] fix: change 'namespaced' type from str to bool in ScratchOrg model --- cumulusci/utils/yaml/cumulusci_yml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulusci/utils/yaml/cumulusci_yml.py b/cumulusci/utils/yaml/cumulusci_yml.py index 93516ed654..fc417641ae 100644 --- a/cumulusci/utils/yaml/cumulusci_yml.py +++ b/cumulusci/utils/yaml/cumulusci_yml.py @@ -147,7 +147,7 @@ class Project(CCIDictModel): class ScratchOrg(CCIDictModel): config_file: Path = None days: int = None - namespaced: str = None + namespaced: bool = None setup_flow: str = None noancestors: bool = None release: Literal["preview", "previous"] = None