progmune-runtime 3.3.5 → 3.3.6

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.
@@ -363,6 +363,8 @@ const SAFEGUARD_RULES = [
363
363
  /listpack/, // Redis internal data structure
364
364
  /readSync|readQuery/, // internal I/O
365
365
  /findBig|findKey|findPk/, // internal search (not API)
366
+ /get_cache\w*/, // cache machinery (get_cache_alias — not data access)
367
+ /get_context_data/, // Django CBV context assembly — framework verb
366
368
  ],
367
369
  },
368
370
  // Mutations without any authentication. The Unauthenticated Access rule above
@@ -388,6 +390,7 @@ const SAFEGUARD_RULES = [
388
390
  /set_ssl_/, // SSL config setter
389
391
  /set_config/, // configuration setter
390
392
  /set_option/, // option setter
393
+ /\bsetup\b/, // framework/component setup — configuration, not data mutation
391
394
  ],
392
395
  },
393
396
  // ── Data Integrity (Foreign Key Validation) ──
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "progmune-runtime",
3
- "version": "3.3.5",
3
+ "version": "3.3.6",
4
4
  "description": "Progmune — AI Trust Decision Engine. Verify AI-generated code before it reaches production. Outputs APPROVED / NEEDS_REVIEW / BLOCKED with evidence.",
5
5
  "files": [
6
6
  "dist/",