@tamyla/clodo-framework 3.2.1 → 3.2.2
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 +7 -0
- package/dist/lib/shared/database/connection-manager.js +1 -1
- package/dist/lib/shared/database/orchestrator.js +1 -1
- package/dist/lib/shared/deployment/validator.js +1 -1
- package/dist/lib/shared/security/secret-generator.js +1 -1
- package/dist/lib/shared/security/secure-token-manager.js +1 -1
- package/dist/lib/shared/utils/graceful-shutdown-manager.js +2 -2
- package/dist/utils/deployment/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.2.2](https://github.com/tamylaa/clodo-framework/compare/v3.2.1...v3.2.2) (2025-12-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* correct import paths in lib/ files and enhance build script ([77abdb2](https://github.com/tamylaa/clodo-framework/commit/77abdb24ccfab61275a8f9716b09c84faaf8db84))
|
|
7
|
+
|
|
1
8
|
## [3.2.1](https://github.com/tamylaa/clodo-framework/compare/v3.2.0...v3.2.1) (2025-12-05)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -21,7 +21,7 @@ export class DatabaseConnectionManager {
|
|
|
21
21
|
// Import framework config for consistent database connection settings
|
|
22
22
|
const {
|
|
23
23
|
frameworkConfig
|
|
24
|
-
} = await import('
|
|
24
|
+
} = await import('../../utils/framework-config.js');
|
|
25
25
|
const timing = frameworkConfig.getTiming();
|
|
26
26
|
const database = frameworkConfig.getDatabaseConfig();
|
|
27
27
|
this.config = {
|
|
@@ -111,7 +111,7 @@ export class DatabaseOrchestrator {
|
|
|
111
111
|
// Import framework config for consistent timing and database settings
|
|
112
112
|
const {
|
|
113
113
|
frameworkConfig
|
|
114
|
-
} = await import('
|
|
114
|
+
} = await import('../../utils/framework-config.js');
|
|
115
115
|
const timing = frameworkConfig.getTiming();
|
|
116
116
|
const database = frameworkConfig.getDatabaseConfig();
|
|
117
117
|
this.config = {
|
|
@@ -500,7 +500,7 @@ export class DeploymentValidator {
|
|
|
500
500
|
// Import WranglerDeployer for D1 validation capabilities
|
|
501
501
|
const {
|
|
502
502
|
WranglerDeployer
|
|
503
|
-
} = await import('../../../
|
|
503
|
+
} = await import('../../../src/deployment/wrangler-deployer.js');
|
|
504
504
|
|
|
505
505
|
// Check if this is a framework-level validation (no specific service)
|
|
506
506
|
if (!this.options?.servicePath) {
|
|
@@ -110,7 +110,7 @@ export class EnhancedSecretManager {
|
|
|
110
110
|
// Import framework config for consistent timing and retry settings
|
|
111
111
|
const {
|
|
112
112
|
frameworkConfig
|
|
113
|
-
} = await import('
|
|
113
|
+
} = await import('../../utils/framework-config.js');
|
|
114
114
|
const timing = frameworkConfig.getTiming();
|
|
115
115
|
const security = frameworkConfig.getSecurity();
|
|
116
116
|
const configPaths = frameworkConfig.getPaths();
|
|
@@ -36,7 +36,7 @@ export class SecureTokenManager {
|
|
|
36
36
|
// Load framework configuration
|
|
37
37
|
const {
|
|
38
38
|
frameworkConfig
|
|
39
|
-
} = await import('
|
|
39
|
+
} = await import('../../utils/framework-config.js');
|
|
40
40
|
this.frameworkConfig = frameworkConfig;
|
|
41
41
|
|
|
42
42
|
// Update paths with framework config
|
|
@@ -17,10 +17,10 @@ export class GracefulShutdownManager {
|
|
|
17
17
|
* Initialize with framework configuration
|
|
18
18
|
*/
|
|
19
19
|
async initialize() {
|
|
20
|
-
// Import framework config for consistent timing
|
|
20
|
+
// Import framework config for consistent timing settings
|
|
21
21
|
const {
|
|
22
22
|
frameworkConfig
|
|
23
|
-
} = await import('
|
|
23
|
+
} = await import('../../utils/framework-config.js');
|
|
24
24
|
const timing = frameworkConfig.getTiming();
|
|
25
25
|
this.config = {
|
|
26
26
|
shutdownTimeout: this.options.shutdownTimeout || timing.shutdownTimeout,
|
|
@@ -5,4 +5,4 @@ export { ConfigurationCacheManager } from './config-cache.js';
|
|
|
5
5
|
export { EnhancedSecretManager } from './secret-generator.js';
|
|
6
6
|
export { UnifiedConfigManager, unifiedConfigManager } from '../config/unified-config-manager.js';
|
|
7
7
|
export { askUser, askYesNo, askChoice, closePrompts } from '../interactive-prompts.js';
|
|
8
|
-
export { DeploymentCredentialCollector } from '
|
|
8
|
+
export { DeploymentCredentialCollector } from '../../lib/shared/deployment/credential-collector.js';
|