@tamyla/clodo-framework 4.0.12 → 4.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/CHANGELOG.md +708 -426
  2. package/README.md +7 -0
  3. package/dist/cli/commands/create.js +2 -1
  4. package/dist/deployment/wrangler-deployer.js +1 -1
  5. package/dist/middleware/Composer.js +38 -0
  6. package/dist/middleware/Registry.js +14 -0
  7. package/dist/middleware/index.js +3 -0
  8. package/dist/middleware/shared/basicAuth.js +21 -0
  9. package/dist/middleware/shared/cors.js +28 -0
  10. package/dist/middleware/shared/index.js +3 -0
  11. package/dist/middleware/shared/logging.js +14 -0
  12. package/dist/service-management/GenerationEngine.js +13 -2
  13. package/dist/service-management/ServiceOrchestrator.js +6 -2
  14. package/dist/service-management/generators/code/ServiceMiddlewareGenerator.js +156 -10
  15. package/dist/service-management/generators/code/WorkerIndexGenerator.js +75 -9
  16. package/dist/service-management/generators/config/WranglerTomlGenerator.js +1 -1
  17. package/dist/simple-api.js +32 -1
  18. package/docs/MIDDLEWARE_MIGRATION_SUMMARY.md +121 -0
  19. package/package.json +7 -2
  20. package/scripts/DEPLOY_COMMAND_NEW.js +128 -0
  21. package/scripts/README-automated-testing-suite.md +356 -0
  22. package/scripts/README-test-clodo-deployment.md +157 -0
  23. package/scripts/README.md +50 -0
  24. package/scripts/analyze-imports.ps1 +104 -0
  25. package/scripts/analyze-mixed-code.js +163 -0
  26. package/scripts/analyze-mixed-rationale.js +149 -0
  27. package/scripts/automated-testing-suite.js +776 -0
  28. package/scripts/deployment/README.md +31 -0
  29. package/scripts/deployment/deploy-domain.ps1 +449 -0
  30. package/scripts/deployment/deploy-staging.js +120 -0
  31. package/scripts/deployment/validate-staging.js +166 -0
  32. package/scripts/diagnose-imports.js +362 -0
  33. package/scripts/framework-diagnostic.js +368 -0
  34. package/scripts/migration/migrate-middleware-legacy-to-contract.js +47 -0
  35. package/scripts/post-publish-test.js +663 -0
  36. package/scripts/scan-worker-issues.js +52 -0
  37. package/scripts/service-management/README.md +27 -0
  38. package/scripts/service-management/setup-interactive.ps1 +693 -0
  39. package/scripts/test-clodo-deployment.js +588 -0
  40. package/scripts/test-downstream-install.js +237 -0
  41. package/scripts/test-local-package.ps1 +126 -0
  42. package/scripts/test-local-package.sh +166 -0
  43. package/scripts/test-package.js +339 -0
  44. package/scripts/testing/README.md +49 -0
  45. package/scripts/testing/test-first.ps1 +0 -0
  46. package/scripts/testing/test-first50.ps1 +0 -0
  47. package/scripts/testing/test.ps1 +0 -0
  48. package/scripts/utilities/README.md +61 -0
  49. package/scripts/utilities/check-bin.js +8 -0
  50. package/scripts/utilities/check-bundle.js +23 -0
  51. package/scripts/utilities/check-dist-imports.js +65 -0
  52. package/scripts/utilities/check-import-paths.js +191 -0
  53. package/scripts/utilities/cleanup-cli.js +159 -0
  54. package/scripts/utilities/deployment-helpers.ps1 +199 -0
  55. package/scripts/utilities/fix-dist-imports.js +135 -0
  56. package/scripts/utilities/generate-secrets.js +159 -0
  57. package/scripts/utilities/safe-push.ps1 +51 -0
  58. package/scripts/utilities/setup-helpers.ps1 +206 -0
  59. package/scripts/utilities/test-packaged-artifact.js +92 -0
  60. package/scripts/utilities/validate-dist-imports.js +189 -0
  61. package/scripts/utilities/validate-schema.js +102 -0
  62. package/scripts/verify-exports.js +193 -0
  63. package/scripts/verify-worker-safety.js +73 -0
  64. package/types/middleware.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,439 +1,721 @@
1
- ## [4.0.12](https://github.com/tamylaa/clodo-framework/compare/v4.0.11...v4.0.12) (2025-12-12)
1
+ ## [4.0.14](https://github.com/tamylaa/clodo-framework/compare/v4.0.13...v4.0.14) (2026-01-19)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * resolve version sync for 4.0.12 release ([6375c5f](https://github.com/tamylaa/clodo-framework/commit/6375c5f71516cf2a7a96edcf5878106063037ba8))
7
- * trigger 4.0.12 release after tag sync ([3dafb25](https://github.com/tamylaa/clodo-framework/commit/3dafb253cbbae6e7eac27dd5170e9f391c3deda0))
6
+ * middleware packaging, generators, tests, and packaged-artifact smoke test ([b001434](https://github.com/tamylaa/clodo-framework/commit/b001434697da2145e8778b5c0afd02275cd1604e))
7
+ * resolve Windows filesystem timing issues in tests ([7092ca6](https://github.com/tamylaa/clodo-framework/commit/7092ca6ffc230a19d25c96333c0313ead1739f15))
8
8
 
9
- ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
9
+ ## [4.0.13](https://github.com/tamylaa/clodo-framework/compare/v4.0.12...v4.0.13) (2025-12-17)
10
10
 
11
11
 
12
12
  ### Bug Fixes
13
13
 
14
- * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
15
- * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
16
- * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
17
- * resolve version sync for 4.0.12 release ([6375c5f](https://github.com/tamylaa/clodo-framework/commit/6375c5f71516cf2a7a96edcf5878106063037ba8))
18
- * trigger patch release for latest changes ([6161573](https://github.com/tamylaa/clodo-framework/commit/6161573ead8271eaea2766bf7c85f63ef7378a7d))
19
- * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
20
-
21
- ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
22
-
23
-
24
- ### Bug Fixes
25
-
26
- * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
27
- * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
28
- * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
29
- * trigger patch release for latest changes ([6161573](https://github.com/tamylaa/clodo-framework/commit/6161573ead8271eaea2766bf7c85f63ef7378a7d))
30
- * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
31
-
32
- ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
33
-
34
-
35
- ### Bug Fixes
36
-
37
- * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
38
- * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
39
- * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
40
- * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
41
-
42
- ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
43
-
44
-
45
- ### Bug Fixes
46
-
47
- * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
48
- * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
49
- * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
50
- * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
51
-
52
- ## [4.0.10](https://github.com/tamylaa/clodo-framework/compare/v4.0.9...v4.0.10) (2025-12-10)
53
-
54
-
55
- ### Bug Fixes
56
-
57
- * clean up test artifacts and temporary files ([0eb6cda](https://github.com/tamylaa/clodo-framework/commit/0eb6cdac68bce6d07e567f4b7810f4d94752b7c0))
58
-
59
- ## [4.0.8](https://github.com/tamylaa/clodo-framework/compare/v4.0.7...v4.0.8) (2025-12-09)
60
-
61
-
62
- ### Bug Fixes
63
-
64
- * respect user-provided worker and database names in deployment ([04ffc38](https://github.com/tamylaa/clodo-framework/commit/04ffc382ab910d4d260ba5c3f2e421763587948a))
65
-
66
- ## [4.0.7](https://github.com/tamylaa/clodo-framework/compare/v4.0.6...v4.0.7) (2025-12-09)
67
-
68
-
69
- ### Bug Fixes
70
-
71
- * correct dynamic import paths in interactive-validation.js ([acbadae](https://github.com/tamylaa/clodo-framework/commit/acbadaefc10cf7efab9dd263f7a40f8db18fccb4))
72
- * correct import path in interactive-validation.js ([8355677](https://github.com/tamylaa/clodo-framework/commit/83556777a0faa1a85766c0bf4795428d8ba807e6))
73
- * correct remaining dynamic import paths in interactive-validation.js ([837f0a4](https://github.com/tamylaa/clodo-framework/commit/837f0a48489dbde6b644944950232ec0f424639f))
74
- * correct Windows PowerShell environment variable handling ([f3c5354](https://github.com/tamylaa/clodo-framework/commit/f3c535449f744a2448b4c1b7d98fc62853a8eaab))
75
-
76
- ## [4.0.6](https://github.com/tamylaa/clodo-framework/compare/v4.0.5...v4.0.6) (2025-12-09)
77
-
78
-
79
- ### Bug Fixes
80
-
81
- * add null checks for enterprise deployment methods ([97c3237](https://github.com/tamylaa/clodo-framework/commit/97c32371e97f259f62a82e9f7cc393dab0def7ed))
82
- * correct URL construction and export missing testing workflow ([19691e1](https://github.com/tamylaa/clodo-framework/commit/19691e1651b3f37762e0564ccbb939c7c22965ad))
83
- * correct worker URL construction and prevent undefined errors ([5d94f4f](https://github.com/tamylaa/clodo-framework/commit/5d94f4f064d5264f18929a6d2bd0564b0bb5494a))
84
- * remove duplicate export in InteractiveTestingWorkflow ([db710c2](https://github.com/tamylaa/clodo-framework/commit/db710c2342ac3fd41b73ffd01fdd83ce0e0256f1))
85
-
86
- ## [4.0.5](https://github.com/tamylaa/clodo-framework/compare/v4.0.4...v4.0.5) (2025-12-09)
87
-
88
-
89
- ### Bug Fixes
90
-
91
- * ensure deployments use correct Cloudflare account and zone ([22d42a9](https://github.com/tamylaa/clodo-framework/commit/22d42a9d4cf800e78953a0bcd897d6cb94dfefc5))
92
-
93
- ## [4.0.4](https://github.com/tamylaa/clodo-framework/compare/v4.0.3...v4.0.4) (2025-12-08)
94
-
95
-
96
- ### Bug Fixes
97
-
98
- * enhance existing resource handling and API token propagation ([c7b3a22](https://github.com/tamylaa/clodo-framework/commit/c7b3a226b01609f01f6e8cb1cf27b957cd11868e))
99
-
100
- ## [4.0.3](https://github.com/tamylaa/clodo-framework/compare/v4.0.2...v4.0.3) (2025-12-08)
101
-
102
-
103
- ### Bug Fixes
104
-
105
- * Export CLI utilities to enable framework CLI commands ([35f1701](https://github.com/tamylaa/clodo-framework/commit/35f1701653ebe01b8fe41d184d2b88dac4c5b8d4))
106
-
107
- ## [4.0.2](https://github.com/tamylaa/clodo-framework/compare/v4.0.1...v4.0.2) (2025-12-08)
108
-
109
-
110
- ### Bug Fixes
111
-
112
- * Pass API credentials through database creation workflow ([c245618](https://github.com/tamylaa/clodo-framework/commit/c245618290a7c71808de6d1934076bd53a0519c9))
113
-
114
- ## [4.0.1](https://github.com/tamylaa/clodo-framework/compare/v4.0.0...v4.0.1) (2025-12-07)
115
-
116
-
117
- ### Bug Fixes
118
-
119
- * Export COMMON_FEATURES and autoConfigureFramework, update docs ([6cf9a7e](https://github.com/tamylaa/clodo-framework/commit/6cf9a7e13c5b0b6dc10b69624e5633429890f894))
120
-
121
- # [4.0.0](https://github.com/tamylaa/clodo-framework/compare/v3.2.5...v4.0.0) (2025-12-07)
122
-
123
-
124
- ### Bug Fixes
125
-
126
- * resolve remaining 5 import path issues in dist files ([383a625](https://github.com/tamylaa/clodo-framework/commit/383a6257910546f4d9a9f1442f4005c0cc166704))
127
-
128
-
129
- ### Code Refactoring
130
-
131
- * replace band-aid import fixes with proper wrapper pattern ([5385ef2](https://github.com/tamylaa/clodo-framework/commit/5385ef23e9a9b8be26fce9d9fe6df2184667168c))
132
-
133
-
134
- ### BREAKING CHANGES
135
-
136
- * from previous approach:
137
- - Removed post-build path manipulation that was fragile and hard to maintain
138
- - Implemented proper wrapper re-export pattern consistent with existing codebase
139
-
140
- Changes:
141
- - Create lib/shared/utils/framework-config.js wrapper that re-exports from src/utils
142
- - Update connection-manager.js to import from ../utils/framework-config.js wrapper
143
- - Update secret-generator.js to import from ../utils/framework-config.js wrapper
144
- - Update graceful-shutdown-manager.js to import from ./framework-config.js wrapper
145
- - Replace complex import path fixes with single minimal transformation in fix-dist-imports.js
146
- - Maintains all 23 exports working correctly
147
-
148
- Benefits:
149
- Clean, maintainable architecture following existing wrapper patterns
150
- No circular dependencies
151
- Imports work correctly in both source and compiled dist/
152
- Easier to debug and understand import resolution
153
- Scales better as codebase grows
154
-
155
- ## [3.2.5](https://github.com/tamylaa/clodo-framework/compare/v3.2.4...v3.2.5) (2025-12-06)
156
-
157
-
158
- ### Bug Fixes
159
-
160
- * correct import paths in dist/index.js for Windows compatibility ([351ba68](https://github.com/tamylaa/clodo-framework/commit/351ba68450c675af6f199036121aa2797eaa97a8))
161
-
162
- ## [3.2.4](https://github.com/tamylaa/clodo-framework/compare/v3.2.3...v3.2.4) (2025-12-06)
163
-
164
-
165
- ### Bug Fixes
166
-
167
- * expose CLI utilities in public API to fix import issues ([5d995ab](https://github.com/tamylaa/clodo-framework/commit/5d995abb2f6cb718acc0a03beef75f1025204200))
168
-
169
- ## [3.2.3](https://github.com/tamylaa/clodo-framework/compare/v3.2.2...v3.2.3) (2025-12-06)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * clean up debug logging in fix-dist-imports.js ([374318e](https://github.com/tamylaa/clodo-framework/commit/374318efc9b73cf304306f3dd249eb88f8b06c98))
175
- * resolve all test suite failures for production readiness ([519df7c](https://github.com/tamylaa/clodo-framework/commit/519df7c755bd1a93bb5e9717c2aaf21bdf02e636))
176
-
177
- ## [3.2.2](https://github.com/tamylaa/clodo-framework/compare/v3.2.1...v3.2.2) (2025-12-05)
178
-
179
-
180
- ### Bug Fixes
181
-
182
- * correct import paths in lib/ files and enhance build script ([77abdb2](https://github.com/tamylaa/clodo-framework/commit/77abdb24ccfab61275a8f9716b09c84faaf8db84))
183
-
184
- ## [3.2.1](https://github.com/tamylaa/clodo-framework/compare/v3.2.0...v3.2.1) (2025-12-05)
185
-
186
-
187
- ### Bug Fixes
188
-
189
- * enhance deploy command with prerequisite checking and organize project structure ([660c5ab](https://github.com/tamylaa/clodo-framework/commit/660c5ab82546ca1a80b42c1d4cbc6d3972cc6203))
190
-
191
- # [3.2.0](https://github.com/tamylaa/clodo-framework/compare/v3.1.27...v3.2.0) (2025-12-03)
192
-
193
-
194
- ### Bug Fixes
195
-
196
- * add pre-publish import validation and remove non-existent exports ([a41fa7d](https://github.com/tamylaa/clodo-framework/commit/a41fa7df5c1ce05d34efe7e62e68d1c2fa8ea89c))
197
- * correct CLI import paths for npm distribution ([ba68e0a](https://github.com/tamylaa/clodo-framework/commit/ba68e0adfa4c3bf36584b8bd37310ef616f79722))
198
- * enable missing exports and remove lib-dependent modules from npm ([1645a58](https://github.com/tamylaa/clodo-framework/commit/1645a58d1e1f5d7126fd02766e9b4d006fa45be7))
199
-
200
-
201
- ### Features
202
-
203
- * add comprehensive pre-publish and downstream install tests ([b1e8a25](https://github.com/tamylaa/clodo-framework/commit/b1e8a25b3acae840b66f728aa55dd5c24af0914f))
204
- * add proper CLI regression tests to downstream install test ([4cde4bc](https://github.com/tamylaa/clodo-framework/commit/4cde4bc08f0290f0432815b2c8cfa60247bc8dfd))
205
-
206
- ## [3.1.27](https://github.com/tamylaa/clodo-framework/compare/v3.1.26...v3.1.27) (2025-12-02)
207
-
208
-
209
- ### Bug Fixes
210
-
211
- * clarify lib/ imports from src/ are intentional and working ([7556cbd](https://github.com/tamylaa/clodo-framework/commit/7556cbdfa1a8ae24ea5c342df0631014b5c1b060))
212
- * correct ALL lib/ module import paths for npm package compatibility ([4df859e](https://github.com/tamylaa/clodo-framework/commit/4df859ed1e5123d3862dc160a078b60803d7a37d))
213
- * correct CloudflareAPI import path in credential-collector.js ([805e027](https://github.com/tamylaa/clodo-framework/commit/805e02793467f21aa06e85af609fcb395710d165))
214
- * correct credential-collector CloudflareAPI import path ([5573780](https://github.com/tamylaa/clodo-framework/commit/557378010dea5fb9e3f83952cc38632b0e94f53d))
215
- * correct EnvironmentManager relative import paths ([0f62df6](https://github.com/tamylaa/clodo-framework/commit/0f62df6bc9e059f6c66a87b88ffe9ca57a25f8c1))
216
- * correct relative import paths for npm distribution ([68c53e0](https://github.com/tamylaa/clodo-framework/commit/68c53e0c3716ed4044688dd151b26b6d8a113e05))
217
- * correct validation.js import path in ValidationRegistry.js ([882fe21](https://github.com/tamylaa/clodo-framework/commit/882fe21b964670dc2e075b3169068e6973677b42))
218
- * remove unnecessary warning about missing validation-config.json ([15d22db](https://github.com/tamylaa/clodo-framework/commit/15d22db8fa26202ffa81654c417ae2fa69345bba))
219
- * resolve all lib import paths for npm distribution ([1e32bef](https://github.com/tamylaa/clodo-framework/commit/1e32bef70505a1cd142efbe94016027edbbe61df))
220
- * resolve ErrorHandler reference in security module ([5bc406e](https://github.com/tamylaa/clodo-framework/commit/5bc406eb768d10409d615c67b11d8118fac4081d))
221
- * use lib re-export wrapper for MultiDomainOrchestrator in domain-router.js ([215aefc](https://github.com/tamylaa/clodo-framework/commit/215aefc382b811c105598e6241beae60e65b0409))
222
- * use lib re-export wrappers instead of direct src/ references ([3aaf672](https://github.com/tamylaa/clodo-framework/commit/3aaf6725e6c09b97e3ea4d80519c1bf4ae61a921))
223
-
224
- ## [3.1.26](https://github.com/tamylaa/clodo-framework/compare/v3.1.25...v3.1.26) (2025-12-02)
225
-
226
-
227
- ### Bug Fixes
228
-
229
- * correct import paths for npm package distribution - use proper depth for compiled dist/ files ([d346563](https://github.com/tamylaa/clodo-framework/commit/d3465637e02077e014661e1039421e9cd0010d97))
230
-
231
- ## [3.1.25](https://github.com/tamylaa/clodo-framework/compare/v3.1.24...v3.1.25) (2025-12-02)
232
-
233
-
234
- ### Bug Fixes
235
-
236
- * correct all import paths and add prevention documentation ([dbd3ce6](https://github.com/tamylaa/clodo-framework/commit/dbd3ce6d6b3ceceb9aa839358923c6096c762ceb))
237
-
238
- ## [3.1.24](https://github.com/tamylaa/clodo-framework/compare/v3.1.23...v3.1.24) (2025-11-08)
239
-
240
-
241
- ### Bug Fixes
242
-
243
- * Add comprehensive framework assessment and strategic evolution plan ([bed4108](https://github.com/tamylaa/clodo-framework/commit/bed41085c253e025bd065e507296efe261616652))
244
- * resolve linting error and enhance CI pipeline ([ece5b5a](https://github.com/tamylaa/clodo-framework/commit/ece5b5aa7232bc990b1d85d3e53ccf7e2d215c98))
245
-
246
- ## [3.1.23](https://github.com/tamylaa/clodo-framework/compare/v3.1.22...v3.1.23) (2025-11-07)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * Complete framework evolution from promise to production-ready reality ([3341508](https://github.com/tamylaa/clodo-framework/commit/33415083e0f8c81267831b4d295b181e3aef3758))
252
- * Correct import path validation for formatters.js ([763a137](https://github.com/tamylaa/clodo-framework/commit/763a137b5cff4845fc6335dec2fa9357e1c141c5))
253
-
254
- ## [3.1.22](https://github.com/tamylaa/clodo-framework/compare/v3.1.21...v3.1.22) (2025-11-05)
255
-
256
-
257
- ### Bug Fixes
258
-
259
- * clarify bin/ is private CLI implementation, not public API ([a092d30](https://github.com/tamylaa/clodo-framework/commit/a092d30c9c9c72f0bcb9d6b132175b4a6d6ce0bf))
260
- * Separate clodo-enterprise: remove enterprise code/docs, fix imports, update README ([58aabff](https://github.com/tamylaa/clodo-framework/commit/58aabff0b0fa193cd2acf37027e43a872fccd8f2))
261
- * wire helpers to shared infra and fix CloudflareAPI import casing ([7d0b27f](https://github.com/tamylaa/clodo-framework/commit/7d0b27f8dbd0a82f01d52a4d00324ab72507ab30))
262
-
263
- ## [3.1.21](https://github.com/tamylaa/clodo-framework/compare/v3.1.20...v3.1.21) (2025-10-28)
264
-
265
-
266
- ### Bug Fixes
267
-
268
- * remove dist/ references from dynamic imports in bin/ ([e3dd2c4](https://github.com/tamylaa/clodo-framework/commit/e3dd2c4a21e86b90985352cdafc3742eaa8a573e))
269
-
270
- ## [3.1.20](https://github.com/tamylaa/clodo-framework/compare/v3.1.19...v3.1.20) (2025-10-28)
271
-
272
-
273
- ### Bug Fixes
274
-
275
- * use depth-aware import paths in re-export wrappers ([db383fe](https://github.com/tamylaa/clodo-framework/commit/db383fe22e67b3d6a99b9465253c1169f509db13))
276
-
277
- ## [3.1.19](https://github.com/tamylaa/clodo-framework/compare/v3.1.18...v3.1.19) (2025-10-28)
278
-
279
-
280
- ### Bug Fixes
281
-
282
- * Correct re-export wrapper paths to use ../../bin (two levels up from dist/utils) ([992136e](https://github.com/tamylaa/clodo-framework/commit/992136e7b143424e2807f49a94599e8d71a91079))
283
-
284
- ## [3.1.18](https://github.com/tamylaa/clodo-framework/compare/v3.1.17...v3.1.18) (2025-10-28)
285
-
286
-
287
- ### Bug Fixes
288
-
289
- * Correct re-export wrapper import paths and add build-time path validator ([293f7b1](https://github.com/tamylaa/clodo-framework/commit/293f7b1537bed9a3c9eafcc96131be863044f313))
290
-
291
- ## [3.1.17](https://github.com/tamylaa/clodo-framework/compare/v3.1.16...v3.1.17) (2025-10-28)
292
-
293
-
294
- ### Bug Fixes
295
-
296
- * Correct re-export path depth in cloudflare ops wrapper (3 levels not 4) ([fa72b2b](https://github.com/tamylaa/clodo-framework/commit/fa72b2b2f1ba0ada932ba42a7a1788a41a7798a1))
297
-
298
- ## [3.1.16](https://github.com/tamylaa/clodo-framework/compare/v3.1.15...v3.1.16) (2025-10-28)
299
-
300
-
301
- ### Bug Fixes
302
-
303
- * Correct import path for cloudflare ops.js module ([b61de66](https://github.com/tamylaa/clodo-framework/commit/b61de66da57dfbd5d4157b2dfd0d5819db99b89b))
304
- * Correct import path in cloudflare ops re-export wrapper ([5bda1d2](https://github.com/tamylaa/clodo-framework/commit/5bda1d2d76f6577f2475adc7d4fe21284ded91e2))
305
- * Resolve all bin/ import paths by creating library re-export wrappers ([a6a2147](https://github.com/tamylaa/clodo-framework/commit/a6a2147562578945d4fb630086facfcdf8df66e5))
306
-
307
- ## [3.1.15](https://github.com/tamylaa/clodo-framework/compare/v3.1.14...v3.1.15) (2025-10-28)
308
-
309
-
310
- ### Bug Fixes
311
-
312
- * Complete comprehensive clodo-framework refactoring (Tasks 3.1-3.4) ([0949b8b](https://github.com/tamylaa/clodo-framework/commit/0949b8be5f4f6522c0e4e4050e858ce82be5d034))
313
-
314
- ## [3.1.14](https://github.com/tamylaa/clodo-framework/compare/v3.1.13...v3.1.14) (2025-10-27)
315
-
316
-
317
- ### Bug Fixes
318
-
319
- * restore smart credential collection flow in deploy command ([a3e94f6](https://github.com/tamylaa/clodo-framework/commit/a3e94f6efe4a41c380badfc7a104e32bfba9fe9a))
320
-
321
- ## [3.1.13](https://github.com/tamylaa/clodo-framework/compare/v3.1.12...v3.1.13) (2025-10-27)
322
-
323
-
324
- ### Bug Fixes
325
-
326
- * add comprehensive test coverage for service validation ([393e6d2](https://github.com/tamylaa/clodo-framework/commit/393e6d268348cc2926c80f0d3f6cd5377c2875a2))
327
- * add intelligent Cloudflare service detection and validation ([a680006](https://github.com/tamylaa/clodo-framework/commit/a6800063e2df8f8d6fa7660079cd22eb3f9a4a97))
328
-
329
- ## [3.1.12](https://github.com/tamylaa/clodo-framework/compare/v3.1.11...v3.1.12) (2025-10-27)
330
-
331
-
332
- ### Bug Fixes
333
-
334
- * update babel import rewriter to handle bin/ paths too ([6e26172](https://github.com/tamylaa/clodo-framework/commit/6e26172bbc2f697a59de0ea5567665094d4027b1))
335
-
336
- ## [3.1.11](https://github.com/tamylaa/clodo-framework/compare/v3.1.10...v3.1.11) (2025-10-27)
337
-
338
-
339
- ### Bug Fixes
340
-
341
- * add babel import path rewriter and remove source bin from package files ([91f19d4](https://github.com/tamylaa/clodo-framework/commit/91f19d48791d604497ff708a5c7a836100e6885a))
342
-
343
- ## [3.1.10](https://github.com/tamylaa/clodo-framework/compare/v3.1.9...v3.1.10) (2025-10-27)
344
-
345
-
346
- ### Bug Fixes
347
-
348
- * correct import paths in bin/ to reference src/ not dist/ ([57d9740](https://github.com/tamylaa/clodo-framework/commit/57d974051d15ba263005aba8e48f5290823e24c9))
349
-
350
- ## [3.1.9](https://github.com/tamylaa/clodo-framework/compare/v3.1.8...v3.1.9) (2025-10-27)
351
-
352
-
353
- ### Bug Fixes
354
-
355
- * compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
356
- * include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
357
-
358
- ## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
359
-
360
-
361
- ### Bug Fixes
362
-
363
- * change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
364
-
365
- ## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
366
-
367
-
368
- ### Bug Fixes
369
-
370
- * allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
371
- * exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
372
-
373
- ## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
374
-
375
-
376
- ### Bug Fixes
377
-
378
- * add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
379
-
380
- ## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
381
-
382
-
383
- ### Bug Fixes
384
-
385
- * deploy command should use full three-tier architecture (88+ fields)- Updated collect() to return comprehensive three-tier result- Deploy command now uses full collection with confirmations- Prevents duplicate confirmation steps in interactive mode- Restores the 80+ field deployment flow with user confirmations ([5c6c226](https://github.com/tamylaa/clodo-framework/commit/5c6c226d652d3dc7d1532147af4e87f7ccb8a811))
386
-
387
- ## [3.1.4](https://github.com/tamylaa/clodo-framework/compare/v3.1.3...v3.1.4) (2025-10-25)
388
-
389
-
390
- ### Bug Fixes
391
-
392
- * deploy command should collect deployment inputs, not service creation inputs ([63cbccf](https://github.com/tamylaa/clodo-framework/commit/63cbccfd8b3886668304a7dce51508e6ccba2450))
393
-
394
- ## [3.1.3](https://github.com/tamylaa/clodo-framework/compare/v3.1.2...v3.1.3) (2025-10-25)
395
-
396
-
397
- ### Bug Fixes
398
-
399
- * ui-structures-loader path resolution and build inclusion ([1744ce3](https://github.com/tamylaa/clodo-framework/commit/1744ce324272a9befa803498f452953409f3f870))
400
- * ui-structures-loader should look in package directory, not cwd ([23160a8](https://github.com/tamylaa/clodo-framework/commit/23160a808230999c26bb5c5e989ac425b150647d))
401
-
402
- ## [3.1.2](https://github.com/tamylaa/clodo-framework/compare/v3.1.1...v3.1.2) (2025-10-25)
403
-
404
-
405
- ### Bug Fixes
406
-
407
- * include ui-structures directory in published package files ([79ce369](https://github.com/tamylaa/clodo-framework/commit/79ce3692fc5fb50cf90cead6378b4d5d180d91d9))
408
-
409
- ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
410
-
411
-
412
- ### Bug Fixes
413
-
414
- * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
415
-
416
- ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
417
-
418
-
419
- ### Bug Fixes
420
-
421
- * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
422
-
423
- # [3.1.0](https://github.com/tamylaa/clodo-framework/compare/v3.0.15...v3.1.0) (2025-10-24)
424
-
425
-
426
- ### Bug Fixes
427
-
428
- * import missing dependencies in generators utils index ([771a336](https://github.com/tamylaa/clodo-framework/commit/771a336f678c636221e73dd2a16efc92dca94345))
429
- * improve error handling in generators ([799a05b](https://github.com/tamylaa/clodo-framework/commit/799a05b205f8fd0e0c3ca512a39ce8a719c5d39c))
430
- * resolve ESM compatibility and test stability issues ([87c422d](https://github.com/tamylaa/clodo-framework/commit/87c422d1611469246a819620834feee67577b30f))
431
-
432
-
433
- ### Features
434
-
435
- * comprehensive framework enhancement with domain routes automation ([ec8aa8d](https://github.com/tamylaa/clodo-framework/commit/ec8aa8d8e40310b2d617091e3d69bb97ded33d6a))
14
+ * collapse 4-level '../../../../lib/' imports to '../../../lib/' in dist ([e0a329e](https://github.com/tamylaa/clodo-framework/commit/e0a329e94390ddad37c7ccd8e6163410c874d7d0))
15
+ * handle deeper dist/service-management imports pointing outside dist ([f70d63c](https://github.com/tamylaa/clodo-framework/commit/f70d63cc24571e9691fe900d6a8384ce7f040992))
16
+ * resolve CHANGELOG.md merge conflict ([25a044d](https://github.com/tamylaa/clodo-framework/commit/25a044d0d4e2c8f674f777567de1d812c8b49cfa))
17
+ * special-case generators/config deep lib import path ([cb74ab0](https://github.com/tamylaa/clodo-framework/commit/cb74ab0a9fb0958cae5065adc750377f751f0b21))
436
18
 
19
+ ## [4.0.10](https://github.com/tamylaa/clodo-framework/compare/v4.0.9...v4.0.10) (2025-12-10)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * clean up test artifacts and temporary files ([0eb6cda](https://github.com/tamylaa/clodo-framework/commit/0eb6cdac68bce6d07e567f4b7810f4d94752b7c0))
25
+
26
+ ## [4.0.8](https://github.com/tamylaa/clodo-framework/compare/v4.0.7...v4.0.8) (2025-12-09)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * respect user-provided worker and database names in deployment ([04ffc38](https://github.com/tamylaa/clodo-framework/commit/04ffc382ab910d4d260ba5c3f2e421763587948a))
32
+
33
+ ## [4.0.7](https://github.com/tamylaa/clodo-framework/compare/v4.0.6...v4.0.7) (2025-12-09)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * correct dynamic import paths in interactive-validation.js ([acbadae](https://github.com/tamylaa/clodo-framework/commit/acbadaefc10cf7efab9dd263f7a40f8db18fccb4))
39
+ * correct import path in interactive-validation.js ([8355677](https://github.com/tamylaa/clodo-framework/commit/83556777a0faa1a85766c0bf4795428d8ba807e6))
40
+ * correct remaining dynamic import paths in interactive-validation.js ([837f0a4](https://github.com/tamylaa/clodo-framework/commit/837f0a48489dbde6b644944950232ec0f424639f))
41
+ * correct Windows PowerShell environment variable handling ([f3c5354](https://github.com/tamylaa/clodo-framework/commit/f3c535449f744a2448b4c1b7d98fc62853a8eaab))
42
+
43
+ ## [4.0.6](https://github.com/tamylaa/clodo-framework/compare/v4.0.5...v4.0.6) (2025-12-09)
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * add null checks for enterprise deployment methods ([97c3237](https://github.com/tamylaa/clodo-framework/commit/97c32371e97f259f62a82e9f7cc393dab0def7ed))
49
+ * correct URL construction and export missing testing workflow ([19691e1](https://github.com/tamylaa/clodo-framework/commit/19691e1651b3f37762e0564ccbb939c7c22965ad))
50
+ * correct worker URL construction and prevent undefined errors ([5d94f4f](https://github.com/tamylaa/clodo-framework/commit/5d94f4f064d5264f18929a6d2bd0564b0bb5494a))
51
+ * remove duplicate export in InteractiveTestingWorkflow ([db710c2](https://github.com/tamylaa/clodo-framework/commit/db710c2342ac3fd41b73ffd01fdd83ce0e0256f1))
52
+
53
+ ## [4.0.5](https://github.com/tamylaa/clodo-framework/compare/v4.0.4...v4.0.5) (2025-12-09)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * ensure deployments use correct Cloudflare account and zone ([22d42a9](https://github.com/tamylaa/clodo-framework/commit/22d42a9d4cf800e78953a0bcd897d6cb94dfefc5))
59
+
60
+ ## [4.0.4](https://github.com/tamylaa/clodo-framework/compare/v4.0.3...v4.0.4) (2025-12-08)
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * enhance existing resource handling and API token propagation ([c7b3a22](https://github.com/tamylaa/clodo-framework/commit/c7b3a226b01609f01f6e8cb1cf27b957cd11868e))
66
+
67
+ ## [4.0.3](https://github.com/tamylaa/clodo-framework/compare/v4.0.2...v4.0.3) (2025-12-08)
68
+
69
+
70
+ ### Bug Fixes
71
+
72
+ * Export CLI utilities to enable framework CLI commands ([35f1701](https://github.com/tamylaa/clodo-framework/commit/35f1701653ebe01b8fe41d184d2b88dac4c5b8d4))
73
+
74
+ ## [4.0.2](https://github.com/tamylaa/clodo-framework/compare/v4.0.1...v4.0.2) (2025-12-08)
75
+
76
+
77
+ ### Bug Fixes
78
+
79
+ * Pass API credentials through database creation workflow ([c245618](https://github.com/tamylaa/clodo-framework/commit/c245618290a7c71808de6d1934076bd53a0519c9))
80
+
81
+ ## [4.0.1](https://github.com/tamylaa/clodo-framework/compare/v4.0.0...v4.0.1) (2025-12-07)
82
+
83
+
84
+ ### Bug Fixes
85
+
86
+ * Export COMMON_FEATURES and autoConfigureFramework, update docs ([6cf9a7e](https://github.com/tamylaa/clodo-framework/commit/6cf9a7e13c5b0b6dc10b69624e5633429890f894))
87
+
88
+ # [4.0.0](https://github.com/tamylaa/clodo-framework/compare/v3.2.5...v4.0.0) (2025-12-07)
89
+
90
+
91
+ ### Bug Fixes
92
+
93
+ * resolve remaining 5 import path issues in dist files ([383a625](https://github.com/tamylaa/clodo-framework/commit/383a6257910546f4d9a9f1442f4005c0cc166704))
94
+
95
+
96
+ ### Code Refactoring
97
+
98
+ * replace band-aid import fixes with proper wrapper pattern ([5385ef2](https://github.com/tamylaa/clodo-framework/commit/5385ef23e9a9b8be26fce9d9fe6df2184667168c))
99
+
100
+
101
+ ### BREAKING CHANGES
102
+
103
+ * from previous approach:
104
+ - Removed post-build path manipulation that was fragile and hard to maintain
105
+ - Implemented proper wrapper re-export pattern consistent with existing codebase
106
+
107
+ Changes:
108
+ - Create lib/shared/utils/framework-config.js wrapper that re-exports from src/utils
109
+ - Update connection-manager.js to import from ../utils/framework-config.js wrapper
110
+ - Update secret-generator.js to import from ../utils/framework-config.js wrapper
111
+ - Update graceful-shutdown-manager.js to import from ./framework-config.js wrapper
112
+ - Replace complex import path fixes with single minimal transformation in fix-dist-imports.js
113
+ - Maintains all 23 exports working correctly
114
+
115
+ Benefits:
116
+ Clean, maintainable architecture following existing wrapper patterns
117
+ No circular dependencies
118
+ Imports work correctly in both source and compiled dist/
119
+ Easier to debug and understand import resolution
120
+ Scales better as codebase grows
121
+
122
+ ## [3.2.5](https://github.com/tamylaa/clodo-framework/compare/v3.2.4...v3.2.5) (2025-12-06)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * correct import paths in dist/index.js for Windows compatibility ([351ba68](https://github.com/tamylaa/clodo-framework/commit/351ba68450c675af6f199036121aa2797eaa97a8))
128
+
129
+ ## [3.2.4](https://github.com/tamylaa/clodo-framework/compare/v3.2.3...v3.2.4) (2025-12-06)
130
+
131
+
132
+ ### Bug Fixes
133
+
134
+ * expose CLI utilities in public API to fix import issues ([5d995ab](https://github.com/tamylaa/clodo-framework/commit/5d995abb2f6cb718acc0a03beef75f1025204200))
135
+
136
+ ## [3.2.3](https://github.com/tamylaa/clodo-framework/compare/v3.2.2...v3.2.3) (2025-12-06)
137
+
138
+
139
+ ### Bug Fixes
140
+
141
+ * clean up debug logging in fix-dist-imports.js ([374318e](https://github.com/tamylaa/clodo-framework/commit/374318efc9b73cf304306f3dd249eb88f8b06c98))
142
+ * resolve all test suite failures for production readiness ([519df7c](https://github.com/tamylaa/clodo-framework/commit/519df7c755bd1a93bb5e9717c2aaf21bdf02e636))
143
+
144
+ ## [3.2.2](https://github.com/tamylaa/clodo-framework/compare/v3.2.1...v3.2.2) (2025-12-05)
145
+
146
+
147
+ ### Bug Fixes
148
+
149
+ * correct import paths in lib/ files and enhance build script ([77abdb2](https://github.com/tamylaa/clodo-framework/commit/77abdb24ccfab61275a8f9716b09c84faaf8db84))
150
+
151
+ ## [3.2.1](https://github.com/tamylaa/clodo-framework/compare/v3.2.0...v3.2.1) (2025-12-05)
152
+
153
+
154
+ ### Bug Fixes
155
+
156
+ * enhance deploy command with prerequisite checking and organize project structure ([660c5ab](https://github.com/tamylaa/clodo-framework/commit/660c5ab82546ca1a80b42c1d4cbc6d3972cc6203))
157
+
158
+ # [3.2.0](https://github.com/tamylaa/clodo-framework/compare/v3.1.27...v3.2.0) (2025-12-03)
159
+
160
+
161
+ ### Bug Fixes
162
+
163
+ * add pre-publish import validation and remove non-existent exports ([a41fa7d](https://github.com/tamylaa/clodo-framework/commit/a41fa7df5c1ce05d34efe7e62e68d1c2fa8ea89c))
164
+ * correct CLI import paths for npm distribution ([ba68e0a](https://github.com/tamylaa/clodo-framework/commit/ba68e0adfa4c3bf36584b8bd37310ef616f79722))
165
+ * enable missing exports and remove lib-dependent modules from npm ([1645a58](https://github.com/tamylaa/clodo-framework/commit/1645a58d1e1f5d7126fd02766e9b4d006fa45be7))
166
+ ## [Unreleased]
167
+
168
+ ### Bug Fixes
169
+
170
+ * Fix import paths in `dist/` to ensure packaged artifact resolves internal modules correctly (fixed `wrangler-deployer` and `WranglerTomlGenerator`).
171
+ * Add `scripts/utilities/check-dist-imports.js` and `scripts/utilities/test-packaged-artifact.js` and include packaged-artifact smoke test in release workflow.
172
+
173
+ ### Improvements
174
+
175
+ * **Project Organization**: Complete cleanup and reorganization of project structure
176
+ - Removed 15+ temporary and backup files (test-output.txt, *.old.js, test-*.js, *.log files)
177
+ - Organized 100+ internal documentation files into categorical structure
178
+ - Created `i-docs/` with 10 organized categories (architecture, development, testing, deployment, roadmap, guides, session-reports, phases, analysis, licensing)
179
+ - Cleaned `docs/` directory to contain only 5 public-facing documentation files
180
+ - Moved 33 internal analysis documents from `docs/` to `i-docs/analysis/`
181
+ - Moved 13 root-level documentation files to appropriate i-docs categories
182
+ - Root directory now contains only essential project files (config, package.json, README, etc.)
183
+
184
+ * **Documentation**: Added `docs/HOWTO_CONSUME_CLODO_FRAMEWORK.md` — a concise consumer guide covering CLI usage, public exports, packaging troubleshooting, and recommended consumption patterns.
185
+ * **Middleware Architecture**: Introduce contract-first middleware generation (v4.1 candidate) with `MiddlewareRegistry` and `MiddlewareComposer` to reduce duplication and improve testability. Added a migration tool `scripts/migration/migrate-middleware-legacy-to-contract.js` and a `--middleware-strategy` CLI flag to opt into `legacy` generator output.
186
+
187
+ * **Configuration Management**: Eliminated hard-coded values from source code
188
+ - Moved domain defaults from ServiceCreator to `validation-config.json`
189
+ - Added configuration hierarchy: CLI option → config file → fallback default
190
+ - Introduced `templates.defaults` and `templates.companyDefaults` sections in validation-config.json
191
+ - ServiceCreator now uses FrameworkConfig for loading template defaults
192
+
193
+ * **CLI Test Infrastructure**: Achieved 100% CLI test pass rate (44/44 tests)
194
+ - Fixed dry-run bug in clodo-init-service (Array.isArray check)
195
+ - Implemented template fallback system (generic template used when specific type missing)
196
+ - Added clodo-service-manifest.json to generic template
197
+ - Updated all test expectations to match actual CLI behavior
198
+ - All CLI tests updated to use command-line arguments instead of interactive input
199
+ ### Bug Fixes
200
+
201
+ * compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
202
+ * include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
203
+
204
+ ## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
210
+
211
+ ## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
212
+
213
+
214
+ ### Bug Fixes
215
+
216
+ * allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
217
+ * exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
218
+
219
+ ## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
220
+
221
+
222
+ ### Bug Fixes
223
+
224
+ * add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
225
+
226
+ ## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
227
+
228
+
229
+ ### Bug Fixes
230
+
231
+ * deploy command should use full three-tier architecture (88+ fields)- Updated collect() to return comprehensive three-tier result- Deploy command now uses full collection with confirmations- Prevents duplicate confirmation steps in interactive mode- Restores the 80+ field deployment flow with user confirmations ([5c6c226](https://github.com/tamylaa/clodo-framework/commit/5c6c226d652d3dc7d1532147af4e87f7ccb8a811))
232
+
233
+ ## [3.1.4](https://github.com/tamylaa/clodo-framework/compare/v3.1.3...v3.1.4) (2025-10-25)
234
+
235
+
236
+ ### Bug Fixes
237
+
238
+ * deploy command should collect deployment inputs, not service creation inputs ([63cbccf](https://github.com/tamylaa/clodo-framework/commit/63cbccfd8b3886668304a7dce51508e6ccba2450))
239
+
240
+ ## [3.1.3](https://github.com/tamylaa/clodo-framework/compare/v3.1.2...v3.1.3) (2025-10-25)
241
+
242
+
243
+ ### Bug Fixes
244
+
245
+ * ui-structures-loader path resolution and build inclusion ([1744ce3](https://github.com/tamylaa/clodo-framework/commit/1744ce324272a9befa803498f452953409f3f870))
246
+ * ui-structures-loader should look in package directory, not cwd ([23160a8](https://github.com/tamylaa/clodo-framework/commit/23160a808230999c26bb5c5e989ac425b150647d))
247
+
248
+ ## [3.1.2](https://github.com/tamylaa/clodo-framework/compare/v3.1.1...v3.1.2) (2025-10-25)
249
+
250
+
251
+ ### Bug Fixes
252
+
253
+ * include ui-structures directory in published package files ([79ce369](https://github.com/tamylaa/clodo-framework/commit/79ce3692fc5fb50cf90cead6378b4d5d180d91d9))
254
+
255
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
256
+
257
+
258
+ ### Bug Fixes
259
+
260
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
261
+
262
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
263
+
264
+
265
+ ### Bug Fixes
266
+
267
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
268
+
269
+ # [3.1.0](https://github.com/tamylaa/clodo-framework/compare/v3.0.15...v3.1.0) (2025-10-24)
270
+
271
+
272
+ ### Bug Fixes
273
+
274
+ * import missing dependencies in generators utils index ([771a336](https://github.com/tamylaa/clodo-framework/commit/771a336f678c636221e73dd2a16efc92dca94345))
275
+ * improve error handling in generators ([799a05b](https://github.com/tamylaa/clodo-framework/commit/799a05b205f8fd0e0c3ca512a39ce8a719c5d39c))
276
+ * resolve ESM compatibility and test stability issues ([87c422d](https://github.com/tamylaa/clodo-framework/commit/87c422d1611469246a819620834feee67577b30f))
277
+
278
+
279
+ ### Features
280
+
281
+ * comprehensive framework enhancement with domain routes automation ([ec8aa8d](https://github.com/tamylaa/clodo-framework/commit/ec8aa8d8e40310b2d617091e3d69bb97ded33d6a))
282
+
283
+ ## [4.0.12](https://github.com/tamylaa/clodo-framework/compare/v4.0.11...v4.0.12) (2025-12-12)
284
+
285
+
286
+ ### Bug Fixes
287
+
288
+ * resolve version sync for 4.0.12 release ([6375c5f](https://github.com/tamylaa/clodo-framework/commit/6375c5f71516cf2a7a96edcf5878106063037ba8))
289
+ * trigger 4.0.12 release after tag sync ([3dafb25](https://github.com/tamylaa/clodo-framework/commit/3dafb253cbbae6e7eac27dd5170e9f391c3deda0))
290
+
291
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
292
+
293
+
294
+ ### Bug Fixes
295
+
296
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
297
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
298
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
299
+ * resolve version sync for 4.0.12 release ([6375c5f](https://github.com/tamylaa/clodo-framework/commit/6375c5f71516cf2a7a96edcf5878106063037ba8))
300
+ * trigger patch release for latest changes ([6161573](https://github.com/tamylaa/clodo-framework/commit/6161573ead8271eaea2766bf7c85f63ef7378a7d))
301
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
302
+
303
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
304
+
305
+
306
+ ### Bug Fixes
307
+
308
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
309
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
310
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
311
+ * trigger patch release for latest changes ([6161573](https://github.com/tamylaa/clodo-framework/commit/6161573ead8271eaea2766bf7c85f63ef7378a7d))
312
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
313
+
314
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
315
+
316
+
317
+ ### Bug Fixes
318
+
319
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
320
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
321
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
322
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
323
+
324
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
325
+
326
+
327
+ ### Bug Fixes
328
+
329
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
330
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
331
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
332
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
333
+
334
+ ## [4.0.10](https://github.com/tamylaa/clodo-framework/compare/v4.0.9...v4.0.10) (2025-12-10)
335
+
336
+
337
+ ### Bug Fixes
338
+
339
+ * clean up test artifacts and temporary files ([0eb6cda](https://github.com/tamylaa/clodo-framework/commit/0eb6cdac68bce6d07e567f4b7810f4d94752b7c0))
340
+
341
+ ## [4.0.8](https://github.com/tamylaa/clodo-framework/compare/v4.0.7...v4.0.8) (2025-12-09)
342
+
343
+
344
+ ### Bug Fixes
345
+
346
+ * respect user-provided worker and database names in deployment ([04ffc38](https://github.com/tamylaa/clodo-framework/commit/04ffc382ab910d4d260ba5c3f2e421763587948a))
347
+
348
+ ## [4.0.7](https://github.com/tamylaa/clodo-framework/compare/v4.0.6...v4.0.7) (2025-12-09)
349
+
350
+
351
+ ### Bug Fixes
352
+
353
+ * correct dynamic import paths in interactive-validation.js ([acbadae](https://github.com/tamylaa/clodo-framework/commit/acbadaefc10cf7efab9dd263f7a40f8db18fccb4))
354
+ * correct import path in interactive-validation.js ([8355677](https://github.com/tamylaa/clodo-framework/commit/83556777a0faa1a85766c0bf4795428d8ba807e6))
355
+ * correct remaining dynamic import paths in interactive-validation.js ([837f0a4](https://github.com/tamylaa/clodo-framework/commit/837f0a48489dbde6b644944950232ec0f424639f))
356
+ * correct Windows PowerShell environment variable handling ([f3c5354](https://github.com/tamylaa/clodo-framework/commit/f3c535449f744a2448b4c1b7d98fc62853a8eaab))
357
+
358
+ ## [4.0.6](https://github.com/tamylaa/clodo-framework/compare/v4.0.5...v4.0.6) (2025-12-09)
359
+
360
+
361
+ ### Bug Fixes
362
+
363
+ * add null checks for enterprise deployment methods ([97c3237](https://github.com/tamylaa/clodo-framework/commit/97c32371e97f259f62a82e9f7cc393dab0def7ed))
364
+ * correct URL construction and export missing testing workflow ([19691e1](https://github.com/tamylaa/clodo-framework/commit/19691e1651b3f37762e0564ccbb939c7c22965ad))
365
+ * correct worker URL construction and prevent undefined errors ([5d94f4f](https://github.com/tamylaa/clodo-framework/commit/5d94f4f064d5264f18929a6d2bd0564b0bb5494a))
366
+ * remove duplicate export in InteractiveTestingWorkflow ([db710c2](https://github.com/tamylaa/clodo-framework/commit/db710c2342ac3fd41b73ffd01fdd83ce0e0256f1))
367
+
368
+ ## [4.0.5](https://github.com/tamylaa/clodo-framework/compare/v4.0.4...v4.0.5) (2025-12-09)
369
+
370
+
371
+ ### Bug Fixes
372
+
373
+ * ensure deployments use correct Cloudflare account and zone ([22d42a9](https://github.com/tamylaa/clodo-framework/commit/22d42a9d4cf800e78953a0bcd897d6cb94dfefc5))
374
+
375
+ ## [4.0.4](https://github.com/tamylaa/clodo-framework/compare/v4.0.3...v4.0.4) (2025-12-08)
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * enhance existing resource handling and API token propagation ([c7b3a22](https://github.com/tamylaa/clodo-framework/commit/c7b3a226b01609f01f6e8cb1cf27b957cd11868e))
381
+
382
+ ## [4.0.3](https://github.com/tamylaa/clodo-framework/compare/v4.0.2...v4.0.3) (2025-12-08)
383
+
384
+
385
+ ### Bug Fixes
386
+
387
+ * Export CLI utilities to enable framework CLI commands ([35f1701](https://github.com/tamylaa/clodo-framework/commit/35f1701653ebe01b8fe41d184d2b88dac4c5b8d4))
388
+
389
+ ## [4.0.2](https://github.com/tamylaa/clodo-framework/compare/v4.0.1...v4.0.2) (2025-12-08)
390
+
391
+
392
+ ### Bug Fixes
393
+
394
+ * Pass API credentials through database creation workflow ([c245618](https://github.com/tamylaa/clodo-framework/commit/c245618290a7c71808de6d1934076bd53a0519c9))
395
+
396
+ ## [4.0.1](https://github.com/tamylaa/clodo-framework/compare/v4.0.0...v4.0.1) (2025-12-07)
397
+
398
+
399
+ ### Bug Fixes
400
+
401
+ * Export COMMON_FEATURES and autoConfigureFramework, update docs ([6cf9a7e](https://github.com/tamylaa/clodo-framework/commit/6cf9a7e13c5b0b6dc10b69624e5633429890f894))
402
+
403
+ # [4.0.0](https://github.com/tamylaa/clodo-framework/compare/v3.2.5...v4.0.0) (2025-12-07)
404
+
405
+
406
+ ### Bug Fixes
407
+
408
+ * resolve remaining 5 import path issues in dist files ([383a625](https://github.com/tamylaa/clodo-framework/commit/383a6257910546f4d9a9f1442f4005c0cc166704))
409
+
410
+
411
+ ### Code Refactoring
412
+
413
+ * replace band-aid import fixes with proper wrapper pattern ([5385ef2](https://github.com/tamylaa/clodo-framework/commit/5385ef23e9a9b8be26fce9d9fe6df2184667168c))
414
+
415
+
416
+ ### BREAKING CHANGES
417
+
418
+ * from previous approach:
419
+ - Removed post-build path manipulation that was fragile and hard to maintain
420
+ - Implemented proper wrapper re-export pattern consistent with existing codebase
421
+
422
+ Changes:
423
+ - Create lib/shared/utils/framework-config.js wrapper that re-exports from src/utils
424
+ - Update connection-manager.js to import from ../utils/framework-config.js wrapper
425
+ - Update secret-generator.js to import from ../utils/framework-config.js wrapper
426
+ - Update graceful-shutdown-manager.js to import from ./framework-config.js wrapper
427
+ - Replace complex import path fixes with single minimal transformation in fix-dist-imports.js
428
+ - Maintains all 23 exports working correctly
429
+
430
+ Benefits:
431
+ Clean, maintainable architecture following existing wrapper patterns
432
+ No circular dependencies
433
+ Imports work correctly in both source and compiled dist/
434
+ Easier to debug and understand import resolution
435
+ Scales better as codebase grows
436
+
437
+ ## [3.2.5](https://github.com/tamylaa/clodo-framework/compare/v3.2.4...v3.2.5) (2025-12-06)
438
+
439
+
440
+ ### Bug Fixes
441
+
442
+ * correct import paths in dist/index.js for Windows compatibility ([351ba68](https://github.com/tamylaa/clodo-framework/commit/351ba68450c675af6f199036121aa2797eaa97a8))
443
+
444
+ ## [3.2.4](https://github.com/tamylaa/clodo-framework/compare/v3.2.3...v3.2.4) (2025-12-06)
445
+
446
+
447
+ ### Bug Fixes
448
+
449
+ * expose CLI utilities in public API to fix import issues ([5d995ab](https://github.com/tamylaa/clodo-framework/commit/5d995abb2f6cb718acc0a03beef75f1025204200))
450
+
451
+ ## [3.2.3](https://github.com/tamylaa/clodo-framework/compare/v3.2.2...v3.2.3) (2025-12-06)
452
+
453
+
454
+ ### Bug Fixes
455
+
456
+ * clean up debug logging in fix-dist-imports.js ([374318e](https://github.com/tamylaa/clodo-framework/commit/374318efc9b73cf304306f3dd249eb88f8b06c98))
457
+ * resolve all test suite failures for production readiness ([519df7c](https://github.com/tamylaa/clodo-framework/commit/519df7c755bd1a93bb5e9717c2aaf21bdf02e636))
458
+
459
+ ## [3.2.2](https://github.com/tamylaa/clodo-framework/compare/v3.2.1...v3.2.2) (2025-12-05)
460
+
461
+
462
+ ### Bug Fixes
463
+
464
+ * correct import paths in lib/ files and enhance build script ([77abdb2](https://github.com/tamylaa/clodo-framework/commit/77abdb24ccfab61275a8f9716b09c84faaf8db84))
465
+
466
+ ## [3.2.1](https://github.com/tamylaa/clodo-framework/compare/v3.2.0...v3.2.1) (2025-12-05)
467
+
468
+
469
+ ### Bug Fixes
470
+
471
+ * enhance deploy command with prerequisite checking and organize project structure ([660c5ab](https://github.com/tamylaa/clodo-framework/commit/660c5ab82546ca1a80b42c1d4cbc6d3972cc6203))
472
+
473
+ # [3.2.0](https://github.com/tamylaa/clodo-framework/compare/v3.1.27...v3.2.0) (2025-12-03)
474
+
475
+
476
+ ### Bug Fixes
477
+
478
+ * add pre-publish import validation and remove non-existent exports ([a41fa7d](https://github.com/tamylaa/clodo-framework/commit/a41fa7df5c1ce05d34efe7e62e68d1c2fa8ea89c))
479
+ * correct CLI import paths for npm distribution ([ba68e0a](https://github.com/tamylaa/clodo-framework/commit/ba68e0adfa4c3bf36584b8bd37310ef616f79722))
480
+ * enable missing exports and remove lib-dependent modules from npm ([1645a58](https://github.com/tamylaa/clodo-framework/commit/1645a58d1e1f5d7126fd02766e9b4d006fa45be7))
481
+
482
+
483
+ ### Features
484
+
485
+ * add comprehensive pre-publish and downstream install tests ([b1e8a25](https://github.com/tamylaa/clodo-framework/commit/b1e8a25b3acae840b66f728aa55dd5c24af0914f))
486
+ * add proper CLI regression tests to downstream install test ([4cde4bc](https://github.com/tamylaa/clodo-framework/commit/4cde4bc08f0290f0432815b2c8cfa60247bc8dfd))
487
+
488
+ ## [3.1.27](https://github.com/tamylaa/clodo-framework/compare/v3.1.26...v3.1.27) (2025-12-02)
489
+
490
+
491
+ ### Bug Fixes
492
+
493
+ * clarify lib/ imports from src/ are intentional and working ([7556cbd](https://github.com/tamylaa/clodo-framework/commit/7556cbdfa1a8ae24ea5c342df0631014b5c1b060))
494
+ * correct ALL lib/ module import paths for npm package compatibility ([4df859e](https://github.com/tamylaa/clodo-framework/commit/4df859ed1e5123d3862dc160a078b60803d7a37d))
495
+ * correct CloudflareAPI import path in credential-collector.js ([805e027](https://github.com/tamylaa/clodo-framework/commit/805e02793467f21aa06e85af609fcb395710d165))
496
+ * correct credential-collector CloudflareAPI import path ([5573780](https://github.com/tamylaa/clodo-framework/commit/557378010dea5fb9e3f83952cc38632b0e94f53d))
497
+ * correct EnvironmentManager relative import paths ([0f62df6](https://github.com/tamylaa/clodo-framework/commit/0f62df6bc9e059f6c66a87b88ffe9ca57a25f8c1))
498
+ * correct relative import paths for npm distribution ([68c53e0](https://github.com/tamylaa/clodo-framework/commit/68c53e0c3716ed4044688dd151b26b6d8a113e05))
499
+ * correct validation.js import path in ValidationRegistry.js ([882fe21](https://github.com/tamylaa/clodo-framework/commit/882fe21b964670dc2e075b3169068e6973677b42))
500
+ * remove unnecessary warning about missing validation-config.json ([15d22db](https://github.com/tamylaa/clodo-framework/commit/15d22db8fa26202ffa81654c417ae2fa69345bba))
501
+ * resolve all lib import paths for npm distribution ([1e32bef](https://github.com/tamylaa/clodo-framework/commit/1e32bef70505a1cd142efbe94016027edbbe61df))
502
+ * resolve ErrorHandler reference in security module ([5bc406e](https://github.com/tamylaa/clodo-framework/commit/5bc406eb768d10409d615c67b11d8118fac4081d))
503
+ * use lib re-export wrapper for MultiDomainOrchestrator in domain-router.js ([215aefc](https://github.com/tamylaa/clodo-framework/commit/215aefc382b811c105598e6241beae60e65b0409))
504
+ * use lib re-export wrappers instead of direct src/ references ([3aaf672](https://github.com/tamylaa/clodo-framework/commit/3aaf6725e6c09b97e3ea4d80519c1bf4ae61a921))
505
+
506
+ ## [3.1.26](https://github.com/tamylaa/clodo-framework/compare/v3.1.25...v3.1.26) (2025-12-02)
507
+
508
+
509
+ ### Bug Fixes
510
+
511
+ * correct import paths for npm package distribution - use proper depth for compiled dist/ files ([d346563](https://github.com/tamylaa/clodo-framework/commit/d3465637e02077e014661e1039421e9cd0010d97))
512
+
513
+ ## [3.1.25](https://github.com/tamylaa/clodo-framework/compare/v3.1.24...v3.1.25) (2025-12-02)
514
+
515
+
516
+ ### Bug Fixes
517
+
518
+ * correct all import paths and add prevention documentation ([dbd3ce6](https://github.com/tamylaa/clodo-framework/commit/dbd3ce6d6b3ceceb9aa839358923c6096c762ceb))
519
+
520
+ ## [3.1.24](https://github.com/tamylaa/clodo-framework/compare/v3.1.23...v3.1.24) (2025-11-08)
521
+
522
+
523
+ ### Bug Fixes
524
+
525
+ * Add comprehensive framework assessment and strategic evolution plan ([bed4108](https://github.com/tamylaa/clodo-framework/commit/bed41085c253e025bd065e507296efe261616652))
526
+ * resolve linting error and enhance CI pipeline ([ece5b5a](https://github.com/tamylaa/clodo-framework/commit/ece5b5aa7232bc990b1d85d3e53ccf7e2d215c98))
527
+
528
+ ## [3.1.23](https://github.com/tamylaa/clodo-framework/compare/v3.1.22...v3.1.23) (2025-11-07)
529
+
530
+
531
+ ### Bug Fixes
532
+
533
+ * Complete framework evolution from promise to production-ready reality ([3341508](https://github.com/tamylaa/clodo-framework/commit/33415083e0f8c81267831b4d295b181e3aef3758))
534
+ * Correct import path validation for formatters.js ([763a137](https://github.com/tamylaa/clodo-framework/commit/763a137b5cff4845fc6335dec2fa9357e1c141c5))
535
+
536
+ ## [3.1.22](https://github.com/tamylaa/clodo-framework/compare/v3.1.21...v3.1.22) (2025-11-05)
537
+
538
+
539
+ ### Bug Fixes
540
+
541
+ * clarify bin/ is private CLI implementation, not public API ([a092d30](https://github.com/tamylaa/clodo-framework/commit/a092d30c9c9c72f0bcb9d6b132175b4a6d6ce0bf))
542
+ * Separate clodo-enterprise: remove enterprise code/docs, fix imports, update README ([58aabff](https://github.com/tamylaa/clodo-framework/commit/58aabff0b0fa193cd2acf37027e43a872fccd8f2))
543
+ * wire helpers to shared infra and fix CloudflareAPI import casing ([7d0b27f](https://github.com/tamylaa/clodo-framework/commit/7d0b27f8dbd0a82f01d52a4d00324ab72507ab30))
544
+
545
+ ## [3.1.21](https://github.com/tamylaa/clodo-framework/compare/v3.1.20...v3.1.21) (2025-10-28)
546
+
547
+
548
+ ### Bug Fixes
549
+
550
+ * remove dist/ references from dynamic imports in bin/ ([e3dd2c4](https://github.com/tamylaa/clodo-framework/commit/e3dd2c4a21e86b90985352cdafc3742eaa8a573e))
551
+
552
+ ## [3.1.20](https://github.com/tamylaa/clodo-framework/compare/v3.1.19...v3.1.20) (2025-10-28)
553
+
554
+
555
+ ### Bug Fixes
556
+
557
+ * use depth-aware import paths in re-export wrappers ([db383fe](https://github.com/tamylaa/clodo-framework/commit/db383fe22e67b3d6a99b9465253c1169f509db13))
558
+
559
+ ## [3.1.19](https://github.com/tamylaa/clodo-framework/compare/v3.1.18...v3.1.19) (2025-10-28)
560
+
561
+
562
+ ### Bug Fixes
563
+
564
+ * Correct re-export wrapper paths to use ../../bin (two levels up from dist/utils) ([992136e](https://github.com/tamylaa/clodo-framework/commit/992136e7b143424e2807f49a94599e8d71a91079))
565
+
566
+ ## [3.1.18](https://github.com/tamylaa/clodo-framework/compare/v3.1.17...v3.1.18) (2025-10-28)
567
+
568
+
569
+ ### Bug Fixes
570
+
571
+ * Correct re-export wrapper import paths and add build-time path validator ([293f7b1](https://github.com/tamylaa/clodo-framework/commit/293f7b1537bed9a3c9eafcc96131be863044f313))
572
+
573
+ ## [3.1.17](https://github.com/tamylaa/clodo-framework/compare/v3.1.16...v3.1.17) (2025-10-28)
574
+
575
+
576
+ ### Bug Fixes
577
+
578
+ * Correct re-export path depth in cloudflare ops wrapper (3 levels not 4) ([fa72b2b](https://github.com/tamylaa/clodo-framework/commit/fa72b2b2f1ba0ada932ba42a7a1788a41a7798a1))
579
+
580
+ ## [3.1.16](https://github.com/tamylaa/clodo-framework/compare/v3.1.15...v3.1.16) (2025-10-28)
581
+
582
+
583
+ ### Bug Fixes
584
+
585
+ * Correct import path for cloudflare ops.js module ([b61de66](https://github.com/tamylaa/clodo-framework/commit/b61de66da57dfbd5d4157b2dfd0d5819db99b89b))
586
+ * Correct import path in cloudflare ops re-export wrapper ([5bda1d2](https://github.com/tamylaa/clodo-framework/commit/5bda1d2d76f6577f2475adc7d4fe21284ded91e2))
587
+ * Resolve all bin/ import paths by creating library re-export wrappers ([a6a2147](https://github.com/tamylaa/clodo-framework/commit/a6a2147562578945d4fb630086facfcdf8df66e5))
588
+
589
+ ## [3.1.15](https://github.com/tamylaa/clodo-framework/compare/v3.1.14...v3.1.15) (2025-10-28)
590
+
591
+
592
+ ### Bug Fixes
593
+
594
+ * Complete comprehensive clodo-framework refactoring (Tasks 3.1-3.4) ([0949b8b](https://github.com/tamylaa/clodo-framework/commit/0949b8be5f4f6522c0e4e4050e858ce82be5d034))
595
+
596
+ ## [3.1.14](https://github.com/tamylaa/clodo-framework/compare/v3.1.13...v3.1.14) (2025-10-27)
597
+
598
+
599
+ ### Bug Fixes
600
+
601
+ * restore smart credential collection flow in deploy command ([a3e94f6](https://github.com/tamylaa/clodo-framework/commit/a3e94f6efe4a41c380badfc7a104e32bfba9fe9a))
602
+
603
+ ## [3.1.13](https://github.com/tamylaa/clodo-framework/compare/v3.1.12...v3.1.13) (2025-10-27)
604
+
605
+
606
+ ### Bug Fixes
607
+
608
+ * add comprehensive test coverage for service validation ([393e6d2](https://github.com/tamylaa/clodo-framework/commit/393e6d268348cc2926c80f0d3f6cd5377c2875a2))
609
+ * add intelligent Cloudflare service detection and validation ([a680006](https://github.com/tamylaa/clodo-framework/commit/a6800063e2df8f8d6fa7660079cd22eb3f9a4a97))
610
+
611
+ ## [3.1.12](https://github.com/tamylaa/clodo-framework/compare/v3.1.11...v3.1.12) (2025-10-27)
612
+
613
+
614
+ ### Bug Fixes
615
+
616
+ * update babel import rewriter to handle bin/ paths too ([6e26172](https://github.com/tamylaa/clodo-framework/commit/6e26172bbc2f697a59de0ea5567665094d4027b1))
617
+
618
+ ## [3.1.11](https://github.com/tamylaa/clodo-framework/compare/v3.1.10...v3.1.11) (2025-10-27)
619
+
620
+
621
+ ### Bug Fixes
622
+
623
+ * add babel import path rewriter and remove source bin from package files ([91f19d4](https://github.com/tamylaa/clodo-framework/commit/91f19d48791d604497ff708a5c7a836100e6885a))
624
+
625
+ ## [3.1.10](https://github.com/tamylaa/clodo-framework/compare/v3.1.9...v3.1.10) (2025-10-27)
626
+
627
+
628
+ ### Bug Fixes
629
+
630
+ * correct import paths in bin/ to reference src/ not dist/ ([57d9740](https://github.com/tamylaa/clodo-framework/commit/57d974051d15ba263005aba8e48f5290823e24c9))
631
+
632
+ ## [3.1.9](https://github.com/tamylaa/clodo-framework/compare/v3.1.8...v3.1.9) (2025-10-27)
633
+
634
+
635
+ ### Bug Fixes
636
+
637
+ * compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
638
+ * include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
639
+
640
+ ## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
641
+
642
+
643
+ ### Bug Fixes
644
+
645
+ * change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
646
+
647
+ ## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
648
+
649
+
650
+ ### Bug Fixes
651
+
652
+ * allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
653
+ * exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
654
+
655
+ ## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
656
+
657
+
658
+ ### Bug Fixes
659
+
660
+ * add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
661
+
662
+ ## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
663
+
664
+
665
+ ### Bug Fixes
666
+
667
+ * deploy command should use full three-tier architecture (88+ fields)- Updated collect() to return comprehensive three-tier result- Deploy command now uses full collection with confirmations- Prevents duplicate confirmation steps in interactive mode- Restores the 80+ field deployment flow with user confirmations ([5c6c226](https://github.com/tamylaa/clodo-framework/commit/5c6c226d652d3dc7d1532147af4e87f7ccb8a811))
668
+
669
+ ## [3.1.4](https://github.com/tamylaa/clodo-framework/compare/v3.1.3...v3.1.4) (2025-10-25)
670
+
671
+
672
+ ### Bug Fixes
673
+
674
+ * deploy command should collect deployment inputs, not service creation inputs ([63cbccf](https://github.com/tamylaa/clodo-framework/commit/63cbccfd8b3886668304a7dce51508e6ccba2450))
675
+
676
+ ## [3.1.3](https://github.com/tamylaa/clodo-framework/compare/v3.1.2...v3.1.3) (2025-10-25)
677
+
678
+
679
+ ### Bug Fixes
680
+
681
+ * ui-structures-loader path resolution and build inclusion ([1744ce3](https://github.com/tamylaa/clodo-framework/commit/1744ce324272a9befa803498f452953409f3f870))
682
+ * ui-structures-loader should look in package directory, not cwd ([23160a8](https://github.com/tamylaa/clodo-framework/commit/23160a808230999c26bb5c5e989ac425b150647d))
683
+
684
+ ## [3.1.2](https://github.com/tamylaa/clodo-framework/compare/v3.1.1...v3.1.2) (2025-10-25)
685
+
686
+
687
+ ### Bug Fixes
688
+
689
+ * include ui-structures directory in published package files ([79ce369](https://github.com/tamylaa/clodo-framework/commit/79ce3692fc5fb50cf90cead6378b4d5d180d91d9))
690
+
691
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
692
+
693
+
694
+ ### Bug Fixes
695
+
696
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
697
+
698
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
699
+
700
+
701
+ ### Bug Fixes
702
+
703
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
704
+
705
+ # [3.1.0](https://github.com/tamylaa/clodo-framework/compare/v3.0.15...v3.1.0) (2025-10-24)
706
+
707
+
708
+ ### Bug Fixes
709
+
710
+ * import missing dependencies in generators utils index ([771a336](https://github.com/tamylaa/clodo-framework/commit/771a336f678c636221e73dd2a16efc92dca94345))
711
+ * improve error handling in generators ([799a05b](https://github.com/tamylaa/clodo-framework/commit/799a05b205f8fd0e0c3ca512a39ce8a719c5d39c))
712
+ * resolve ESM compatibility and test stability issues ([87c422d](https://github.com/tamylaa/clodo-framework/commit/87c422d1611469246a819620834feee67577b30f))
713
+
714
+
715
+ ### Features
716
+
717
+ * comprehensive framework enhancement with domain routes automation ([ec8aa8d](https://github.com/tamylaa/clodo-framework/commit/ec8aa8d8e40310b2d617091e3d69bb97ded33d6a))
718
+
437
719
  ## [Unreleased]
438
720
 
439
721
  ### Improvements