mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 12:22:14 +03:00
* chore(release): v3.7.4 — version bump, openapi and changelog sync * fix: preserve previous_response_id and conversation_id fields on empty input array (#1729) * fix: bypass UI validation block for optional API keys and fix string fallback typing (#1721) * fix(proxy): disable HTTP keep-alive and pipelining in Undici proxy dispatcher to prevent socket hang up * feat(proxy): implement bulk proxy import via pipe-delimited parser with update-or-create logic * docs: update changelog for v3.7.4 fixes and proxy features * test: update responses store expectations for empty input arrays * feat(pwa): add fullscreen installable PWA with manifest, service worker, and cross-platform app icons. (#1728) Integrated into release/v3.7.4 * Fix image provider validation and Stability image requests (#1726) Integrated into release/v3.7.4 * docs: add PR 1726 and PR 1728 to v3.7.4 changelog * fix(security): replace insecure Math.random with crypto.getRandomValues for fallback UUID generation * fix(migrations): intercept 007 migration to use IF NOT EXISTS logic on fresh installs Fixes #1733 * test: fix typescript compilation errors in unit tests * fix(db): reconcile legacy reasoning cache migration * chore(release): bump to v3.7.4 — changelog, docs, version sync * fix(cc-compatible): preserve Claude Code system skeleton (#1740) Integrated into release/v3.7.4 * docs(changelog): update for PR #1740 merge * docs(changelog): include workflow updates * fix(db): reconcile legacy reasoning cache migration (#1734) Integrated into release/v3.7.4 * Add endpoint tunnel visibility settings (#1743) Integrated into release/v3.7.4 * Normalize max reasoning effort for Codex routing (#1744) Integrated into release/v3.7.4 * Fix Claude Code gateway config helper (#1745) Integrated into release/v3.7.4 * Refresh CLI fingerprint provider profiles (#1746) Integrated into release/v3.7.4 * Integrated into release/v3.7.4 (PR #1742) * docs(changelog): update for PRs 1742-1746 --------- Co-authored-by: diegosouzapw <diegosouzapw@users.noreply.github.com> Co-authored-by: Yash Ghule <y.ghule77@gmail.com> Co-authored-by: backryun <bakryun0718@proton.me> Co-authored-by: dhaern <manker_lol@hotmail.com> Co-authored-by: Randi <55005611+rdself@users.noreply.github.com> Co-authored-by: Duncan L <leungd@gmail.com>
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
/**
|
|
* Auto-detect the installed Cursor IDE version from its local SQLite database.
|
|
* Falls back to the hardcoded default when the DB is unavailable.
|
|
* The detected version is cached in-memory for 1 hour to avoid repeated DB reads.
|
|
*
|
|
* Override the DB path with the CURSOR_STATE_DB_PATH env var for non-standard installs.
|
|
*/
|
|
|
|
import { homedir } from "os";
|
|
import { join } from "path";
|
|
import { createRequire } from "module";
|
|
|
|
const CACHE_TTL_MS = 60 * 60 * 1000;
|
|
const DB_KEY = "cursorupdate.lastUpdatedAndShown.version";
|
|
const FALLBACK_VERSION = "3.2.14";
|
|
|
|
let cachedVersion: string | null = null;
|
|
let cachedAt = 0;
|
|
|
|
export function getCursorDbPath(): string {
|
|
if (process.env.CURSOR_STATE_DB_PATH) {
|
|
return process.env.CURSOR_STATE_DB_PATH;
|
|
}
|
|
const home = process.env.HOME || process.env.USERPROFILE || homedir();
|
|
const platform = process.platform;
|
|
if (platform === "darwin") {
|
|
return join(home, "Library/Application Support/Cursor/User/globalStorage/state.vscdb");
|
|
}
|
|
if (platform === "win32") {
|
|
return join(process.env.APPDATA || home, "Cursor/User/globalStorage/state.vscdb");
|
|
}
|
|
return join(home, ".config/Cursor/User/globalStorage/state.vscdb");
|
|
}
|
|
|
|
export function getCursorVersion(): string {
|
|
const now = Date.now();
|
|
if (cachedVersion && now - cachedAt < CACHE_TTL_MS) {
|
|
return cachedVersion;
|
|
}
|
|
|
|
try {
|
|
const esmRequire = createRequire(import.meta.url);
|
|
const Database = esmRequire("better-sqlite3");
|
|
const db = new Database(getCursorDbPath(), { readonly: true, fileMustExist: true });
|
|
try {
|
|
const row = db.prepare("SELECT value FROM itemTable WHERE key = ?").get(DB_KEY) as
|
|
| { value: string }
|
|
| undefined;
|
|
if (row?.value) {
|
|
cachedVersion = row.value;
|
|
cachedAt = now;
|
|
return cachedVersion;
|
|
}
|
|
} finally {
|
|
db.close();
|
|
}
|
|
} catch {
|
|
// DB missing or unreadable — fall through to default
|
|
}
|
|
|
|
return FALLBACK_VERSION;
|
|
}
|
|
|
|
/** Exposed for testing: reset the in-memory cache so the next call re-reads the DB. */
|
|
export function resetCursorVersionCache(): void {
|
|
cachedVersion = null;
|
|
cachedAt = 0;
|
|
}
|