ur-agent 1.84.2 → 1.84.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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.84.3
4
+
5
+ - Updated both production and release artifact uploads to the current official
6
+ `actions/upload-artifact` v7.0.1 commit. The immutable workflow pin now uses
7
+ the action's Node 24 runtime, removing the Node 20 deprecation annotation
8
+ while preserving the verified-tarball handoff used for npm and GitHub
9
+ publication.
10
+
3
11
  ## 1.84.2
4
12
 
5
13
  - Added NVIDIA NIM as a real UR-native provider for build.nvidia.com. It uses
package/dist/cli.js CHANGED
@@ -231133,7 +231133,7 @@ var init_metadata = __esm(() => {
231133
231133
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
231134
231134
  WHITESPACE_REGEX2 = /\s+/;
231135
231135
  getVersionBase = memoize_default(() => {
231136
- const match = "1.84.2".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
231136
+ const match = "1.84.3".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
231137
231137
  return match ? match[0] : undefined;
231138
231138
  });
231139
231139
  buildEnvContext = memoize_default(async () => {
@@ -231173,7 +231173,7 @@ var init_metadata = __esm(() => {
231173
231173
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
231174
231174
  isURCodeAction: isEnvTruthy(process.env.UR_CODE_ACTION),
231175
231175
  isURAiAuth: isURAISubscriber(),
231176
- version: "1.84.2",
231176
+ version: "1.84.3",
231177
231177
  versionBase: getVersionBase(),
231178
231178
  buildTime: "",
231179
231179
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
@@ -238612,7 +238612,7 @@ function getAttributionHeader(fingerprint) {
238612
238612
  if (!isAttributionHeaderEnabled()) {
238613
238613
  return "";
238614
238614
  }
238615
- const version2 = `${"1.84.2"}.${fingerprint}`;
238615
+ const version2 = `${"1.84.3"}.${fingerprint}`;
238616
238616
  const entrypoint = process.env.UR_CODE_ENTRYPOINT ?? "unknown";
238617
238617
  const cch = "";
238618
238618
  const workload = getWorkload();
@@ -304647,7 +304647,7 @@ function getTelemetryAttributes() {
304647
304647
  attributes["session.id"] = sessionId;
304648
304648
  }
304649
304649
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
304650
- attributes["app.version"] = "1.84.2";
304650
+ attributes["app.version"] = "1.84.3";
304651
304651
  }
304652
304652
  const oauthAccount = getOauthAccountInfo();
304653
304653
  if (oauthAccount) {
@@ -307678,7 +307678,7 @@ var require_src3 = __commonJS((exports) => {
307678
307678
  function getInstruments() {
307679
307679
  if (instruments)
307680
307680
  return instruments;
307681
- const meter = import_api2.metrics.getMeter("ur-agent.gen_ai", "1.84.2");
307681
+ const meter = import_api2.metrics.getMeter("ur-agent.gen_ai", "1.84.3");
307682
307682
  instruments = {
307683
307683
  operationDuration: meter.createHistogram("gen_ai.client.operation.duration", {
307684
307684
  description: "GenAI operation duration.",
@@ -307776,7 +307776,7 @@ function genAiAgentAttributes() {
307776
307776
  "gen_ai.operation.name": GEN_AI_OPERATION_INVOKE_AGENT,
307777
307777
  "gen_ai.provider.name": "ur",
307778
307778
  "gen_ai.agent.name": "UR-Nexus",
307779
- "gen_ai.agent.version": "1.84.2"
307779
+ "gen_ai.agent.version": "1.84.3"
307780
307780
  };
307781
307781
  }
307782
307782
  function genAiWorkflowAttributes(workflowName, workflowRunId) {
@@ -307797,7 +307797,7 @@ function genAiWorkflowAttributes(workflowName, workflowRunId) {
307797
307797
  function startGenAiWorkflowSpan(workflowName, workflowRunId) {
307798
307798
  const attributes = genAiWorkflowAttributes(workflowName, workflowRunId);
307799
307799
  const name = typeof attributes["gen_ai.workflow.name"] === "string" ? `invoke_workflow ${attributes["gen_ai.workflow.name"]}` : GEN_AI_OPERATION_INVOKE_WORKFLOW;
307800
- return import_api2.trace.getTracer("ur-agent.gen_ai", "1.84.2").startSpan(name, { kind: import_api2.SpanKind.INTERNAL, attributes });
307800
+ return import_api2.trace.getTracer("ur-agent.gen_ai", "1.84.3").startSpan(name, { kind: import_api2.SpanKind.INTERNAL, attributes });
307801
307801
  }
307802
307802
  function endGenAiWorkflowSpan(span, options2 = {}) {
307803
307803
  try {
@@ -307835,7 +307835,7 @@ function startGenAiMemorySpan(operation, options2 = {}) {
307835
307835
  if (options2.recordCount !== undefined && Number.isInteger(options2.recordCount) && options2.recordCount >= 0) {
307836
307836
  attributes["gen_ai.memory.record.count"] = options2.recordCount;
307837
307837
  }
307838
- return import_api2.trace.getTracer("ur-agent.gen_ai", "1.84.2").startSpan(operation, { kind: import_api2.SpanKind.INTERNAL, attributes });
307838
+ return import_api2.trace.getTracer("ur-agent.gen_ai", "1.84.3").startSpan(operation, { kind: import_api2.SpanKind.INTERNAL, attributes });
307839
307839
  }
307840
307840
  function endGenAiMemorySpan(span, options2 = {}) {
307841
307841
  try {
@@ -322242,7 +322242,7 @@ async function createRuntime() {
322242
322242
  bootstrapTelemetry();
322243
322243
  const resource = defaultResource().merge(detectResources({ detectors: [envDetector] })).merge(resourceFromAttributes({
322244
322244
  [import_semantic_conventions6.ATTR_SERVICE_NAME]: "ur-agent",
322245
- [import_semantic_conventions6.ATTR_SERVICE_VERSION]: "1.84.2"
322245
+ [import_semantic_conventions6.ATTR_SERVICE_VERSION]: "1.84.3"
322246
322246
  }));
322247
322247
  const tracerProvider = exporters.traces.length > 0 ? new BasicTracerProvider({
322248
322248
  resource,
@@ -322275,11 +322275,11 @@ async function createRuntime() {
322275
322275
  setMeterProvider(meterProvider);
322276
322276
  setLoggerProvider(loggerProvider);
322277
322277
  if (meterProvider) {
322278
- const meter = meterProvider.getMeter("ur-agent", "1.84.2");
322278
+ const meter = meterProvider.getMeter("ur-agent", "1.84.3");
322279
322279
  setMeter(meter, (name, options2) => meter.createCounter(name, options2));
322280
322280
  }
322281
322281
  if (loggerProvider) {
322282
- setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.84.2"));
322282
+ setEventLogger(loggerProvider.getLogger("ur-agent.events", "1.84.3"));
322283
322283
  }
322284
322284
  if (!cleanupRegistered4) {
322285
322285
  cleanupRegistered4 = true;
@@ -322828,7 +322828,7 @@ function isAnyTracingEnabled() {
322828
322828
  return isTelemetryEnabled() || isEnhancedTelemetryEnabled() || isBetaTracingEnabled();
322829
322829
  }
322830
322830
  function getTracer() {
322831
- return import_api32.trace.getTracer("ur-agent.gen_ai", "1.84.2");
322831
+ return import_api32.trace.getTracer("ur-agent.gen_ai", "1.84.3");
322832
322832
  }
322833
322833
  function createSpanAttributes(spanType, customAttributes = {}) {
322834
322834
  const baseAttributes = getTelemetryAttributes();
@@ -334779,7 +334779,7 @@ function computeFingerprint(messageText2, version2) {
334779
334779
  }
334780
334780
  function computeFingerprintFromMessages(messages) {
334781
334781
  const firstMessageText = extractFirstMessageText(messages);
334782
- return computeFingerprint(firstMessageText, "1.84.2");
334782
+ return computeFingerprint(firstMessageText, "1.84.3");
334783
334783
  }
334784
334784
  var FINGERPRINT_SALT = "59cf53e54c78";
334785
334785
  var init_fingerprint = () => {};
@@ -334821,7 +334821,7 @@ async function sideQuery(opts) {
334821
334821
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
334822
334822
  }
334823
334823
  const messageText2 = extractFirstUserMessageText(messages);
334824
- const fingerprint = computeFingerprint(messageText2, "1.84.2");
334824
+ const fingerprint = computeFingerprint(messageText2, "1.84.3");
334825
334825
  const attributionHeader = getAttributionHeader(fingerprint);
334826
334826
  const systemBlocks = [
334827
334827
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -336928,7 +336928,7 @@ var init_user = __esm(() => {
336928
336928
  deviceId,
336929
336929
  sessionId: getSessionId(),
336930
336930
  email: getEmail(),
336931
- appVersion: "1.84.2",
336931
+ appVersion: "1.84.3",
336932
336932
  platform: getHostPlatformForAnalytics(),
336933
336933
  organizationUuid,
336934
336934
  accountUuid,
@@ -337688,7 +337688,7 @@ var init_growthbook_experiment_event = __esm(() => {
337688
337688
 
337689
337689
  // src/utils/userAgent.ts
337690
337690
  function getURCodeUserAgent() {
337691
- return `ur/${"1.84.2"}`;
337691
+ return `ur/${"1.84.3"}`;
337692
337692
  }
337693
337693
 
337694
337694
  // src/services/analytics/firstPartyEventLoggingExporter.ts
@@ -338344,7 +338344,7 @@ function initialize1PEventLogging() {
338344
338344
  const platform4 = getPlatform();
338345
338345
  const attributes = {
338346
338346
  [import_semantic_conventions7.ATTR_SERVICE_NAME]: "ur",
338347
- [import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.84.2"
338347
+ [import_semantic_conventions7.ATTR_SERVICE_VERSION]: "1.84.3"
338348
338348
  };
338349
338349
  if (platform4 === "wsl") {
338350
338350
  const wslVersion = getWslVersion();
@@ -338372,7 +338372,7 @@ function initialize1PEventLogging() {
338372
338372
  })
338373
338373
  ]
338374
338374
  });
338375
- firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.84.2");
338375
+ firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.urhq.ur.events", "1.84.3");
338376
338376
  }
338377
338377
  async function reinitialize1PEventLoggingIfConfigChanged() {
338378
338378
  if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
@@ -341674,9 +341674,9 @@ async function assertMinVersion() {
341674
341674
  if (false) {}
341675
341675
  try {
341676
341676
  const versionConfig = await getDynamicConfig_BLOCKS_ON_INIT("tengu_version_config", { minVersion: "0.0.0" });
341677
- if (versionConfig.minVersion && lt("1.84.2", versionConfig.minVersion)) {
341677
+ if (versionConfig.minVersion && lt("1.84.3", versionConfig.minVersion)) {
341678
341678
  console.error(`
341679
- It looks like your version of UR (${"1.84.2"}) needs an update.
341679
+ It looks like your version of UR (${"1.84.3"}) needs an update.
341680
341680
  A newer version (${versionConfig.minVersion} or higher) is required to continue.
341681
341681
 
341682
341682
  To update, please run:
@@ -341892,7 +341892,7 @@ async function installGlobalPackage(specificVersion) {
341892
341892
  logError2(new AutoUpdaterError("Another process is currently installing an update"));
341893
341893
  logEvent("tengu_auto_updater_lock_contention", {
341894
341894
  pid: process.pid,
341895
- currentVersion: "1.84.2"
341895
+ currentVersion: "1.84.3"
341896
341896
  });
341897
341897
  return "in_progress";
341898
341898
  }
@@ -341901,7 +341901,7 @@ async function installGlobalPackage(specificVersion) {
341901
341901
  if (!env2.isRunningWithBun() && env2.isNpmFromWindowsPath()) {
341902
341902
  logError2(new Error("Windows NPM detected in WSL environment"));
341903
341903
  logEvent("tengu_auto_updater_windows_npm_in_wsl", {
341904
- currentVersion: "1.84.2"
341904
+ currentVersion: "1.84.3"
341905
341905
  });
341906
341906
  console.error(`
341907
341907
  Error: Windows NPM detected in WSL
@@ -342436,7 +342436,7 @@ function detectLinuxGlobPatternWarnings() {
342436
342436
  }
342437
342437
  async function getDoctorDiagnostic() {
342438
342438
  const installationType = await getCurrentInstallationType();
342439
- const version2 = typeof MACRO !== "undefined" ? "1.84.2" : "unknown";
342439
+ const version2 = typeof MACRO !== "undefined" ? "1.84.3" : "unknown";
342440
342440
  const installationPath = await getInstallationPath();
342441
342441
  const invokedBinary = getInvokedBinary();
342442
342442
  const multipleInstallations = await detectMultipleInstallations();
@@ -343503,7 +343503,7 @@ function getInstallationEnv() {
343503
343503
  return;
343504
343504
  }
343505
343505
  function getURCodeVersion() {
343506
- return "1.84.2";
343506
+ return "1.84.3";
343507
343507
  }
343508
343508
  async function getInstalledVSCodeExtensionVersion(command) {
343509
343509
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -344984,8 +344984,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
344984
344984
  const maxVersion = await getMaxVersion();
344985
344985
  if (maxVersion && gt(version2, maxVersion)) {
344986
344986
  logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version2} to ${maxVersion}`);
344987
- if (gte("1.84.2", maxVersion)) {
344988
- logForDebugging(`Native installer: current version ${"1.84.2"} is already at or above maxVersion ${maxVersion}, skipping update`);
344987
+ if (gte("1.84.3", maxVersion)) {
344988
+ logForDebugging(`Native installer: current version ${"1.84.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
344989
344989
  logEvent("tengu_native_update_skipped_max_version", {
344990
344990
  latency_ms: Date.now() - startTime,
344991
344991
  max_version: maxVersion,
@@ -344996,7 +344996,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
344996
344996
  version2 = maxVersion;
344997
344997
  }
344998
344998
  }
344999
- if (!forceReinstall && version2 === "1.84.2" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
344999
+ if (!forceReinstall && version2 === "1.84.3" && await versionIsAvailable(version2) && await isPossibleURBinary(executablePath)) {
345000
345000
  logForDebugging(`Found ${version2} at ${executablePath}, skipping install`);
345001
345001
  logEvent("tengu_native_update_complete", {
345002
345002
  latency_ms: Date.now() - startTime,
@@ -438860,7 +438860,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
438860
438860
  const client = new Client({
438861
438861
  name: "ur",
438862
438862
  title: "UR",
438863
- version: "1.84.2",
438863
+ version: "1.84.3",
438864
438864
  description: "UR-Nexus autonomous engineering workflow engine",
438865
438865
  websiteUrl: PRODUCT_URL
438866
438866
  }, {
@@ -439217,7 +439217,7 @@ var init_client2 = __esm(() => {
439217
439217
  const client = new Client({
439218
439218
  name: "ur",
439219
439219
  title: "UR",
439220
- version: "1.84.2",
439220
+ version: "1.84.3",
439221
439221
  description: "UR-Nexus autonomous engineering workflow engine",
439222
439222
  websiteUrl: PRODUCT_URL
439223
439223
  }, {
@@ -450088,7 +450088,7 @@ function Feedback({
450088
450088
  platform: env2.platform,
450089
450089
  gitRepo: envInfo.isGit,
450090
450090
  terminal: env2.terminal,
450091
- version: "1.84.2",
450091
+ version: "1.84.3",
450092
450092
  transcript: normalizeMessagesForAPI(messages),
450093
450093
  errors: sanitizedErrors,
450094
450094
  lastApiRequest: getLastAPIRequest(),
@@ -450278,7 +450278,7 @@ function Feedback({
450278
450278
  ", ",
450279
450279
  env2.terminal,
450280
450280
  ", v",
450281
- "1.84.2"
450281
+ "1.84.3"
450282
450282
  ]
450283
450283
  }, undefined, true, undefined, this)
450284
450284
  ]
@@ -450384,7 +450384,7 @@ ${sanitizedDescription}
450384
450384
  ` + `**Environment Info**
450385
450385
  ` + `- Platform: ${env2.platform}
450386
450386
  ` + `- Terminal: ${env2.terminal}
450387
- ` + `- Version: ${"1.84.2"}
450387
+ ` + `- Version: ${"1.84.3"}
450388
450388
  ` + `- Feedback ID: ${feedbackId}
450389
450389
  ` + `
450390
450390
  **Errors**
@@ -453494,7 +453494,7 @@ function buildPrimarySection() {
453494
453494
  }, undefined, false, undefined, this);
453495
453495
  return [{
453496
453496
  label: "Version",
453497
- value: "1.84.2"
453497
+ value: "1.84.3"
453498
453498
  }, {
453499
453499
  label: "Session name",
453500
453500
  value: nameValue
@@ -457008,7 +457008,7 @@ function Config({
457008
457008
  }
457009
457009
  }, undefined, false, undefined, this)
457010
457010
  }, undefined, false, undefined, this) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_dev_runtime176.jsxDEV(ChannelDowngradeDialog, {
457011
- currentVersion: "1.84.2",
457011
+ currentVersion: "1.84.3",
457012
457012
  onChoice: (choice) => {
457013
457013
  setShowSubmenu(null);
457014
457014
  setTabsHidden(false);
@@ -457020,7 +457020,7 @@ function Config({
457020
457020
  autoUpdatesChannel: "stable"
457021
457021
  };
457022
457022
  if (choice === "stay") {
457023
- newSettings.minimumVersion = "1.84.2";
457023
+ newSettings.minimumVersion = "1.84.3";
457024
457024
  }
457025
457025
  updateSettingsForSource("userSettings", newSettings);
457026
457026
  setSettingsData((prev_27) => ({
@@ -465337,7 +465337,7 @@ function HelpV2(t0) {
465337
465337
  let t6;
465338
465338
  if ($2[31] !== tabs) {
465339
465339
  t6 = /* @__PURE__ */ jsx_dev_runtime203.jsxDEV(Tabs, {
465340
- title: `UR v${"1.84.2"}`,
465340
+ title: `UR v${"1.84.3"}`,
465341
465341
  color: "professionalBlue",
465342
465342
  defaultTab: "general",
465343
465343
  children: tabs
@@ -466271,7 +466271,7 @@ function buildToolUseContext(tools, readFileStateCache, toolPermissionContext, a
466271
466271
  async function handleInitialize(options2) {
466272
466272
  return {
466273
466273
  name: "UR",
466274
- version: "1.84.2",
466274
+ version: "1.84.3",
466275
466275
  protocolVersion: "0.1.0",
466276
466276
  workspaceRoot: options2.cwd,
466277
466277
  capabilities: {
@@ -483404,7 +483404,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
483404
483404
  return [];
483405
483405
  }
483406
483406
  }
483407
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.84.2") {
483407
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.84.3") {
483408
483408
  if (process.env.USER_TYPE === "ant") {
483409
483409
  const changelog = "";
483410
483410
  if (changelog) {
@@ -483431,7 +483431,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.84.2")
483431
483431
  releaseNotes
483432
483432
  };
483433
483433
  }
483434
- function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.84.2") {
483434
+ function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.84.3") {
483435
483435
  if (process.env.USER_TYPE === "ant") {
483436
483436
  const changelog = "";
483437
483437
  if (changelog) {
@@ -486339,7 +486339,7 @@ function getRecentActivitySync() {
486339
486339
  return cachedActivity;
486340
486340
  }
486341
486341
  function getLogoDisplayData() {
486342
- const version2 = process.env.DEMO_VERSION ?? "1.84.2";
486342
+ const version2 = process.env.DEMO_VERSION ?? "1.84.3";
486343
486343
  const serverUrl = getDirectConnectServerUrl();
486344
486344
  const displayPath = process.env.DEMO_VERSION ? "/code/ur" : getDisplayPath(getCwd());
486345
486345
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -487227,7 +487227,7 @@ function LogoV2() {
487227
487227
  if ($2[2] === Symbol.for("react.memo_cache_sentinel")) {
487228
487228
  t2 = () => {
487229
487229
  const currentConfig = getGlobalConfig();
487230
- if (currentConfig.lastReleaseNotesSeen === "1.84.2") {
487230
+ if (currentConfig.lastReleaseNotesSeen === "1.84.3") {
487231
487231
  return;
487232
487232
  }
487233
487233
  saveGlobalConfig(_temp327);
@@ -487915,12 +487915,12 @@ function LogoV2() {
487915
487915
  return t41;
487916
487916
  }
487917
487917
  function _temp327(current) {
487918
- if (current.lastReleaseNotesSeen === "1.84.2") {
487918
+ if (current.lastReleaseNotesSeen === "1.84.3") {
487919
487919
  return current;
487920
487920
  }
487921
487921
  return {
487922
487922
  ...current,
487923
- lastReleaseNotesSeen: "1.84.2"
487923
+ lastReleaseNotesSeen: "1.84.3"
487924
487924
  };
487925
487925
  }
487926
487926
  function _temp240(s_0) {
@@ -504013,7 +504013,7 @@ function compileAgenticCiWorkflow(specName = "default", options2 = {}) {
504013
504013
  if (spec.name !== specName) {
504014
504014
  throw new Error("Agentic CI workflow spec name does not match");
504015
504015
  }
504016
- const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.84.2" : "1.84.2");
504016
+ const packageVersion = options2.packageVersion ?? (typeof MACRO !== "undefined" ? "1.84.3" : "1.84.3");
504017
504017
  if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(packageVersion)) {
504018
504018
  throw new Error("invalid ur-agent package version");
504019
504019
  }
@@ -505009,7 +505009,7 @@ runner; \`ur trigger\` is the inbound parser that decides what to run.
505009
505009
  path: ".github/workflows/ur.yml",
505010
505010
  root: "project",
505011
505011
  content: compileAgenticCiWorkflow("default", {
505012
- packageVersion: typeof MACRO !== "undefined" ? "1.84.2" : "1.84.2"
505012
+ packageVersion: typeof MACRO !== "undefined" ? "1.84.3" : "1.84.3"
505013
505013
  })
505014
505014
  },
505015
505015
  {
@@ -505072,7 +505072,7 @@ function value(tokens, flag) {
505072
505072
  return index2 >= 0 ? tokens[index2 + 1] : undefined;
505073
505073
  }
505074
505074
  function cliVersion() {
505075
- return typeof MACRO !== "undefined" ? "1.84.2" : "1.84.2";
505075
+ return typeof MACRO !== "undefined" ? "1.84.3" : "1.84.3";
505076
505076
  }
505077
505077
  function workflowPath(cwd2) {
505078
505078
  return join156(cwd2, ".github", "workflows", "ur-agentic-ci.yml");
@@ -505981,7 +505981,7 @@ function formatA2AV1AgentCard(options2 = {}, pretty = true) {
505981
505981
  var urVersion, researchSnapshotDate = "2026-08-10", coverage2, priorityRoadmap;
505982
505982
  var init_trends = __esm(() => {
505983
505983
  init_a2aCardSignature();
505984
- urVersion = typeof MACRO !== "undefined" ? "1.84.2" : "1.84.2";
505984
+ urVersion = typeof MACRO !== "undefined" ? "1.84.3" : "1.84.3";
505985
505985
  coverage2 = [
505986
505986
  {
505987
505987
  id: "local-runtime",
@@ -511714,7 +511714,7 @@ function createAcpStdioApp(deps) {
511714
511714
  }
511715
511715
  },
511716
511716
  authMethods: [],
511717
- agentInfo: { name: "UR-Nexus", version: "1.84.2" }
511717
+ agentInfo: { name: "UR-Nexus", version: "1.84.3" }
511718
511718
  })).onRequest("authenticate", () => ({})).onRequest("session/new", async (context6) => {
511719
511719
  const result = runtime2.newSession(context6.params.cwd, context6.params.mcpServers, context6.params.additionalDirectories);
511720
511720
  await runtime2.announce({
@@ -511811,7 +511811,7 @@ function createAcpStdioAgent(deps) {
511811
511811
  }
511812
511812
  },
511813
511813
  authMethods: [],
511814
- agentInfo: { name: "UR-Nexus", version: "1.84.2" }
511814
+ agentInfo: { name: "UR-Nexus", version: "1.84.3" }
511815
511815
  });
511816
511816
  return;
511817
511817
  case "authenticate":
@@ -725814,7 +725814,7 @@ async function captureMemoryDiagnostics(trigger2, dumpNumber = 0) {
725814
725814
  smapsRollup,
725815
725815
  platform: process.platform,
725816
725816
  nodeVersion: process.version,
725817
- ccVersion: "1.84.2"
725817
+ ccVersion: "1.84.3"
725818
725818
  };
725819
725819
  }
725820
725820
  async function performHeapDump(trigger2 = "manual", dumpNumber = 0) {
@@ -726403,7 +726403,7 @@ var init_bridge_kick = __esm(() => {
726403
726403
  var call153 = async () => {
726404
726404
  return {
726405
726405
  type: "text",
726406
- value: "1.84.2"
726406
+ value: "1.84.3"
726407
726407
  };
726408
726408
  }, version2, version_default;
726409
726409
  var init_version = __esm(() => {
@@ -738297,7 +738297,7 @@ function generateHtmlReport(data, insights) {
738297
738297
  </html>`;
738298
738298
  }
738299
738299
  function buildExportData(data, insights, facets, remoteStats) {
738300
- const version3 = typeof MACRO !== "undefined" ? "1.84.2" : "unknown";
738300
+ const version3 = typeof MACRO !== "undefined" ? "1.84.3" : "unknown";
738301
738301
  const remote_hosts_collected = remoteStats?.hosts.filter((h2) => h2.sessionCount > 0).map((h2) => h2.name);
738302
738302
  const facets_summary = {
738303
738303
  total: facets.size,
@@ -742612,7 +742612,7 @@ var init_sessionStorage = __esm(() => {
742612
742612
  init_settings2();
742613
742613
  init_slowOperations();
742614
742614
  init_uuid();
742615
- VERSION7 = typeof MACRO !== "undefined" ? "1.84.2" : "unknown";
742615
+ VERSION7 = typeof MACRO !== "undefined" ? "1.84.3" : "unknown";
742616
742616
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
742617
742617
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
742618
742618
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -743827,7 +743827,7 @@ var init_filesystem = __esm(() => {
743827
743827
  });
743828
743828
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
743829
743829
  const nonce = randomBytes23(16).toString("hex");
743830
- return join234(getURTempDir(), "bundled-skills", "1.84.2", nonce);
743830
+ return join234(getURTempDir(), "bundled-skills", "1.84.3", nonce);
743831
743831
  });
743832
743832
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
743833
743833
  });
@@ -775622,7 +775622,7 @@ function getUserAgent() {
775622
775622
  const clientApp = process.env.UR_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}` : "";
775623
775623
  const workload = getWorkload();
775624
775624
  const workloadSuffix = workload ? `, workload/${workload}` : "";
775625
- return `ur-cli/${"1.84.2"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
775625
+ return `ur-cli/${"1.84.3"} (${process.env.USER_TYPE}, ${process.env.UR_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
775626
775626
  }
775627
775627
  function getMCPUserAgent() {
775628
775628
  const parts = [];
@@ -775636,7 +775636,7 @@ function getMCPUserAgent() {
775636
775636
  parts.push(`client-app/${process.env.UR_AGENT_SDK_CLIENT_APP}`);
775637
775637
  }
775638
775638
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
775639
- return `ur/${"1.84.2"}${suffix}`;
775639
+ return `ur/${"1.84.3"}${suffix}`;
775640
775640
  }
775641
775641
  function getWebFetchUserAgent() {
775642
775642
  return `UR-User (${getURCodeUserAgent()})`;
@@ -792799,7 +792799,7 @@ function buildSystemInitMessage(inputs) {
792799
792799
  slash_commands: inputs.commands.filter((c4) => c4.userInvocable !== false).map((c4) => c4.name),
792800
792800
  apiKeySource: getURHQApiKeyWithSource().source,
792801
792801
  betas: getSdkBetas(),
792802
- ur_version: "1.84.2",
792802
+ ur_version: "1.84.3",
792803
792803
  output_style: outputStyle,
792804
792804
  agents: inputs.agents.map((agent2) => agent2.agentType),
792805
792805
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill2) => skill2.name),
@@ -796340,7 +796340,7 @@ var init_useVoiceEnabled = __esm(() => {
796340
796340
  function getSemverPart(version3) {
796341
796341
  return `${import_semver13.major(version3, { loose: true })}.${import_semver13.minor(version3, { loose: true })}.${import_semver13.patch(version3, { loose: true })}`;
796342
796342
  }
796343
- function useUpdateNotification(updatedVersion, initialVersion = "1.84.2") {
796343
+ function useUpdateNotification(updatedVersion, initialVersion = "1.84.3") {
796344
796344
  const [lastNotifiedSemver, setLastNotifiedSemver] = import_react225.useState(() => getSemverPart(initialVersion));
796345
796345
  if (!updatedVersion) {
796346
796346
  return null;
@@ -796389,7 +796389,7 @@ function AutoUpdater({
796389
796389
  return;
796390
796390
  }
796391
796391
  if (false) {}
796392
- const currentVersion = "1.84.2";
796392
+ const currentVersion = "1.84.3";
796393
796393
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
796394
796394
  let latestVersion = await getLatestVersion(channel);
796395
796395
  const isDisabled = isAutoUpdaterDisabled();
@@ -796618,12 +796618,12 @@ function NativeAutoUpdater({
796618
796618
  logEvent("tengu_native_auto_updater_start", {});
796619
796619
  try {
796620
796620
  const maxVersion = await getMaxVersion();
796621
- if (maxVersion && gt("1.84.2", maxVersion)) {
796621
+ if (maxVersion && gt("1.84.3", maxVersion)) {
796622
796622
  const msg = await getMaxVersionMessage();
796623
796623
  setMaxVersionIssue(msg ?? "affects your version");
796624
796624
  }
796625
796625
  const result = await installLatest(channel);
796626
- const currentVersion = "1.84.2";
796626
+ const currentVersion = "1.84.3";
796627
796627
  const latencyMs = Date.now() - startTime;
796628
796628
  if (result.lockFailed) {
796629
796629
  logEvent("tengu_native_auto_updater_lock_contention", {
@@ -796760,17 +796760,17 @@ function PackageManagerAutoUpdater(t0) {
796760
796760
  const maxVersion = await getMaxVersion();
796761
796761
  if (maxVersion && latest && gt(latest, maxVersion)) {
796762
796762
  logForDebugging(`PackageManagerAutoUpdater: maxVersion ${maxVersion} is set, capping update from ${latest} to ${maxVersion}`);
796763
- if (gte("1.84.2", maxVersion)) {
796764
- logForDebugging(`PackageManagerAutoUpdater: current version ${"1.84.2"} is already at or above maxVersion ${maxVersion}, skipping update`);
796763
+ if (gte("1.84.3", maxVersion)) {
796764
+ logForDebugging(`PackageManagerAutoUpdater: current version ${"1.84.3"} is already at or above maxVersion ${maxVersion}, skipping update`);
796765
796765
  setUpdateAvailable(false);
796766
796766
  return;
796767
796767
  }
796768
796768
  latest = maxVersion;
796769
796769
  }
796770
- const hasUpdate = latest && !gte("1.84.2", latest) && !shouldSkipVersion(latest);
796770
+ const hasUpdate = latest && !gte("1.84.3", latest) && !shouldSkipVersion(latest);
796771
796771
  setUpdateAvailable(!!hasUpdate);
796772
796772
  if (hasUpdate) {
796773
- logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.84.2"} -> ${latest}`);
796773
+ logForDebugging(`PackageManagerAutoUpdater: Update available ${"1.84.3"} -> ${latest}`);
796774
796774
  }
796775
796775
  };
796776
796776
  $2[0] = t1;
@@ -796804,7 +796804,7 @@ function PackageManagerAutoUpdater(t0) {
796804
796804
  wrap: "truncate",
796805
796805
  children: [
796806
796806
  "currentVersion: ",
796807
- "1.84.2"
796807
+ "1.84.3"
796808
796808
  ]
796809
796809
  }, undefined, true, undefined, this);
796810
796810
  $2[3] = verbose;
@@ -807653,7 +807653,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
807653
807653
  project_dir: getOriginalCwd(),
807654
807654
  added_dirs: addedDirs
807655
807655
  },
807656
- version: "1.84.2",
807656
+ version: "1.84.3",
807657
807657
  output_style: {
807658
807658
  name: outputStyleName
807659
807659
  },
@@ -807788,7 +807788,7 @@ function StatusLineInner({
807788
807788
  const attention = customStatusError ?? taskAttention;
807789
807789
  const terminalSize = React138.useContext(TerminalSizeContext);
807790
807790
  const defaultStatusLineText = buildDefaultStatusBar({
807791
- version: "1.84.2",
807791
+ version: "1.84.3",
807792
807792
  providerLabel: providerRuntime.providerLabel,
807793
807793
  authMode: providerRuntime.authLabel,
807794
807794
  model: renderModelName(mainLoopModel) || providerRuntime.model || "",
@@ -820179,7 +820179,7 @@ async function submitTranscriptShare(messages, trigger2, appearanceId) {
820179
820179
  } catch {}
820180
820180
  const data = {
820181
820181
  trigger: trigger2,
820182
- version: "1.84.2",
820182
+ version: "1.84.3",
820183
820183
  platform: process.platform,
820184
820184
  transcript,
820185
820185
  subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
@@ -832561,7 +832561,7 @@ function WelcomeV2() {
832561
832561
  dimColor: true,
832562
832562
  children: [
832563
832563
  "v",
832564
- "1.84.2"
832564
+ "1.84.3"
832565
832565
  ]
832566
832566
  }, undefined, true, undefined, this)
832567
832567
  ]
@@ -833807,7 +833807,7 @@ function completeOnboarding() {
833807
833807
  saveGlobalConfig((current) => ({
833808
833808
  ...current,
833809
833809
  hasCompletedOnboarding: true,
833810
- lastOnboardingVersion: "1.84.2"
833810
+ lastOnboardingVersion: "1.84.3"
833811
833811
  }));
833812
833812
  }
833813
833813
  function showDialog(root2, renderer) {
@@ -838804,7 +838804,7 @@ function appendToLog(path28, message) {
838804
838804
  cwd: getFsImplementation().cwd(),
838805
838805
  userType: process.env.USER_TYPE,
838806
838806
  sessionId: getSessionId(),
838807
- version: "1.84.2"
838807
+ version: "1.84.3"
838808
838808
  };
838809
838809
  getLogWriter(path28).write(messageWithTimestamp);
838810
838810
  }
@@ -842967,8 +842967,8 @@ async function getEnvLessBridgeConfig() {
842967
842967
  }
842968
842968
  async function checkEnvLessBridgeMinVersion() {
842969
842969
  const cfg = await getEnvLessBridgeConfig();
842970
- if (cfg.min_version && lt("1.84.2", cfg.min_version)) {
842971
- return `Your version of UR (${"1.84.2"}) is too old for Remote Control.
842970
+ if (cfg.min_version && lt("1.84.3", cfg.min_version)) {
842971
+ return `Your version of UR (${"1.84.3"}) is too old for Remote Control.
842972
842972
  Version ${cfg.min_version} or higher is required. Run \`ur update\` to update.`;
842973
842973
  }
842974
842974
  return null;
@@ -843442,7 +843442,7 @@ async function initBridgeCore(params) {
843442
843442
  const rawApi = createBridgeApiClient({
843443
843443
  baseUrl,
843444
843444
  getAccessToken,
843445
- runnerVersion: "1.84.2",
843445
+ runnerVersion: "1.84.3",
843446
843446
  onDebug: logForDebugging,
843447
843447
  onAuth401,
843448
843448
  getTrustedDeviceToken
@@ -856884,7 +856884,7 @@ function getAgUiCapabilities() {
856884
856884
  name: "UR-Nexus",
856885
856885
  type: "ur-nexus",
856886
856886
  description: "Provider-flexible, local-first autonomous engineering workflow agent.",
856887
- version: "1.84.2",
856887
+ version: "1.84.3",
856888
856888
  provider: "UR",
856889
856889
  documentationUrl: "https://github.com/Maitham16/UR/blob/master/docs/AG_UI.md"
856890
856890
  },
@@ -857704,7 +857704,7 @@ function createMCPServer(cwd4, debug2, verbose) {
857704
857704
  };
857705
857705
  const server2 = new Server({
857706
857706
  name: "ur-nexus",
857707
- version: "1.84.2"
857707
+ version: "1.84.3"
857708
857708
  }, {
857709
857709
  capabilities: {
857710
857710
  tools: {}
@@ -858907,7 +858907,7 @@ function thrownResponse(error61) {
858907
858907
  }
858908
858908
  async function createUrMcp2026Runtime(options5) {
858909
858909
  const server2 = createMCPServer(options5.cwd, options5.debug === true, options5.verbose === true);
858910
- const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.84.2" }, { capabilities: {} });
858910
+ const client2 = new Client({ name: "ur-mcp-2026-adapter", version: "1.84.3" }, { capabilities: {} });
858911
858911
  const [clientTransport, serverTransport] = createLinkedTransportPair();
858912
858912
  try {
858913
858913
  await server2.connect(serverTransport);
@@ -858918,7 +858918,7 @@ async function createUrMcp2026Runtime(options5) {
858918
858918
  }
858919
858919
  const runtime2 = new Mcp2026Runtime({
858920
858920
  cwd: options5.cwd,
858921
- version: "1.84.2",
858921
+ version: "1.84.3",
858922
858922
  backend: {
858923
858923
  listTools: async () => {
858924
858924
  const listed = await client2.listTools();
@@ -861754,7 +861754,7 @@ async function update() {
861754
861754
  logEvent("tengu_update_check", {});
861755
861755
  const diagnostic2 = await getDoctorDiagnostic();
861756
861756
  const result = await checkUpgradeStatus({
861757
- currentVersion: "1.84.2",
861757
+ currentVersion: "1.84.3",
861758
861758
  packageName: UR_AGENT_PACKAGE_NAME,
861759
861759
  installationType: diagnostic2.installationType,
861760
861760
  latestVersion: () => getLatestNpmPackageVersion(UR_AGENT_PACKAGE_NAME)
@@ -863082,7 +863082,7 @@ ${customInstructions}` : customInstructions;
863082
863082
  }
863083
863083
  }
863084
863084
  logForDiagnosticsNoPII("info", "started", {
863085
- version: "1.84.2",
863085
+ version: "1.84.3",
863086
863086
  is_native_binary: isInBundledMode()
863087
863087
  });
863088
863088
  registerCleanup(async () => {
@@ -863869,7 +863869,7 @@ Usage: ur --remote "your task description"`, () => gracefulShutdown(1));
863869
863869
  pendingHookMessages
863870
863870
  }, renderAndRun);
863871
863871
  }
863872
- }).version("1.84.2 (UR-Nexus)", "-v, --version", "Output the version number");
863872
+ }).version("1.84.3 (UR-Nexus)", "-v, --version", "Output the version number");
863873
863873
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
863874
863874
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
863875
863875
  if (canUserConfigureAdvisor()) {
@@ -864996,7 +864996,7 @@ if (false) {}
864996
864996
  async function main2() {
864997
864997
  const args = process.argv.slice(2);
864998
864998
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
864999
- console.log(`${"1.84.2"} (UR-Nexus)`);
864999
+ console.log(`${"1.84.3"} (UR-Nexus)`);
865000
865000
  return;
865001
865001
  }
865002
865002
  if (args[0] === "a2a" && args[1] === "serve" && !args.includes("--help") && !args.includes("-h")) {
@@ -19,7 +19,7 @@ You need:
19
19
 
20
20
  ```sh
21
21
  ur --version
22
- # expected for this release: "1.84.2 (UR-Nexus)"
22
+ # expected for this release: "1.84.3 (UR-Nexus)"
23
23
  ```
24
24
 
25
25
  ### 0.0 Redteam mode and Reverse Skills (1.81.0)
@@ -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.84.2</p>
48
+ <p class="eyebrow">Version 1.84.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>
@@ -7,7 +7,7 @@ plugins {
7
7
  }
8
8
 
9
9
  group = "dev.urnexus"
10
- version = "1.84.2"
10
+ version = "1.84.3"
11
11
 
12
12
  repositories {
13
13
  mavenCentral()
@@ -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.84.2",
5
+ "version": "1.84.3",
6
6
  "publisher": "ur-nexus",
7
7
  "engines": {
8
8
  "vscode": "^1.92.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.84.2",
3
+ "version": "1.84.3",
4
4
  "description": "UR-Nexus — autonomous engineering workflow engine (plan, execute, test, verify, document, benchmark, reproduce)",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",