@tamyla/clodo-framework 4.4.0 → 4.5.0

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 (36) hide show
  1. package/CHANGELOG.md +2 -1844
  2. package/README.md +44 -18
  3. package/dist/cli/commands/add.js +325 -0
  4. package/dist/config/service-schema-config.js +98 -5
  5. package/dist/index.js +22 -3
  6. package/dist/middleware/Composer.js +2 -1
  7. package/dist/middleware/factories.js +445 -0
  8. package/dist/middleware/index.js +4 -1
  9. package/dist/modules/ModuleManager.js +6 -2
  10. package/dist/routing/EnhancedRouter.js +248 -44
  11. package/dist/routing/RequestContext.js +393 -0
  12. package/dist/schema/SchemaManager.js +6 -2
  13. package/dist/service-management/generators/code/ServiceMiddlewareGenerator.js +79 -223
  14. package/dist/service-management/generators/code/WorkerIndexGenerator.js +241 -98
  15. package/dist/service-management/generators/config/WranglerTomlGenerator.js +130 -89
  16. package/dist/simple-api.js +4 -4
  17. package/dist/utilities/index.js +134 -1
  18. package/dist/utils/config/environment-var-normalizer.js +233 -0
  19. package/dist/validation/environmentGuard.js +172 -0
  20. package/docs/CHANGELOG.md +1877 -0
  21. package/docs/api-reference.md +153 -0
  22. package/package.json +4 -1
  23. package/scripts/repro-clodo.js +123 -0
  24. package/templates/ai-worker/package.json +19 -0
  25. package/templates/ai-worker/src/index.js +160 -0
  26. package/templates/cron-worker/package.json +19 -0
  27. package/templates/cron-worker/src/index.js +211 -0
  28. package/templates/edge-proxy/package.json +18 -0
  29. package/templates/edge-proxy/src/index.js +150 -0
  30. package/templates/minimal/package.json +17 -0
  31. package/templates/minimal/src/index.js +40 -0
  32. package/templates/queue-processor/package.json +19 -0
  33. package/templates/queue-processor/src/index.js +213 -0
  34. package/templates/rest-api/.dev.vars +2 -0
  35. package/templates/rest-api/package.json +19 -0
  36. package/templates/rest-api/src/index.js +124 -0
@@ -0,0 +1,1877 @@
1
+ # [4.4.1](https://github.com/tamylaa/clodo-framework/compare/v4.4.0...v4.4.1) (2026-02-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **config:** standardize environment variable format to single flat structure ([#1](https://github.com/tamylaa/clodo-framework/issues/1))
7
+ - Add `EnvironmentVarNormalizer` utility for automatic format conversion
8
+ - Support backward compatibility with nested and per-environment formats
9
+ - Emit deprecation warnings for old formats (removed in v5.0.0)
10
+ - Validate variable naming conventions (SCREAMING_SNAKE_CASE)
11
+ - Improve consistency with Wrangler.toml conventions
12
+
13
+ ### Documentation
14
+
15
+ * add comprehensive migration guide for environment variable standardization
16
+ * update API reference with service configuration examples and deprecation notices
17
+ * add variable naming convention guidelines
18
+
19
+ ### Deprecations
20
+
21
+ * **BREAKING in v5.0.0**: Nested `service.environment.vars` format will be removed
22
+ * **BREAKING in v5.0.0**: Per-environment `service.env.{env}.vars` format will be removed
23
+
24
+ ### Migration Guide
25
+
26
+ See [Environment Variable Standardization Guide](./env-var-standardization.md) for complete migration instructions.
27
+
28
+ ---
29
+
30
+ # [4.4.0](https://github.com/tamylaa/clodo-framework/compare/v4.3.5...v4.4.0) (2026-02-05)
31
+
32
+
33
+ ### Features
34
+
35
+ * add comprehensive Cloudflare Workers utilities ([8c82fd9](https://github.com/tamylaa/clodo-framework/commit/8c82fd97b9f2ac7ea1e579b3a4a37fea9f0aaaab))
36
+ * add comprehensive Cloudflare Workers utilities ([b7fd6e8](https://github.com/tamylaa/clodo-framework/commit/b7fd6e881cc6734606917b1786150abc5022f6ab))
37
+
38
+ ## [4.3.5](https://github.com/tamylaa/clodo-framework/compare/v4.3.4...v4.3.5) (2026-02-04)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * **funding:** use string value for open_collective in FUNDING.yml ([680cb5f](https://github.com/tamylaa/clodo-framework/commit/680cb5fa28499f2297b39a556ee2c60c0573ab4a))
44
+
45
+ ## [4.3.4](https://github.com/tamylaa/clodo-framework/compare/v4.3.3...v4.3.4) (2026-02-04)
46
+
47
+
48
+ ### Bug Fixes
49
+
50
+ * include middleware migration doc in packaged artifact ([a6e7c9e](https://github.com/tamylaa/clodo-framework/commit/a6e7c9e8d57f0bf3c11516e418ebe71a8b4e3c0e))
51
+ * trigger semantic-release for test fixes ([04f6f90](https://github.com/tamylaa/clodo-framework/commit/04f6f90fede7fab4ca1060fc6f490d1848a2ad55))
52
+
53
+ ## [4.3.3](https://github.com/tamylaa/clodo-framework/compare/v4.3.2...v4.3.3) (2026-02-02)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * **x:** strip CRLF from POST_MESSAGE lines before comparison and message extraction ([d9db8e0](https://github.com/tamylaa/clodo-framework/commit/d9db8e0eb87081c5e9506191b21a32970a7745f4))
59
+
60
+ ## [4.3.2](https://github.com/tamylaa/clodo-framework/compare/v4.3.1...v4.3.2) (2026-02-02)
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * **x:** resolve YAML syntax errors in run-validate-now.yml by quoting step name and adjusting indentation ([3eecf16](https://github.com/tamylaa/clodo-framework/commit/3eecf1690746c86c077f31fb64596da6d3ff9cf1))
66
+
67
+ ## [4.3.1](https://github.com/tamylaa/clodo-framework/compare/v4.3.0...v4.3.1) (2026-02-01)
68
+
69
+
70
+ ### Bug Fixes
71
+
72
+ * validate X_BEARER_TOKEN dry-check workflow added (no-op commit to trigger release) ([b28a539](https://github.com/tamylaa/clodo-framework/commit/b28a539af7174e7716ea4a5d4156d64f67087b8b))
73
+
74
+ # [4.3.0](https://github.com/tamylaa/clodo-framework/compare/v4.2.0...v4.3.0) (2026-02-01)
75
+
76
+
77
+ ### Bug Fixes
78
+
79
+ * ensure programmatic feature normalization and DO middleware support are included ([e2e6867](https://github.com/tamylaa/clodo-framework/commit/e2e6867ed96f0619cfd3a07b117a49717c47ac68))
80
+ * only include D1 binding in wrangler.toml when D1 feature enabled; adjust e2e assertion for forced validation report ([7a7b549](https://github.com/tamylaa/clodo-framework/commit/7a7b549aca3b8359ee76825b1bc64cb0815b35c1))
81
+ * **wrangler:** emit KV and R2 bindings conditionally; add unit tests ([36702f3](https://github.com/tamylaa/clodo-framework/commit/36702f3146ce1f12fef6838010e20d2efbfed306))
82
+
83
+
84
+ ### Features
85
+
86
+ * **generator:** emit Durable Object import/binding into middleware runtime when feature enabled ([22b9b14](https://github.com/tamylaa/clodo-framework/commit/22b9b14567038a0f7f73221f31925ee9a2066736))
87
+ * normalize features (kv -> upstash) and add unit tests ([14e5a56](https://github.com/tamylaa/clodo-framework/commit/14e5a564b5cec4016ddbafd2b39e944eee74d40a))
88
+
89
+ # [4.2.0](https://github.com/tamylaa/clodo-framework/compare/v4.1.0...v4.2.0) (2026-01-31)
90
+
91
+
92
+ ### Features
93
+
94
+ * **validation:** integrate ConfigurationValidator into ValidationHandler; add post-generation validation in ServiceOrchestrator; tests ([#5](https://github.com/tamylaa/clodo-framework/issues/5)) ([2889864](https://github.com/tamylaa/clodo-framework/commit/28898641bac4c2d6d206e12dbba8216e1de386a3))
95
+
96
+ # [4.1.0](https://github.com/tamylaa/clodo-framework/compare/v4.0.15...v4.1.0) (2026-01-31)
97
+
98
+
99
+ ### Bug Fixes
100
+
101
+ * **lint:** remove unnecessary escape in serviceName regex to satisfy no-useless-escape ([ac4dcda](https://github.com/tamylaa/clodo-framework/commit/ac4dcda))
102
+
103
+
104
+ ### Features
105
+
106
+ * **programmatic-service-api:** programmatic createService + configurable validation ([#4](https://github.com/tamylaa/clodo-framework/issues/4)) ([040f68b](https://github.com/tamylaa/clodo-framework/commit/040f68b9115b604b3f27d7baa14c63122494c5f3))
107
+
108
+ ## [4.0.10](https://github.com/tamylaa/clodo-framework/compare/v4.0.9...v4.0.10) (2025-12-10)
109
+
110
+
111
+ ### Bug Fixes
112
+
113
+ * clean up test artifacts and temporary files ([0eb6cda](https://github.com/tamylaa/clodo-framework/commit/0eb6cdac68bce6d07e567f4b7810f4d94752b7c0))
114
+
115
+ ## [4.0.8](https://github.com/tamylaa/clodo-framework/compare/v4.0.7...v4.0.8) (2025-12-09)
116
+
117
+
118
+ ### Bug Fixes
119
+
120
+ * respect user-provided worker and database names in deployment ([04ffc38](https://github.com/tamylaa/clodo-framework/commit/04ffc382ab910d4d260ba5c3f2e421763587948a))
121
+
122
+ ## [4.0.7](https://github.com/tamylaa/clodo-framework/compare/v4.0.6...v4.0.7) (2025-12-09)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * correct dynamic import paths in interactive-validation.js ([acbadae](https://github.com/tamylaa/clodo-framework/commit/acbadaefc10cf7efab9dd263f7a40f8db18fccb4))
128
+ * correct import path in interactive-validation.js ([8355677](https://github.com/tamylaa/clodo-framework/commit/83556777a0faa1a85766c0bf4795428d8ba807e6))
129
+ * correct remaining dynamic import paths in interactive-validation.js ([837f0a4](https://github.com/tamylaa/clodo-framework/commit/837f0a48489dbde6b644944950232ec0f424639f))
130
+ * correct Windows PowerShell environment variable handling ([f3c5354](https://github.com/tamylaa/clodo-framework/commit/f3c535449f744a2448b4c1b7d98fc62853a8eaab))
131
+
132
+ ## [4.0.6](https://github.com/tamylaa/clodo-framework/compare/v4.0.5...v4.0.6) (2025-12-09)
133
+
134
+
135
+ ### Bug Fixes
136
+
137
+ * add null checks for enterprise deployment methods ([97c3237](https://github.com/tamylaa/clodo-framework/commit/97c32371e97f259f62a82e9f7cc393dab0def7ed))
138
+ * correct URL construction and export missing testing workflow ([19691e1](https://github.com/tamylaa/clodo-framework/commit/19691e1651b3f37762e0564ccbb939c7c22965ad))
139
+ * correct worker URL construction and prevent undefined errors ([5d94f4f](https://github.com/tamylaa/clodo-framework/commit/5d94f4f064d5264f18929a6d2bd0564b0bb5494a))
140
+ * remove duplicate export in InteractiveTestingWorkflow ([db710c2](https://github.com/tamylaa/clodo-framework/commit/db710c2342ac3fd41b73ffd01fdd83ce0e0256f1))
141
+
142
+ ## [4.0.5](https://github.com/tamylaa/clodo-framework/compare/v4.0.4...v4.0.5) (2025-12-09)
143
+
144
+
145
+ ### Bug Fixes
146
+
147
+ * ensure deployments use correct Cloudflare account and zone ([22d42a9](https://github.com/tamylaa/clodo-framework/commit/22d42a9d4cf800e78953a0bcd897d6cb94dfefc5))
148
+
149
+ ## [4.0.4](https://github.com/tamylaa/clodo-framework/compare/v4.0.3...v4.0.4) (2025-12-08)
150
+
151
+
152
+ ### Bug Fixes
153
+
154
+ * enhance existing resource handling and API token propagation ([c7b3a22](https://github.com/tamylaa/clodo-framework/commit/c7b3a226b01609f01f6e8cb1cf27b957cd11868e))
155
+
156
+ ## [4.0.3](https://github.com/tamylaa/clodo-framework/compare/v4.0.2...v4.0.3) (2025-12-08)
157
+
158
+
159
+ ### Bug Fixes
160
+
161
+ * Export CLI utilities to enable framework CLI commands ([35f1701](https://github.com/tamylaa/clodo-framework/commit/35f1701653ebe01b8fe41d184d2b88dac4c5b8d4))
162
+
163
+ ## [4.0.2](https://github.com/tamylaa/clodo-framework/compare/v4.0.1...v4.0.2) (2025-12-08)
164
+
165
+
166
+ ### Bug Fixes
167
+
168
+ * Pass API credentials through database creation workflow ([c245618](https://github.com/tamylaa/clodo-framework/commit/c245618290a7c71808de6d1934076bd53a0519c9))
169
+
170
+ ## [4.0.1](https://github.com/tamylaa/clodo-framework/compare/v4.0.0...v4.0.1) (2025-12-07)
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * Export COMMON_FEATURES and autoConfigureFramework, update docs ([6cf9a7e](https://github.com/tamylaa/clodo-framework/commit/6cf9a7e13c5b0b6dc10b69624e5633429890f894))
176
+
177
+ # [4.0.0](https://github.com/tamylaa/clodo-framework/compare/v3.2.5...v4.0.0) (2025-12-07)
178
+
179
+
180
+ ### Bug Fixes
181
+
182
+ * resolve remaining 5 import path issues in dist files ([383a625](https://github.com/tamylaa/clodo-framework/commit/383a6257910546f4d9a9f1442f4005c0cc166704))
183
+
184
+
185
+ ### Code Refactoring
186
+
187
+ * replace band-aid import fixes with proper wrapper pattern ([5385ef2](https://github.com/tamylaa/clodo-framework/commit/5385ef23e9a9b8be26fce9d9fe6df2184667168c))
188
+
189
+
190
+ ### BREAKING CHANGES
191
+
192
+ * from previous approach:
193
+ - Removed post-build path manipulation that was fragile and hard to maintain
194
+ - Implemented proper wrapper re-export pattern consistent with existing codebase
195
+
196
+ Changes:
197
+ - Create lib/shared/utils/framework-config.js wrapper that re-exports from src/utils
198
+ - Update connection-manager.js to import from ../utils/framework-config.js wrapper
199
+ - Update secret-generator.js to import from ../utils/framework-config.js wrapper
200
+ - Update graceful-shutdown-manager.js to import from ./framework-config.js wrapper
201
+ - Replace complex import path fixes with single minimal transformation in fix-dist-imports.js
202
+ - Maintains all 23 exports working correctly
203
+
204
+ Benefits:
205
+ Clean, maintainable architecture following existing wrapper patterns
206
+ No circular dependencies
207
+ Imports work correctly in both source and compiled dist/
208
+ Easier to debug and understand import resolution
209
+ Scales better as codebase grows
210
+
211
+ ## [3.2.5](https://github.com/tamylaa/clodo-framework/compare/v3.2.4...v3.2.5) (2025-12-06)
212
+
213
+
214
+ ### Bug Fixes
215
+
216
+ * correct import paths in dist/index.js for Windows compatibility ([351ba68](https://github.com/tamylaa/clodo-framework/commit/351ba68450c675af6f199036121aa2797eaa97a8))
217
+
218
+ ## [3.2.4](https://github.com/tamylaa/clodo-framework/compare/v3.2.3...v3.2.4) (2025-12-06)
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * expose CLI utilities in public API to fix import issues ([5d995ab](https://github.com/tamylaa/clodo-framework/commit/5d995abb2f6cb718acc0a03beef75f1025204200))
224
+
225
+ ## [3.2.3](https://github.com/tamylaa/clodo-framework/compare/v3.2.2...v3.2.3) (2025-12-06)
226
+
227
+
228
+ ### Bug Fixes
229
+
230
+ * clean up debug logging in fix-dist-imports.js ([374318e](https://github.com/tamylaa/clodo-framework/commit/374318efc9b73cf304306f3dd249eb88f8b06c98))
231
+ * resolve all test suite failures for production readiness ([519df7c](https://github.com/tamylaa/clodo-framework/commit/519df7c755bd1a93bb5e9717c2aaf21bdf02e636))
232
+
233
+ ## [3.2.2](https://github.com/tamylaa/clodo-framework/compare/v3.2.1...v3.2.2) (2025-12-05)
234
+
235
+
236
+ ### Bug Fixes
237
+
238
+ * correct import paths in lib/ files and enhance build script ([77abdb2](https://github.com/tamylaa/clodo-framework/commit/77abdb24ccfab61275a8f9716b09c84faaf8db84))
239
+
240
+ ## [3.2.1](https://github.com/tamylaa/clodo-framework/compare/v3.2.0...v3.2.1) (2025-12-05)
241
+
242
+
243
+ ### Bug Fixes
244
+
245
+ * enhance deploy command with prerequisite checking and organize project structure ([660c5ab](https://github.com/tamylaa/clodo-framework/commit/660c5ab82546ca1a80b42c1d4cbc6d3972cc6203))
246
+
247
+ # [3.2.0](https://github.com/tamylaa/clodo-framework/compare/v3.1.27...v3.2.0) (2025-12-03)
248
+
249
+
250
+ ### Bug Fixes
251
+
252
+ * add pre-publish import validation and remove non-existent exports ([a41fa7d](https://github.com/tamylaa/clodo-framework/commit/a41fa7df5c1ce05d34efe7e62e68d1c2fa8ea89c))
253
+ * correct CLI import paths for npm distribution ([ba68e0a](https://github.com/tamylaa/clodo-framework/commit/ba68e0adfa4c3bf36584b8bd37310ef616f79722))
254
+ * enable missing exports and remove lib-dependent modules from npm ([1645a58](https://github.com/tamylaa/clodo-framework/commit/1645a58d1e1f5d7126fd02766e9b4d006fa45be7))
255
+ ## [Unreleased]
256
+
257
+ ### Features
258
+
259
+ * **programmatic-service-api:** Improve programmatic createService parity and feature normalization. Programmatic payloads now normalize legacy and plural feature names (for example, `kv` → `upstash`, and `durableObjects` ↔ `durableObject`) and merge normalized features into confirmed configuration values. The service middleware generator now emits Durable Object imports/bindings into the generated middleware runtime when Durable Objects are enabled. (refs: #6; commits: `14e5a56`, `7c0ce37`, `22b9b14`)
260
+
261
+ ### Bug Fixes
262
+
263
+ * **compatibility:** Accept legacy `kv` alias in payload validation and normalize to `upstash` to preserve backward compatibility with older programmatic payloads. (commits: `14e5a56`, `52b8090`)
264
+ * **durable objects:** Accept `durableObjects` plural in allowed feature enums and ensure generated middleware includes Durable Object imports/bindings when enabled; fixed E2E parity tests. (commits: `779040c`, `22b9b14`)
265
+ * Fix import paths in `dist/` to ensure packaged artifact resolves internal modules correctly (fixed `wrangler-deployer` and `WranglerTomlGenerator`).
266
+ * Add `scripts/utilities/check-dist-imports.js` and `scripts/utilities/test-packaged-artifact.js` and include packaged-artifact smoke test in release workflow.
267
+
268
+ ### Improvements
269
+
270
+ * **Project Organization**: Complete cleanup and reorganization of project structure
271
+ - Removed 15+ temporary and backup files (test-output.txt, *.old.js, test-*.js, *.log files)
272
+ - Organized 100+ internal documentation files into categorical structure
273
+ - Created `i-docs/` with 10 organized categories (architecture, development, testing, deployment, roadmap, guides, session-reports, phases, analysis, licensing)
274
+ - Cleaned `docs/` directory to contain only 5 public-facing documentation files
275
+ - Moved 33 internal analysis documents from `docs/` to `i-docs/analysis/`
276
+ - Moved 13 root-level documentation files to appropriate i-docs categories
277
+ - Root directory now contains only essential project files (config, package.json, README, etc.)
278
+
279
+ * **Documentation**: Added `docs/HOWTO_CONSUME_CLODO_FRAMEWORK.md` — a concise consumer guide covering CLI usage, public exports, packaging troubleshooting, and recommended consumption patterns.
280
+ * **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.
281
+
282
+ * **Configuration Management**: Eliminated hard-coded values from source code
283
+ - Moved domain defaults from ServiceCreator to `validation-config.json`
284
+ - Added configuration hierarchy: CLI option → config file → fallback default
285
+ - Introduced `templates.defaults` and `templates.companyDefaults` sections in validation-config.json
286
+ - ServiceCreator now uses FrameworkConfig for loading template defaults
287
+
288
+ * **CLI Test Infrastructure**: Achieved 100% CLI test pass rate (44/44 tests)
289
+ - Fixed dry-run bug in clodo-init-service (Array.isArray check)
290
+ - Implemented template fallback system (generic template used when specific type missing)
291
+ - Added clodo-service-manifest.json to generic template
292
+ - Updated all test expectations to match actual CLI behavior
293
+ - All CLI tests updated to use command-line arguments instead of interactive input
294
+ ### Bug Fixes
295
+
296
+ * compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
297
+ * include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
298
+
299
+ ## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
300
+
301
+
302
+ ### Bug Fixes
303
+
304
+ * change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
305
+
306
+ ## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
307
+
308
+
309
+ ### Bug Fixes
310
+
311
+ * allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
312
+ * exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
313
+
314
+ ## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
315
+
316
+
317
+ ### Bug Fixes
318
+
319
+ * add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
320
+
321
+ ## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
322
+
323
+
324
+ ### Bug Fixes
325
+
326
+ * 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))
327
+
328
+ ## [3.1.4](https://github.com/tamylaa/clodo-framework/compare/v3.1.3...v3.1.4) (2025-10-25)
329
+
330
+
331
+ ### Bug Fixes
332
+
333
+ * deploy command should collect deployment inputs, not service creation inputs ([63cbccf](https://github.com/tamylaa/clodo-framework/commit/63cbccfd8b3886668304a7dce51508e6ccba2450))
334
+
335
+ ## [3.1.3](https://github.com/tamylaa/clodo-framework/compare/v3.1.2...v3.1.3) (2025-10-25)
336
+
337
+
338
+ ### Bug Fixes
339
+
340
+ * ui-structures-loader path resolution and build inclusion ([1744ce3](https://github.com/tamylaa/clodo-framework/commit/1744ce324272a9befa803498f452953409f3f870))
341
+ * ui-structures-loader should look in package directory, not cwd ([23160a8](https://github.com/tamylaa/clodo-framework/commit/23160a808230999c26bb5c5e989ac425b150647d))
342
+
343
+ ## [3.1.2](https://github.com/tamylaa/clodo-framework/compare/v3.1.1...v3.1.2) (2025-10-25)
344
+
345
+
346
+ ### Bug Fixes
347
+
348
+ * include ui-structures directory in published package files ([79ce369](https://github.com/tamylaa/clodo-framework/commit/79ce3692fc5fb50cf90cead6378b4d5d180d91d9))
349
+
350
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
351
+
352
+
353
+ ### Bug Fixes
354
+
355
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
356
+
357
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
358
+
359
+
360
+ ### Bug Fixes
361
+
362
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
363
+
364
+ # [3.1.0](https://github.com/tamylaa/clodo-framework/compare/v3.0.15...v3.1.0) (2025-10-24)
365
+
366
+
367
+ ### Bug Fixes
368
+
369
+ * import missing dependencies in generators utils index ([771a336](https://github.com/tamylaa/clodo-framework/commit/771a336f678c636221e73dd2a16efc92dca94345))
370
+ * improve error handling in generators ([799a05b](https://github.com/tamylaa/clodo-framework/commit/799a05b205f8fd0e0c3ca512a39ce8a719c5d39c))
371
+ * resolve ESM compatibility and test stability issues ([87c422d](https://github.com/tamylaa/clodo-framework/commit/87c422d1611469246a819620834feee67577b30f))
372
+
373
+
374
+ ### Features
375
+
376
+ * comprehensive framework enhancement with domain routes automation ([ec8aa8d](https://github.com/tamylaa/clodo-framework/commit/ec8aa8d8e40310b2d617091e3d69bb97ded33d6a))
377
+
378
+ ## [4.0.12](https://github.com/tamylaa/clodo-framework/compare/v4.0.11...v4.0.12) (2025-12-12)
379
+
380
+
381
+ ### Bug Fixes
382
+
383
+ * resolve version sync for 4.0.12 release ([6375c5f](https://github.com/tamylaa/clodo-framework/commit/6375c5f71516cf2a7a96edcf5878106063037ba8))
384
+ * trigger 4.0.12 release after tag sync ([3dafb25](https://github.com/tamylaa/clodo-framework/commit/3dafb253cbbae6e7eac27dd5170e9f391c3deda0))
385
+
386
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
387
+
388
+
389
+ ### Bug Fixes
390
+
391
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
392
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
393
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
394
+ * resolve version sync for 4.0.12 release ([6375c5f](https://github.com/tamylaa/clodo-framework/commit/6375c5f71516cf2a7a96edcf5878106063037ba8))
395
+ * trigger patch release for latest changes ([6161573](https://github.com/tamylaa/clodo-framework/commit/6161573ead8271eaea2766bf7c85f63ef7378a7d))
396
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
397
+
398
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
399
+
400
+
401
+ ### Bug Fixes
402
+
403
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
404
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
405
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
406
+ * trigger patch release for latest changes ([6161573](https://github.com/tamylaa/clodo-framework/commit/6161573ead8271eaea2766bf7c85f63ef7378a7d))
407
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
408
+
409
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
410
+
411
+
412
+ ### Bug Fixes
413
+
414
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
415
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
416
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
417
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
418
+
419
+ ## [4.0.11](https://github.com/tamylaa/clodo-framework/compare/v4.0.10...v4.0.11) (2025-12-12)
420
+
421
+
422
+ ### Bug Fixes
423
+
424
+ * add wrangler compatibility and config validation utilities ([98c745b](https://github.com/tamylaa/clodo-framework/commit/98c745bb72608a4d5808c947cc9c7a39b868243f))
425
+ * correct import path in file-manager.js for proper dist compilation ([166698e](https://github.com/tamylaa/clodo-framework/commit/166698ebb9473ba5d889739831a1d4e1040c12a5))
426
+ * correct NPM_TOKEN environment variable name in GitHub Actions workflow ([938c953](https://github.com/tamylaa/clodo-framework/commit/938c953d7e2e9f1a679ee566f1a4c7a070e629e6))
427
+ * update .gitignore to prevent test artifacts from being tracked ([83457d5](https://github.com/tamylaa/clodo-framework/commit/83457d58b1e8d44865a593b2b75e39f4509a75bf))
428
+
429
+ ## [4.0.10](https://github.com/tamylaa/clodo-framework/compare/v4.0.9...v4.0.10) (2025-12-10)
430
+
431
+
432
+ ### Bug Fixes
433
+
434
+ * clean up test artifacts and temporary files ([0eb6cda](https://github.com/tamylaa/clodo-framework/commit/0eb6cdac68bce6d07e567f4b7810f4d94752b7c0))
435
+
436
+ ## [4.0.8](https://github.com/tamylaa/clodo-framework/compare/v4.0.7...v4.0.8) (2025-12-09)
437
+
438
+
439
+ ### Bug Fixes
440
+
441
+ * respect user-provided worker and database names in deployment ([04ffc38](https://github.com/tamylaa/clodo-framework/commit/04ffc382ab910d4d260ba5c3f2e421763587948a))
442
+
443
+ ## [4.0.7](https://github.com/tamylaa/clodo-framework/compare/v4.0.6...v4.0.7) (2025-12-09)
444
+
445
+
446
+ ### Bug Fixes
447
+
448
+ * correct dynamic import paths in interactive-validation.js ([acbadae](https://github.com/tamylaa/clodo-framework/commit/acbadaefc10cf7efab9dd263f7a40f8db18fccb4))
449
+ * correct import path in interactive-validation.js ([8355677](https://github.com/tamylaa/clodo-framework/commit/83556777a0faa1a85766c0bf4795428d8ba807e6))
450
+ * correct remaining dynamic import paths in interactive-validation.js ([837f0a4](https://github.com/tamylaa/clodo-framework/commit/837f0a48489dbde6b644944950232ec0f424639f))
451
+ * correct Windows PowerShell environment variable handling ([f3c5354](https://github.com/tamylaa/clodo-framework/commit/f3c535449f744a2448b4c1b7d98fc62853a8eaab))
452
+
453
+ ## [4.0.6](https://github.com/tamylaa/clodo-framework/compare/v4.0.5...v4.0.6) (2025-12-09)
454
+
455
+
456
+ ### Bug Fixes
457
+
458
+ * add null checks for enterprise deployment methods ([97c3237](https://github.com/tamylaa/clodo-framework/commit/97c32371e97f259f62a82e9f7cc393dab0def7ed))
459
+ * correct URL construction and export missing testing workflow ([19691e1](https://github.com/tamylaa/clodo-framework/commit/19691e1651b3f37762e0564ccbb939c7c22965ad))
460
+ * correct worker URL construction and prevent undefined errors ([5d94f4f](https://github.com/tamylaa/clodo-framework/commit/5d94f4f064d5264f18929a6d2bd0564b0bb5494a))
461
+ * remove duplicate export in InteractiveTestingWorkflow ([db710c2](https://github.com/tamylaa/clodo-framework/commit/db710c2342ac3fd41b73ffd01fdd83ce0e0256f1))
462
+
463
+ ## [4.0.5](https://github.com/tamylaa/clodo-framework/compare/v4.0.4...v4.0.5) (2025-12-09)
464
+
465
+
466
+ ### Bug Fixes
467
+
468
+ * ensure deployments use correct Cloudflare account and zone ([22d42a9](https://github.com/tamylaa/clodo-framework/commit/22d42a9d4cf800e78953a0bcd897d6cb94dfefc5))
469
+
470
+ ## [4.0.4](https://github.com/tamylaa/clodo-framework/compare/v4.0.3...v4.0.4) (2025-12-08)
471
+
472
+
473
+ ### Bug Fixes
474
+
475
+ * enhance existing resource handling and API token propagation ([c7b3a22](https://github.com/tamylaa/clodo-framework/commit/c7b3a226b01609f01f6e8cb1cf27b957cd11868e))
476
+
477
+ ## [4.0.3](https://github.com/tamylaa/clodo-framework/compare/v4.0.2...v4.0.3) (2025-12-08)
478
+
479
+
480
+ ### Bug Fixes
481
+
482
+ * Export CLI utilities to enable framework CLI commands ([35f1701](https://github.com/tamylaa/clodo-framework/commit/35f1701653ebe01b8fe41d184d2b88dac4c5b8d4))
483
+
484
+ ## [4.0.2](https://github.com/tamylaa/clodo-framework/compare/v4.0.1...v4.0.2) (2025-12-08)
485
+
486
+
487
+ ### Bug Fixes
488
+
489
+ * Pass API credentials through database creation workflow ([c245618](https://github.com/tamylaa/clodo-framework/commit/c245618290a7c71808de6d1934076bd53a0519c9))
490
+
491
+ ## [4.0.1](https://github.com/tamylaa/clodo-framework/compare/v4.0.0...v4.0.1) (2025-12-07)
492
+
493
+
494
+ ### Bug Fixes
495
+
496
+ * Export COMMON_FEATURES and autoConfigureFramework, update docs ([6cf9a7e](https://github.com/tamylaa/clodo-framework/commit/6cf9a7e13c5b0b6dc10b69624e5633429890f894))
497
+
498
+ # [4.0.0](https://github.com/tamylaa/clodo-framework/compare/v3.2.5...v4.0.0) (2025-12-07)
499
+
500
+
501
+ ### Bug Fixes
502
+
503
+ * resolve remaining 5 import path issues in dist files ([383a625](https://github.com/tamylaa/clodo-framework/commit/383a6257910546f4d9a9f1442f4005c0cc166704))
504
+
505
+
506
+ ### Code Refactoring
507
+
508
+ * replace band-aid import fixes with proper wrapper pattern ([5385ef2](https://github.com/tamylaa/clodo-framework/commit/5385ef23e9a9b8be26fce9d9fe6df2184667168c))
509
+
510
+
511
+ ### BREAKING CHANGES
512
+
513
+ * from previous approach:
514
+ - Removed post-build path manipulation that was fragile and hard to maintain
515
+ - Implemented proper wrapper re-export pattern consistent with existing codebase
516
+
517
+ Changes:
518
+ - Create lib/shared/utils/framework-config.js wrapper that re-exports from src/utils
519
+ - Update connection-manager.js to import from ../utils/framework-config.js wrapper
520
+ - Update secret-generator.js to import from ../utils/framework-config.js wrapper
521
+ - Update graceful-shutdown-manager.js to import from ./framework-config.js wrapper
522
+ - Replace complex import path fixes with single minimal transformation in fix-dist-imports.js
523
+ - Maintains all 23 exports working correctly
524
+
525
+ Benefits:
526
+ Clean, maintainable architecture following existing wrapper patterns
527
+ No circular dependencies
528
+ Imports work correctly in both source and compiled dist/
529
+ Easier to debug and understand import resolution
530
+ Scales better as codebase grows
531
+
532
+ ## [3.2.5](https://github.com/tamylaa/clodo-framework/compare/v3.2.4...v3.2.5) (2025-12-06)
533
+
534
+
535
+ ### Bug Fixes
536
+
537
+ * correct import paths in dist/index.js for Windows compatibility ([351ba68](https://github.com/tamylaa/clodo-framework/commit/351ba68450c675af6f199036121aa2797eaa97a8))
538
+
539
+ ## [3.2.4](https://github.com/tamylaa/clodo-framework/compare/v3.2.3...v3.2.4) (2025-12-06)
540
+
541
+
542
+ ### Bug Fixes
543
+
544
+ * expose CLI utilities in public API to fix import issues ([5d995ab](https://github.com/tamylaa/clodo-framework/commit/5d995abb2f6cb718acc0a03beef75f1025204200))
545
+
546
+ ## [3.2.3](https://github.com/tamylaa/clodo-framework/compare/v3.2.2...v3.2.3) (2025-12-06)
547
+
548
+
549
+ ### Bug Fixes
550
+
551
+ * clean up debug logging in fix-dist-imports.js ([374318e](https://github.com/tamylaa/clodo-framework/commit/374318efc9b73cf304306f3dd249eb88f8b06c98))
552
+ * resolve all test suite failures for production readiness ([519df7c](https://github.com/tamylaa/clodo-framework/commit/519df7c755bd1a93bb5e9717c2aaf21bdf02e636))
553
+
554
+ ## [3.2.2](https://github.com/tamylaa/clodo-framework/compare/v3.2.1...v3.2.2) (2025-12-05)
555
+
556
+
557
+ ### Bug Fixes
558
+
559
+ * correct import paths in lib/ files and enhance build script ([77abdb2](https://github.com/tamylaa/clodo-framework/commit/77abdb24ccfab61275a8f9716b09c84faaf8db84))
560
+
561
+ ## [3.2.1](https://github.com/tamylaa/clodo-framework/compare/v3.2.0...v3.2.1) (2025-12-05)
562
+
563
+
564
+ ### Bug Fixes
565
+
566
+ * enhance deploy command with prerequisite checking and organize project structure ([660c5ab](https://github.com/tamylaa/clodo-framework/commit/660c5ab82546ca1a80b42c1d4cbc6d3972cc6203))
567
+
568
+ # [3.2.0](https://github.com/tamylaa/clodo-framework/compare/v3.1.27...v3.2.0) (2025-12-03)
569
+
570
+
571
+ ### Bug Fixes
572
+
573
+ * add pre-publish import validation and remove non-existent exports ([a41fa7d](https://github.com/tamylaa/clodo-framework/commit/a41fa7df5c1ce05d34efe7e62e68d1c2fa8ea89c))
574
+ * correct CLI import paths for npm distribution ([ba68e0a](https://github.com/tamylaa/clodo-framework/commit/ba68e0adfa4c3bf36584b8bd37310ef616f79722))
575
+ * enable missing exports and remove lib-dependent modules from npm ([1645a58](https://github.com/tamylaa/clodo-framework/commit/1645a58d1e1f5d7126fd02766e9b4d006fa45be7))
576
+
577
+
578
+ ### Features
579
+
580
+ * add comprehensive pre-publish and downstream install tests ([b1e8a25](https://github.com/tamylaa/clodo-framework/commit/b1e8a25b3acae840b66f728aa55dd5c24af0914f))
581
+ * add proper CLI regression tests to downstream install test ([4cde4bc](https://github.com/tamylaa/clodo-framework/commit/4cde4bc08f0290f0432815b2c8cfa60247bc8dfd))
582
+
583
+ ## [3.1.27](https://github.com/tamylaa/clodo-framework/compare/v3.1.26...v3.1.27) (2025-12-02)
584
+
585
+
586
+ ### Bug Fixes
587
+
588
+ * clarify lib/ imports from src/ are intentional and working ([7556cbd](https://github.com/tamylaa/clodo-framework/commit/7556cbdfa1a8ae24ea5c342df0631014b5c1b060))
589
+ * correct ALL lib/ module import paths for npm package compatibility ([4df859e](https://github.com/tamylaa/clodo-framework/commit/4df859ed1e5123d3862dc160a078b60803d7a37d))
590
+ * correct CloudflareAPI import path in credential-collector.js ([805e027](https://github.com/tamylaa/clodo-framework/commit/805e02793467f21aa06e85af609fcb395710d165))
591
+ * correct credential-collector CloudflareAPI import path ([5573780](https://github.com/tamylaa/clodo-framework/commit/557378010dea5fb9e3f83952cc38632b0e94f53d))
592
+ * correct EnvironmentManager relative import paths ([0f62df6](https://github.com/tamylaa/clodo-framework/commit/0f62df6bc9e059f6c66a87b88ffe9ca57a25f8c1))
593
+ * correct relative import paths for npm distribution ([68c53e0](https://github.com/tamylaa/clodo-framework/commit/68c53e0c3716ed4044688dd151b26b6d8a113e05))
594
+ * correct validation.js import path in ValidationRegistry.js ([882fe21](https://github.com/tamylaa/clodo-framework/commit/882fe21b964670dc2e075b3169068e6973677b42))
595
+ * remove unnecessary warning about missing validation-config.json ([15d22db](https://github.com/tamylaa/clodo-framework/commit/15d22db8fa26202ffa81654c417ae2fa69345bba))
596
+ * resolve all lib import paths for npm distribution ([1e32bef](https://github.com/tamylaa/clodo-framework/commit/1e32bef70505a1cd142efbe94016027edbbe61df))
597
+ * resolve ErrorHandler reference in security module ([5bc406e](https://github.com/tamylaa/clodo-framework/commit/5bc406eb768d10409d615c67b11d8118fac4081d))
598
+ * use lib re-export wrapper for MultiDomainOrchestrator in domain-router.js ([215aefc](https://github.com/tamylaa/clodo-framework/commit/215aefc382b811c105598e6241beae60e65b0409))
599
+ * use lib re-export wrappers instead of direct src/ references ([3aaf672](https://github.com/tamylaa/clodo-framework/commit/3aaf6725e6c09b97e3ea4d80519c1bf4ae61a921))
600
+
601
+ ## [3.1.26](https://github.com/tamylaa/clodo-framework/compare/v3.1.25...v3.1.26) (2025-12-02)
602
+
603
+
604
+ ### Bug Fixes
605
+
606
+ * correct import paths for npm package distribution - use proper depth for compiled dist/ files ([d346563](https://github.com/tamylaa/clodo-framework/commit/d3465637e02077e014661e1039421e9cd0010d97))
607
+
608
+ ## [3.1.25](https://github.com/tamylaa/clodo-framework/compare/v3.1.24...v3.1.25) (2025-12-02)
609
+
610
+
611
+ ### Bug Fixes
612
+
613
+ * correct all import paths and add prevention documentation ([dbd3ce6](https://github.com/tamylaa/clodo-framework/commit/dbd3ce6d6b3ceceb9aa839358923c6096c762ceb))
614
+
615
+ ## [3.1.24](https://github.com/tamylaa/clodo-framework/compare/v3.1.23...v3.1.24) (2025-11-08)
616
+
617
+
618
+ ### Bug Fixes
619
+
620
+ * Add comprehensive framework assessment and strategic evolution plan ([bed4108](https://github.com/tamylaa/clodo-framework/commit/bed41085c253e025bd065e507296efe261616652))
621
+ * resolve linting error and enhance CI pipeline ([ece5b5a](https://github.com/tamylaa/clodo-framework/commit/ece5b5aa7232bc990b1d85d3e53ccf7e2d215c98))
622
+
623
+ ## [3.1.23](https://github.com/tamylaa/clodo-framework/compare/v3.1.22...v3.1.23) (2025-11-07)
624
+
625
+
626
+ ### Bug Fixes
627
+
628
+ * Complete framework evolution from promise to production-ready reality ([3341508](https://github.com/tamylaa/clodo-framework/commit/33415083e0f8c81267831b4d295b181e3aef3758))
629
+ * Correct import path validation for formatters.js ([763a137](https://github.com/tamylaa/clodo-framework/commit/763a137b5cff4845fc6335dec2fa9357e1c141c5))
630
+
631
+ ## [3.1.22](https://github.com/tamylaa/clodo-framework/compare/v3.1.21...v3.1.22) (2025-11-05)
632
+
633
+
634
+ ### Bug Fixes
635
+
636
+ * clarify bin/ is private CLI implementation, not public API ([a092d30](https://github.com/tamylaa/clodo-framework/commit/a092d30c9c9c72f0bcb9d6b132175b4a6d6ce0bf))
637
+ * Separate clodo-enterprise: remove enterprise code/docs, fix imports, update README ([58aabff](https://github.com/tamylaa/clodo-framework/commit/58aabff0b0fa193cd2acf37027e43a872fccd8f2))
638
+ * wire helpers to shared infra and fix CloudflareAPI import casing ([7d0b27f](https://github.com/tamylaa/clodo-framework/commit/7d0b27f8dbd0a82f01d52a4d00324ab72507ab30))
639
+
640
+ ## [3.1.21](https://github.com/tamylaa/clodo-framework/compare/v3.1.20...v3.1.21) (2025-10-28)
641
+
642
+
643
+ ### Bug Fixes
644
+
645
+ * remove dist/ references from dynamic imports in bin/ ([e3dd2c4](https://github.com/tamylaa/clodo-framework/commit/e3dd2c4a21e86b90985352cdafc3742eaa8a573e))
646
+
647
+ ## [3.1.20](https://github.com/tamylaa/clodo-framework/compare/v3.1.19...v3.1.20) (2025-10-28)
648
+
649
+
650
+ ### Bug Fixes
651
+
652
+ * use depth-aware import paths in re-export wrappers ([db383fe](https://github.com/tamylaa/clodo-framework/commit/db383fe22e67b3d6a99b9465253c1169f509db13))
653
+
654
+ ## [3.1.19](https://github.com/tamylaa/clodo-framework/compare/v3.1.18...v3.1.19) (2025-10-28)
655
+
656
+
657
+ ### Bug Fixes
658
+
659
+ * Correct re-export wrapper paths to use ../../bin (two levels up from dist/utils) ([992136e](https://github.com/tamylaa/clodo-framework/commit/992136e7b143424e2807f49a94599e8d71a91079))
660
+
661
+ ## [3.1.18](https://github.com/tamylaa/clodo-framework/compare/v3.1.17...v3.1.18) (2025-10-28)
662
+
663
+
664
+ ### Bug Fixes
665
+
666
+ * Correct re-export wrapper import paths and add build-time path validator ([293f7b1](https://github.com/tamylaa/clodo-framework/commit/293f7b1537bed9a3c9eafcc96131be863044f313))
667
+
668
+ ## [3.1.17](https://github.com/tamylaa/clodo-framework/compare/v3.1.16...v3.1.17) (2025-10-28)
669
+
670
+
671
+ ### Bug Fixes
672
+
673
+ * Correct re-export path depth in cloudflare ops wrapper (3 levels not 4) ([fa72b2b](https://github.com/tamylaa/clodo-framework/commit/fa72b2b2f1ba0ada932ba42a7a1788a41a7798a1))
674
+
675
+ ## [3.1.16](https://github.com/tamylaa/clodo-framework/compare/v3.1.15...v3.1.16) (2025-10-28)
676
+
677
+
678
+ ### Bug Fixes
679
+
680
+ * Correct import path for cloudflare ops.js module ([b61de66](https://github.com/tamylaa/clodo-framework/commit/b61de66da57dfbd5d4157b2dfd0d5819db99b89b))
681
+ * Correct import path in cloudflare ops re-export wrapper ([5bda1d2](https://github.com/tamylaa/clodo-framework/commit/5bda1d2d76f6577f2475adc7d4fe21284ded91e2))
682
+ * Resolve all bin/ import paths by creating library re-export wrappers ([a6a2147](https://github.com/tamylaa/clodo-framework/commit/a6a2147562578945d4fb630086facfcdf8df66e5))
683
+
684
+ ## [3.1.15](https://github.com/tamylaa/clodo-framework/compare/v3.1.14...v3.1.15) (2025-10-28)
685
+
686
+
687
+ ### Bug Fixes
688
+
689
+ * Complete comprehensive clodo-framework refactoring (Tasks 3.1-3.4) ([0949b8b](https://github.com/tamylaa/clodo-framework/commit/0949b8be5f4f6522c0e4e4050e858ce82be5d034))
690
+
691
+ ## [3.1.14](https://github.com/tamylaa/clodo-framework/compare/v3.1.13...v3.1.14) (2025-10-27)
692
+
693
+
694
+ ### Bug Fixes
695
+
696
+ * restore smart credential collection flow in deploy command ([a3e94f6](https://github.com/tamylaa/clodo-framework/commit/a3e94f6efe4a41c380badfc7a104e32bfba9fe9a))
697
+
698
+ ## [3.1.13](https://github.com/tamylaa/clodo-framework/compare/v3.1.12...v3.1.13) (2025-10-27)
699
+
700
+
701
+ ### Bug Fixes
702
+
703
+ * add comprehensive test coverage for service validation ([393e6d2](https://github.com/tamylaa/clodo-framework/commit/393e6d268348cc2926c80f0d3f6cd5377c2875a2))
704
+ * add intelligent Cloudflare service detection and validation ([a680006](https://github.com/tamylaa/clodo-framework/commit/a6800063e2df8f8d6fa7660079cd22eb3f9a4a97))
705
+
706
+ ## [3.1.12](https://github.com/tamylaa/clodo-framework/compare/v3.1.11...v3.1.12) (2025-10-27)
707
+
708
+
709
+ ### Bug Fixes
710
+
711
+ * update babel import rewriter to handle bin/ paths too ([6e26172](https://github.com/tamylaa/clodo-framework/commit/6e26172bbc2f697a59de0ea5567665094d4027b1))
712
+
713
+ ## [3.1.11](https://github.com/tamylaa/clodo-framework/compare/v3.1.10...v3.1.11) (2025-10-27)
714
+
715
+
716
+ ### Bug Fixes
717
+
718
+ * add babel import path rewriter and remove source bin from package files ([91f19d4](https://github.com/tamylaa/clodo-framework/commit/91f19d48791d604497ff708a5c7a836100e6885a))
719
+
720
+ ## [3.1.10](https://github.com/tamylaa/clodo-framework/compare/v3.1.9...v3.1.10) (2025-10-27)
721
+
722
+
723
+ ### Bug Fixes
724
+
725
+ * correct import paths in bin/ to reference src/ not dist/ ([57d9740](https://github.com/tamylaa/clodo-framework/commit/57d974051d15ba263005aba8e48f5290823e24c9))
726
+
727
+ ## [3.1.9](https://github.com/tamylaa/clodo-framework/compare/v3.1.8...v3.1.9) (2025-10-27)
728
+
729
+
730
+ ### Bug Fixes
731
+
732
+ * compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
733
+ * include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
734
+
735
+ ## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
736
+
737
+
738
+ ### Bug Fixes
739
+
740
+ * change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
741
+
742
+ ## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
743
+
744
+
745
+ ### Bug Fixes
746
+
747
+ * allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
748
+ * exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
749
+
750
+ ## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
751
+
752
+
753
+ ### Bug Fixes
754
+
755
+ * add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
756
+
757
+ ## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
758
+
759
+
760
+ ### Bug Fixes
761
+
762
+ * 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))
763
+
764
+ ## [3.1.4](https://github.com/tamylaa/clodo-framework/compare/v3.1.3...v3.1.4) (2025-10-25)
765
+
766
+
767
+ ### Bug Fixes
768
+
769
+ * deploy command should collect deployment inputs, not service creation inputs ([63cbccf](https://github.com/tamylaa/clodo-framework/commit/63cbccfd8b3886668304a7dce51508e6ccba2450))
770
+
771
+ ## [3.1.3](https://github.com/tamylaa/clodo-framework/compare/v3.1.2...v3.1.3) (2025-10-25)
772
+
773
+
774
+ ### Bug Fixes
775
+
776
+ * ui-structures-loader path resolution and build inclusion ([1744ce3](https://github.com/tamylaa/clodo-framework/commit/1744ce324272a9befa803498f452953409f3f870))
777
+ * ui-structures-loader should look in package directory, not cwd ([23160a8](https://github.com/tamylaa/clodo-framework/commit/23160a808230999c26bb5c5e989ac425b150647d))
778
+
779
+ ## [3.1.2](https://github.com/tamylaa/clodo-framework/compare/v3.1.1...v3.1.2) (2025-10-25)
780
+
781
+
782
+ ### Bug Fixes
783
+
784
+ * include ui-structures directory in published package files ([79ce369](https://github.com/tamylaa/clodo-framework/commit/79ce3692fc5fb50cf90cead6378b4d5d180d91d9))
785
+
786
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
787
+
788
+
789
+ ### Bug Fixes
790
+
791
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
792
+
793
+ ## [3.1.1](https://github.com/tamylaa/clodo-framework/compare/v3.1.0...v3.1.1) (2025-10-25)
794
+
795
+
796
+ ### Bug Fixes
797
+
798
+ * add missing collect method to InputCollector for deploy command ([ef78a92](https://github.com/tamylaa/clodo-framework/commit/ef78a922dac445e6d8a88f4dc73cde7a6b280055))
799
+
800
+ # [3.1.0](https://github.com/tamylaa/clodo-framework/compare/v3.0.15...v3.1.0) (2025-10-24)
801
+
802
+
803
+ ### Bug Fixes
804
+
805
+ * import missing dependencies in generators utils index ([771a336](https://github.com/tamylaa/clodo-framework/commit/771a336f678c636221e73dd2a16efc92dca94345))
806
+ * improve error handling in generators ([799a05b](https://github.com/tamylaa/clodo-framework/commit/799a05b205f8fd0e0c3ca512a39ce8a719c5d39c))
807
+ * resolve ESM compatibility and test stability issues ([87c422d](https://github.com/tamylaa/clodo-framework/commit/87c422d1611469246a819620834feee67577b30f))
808
+
809
+
810
+ ### Features
811
+
812
+ * comprehensive framework enhancement with domain routes automation ([ec8aa8d](https://github.com/tamylaa/clodo-framework/commit/ec8aa8d8e40310b2d617091e3d69bb97ded33d6a))
813
+
814
+ ## [Unreleased]
815
+
816
+ ### Improvements
817
+
818
+ * **Project Organization**: Complete cleanup and reorganization of project structure
819
+ - Removed 15+ temporary and backup files (test-output.txt, *.old.js, test-*.js, *.log files)
820
+ - Organized 100+ internal documentation files into categorical structure
821
+ - Created `i-docs/` with 10 organized categories (architecture, development, testing, deployment, roadmap, guides, session-reports, phases, analysis, licensing)
822
+ - Cleaned `docs/` directory to contain only 5 public-facing documentation files
823
+ - Moved 33 internal analysis documents from `docs/` to `i-docs/analysis/`
824
+ - Moved 13 root-level documentation files to appropriate i-docs categories
825
+ - Root directory now contains only essential project files (config, package.json, README, etc.)
826
+
827
+ * **Configuration Management**: Eliminated hard-coded values from source code
828
+ - Moved domain defaults from ServiceCreator to `validation-config.json`
829
+ - Added configuration hierarchy: CLI option → config file → fallback default
830
+ - Introduced `templates.defaults` and `templates.companyDefaults` sections in validation-config.json
831
+ - ServiceCreator now uses FrameworkConfig for loading template defaults
832
+
833
+ * **CLI Test Infrastructure**: Achieved 100% CLI test pass rate (44/44 tests)
834
+ - Fixed dry-run bug in clodo-init-service (Array.isArray check)
835
+ - Implemented template fallback system (generic template used when specific type missing)
836
+ - Added clodo-service-manifest.json to generic template
837
+ - Updated all test expectations to match actual CLI behavior
838
+ - All CLI tests updated to use command-line arguments instead of interactive input
839
+
840
+ ### Bug Fixes
841
+
842
+ * Fixed dry-run mode in `clodo-init-service` (handle non-array configs properly)
843
+ * Fixed template generation for missing service types (fallback to generic template)
844
+ * Fixed test file path expectations (`domains.js` location in `src/config/`)
845
+ * Fixed ESM syntax validation in tests (use regex .test() instead of Function constructor)
846
+
847
+ ### Documentation
848
+
849
+ * Organized internal documentation into 10 logical categories in `i-docs/`
850
+ * Separated public-facing docs (5 files in `docs/`) from internal analysis documents
851
+
852
+ ## [3.0.15](https://github.com/tamylaa/clodo-framework/compare/v3.0.14...v3.0.15) (2025-10-20)
853
+
854
+
855
+ ### Bug Fixes
856
+
857
+ * add continue-on-error to test step in CI workflow ([e0f74d7](https://github.com/tamylaa/clodo-framework/commit/e0f74d7f775ca6a81fa55929a82b6b11fe2dea41))
858
+
859
+ ## [3.0.14](https://github.com/tamylaa/clodo-framework/compare/v3.0.13...v3.0.14) (2025-10-20)
860
+
861
+
862
+ ### Bug Fixes
863
+
864
+ * add test environment compatibility fixes for ES modules ([71a033d](https://github.com/tamylaa/clodo-framework/commit/71a033d5d959480879c1a4771005553116e8671f))
865
+ * ignore deployment artifacts in deployments/ directory ([768f453](https://github.com/tamylaa/clodo-framework/commit/768f453cbabb984509613a382d86875c1309bcd2))
866
+ * resolve circular dependency in FeatureFlagManager ([d04956f](https://github.com/tamylaa/clodo-framework/commit/d04956f83527d3236fce2fe9750f71cdf0ba8d8e))
867
+ * resolve ESLint errors and update test expectations ([b1188be](https://github.com/tamylaa/clodo-framework/commit/b1188be66d3723bfff62431f6e0eabec685b0111))
868
+ * revert Jest config to working configuration that passes tests ([35a2846](https://github.com/tamylaa/clodo-framework/commit/35a28466c8a48c78011c128f89695399e8500341))
869
+ * update Jest config to properly handle ES modules ([1a951c7](https://github.com/tamylaa/clodo-framework/commit/1a951c7ae147ddb8bef0ec1508c858ac044423b7))
870
+ * update package-lock.json to sync with package.json dependencies ([a3ef884](https://github.com/tamylaa/clodo-framework/commit/a3ef8844cba2b5657a3493b8339c98049a57dd72))
871
+ * update package.json semantic release config to support main branch ([a06b2e8](https://github.com/tamylaa/clodo-framework/commit/a06b2e899ceb7699b67292157991d64c88dedae3))
872
+ * update semantic release config to support main branch ([4102e6c](https://github.com/tamylaa/clodo-framework/commit/4102e6c4cb4f52d065750239c2a0c5a89b733ac0))
873
+ * update version to 3.0.13 to sync with release history ([f9bb4d4](https://github.com/tamylaa/clodo-framework/commit/f9bb4d463a3884b82e972962e5fcd21a272c3acb))
874
+ * use os.tmpdir() for test paths to fix CI permission errors ([022c771](https://github.com/tamylaa/clodo-framework/commit/022c771994635002410c27d8eb7ec8f0614acf6f))
875
+
876
+ ## [3.0.12](https://github.com/tamylaa/clodo-framework/compare/v3.0.11...v3.0.12) (2025-10-14)
877
+
878
+
879
+ ### Bug Fixes
880
+
881
+ * Add graceful API token permission handling and validation ([6c973b0](https://github.com/tamylaa/clodo-framework/commit/6c973b077b6e2a80b7a6d93f0b39070925bb89af))
882
+ * Add missing exists() method to WranglerConfigManager class ([44ee17c](https://github.com/tamylaa/clodo-framework/commit/44ee17c8931db085ccef502e7e7ac15209b222a5))
883
+ * Ensure wrangler uses correct account for API token operations ([f671b10](https://github.com/tamylaa/clodo-framework/commit/f671b1004057b94dd8ba55c5c1f3c2d5bca54706))
884
+
885
+ ## [3.0.11](https://github.com/tamylaa/clodo-framework/compare/v3.0.10...v3.0.11) (2025-10-14)
886
+
887
+
888
+ ### Bug Fixes
889
+
890
+ * Update all bin/ imports from src/ to dist/ for published package compatibility ([c476528](https://github.com/tamylaa/clodo-framework/commit/c476528b575cf9d6338a967e740252ed4d41f66f))
891
+
892
+ ## [3.0.10](https://github.com/tamylaa/clodo-framework/compare/v3.0.9...v3.0.10) (2025-10-14)
893
+
894
+
895
+ ### Bug Fixes
896
+
897
+ * Pass Cloudflare API credentials to MultiDomainOrchestrator in clodo-service deploy ([9f8c249](https://github.com/tamylaa/clodo-framework/commit/9f8c24912c79755152c5273ececa3374651e1164))
898
+
899
+ ## [3.0.9](https://github.com/tamylaa/clodo-framework/compare/v3.0.8...v3.0.9) (2025-10-14)
900
+
901
+
902
+ ### Bug Fixes
903
+
904
+ * Auto-create D1 databases before applying migrations ([bb4a780](https://github.com/tamylaa/clodo-framework/commit/bb4a7804307f4ee8ff17256287e61098d809b0e9))
905
+
906
+ ## [3.0.8](https://github.com/tamylaa/clodo-framework/compare/v3.0.7...v3.0.8) (2025-10-14)
907
+
908
+
909
+ ### Bug Fixes
910
+
911
+ * add --env flag to D1 migration commands for environment-specific database configs ([ef095e3](https://github.com/tamylaa/clodo-framework/commit/ef095e3ce7d8ea10e0e45d7eba45011cfa4271db))
912
+ * implement API token authentication for D1 database operations ([d8be0a9](https://github.com/tamylaa/clodo-framework/commit/d8be0a9388bf3ed5cf433fa8b61108acd25007fd))
913
+
914
+ ## [3.0.7](https://github.com/tamylaa/clodo-framework/compare/v3.0.6...v3.0.7) (2025-10-14)
915
+
916
+
917
+ ### Bug Fixes
918
+
919
+ * use --remote flag for D1 migrations since databases are created in Cloudflare ([1a94538](https://github.com/tamylaa/clodo-framework/commit/1a945389f9c4ae54a7ebc7c1ea4badc3b0ccaed2))
920
+
921
+ ## [3.0.6](https://github.com/tamylaa/clodo-framework/compare/v3.0.5...v3.0.6) (2025-10-14)
922
+
923
+
924
+ ### Bug Fixes
925
+
926
+ * use database name instead of binding name for D1 migrations ([6b22b25](https://github.com/tamylaa/clodo-framework/commit/6b22b25e95bebb4f9728835bd881d71dd90cdba6))
927
+
928
+ ## [3.0.5](https://github.com/tamylaa/clodo-framework/compare/v3.0.4...v3.0.5) (2025-10-14)
929
+
930
+
931
+ ### Bug Fixes
932
+
933
+ * add missing join import in clodo-service.js ([5e0d7c6](https://github.com/tamylaa/clodo-framework/commit/5e0d7c6ce3262454138f39b4e44d0d24dc7bcb65))
934
+
935
+ ## [3.0.4](https://github.com/tamylaa/clodo-framework/compare/v3.0.3...v3.0.4) (2025-10-14)
936
+
937
+
938
+ ### Bug Fixes
939
+
940
+ * resolve deployment configuration and database binding issues ([f9d7036](https://github.com/tamylaa/clodo-framework/commit/f9d7036e18b49ba9082cad8f8e181f5abc1c2c2d))
941
+
942
+ ## [3.0.3](https://github.com/tamylaa/clodo-framework/compare/v3.0.2...v3.0.3) (2025-10-14)
943
+
944
+
945
+ ### Bug Fixes
946
+
947
+ * resolve database creation redundancy in deployments ([4a54f2c](https://github.com/tamylaa/clodo-framework/commit/4a54f2ce4bd1bb17d49c4d911171a01179fbd519))
948
+
949
+ ## [3.0.2](https://github.com/tamylaa/clodo-framework/compare/v3.0.1...v3.0.2) (2025-10-14)
950
+
951
+
952
+ ### Bug Fixes
953
+
954
+ * suppress secret audit logging in test/CI environments ([daa58e0](https://github.com/tamylaa/clodo-framework/commit/daa58e013f8c3c37bb251a658b78f011a56dab3f))
955
+
956
+ ## [3.0.1](https://github.com/tamylaa/clodo-framework/compare/v3.0.0...v3.0.1) (2025-10-14)
957
+
958
+
959
+ ### Bug Fixes
960
+
961
+ * reset version to 2.0.20 for clean semantic release ([724df16](https://github.com/tamylaa/clodo-framework/commit/724df162d3fdb4a35cfc50a2cc045a714c56ba6f))
962
+
963
+ # [3.0.0](https://github.com/tamylaa/clodo-framework/compare/v2.0.20...v3.0.0) (2025-10-14)
964
+
965
+
966
+ ### Bug Fixes
967
+
968
+ * include all bin/shared files and correct imports to use dist/ ([268b525](https://github.com/tamylaa/clodo-framework/commit/268b5254d269951e78d481840a9a0fbba486c879)), closes [#deploy-v3](https://github.com/tamylaa/clodo-framework/issues/deploy-v3)
969
+ * resolve async logging and migration command issues (v3.0.2) ([0ed0112](https://github.com/tamylaa/clodo-framework/commit/0ed0112b2d26983fbd1329dce88286d4eca6d63b))
970
+ * resolve test failures and add comprehensive validation ([5abcacb](https://github.com/tamylaa/clodo-framework/commit/5abcacb39f97bcf58f92a75a8ed2602381b6c266))
971
+ * use temp directory in generation-engine-unit test for CI/CD compatibility ([a28a923](https://github.com/tamylaa/clodo-framework/commit/a28a92311fa6d8b1c6bd95a354c5e7cd4ada3b48))
972
+
973
+
974
+ ### BREAKING CHANGES
975
+
976
+ * none
977
+ VALIDATION: Dry-run test PASSED with real Cloudflare API integration
978
+
979
+ Validation Reports:
980
+ - PRODUCTION_VALIDATION_REPORT.md - Full validation analysis
981
+ - DEPLOY_COMMAND_VALIDATION.md - Deploy command documentation
982
+ - DRY_RUN_TEST_RESULTS.md - Dry-run test with real API
983
+ - VALIDATION_SUMMARY.md - Executive summary
984
+
985
+ Confidence: 95% - Ready for production deployment
986
+
987
+ ## [3.0.1](https://github.com/tamylaa/clodo-framework/compare/v3.0.0...v3.0.1) (2025-10-14)
988
+
989
+
990
+ ### Bug Fixes
991
+
992
+ * include all bin/shared files and correct imports to use dist/ ([268b525](https://github.com/tamylaa/clodo-framework/commit/268b5254d269951e78d481840a9a0fbba486c879)), closes [#deploy-v3](https://github.com/tamylaa/clodo-framework/issues/deploy-v3)
993
+
994
+ # [3.0.0](https://github.com/tamylaa/clodo-framework/compare/v2.0.20...v3.0.0) (2025-10-14)
995
+
996
+
997
+ ### Bug Fixes
998
+
999
+ * resolve test failures and add comprehensive validation ([5abcacb](https://github.com/tamylaa/clodo-framework/commit/5abcacb39f97bcf58f92a75a8ed2602381b6c266))
1000
+ * use temp directory in generation-engine-unit test for CI/CD compatibility ([a28a923](https://github.com/tamylaa/clodo-framework/commit/a28a92311fa6d8b1c6bd95a354c5e7cd4ada3b48))
1001
+
1002
+
1003
+ ### BREAKING CHANGES
1004
+
1005
+ * none
1006
+ VALIDATION: Dry-run test PASSED with real Cloudflare API integration
1007
+
1008
+ Validation Reports:
1009
+ - PRODUCTION_VALIDATION_REPORT.md - Full validation analysis
1010
+ - DEPLOY_COMMAND_VALIDATION.md - Deploy command documentation
1011
+ - DRY_RUN_TEST_RESULTS.md - Dry-run test with real API
1012
+ - VALIDATION_SUMMARY.md - Executive summary
1013
+
1014
+ Confidence: 95% - Ready for production deployment
1015
+
1016
+ ## [2.0.20](https://github.com/tamylaa/clodo-framework/compare/v2.0.19...v2.0.20) (2025-10-13)
1017
+
1018
+
1019
+ ### Bug Fixes
1020
+
1021
+ * Complete consolidation cleanup - fix all bin file imports ([4132a2c](https://github.com/tamylaa/clodo-framework/commit/4132a2c0878df84ccc0bd78c6964657810d1f4dc))
1022
+
1023
+ ## [2.0.19](https://github.com/tamylaa/clodo-framework/compare/v2.0.18...v2.0.19) (2025-10-12)
1024
+
1025
+
1026
+ ### Bug Fixes
1027
+
1028
+ * Add comprehensive deployment configuration implementation status ([025fe82](https://github.com/tamylaa/clodo-framework/commit/025fe821a76ba9ac8cb87d14f2a116a5e8e58c43))
1029
+ * Consolidate configuration management and organize documentation ([e3a3d44](https://github.com/tamylaa/clodo-framework/commit/e3a3d448a74b214d75ae669f3a17e3a6ddb36ac4))
1030
+ * Resolve ESLint errors in security and config modules ([1080cdb](https://github.com/tamylaa/clodo-framework/commit/1080cdbb69b3ae29158b6af705d8fd376c95da7b))
1031
+ * Complete consolidation cleanup - fix all bin file imports ([4132a2c](https://github.com/tamylaa/clodo-framework/commit/4132a2c))
1032
+
1033
+ ### BREAKING CHANGES
1034
+
1035
+ **This release includes breaking changes due to configuration consolidation. Please review the migration guide below.**
1036
+
1037
+ #### Removed Package Exports:
1038
+ - `@tamyla/clodo-framework/config/customer-loader` → **Use** `@tamyla/clodo-framework/utils/config` instead
1039
+ - `@tamyla/clodo-framework/config/cli` → **Deprecated** (no direct replacement)
1040
+
1041
+ #### Removed CLI Commands:
1042
+ - `clodo-customer-config` → **Use** `clodo-service deploy` instead
1043
+
1044
+ #### Migration Guide:
1045
+
1046
+ **For External Package Users:**
1047
+ ```javascript
1048
+ // OLD (v2.0.18 and earlier - BROKEN in v2.0.19+)
1049
+ import { CustomerConfigLoader } from '@tamyla/clodo-framework/config/customer-loader';
1050
+ const loader = new CustomerConfigLoader();
1051
+ const config = loader.loadConfig('customer', 'production');
1052
+
1053
+ // NEW (v2.0.19+)
1054
+ import { UnifiedConfigManager } from '@tamyla/clodo-framework/utils/config';
1055
+ const manager = new UnifiedConfigManager();
1056
+ const config = manager.loadCustomerConfig('customer', 'production');
1057
+ ```
1058
+
1059
+ **Method Mappings:**
1060
+ - `CustomerConfigLoader.loadConfig(customer, env)` → `UnifiedConfigManager.loadCustomerConfig(customer, env)`
1061
+ - `CustomerConfigLoader.parseToStandardFormat(config)` → `UnifiedConfigManager.parseToStandardFormat(config)`
1062
+ - `ConfigPersistenceManager.configExists(customer, env)` → `UnifiedConfigManager.configExists(customer, env)`
1063
+ - `ConfigPersistenceManager.displayCustomerConfig(customer, env)` → `UnifiedConfigManager.displayCustomerConfig(customer, env)`
1064
+ - `ConfigPersistenceManager.getConfiguredCustomers()` → `UnifiedConfigManager.listCustomers()`
1065
+ - `ConfigPersistenceManager.saveDeploymentConfig(customer, env, config)` → `UnifiedConfigManager.saveCustomerConfig(customer, env, config)`
1066
+
1067
+ **For CLI Users:**
1068
+ ```bash
1069
+ # OLD (v2.0.18 and earlier)
1070
+ clodo-customer-config create my-customer
1071
+
1072
+ # NEW (v2.0.19+)
1073
+ clodo-service deploy
1074
+ # Then select customer interactively
1075
+ ```
1076
+
1077
+ #### What Was Consolidated:
1078
+ - **Deleted files** (backed up in `backups/pre-consolidation-cleanup_2025-10-12_21-05-59/`):
1079
+ - `src/config/customer-config-loader.js` (1,849 bytes)
1080
+ - `src/config/CustomerConfigCLI.js` (14,892 bytes)
1081
+ - `src/utils/deployment/ConfigurationManager.js` (9,235 bytes)
1082
+ - `src/utils/deployment/ConfigMutator.js` (8,342 bytes)
1083
+ - `src/utils/deployment/DeploymentManager.js` (6,819 bytes)
1084
+ - `src/utils/deployment/config-persistence.js` (6,656 bytes)
1085
+ - `bin/shared/config/customer-cli.js` (deprecated CLI wrapper)
1086
+
1087
+ - **New consolidated files**:
1088
+ - `src/utils/config/unified-config-manager.js` (493 lines) - All customer config operations
1089
+ - `src/utils/config/wrangler-config-manager.js` (392 lines) - All wrangler.toml operations
1090
+
1091
+ #### Why This Change?
1092
+ - **Reduced Complexity**: 47,793 bytes of duplicate code consolidated into 885 lines
1093
+ - **Better Maintainability**: Single source of truth for config operations
1094
+ - **Improved Testing**: Consolidated logic = easier to test
1095
+ - **Clearer Architecture**: Documented 3-layer config system (wrangler.toml → customer .env → domains.js)
1096
+
1097
+ #### Documentation:
1098
+ - See `docs/DOMAIN_CONFIGURATION_ARCHITECTURE.md` for complete architecture guide (28 pages)
1099
+ - See `docs/CONSOLIDATION_IMPACT_ANALYSIS.md` for detailed impact analysis
1100
+ - See `docs/DEPLOYMENT_CONFIGURATION_STATUS.md` for implementation proof
1101
+
1102
+ ## [2.0.18](https://github.com/tamylaa/clodo-framework/compare/v2.0.17...v2.0.18) (2025-10-12)
1103
+
1104
+
1105
+ ### Bug Fixes
1106
+
1107
+ * **deployment:** Critical deployment fixes - migrations, worker deployment, status tracking ([23c07e9](https://github.com/tamylaa/clodo-framework/commit/23c07e9a68fa4eb52ccd0df9421eff7d91919cb1)), closes [#2](https://github.com/tamylaa/clodo-framework/issues/2) [#3](https://github.com/tamylaa/clodo-framework/issues/3) [#4](https://github.com/tamylaa/clodo-framework/issues/4)
1108
+
1109
+ ## [2.0.17](https://github.com/tamylaa/clodo-framework/compare/v2.0.16...v2.0.17) (2025-10-12)
1110
+
1111
+
1112
+ ### Bug Fixes
1113
+
1114
+ * use ConfigurationValidator as static class, not instance ([12caaeb](https://github.com/tamylaa/clodo-framework/commit/12caaeba17426239f98dacd2fdb36ac45a7a496b))
1115
+
1116
+ ## [2.0.16](https://github.com/tamylaa/clodo-framework/compare/v2.0.15...v2.0.16) (2025-10-12)
1117
+
1118
+
1119
+ ### Bug Fixes
1120
+
1121
+ * comprehensive readline state management and stdin restoration ([a0716fe](https://github.com/tamylaa/clodo-framework/commit/a0716fef9a5db8211b851ab7861bf2419f31e7fa))
1122
+
1123
+ ## [2.0.15](https://github.com/tamylaa/clodo-framework/compare/v2.0.14...v2.0.15) (2025-10-12)
1124
+
1125
+
1126
+ ### Bug Fixes
1127
+
1128
+ * improve customer selection UX with number support ([2e10d56](https://github.com/tamylaa/clodo-framework/commit/2e10d562061c478ecc238e1185e2514af453d00e))
1129
+
1130
+ ## [2.0.14](https://github.com/tamylaa/clodo-framework/compare/v2.0.13...v2.0.14) (2025-10-12)
1131
+
1132
+
1133
+ ### Bug Fixes
1134
+
1135
+ * add missing readdirSync import in config-persistence.js ([767efc4](https://github.com/tamylaa/clodo-framework/commit/767efc4aa839c7afa592fe3a1df21b62870bdf23))
1136
+ * remove require() calls in ESM modules ([a1783f9](https://github.com/tamylaa/clodo-framework/commit/a1783f9c75c59ae8ce9daacbc223ad80b17d61bc))
1137
+
1138
+ ## [2.0.13](https://github.com/tamylaa/clodo-framework/compare/v2.0.12...v2.0.13) (2025-10-12)
1139
+
1140
+
1141
+ ### Bug Fixes
1142
+
1143
+ * comprehensive deployment and architectural integration fixes ([2a9db26](https://github.com/tamylaa/clodo-framework/commit/2a9db264c0d60f1669597885105cc1fdc0cc2e87))
1144
+
1145
+ ## [2.0.12](https://github.com/tamylaa/clodo-framework/compare/v2.0.11...v2.0.12) (2025-10-12)
1146
+
1147
+
1148
+ ### Bug Fixes
1149
+
1150
+ * correct zone details property access in auto-discovery ([bfca8af](https://github.com/tamylaa/clodo-framework/commit/bfca8af21a28e96e3fa8809d38de997982723d5a))
1151
+
1152
+ ## [2.0.11](https://github.com/tamylaa/clodo-framework/compare/v2.0.10...v2.0.11) (2025-10-12)
1153
+
1154
+
1155
+ ### Bug Fixes
1156
+
1157
+ * correct domain selection parsing in auto-discovery ([ea80443](https://github.com/tamylaa/clodo-framework/commit/ea80443bf9968d592f066e7d5d13ee47d6fde889))
1158
+
1159
+ ## [2.0.10](https://github.com/tamylaa/clodo-framework/compare/v2.0.9...v2.0.10) (2025-10-12)
1160
+
1161
+
1162
+ ### Bug Fixes
1163
+
1164
+ * move interactive-prompts to src/ to fix published package imports ([94fc31c](https://github.com/tamylaa/clodo-framework/commit/94fc31c0afa91c52f2073b3ab9f766693c5f68e0))
1165
+
1166
+ ## [2.0.9](https://github.com/tamylaa/clodo-framework/compare/v2.0.8...v2.0.9) (2025-10-12)
1167
+
1168
+
1169
+ ### Bug Fixes
1170
+
1171
+ * re-release v2.0.8 features that were missing from npm package ([33cf712](https://github.com/tamylaa/clodo-framework/commit/33cf71267c07610e04bd8c752db4385c6f5ca603))
1172
+
1173
+ ## [2.0.8](https://github.com/tamylaa/clodo-framework/compare/v2.0.7...v2.0.8) (2025-10-12)
1174
+
1175
+
1176
+ ### Bug Fixes
1177
+
1178
+ * clean up skipped security validation test with proper TODO ([722afbe](https://github.com/tamylaa/clodo-framework/commit/722afbe056be6f8ccb623acbbd3ab9ac4ce75caa))
1179
+ * Enhanced customer config, CloudflareAPI utility, and code consolidation ([447ed9b](https://github.com/tamylaa/clodo-framework/commit/447ed9b5d8a2bb806386fc334e2e8bf4efeff43b))
1180
+ * implement missing deployment phase methods in MultiDomainOrchestrator ([b0cb1e8](https://github.com/tamylaa/clodo-framework/commit/b0cb1e828679df61d9ebde2551599f47ddeb20d2))
1181
+ * integrate CloudflareAPI auto-discovery and cleanup duplicates ([8166d18](https://github.com/tamylaa/clodo-framework/commit/8166d189bbe1e5b78db8f24d56221f0e18e72021))
1182
+ * resolve ESLint no-undef errors in cloudflare index.js ([1a2bb7f](https://github.com/tamylaa/clodo-framework/commit/1a2bb7fa175bab142f3d5be451cb44ef1b9d8747))
1183
+
1184
+ ## [2.0.8](https://github.com/tamylaa/clodo-framework/compare/v2.0.7...v2.0.8) (2025-10-12)
1185
+
1186
+
1187
+ ### Bug Fixes
1188
+
1189
+ * clean up skipped security validation test with proper TODO ([722afbe](https://github.com/tamylaa/clodo-framework/commit/722afbe056be6f8ccb623acbbd3ab9ac4ce75caa))
1190
+ * Enhanced customer config, CloudflareAPI utility, and code consolidation ([447ed9b](https://github.com/tamylaa/clodo-framework/commit/447ed9b5d8a2bb806386fc334e2e8bf4efeff43b))
1191
+ * implement missing deployment phase methods in MultiDomainOrchestrator ([b0cb1e8](https://github.com/tamylaa/clodo-framework/commit/b0cb1e828679df61d9ebde2551599f47ddeb20d2))
1192
+ * integrate CloudflareAPI auto-discovery and cleanup duplicates ([8166d18](https://github.com/tamylaa/clodo-framework/commit/8166d189bbe1e5b78db8f24d56221f0e18e72021))
1193
+ * resolve ESLint no-undef errors in cloudflare index.js ([1a2bb7f](https://github.com/tamylaa/clodo-framework/commit/1a2bb7fa175bab142f3d5be451cb44ef1b9d8747))
1194
+
1195
+ ## [2.0.7](https://github.com/tamylaa/clodo-framework/compare/v2.0.6...v2.0.7) (2025-10-12)
1196
+
1197
+
1198
+ ### Features
1199
+
1200
+ * **customer-config**: Enhanced customer configuration system to read directly from wrangler.toml
1201
+ - Load account_id, SERVICE_DOMAIN, and database configurations from wrangler.toml
1202
+ - Read CUSTOMER_DOMAIN from customer environment files
1203
+ - Display all 6 core deployment pieces (account ID, zone ID, domains, worker, database, secrets)
1204
+ - Added --config-dir parameter for flexible directory specification
1205
+
1206
+ * **cloudflare**: New CloudflareAPI utility class for programmatic Cloudflare operations
1207
+ - Direct REST API integration without CLI dependencies
1208
+ - Methods: verifyToken(), listZones(), getZoneDetails(), listD1Databases(), getDeploymentInfo()
1209
+ - Helper functions for zone display and selection parsing
1210
+ - Organized under src/utils/cloudflare/ with unified exports
1211
+
1212
+ * **toml**: TOML writing capabilities for dynamic configuration updates
1213
+ - updateWranglerToml() - Update wrangler.toml with new configurations
1214
+ - updateEnvironmentConfig() - Modify environment-specific settings
1215
+ - addD1Database() - Add database bindings dynamically
1216
+ - deepMergeConfig() - Recursive configuration merging
1217
+
1218
+
1219
+ ### Bug Fixes
1220
+
1221
+ * **customer-config**: Removed duplicate code causing double output in customer CLI
1222
+ * **deployment**: Removed 180 lines of duplicate secret management from WranglerDeployer
1223
+ - Secret operations now use bin/shared/cloudflare/ops.js as single source of truth
1224
+ - Better error recovery, rate limiting, and production monitoring
1225
+ * correct orchestrator method name in deploy command ([b28a372](https://github.com/tamylaa/clodo-framework/commit/b28a37222cf2859449b3470b16ec6eb284cc50e2))
1226
+
1227
+
1228
+ ### Code Quality
1229
+
1230
+ * **organization**: Consolidated Cloudflare utilities under src/utils/cloudflare/
1231
+ - Separated API-based operations (api.js) from CLI-based operations (ops.js)
1232
+ - Created unified index.js for convenient imports
1233
+ - Verified no duplicate utilities across src/ and bin/shared/
1234
+
1235
+
1236
+ ### Testing
1237
+
1238
+ * Added 12 new tests (132 total, all passing, +9.1%)
1239
+ - test/utils/cloudflare-api.test.js - CloudflareAPI module tests (6 tests)
1240
+ - test/config/customer-toml.test.js - Customer config tests (6 tests)
1241
+
1242
+
1243
+ ### Documentation
1244
+
1245
+ * **architecture**: Added comprehensive architecture analysis for customer configuration system
1246
+ * **capabilities**: Created inventory of existing framework capabilities
1247
+ * **cleanup**: Documented 19-task cleanup plan with execution options
1248
+
1249
+ ## [2.0.6](https://github.com/tamylaa/clodo-framework/compare/v2.0.5...v2.0.6) (2025-10-11)
1250
+
1251
+
1252
+ ### Bug Fixes
1253
+
1254
+ * PowerShell double-echo in interactive input collection ([6a4b153](https://github.com/tamylaa/clodo-framework/commit/6a4b15380efac0ffc4b57ea4e24f320853c33137))
1255
+
1256
+ ## [2.0.5](https://github.com/tamylaa/clodo-framework/compare/v2.0.4...v2.0.5) (2025-10-11)
1257
+
1258
+
1259
+ ### Bug Fixes
1260
+
1261
+ * include templates directory in published package ([8d5c1ff](https://github.com/tamylaa/clodo-framework/commit/8d5c1ffc6090c35751d926042c784ae9b4d711b1))
1262
+
1263
+ ## [2.0.4](https://github.com/tamylaa/clodo-framework/compare/v2.0.3...v2.0.4) (2025-10-11)
1264
+
1265
+
1266
+ ### Bug Fixes
1267
+
1268
+ * ensure clodo-security deploy --help works correctly ([1f81b5f](https://github.com/tamylaa/clodo-framework/commit/1f81b5f0d0590bd3d82470485bde6c449b95c12e))
1269
+
1270
+ ## [2.0.3](https://github.com/tamylaa/clodo-framework/compare/v2.0.2...v2.0.3) (2025-10-11)
1271
+
1272
+
1273
+ ### Bug Fixes
1274
+
1275
+ * Add reusable deployment command with Three-Tier input architecture ([0e13bfc](https://github.com/tamylaa/clodo-framework/commit/0e13bfcdda56d0a137bcd44cfd8a9ca49af30503))
1276
+ * clodo-security deploy --help and cross-platform deployment scripts ([d7ebbbe](https://github.com/tamylaa/clodo-framework/commit/d7ebbbe8d41c6e4f297f64d19ea5b98172ddee3b))
1277
+ * test - Remove placeholder tests that require unimplemented classes ([b009b34](https://github.com/tamylaa/clodo-framework/commit/b009b34cf1f9f7542fbaab2fa2419b2766c72f10))
1278
+
1279
+ ## [2.0.3](https://github.com/tamylaa/clodo-framework/compare/v2.0.2...v2.0.3) (2025-10-11)
1280
+
1281
+
1282
+ ### Bug Fixes
1283
+
1284
+ * Add reusable deployment command with Three-Tier input architecture ([0e13bfc](https://github.com/tamylaa/clodo-framework/commit/0e13bfcdda56d0a137bcd44cfd8a9ca49af30503))
1285
+ * clodo-security deploy --help and cross-platform deployment scripts ([d7ebbbe](https://github.com/tamylaa/clodo-framework/commit/d7ebbbe8d41c6e4f297f64d19ea5b98172ddee3b))
1286
+ * test - Remove placeholder tests that require unimplemented classes ([b009b34](https://github.com/tamylaa/clodo-framework/commit/b009b34cf1f9f7542fbaab2fa2419b2766c72f10))
1287
+
1288
+ ## [2.0.2](https://github.com/tamylaa/clodo-framework/compare/v2.0.1...v2.0.2) (2025-10-11)
1289
+
1290
+
1291
+ ### Bug Fixes
1292
+
1293
+ * resolve CLI tool import paths and runtime dependencies ([6a726b9](https://github.com/tamylaa/clodo-framework/commit/6a726b95a5e55055048a262d1c146a50a4f0b46f))
1294
+
1295
+ ## [2.0.1](https://github.com/tamylaa/clodo-framework/compare/v2.0.0...v2.0.1) (2025-10-10)
1296
+
1297
+
1298
+ ### Bug Fixes
1299
+
1300
+ * reorganize documentation structure and fix package distribution ([598d44b](https://github.com/tamylaa/clodo-framework/commit/598d44b669f65c222d215ba33d0361d736a15ac9))
1301
+
1302
+ # [2.0.0](https://github.com/tamylaa/clodo-framework/compare/v1.0.0...v2.0.0) (2025-10-10)
1303
+
1304
+
1305
+ ### Bug Fixes
1306
+
1307
+ * enhance enterprise readiness with comprehensive testing roadmap and documentation ([25702d6](https://github.com/tamylaa/clodo-framework/commit/25702d624047ef40991de47eba0b8dabcfaecfa8))
1308
+
1309
+
1310
+ ### BREAKING CHANGES
1311
+
1312
+ * Framework now requires structured testing approach for enterprise deployment
1313
+
1314
+ # 1.0.0 (2025-10-09)
1315
+
1316
+
1317
+ ### Bug Fixes
1318
+
1319
+ * add comprehensive security validation module ([ea6cbdf](https://github.com/tamylaa/clodo-framework/commit/ea6cbdf07790266d8b2cd779f750b5e6ef622ba6))
1320
+ * add customer configuration management ([ac7379b](https://github.com/tamylaa/clodo-framework/commit/ac7379b41e584bed229cd3a3b8ccb532eed9dcb4))
1321
+ * add missing environment parameter to WranglerDeployer validation call ([a833ca3](https://github.com/tamylaa/clodo-framework/commit/a833ca3c1006953911453e1b383c602b96a16229))
1322
+ * allow tests to pass when no test files exist ([70bd5b8](https://github.com/tamylaa/clodo-framework/commit/70bd5b8ee61fc7fb70e5015d1889e411c9e091b4))
1323
+ * complete rebranding from lego-framework to clodo-framework ([1a704ba](https://github.com/tamylaa/clodo-framework/commit/1a704ba0bdd4b649c412a8b8cc202138d64c79e2))
1324
+ * comprehensive documentation update for framework capabilities ([65c0284](https://github.com/tamylaa/clodo-framework/commit/65c0284e6bb916be2f5bd994d76aa198c77cf9fc))
1325
+ * comprehensive framework improvements and enterprise documentation ([e77b046](https://github.com/tamylaa/clodo-framework/commit/e77b046cca0dc6ed7afc16479e588d2dece333f3))
1326
+ * enhance deployment framework with HTTP validation, error handling, and interactive configuration ([7698f56](https://github.com/tamylaa/clodo-framework/commit/7698f56108c0b90809eaaa55e7335ac89e6dce49))
1327
+ * ensure semantic-release works on latest commit ([5d59903](https://github.com/tamylaa/clodo-framework/commit/5d59903cab1c74266373bd6066b045da75256645))
1328
+ * implement intelligent WranglerDeployer for actual Cloudflare deployments ([a656190](https://github.com/tamylaa/clodo-framework/commit/a6561909753b5bcb7ece0a0159772daee28dd37c))
1329
+ * include documentation in package files ([550a734](https://github.com/tamylaa/clodo-framework/commit/550a734ef9de3f4e4afc35e85226216649e84332))
1330
+ * Initial release of Lego Framework v1.0.0 ([6994efd](https://github.com/tamylaa/clodo-framework/commit/6994efdf0be3508ae7fe54c6d71f161d56cafef8))
1331
+ * major framework enhancement with enterprise features and TypeScript support ([53c94fb](https://github.com/tamylaa/clodo-framework/commit/53c94fbc3adde14852ffaab9117eda09621f3a16))
1332
+ * major framework reorganization and robustness improvements ([7aed0b5](https://github.com/tamylaa/clodo-framework/commit/7aed0b5b438bb02c081d533766951ccc89ff4d4c))
1333
+ * make database orchestrator dependency-aware ([051f722](https://github.com/tamylaa/clodo-framework/commit/051f72269aab39d4e972cad8011430dfa86b3f7a))
1334
+ * resolve ESLint errors and warnings ([005b591](https://github.com/tamylaa/clodo-framework/commit/005b5916faf6a57c0065d649979dcef84c466ce3))
1335
+ * resolve ESLint warnings to enable automated release ([200dd82](https://github.com/tamylaa/clodo-framework/commit/200dd8267af2629f3cb3a1a3a30cbc96ea5bbee9))
1336
+ * resolve ESM packaging conflict by preserving ES modules in build output ([0d13422](https://github.com/tamylaa/clodo-framework/commit/0d13422e5c7800006369b157b57d9440805d14dd))
1337
+ * resolve GitHub Actions workflow permissions and NPM token issues ([cd53e55](https://github.com/tamylaa/clodo-framework/commit/cd53e55702e0c249e26884304115537c8a3345cf))
1338
+ * resolve linting and type checking issues ([598e699](https://github.com/tamylaa/clodo-framework/commit/598e6999be93025d7a35c59df55c6606a59c98ac))
1339
+ * resolve missing health-checker dependency by moving to src/utils ([64d429b](https://github.com/tamylaa/clodo-framework/commit/64d429be674855539e5f77413d9a14151d1b0ef8))
1340
+ * update repository URLs to correct GitHub username (tamylaa) ([791ae3f](https://github.com/tamylaa/clodo-framework/commit/791ae3ff76589851a0ba09cef58d955272c6b343))
1341
+ * Windows compatibility and ES module issues ([7ed2588](https://github.com/tamylaa/clodo-framework/commit/7ed2588d8ae2f706e5646813c1d1dad99944d50f))
1342
+
1343
+
1344
+ ### Features
1345
+
1346
+ * Add additional documentation and development tools ([0c6ca0d](https://github.com/tamylaa/clodo-framework/commit/0c6ca0d18ac7bdeef17587a592b8e7e1c549c87b))
1347
+ * add GitHub Actions workflow for semantic release ([e097070](https://github.com/tamylaa/clodo-framework/commit/e0970708b454d87dd124371840d0eb1c91c7641c))
1348
+ * implement comprehensive production hardening ([4a4c391](https://github.com/tamylaa/clodo-framework/commit/4a4c3917fc3ba624ff61ac79cde1df7c40b6aa33))
1349
+ * initial commercial release of Clodo Framework ([647e271](https://github.com/tamylaa/clodo-framework/commit/647e271dd0718b8a5fc4082bc1ac9be1216f9fe2))
1350
+ * Rebrand to Clodo Framework v3.0.6 ([03e6923](https://github.com/tamylaa/clodo-framework/commit/03e69232dc60e139601320fce7c1c88c55d6254f))
1351
+ * trigger initial Clodo Framework v1.0.0 release ([98bcd76](https://github.com/tamylaa/clodo-framework/commit/98bcd764a1aa1cfe4199d820e02be584619ea11c))
1352
+
1353
+
1354
+ ### BREAKING CHANGES
1355
+
1356
+ * Deployments now require security validation by default
1357
+ * Enhanced framework with advanced caching, validation, and security features
1358
+
1359
+ - Enhanced SchemaManager with comprehensive validation and SQL caching (~750 lines)
1360
+ - Enhanced GenericDataService with query caching and security controls (~580 lines)
1361
+ - Enhanced ModuleManager with enterprise hook execution (~650 lines)
1362
+ - Added FeatureManager for progressive enhancement with 20+ feature flags
1363
+ - Added VersionDetector for automatic configuration and migration
1364
+ - Added MigrationAdapters for backwards compatibility
1365
+ - Added comprehensive TypeScript definitions (500+ lines)
1366
+ - Enhanced build pipeline with TypeScript checking
1367
+ - Fixed critical parsing errors and linting issues
1368
+ - 60%+ code duplication reduction through framework consolidation
1369
+
1370
+ All breaking changes include backwards compatibility via migration adapters.
1371
+
1372
+ ## [3.0.6](https://github.com/tamylaa/clodo-framework/compare/v3.0.5...v3.0.6) (2025-10-07)
1373
+
1374
+
1375
+ ### Bug Fixes
1376
+
1377
+ * resolve missing health-checker dependency by moving to src/utils (# Changelog
1378
+
1379
+ All notable changes to this project will be documented in this file.
1380
+
1381
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1382
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1383
+
1384
+ ## [1.0.0](https://github.com/tamylaa/clodo-framework/compare/v3.0.6...v1.0.0) (2025-10-09)
1385
+
1386
+ ### 🎉 Major Release: Clodo Framework Commercial Launch
1387
+
1388
+ **Clodo Framework** is a comprehensive, enterprise-grade framework for building microservices on Cloudflare Workers + D1. This 1.0.0 release marks the transition from the open-source CLODO Framework to a commercially licensed product with professional licensing infrastructure.
1389
+
1390
+ ### 🚀 What is Clodo Framework?
1391
+
1392
+ Clodo Framework provides a **"snap-together" architecture** where standardized, reusable components combine to rapidly build and deploy domain-specific services. Just like Clodo bricks create complex structures, Clodo Framework components create enterprise applications.
1393
+
1394
+ #### Core Capabilities
1395
+
1396
+ **🏗️ Service Architecture**
1397
+ - **GenericDataService**: Full CRUD operations with automatic schema management
1398
+ - **EnhancedRouter**: RESTful routing with middleware support and validation
1399
+ - **SchemaManager**: Dynamic schema management with migration support
1400
+ - **ConfigurationCacheManager**: Multi-tenant configuration with domain-specific settings
1401
+
1402
+ **🔧 Development Tools**
1403
+ - **Interactive CLI**: `clodo-service create` for conversational service creation
1404
+ - **Service Templates**: Pre-built templates for data services, auth services, API gateways
1405
+ - **Auto-Configuration**: Automatic wrangler.toml and domain configuration generation
1406
+ - **Multi-Domain Support**: Single service instance serving multiple domains
1407
+
1408
+ **🚀 Deployment & Orchestration**
1409
+ - **Multi-Domain Orchestrator**: Deploy services across multiple domains simultaneously
1410
+ - **Health Monitoring**: Automated health checks and validation
1411
+ - **Security Validation**: Pre-deployment security checks and compliance
1412
+ - **Portfolio Management**: Manage entire service portfolios as single units
1413
+
1414
+ **🔒 Enterprise Features**
1415
+ - **Professional Licensing**: Integration-ready for enterprise licensing platforms
1416
+ - **Security-First**: Built-in security validation and compliance checks
1417
+ - **Audit Trails**: Comprehensive logging and monitoring
1418
+ - **Production-Ready**: Optimized for high-performance, scalable deployments
1419
+
1420
+ ### 📋 Key Features
1421
+
1422
+ #### For Developers
1423
+ ```javascript
1424
+ import { GenericDataService, SchemaManager } from '@tamyla/clodo-framework';
1425
+
1426
+ // Create a data service in minutes
1427
+ const dataService = new GenericDataService({
1428
+ schema: 'users',
1429
+ operations: ['create', 'read', 'update', 'delete']
1430
+ });
1431
+
1432
+ // Automatic schema management
1433
+ const schemaManager = new SchemaManager();
1434
+ await schemaManager.registerModel('users', userSchema);
1435
+ ```
1436
+
1437
+ #### For DevOps/Platform Teams
1438
+ ```bash
1439
+ # Interactive service creation
1440
+ npx @tamyla/clodo-framework clodo-service create
1441
+
1442
+ # Multi-domain deployment
1443
+ clodo-service deploy --portfolio --domains "api.example.com,app.example.com"
1444
+
1445
+ # Health monitoring
1446
+ clodo-service diagnose --comprehensive
1447
+ ```
1448
+
1449
+ ### 🏢 Use Cases
1450
+
1451
+ **SaaS Platforms**: Build multi-tenant applications serving multiple customers from single codebases
1452
+ **API Gateways**: Create scalable API gateways with automatic routing and validation
1453
+ **Data Services**: Build CRUD services with automatic schema management and migrations
1454
+ **Microservices**: Deploy domain-specific services with consistent patterns and tooling
1455
+ **Edge Computing**: Leverage Cloudflare's global network for low-latency, high-performance applications
1456
+
1457
+ ### 🔄 Migration from CLODO Framework
1458
+
1459
+ This release includes a complete rebrand and commercial licensing preparation:
1460
+
1461
+ - **Package Name**: `@tamyla/clodo-framework` (was `@tamyla/clodo-framework`)
1462
+ - **CLI Commands**: `clodo-service` (was `clodo-service`)
1463
+ - **Licensing**: Removed local file licensing, ready for professional licensing integration
1464
+ - **Documentation**: Updated for commercial use and enterprise deployment patterns
1465
+
1466
+ ### 📚 Documentation
1467
+
1468
+ - **Framework Overview**: Comprehensive architecture documentation
1469
+ - **Integration Guide**: Step-by-step migration and adoption strategies
1470
+ - **API Reference**: Complete API documentation with examples
1471
+ - **Deployment Guide**: Production deployment and scaling strategies
1472
+ - **Security Guide**: Security best practices and compliance
1473
+
1474
+ ### 🔧 Technical Specifications
1475
+
1476
+ - **Runtime**: Node.js 18+, Cloudflare Workers
1477
+ - **Database**: Cloudflare D1 (SQLite-compatible)
1478
+ - **Deployment**: Cloudflare Workers platform
1479
+ - **Package Manager**: NPM
1480
+ - **License**: Commercial (contact for licensing terms)
1481
+
1482
+ ### 🎯 Getting Started
1483
+
1484
+ ```bash
1485
+ # Install the framework
1486
+ npm install @tamyla/clodo-framework
1487
+
1488
+ # Create your first service
1489
+ npx @tamyla/clodo-framework clodo-service create
1490
+
1491
+ # Follow the interactive setup
1492
+ # Deploy to Cloudflare Workers
1493
+ npm run deploy
1494
+ ```
1495
+
1496
+ ### 📞 Commercial Support
1497
+
1498
+ This is a commercially licensed product. For:
1499
+ - **Licensing inquiries**: Visit https://clodo-framework.com/pricing
1500
+ - **Enterprise support**: Contact enterprise@clodo-framework.com
1501
+ - **Documentation**: https://docs.clodo-framework.com
1502
+ - **Community**: https://github.com/tamylaa/clodo-framework
1503
+
1504
+ ### 🤝 Contributing
1505
+
1506
+ While the framework is commercially licensed, we welcome community contributions for:
1507
+ - Bug reports and feature requests
1508
+ - Documentation improvements
1509
+ - Community examples and templates
1510
+
1511
+ ---
1512
+
1513
+ **Previous CLODO Framework versions remain available under open-source license for existing users.**9b](https://github.com/tamylaa/clodo-framework/commit/64d429be674855539e5f77413d9a14151d1b0ef8))
1514
+
1515
+ ## [3.0.5](https://github.com/tamylaa/clodo-framework/compare/v3.0.4...v3.0.5) (2025-10-07)
1516
+
1517
+
1518
+ ### Bug Fixes
1519
+
1520
+ * resolve ESM packaging conflict by preserving ES modules in build output ([0d13422](https://github.com/tamylaa/clodo-framework/commit/0d13422e5c7800006369b157b57d9440805d14dd))
1521
+
1522
+ ## [3.0.4](https://github.com/tamylaa/clodo-framework/compare/v3.0.3...v3.0.4) (2025-10-07)
1523
+
1524
+
1525
+ ### Bug Fixes
1526
+
1527
+ * enhance deployment framework with HTTP validation, error handling, and interactive configuration ([7698f56](https://github.com/tamylaa/clodo-framework/commit/7698f56108c0b90809eaaa55e7335ac89e6dce49))
1528
+
1529
+ ## [3.0.3](https://github.com/tamylaa/clodo-framework/compare/v3.0.2...v3.0.3) (2025-10-07)
1530
+
1531
+
1532
+ ### Features
1533
+
1534
+ * **DeploymentManager**: Enhanced with real HTTP-based validation and URL extraction
1535
+ * **HealthChecker**: Replaced shell commands with native Node.js HTTP/HTTPS modules for cross-platform reliability
1536
+ * **ErrorHandler**: Added comprehensive error reporting and actionable troubleshooting suggestions
1537
+ * **InteractiveDeploymentConfigurator**: New user input-driven configuration setup for deployment workflows
1538
+
1539
+ ### Enhancements
1540
+
1541
+ * **Security Module**: Updated exports to include new ErrorHandler and InteractiveDeploymentConfigurator classes
1542
+ * **Post-deployment Validation**: Real HTTP health checks replace mock implementations
1543
+ * **Cross-platform Compatibility**: Eliminated shell command dependencies in health checking
1544
+ * **User Experience**: Interactive configuration wizard for security deployments
1545
+
1546
+ ### Bug Fixes
1547
+
1548
+ * **ESLint**: Fixed unnecessary escape characters in regex patterns
1549
+ * **Type Checking**: All new code passes TypeScript validation
1550
+ * **Build Process**: Successful compilation and bundle validation
1551
+
1552
+ ## [3.0.2](https://github.com/tamylaa/clodo-framework/compare/v3.0.1...v3.0.2) (2025-10-06)
1553
+
1554
+
1555
+ ### Bug Fixes
1556
+
1557
+ * include documentation in package files ([550a734](https://github.com/tamylaa/clodo-framework/commit/550a734ef9de3f4e4afc35e85226216649e84332))
1558
+
1559
+ ## [3.0.1](https://github.com/tamylaa/clodo-framework/compare/v3.0.0...v3.0.1) (2025-10-06)
1560
+
1561
+
1562
+ ### Bug Fixes
1563
+
1564
+ * add customer configuration management ([ac7379b](https://github.com/tamylaa/clodo-framework/commit/ac7379b41e584bed229cd3a3b8ccb532eed9dcb4))
1565
+
1566
+ # [3.0.0](https://github.com/tamylaa/clodo-framework/compare/v2.0.1...v3.0.0) (2025-10-06)
1567
+
1568
+
1569
+ ### Bug Fixes
1570
+
1571
+ * add comprehensive security validation module ([ea6cbdf](https://github.com/tamylaa/clodo-framework/commit/ea6cbdf07790266d8b2cd779f750b5e6ef622ba6))
1572
+
1573
+
1574
+ ### BREAKING CHANGES
1575
+
1576
+ * Deployments now require security validation by default
1577
+
1578
+ ## [2.0.1](https://github.com/tamylaa/clodo-framework/compare/v2.0.0...v2.0.1) (2025-10-05)
1579
+
1580
+
1581
+ ### Bug Fixes
1582
+
1583
+ * allow tests to pass when no test files exist ([70bd5b8](https://github.com/tamylaa/clodo-framework/commit/70bd5b8ee61fc7fb70e5015d1889e411c9e091b4))
1584
+
1585
+ # [2.0.0](https://github.com/tamylaa/clodo-framework/compare/v1.3.4...v2.0.0) (2025-10-05)
1586
+
1587
+
1588
+ ### Bug Fixes
1589
+
1590
+ * major framework enhancement with enterprise features and TypeScript support ([53c94fb](https://github.com/tamylaa/clodo-framework/commit/53c94fbc3adde14852ffaab9117eda09621f3a16))
1591
+ * resolve ESLint errors and warnings ([005b591](https://github.com/tamylaa/clodo-framework/commit/005b5916faf6a57c0065d649979dcef84c466ce3))
1592
+
1593
+
1594
+ ### BREAKING CHANGES
1595
+
1596
+ * Enhanced framework with advanced caching, validation, and security features
1597
+
1598
+ - Enhanced SchemaManager with comprehensive validation and SQL caching (~750 lines)
1599
+ - Enhanced GenericDataService with query caching and security controls (~580 lines)
1600
+ - Enhanced ModuleManager with enterprise hook execution (~650 lines)
1601
+ - Added FeatureManager for progressive enhancement with 20+ feature flags
1602
+ - Added VersionDetector for automatic configuration and migration
1603
+ - Added MigrationAdapters for backwards compatibility
1604
+ - Added comprehensive TypeScript definitions (500+ lines)
1605
+ - Enhanced build pipeline with TypeScript checking
1606
+ - Fixed critical parsing errors and linting issues
1607
+ - 60%+ code duplication reduction through framework consolidation
1608
+
1609
+ All breaking changes include backwards compatibility via migration adapters.
1610
+
1611
+ ## [2.0.0] (2025-10-05)
1612
+
1613
+ ### 🚀 Major Framework Enhancement Release
1614
+
1615
+ This release represents a major enhancement of the CLODO Framework with enterprise-grade features, comprehensive type safety, and backwards compatibility systems.
1616
+
1617
+ ### Added
1618
+
1619
+ #### Core Framework Enhancements
1620
+ - **Enhanced SchemaManager** with advanced caching, validation, and SQL generation
1621
+ - Schema caching with TTL support and cache invalidation strategies
1622
+ - Comprehensive field validation with structured error reporting
1623
+ - SQL query caching for improved performance (~750 lines of enhanced functionality)
1624
+
1625
+ - **Enhanced GenericDataService** with enterprise features
1626
+ - Query caching with configurable TTL and intelligent cache invalidation
1627
+ - Advanced security controls (query limits, bulk operation protections)
1628
+ - Advanced pagination system with metadata and performance optimization
1629
+ - Relationship loading capabilities with JOIN query generation (~580 lines enhanced)
1630
+
1631
+ - **Enhanced ModuleManager** with enterprise-grade plugin architecture
1632
+ - Improved hook execution with timeout protection and error recovery
1633
+ - Success/failure tracking and result aggregation
1634
+ - Module isolation and async hook execution (~650 lines enhanced)
1635
+
1636
+ #### Feature Management & Migration Systems
1637
+ - **FeatureManager** - Progressive enhancement with 20+ feature flags
1638
+ - **VersionDetector** - Automatic version detection and environment configuration
1639
+ - **MigrationAdapters** - Backwards compatibility layer preserving existing APIs
1640
+
1641
+ #### Developer Experience & Quality
1642
+ - **TypeScript Definitions** - Complete type safety with 500+ lines of definitions
1643
+ - **Enhanced Build Pipeline** - TypeScript checking, ESLint integration, automated validation
1644
+ - **Comprehensive JSDoc** - Full parameter and return type documentation
1645
+
1646
+ ### Changed
1647
+
1648
+ #### Performance Improvements
1649
+ - **60%+ reduction** in code duplication through framework consolidation
1650
+ - **Caching system** reduces database queries and validation overhead
1651
+ - **SQL generation caching** improves repeated query performance
1652
+
1653
+ #### Security Enhancements
1654
+ - **Query Security**: Configurable limits (maxQueryLimit: 1000, defaultQueryLimit: 100)
1655
+ - **Input Validation**: Comprehensive field-level validation with SQL injection protection
1656
+ - **Audit Logging**: Optional security action logging and tracking
1657
+
1658
+ ### Breaking Changes (with backwards compatibility)
1659
+ - Enhanced validation API with detailed error reporting (legacy preserved via adapters)
1660
+ - Advanced pagination and security controls (legacy methods maintained)
1661
+ - Enhanced hook execution system (original API compatible)
1662
+
1663
+ ### Migration
1664
+ - **Feature Flags**: Enable enhanced features incrementally
1665
+ - **Backwards Compatibility**: Existing code works unchanged via migration adapters
1666
+ - **Auto-Configuration**: Automatic detection and setup for seamless upgrade
1667
+
1668
+ ## [1.3.3](https://github.com/tamylaa/clodo-framework/compare/v1.3.2...v1.3.3) (2025-10-01)
1669
+
1670
+ ### Bug Fixes
1671
+
1672
+ * implement intelligent WranglerDeployer for actual Cloudflare deployments ([a656190](https://github.com/tamylaa/clodo-framework/commit/a6561909753b5bcb7ece0a0159772daee28dd37c))
1673
+
1674
+ ## [1.3.2](https://github.com/tamylaa/clodo-framework/compare/v1.3.1...v1.3.2) (2025-10-01)
1675
+
1676
+
1677
+ ### Bug Fixes
1678
+
1679
+ * major framework reorganization and robustness improvements ([7aed0b5](https://github.com/tamylaa/clodo-framework/commit/7aed0b5b438bb02c081d533766951ccc89ff4d4c))
1680
+ * make database orchestrator dependency-aware ([051f722](https://github.com/tamylaa/clodo-framework/commit/051f72269aab39d4e972cad8011430dfa86b3f7a))
1681
+
1682
+ ## [1.3.1](https://github.com/tamylaa/clodo-framework/compare/v1.3.0...v1.3.1) (2025-09-29)
1683
+
1684
+
1685
+ ### Bug Fixes
1686
+
1687
+ * Windows compatibility and ES module issues ([7ed2588](https://github.com/tamylaa/clodo-framework/commit/7ed2588d8ae2f706e5646813c1d1dad99944d50f))
1688
+
1689
+ # Changelog
1690
+
1691
+ All notable changes to the Clodo Framework project will be documented in this file.
1692
+
1693
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1694
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1695
+
1696
+ ## [1.0.0] - 2025-09-27
1697
+
1698
+ ### Added
1699
+ - **Core Framework Architecture**
1700
+ - Configuration system with domain and feature management
1701
+ - Generic data services with automatic CRUD operations
1702
+ - Enhanced routing system with parameter matching
1703
+ - Worker integration helpers for Cloudflare Workers
1704
+ - Module system for extensible functionality
1705
+ - Schema manager with automatic validation and SQL generation
1706
+
1707
+ - **CLI Tools**
1708
+ - `create-clodo-service` command for service generation
1709
+ - Multiple service templates (data-service, auth-service, content-service, api-gateway, generic)
1710
+ - Interactive service setup and configuration
1711
+ - Template variable replacement system
1712
+
1713
+ - **Multi-Tenant Support**
1714
+ - Domain-specific configuration management
1715
+ - Feature flags with runtime toggling
1716
+ - Environment-specific settings
1717
+ - Tenant data isolation patterns
1718
+
1719
+ - **Deployment Infrastructure**
1720
+ - PowerShell deployment scripts
1721
+ - Environment-specific configuration
1722
+ - Database migration support
1723
+ - Automated Cloudflare Workers deployment
1724
+ - CI/CD integration templates
1725
+
1726
+ - **Documentation**
1727
+ - Comprehensive architecture documentation
1728
+ - Getting started guide with 5-minute quickstart
1729
+ - Complete API reference
1730
+ - Real-world examples and tutorials
1731
+ - Critical analysis and decision framework
1732
+ - Production deployment guide
1733
+
1734
+ - **Development Tools**
1735
+ - ESLint configuration
1736
+ - Jest testing setup
1737
+ - Babel build system
1738
+ - Development server integration
1739
+
1740
+ ### Features
1741
+ - **Domain Configuration System**
1742
+ - JSON-based domain configuration with validation
1743
+ - Multi-environment support (development, staging, production)
1744
+ - Cloudflare account and zone integration
1745
+ - Custom domain routing support
1746
+
1747
+ - **Feature Flag Management**
1748
+ - Runtime feature toggling per domain
1749
+ - Global feature overrides for testing
1750
+ - Feature-based access control
1751
+ - Event listeners for feature changes
1752
+
1753
+ - **Generic Data Services**
1754
+ - Automatic CRUD API generation
1755
+ - Schema-based data validation
1756
+ - Pagination and filtering support
1757
+ - Multi-tenant data isolation
1758
+ - SQL query generation and optimization
1759
+
1760
+ - **Enhanced Router**
1761
+ - Automatic REST API route generation
1762
+ - Custom route registration
1763
+ - Parameter extraction and validation
1764
+ - Middleware pattern support
1765
+
1766
+ - **Worker Integration**
1767
+ - Service initialization with domain context
1768
+ - Feature guards for conditional request handling
1769
+ - Environment detection and configuration
1770
+ - Error handling and logging integration
1771
+
1772
+ ### Templates
1773
+ - **Generic Service Template**
1774
+ - Basic Cloudflare Worker structure
1775
+ - Domain configuration setup
1776
+ - Health and info endpoints
1777
+ - Deployment scripts
1778
+
1779
+ - **Data Service Template**
1780
+ - Pre-configured CRUD operations
1781
+ - Database integration
1782
+ - Schema management
1783
+ - Multi-tenant support
1784
+
1785
+ - **Auth Service Template**
1786
+ - JWT authentication patterns
1787
+ - User management
1788
+ - Role-based access control
1789
+ - Session handling
1790
+
1791
+ - **Content Service Template**
1792
+ - Content management patterns
1793
+ - File upload support
1794
+ - Media handling
1795
+ - Search and filtering
1796
+
1797
+ - **API Gateway Template**
1798
+ - Service orchestration
1799
+ - Request routing
1800
+ - Rate limiting
1801
+ - Authentication integration
1802
+
1803
+ ### Security
1804
+ - JWT token support for authentication
1805
+ - Role-based access control patterns
1806
+ - Multi-tenant data isolation
1807
+ - CORS configuration support
1808
+ - Input validation and sanitization
1809
+
1810
+ ### Performance
1811
+ - Optimized for Cloudflare Workers V8 isolates
1812
+ - Minimal framework overhead (~10ms cold start)
1813
+ - Lazy loading of modules and configurations
1814
+ - Efficient routing and request handling
1815
+
1816
+ ### Testing
1817
+ - Jest test framework integration
1818
+ - Unit test patterns for framework components
1819
+ - Integration test examples
1820
+ - Multi-domain testing support
1821
+
1822
+ ### Documentation
1823
+ - Architecture deep dive with component diagrams
1824
+ - Step-by-step getting started tutorial
1825
+ - Complete API reference with TypeScript definitions
1826
+ - Real-world examples (CRM, e-commerce, analytics)
1827
+ - Production deployment strategies
1828
+ - Critical analysis and decision framework
1829
+ - Migration guides and alternatives
1830
+
1831
+ ### Deployment
1832
+ - PowerShell automation scripts
1833
+ - GitHub Actions workflow templates
1834
+ - Environment-specific configuration
1835
+ - Database migration strategies
1836
+ - Blue-green deployment support
1837
+ - Monitoring and rollback procedures
1838
+
1839
+ ### Known Issues
1840
+ - Limited transaction support in D1 database
1841
+ - Framework abstractions may add latency
1842
+ - Debugging complexity in multi-layered architecture
1843
+ - Configuration management complexity at scale
1844
+
1845
+ ### Breaking Changes
1846
+ - N/A (Initial release)
1847
+
1848
+ ### Deprecated
1849
+ - N/A (Initial release)
1850
+
1851
+ ### Removed
1852
+ - N/A (Initial release)
1853
+
1854
+ ### Fixed
1855
+ - N/A (Initial release)
1856
+
1857
+ ---
1858
+
1859
+ ## [Unreleased]
1860
+
1861
+ ### Planned Features
1862
+ - Advanced schema management with version control
1863
+ - Real-time capabilities with WebSocket support
1864
+ - Enhanced security with built-in rate limiting
1865
+ - Plugin system for extensible architecture
1866
+ - Advanced monitoring and observability integration
1867
+ - Performance optimizations and caching strategies
1868
+
1869
+ ---
1870
+
1871
+ **Legend:**
1872
+ - `Added` for new features
1873
+ - `Changed` for changes in existing functionality
1874
+ - `Deprecated` for soon-to-be removed features
1875
+ - `Removed` for now removed features
1876
+ - `Fixed` for any bug fixes
1877
+ - `Security` for vulnerability fixes