@layr-labs/ecloud-cli 0.4.2 → 0.4.3
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/VERSION +2 -2
- package/dist/commands/compute/app/deploy.js +2 -2
- package/dist/commands/compute/app/deploy.js.map +1 -1
- package/dist/commands/compute/app/info.js +1 -1
- package/dist/commands/compute/app/list.js +1 -1
- package/dist/commands/compute/app/logs.js +1 -1
- package/dist/commands/compute/app/profile/set.js +1 -1
- package/dist/commands/compute/app/releases.js +1 -1
- package/dist/commands/compute/app/start.js +1 -1
- package/dist/commands/compute/app/stop.js +1 -1
- package/dist/commands/compute/app/terminate.js +1 -1
- package/dist/commands/compute/app/upgrade.js +2 -2
- package/dist/commands/compute/app/upgrade.js.map +1 -1
- package/dist/commands/compute/build/info.js +1 -1
- package/dist/commands/compute/build/list.js +1 -1
- package/dist/commands/compute/build/logs.js +1 -1
- package/dist/commands/compute/build/status.js +1 -1
- package/dist/commands/compute/build/submit.js +1 -1
- package/dist/commands/compute/build/verify.js +1 -1
- package/dist/commands/compute/undelegate.js +1 -1
- package/dist/hooks/init/__tests__/version-check.test.js +1 -1
- package/dist/hooks/init/version-check.js +1 -1
- package/package.json +2 -2
|
@@ -199,7 +199,7 @@ function getAppName(environment, appID) {
|
|
|
199
199
|
|
|
200
200
|
// src/utils/version.ts
|
|
201
201
|
function getCliVersion() {
|
|
202
|
-
return true ? "0.4.
|
|
202
|
+
return true ? "0.4.3" : "0.0.0";
|
|
203
203
|
}
|
|
204
204
|
function getClientId() {
|
|
205
205
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -312,7 +312,7 @@ function listApps(environment) {
|
|
|
312
312
|
|
|
313
313
|
// src/utils/version.ts
|
|
314
314
|
function getCliVersion() {
|
|
315
|
-
return true ? "0.4.
|
|
315
|
+
return true ? "0.4.3" : "0.0.0";
|
|
316
316
|
}
|
|
317
317
|
function getClientId() {
|
|
318
318
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -1900,7 +1900,7 @@ var AppUpgrade = class _AppUpgrade extends Command {
|
|
|
1900
1900
|
flags["resource-usage-monitoring"]
|
|
1901
1901
|
);
|
|
1902
1902
|
const logVisibility = logSettings.publicLogs ? "public" : logSettings.logRedirect ? "private" : "off";
|
|
1903
|
-
const { prepared, gasEstimate } =
|
|
1903
|
+
const { prepared, gasEstimate } = verifiableMode === "git" ? await compute.app.prepareUpgradeFromVerifiableBuild(appID, {
|
|
1904
1904
|
imageRef,
|
|
1905
1905
|
imageDigest: verifiableImageDigest,
|
|
1906
1906
|
envFile: envFilePath,
|