testdriverai 7.6.0-test.0 → 7.6.0-test.2
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 +18 -0
- package/docs/images/content/parse/output.png +0 -0
- package/mcp-server/dist/server.mjs +5 -3
- package/mcp-server/src/server.ts +5 -3
- package/package.json +1 -1
- package/sdk.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 7.6.0-test.2 (2026-03-12)
|
|
2
|
+
|
|
3
|
+
## 🔧 Maintenance
|
|
4
|
+
|
|
5
|
+
- Add automated publishing workflows for stable and canary releases [SDK] (2972b3be)
|
|
6
|
+
- Update CI workflows to improve testing efficiency and reliability [SDK] (2972b3be)
|
|
7
|
+
|
|
8
|
+
## 7.6.0-test.1 (2026-03-12)
|
|
9
|
+
|
|
10
|
+
🔧 Maintenance
|
|
11
|
+
|
|
12
|
+
- Improve CI/CD workflow reliability and testing coverage [SDK] (eb86a515)
|
|
13
|
+
- Update MCP server implementation for better stability [SDK] (eb86a515)
|
|
14
|
+
|
|
15
|
+
📝 Documentation
|
|
16
|
+
|
|
17
|
+
- Add new visual documentation for content parsing functionality [SDK] (eb86a515)
|
|
18
|
+
|
|
1
19
|
## 7.6.0-test.0 (2026-03-12)
|
|
2
20
|
|
|
3
21
|
## ✨ Features
|
|
Binary file
|
|
@@ -23,9 +23,11 @@ import { sessionManager } from "./session.js";
|
|
|
23
23
|
// Sentry
|
|
24
24
|
// =============================================================================
|
|
25
25
|
// Read version from main package.json (../../package.json from mcp-server/dist/)
|
|
26
|
-
const
|
|
27
|
-
const packageJson = JSON.parse(fs.readFileSync(
|
|
26
|
+
const sdkRoot = path.join(path.dirname(fileURLToPath(import.meta.url)), "..", "..");
|
|
27
|
+
const packageJson = JSON.parse(fs.readFileSync(path.join(sdkRoot, "package.json"), "utf-8"));
|
|
28
28
|
const version = packageJson.version || "1.0.0";
|
|
29
|
+
const channelConfig = JSON.parse(fs.readFileSync(path.join(sdkRoot, "channel.json"), "utf-8"));
|
|
30
|
+
const releaseChannel = channelConfig.active || "dev";
|
|
29
31
|
const isSentryEnabled = () => {
|
|
30
32
|
if (process.env.TD_TELEMETRY === "false") {
|
|
31
33
|
return false;
|
|
@@ -37,7 +39,7 @@ if (isSentryEnabled()) {
|
|
|
37
39
|
Sentry.init({
|
|
38
40
|
dsn: process.env.SENTRY_DSN ||
|
|
39
41
|
"https://452bd5a00dbd83a38ee8813e11c57694@o4510262629236736.ingest.us.sentry.io/4510480443637760",
|
|
40
|
-
environment:
|
|
42
|
+
environment: releaseChannel,
|
|
41
43
|
release: version,
|
|
42
44
|
sampleRate: 1.0,
|
|
43
45
|
tracesSampleRate: 1.0,
|
package/mcp-server/src/server.ts
CHANGED
|
@@ -30,9 +30,11 @@ import { sessionManager, type SessionState } from "./session.js";
|
|
|
30
30
|
// =============================================================================
|
|
31
31
|
|
|
32
32
|
// Read version from main package.json (../../package.json from mcp-server/dist/)
|
|
33
|
-
const
|
|
34
|
-
const packageJson = JSON.parse(fs.readFileSync(
|
|
33
|
+
const sdkRoot = path.join(path.dirname(fileURLToPath(import.meta.url)), "..", "..");
|
|
34
|
+
const packageJson = JSON.parse(fs.readFileSync(path.join(sdkRoot, "package.json"), "utf-8"));
|
|
35
35
|
const version = packageJson.version || "1.0.0";
|
|
36
|
+
const channelConfig = JSON.parse(fs.readFileSync(path.join(sdkRoot, "channel.json"), "utf-8"));
|
|
37
|
+
const releaseChannel = channelConfig.active || "dev";
|
|
36
38
|
|
|
37
39
|
const isSentryEnabled = () => {
|
|
38
40
|
if (process.env.TD_TELEMETRY === "false") {
|
|
@@ -47,7 +49,7 @@ if (isSentryEnabled()) {
|
|
|
47
49
|
dsn:
|
|
48
50
|
process.env.SENTRY_DSN ||
|
|
49
51
|
"https://452bd5a00dbd83a38ee8813e11c57694@o4510262629236736.ingest.us.sentry.io/4510480443637760",
|
|
50
|
-
environment:
|
|
52
|
+
environment: releaseChannel,
|
|
51
53
|
release: version,
|
|
52
54
|
sampleRate: 1.0,
|
|
53
55
|
tracesSampleRate: 1.0,
|
package/package.json
CHANGED
package/sdk.js
CHANGED
|
@@ -1910,7 +1910,7 @@ class TestDriverSDK {
|
|
|
1910
1910
|
// Add web log tracking with domain wildcard pattern, then start dashcam
|
|
1911
1911
|
if (this.dashcamEnabled) {
|
|
1912
1912
|
const domainPattern = this._getUrlDomainPattern(url);
|
|
1913
|
-
|
|
1913
|
+
await this.dashcam.addWebLog(domainPattern, "Web Logs");
|
|
1914
1914
|
|
|
1915
1915
|
// Start dashcam recording after logs are configured
|
|
1916
1916
|
if (!(await this.dashcam.isRecording())) {
|
|
@@ -2477,7 +2477,7 @@ with zipfile.ZipFile(io.BytesIO(zip_data)) as zf:
|
|
|
2477
2477
|
const pattern = this._provisionedChromeUrl
|
|
2478
2478
|
? this._getUrlDomainPattern(this._provisionedChromeUrl)
|
|
2479
2479
|
: "**";
|
|
2480
|
-
|
|
2480
|
+
await this.dashcam.addWebLog(pattern, "Web Logs");
|
|
2481
2481
|
}
|
|
2482
2482
|
|
|
2483
2483
|
// Start recording if not already recording
|