testdriverai 7.5.18 → 7.5.20
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 +19 -0
- package/agent/lib/commands.js +3 -2
- package/interfaces/vitest-plugin.mjs +1 -1
- package/lib/sentry.js +1 -1
- package/mcp-server/dist/server.mjs +1 -1
- package/mcp-server/src/server.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 7.5.20 (2026-03-09)
|
|
2
|
+
|
|
3
|
+
## 🔧 Maintenance
|
|
4
|
+
|
|
5
|
+
- Update instance autoscaling parameters for improved resource management [Runner] (c5345356)
|
|
6
|
+
|
|
7
|
+
## 7.5.19 (2026-03-09)
|
|
8
|
+
|
|
9
|
+
## ✨ Features
|
|
10
|
+
|
|
11
|
+
- Enhanced element location debugging capabilities with improved cache hit tracking [API]
|
|
12
|
+
- Added comprehensive debugging support across multiple components for better troubleshooting [Web, API, Runner] (5564017d)
|
|
13
|
+
|
|
14
|
+
## 🔧 Maintenance
|
|
15
|
+
|
|
16
|
+
- Improved element location performance and reliability through optimized caching mechanisms [API] (5564017d)
|
|
17
|
+
- Streamlined automation workflow execution for better efficiency [Runner] (5564017d)
|
|
18
|
+
- Updated CI/CD workflows for enhanced release and testing processes [GitHub Actions] (5564017d)
|
|
19
|
+
|
|
1
20
|
## 7.5.18 (2026-03-09)
|
|
2
21
|
|
|
3
22
|
## 🔧 Maintenance
|
package/agent/lib/commands.js
CHANGED
|
@@ -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
|
-
},
|
|
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:
|
|
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:
|
|
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:
|
|
41
|
+
release: version,
|
|
42
42
|
sampleRate: 1.0,
|
|
43
43
|
tracesSampleRate: 1.0,
|
|
44
44
|
sendDefaultPii: true,
|
package/mcp-server/src/server.ts
CHANGED
|
@@ -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:
|
|
51
|
+
release: version,
|
|
52
52
|
sampleRate: 1.0,
|
|
53
53
|
tracesSampleRate: 1.0,
|
|
54
54
|
sendDefaultPii: true,
|