@m8t-stack/cli 0.2.100 → 0.2.105
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/dist/cli.js +11 -6
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1454,7 +1454,7 @@ function installFoundryDnsShim() {
|
|
|
1454
1454
|
}
|
|
1455
1455
|
|
|
1456
1456
|
// src/lib/package-version.ts
|
|
1457
|
-
var CLI_VERSION = "0.2.
|
|
1457
|
+
var CLI_VERSION = "0.2.105";
|
|
1458
1458
|
|
|
1459
1459
|
// src/lib/render-error.ts
|
|
1460
1460
|
init_errors();
|
|
@@ -19479,7 +19479,7 @@ var SIZE_PRESETS = {
|
|
|
19479
19479
|
};
|
|
19480
19480
|
var DEFAULT_REGISTRY = "ghcr.io/m8t-labs";
|
|
19481
19481
|
var DEFAULT_IMAGE = "m8t-coding-agent";
|
|
19482
|
-
var DEFAULT_TAG = "v0.1.
|
|
19482
|
+
var DEFAULT_TAG = "v0.1.4";
|
|
19483
19483
|
var DEFAULT_MODEL = "gpt-4.1-mini";
|
|
19484
19484
|
var NAME_RE = /^[a-z0-9-]+$/;
|
|
19485
19485
|
var CoderDeployCommand = class extends M8tCommand {
|
|
@@ -21164,6 +21164,9 @@ function buildBicepParams(p) {
|
|
|
21164
21164
|
];
|
|
21165
21165
|
if (p.gatewayImageRef) params.push(`gatewayImageRef=${p.gatewayImageRef}`);
|
|
21166
21166
|
if (p.foundryTracingMode) params.push(`foundryTracingMode=${p.foundryTracingMode}`);
|
|
21167
|
+
if (p.deployFoundryTracingConnection !== void 0) {
|
|
21168
|
+
params.push(`deployFoundryTracingConnection=${String(p.deployFoundryTracingConnection)}`);
|
|
21169
|
+
}
|
|
21167
21170
|
if (p.assignSubscriptionRoles !== void 0) params.push(`assignSubscriptionRoles=${String(p.assignSubscriptionRoles)}`);
|
|
21168
21171
|
if (p.provisionUpdater !== void 0) params.push(`provisionUpdater=${String(p.provisionUpdater)}`);
|
|
21169
21172
|
if (p.installerImage !== void 0) params.push(`installerImage=${p.installerImage}`);
|
|
@@ -21711,6 +21714,7 @@ async function resolveBicepParamsForConverge(ctx, opts = {}) {
|
|
|
21711
21714
|
acrPullIdentityResourceId,
|
|
21712
21715
|
acrResourceId,
|
|
21713
21716
|
foundryTracingMode: opts.foundryTracingMode,
|
|
21717
|
+
...opts.deployFoundryTracingConnection !== void 0 ? { deployFoundryTracingConnection: opts.deployFoundryTracingConnection } : {},
|
|
21714
21718
|
...opts.assignSubscriptionRoles !== void 0 ? { assignSubscriptionRoles: opts.assignSubscriptionRoles } : {},
|
|
21715
21719
|
...opts.voiceInternalSecret ? { voiceInternalSecret: opts.voiceInternalSecret } : {},
|
|
21716
21720
|
...opts.channelUrl ? { channelUrl: opts.channelUrl } : {}
|
|
@@ -22645,7 +22649,7 @@ async function buildConvergeDeps(args) {
|
|
|
22645
22649
|
hint: "Run `m8t platform enable-auto-update` against this deployment (it captures the full bicep parameter set), then let the next tick retry."
|
|
22646
22650
|
});
|
|
22647
22651
|
}
|
|
22648
|
-
args.onProgress?.("
|
|
22652
|
+
args.onProgress?.("cross-scope modules skipped: updater is RG-scoped; subscription roles and the existing Foundry tracing connection are preserved.");
|
|
22649
22653
|
const gatewayName = args.suffix ? `m8t-gateway-${args.suffix}` : void 0;
|
|
22650
22654
|
const secret = gatewayName ? voiceSecretParam(
|
|
22651
22655
|
await readLiveVoiceInternalSecret({
|
|
@@ -22660,6 +22664,7 @@ async function buildConvergeDeps(args) {
|
|
|
22660
22664
|
const opts = {
|
|
22661
22665
|
suffix: args.suffix,
|
|
22662
22666
|
assignSubscriptionRoles: false,
|
|
22667
|
+
deployFoundryTracingConnection: false,
|
|
22663
22668
|
// Unconditional: the guard above has already refused an absent row. The
|
|
22664
22669
|
// ternary that used to be here read as "these are optional" — which is
|
|
22665
22670
|
// how the empty-endpoint death got written in the first place.
|
|
@@ -23717,8 +23722,8 @@ var PlatformRequestUpdateCommand = class extends M8tCommand {
|
|
|
23717
23722
|
description: "Ask this installation's updater to converge to a version, exactly as the in-app button does.",
|
|
23718
23723
|
details: "Writes the update request the updater job claims on its next tick. This is the ONLY privilege the requester holds \u2014 it does not deploy anything itself; the install's own updater fetches the release, applies it, health-gates it and rolls back on failure. With --wait, follows the request to a terminal state and exits non-zero if it did not succeed.",
|
|
23719
23724
|
examples: [
|
|
23720
|
-
["Request an update", "m8t platform request-update --version 0.7.
|
|
23721
|
-
["Request it and wait", "m8t platform request-update --version 0.7.
|
|
23725
|
+
["Request an update", "m8t platform request-update --version 0.7.3 --resource-group rg-m8t --subscription <id>"],
|
|
23726
|
+
["Request it and wait", "m8t platform request-update --version 0.7.3 --wait --resource-group rg-m8t --subscription <id>"]
|
|
23722
23727
|
]
|
|
23723
23728
|
});
|
|
23724
23729
|
version = Option35.String("--version", { description: "The platform version to converge to." });
|
|
@@ -31925,7 +31930,7 @@ ${colors.error("\u2717")} The GitHub App on disk is installed on ${colors.field(
|
|
|
31925
31930
|
// src/commands/bootstrap/launch.ts
|
|
31926
31931
|
var DEFAULT_RG = "rg-m8t-stack";
|
|
31927
31932
|
var DEFAULT_INSTALLER = "ghcr.io/m8t-labs/m8t-installer";
|
|
31928
|
-
var DEFAULT_INSTALLER_TAG = "v0.1.
|
|
31933
|
+
var DEFAULT_INSTALLER_TAG = "v0.1.73";
|
|
31929
31934
|
var ACI_NAME = "m8t-installer";
|
|
31930
31935
|
var MI_NAME = "m8t-installer-mi";
|
|
31931
31936
|
var BootstrapLaunchCommand = class extends M8tCommand {
|