quantum-suitability-validator-mcp 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.4] - 2026-06-04
4
+
5
+ ### Added
6
+ - `src/services/redis.ts` — Upstash Redis helpers (redisGet, redisSet, redisExpire, redisKeys, appendSessionLog) with prefix `quantum`
7
+ - Free tier Redis persistence: `loadFreeTierFromRedis` / `saveFreeTierToRedis` with Math.max merge
8
+ - API key Redis persistence: `saveKeyToRedis` / `loadApiKeysFromRedis` — first durable persistence for paid keys
9
+ - `appendSessionLog` with 24h TTL; `/session-log` endpoint (requires x-stats-key)
10
+ - `free_tier_breakdown` per-IP object on `/stats` response for current month
11
+ - `getEffectiveLimit(ip)` — accounts for trial extensions in stats.trial_extensions
12
+
13
+ ### Changed
14
+ - `quantum_assess_problem` and `quantum_readiness_report` descriptions rewritten for orchestral agent runtime selection
15
+ - `VERSION` bumped to `1.0.4`
16
+
3
17
  ## [1.0.3] - 2026-06-02
4
18
 
5
19
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quantum-suitability-validator-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server that screens quantum computing POC proposals against expert decision rules before budget allocation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",