@tamyla/clodo-framework 3.1.5 → 3.1.9
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.
- package/CHANGELOG.md +30 -0
- package/bin/clodo-service.js +29 -947
- package/bin/database/enterprise-db-manager.js +7 -5
- package/bin/security/security-cli.js +0 -0
- package/bin/service-management/create-service.js +0 -0
- package/bin/service-management/init-service.js +0 -0
- package/bin/shared/cloudflare/domain-discovery.js +11 -10
- package/bin/shared/cloudflare/ops.js +1 -1
- package/bin/shared/config/ConfigurationManager.js +539 -0
- package/bin/shared/config/index.js +13 -1
- package/bin/shared/database/connection-manager.js +2 -2
- package/bin/shared/database/orchestrator.js +5 -4
- package/bin/shared/deployment/auditor.js +9 -8
- package/bin/shared/logging/Logger.js +214 -0
- package/bin/shared/monitoring/production-monitor.js +21 -9
- package/bin/shared/utils/ErrorHandler.js +675 -0
- package/bin/shared/utils/error-recovery.js +33 -13
- package/bin/shared/utils/file-manager.js +162 -0
- package/bin/shared/utils/formatters.js +247 -0
- package/bin/shared/utils/index.js +14 -4
- package/bin/shared/validation/ValidationRegistry.js +143 -0
- package/dist/bin/clodo-service-old.js +868 -0
- package/dist/bin/clodo-service-test.js +10 -0
- package/dist/bin/clodo-service.js +62 -0
- package/dist/bin/commands/assess.js +76 -0
- package/dist/bin/commands/create.js +56 -0
- package/dist/bin/commands/deploy.js +196 -0
- package/dist/bin/commands/diagnose.js +70 -0
- package/dist/bin/commands/helpers.js +138 -0
- package/dist/bin/commands/update.js +55 -0
- package/dist/bin/commands/validate.js +26 -0
- package/dist/bin/database/deployment-db-manager.js +423 -0
- package/dist/bin/database/enterprise-db-manager.js +457 -0
- package/dist/bin/database/wrangler-d1-manager.js +685 -0
- package/dist/bin/deployment/enterprise-deploy.js +877 -0
- package/dist/bin/deployment/master-deploy.js +1376 -0
- package/dist/bin/deployment/modular-enterprise-deploy.js +466 -0
- package/dist/bin/deployment/modules/DeploymentConfiguration.js +395 -0
- package/dist/bin/deployment/modules/DeploymentOrchestrator.js +492 -0
- package/dist/bin/deployment/modules/EnvironmentManager.js +517 -0
- package/dist/bin/deployment/modules/MonitoringIntegration.js +560 -0
- package/dist/bin/deployment/modules/ValidationManager.js +342 -0
- package/dist/bin/deployment/orchestration/BaseDeploymentOrchestrator.js +426 -0
- package/dist/bin/deployment/orchestration/EnterpriseOrchestrator.js +401 -0
- package/dist/bin/deployment/orchestration/PortfolioOrchestrator.js +273 -0
- package/dist/bin/deployment/orchestration/SingleServiceOrchestrator.js +231 -0
- package/dist/bin/deployment/orchestration/UnifiedDeploymentOrchestrator.js +662 -0
- package/dist/bin/deployment/test-interactive-utils.js +66 -0
- package/dist/bin/portfolio/portfolio-manager.js +487 -0
- package/dist/bin/security/security-cli.js +108 -0
- package/dist/bin/service-management/create-service.js +122 -0
- package/dist/bin/service-management/init-service.js +79 -0
- package/dist/{shared → bin/shared}/cloudflare/domain-discovery.js +11 -10
- package/dist/{shared → bin/shared}/cloudflare/ops.js +1 -1
- package/dist/bin/shared/config/ConfigurationManager.js +519 -0
- package/dist/{shared → bin/shared}/config/index.js +5 -1
- package/dist/{shared → bin/shared}/database/connection-manager.js +2 -2
- package/dist/{shared → bin/shared}/database/orchestrator.js +13 -4
- package/dist/{deployment → bin/shared/deployment}/auditor.js +23 -8
- package/dist/bin/shared/logging/Logger.js +209 -0
- package/dist/{shared → bin/shared}/monitoring/production-monitor.js +24 -8
- package/dist/{utils → bin/shared/utils}/ErrorHandler.js +306 -28
- package/dist/{utils → bin/shared/utils}/error-recovery.js +33 -13
- package/dist/bin/shared/utils/file-manager.js +155 -0
- package/dist/bin/shared/utils/formatters.js +215 -0
- package/dist/bin/shared/utils/index.js +19 -0
- package/dist/bin/shared/validation/ValidationRegistry.js +126 -0
- package/dist/deployment/index.js +10 -9
- package/dist/deployment/orchestration/BaseDeploymentOrchestrator.js +426 -0
- package/dist/deployment/orchestration/EnterpriseOrchestrator.js +401 -0
- package/dist/deployment/orchestration/PortfolioOrchestrator.js +273 -0
- package/dist/deployment/orchestration/SingleServiceOrchestrator.js +231 -0
- package/dist/deployment/orchestration/UnifiedDeploymentOrchestrator.js +662 -0
- package/dist/deployment/orchestration/index.js +17 -0
- package/dist/deployment/rollback-manager.js +21 -508
- package/dist/index.js +12 -0
- package/dist/orchestration/modules/DomainResolver.js +8 -6
- package/dist/orchestration/multi-domain-orchestrator.js +13 -1
- package/dist/security/index.js +2 -2
- package/dist/service-management/ConfirmationEngine.js +8 -7
- package/dist/service-management/ErrorTracker.js +7 -2
- package/dist/service-management/InputCollector.js +18 -12
- package/dist/service-management/ServiceCreator.js +22 -7
- package/dist/service-management/ServiceInitializer.js +12 -18
- package/dist/utils/config/unified-config-manager.js +14 -12
- package/dist/utils/deployment/config-cache.js +3 -1
- package/dist/utils/deployment/secret-generator.js +32 -29
- package/dist/utils/framework-config.js +6 -3
- package/dist/utils/ui-structures-loader.js +3 -0
- package/dist/worker/integration.js +11 -1
- package/package.json +36 -8
- package/dist/config/FeatureManager.js +0 -426
- package/dist/config/features.js +0 -230
- package/dist/shared/deployment/auditor.js +0 -971
- package/dist/shared/deployment/validator.js +0 -670
- package/dist/shared/production-tester/api-tester.js +0 -80
- package/dist/shared/production-tester/auth-tester.js +0 -129
- package/dist/shared/production-tester/core.js +0 -217
- package/dist/shared/production-tester/database-tester.js +0 -105
- package/dist/shared/production-tester/index.js +0 -74
- package/dist/shared/production-tester/load-tester.js +0 -120
- package/dist/shared/production-tester/performance-tester.js +0 -105
- package/dist/shared/utils/error-recovery.js +0 -240
- package/dist/shared/utils/index.js +0 -9
- /package/dist/{shared → bin/shared}/cloudflare/domain-manager.js +0 -0
- /package/dist/{shared → bin/shared}/cloudflare/index.js +0 -0
- /package/dist/{shared → bin/shared}/config/cache.js +0 -0
- /package/dist/{shared → bin/shared}/config/command-config-manager.js +0 -0
- /package/dist/{shared → bin/shared}/config/manager.js +0 -0
- /package/dist/{shared → bin/shared}/database/index.js +0 -0
- /package/dist/{shared → bin/shared}/deployment/index.js +0 -0
- /package/dist/{shared → bin/shared}/deployment/rollback-manager.js +0 -0
- /package/dist/{deployment → bin/shared/deployment}/validator.js +0 -0
- /package/dist/{shared → bin/shared}/index.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/health-checker.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/index.js +0 -0
- /package/dist/{shared → bin/shared}/monitoring/memory-manager.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/api-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/auth-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/core.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/database-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/index.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/load-tester.js +0 -0
- /package/dist/{deployment/testers → bin/shared/production-tester}/performance-tester.js +0 -0
- /package/dist/{shared → bin/shared}/security/api-token-manager.js +0 -0
- /package/dist/{shared → bin/shared}/security/index.js +0 -0
- /package/dist/{shared → bin/shared}/security/secret-generator.js +0 -0
- /package/dist/{shared → bin/shared}/security/secure-token-manager.js +0 -0
- /package/dist/{shared → bin/shared}/utils/graceful-shutdown-manager.js +0 -0
- /package/dist/{shared → bin/shared}/utils/interactive-prompts.js +0 -0
- /package/dist/{shared → bin/shared}/utils/interactive-utils.js +0 -0
- /package/dist/{shared → bin/shared}/utils/rate-limiter.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## [3.1.9](https://github.com/tamylaa/clodo-framework/compare/v3.1.8...v3.1.9) (2025-10-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* compile bin/ to dist/bin/ for proper npm package structure ([d4ba5d5](https://github.com/tamylaa/clodo-framework/commit/d4ba5d55e27911333a9921234e8defe2f995efd3))
|
|
7
|
+
* include required bin directories in npm package ([aa8484e](https://github.com/tamylaa/clodo-framework/commit/aa8484ed600c15a217d7b67b82ad9f31d780fdf7))
|
|
8
|
+
|
|
9
|
+
## [3.1.8](https://github.com/tamylaa/clodo-framework/compare/v3.1.7...v3.1.8) (2025-10-27)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* change prepublishOnly to use build:ci instead of full validation ([e001791](https://github.com/tamylaa/clodo-framework/commit/e0017913df28b86320b6a71eb583a8ed37a45c38))
|
|
15
|
+
|
|
16
|
+
## [3.1.7](https://github.com/tamylaa/clodo-framework/compare/v3.1.6...v3.1.7) (2025-10-27)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* allow validation-config.json warning in CLI test ([2d6870a](https://github.com/tamylaa/clodo-framework/commit/2d6870af85b2fe89168ba8a64a9c5d5b639a6c70))
|
|
22
|
+
* exclude backup and archive directories from test discovery ([831eb98](https://github.com/tamylaa/clodo-framework/commit/831eb9835b5c816137cc07df8016612ed1f60334))
|
|
23
|
+
|
|
24
|
+
## [3.1.6](https://github.com/tamylaa/clodo-framework/compare/v3.1.5...v3.1.6) (2025-10-27)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* add automated testing suite, cover clodo-service deploy 3-level inputs, and Windows compatibility fixes ([305c81c](https://github.com/tamylaa/clodo-framework/commit/305c81c45bd1761a49d1d54585b189c95cd7c749))
|
|
30
|
+
|
|
1
31
|
## [3.1.5](https://github.com/tamylaa/clodo-framework/compare/v3.1.4...v3.1.5) (2025-10-25)
|
|
2
32
|
|
|
3
33
|
|