agentic-qe 3.6.13 → 3.6.14

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.
@@ -904,7 +904,7 @@
904
904
  },
905
905
  "metadata": {
906
906
  "generatedBy": "Agentic QE Fleet",
907
- "fleetVersion": "3.6.13",
907
+ "fleetVersion": "3.6.14",
908
908
  "manifestVersion": "1.3.0",
909
909
  "lastUpdated": "2026-02-04T00:00:00.000Z",
910
910
  "contributors": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "3.6.13",
3
+ "version": "3.6.14",
4
4
  "description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 59 specialized QE agents, mathematical Coherence verification, deep Claude Flow integration",
5
5
  "main": "./v3/dist/index.js",
6
6
  "types": "./v3/dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "test": "cd v3 && npm test -- --run",
18
18
  "test:dev": "cd v3 && npm run test:dev",
19
19
  "test:v3": "cd v3 && npm test -- --run",
20
- "test:mcp": "cd v3 && npm test -- --run tests/unit/mcp/",
20
+ "test:mcp": "cd v3 && npm run test:unit:mcp",
21
21
  "test:mcp:integration": "cd v3 && npm test -- --run tests/integration/mcp/",
22
22
  "mcp:validate": "echo 'MCP validation: All tools registered in v3 MCP server' && exit 0",
23
23
  "mcp:report": "echo 'MCP Report: v3 uses vitest for test reporting' && exit 0",
package/v3/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to Agentic QE will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.6.14] - 2026-02-20
9
+
10
+ ### Fixed
11
+
12
+ - **MCP unit test timeouts and DevPod OOM crashes** (#294, #251) — Mock `createTaskExecutor` at module level in domain-handlers and wrapped-domain-handlers tests to prevent real task execution (each fleet init allocates ~200-400MB). Reduced fleet init from ~31x to ~5x per test file via shared beforeAll/afterAll lifecycle in core-handlers tests.
13
+ - **Vitest parallel execution causing memory exhaustion** — Changed `maxForks: 2` to `1` and disabled `fileParallelism` in vitest.config.ts. Added `bail: 3` to fail fast instead of accumulating OOM pressure.
14
+ - **CI artifact upload 403 Forbidden** (#294) — Added `actions: write` permission to `optimized-ci.yml` and `mcp-tools-test.yml` workflows for `upload-artifact@v4`.
15
+ - **Topology optimizer flaky convergence test** (#251) — Widened tolerance from `earlyAvg * 2` to `earlyAvg * 3` and added `retry: 3` for probabilistic convergence assertion.
16
+ - **Test assertions using 128-dim instead of 768-dim** — Updated remaining test assertions to match the 768-dim embedding vectors from v3.6.12's HNSW fix.
17
+
8
18
  ## [3.6.13] - 2026-02-19
9
19
 
10
20
  ### Fixed
@@ -115449,7 +115449,7 @@ var ALL_DOMAINS2 = [
115449
115449
  "enterprise-integration"
115450
115450
  ];
115451
115451
  function getAQEVersion() {
115452
- return true ? "3.6.13" : "3.0.0";
115452
+ return true ? "3.6.14" : "3.0.0";
115453
115453
  }
115454
115454
  function createDefaultConfig(projectName, projectRoot) {
115455
115455
  return {
@@ -140544,7 +140544,7 @@ async function cleanupAndExit(code = 0) {
140544
140544
  process.exit(code);
140545
140545
  }
140546
140546
  var program = new Command18();
140547
- var VERSION = true ? "3.6.13" : "0.0.0-dev";
140547
+ var VERSION = true ? "3.6.14" : "0.0.0-dev";
140548
140548
  program.name("aqe").description("Agentic QE - Domain-Driven Quality Engineering").version(VERSION);
140549
140549
  var registry = createCommandRegistry(context, cleanupAndExit, ensureInitialized);
140550
140550
  registry.registerAll(program);
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-qe/v3",
3
- "version": "3.6.13",
3
+ "version": "3.6.14",
4
4
  "description": "Agentic QE v3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 59 specialized QE agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",