testdriverai 7.2.72 → 7.2.73

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.
@@ -22,8 +22,8 @@ import { sessionManager } from "./session.js";
22
22
  // =============================================================================
23
23
  // Sentry
24
24
  // =============================================================================
25
- // Read version from package.json
26
- const packageJsonPath = path.join(path.dirname(fileURLToPath(import.meta.url)), "..", "package.json");
25
+ // Read version from main package.json (../../package.json from mcp-server/dist/)
26
+ const packageJsonPath = path.join(path.dirname(fileURLToPath(import.meta.url)), "..", "..", "package.json");
27
27
  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf-8"));
28
28
  const version = packageJson.version || "1.0.0";
29
29
  const isSentryEnabled = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.2.72",
3
+ "version": "7.2.73",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",