@costrict/csc 4.2.10 → 4.2.11
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 +87 -86
- package/dist/services/rawDump/batchWorker.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -63706,8 +63706,8 @@ function getClientVersion() {
|
|
|
63706
63706
|
if (cached)
|
|
63707
63707
|
return cached;
|
|
63708
63708
|
try {
|
|
63709
|
-
if ("4.2.
|
|
63710
|
-
cached = "4.2.
|
|
63709
|
+
if ("4.2.11") {
|
|
63710
|
+
cached = "4.2.11";
|
|
63711
63711
|
return cached;
|
|
63712
63712
|
}
|
|
63713
63713
|
} catch {}
|
|
@@ -138845,7 +138845,7 @@ async function fetchCoStrictModels(baseUrl, accessToken) {
|
|
|
138845
138845
|
headers: {
|
|
138846
138846
|
Authorization: `Bearer ${accessToken}`,
|
|
138847
138847
|
Accept: "application/json",
|
|
138848
|
-
"User-Agent": `csc/${"4.2.
|
|
138848
|
+
"User-Agent": `csc/${"4.2.11"}`
|
|
138849
138849
|
},
|
|
138850
138850
|
signal: controller.signal
|
|
138851
138851
|
});
|
|
@@ -187678,7 +187678,7 @@ var init_auth7 = __esm(() => {
|
|
|
187678
187678
|
|
|
187679
187679
|
// src/utils/userAgent.ts
|
|
187680
187680
|
function getClaudeCodeUserAgent() {
|
|
187681
|
-
return `costrict/${"4.2.
|
|
187681
|
+
return `costrict/${"4.2.11"}`;
|
|
187682
187682
|
}
|
|
187683
187683
|
|
|
187684
187684
|
// src/utils/workloadContext.ts
|
|
@@ -187700,7 +187700,7 @@ function getUserAgent() {
|
|
|
187700
187700
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
187701
187701
|
const workload = getWorkload();
|
|
187702
187702
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
187703
|
-
return `csc/${"4.2.
|
|
187703
|
+
return `csc/${"4.2.11"}`;
|
|
187704
187704
|
}
|
|
187705
187705
|
function getMCPUserAgent() {
|
|
187706
187706
|
const parts = [];
|
|
@@ -187714,7 +187714,7 @@ function getMCPUserAgent() {
|
|
|
187714
187714
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
187715
187715
|
}
|
|
187716
187716
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
187717
|
-
return `csc/${"4.2.
|
|
187717
|
+
return `csc/${"4.2.11"}${suffix}`;
|
|
187718
187718
|
}
|
|
187719
187719
|
function getWebFetchUserAgent() {
|
|
187720
187720
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -187834,7 +187834,7 @@ var init_user = __esm(() => {
|
|
|
187834
187834
|
deviceId,
|
|
187835
187835
|
sessionId: getSessionId(),
|
|
187836
187836
|
email: getEmail(),
|
|
187837
|
-
appVersion: "4.2.
|
|
187837
|
+
appVersion: "4.2.11",
|
|
187838
187838
|
platform: getHostPlatformForAnalytics(),
|
|
187839
187839
|
organizationUuid,
|
|
187840
187840
|
accountUuid,
|
|
@@ -198915,7 +198915,7 @@ var init_metadata = __esm(() => {
|
|
|
198915
198915
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
198916
198916
|
WHITESPACE_REGEX = /\s+/;
|
|
198917
198917
|
getVersionBase = memoize_default(() => {
|
|
198918
|
-
const match = "4.2.
|
|
198918
|
+
const match = "4.2.11".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
198919
198919
|
return match ? match[0] : undefined;
|
|
198920
198920
|
});
|
|
198921
198921
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -198955,9 +198955,9 @@ var init_metadata = __esm(() => {
|
|
|
198955
198955
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
198956
198956
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
198957
198957
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
198958
|
-
version: "4.2.
|
|
198958
|
+
version: "4.2.11",
|
|
198959
198959
|
versionBase: getVersionBase(),
|
|
198960
|
-
buildTime: "2026-07-
|
|
198960
|
+
buildTime: "2026-07-07T12:05:30.845Z",
|
|
198961
198961
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
198962
198962
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
198963
198963
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -199628,7 +199628,7 @@ function initialize1PEventLogging() {
|
|
|
199628
199628
|
const platform3 = getPlatform();
|
|
199629
199629
|
const attributes = {
|
|
199630
199630
|
[import_semantic_conventions2.ATTR_SERVICE_NAME]: "claude-code",
|
|
199631
|
-
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "4.2.
|
|
199631
|
+
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "4.2.11"
|
|
199632
199632
|
};
|
|
199633
199633
|
if (platform3 === "wsl") {
|
|
199634
199634
|
const wslVersion = getWslVersion();
|
|
@@ -199655,7 +199655,7 @@ function initialize1PEventLogging() {
|
|
|
199655
199655
|
})
|
|
199656
199656
|
]
|
|
199657
199657
|
});
|
|
199658
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.anthropic.claude_code.events", "4.2.
|
|
199658
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.anthropic.claude_code.events", "4.2.11");
|
|
199659
199659
|
}
|
|
199660
199660
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
199661
199661
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -397238,7 +397238,7 @@ function getTelemetryAttributes() {
|
|
|
397238
397238
|
attributes["session.id"] = sessionId;
|
|
397239
397239
|
}
|
|
397240
397240
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
397241
|
-
attributes["app.version"] = "4.2.
|
|
397241
|
+
attributes["app.version"] = "4.2.11";
|
|
397242
397242
|
}
|
|
397243
397243
|
const oauthAccount = getOauthAccountInfo();
|
|
397244
397244
|
if (oauthAccount) {
|
|
@@ -429693,7 +429693,7 @@ function initLangfuse() {
|
|
|
429693
429693
|
flushInterval: parseInt(process.env.LANGFUSE_FLUSH_INTERVAL ?? "10", 10),
|
|
429694
429694
|
mask: maskFn,
|
|
429695
429695
|
environment: process.env.LANGFUSE_TRACING_ENVIRONMENT ?? "development",
|
|
429696
|
-
release: "4.2.
|
|
429696
|
+
release: "4.2.11",
|
|
429697
429697
|
exportMode: process.env.LANGFUSE_EXPORT_MODE ?? "batched",
|
|
429698
429698
|
timeout: parseInt(process.env.LANGFUSE_TIMEOUT ?? "5", 10)
|
|
429699
429699
|
});
|
|
@@ -467929,7 +467929,7 @@ function initSentry() {
|
|
|
467929
467929
|
}
|
|
467930
467930
|
init3({
|
|
467931
467931
|
dsn,
|
|
467932
|
-
release: typeof MACRO !== "undefined" ? "4.2.
|
|
467932
|
+
release: typeof MACRO !== "undefined" ? "4.2.11" : undefined,
|
|
467933
467933
|
environment: typeof BUILD_ENV !== "undefined" ? BUILD_ENV : "production",
|
|
467934
467934
|
maxBreadcrumbs: 20,
|
|
467935
467935
|
sampleRate: 1,
|
|
@@ -495820,7 +495820,7 @@ async function initializeBetaTracing(resource) {
|
|
|
495820
495820
|
});
|
|
495821
495821
|
import_api_logs5.logs.setGlobalLoggerProvider(loggerProvider);
|
|
495822
495822
|
setLoggerProvider(loggerProvider);
|
|
495823
|
-
const eventLogger = import_api_logs5.logs.getLogger("com.anthropic.claude_code.events", "4.2.
|
|
495823
|
+
const eventLogger = import_api_logs5.logs.getLogger("com.anthropic.claude_code.events", "4.2.11");
|
|
495824
495824
|
setEventLogger(eventLogger);
|
|
495825
495825
|
process.on("beforeExit", async () => {
|
|
495826
495826
|
await loggerProvider?.forceFlush();
|
|
@@ -495860,7 +495860,7 @@ async function initializeTelemetry() {
|
|
|
495860
495860
|
const platform5 = getPlatform();
|
|
495861
495861
|
const baseAttributes = {
|
|
495862
495862
|
[import_semantic_conventions14.ATTR_SERVICE_NAME]: "claude-code",
|
|
495863
|
-
[import_semantic_conventions14.ATTR_SERVICE_VERSION]: "4.2.
|
|
495863
|
+
[import_semantic_conventions14.ATTR_SERVICE_VERSION]: "4.2.11"
|
|
495864
495864
|
};
|
|
495865
495865
|
if (platform5 === "wsl") {
|
|
495866
495866
|
const wslVersion = getWslVersion();
|
|
@@ -495905,7 +495905,7 @@ async function initializeTelemetry() {
|
|
|
495905
495905
|
} catch {}
|
|
495906
495906
|
};
|
|
495907
495907
|
registerCleanup(shutdownTelemetry2);
|
|
495908
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "4.2.
|
|
495908
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "4.2.11");
|
|
495909
495909
|
}
|
|
495910
495910
|
const meterProvider = new import_sdk_metrics2.MeterProvider({
|
|
495911
495911
|
resource,
|
|
@@ -495925,7 +495925,7 @@ async function initializeTelemetry() {
|
|
|
495925
495925
|
});
|
|
495926
495926
|
import_api_logs5.logs.setGlobalLoggerProvider(loggerProvider);
|
|
495927
495927
|
setLoggerProvider(loggerProvider);
|
|
495928
|
-
const eventLogger = import_api_logs5.logs.getLogger("com.anthropic.claude_code.events", "4.2.
|
|
495928
|
+
const eventLogger = import_api_logs5.logs.getLogger("com.anthropic.claude_code.events", "4.2.11");
|
|
495929
495929
|
setEventLogger(eventLogger);
|
|
495930
495930
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
495931
495931
|
process.on("beforeExit", async () => {
|
|
@@ -495987,7 +495987,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
495987
495987
|
}
|
|
495988
495988
|
};
|
|
495989
495989
|
registerCleanup(shutdownTelemetry);
|
|
495990
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "4.2.
|
|
495990
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "4.2.11");
|
|
495991
495991
|
}
|
|
495992
495992
|
async function flushTelemetry() {
|
|
495993
495993
|
const meterProvider = getMeterProvider();
|
|
@@ -497046,7 +497046,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
497046
497046
|
logError3(new AutoUpdaterError("Another process is currently installing an update"));
|
|
497047
497047
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
497048
497048
|
pid: process.pid,
|
|
497049
|
-
currentVersion: "4.2.
|
|
497049
|
+
currentVersion: "4.2.11"
|
|
497050
497050
|
});
|
|
497051
497051
|
return { status: "in_progress" };
|
|
497052
497052
|
}
|
|
@@ -497055,7 +497055,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
497055
497055
|
if (!env4.isRunningWithBun() && env4.isNpmFromWindowsPath()) {
|
|
497056
497056
|
logError3(new Error("Windows NPM detected in WSL environment"));
|
|
497057
497057
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
497058
|
-
currentVersion: "4.2.
|
|
497058
|
+
currentVersion: "4.2.11"
|
|
497059
497059
|
});
|
|
497060
497060
|
return {
|
|
497061
497061
|
status: "install_failed",
|
|
@@ -497601,7 +497601,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
497601
497601
|
}
|
|
497602
497602
|
async function getDoctorDiagnostic() {
|
|
497603
497603
|
const installationType = await getCurrentInstallationType();
|
|
497604
|
-
const version7 = typeof MACRO !== "undefined" ? "4.2.
|
|
497604
|
+
const version7 = typeof MACRO !== "undefined" ? "4.2.11" : "unknown";
|
|
497605
497605
|
const installationPath = await getInstallationPath();
|
|
497606
497606
|
const invokedBinary = getInvokedBinary();
|
|
497607
497607
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -535757,7 +535757,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
535757
535757
|
const client8 = new Client3({
|
|
535758
535758
|
name: "claude-code",
|
|
535759
535759
|
title: "CoStrict",
|
|
535760
|
-
version: "4.2.
|
|
535760
|
+
version: "4.2.11",
|
|
535761
535761
|
description: "CoStrict agentic coding tool",
|
|
535762
535762
|
websiteUrl: PRODUCT_URL
|
|
535763
535763
|
}, {
|
|
@@ -536128,7 +536128,7 @@ var init_client17 = __esm(() => {
|
|
|
536128
536128
|
const client8 = new Client3({
|
|
536129
536129
|
name: "claude-code",
|
|
536130
536130
|
title: "CoStrict",
|
|
536131
|
-
version: "4.2.
|
|
536131
|
+
version: "4.2.11",
|
|
536132
536132
|
description: "CoStrict agentic coding tool",
|
|
536133
536133
|
websiteUrl: PRODUCT_URL
|
|
536134
536134
|
}, {
|
|
@@ -537506,7 +537506,7 @@ function getInstallationEnv() {
|
|
|
537506
537506
|
return;
|
|
537507
537507
|
}
|
|
537508
537508
|
function getClaudeCodeVersion() {
|
|
537509
|
-
return "4.2.
|
|
537509
|
+
return "4.2.11";
|
|
537510
537510
|
}
|
|
537511
537511
|
async function getInstalledVSCodeExtensionVersion(command4) {
|
|
537512
537512
|
const { stdout } = await execFileNoThrow2(command4, ["--list-extensions", "--show-versions"], {
|
|
@@ -538870,8 +538870,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
538870
538870
|
const maxVersion = await getMaxVersion();
|
|
538871
538871
|
if (maxVersion && gt(version8, maxVersion)) {
|
|
538872
538872
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version8} to ${maxVersion}`);
|
|
538873
|
-
if (gte2("4.2.
|
|
538874
|
-
logForDebugging(`Native installer: current version ${"4.2.
|
|
538873
|
+
if (gte2("4.2.11", maxVersion)) {
|
|
538874
|
+
logForDebugging(`Native installer: current version ${"4.2.11"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
538875
538875
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
538876
538876
|
latency_ms: Date.now() - startTime2,
|
|
538877
538877
|
max_version: maxVersion,
|
|
@@ -538882,7 +538882,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
538882
538882
|
version8 = maxVersion;
|
|
538883
538883
|
}
|
|
538884
538884
|
}
|
|
538885
|
-
if (!forceReinstall && version8 === "4.2.
|
|
538885
|
+
if (!forceReinstall && version8 === "4.2.11" && await versionIsAvailable(version8) && await isPossibleClaudeBinary(executablePath)) {
|
|
538886
538886
|
logForDebugging(`Found ${version8} at ${executablePath}, skipping install`);
|
|
538887
538887
|
logEvent("tengu_native_update_complete", {
|
|
538888
538888
|
latency_ms: Date.now() - startTime2,
|
|
@@ -673249,7 +673249,7 @@ function Feedback({
|
|
|
673249
673249
|
platform: env4.platform,
|
|
673250
673250
|
gitRepo: envInfo.isGit,
|
|
673251
673251
|
terminal: env4.terminal,
|
|
673252
|
-
version: "4.2.
|
|
673252
|
+
version: "4.2.11",
|
|
673253
673253
|
transcript: normalizeMessagesForAPI(messages),
|
|
673254
673254
|
errors: sanitizedErrors,
|
|
673255
673255
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -673432,7 +673432,7 @@ function Feedback({
|
|
|
673432
673432
|
", ",
|
|
673433
673433
|
env4.terminal,
|
|
673434
673434
|
", v",
|
|
673435
|
-
"4.2.
|
|
673435
|
+
"4.2.11"
|
|
673436
673436
|
]
|
|
673437
673437
|
})
|
|
673438
673438
|
]
|
|
@@ -673529,7 +673529,7 @@ ${sanitizedDescription}
|
|
|
673529
673529
|
` + `**Environment Info**
|
|
673530
673530
|
` + `- Platform: ${env4.platform}
|
|
673531
673531
|
` + `- Terminal: ${env4.terminal}
|
|
673532
|
-
` + `- Version: ${"4.2.
|
|
673532
|
+
` + `- Version: ${"4.2.11"}
|
|
673533
673533
|
` + `- Feedback ID: ${feedbackId}
|
|
673534
673534
|
` + `
|
|
673535
673535
|
**Errors**
|
|
@@ -675765,7 +675765,7 @@ function buildPrimarySection() {
|
|
|
675765
675765
|
children: t("settings.status.renameHint")
|
|
675766
675766
|
});
|
|
675767
675767
|
return [
|
|
675768
|
-
{ label: t("settings.status.version"), value: "4.2.
|
|
675768
|
+
{ label: t("settings.status.version"), value: "4.2.11" },
|
|
675769
675769
|
{ label: t("settings.status.sessionName"), value: nameValue },
|
|
675770
675770
|
{ label: t("settings.status.sessionId"), value: sessionId },
|
|
675771
675771
|
{ label: t("settings.status.cwd"), value: getCwd() },
|
|
@@ -678587,7 +678587,7 @@ function Config({
|
|
|
678587
678587
|
}
|
|
678588
678588
|
})
|
|
678589
678589
|
}) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime190.jsx(ChannelDowngradeDialog, {
|
|
678590
|
-
currentVersion: "4.2.
|
|
678590
|
+
currentVersion: "4.2.11",
|
|
678591
678591
|
onChoice: (choice) => {
|
|
678592
678592
|
setShowSubmenu(null);
|
|
678593
678593
|
setTabsHidden(false);
|
|
@@ -678599,7 +678599,7 @@ function Config({
|
|
|
678599
678599
|
autoUpdatesChannel: "stable"
|
|
678600
678600
|
};
|
|
678601
678601
|
if (choice === "stay") {
|
|
678602
|
-
newSettings.minimumVersion = "4.2.
|
|
678602
|
+
newSettings.minimumVersion = "4.2.11";
|
|
678603
678603
|
}
|
|
678604
678604
|
updateSettingsForSource("userSettings", newSettings);
|
|
678605
678605
|
setSettingsData((prev) => ({
|
|
@@ -684068,7 +684068,7 @@ function HelpV2({ onClose, commands: commands7 }) {
|
|
|
684068
684068
|
color: "professionalBlue",
|
|
684069
684069
|
children: [
|
|
684070
684070
|
/* @__PURE__ */ jsx_runtime217.jsx(Tabs, {
|
|
684071
|
-
title: process.env.USER_TYPE === "sf" ? "/help" : `CoStrict v${"4.2.
|
|
684071
|
+
title: process.env.USER_TYPE === "sf" ? "/help" : `CoStrict v${"4.2.11"}`,
|
|
684072
684072
|
color: "professionalBlue",
|
|
684073
684073
|
defaultTab: "general",
|
|
684074
684074
|
children: tabs
|
|
@@ -774644,7 +774644,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
774644
774644
|
return [];
|
|
774645
774645
|
}
|
|
774646
774646
|
}
|
|
774647
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "4.2.
|
|
774647
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "4.2.11") {
|
|
774648
774648
|
if (process.env.USER_TYPE === "sf") {
|
|
774649
774649
|
const changelog = "";
|
|
774650
774650
|
if (changelog) {
|
|
@@ -774671,7 +774671,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "4.2.10")
|
|
|
774671
774671
|
releaseNotes
|
|
774672
774672
|
};
|
|
774673
774673
|
}
|
|
774674
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "4.2.
|
|
774674
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "4.2.11") {
|
|
774675
774675
|
if (process.env.USER_TYPE === "sf") {
|
|
774676
774676
|
const changelog = "";
|
|
774677
774677
|
if (changelog) {
|
|
@@ -777432,7 +777432,7 @@ function isNotLoggedIn() {
|
|
|
777432
777432
|
return true;
|
|
777433
777433
|
}
|
|
777434
777434
|
function getLogoDisplayData() {
|
|
777435
|
-
const version8 = process.env.DEMO_VERSION ?? "4.2.
|
|
777435
|
+
const version8 = process.env.DEMO_VERSION ?? "4.2.11";
|
|
777436
777436
|
const serverUrl = getDirectConnectServerUrl();
|
|
777437
777437
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
777438
777438
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -778010,7 +778010,7 @@ var init_MatrixMessageLine = __esm(() => {
|
|
|
778010
778010
|
// src/components/matrix-tactical/MatrixWelcome.tsx
|
|
778011
778011
|
import { basename as basename47 } from "path";
|
|
778012
778012
|
function MatrixWelcome({
|
|
778013
|
-
version: version8 = "4.2.
|
|
778013
|
+
version: version8 = "4.2.11",
|
|
778014
778014
|
projectName,
|
|
778015
778015
|
cwd: cwd2,
|
|
778016
778016
|
modelDisplayName,
|
|
@@ -778645,13 +778645,13 @@ function LogoV2() {
|
|
|
778645
778645
|
const { hasReleaseNotes } = checkForReleaseNotesSync(config11.lastReleaseNotesSeen);
|
|
778646
778646
|
import_react167.useEffect(() => {
|
|
778647
778647
|
const currentConfig = getGlobalConfig();
|
|
778648
|
-
if (currentConfig.lastReleaseNotesSeen === "4.2.
|
|
778648
|
+
if (currentConfig.lastReleaseNotesSeen === "4.2.11") {
|
|
778649
778649
|
return;
|
|
778650
778650
|
}
|
|
778651
778651
|
saveGlobalConfig((current2) => {
|
|
778652
|
-
if (current2.lastReleaseNotesSeen === "4.2.
|
|
778652
|
+
if (current2.lastReleaseNotesSeen === "4.2.11")
|
|
778653
778653
|
return current2;
|
|
778654
|
-
return { ...current2, lastReleaseNotesSeen: "4.2.
|
|
778654
|
+
return { ...current2, lastReleaseNotesSeen: "4.2.11" };
|
|
778655
778655
|
});
|
|
778656
778656
|
if (showOnboarding) {
|
|
778657
778657
|
incrementProjectOnboardingSeenCount();
|
|
@@ -800596,7 +800596,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
800596
800596
|
smapsRollup,
|
|
800597
800597
|
platform: process.platform,
|
|
800598
800598
|
nodeVersion: process.version,
|
|
800599
|
-
ccVersion: "4.2.
|
|
800599
|
+
ccVersion: "4.2.11"
|
|
800600
800600
|
};
|
|
800601
800601
|
}
|
|
800602
800602
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -800712,7 +800712,7 @@ var init_mock_limits = __esm(() => {
|
|
|
800712
800712
|
var call54 = async () => {
|
|
800713
800713
|
return {
|
|
800714
800714
|
type: "text",
|
|
800715
|
-
value: `${"4.2.
|
|
800715
|
+
value: `${"4.2.11"} (built ${"2026-07-07T12:05:30.845Z"})`
|
|
800716
800716
|
};
|
|
800717
800717
|
}, version8, version_default;
|
|
800718
800718
|
var init_version2 = __esm(() => {
|
|
@@ -817541,7 +817541,7 @@ function generateHtmlReport(data, insights) {
|
|
|
817541
817541
|
</html>`;
|
|
817542
817542
|
}
|
|
817543
817543
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
817544
|
-
const version9 = typeof MACRO !== "undefined" ? "4.2.
|
|
817544
|
+
const version9 = typeof MACRO !== "undefined" ? "4.2.11" : "unknown";
|
|
817545
817545
|
const remote_hosts_collected = remoteStats?.hosts.filter((h5) => h5.sessionCount > 0).map((h5) => h5.name);
|
|
817546
817546
|
const facets_summary = {
|
|
817547
817547
|
total: facets.size,
|
|
@@ -821855,7 +821855,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
821855
821855
|
init_settings2();
|
|
821856
821856
|
init_slowOperations();
|
|
821857
821857
|
init_uuid();
|
|
821858
|
-
VERSION10 = typeof MACRO !== "undefined" ? "4.2.
|
|
821858
|
+
VERSION10 = typeof MACRO !== "undefined" ? "4.2.11" : "unknown";
|
|
821859
821859
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
821860
821860
|
SKIP_FIRST_PROMPT_PATTERN2 = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
821861
821861
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -823196,7 +823196,7 @@ var init_filesystem = __esm(() => {
|
|
|
823196
823196
|
});
|
|
823197
823197
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
823198
823198
|
const nonce = randomBytes24(16).toString("hex");
|
|
823199
|
-
return join195(getCostrictTempDir(), "bundled-skills", "4.2.
|
|
823199
|
+
return join195(getCostrictTempDir(), "bundled-skills", "4.2.11", nonce);
|
|
823200
823200
|
});
|
|
823201
823201
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
823202
823202
|
});
|
|
@@ -829453,7 +829453,7 @@ function computeFingerprint(messageText, version9) {
|
|
|
829453
829453
|
}
|
|
829454
829454
|
function computeFingerprintFromMessages(messages) {
|
|
829455
829455
|
const firstMessageText = extractFirstMessageText(messages);
|
|
829456
|
-
return computeFingerprint(firstMessageText, "4.2.
|
|
829456
|
+
return computeFingerprint(firstMessageText, "4.2.11");
|
|
829457
829457
|
}
|
|
829458
829458
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
829459
829459
|
var init_fingerprint = () => {};
|
|
@@ -829863,7 +829863,7 @@ function getAnthropicEnvMetadata() {
|
|
|
829863
829863
|
function getBuildAgeMinutes() {
|
|
829864
829864
|
if (false)
|
|
829865
829865
|
;
|
|
829866
|
-
const buildTime = new Date("2026-07-
|
|
829866
|
+
const buildTime = new Date("2026-07-07T12:05:30.845Z").getTime();
|
|
829867
829867
|
if (isNaN(buildTime))
|
|
829868
829868
|
return;
|
|
829869
829869
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -835214,7 +835214,7 @@ async function sideQuery(opts) {
|
|
|
835214
835214
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
835215
835215
|
}
|
|
835216
835216
|
const messageText = extractFirstUserMessageText(messages);
|
|
835217
|
-
const fingerprint = computeFingerprint(messageText, "4.2.
|
|
835217
|
+
const fingerprint = computeFingerprint(messageText, "4.2.11");
|
|
835218
835218
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
835219
835219
|
const systemBlocks = [
|
|
835220
835220
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -838589,7 +838589,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
838589
838589
|
slash_commands: inputs.commands.filter((c7) => c7.userInvocable !== false).map((c7) => c7.name),
|
|
838590
838590
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
838591
838591
|
betas: getSdkBetas(),
|
|
838592
|
-
claude_code_version: "4.2.
|
|
838592
|
+
claude_code_version: "4.2.11",
|
|
838593
838593
|
output_style: outputStyle2,
|
|
838594
838594
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
838595
838595
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -840289,8 +840289,9 @@ function markdownEscape(text2) {
|
|
|
840289
840289
|
}
|
|
840290
840290
|
var IS_ROOT, ALLOW_BYPASS, PERMISSION_MODE_ALIASES, MAX_TITLE_LENGTH = 256;
|
|
840291
840291
|
var init_utils27 = __esm(() => {
|
|
840292
|
+
init_env();
|
|
840292
840293
|
IS_ROOT = typeof process.geteuid === "function" ? process.geteuid() === 0 : typeof process.getuid === "function" ? process.getuid() === 0 : false;
|
|
840293
|
-
ALLOW_BYPASS = !IS_ROOT || !!process.env.IS_SANDBOX;
|
|
840294
|
+
ALLOW_BYPASS = !IS_ROOT || !!process.env.IS_SANDBOX || env4.isWslEnvironment();
|
|
840294
840295
|
PERMISSION_MODE_ALIASES = {
|
|
840295
840296
|
auto: "auto",
|
|
840296
840297
|
default: "default",
|
|
@@ -842131,7 +842132,7 @@ function appendToLog(path51, message2) {
|
|
|
842131
842132
|
cwd: getFsImplementation().cwd(),
|
|
842132
842133
|
userType: process.env.USER_TYPE,
|
|
842133
842134
|
sessionId: getSessionId(),
|
|
842134
|
-
version: "4.2.
|
|
842135
|
+
version: "4.2.11"
|
|
842135
842136
|
};
|
|
842136
842137
|
getLogWriter(path51).write(messageWithTimestamp);
|
|
842137
842138
|
}
|
|
@@ -862933,7 +862934,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
862933
862934
|
project_dir: getOriginalCwd(),
|
|
862934
862935
|
added_dirs: addedDirs
|
|
862935
862936
|
},
|
|
862936
|
-
version: "4.2.
|
|
862937
|
+
version: "4.2.11",
|
|
862937
862938
|
output_style: {
|
|
862938
862939
|
name: outputStyleName
|
|
862939
862940
|
},
|
|
@@ -881488,7 +881489,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
881488
881489
|
} catch {}
|
|
881489
881490
|
const data = {
|
|
881490
881491
|
trigger,
|
|
881491
|
-
version: "4.2.
|
|
881492
|
+
version: "4.2.11",
|
|
881492
881493
|
platform: process.platform,
|
|
881493
881494
|
transcript,
|
|
881494
881495
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -882743,7 +882744,7 @@ function getReleaseType(current2, latest) {
|
|
|
882743
882744
|
return "patch";
|
|
882744
882745
|
}
|
|
882745
882746
|
async function checkNewAutoUpdate(callbacks) {
|
|
882746
|
-
const currentVersion = "4.2.
|
|
882747
|
+
const currentVersion = "4.2.11";
|
|
882747
882748
|
logForDebugging(`[newAutoUpdater] checking, current: ${currentVersion}`);
|
|
882748
882749
|
if (isNewAutoUpdaterDisabled()) {
|
|
882749
882750
|
return { action: "skip", currentVersion, latestVersion: null };
|
|
@@ -893619,7 +893620,7 @@ function WelcomeV2() {
|
|
|
893619
893620
|
dimColor: true,
|
|
893620
893621
|
children: [
|
|
893621
893622
|
"v",
|
|
893622
|
-
"4.2.
|
|
893623
|
+
"4.2.11",
|
|
893623
893624
|
" "
|
|
893624
893625
|
]
|
|
893625
893626
|
})
|
|
@@ -893685,7 +893686,7 @@ function WelcomeV2() {
|
|
|
893685
893686
|
dimColor: true,
|
|
893686
893687
|
children: [
|
|
893687
893688
|
"v",
|
|
893688
|
-
"4.2.
|
|
893689
|
+
"4.2.11",
|
|
893689
893690
|
" "
|
|
893690
893691
|
]
|
|
893691
893692
|
})
|
|
@@ -893787,7 +893788,7 @@ function AppleTerminalWelcomeV2({ theme: theme2, welcomeMessage }) {
|
|
|
893787
893788
|
dimColor: true,
|
|
893788
893789
|
children: [
|
|
893789
893790
|
"v",
|
|
893790
|
-
"4.2.
|
|
893791
|
+
"4.2.11",
|
|
893791
893792
|
" "
|
|
893792
893793
|
]
|
|
893793
893794
|
})
|
|
@@ -893853,7 +893854,7 @@ function AppleTerminalWelcomeV2({ theme: theme2, welcomeMessage }) {
|
|
|
893853
893854
|
dimColor: true,
|
|
893854
893855
|
children: [
|
|
893855
893856
|
"v",
|
|
893856
|
-
"4.2.
|
|
893857
|
+
"4.2.11",
|
|
893857
893858
|
" "
|
|
893858
893859
|
]
|
|
893859
893860
|
})
|
|
@@ -894793,7 +894794,7 @@ function completeOnboarding() {
|
|
|
894793
894794
|
saveGlobalConfig((current2) => ({
|
|
894794
894795
|
...current2,
|
|
894795
894796
|
hasCompletedOnboarding: true,
|
|
894796
|
-
lastOnboardingVersion: "4.2.
|
|
894797
|
+
lastOnboardingVersion: "4.2.11"
|
|
894797
894798
|
}));
|
|
894798
894799
|
}
|
|
894799
894800
|
function showDialog(root6, renderer) {
|
|
@@ -901522,7 +901523,7 @@ To attach: ${source_default.bold(`tmux attach -t ${tmuxSessionName}`)}`));
|
|
|
901522
901523
|
}
|
|
901523
901524
|
}
|
|
901524
901525
|
if (permissionMode === "bypassPermissions" || allowDangerouslySkipPermissions) {
|
|
901525
|
-
if (process.platform !== "win32" && typeof process.getuid === "function" && process.getuid() === 0 && process.env.IS_SANDBOX !== "1" && !isEnvTruthy(process.env.CLAUDE_CODE_BUBBLEWRAP)) {
|
|
901526
|
+
if (process.platform !== "win32" && typeof process.getuid === "function" && process.getuid() === 0 && process.env.IS_SANDBOX !== "1" && !isEnvTruthy(process.env.CLAUDE_CODE_BUBBLEWRAP) && !env4.isWslEnvironment()) {
|
|
901526
901527
|
console.error(`--dangerously-skip-permissions cannot be used with root/sudo privileges for security reasons`);
|
|
901527
901528
|
process.exit(1);
|
|
901528
901529
|
}
|
|
@@ -908623,7 +908624,7 @@ async function startMCPServer(cwd3, debug5, verbose) {
|
|
|
908623
908624
|
setCwd(cwd3);
|
|
908624
908625
|
const server2 = new Server({
|
|
908625
908626
|
name: "claude/tengu",
|
|
908626
|
-
version: "4.2.
|
|
908627
|
+
version: "4.2.11"
|
|
908627
908628
|
}, {
|
|
908628
908629
|
capabilities: {
|
|
908629
908630
|
tools: {}
|
|
@@ -910902,7 +910903,7 @@ function createHealthRoutes(sessionManager) {
|
|
|
910902
910903
|
const uptime2 = process.uptime() * 1000;
|
|
910903
910904
|
return c7.json({
|
|
910904
910905
|
status: "ok",
|
|
910905
|
-
version: "4.2.
|
|
910906
|
+
version: "4.2.11",
|
|
910906
910907
|
uptime_ms: Math.round(uptime2),
|
|
910907
910908
|
active_sessions: sessionManager.getActiveCount()
|
|
910908
910909
|
});
|
|
@@ -911172,7 +911173,7 @@ function getMacroDefines() {
|
|
|
911172
911173
|
commit = execSync3("git rev-parse --short HEAD", { encoding: "utf-8", cwd: __dirname }).trim();
|
|
911173
911174
|
} catch {}
|
|
911174
911175
|
return {
|
|
911175
|
-
"MACRO.VERSION": JSON.stringify("4.2.
|
|
911176
|
+
"MACRO.VERSION": JSON.stringify("4.2.11"),
|
|
911176
911177
|
"MACRO.BUILD_TIME": JSON.stringify(new Date().toISOString()),
|
|
911177
911178
|
"MACRO.COMMIT": JSON.stringify(commit),
|
|
911178
911179
|
"MACRO.FEEDBACK_CHANNEL": JSON.stringify(""),
|
|
@@ -917790,7 +917791,7 @@ __export(exports_update, {
|
|
|
917790
917791
|
});
|
|
917791
917792
|
async function update() {
|
|
917792
917793
|
logEvent("tengu_update_check", {});
|
|
917793
|
-
writeToStdout(`${t("cli.update.currentVersion", "Current version")}: ${"4.2.
|
|
917794
|
+
writeToStdout(`${t("cli.update.currentVersion", "Current version")}: ${"4.2.11"}
|
|
917794
917795
|
`);
|
|
917795
917796
|
const channel5 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
917796
917797
|
writeToStdout(`${t("cli.update.checkingUpdates", { channel: channel5 }, "Checking for updates to {channel} version...")}
|
|
@@ -917865,8 +917866,8 @@ async function update() {
|
|
|
917865
917866
|
writeToStdout(`${t("cli.update.managedByHomebrew", "CoStrict is managed by Homebrew.")}
|
|
917866
917867
|
`);
|
|
917867
917868
|
const latest = await getLatestVersion(channel5);
|
|
917868
|
-
if (latest && !gte2("4.2.
|
|
917869
|
-
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.
|
|
917869
|
+
if (latest && !gte2("4.2.11", latest)) {
|
|
917870
|
+
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.11", latest }, "Update available: {current} \u2192 {latest}")}
|
|
917870
917871
|
`);
|
|
917871
917872
|
writeToStdout(`
|
|
917872
917873
|
`);
|
|
@@ -917882,8 +917883,8 @@ async function update() {
|
|
|
917882
917883
|
writeToStdout(`${t("cli.update.managedByWinget", "CoStrict is managed by winget.")}
|
|
917883
917884
|
`);
|
|
917884
917885
|
const latest = await getLatestVersion(channel5);
|
|
917885
|
-
if (latest && !gte2("4.2.
|
|
917886
|
-
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.
|
|
917886
|
+
if (latest && !gte2("4.2.11", latest)) {
|
|
917887
|
+
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.11", latest }, "Update available: {current} \u2192 {latest}")}
|
|
917887
917888
|
`);
|
|
917888
917889
|
writeToStdout(`
|
|
917889
917890
|
`);
|
|
@@ -917899,8 +917900,8 @@ async function update() {
|
|
|
917899
917900
|
writeToStdout(`${t("cli.update.managedByApk", "CoStrict is managed by apk.")}
|
|
917900
917901
|
`);
|
|
917901
917902
|
const latest = await getLatestVersion(channel5);
|
|
917902
|
-
if (latest && !gte2("4.2.
|
|
917903
|
-
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.
|
|
917903
|
+
if (latest && !gte2("4.2.11", latest)) {
|
|
917904
|
+
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.11", latest }, "Update available: {current} \u2192 {latest}")}
|
|
917904
917905
|
`);
|
|
917905
917906
|
writeToStdout(`
|
|
917906
917907
|
`);
|
|
@@ -917965,11 +917966,11 @@ async function update() {
|
|
|
917965
917966
|
`);
|
|
917966
917967
|
await gracefulShutdown(1);
|
|
917967
917968
|
}
|
|
917968
|
-
if (result2.latestVersion === "4.2.
|
|
917969
|
-
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.
|
|
917969
|
+
if (result2.latestVersion === "4.2.11") {
|
|
917970
|
+
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.11" }, "CoStrict is up to date ({version})")) + `
|
|
917970
917971
|
`);
|
|
917971
917972
|
} else {
|
|
917972
|
-
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.
|
|
917973
|
+
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.11", to: String(result2.latestVersion) }, "Successfully updated from {from} to version {to}")) + `
|
|
917973
917974
|
`);
|
|
917974
917975
|
regenerateCompletionCache();
|
|
917975
917976
|
}
|
|
@@ -918029,12 +918030,12 @@ async function update() {
|
|
|
918029
918030
|
`);
|
|
918030
918031
|
await gracefulShutdown(1);
|
|
918031
918032
|
}
|
|
918032
|
-
if (latestVersion === "4.2.
|
|
918033
|
-
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.
|
|
918033
|
+
if (latestVersion === "4.2.11") {
|
|
918034
|
+
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.11" }, "CoStrict is up to date ({version})")) + `
|
|
918034
918035
|
`);
|
|
918035
918036
|
await gracefulShutdown(0);
|
|
918036
918037
|
}
|
|
918037
|
-
writeToStdout(`${t("cli.update.newVersionAvailable", { latest: String(latestVersion), current: "4.2.
|
|
918038
|
+
writeToStdout(`${t("cli.update.newVersionAvailable", { latest: String(latestVersion), current: "4.2.11" }, "New version available: {latest} (current: {current})")}
|
|
918038
918039
|
`);
|
|
918039
918040
|
writeToStdout(`${t("cli.update.installing", "Installing update...")}
|
|
918040
918041
|
`);
|
|
@@ -918079,7 +918080,7 @@ async function update() {
|
|
|
918079
918080
|
logForDebugging(`update: Installation status: ${result.status}`);
|
|
918080
918081
|
switch (result.status) {
|
|
918081
918082
|
case "success":
|
|
918082
|
-
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.
|
|
918083
|
+
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.11", to: String(latestVersion) }, "Successfully updated from {from} to version {to}")) + `
|
|
918083
918084
|
`);
|
|
918084
918085
|
regenerateCompletionCache();
|
|
918085
918086
|
break;
|
|
@@ -920299,7 +920300,7 @@ ${assistantAddendum}` : assistantAddendum;
|
|
|
920299
920300
|
}
|
|
920300
920301
|
}
|
|
920301
920302
|
logForDiagnosticsNoPII("info", "started", {
|
|
920302
|
-
version: "4.2.
|
|
920303
|
+
version: "4.2.11",
|
|
920303
920304
|
is_native_binary: isInBundledMode()
|
|
920304
920305
|
});
|
|
920305
920306
|
registerCleanup(async () => {
|
|
@@ -920780,7 +920781,7 @@ Session: ${directConnectConfig.sessionId}`, "info");
|
|
|
920780
920781
|
sshSession = await createSSHSession2({
|
|
920781
920782
|
host: _pendingSSH.host,
|
|
920782
920783
|
cwd: _pendingSSH.cwd,
|
|
920783
|
-
localVersion: "4.2.
|
|
920784
|
+
localVersion: "4.2.11",
|
|
920784
920785
|
permissionMode: _pendingSSH.permissionMode,
|
|
920785
920786
|
dangerouslySkipPermissions: _pendingSSH.dangerouslySkipPermissions,
|
|
920786
920787
|
extraCliArgs: _pendingSSH.extraCliArgs,
|
|
@@ -921252,7 +921253,7 @@ Usage: csc --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
921252
921253
|
pendingHookMessages
|
|
921253
921254
|
}, renderAndRun);
|
|
921254
921255
|
}
|
|
921255
|
-
}).version("4.2.
|
|
921256
|
+
}).version("4.2.11 (CoStrict)", "-v, --version", cliDesc("cli.option.version", "Output the version number"));
|
|
921256
921257
|
program2.addOption(new Option("-w, --worktree [name]", cliDesc("cli.option.worktree", "Create a new git worktree for this session (optionally specify a name)")).hideHelp());
|
|
921257
921258
|
program2.addOption(new Option("--tmux", cliDesc("cli.option.tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.")).hideHelp());
|
|
921258
921259
|
if (canUserConfigureAdvisor()) {
|
|
@@ -921967,10 +921968,10 @@ if (process.env.CLAUDE_CODE_REMOTE === "true") {
|
|
|
921967
921968
|
async function main2() {
|
|
921968
921969
|
const args = process.argv.slice(2);
|
|
921969
921970
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
921970
|
-
const d4 = new Date("2026-07-
|
|
921971
|
+
const d4 = new Date("2026-07-07T12:05:30.845Z");
|
|
921971
921972
|
const p2 = (n3) => String(n3).padStart(2, "0");
|
|
921972
921973
|
const buildTime = `${d4.getFullYear()}/${p2(d4.getMonth() + 1)}/${p2(d4.getDate())} ${p2(d4.getHours())}:${p2(d4.getMinutes())}:${p2(d4.getSeconds())}`;
|
|
921973
|
-
console.log(`${"4.2.
|
|
921974
|
+
console.log(`${"4.2.11"} (commit: ${"4ec933f1c"}, built: ${buildTime})`);
|
|
921974
921975
|
return;
|
|
921975
921976
|
}
|
|
921976
921977
|
const { terminateBatchWorker: terminateBatchWorker2 } = await Promise.resolve().then(() => (init_spawn(), exports_spawn));
|
|
@@ -922117,5 +922118,5 @@ async function main2() {
|
|
|
922117
922118
|
}
|
|
922118
922119
|
main2();
|
|
922119
922120
|
|
|
922120
|
-
//# debugId=
|
|
922121
|
+
//# debugId=239E6DC72CE998B964756E2164756E21
|
|
922121
922122
|
//# sourceMappingURL=cli.js.map
|
|
@@ -470,8 +470,8 @@ function getClientVersion() {
|
|
|
470
470
|
if (cached)
|
|
471
471
|
return cached;
|
|
472
472
|
try {
|
|
473
|
-
if ("4.2.
|
|
474
|
-
cached = "4.2.
|
|
473
|
+
if ("4.2.11") {
|
|
474
|
+
cached = "4.2.11";
|
|
475
475
|
return cached;
|
|
476
476
|
}
|
|
477
477
|
} catch {}
|
|
@@ -2796,5 +2796,5 @@ export {
|
|
|
2796
2796
|
startBatchWorker
|
|
2797
2797
|
};
|
|
2798
2798
|
|
|
2799
|
-
//# debugId=
|
|
2799
|
+
//# debugId=59CFF5580144BF4864756E2164756E21
|
|
2800
2800
|
//# sourceMappingURL=batchWorker.js.map
|