agentic-qe 3.1.1 → 3.1.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
@@ -5,6 +5,18 @@ All notable changes to the Agentic QE project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.1.3] - 2026-01-22
9
+
10
+ ### Fixed
11
+
12
+ - **CI: Updated package-lock.json** - Fixed npm ci failure due to lock file out of sync with package.json after dependency changes.
13
+
14
+ ## [3.1.2] - 2026-01-22
15
+
16
+ ### Fixed
17
+
18
+ - **Critical: Missing `@faker-js/faker` dependency** - Also moved from `devDependencies` to `dependencies`. The test-generator service imports this at runtime for generating realistic test data.
19
+
8
20
  ## [3.1.1] - 2026-01-22
9
21
 
10
22
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 51 specialized QE agents, deep Claude Flow integration",
5
5
  "main": "./v3/dist/index.js",
6
6
  "types": "./v3/dist/index.d.ts",
@@ -129,7 +129,8 @@
129
129
  "winston": "^3.18.3",
130
130
  "ws": "^8.18.3",
131
131
  "yaml": "^2.8.1",
132
- "typescript": "^5.9.3"
132
+ "typescript": "^5.9.3",
133
+ "@faker-js/faker": "^10.2.0"
133
134
  },
134
135
  "optionalDependencies": {
135
136
  "@ruvector/attention-darwin-arm64": "0.1.3",
@@ -167,7 +168,6 @@
167
168
  },
168
169
  "devDependencies": {
169
170
  "@axe-core/playwright": "^4.11.0",
170
- "@faker-js/faker": "^10.0.0",
171
171
  "@jest/globals": "^30.2.0",
172
172
  "@jest/test-sequencer": "^30.2.0",
173
173
  "@playwright/test": "^1.57.0",
@@ -83268,7 +83268,7 @@ async function cleanupAndExit(code = 0) {
83268
83268
  process.exit(code);
83269
83269
  }
83270
83270
  var program = new Command4();
83271
- var VERSION = true ? "3.1.1" : "0.0.0-dev";
83271
+ var VERSION = true ? "3.1.3" : "0.0.0-dev";
83272
83272
  program.name("aqe").description("Agentic QE - Domain-Driven Quality Engineering").version(VERSION);
83273
83273
  program.command("init").description("Initialize the AQE v3 system").option("-d, --domains <domains>", "Comma-separated list of domains to enable", "all").option("-m, --max-agents <number>", "Maximum concurrent agents", "15").option("--memory <backend>", "Memory backend (sqlite|agentdb|hybrid)", "hybrid").option("--lazy", "Enable lazy loading of domains").option("--wizard", "Run interactive setup wizard").option("--auto", "Auto-configure based on project analysis").option("--minimal", "Minimal configuration (skip optional features)").option("--skip-patterns", "Skip loading pre-trained patterns").option("--with-n8n", "Install n8n workflow testing agents and skills").option("--auto-migrate", "Automatically migrate from v2 if detected").action(async (options) => {
83274
83274
  try {
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-qe/v3",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "description": "Agentic QE v3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 51 specialized QE agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",