testdriverai 7.5.17 → 7.5.19

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,3 +1,22 @@
1
+ ## 7.5.19 (2026-03-09)
2
+
3
+ ## ✨ Features
4
+
5
+ - Enhanced element location debugging capabilities with improved cache hit tracking [API]
6
+ - Added comprehensive debugging support across multiple components for better troubleshooting [Web, API, Runner] (5564017d)
7
+
8
+ ## 🔧 Maintenance
9
+
10
+ - Improved element location performance and reliability through optimized caching mechanisms [API] (5564017d)
11
+ - Streamlined automation workflow execution for better efficiency [Runner] (5564017d)
12
+ - Updated CI/CD workflows for enhanced release and testing processes [GitHub Actions] (5564017d)
13
+
14
+ ## 7.5.18 (2026-03-09)
15
+
16
+ ## 🔧 Maintenance
17
+
18
+ - Optimize monitoring performance by reducing transaction sampling rate [Image Worker] (adb2a35d)
19
+
1
20
  ## 7.5.17 (2026-03-07)
2
21
 
3
22
  ## ✨ Features
@@ -1563,11 +1563,12 @@ const createCommands = (
1563
1563
 
1564
1564
  let result = null;
1565
1565
 
1566
+ const execTimeout = timeout || 300000;
1566
1567
  result = await sandbox.send({
1567
1568
  type: "commands.run",
1568
1569
  command: code,
1569
- timeout,
1570
- }, timeout || 300000);
1570
+ timeout: execTimeout,
1571
+ }, execTimeout);
1571
1572
 
1572
1573
  const execActionEndTime = Date.now();
1573
1574
  const execDuration = execActionEndTime - execActionLogStart;
@@ -36,7 +36,7 @@ function initializeSentry() {
36
36
  process.env.SENTRY_DSN ||
37
37
  "https://452bd5a00dbd83a38ee8813e11c57694@o4510262629236736.ingest.us.sentry.io/4510480443637760",
38
38
  environment: "vitest",
39
- release: `testdriverai@${version}`,
39
+ release: version,
40
40
  sampleRate: 1.0,
41
41
  tracesSampleRate: 1.0,
42
42
  enableLogs: true,
package/lib/sentry.js CHANGED
@@ -42,7 +42,7 @@ if (isEnabled()) {
42
42
  process.env.SENTRY_DSN ||
43
43
  "https://452bd5a00dbd83a38ee8813e11c57694@o4510262629236736.ingest.us.sentry.io/4510480443637760",
44
44
  environment: "sdk",
45
- release: `testdriverai@${version}`,
45
+ release: version,
46
46
  sampleRate: 1.0,
47
47
  tracesSampleRate: 1.0, // Sample 20% of transactions for performance
48
48
  enableLogs: true,
@@ -38,7 +38,7 @@ if (isSentryEnabled()) {
38
38
  dsn: process.env.SENTRY_DSN ||
39
39
  "https://452bd5a00dbd83a38ee8813e11c57694@o4510262629236736.ingest.us.sentry.io/4510480443637760",
40
40
  environment: "mcp",
41
- release: `testdriverai-mcp@${version}`,
41
+ release: version,
42
42
  sampleRate: 1.0,
43
43
  tracesSampleRate: 1.0,
44
44
  sendDefaultPii: true,
@@ -48,7 +48,7 @@ if (isSentryEnabled()) {
48
48
  process.env.SENTRY_DSN ||
49
49
  "https://452bd5a00dbd83a38ee8813e11c57694@o4510262629236736.ingest.us.sentry.io/4510480443637760",
50
50
  environment: "mcp",
51
- release: `testdriverai-mcp@${version}`,
51
+ release: version,
52
52
  sampleRate: 1.0,
53
53
  tracesSampleRate: 1.0,
54
54
  sendDefaultPii: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.5.17",
3
+ "version": "7.5.19",
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",