testdriverai 7.8.0-test.2 → 7.8.0-test.3

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,21 @@
1
+ ## 7.8.0-test.3 (2026-03-13)
2
+
3
+ ## ✨ Features
4
+
5
+ - Add comprehensive find() cache permutation integration tests to improve test coverage and reliability [API] (6a957f69)
6
+ - Add changelog documentation to SDK package [SDK] (6a957f69)
7
+
8
+ ## 🐛 Bug Fixes
9
+
10
+ - Fix dashcam URL parsing issues that could cause recording problems [SDK] (6a957f69)
11
+
12
+ ## 🔧 Maintenance
13
+
14
+ - Update subdomain routing configuration for improved service connectivity [API] (6a957f69)
15
+ - Streamline GitHub Actions workflows by consolidating publish processes [CI] (6a957f69)
16
+ - Update environment configuration for test, dev, and canary deployments [Infrastructure] (6a957f69)
17
+ - Improve development container and VS Code task configurations [Development] (6a957f69)
18
+
1
19
  ## 7.8.0-test.2 (2026-03-13)
2
20
 
3
21
  ## ✨ Features
package/agent/index.js CHANGED
@@ -1944,8 +1944,8 @@ ${regression}
1944
1944
  const mapping = {
1945
1945
  "https://api.testdriver.ai": "https://console.testdriver.ai",
1946
1946
  "https://v6.testdriver.ai": "https://console.testdriver.ai",
1947
- "https://api.canary.testdriver.ai": "https://console.canary.testdriver.ai",
1948
- "https://api.test.testdriver.ai": "https://console.test.testdriver.ai",
1947
+ "https://api-canary.testdriver.ai": "https://console-canary.testdriver.ai",
1948
+ "https://api-test.testdriver.ai": "https://console-test.testdriver.ai",
1949
1949
  };
1950
1950
  if (mapping[apiRoot]) return mapping[apiRoot];
1951
1951
  // Local dev: API on localhost:1337 -> Web on localhost:3001
@@ -0,0 +1,9 @@
1
+ ---
2
+ title: "Changelog"
3
+ description: "Product updates and announcements"
4
+ rss: true
5
+ ---
6
+
7
+ {/* New entries are prepended automatically by the release workflow. */}
8
+ {/* Do not remove the CHANGELOG_MARKER comment below — the CI script inserts new <Update> blocks after it. */}
9
+ {/* CHANGELOG_MARKER */}
package/docs/docs.json CHANGED
@@ -122,6 +122,12 @@
122
122
  "/v7/client",
123
123
  "/v7/dashcam"
124
124
  ]
125
+ },
126
+ {
127
+ "group": "",
128
+ "pages": [
129
+ "/changelog"
130
+ ]
125
131
  }
126
132
  ]
127
133
  },
@@ -328,6 +334,11 @@
328
334
  "icon": "gauge-high",
329
335
  "label": "Dashboard",
330
336
  "href": "https://console.testdriver.ai"
337
+ },
338
+ {
339
+ "icon": "megaphone",
340
+ "label": "Changelog",
341
+ "href": "/changelog"
331
342
  }
332
343
  ]
333
344
  },
@@ -1250,7 +1250,7 @@ function getConsoleUrl(apiRoot) {
1250
1250
  if (!apiRoot) return "https://console.testdriver.ai";
1251
1251
 
1252
1252
  // Map known channel API URLs to their console equivalents
1253
- // e.g. https://api.canary.testdriver.ai -> https://console.canary.testdriver.ai
1253
+ // e.g. https://api-canary.testdriver.ai -> https://console-canary.testdriver.ai
1254
1254
  for (const url of Object.values(channelConfig.channels)) {
1255
1255
  if (url === apiRoot) {
1256
1256
  return url.replace("api", "console").replace("1337", "3001");
@@ -98,10 +98,10 @@ class Dashcam {
98
98
 
99
99
  if (!apiRoot) return "https://console.testdriver.ai";
100
100
 
101
- // Subdomain-based environments: api.{env}.testdriver.ai -> console.{env}.testdriver.ai
102
- const subdomainMatch = apiRoot.match(/^https:\/\/api\.(test|canary)\.testdriver\.ai/);
103
- if (subdomainMatch) {
104
- return `https://console.${subdomainMatch[1]}.testdriver.ai`;
101
+ // Dash-separated environments: api-{env}.testdriver.ai -> console-{env}.testdriver.ai
102
+ const envMatch = apiRoot.match(/^https:\/\/api-(test|canary)\.testdriver\.ai/);
103
+ if (envMatch) {
104
+ return `https://console-${envMatch[1]}.testdriver.ai`;
105
105
  }
106
106
 
107
107
  // Production: API on render.com or v6 -> Console on testdriver.ai
@@ -12,8 +12,8 @@ const semver = require("semver");
12
12
 
13
13
  const CHANNELS = {
14
14
  dev: "http://localhost:1337",
15
- test: "https://api.test.testdriver.ai",
16
- canary: "https://api.canary.testdriver.ai",
15
+ test: "https://api-test.testdriver.ai",
16
+ canary: "https://api-canary.testdriver.ai",
17
17
  latest: "https://api.testdriver.ai",
18
18
  };
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.8.0-test.2",
3
+ "version": "7.8.0-test.3",
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",