@tamyla/clodo-framework 3.0.9 → 3.0.10
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/bin/clodo-service.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.0.10](https://github.com/tamylaa/clodo-framework/compare/v3.0.9...v3.0.10) (2025-10-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Pass Cloudflare API credentials to MultiDomainOrchestrator in clodo-service deploy ([9f8c249](https://github.com/tamylaa/clodo-framework/commit/9f8c24912c79755152c5273ececa3374651e1164))
|
|
7
|
+
|
|
1
8
|
## [3.0.9](https://github.com/tamylaa/clodo-framework/compare/v3.0.8...v3.0.9) (2025-10-14)
|
|
2
9
|
|
|
3
10
|
|
package/bin/clodo-service.js
CHANGED
|
@@ -597,7 +597,9 @@ program
|
|
|
597
597
|
domains: [coreInputs.domainName],
|
|
598
598
|
environment: coreInputs.environment,
|
|
599
599
|
dryRun: options.dryRun,
|
|
600
|
-
servicePath: options.servicePath
|
|
600
|
+
servicePath: options.servicePath,
|
|
601
|
+
cloudflareToken: coreInputs.cloudflareToken,
|
|
602
|
+
cloudflareAccountId: coreInputs.cloudflareAccountId
|
|
601
603
|
});
|
|
602
604
|
|
|
603
605
|
await orchestrator.initialize();
|