ur-agent 1.78.2 → 1.78.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.78.3
|
|
4
|
+
|
|
5
|
+
- A `config set` no longer runs in a parallel batch. Writing a setting is a
|
|
6
|
+
read-modify-write against the settings file: the value is merged into what is
|
|
7
|
+
on disk and the result written back. Two writes in the same batch both read
|
|
8
|
+
the pre-write state, so the second silently discarded the first. Reads have
|
|
9
|
+
no such hazard and still batch.
|
|
10
|
+
- A notebook edit is reported to the editor like every other file change, so it
|
|
11
|
+
appears in the inline diff view. It was the one kind of edit that never did.
|
|
12
|
+
|
|
3
13
|
## 1.78.2
|
|
4
14
|
|
|
5
15
|
- `describeQuestionPayloadProblems` returns only problems again. A description
|
package/dist/cli.js
CHANGED
|
@@ -89258,6 +89258,7 @@ __export(exports_ollama, {
|
|
|
89258
89258
|
mergeToolCalls: () => mergeToolCalls,
|
|
89259
89259
|
isOllamaCloudModel: () => isOllamaCloudModel2,
|
|
89260
89260
|
getOllamaRequestTimeoutMs: () => getOllamaRequestTimeoutMs,
|
|
89261
|
+
getOllamaHeaderTimeoutMs: () => getOllamaHeaderTimeoutMs,
|
|
89261
89262
|
getEffectiveOllamaBaseUrl: () => getEffectiveOllamaBaseUrl,
|
|
89262
89263
|
createOllamaURHQClient: () => createOllamaURHQClient,
|
|
89263
89264
|
consumePendingProviderNotice: () => consumePendingProviderNotice,
|
|
@@ -89322,7 +89323,7 @@ async function createNonStreamingRequest(params, options, baseUrl = getEffective
|
|
|
89322
89323
|
return ollamaResponseToURHQMessage(json2, params, textToolFallbackAllowed);
|
|
89323
89324
|
}
|
|
89324
89325
|
async function fetchOllamaChat(params, stream4, controller, options, baseUrl = getEffectiveOllamaBaseUrl()) {
|
|
89325
|
-
const timeout =
|
|
89326
|
+
const timeout = getOllamaHeaderTimeoutMs(options, process.env, params.model);
|
|
89326
89327
|
const timeoutId = timeout > 0 ? setTimeout(() => controller.abort(), timeout) : undefined;
|
|
89327
89328
|
try {
|
|
89328
89329
|
const capabilities = await getOllamaModelCapabilities(params.model, baseUrl, controller.signal);
|
|
@@ -89399,6 +89400,15 @@ function createLinkedAbortController(options) {
|
|
|
89399
89400
|
signal.addEventListener("abort", () => controller.abort(), { once: true });
|
|
89400
89401
|
return controller;
|
|
89401
89402
|
}
|
|
89403
|
+
function getOllamaHeaderTimeoutMs(options, env4 = process.env, model) {
|
|
89404
|
+
if (options?.timeoutMs !== undefined || options?.timeout !== undefined) {
|
|
89405
|
+
return getOllamaRequestTimeoutMs(options, env4, model);
|
|
89406
|
+
}
|
|
89407
|
+
const override = parseInt(env4.API_TIMEOUT_MS || "", 10);
|
|
89408
|
+
if (override > 0)
|
|
89409
|
+
return override;
|
|
89410
|
+
return Math.max(OLLAMA_HEADER_TIMEOUT_MS, getOllamaRequestTimeoutMs(options, env4, model));
|
|
89411
|
+
}
|
|
89402
89412
|
function getOllamaRequestTimeoutMs(options, env4 = process.env, model) {
|
|
89403
89413
|
if (options?.timeoutMs !== undefined || options?.timeout !== undefined) {
|
|
89404
89414
|
return options.timeoutMs ?? options.timeout ?? DEFAULT_OLLAMA_REQUEST_TIMEOUT_MS;
|
|
@@ -90352,7 +90362,7 @@ function parseToolInput(input) {
|
|
|
90352
90362
|
}
|
|
90353
90363
|
return normalized;
|
|
90354
90364
|
}
|
|
90355
|
-
var DEFAULT_OLLAMA_REQUEST_TIMEOUT_MS = 300000, REMOTE_OLLAMA_REQUEST_TIMEOUT_MS = 120000, CLOUD_OLLAMA_REQUEST_TIMEOUT_MS = 120000, OLLAMA_GATEWAY_TIMEOUT_MESSAGE = "Ollama gateway timed out while waiting for the model to respond. Check the selected Ollama endpoint or increase API_TIMEOUT_MS if the model needs more time.", ollamaModelCapabilitiesCache, warnedToolsUnsupportedModels, TEXT_TOOL_CALL_HINT, pendingProviderNotice = null, LEVELED_THINK_MODEL_RE;
|
|
90365
|
+
var DEFAULT_OLLAMA_REQUEST_TIMEOUT_MS = 300000, OLLAMA_HEADER_TIMEOUT_MS = 900000, REMOTE_OLLAMA_REQUEST_TIMEOUT_MS = 120000, CLOUD_OLLAMA_REQUEST_TIMEOUT_MS = 120000, OLLAMA_GATEWAY_TIMEOUT_MESSAGE = "Ollama gateway timed out while waiting for the model to respond. Check the selected Ollama endpoint or increase API_TIMEOUT_MS if the model needs more time.", ollamaModelCapabilitiesCache, warnedToolsUnsupportedModels, TEXT_TOOL_CALL_HINT, pendingProviderNotice = null, LEVELED_THINK_MODEL_RE;
|
|
90356
90366
|
var init_ollama = __esm(() => {
|
|
90357
90367
|
init_urhq_sdk();
|
|
90358
90368
|
init_ollamaModels();
|
|
@@ -107580,7 +107590,7 @@ var init_auth = __esm(() => {
|
|
|
107580
107590
|
|
|
107581
107591
|
// src/utils/userAgent.ts
|
|
107582
107592
|
function getURCodeUserAgent() {
|
|
107583
|
-
return `ur/${"1.78.
|
|
107593
|
+
return `ur/${"1.78.3"}`;
|
|
107584
107594
|
}
|
|
107585
107595
|
|
|
107586
107596
|
// src/utils/workloadContext.ts
|
|
@@ -107602,7 +107612,7 @@ function getUserAgent() {
|
|
|
107602
107612
|
const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
|
|
107603
107613
|
const workload = getWorkload();
|
|
107604
107614
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
107605
|
-
return `ur-cli/${"1.78.
|
|
107615
|
+
return `ur-cli/${"1.78.3"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
|
|
107606
107616
|
}
|
|
107607
107617
|
function getMCPUserAgent() {
|
|
107608
107618
|
const parts = [];
|
|
@@ -107616,7 +107626,7 @@ function getMCPUserAgent() {
|
|
|
107616
107626
|
parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
|
|
107617
107627
|
}
|
|
107618
107628
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
107619
|
-
return `ur/${"1.78.
|
|
107629
|
+
return `ur/${"1.78.3"}${suffix}`;
|
|
107620
107630
|
}
|
|
107621
107631
|
function getWebFetchUserAgent() {
|
|
107622
107632
|
return `UR-User (${getURCodeUserAgent()})`;
|
|
@@ -107754,7 +107764,7 @@ var init_user = __esm(() => {
|
|
|
107754
107764
|
deviceId,
|
|
107755
107765
|
sessionId: getSessionId(),
|
|
107756
107766
|
email: getEmail(),
|
|
107757
|
-
appVersion: "1.78.
|
|
107767
|
+
appVersion: "1.78.3",
|
|
107758
107768
|
platform: getHostPlatformForAnalytics(),
|
|
107759
107769
|
organizationUuid,
|
|
107760
107770
|
accountUuid,
|
|
@@ -115641,7 +115651,7 @@ var init_metadata = __esm(() => {
|
|
|
115641
115651
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
115642
115652
|
WHITESPACE_REGEX = /\s+/;
|
|
115643
115653
|
getVersionBase = memoize_default(() => {
|
|
115644
|
-
const match = "1.78.
|
|
115654
|
+
const match = "1.78.3".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
115645
115655
|
return match ? match[0] : undefined;
|
|
115646
115656
|
});
|
|
115647
115657
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -115681,7 +115691,7 @@ var init_metadata = __esm(() => {
|
|
|
115681
115691
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
115682
115692
|
isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
|
|
115683
115693
|
isURAiAuth: isURAISubscriber(),
|
|
115684
|
-
version: "1.78.
|
|
115694
|
+
version: "1.78.3",
|
|
115685
115695
|
versionBase: getVersionBase(),
|
|
115686
115696
|
buildTime: "",
|
|
115687
115697
|
deploymentEnvironment: env2.detectDeploymentEnvironment(),
|
|
@@ -116351,7 +116361,7 @@ function initialize1PEventLogging() {
|
|
|
116351
116361
|
const platform2 = getPlatform();
|
|
116352
116362
|
const attributes = {
|
|
116353
116363
|
[import_semantic_conventions4.ATTR_SERVICE_NAME]: "ur",
|
|
116354
|
-
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.78.
|
|
116364
|
+
[import_semantic_conventions4.ATTR_SERVICE_VERSION]: "1.78.3"
|
|
116355
116365
|
};
|
|
116356
116366
|
if (platform2 === "wsl") {
|
|
116357
116367
|
const wslVersion = getWslVersion();
|
|
@@ -116379,7 +116389,7 @@ function initialize1PEventLogging() {
|
|
|
116379
116389
|
})
|
|
116380
116390
|
]
|
|
116381
116391
|
});
|
|
116382
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.78.
|
|
116392
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.78.3");
|
|
116383
116393
|
}
|
|
116384
116394
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
116385
116395
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -126161,7 +126171,7 @@ function formatAgentTrendReport(report = buildAgentTrendReport()) {
|
|
|
126161
126171
|
function formatA2AAgentCard(options = {}, pretty = true) {
|
|
126162
126172
|
return JSON.stringify(buildA2AAgentCard(options), null, pretty ? 2 : 0);
|
|
126163
126173
|
}
|
|
126164
|
-
var urVersion = "1.78.
|
|
126174
|
+
var urVersion = "1.78.3", researchSnapshotDate = "2026-07-15", coverage, priorityRoadmap;
|
|
126165
126175
|
var init_trends = __esm(() => {
|
|
126166
126176
|
init_a2aCardSignature();
|
|
126167
126177
|
coverage = [
|
|
@@ -128964,7 +128974,7 @@ function getAttributionHeader(fingerprint) {
|
|
|
128964
128974
|
if (!isAttributionHeaderEnabled()) {
|
|
128965
128975
|
return "";
|
|
128966
128976
|
}
|
|
128967
|
-
const version2 = `${"1.78.
|
|
128977
|
+
const version2 = `${"1.78.3"}.${fingerprint}`;
|
|
128968
128978
|
const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
|
|
128969
128979
|
const cch = "";
|
|
128970
128980
|
const workload = getWorkload();
|
|
@@ -156968,7 +156978,7 @@ var init_projectSafety = __esm(() => {
|
|
|
156968
156978
|
function getInstruments() {
|
|
156969
156979
|
if (instruments)
|
|
156970
156980
|
return instruments;
|
|
156971
|
-
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.78.
|
|
156981
|
+
const meter = import_api10.metrics.getMeter("ur-agent.gen_ai", "1.78.3");
|
|
156972
156982
|
instruments = {
|
|
156973
156983
|
operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
|
|
156974
156984
|
description: "GenAI operation duration.",
|
|
@@ -157066,7 +157076,7 @@ function genAiAgentAttributes() {
|
|
|
157066
157076
|
"gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
|
|
157067
157077
|
"gen_ai.provider.name": "ur",
|
|
157068
157078
|
"gen_ai.agent.name": "UR-Nexus",
|
|
157069
|
-
"gen_ai.agent.version": "1.78.
|
|
157079
|
+
"gen_ai.agent.version": "1.78.3"
|
|
157070
157080
|
};
|
|
157071
157081
|
}
|
|
157072
157082
|
function genAiWorkflowAttributes(workflowName) {
|
|
@@ -157082,7 +157092,7 @@ function genAiWorkflowAttributes(workflowName) {
|
|
|
157082
157092
|
function startGenAiWorkflowSpan(workflowName) {
|
|
157083
157093
|
const attributes = genAiWorkflowAttributes(workflowName);
|
|
157084
157094
|
const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
|
|
157085
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.
|
|
157095
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.3").startSpan(name, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
157086
157096
|
}
|
|
157087
157097
|
function endGenAiWorkflowSpan(span, options2 = {}) {
|
|
157088
157098
|
try {
|
|
@@ -157120,7 +157130,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
|
|
|
157120
157130
|
if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
|
|
157121
157131
|
attributes["gen_ai.memory.record.count"] = options2.recordCount;
|
|
157122
157132
|
}
|
|
157123
|
-
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.
|
|
157133
|
+
return import_api10.trace.getTracer("ur-agent.gen_ai", "1.78.3").startSpan(operation, { kind: import_api10.SpanKind.INTERNAL, attributes });
|
|
157124
157134
|
}
|
|
157125
157135
|
function endGenAiMemorySpan(span, options2 = {}) {
|
|
157126
157136
|
try {
|
|
@@ -159476,7 +159486,11 @@ async function createTask(taskListId, taskData) {
|
|
|
159476
159486
|
throw new Error("Task ID space is exhausted");
|
|
159477
159487
|
}
|
|
159478
159488
|
const id = String(highestId + 1);
|
|
159479
|
-
const
|
|
159489
|
+
const awaiting = (await listTasks(taskListId)).filter((existing2) => existing2.blockedBy.includes(id));
|
|
159490
|
+
const blocks = [
|
|
159491
|
+
...new Set([...taskData.blocks ?? [], ...awaiting.map((t) => t.id)])
|
|
159492
|
+
];
|
|
159493
|
+
const task = { id, ...taskData, blocks };
|
|
159480
159494
|
await writeTaskSnapshotUnsafe(taskListId, task);
|
|
159481
159495
|
notifyTasksUpdated();
|
|
159482
159496
|
return id;
|
|
@@ -159724,9 +159738,12 @@ function validateTaskDependencyInSnapshot(tasks, fromTaskId, toTaskId) {
|
|
|
159724
159738
|
const byId = new Map(tasks.map((task) => [task.id, task]));
|
|
159725
159739
|
const fromTask = byId.get(fromTaskId);
|
|
159726
159740
|
const toTask = byId.get(toTaskId);
|
|
159727
|
-
if (!fromTask
|
|
159741
|
+
if (!fromTask) {
|
|
159728
159742
|
return { valid: false, reason: "task_not_found" };
|
|
159729
159743
|
}
|
|
159744
|
+
if (!toTask) {
|
|
159745
|
+
return { valid: true };
|
|
159746
|
+
}
|
|
159730
159747
|
if (fromTask.blocks.includes(toTaskId)) {
|
|
159731
159748
|
return { valid: true };
|
|
159732
159749
|
}
|
|
@@ -250768,7 +250785,7 @@ function getTelemetryAttributes() {
|
|
|
250768
250785
|
attributes["session.id"] = sessionId;
|
|
250769
250786
|
}
|
|
250770
250787
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
250771
|
-
attributes["app.version"] = "1.78.
|
|
250788
|
+
attributes["app.version"] = "1.78.3";
|
|
250772
250789
|
}
|
|
250773
250790
|
const oauthAccount = getOauthAccountInfo();
|
|
250774
250791
|
if (oauthAccount) {
|
|
@@ -297275,7 +297292,7 @@ function getInstallationEnv() {
|
|
|
297275
297292
|
return;
|
|
297276
297293
|
}
|
|
297277
297294
|
function getURCodeVersion() {
|
|
297278
|
-
return "1.78.
|
|
297295
|
+
return "1.78.3";
|
|
297279
297296
|
}
|
|
297280
297297
|
async function getInstalledVSCodeExtensionVersion(command) {
|
|
297281
297298
|
const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
|
|
@@ -304606,7 +304623,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
304606
304623
|
const client2 = new Client({
|
|
304607
304624
|
name: "ur",
|
|
304608
304625
|
title: "UR",
|
|
304609
|
-
version: "1.78.
|
|
304626
|
+
version: "1.78.3",
|
|
304610
304627
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
304611
304628
|
websiteUrl: PRODUCT_URL
|
|
304612
304629
|
}, {
|
|
@@ -304966,7 +304983,7 @@ var init_client5 = __esm(() => {
|
|
|
304966
304983
|
const client2 = new Client({
|
|
304967
304984
|
name: "ur",
|
|
304968
304985
|
title: "UR",
|
|
304969
|
-
version: "1.78.
|
|
304986
|
+
version: "1.78.3",
|
|
304970
304987
|
description: "UR-Nexus autonomous engineering workflow engine",
|
|
304971
304988
|
websiteUrl: PRODUCT_URL
|
|
304972
304989
|
}, {
|
|
@@ -317575,7 +317592,7 @@ async function createRuntime() {
|
|
|
317575
317592
|
bootstrapTelemetry();
|
|
317576
317593
|
const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
|
|
317577
317594
|
[import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur-agent",
|
|
317578
|
-
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.78.
|
|
317595
|
+
[import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.78.3"
|
|
317579
317596
|
}));
|
|
317580
317597
|
const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
|
|
317581
317598
|
resource,
|
|
@@ -317608,11 +317625,11 @@ async function createRuntime() {
|
|
|
317608
317625
|
setMeterProvider(meterProvider);
|
|
317609
317626
|
setLoggerProvider(loggerProvider);
|
|
317610
317627
|
if (meterProvider) {
|
|
317611
|
-
const meter = meterProvider.getMeter("ur-agent", "1.78.
|
|
317628
|
+
const meter = meterProvider.getMeter("ur-agent", "1.78.3");
|
|
317612
317629
|
setMeter(meter, (name, options2) => meter.createCounter(name, options2));
|
|
317613
317630
|
}
|
|
317614
317631
|
if (loggerProvider) {
|
|
317615
|
-
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.78.
|
|
317632
|
+
setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.78.3"));
|
|
317616
317633
|
}
|
|
317617
317634
|
if (!cleanupRegistered2) {
|
|
317618
317635
|
cleanupRegistered2 = true;
|
|
@@ -318274,9 +318291,9 @@ async function assertMinVersion() {
|
|
|
318274
318291
|
if (false) {}
|
|
318275
318292
|
try {
|
|
318276
318293
|
const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
|
|
318277
|
-
if (versionConfig.minVersion && lt("1.78.
|
|
318294
|
+
if (versionConfig.minVersion && lt("1.78.3", versionConfig.minVersion)) {
|
|
318278
318295
|
console.error(`
|
|
318279
|
-
It looks like your version of UR (${"1.78.
|
|
318296
|
+
It looks like your version of UR (${"1.78.3"}) needs an update.
|
|
318280
318297
|
A newer version (${versionConfig.minVersion} or higher) is required to continue.
|
|
318281
318298
|
|
|
318282
318299
|
To update, please run:
|
|
@@ -318492,7 +318509,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
318492
318509
|
logError2(new AutoUpdaterError("Another process is currently installing an update"));
|
|
318493
318510
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
318494
318511
|
pid: process.pid,
|
|
318495
|
-
currentVersion: "1.78.
|
|
318512
|
+
currentVersion: "1.78.3"
|
|
318496
318513
|
});
|
|
318497
318514
|
return "in_progress";
|
|
318498
318515
|
}
|
|
@@ -318501,7 +318518,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
318501
318518
|
if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
|
|
318502
318519
|
logError2(new Error("Windows NPM detected in WSL environment"));
|
|
318503
318520
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
318504
|
-
currentVersion: "1.78.
|
|
318521
|
+
currentVersion: "1.78.3"
|
|
318505
318522
|
});
|
|
318506
318523
|
console.error(`
|
|
318507
318524
|
Error: Windows NPM detected in WSL
|
|
@@ -319036,7 +319053,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
319036
319053
|
}
|
|
319037
319054
|
async function getDoctorDiagnostic() {
|
|
319038
319055
|
const installationType = await getCurrentInstallationType();
|
|
319039
|
-
const version2 = typeof MACRO !== "undefined" ? "1.78.
|
|
319056
|
+
const version2 = typeof MACRO !== "undefined" ? "1.78.3" : "unknown";
|
|
319040
319057
|
const installationPath = await getInstallationPath();
|
|
319041
319058
|
const invokedBinary = getInvokedBinary();
|
|
319042
319059
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -319971,8 +319988,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
319971
319988
|
const maxVersion = await getMaxVersion();
|
|
319972
319989
|
if (maxVersion && gt(version2, maxVersion)) {
|
|
319973
319990
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
|
|
319974
|
-
if (gte("1.78.
|
|
319975
|
-
logForDebugging(`Native installer: current version ${"1.78.
|
|
319991
|
+
if (gte("1.78.3", maxVersion)) {
|
|
319992
|
+
logForDebugging(`Native installer: current version ${"1.78.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
319976
319993
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
319977
319994
|
latency_ms: Date.now() - startTime,
|
|
319978
319995
|
max_version: maxVersion,
|
|
@@ -319983,7 +320000,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
319983
320000
|
version2 = maxVersion;
|
|
319984
320001
|
}
|
|
319985
320002
|
}
|
|
319986
|
-
if (!forceReinstall && version2 === "1.78.
|
|
320003
|
+
if (!forceReinstall && version2 === "1.78.3" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
|
|
319987
320004
|
logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
|
|
319988
320005
|
logEvent("tengu_native_update_complete", {
|
|
319989
320006
|
latency_ms: Date.now() - startTime,
|
|
@@ -368553,6 +368570,7 @@ import { extname as extname13, isAbsolute as isAbsolute28, resolve as resolve37
|
|
|
368553
368570
|
var inputSchema16, outputSchema13, NotebookEditTool;
|
|
368554
368571
|
var init_NotebookEditTool = __esm(() => {
|
|
368555
368572
|
init_LSPDiagnosticRegistry();
|
|
368573
|
+
init_vscodeSdkMcp();
|
|
368556
368574
|
init_fileHistory();
|
|
368557
368575
|
init_v4();
|
|
368558
368576
|
init_Tool();
|
|
@@ -368853,6 +368871,7 @@ var init_NotebookEditTool = __esm(() => {
|
|
|
368853
368871
|
const IPYNB_INDENT = 1;
|
|
368854
368872
|
const updatedContent = jsonStringify(notebook, null, IPYNB_INDENT);
|
|
368855
368873
|
writeTextContent(fullPath, updatedContent, encoding, lineEndings);
|
|
368874
|
+
notifyVscodeFileUpdated(fullPath, content, updatedContent);
|
|
368856
368875
|
clearDeliveredDiagnosticsForFile(`file://${fullPath}`);
|
|
368857
368876
|
readFileState.set(fullPath, {
|
|
368858
368877
|
content: updatedContent,
|
|
@@ -379108,8 +379127,8 @@ var init_ConfigTool = __esm(() => {
|
|
|
379108
379127
|
return "Config";
|
|
379109
379128
|
},
|
|
379110
379129
|
shouldDefer: true,
|
|
379111
|
-
isConcurrencySafe() {
|
|
379112
|
-
return
|
|
379130
|
+
isConcurrencySafe(input) {
|
|
379131
|
+
return input.value === undefined;
|
|
379113
379132
|
},
|
|
379114
379133
|
isReadOnly(input) {
|
|
379115
379134
|
return input.value === undefined;
|
|
@@ -389702,7 +389721,7 @@ function isAnyTracingEnabled() {
|
|
|
389702
389721
|
return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
|
|
389703
389722
|
}
|
|
389704
389723
|
function getTracer() {
|
|
389705
|
-
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.78.
|
|
389724
|
+
return import_api39.trace.getTracer("ur-agent.gen_ai", "1.78.3");
|
|
389706
389725
|
}
|
|
389707
389726
|
function createSpanAttributes(spanType, customAttributes = {}) {
|
|
389708
389727
|
const baseAttributes = getTelemetryAttributes();
|
|
@@ -419928,7 +419947,7 @@ function Feedback({
|
|
|
419928
419947
|
platform: env2.platform,
|
|
419929
419948
|
gitRepo: envInfo.isGit,
|
|
419930
419949
|
terminal: env2.terminal,
|
|
419931
|
-
version: "1.78.
|
|
419950
|
+
version: "1.78.3",
|
|
419932
419951
|
transcript: normalizeMessagesForAPI(messages),
|
|
419933
419952
|
errors: sanitizedErrors,
|
|
419934
419953
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -420120,7 +420139,7 @@ function Feedback({
|
|
|
420120
420139
|
", ",
|
|
420121
420140
|
env2.terminal,
|
|
420122
420141
|
", v",
|
|
420123
|
-
"1.78.
|
|
420142
|
+
"1.78.3"
|
|
420124
420143
|
]
|
|
420125
420144
|
}, undefined, true, undefined, this)
|
|
420126
420145
|
]
|
|
@@ -420226,7 +420245,7 @@ ${sanitizedDescription}
|
|
|
420226
420245
|
` + `**Environment Info**
|
|
420227
420246
|
` + `- Platform: ${env2.platform}
|
|
420228
420247
|
` + `- Terminal: ${env2.terminal}
|
|
420229
|
-
` + `- Version: ${"1.78.
|
|
420248
|
+
` + `- Version: ${"1.78.3"}
|
|
420230
420249
|
` + `- Feedback ID: ${feedbackId}
|
|
420231
420250
|
` + `
|
|
420232
420251
|
**Errors**
|
|
@@ -423336,7 +423355,7 @@ function buildPrimarySection() {
|
|
|
423336
423355
|
}, undefined, false, undefined, this);
|
|
423337
423356
|
return [{
|
|
423338
423357
|
label: "Version",
|
|
423339
|
-
value: "1.78.
|
|
423358
|
+
value: "1.78.3"
|
|
423340
423359
|
}, {
|
|
423341
423360
|
label: "Session name",
|
|
423342
423361
|
value: nameValue
|
|
@@ -426718,7 +426737,7 @@ function Config({
|
|
|
426718
426737
|
}
|
|
426719
426738
|
}, undefined, false, undefined, this)
|
|
426720
426739
|
}, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime179.jsxDEV(ChannelDowngradeDialog, {
|
|
426721
|
-
currentVersion: "1.78.
|
|
426740
|
+
currentVersion: "1.78.3",
|
|
426722
426741
|
onChoice: (choice) => {
|
|
426723
426742
|
setShowSubmenu(null);
|
|
426724
426743
|
setTabsHidden(false);
|
|
@@ -426730,7 +426749,7 @@ function Config({
|
|
|
426730
426749
|
autoUpdatesChannel: "stable"
|
|
426731
426750
|
};
|
|
426732
426751
|
if (choice === "stay") {
|
|
426733
|
-
newSettings.minimumVersion = "1.78.
|
|
426752
|
+
newSettings.minimumVersion = "1.78.3";
|
|
426734
426753
|
}
|
|
426735
426754
|
updateSettingsForSource("userSettings", newSettings);
|
|
426736
426755
|
setSettingsData((prev_27) => ({
|
|
@@ -434794,7 +434813,7 @@ function HelpV2(t0) {
|
|
|
434794
434813
|
let t6;
|
|
434795
434814
|
if ($2[31] !== tabs) {
|
|
434796
434815
|
t6 = /* @__PURE__ */ jsx_dev_runtime206.jsxDEV(Tabs, {
|
|
434797
|
-
title: `UR v${"1.78.
|
|
434816
|
+
title: `UR v${"1.78.3"}`,
|
|
434798
434817
|
color: "professionalBlue",
|
|
434799
434818
|
defaultTab: "general",
|
|
434800
434819
|
children: tabs
|
|
@@ -435727,7 +435746,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
|
|
|
435727
435746
|
async function handleInitialize(options2) {
|
|
435728
435747
|
return {
|
|
435729
435748
|
name: "UR",
|
|
435730
|
-
version: "1.78.
|
|
435749
|
+
version: "1.78.3",
|
|
435731
435750
|
protocolVersion: "0.1.0",
|
|
435732
435751
|
workspaceRoot: options2.cwd,
|
|
435733
435752
|
capabilities: {
|
|
@@ -452835,7 +452854,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
452835
452854
|
return [];
|
|
452836
452855
|
}
|
|
452837
452856
|
}
|
|
452838
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.78.
|
|
452857
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.78.3") {
|
|
452839
452858
|
if (process.env.USER_TYPE === "ant") {
|
|
452840
452859
|
const changelog = "";
|
|
452841
452860
|
if (changelog) {
|
|
@@ -452862,7 +452881,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.78.2")
|
|
|
452862
452881
|
releaseNotes
|
|
452863
452882
|
};
|
|
452864
452883
|
}
|
|
452865
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.78.
|
|
452884
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.78.3") {
|
|
452866
452885
|
if (process.env.USER_TYPE === "ant") {
|
|
452867
452886
|
const changelog = "";
|
|
452868
452887
|
if (changelog) {
|
|
@@ -455728,7 +455747,7 @@ function getRecentActivitySync() {
|
|
|
455728
455747
|
return cachedActivity;
|
|
455729
455748
|
}
|
|
455730
455749
|
function getLogoDisplayData() {
|
|
455731
|
-
const version2 = process.env.DEMO_VERSION ?? "1.78.
|
|
455750
|
+
const version2 = process.env.DEMO_VERSION ?? "1.78.3";
|
|
455732
455751
|
const serverUrl = getDirectConnectServerUrl();
|
|
455733
455752
|
const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
|
|
455734
455753
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -456595,7 +456614,7 @@ function LogoV2() {
|
|
|
456595
456614
|
if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
456596
456615
|
t2 = () => {
|
|
456597
456616
|
const currentConfig2 = getGlobalConfig();
|
|
456598
|
-
if (currentConfig2.lastReleaseNotesSeen === "1.78.
|
|
456617
|
+
if (currentConfig2.lastReleaseNotesSeen === "1.78.3") {
|
|
456599
456618
|
return;
|
|
456600
456619
|
}
|
|
456601
456620
|
saveGlobalConfig(_temp325);
|
|
@@ -457280,12 +457299,12 @@ function LogoV2() {
|
|
|
457280
457299
|
return t41;
|
|
457281
457300
|
}
|
|
457282
457301
|
function _temp325(current) {
|
|
457283
|
-
if (current.lastReleaseNotesSeen === "1.78.
|
|
457302
|
+
if (current.lastReleaseNotesSeen === "1.78.3") {
|
|
457284
457303
|
return current;
|
|
457285
457304
|
}
|
|
457286
457305
|
return {
|
|
457287
457306
|
...current,
|
|
457288
|
-
lastReleaseNotesSeen: "1.78.
|
|
457307
|
+
lastReleaseNotesSeen: "1.78.3"
|
|
457289
457308
|
};
|
|
457290
457309
|
}
|
|
457291
457310
|
function _temp241(s_0) {
|
|
@@ -474099,7 +474118,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
|
|
|
474099
474118
|
if (spec.name !== specName) {
|
|
474100
474119
|
throw new Error("Agentic CI workflow spec name does not match");
|
|
474101
474120
|
}
|
|
474102
|
-
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.78.
|
|
474121
|
+
const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.78.3" : "1.78.3");
|
|
474103
474122
|
if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
|
|
474104
474123
|
throw new Error("invalid ur-agent package version");
|
|
474105
474124
|
}
|
|
@@ -475092,7 +475111,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
|
|
|
475092
475111
|
path: ".github/workflows/ur.yml",
|
|
475093
475112
|
root: "project",
|
|
475094
475113
|
content: compileAgenticCiWorkflow("default", {
|
|
475095
|
-
packageVersion: typeof MACRO !== "undefined" ? "1.78.
|
|
475114
|
+
packageVersion: typeof MACRO !== "undefined" ? "1.78.3" : "1.78.3"
|
|
475096
475115
|
})
|
|
475097
475116
|
},
|
|
475098
475117
|
{
|
|
@@ -475155,7 +475174,7 @@ function value(tokens, flag) {
|
|
|
475155
475174
|
return index2 >= 0 ? tokens[index2 + 1] : undefined;
|
|
475156
475175
|
}
|
|
475157
475176
|
function cliVersion() {
|
|
475158
|
-
return typeof MACRO !== "undefined" ? "1.78.
|
|
475177
|
+
return typeof MACRO !== "undefined" ? "1.78.3" : "1.78.3";
|
|
475159
475178
|
}
|
|
475160
475179
|
function workflowPath(cwd2) {
|
|
475161
475180
|
return join159(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
|
|
@@ -481011,7 +481030,7 @@ function createAcpStdioApp(deps) {
|
|
|
481011
481030
|
}
|
|
481012
481031
|
},
|
|
481013
481032
|
authMethods: [],
|
|
481014
|
-
agentInfo: { name: "UR-Nexus", version: "1.78.
|
|
481033
|
+
agentInfo: { name: "UR-Nexus", version: "1.78.3" }
|
|
481015
481034
|
})).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
|
|
481016
481035
|
const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
|
|
481017
481036
|
await runtime2.announce({
|
|
@@ -481108,7 +481127,7 @@ function createAcpStdioAgent(deps) {
|
|
|
481108
481127
|
}
|
|
481109
481128
|
},
|
|
481110
481129
|
authMethods: [],
|
|
481111
|
-
agentInfo: { name: "UR-Nexus", version: "1.78.
|
|
481130
|
+
agentInfo: { name: "UR-Nexus", version: "1.78.3" }
|
|
481112
481131
|
});
|
|
481113
481132
|
return;
|
|
481114
481133
|
case "authenticate":
|
|
@@ -690568,7 +690587,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
|
|
|
690568
690587
|
smapsRollup,
|
|
690569
690588
|
platform: process.platform,
|
|
690570
690589
|
nodeVersion: process.version,
|
|
690571
|
-
ccVersion: "1.78.
|
|
690590
|
+
ccVersion: "1.78.3"
|
|
690572
690591
|
};
|
|
690573
690592
|
}
|
|
690574
690593
|
async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
|
|
@@ -691148,7 +691167,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
691148
691167
|
var call154 = async () => {
|
|
691149
691168
|
return {
|
|
691150
691169
|
type: "text",
|
|
691151
|
-
value: "1.78.
|
|
691170
|
+
value: "1.78.3"
|
|
691152
691171
|
};
|
|
691153
691172
|
}, version2, version_default;
|
|
691154
691173
|
var init_version = __esm(() => {
|
|
@@ -702415,7 +702434,7 @@ function generateHtmlReport(data, insights) {
|
|
|
702415
702434
|
</html>`;
|
|
702416
702435
|
}
|
|
702417
702436
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
702418
|
-
const version3 = typeof MACRO !== "undefined" ? "1.78.
|
|
702437
|
+
const version3 = typeof MACRO !== "undefined" ? "1.78.3" : "unknown";
|
|
702419
702438
|
const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
|
|
702420
702439
|
const facets_summary = {
|
|
702421
702440
|
total: facets.size,
|
|
@@ -706729,7 +706748,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
706729
706748
|
init_settings2();
|
|
706730
706749
|
init_slowOperations();
|
|
706731
706750
|
init_uuid();
|
|
706732
|
-
VERSION7 = typeof MACRO !== "undefined" ? "1.78.
|
|
706751
|
+
VERSION7 = typeof MACRO !== "undefined" ? "1.78.3" : "unknown";
|
|
706733
706752
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
706734
706753
|
SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
706735
706754
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -707944,7 +707963,7 @@ var init_filesystem = __esm(() => {
|
|
|
707944
707963
|
});
|
|
707945
707964
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
707946
707965
|
const nonce = randomBytes20(16).toString("hex");
|
|
707947
|
-
return join232(getURTempDir(), "bundled-skills", "1.78.
|
|
707966
|
+
return join232(getURTempDir(), "bundled-skills", "1.78.3", nonce);
|
|
707948
707967
|
});
|
|
707949
707968
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
707950
707969
|
});
|
|
@@ -714301,7 +714320,7 @@ function computeFingerprint(messageText2, version3) {
|
|
|
714301
714320
|
}
|
|
714302
714321
|
function computeFingerprintFromMessages(messages) {
|
|
714303
714322
|
const firstMessageText = extractFirstMessageText(messages);
|
|
714304
|
-
return computeFingerprint(firstMessageText, "1.78.
|
|
714323
|
+
return computeFingerprint(firstMessageText, "1.78.3");
|
|
714305
714324
|
}
|
|
714306
714325
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
714307
714326
|
var init_fingerprint = () => {};
|
|
@@ -716223,7 +716242,7 @@ async function sideQuery(opts) {
|
|
|
716223
716242
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
716224
716243
|
}
|
|
716225
716244
|
const messageText2 = extractFirstUserMessageText(messages);
|
|
716226
|
-
const fingerprint2 = computeFingerprint(messageText2, "1.78.
|
|
716245
|
+
const fingerprint2 = computeFingerprint(messageText2, "1.78.3");
|
|
716227
716246
|
const attributionHeader = getAttributionHeader(fingerprint2);
|
|
716228
716247
|
const systemBlocks = [
|
|
716229
716248
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -721060,7 +721079,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
721060
721079
|
slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
|
|
721061
721080
|
apiKeySource: getURHQApiKeyWithSource().source,
|
|
721062
721081
|
betas: getSdkBetas(),
|
|
721063
|
-
ur_version: "1.78.
|
|
721082
|
+
ur_version: "1.78.3",
|
|
721064
721083
|
output_style: outputStyle2,
|
|
721065
721084
|
agents: inputs.agents.map((agent2) => agent2.agentType),
|
|
721066
721085
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
|
|
@@ -734932,7 +734951,7 @@ var init_useVoiceEnabled = __esm(() => {
|
|
|
734932
734951
|
function getSemverPart(version3) {
|
|
734933
734952
|
return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
|
|
734934
734953
|
}
|
|
734935
|
-
function useUpdateNotification(updatedVersion, initialVersion = "1.78.
|
|
734954
|
+
function useUpdateNotification(updatedVersion, initialVersion = "1.78.3") {
|
|
734936
734955
|
const [lastNotifiedSemver, setLastNotifiedSemver] = import_react223.useState(() => getSemverPart(initialVersion));
|
|
734937
734956
|
if (!updatedVersion) {
|
|
734938
734957
|
return null;
|
|
@@ -734981,7 +735000,7 @@ function AutoUpdater({
|
|
|
734981
735000
|
return;
|
|
734982
735001
|
}
|
|
734983
735002
|
if (false) {}
|
|
734984
|
-
const currentVersion = "1.78.
|
|
735003
|
+
const currentVersion = "1.78.3";
|
|
734985
735004
|
const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
734986
735005
|
let latestVersion = await getLatestVersion(channel);
|
|
734987
735006
|
const isDisabled = isAutoUpdaterDisabled();
|
|
@@ -735210,12 +735229,12 @@ function NativeAutoUpdater({
|
|
|
735210
735229
|
logEvent("tengu_native_auto_updater_start", {});
|
|
735211
735230
|
try {
|
|
735212
735231
|
const maxVersion = await getMaxVersion();
|
|
735213
|
-
if (maxVersion && gt("1.78.
|
|
735232
|
+
if (maxVersion && gt("1.78.3", maxVersion)) {
|
|
735214
735233
|
const msg = await getMaxVersionMessage();
|
|
735215
735234
|
setMaxVersionIssue(msg ?? "affects your version");
|
|
735216
735235
|
}
|
|
735217
735236
|
const result = await installLatest(channel);
|
|
735218
|
-
const currentVersion = "1.78.
|
|
735237
|
+
const currentVersion = "1.78.3";
|
|
735219
735238
|
const latencyMs = Date.now() - startTime;
|
|
735220
735239
|
if (result.lockFailed) {
|
|
735221
735240
|
logEvent("tengu_native_auto_updater_lock_contention", {
|
|
@@ -735352,17 +735371,17 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
735352
735371
|
const maxVersion = await getMaxVersion();
|
|
735353
735372
|
if (maxVersion && latest && gt(latest, maxVersion)) {
|
|
735354
735373
|
logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
|
|
735355
|
-
if (gte("1.78.
|
|
735356
|
-
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.78.
|
|
735374
|
+
if (gte("1.78.3", maxVersion)) {
|
|
735375
|
+
logForDebugging(`PackageManagerAutoUpdater: current version ${"1.78.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
735357
735376
|
setUpdateAvailable(false);
|
|
735358
735377
|
return;
|
|
735359
735378
|
}
|
|
735360
735379
|
latest = maxVersion;
|
|
735361
735380
|
}
|
|
735362
|
-
const hasUpdate = latest && !gte("1.78.
|
|
735381
|
+
const hasUpdate = latest && !gte("1.78.3", latest) && !shouldSkipVersion(latest);
|
|
735363
735382
|
setUpdateAvailable(!!hasUpdate);
|
|
735364
735383
|
if (hasUpdate) {
|
|
735365
|
-
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.78.
|
|
735384
|
+
logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.78.3"} -> ${latest}`);
|
|
735366
735385
|
}
|
|
735367
735386
|
};
|
|
735368
735387
|
$2[0] = t1;
|
|
@@ -735396,7 +735415,7 @@ function PackageManagerAutoUpdater(t0) {
|
|
|
735396
735415
|
wrap: "truncate",
|
|
735397
735416
|
children: [
|
|
735398
735417
|
"currentVersion: ",
|
|
735399
|
-
"1.78.
|
|
735418
|
+
"1.78.3"
|
|
735400
735419
|
]
|
|
735401
735420
|
}, undefined, true, undefined, this);
|
|
735402
735421
|
$2[3] = verbose;
|
|
@@ -746196,7 +746215,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
746196
746215
|
project_dir: getOriginalCwd(),
|
|
746197
746216
|
added_dirs: addedDirs
|
|
746198
746217
|
},
|
|
746199
|
-
version: "1.78.
|
|
746218
|
+
version: "1.78.3",
|
|
746200
746219
|
output_style: {
|
|
746201
746220
|
name: outputStyleName
|
|
746202
746221
|
},
|
|
@@ -746331,7 +746350,7 @@ function StatusLineInner({
|
|
|
746331
746350
|
const attention = customStatusError ?? taskAttention;
|
|
746332
746351
|
const terminalSize = React132.useContext(TerminalSizeContext);
|
|
746333
746352
|
const defaultStatusLineText = buildDefaultStatusBar({
|
|
746334
|
-
version: "1.78.
|
|
746353
|
+
version: "1.78.3",
|
|
746335
746354
|
providerLabel: providerRuntime.providerLabel,
|
|
746336
746355
|
authMode: providerRuntime.authLabel,
|
|
746337
746356
|
model: renderModelName(mainLoopModel) || providerRuntime.model || "",
|
|
@@ -758616,7 +758635,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
|
|
|
758616
758635
|
} catch {}
|
|
758617
758636
|
const data = {
|
|
758618
758637
|
trigger: trigger2,
|
|
758619
|
-
version: "1.78.
|
|
758638
|
+
version: "1.78.3",
|
|
758620
758639
|
platform: process.platform,
|
|
758621
758640
|
transcript,
|
|
758622
758641
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -770990,7 +771009,7 @@ function WelcomeV2() {
|
|
|
770990
771009
|
dimColor: true,
|
|
770991
771010
|
children: [
|
|
770992
771011
|
"v",
|
|
770993
|
-
"1.78.
|
|
771012
|
+
"1.78.3"
|
|
770994
771013
|
]
|
|
770995
771014
|
}, undefined, true, undefined, this)
|
|
770996
771015
|
]
|
|
@@ -772250,7 +772269,7 @@ function completeOnboarding() {
|
|
|
772250
772269
|
saveGlobalConfig((current) => ({
|
|
772251
772270
|
...current,
|
|
772252
772271
|
hasCompletedOnboarding: true,
|
|
772253
|
-
lastOnboardingVersion: "1.78.
|
|
772272
|
+
lastOnboardingVersion: "1.78.3"
|
|
772254
772273
|
}));
|
|
772255
772274
|
}
|
|
772256
772275
|
function showDialog(root2, renderer) {
|
|
@@ -777294,7 +777313,7 @@ function appendToLog(path24, message) {
|
|
|
777294
777313
|
cwd: getFsImplementation().cwd(),
|
|
777295
777314
|
userType: process.env.USER_TYPE,
|
|
777296
777315
|
sessionId: getSessionId(),
|
|
777297
|
-
version: "1.78.
|
|
777316
|
+
version: "1.78.3"
|
|
777298
777317
|
};
|
|
777299
777318
|
getLogWriter(path24).write(messageWithTimestamp);
|
|
777300
777319
|
}
|
|
@@ -781453,8 +781472,8 @@ async function getEnvLessBridgeConfig() {
|
|
|
781453
781472
|
}
|
|
781454
781473
|
async function checkEnvLessBridgeMinVersion() {
|
|
781455
781474
|
const cfg = await getEnvLessBridgeConfig();
|
|
781456
|
-
if (cfg.min_version && lt("1.78.
|
|
781457
|
-
return `Your version of UR (${"1.78.
|
|
781475
|
+
if (cfg.min_version && lt("1.78.3", cfg.min_version)) {
|
|
781476
|
+
return `Your version of UR (${"1.78.3"}) is too old for Remote Control.
|
|
781458
781477
|
Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
|
|
781459
781478
|
}
|
|
781460
781479
|
return null;
|
|
@@ -781928,7 +781947,7 @@ async function initBridgeCore(params) {
|
|
|
781928
781947
|
const rawApi = createBridgeApiClient({
|
|
781929
781948
|
baseUrl,
|
|
781930
781949
|
getAccessToken,
|
|
781931
|
-
runnerVersion: "1.78.
|
|
781950
|
+
runnerVersion: "1.78.3",
|
|
781932
781951
|
onDebug: logForDebugging,
|
|
781933
781952
|
onAuth401,
|
|
781934
781953
|
getTrustedDeviceToken
|
|
@@ -791401,7 +791420,7 @@ function getAgUiCapabilities() {
|
|
|
791401
791420
|
name: "UR-Nexus",
|
|
791402
791421
|
type: "ur-nexus",
|
|
791403
791422
|
description: "Provider-flexible, local-first autonomous engineering workflow agent.",
|
|
791404
|
-
version: "1.78.
|
|
791423
|
+
version: "1.78.3",
|
|
791405
791424
|
provider: "UR",
|
|
791406
791425
|
documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
|
|
791407
791426
|
},
|
|
@@ -792541,7 +792560,7 @@ function createMCPServer(cwd4, debug2, verbose) {
|
|
|
792541
792560
|
};
|
|
792542
792561
|
const server2 = new Server({
|
|
792543
792562
|
name: "ur-nexus",
|
|
792544
|
-
version: "1.78.
|
|
792563
|
+
version: "1.78.3"
|
|
792545
792564
|
}, {
|
|
792546
792565
|
capabilities: {
|
|
792547
792566
|
tools: {}
|
|
@@ -793699,7 +793718,7 @@ function thrownResponse(error40) {
|
|
|
793699
793718
|
}
|
|
793700
793719
|
async function createUrMcp2026Runtime(options4) {
|
|
793701
793720
|
const server2 = createMCPServer(options4.cwd, options4.debug === true, options4.verbose === true);
|
|
793702
|
-
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.78.
|
|
793721
|
+
const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.78.3" }, { capabilities: {} });
|
|
793703
793722
|
const [clientTransport, serverTransport] = createLinkedTransportPair();
|
|
793704
793723
|
try {
|
|
793705
793724
|
await server2.connect(serverTransport);
|
|
@@ -793710,7 +793729,7 @@ async function createUrMcp2026Runtime(options4) {
|
|
|
793710
793729
|
}
|
|
793711
793730
|
const runtime2 = new Mcp2026Runtime({
|
|
793712
793731
|
cwd: options4.cwd,
|
|
793713
|
-
version: "1.78.
|
|
793732
|
+
version: "1.78.3",
|
|
793714
793733
|
backend: {
|
|
793715
793734
|
listTools: async () => {
|
|
793716
793735
|
const listed = await client2.listTools();
|
|
@@ -795851,7 +795870,7 @@ async function update() {
|
|
|
795851
795870
|
logEvent("tengu_update_check", {});
|
|
795852
795871
|
const diagnostic2 = await getDoctorDiagnostic();
|
|
795853
795872
|
const result = await checkUpgradeStatus({
|
|
795854
|
-
currentVersion: "1.78.
|
|
795873
|
+
currentVersion: "1.78.3",
|
|
795855
795874
|
packageName: UR_AGENT_PACKAGE_NAME,
|
|
795856
795875
|
installationType: diagnostic2.installationType,
|
|
795857
795876
|
latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
|
|
@@ -797167,7 +797186,7 @@ ${customInstructions}` : customInstructions;
|
|
|
797167
797186
|
}
|
|
797168
797187
|
}
|
|
797169
797188
|
logForDiagnosticsNoPII("info", "started", {
|
|
797170
|
-
version: "1.78.
|
|
797189
|
+
version: "1.78.3",
|
|
797171
797190
|
is_native_binary: isInBundledMode()
|
|
797172
797191
|
});
|
|
797173
797192
|
registerCleanup(async () => {
|
|
@@ -797953,7 +797972,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
797953
797972
|
pendingHookMessages
|
|
797954
797973
|
}, renderAndRun);
|
|
797955
797974
|
}
|
|
797956
|
-
}).version("1.78.
|
|
797975
|
+
}).version("1.78.3 (UR-Nexus)", "-v, --version", "Output the version number");
|
|
797957
797976
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
797958
797977
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
797959
797978
|
if (canUserConfigureAdvisor()) {
|
|
@@ -799005,7 +799024,7 @@ if (false) {}
|
|
|
799005
799024
|
async function main2() {
|
|
799006
799025
|
const args = process.argv.slice(2);
|
|
799007
799026
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
799008
|
-
console.log(`${"1.78.
|
|
799027
|
+
console.log(`${"1.78.3"} (UR-Nexus)`);
|
|
799009
799028
|
return;
|
|
799010
799029
|
}
|
|
799011
799030
|
if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
|
package/docs/VALIDATION.md
CHANGED
package/documentation/index.html
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<main id="content" class="content">
|
|
46
46
|
<header class="topbar">
|
|
47
47
|
<div>
|
|
48
|
-
<p class="eyebrow">Version 1.78.
|
|
48
|
+
<p class="eyebrow">Version 1.78.3</p>
|
|
49
49
|
<h1>UR-Nexus Documentation</h1>
|
|
50
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
51
51
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.78.
|
|
5
|
+
"version": "1.78.3",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED