@fidacy/openclaw-plugin 0.1.5 → 0.1.7

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
@@ -44,3 +44,10 @@ First release. Fidacy payment firewall as a native OpenClaw plugin:
44
44
  - Version sync only: `openclaw.plugin.json` had shipped 0.1.4 with a stale
45
45
  manifest version (Plugin Inspector `package-manifest-version-drift` warning).
46
46
  No code changes over 0.1.4.
47
+
48
+ ## 0.1.7 — 2026-07-03
49
+
50
+ - RESTORES the restart-durable firewall state from 0.1.4/0.1.5 (the 0.1.6 icon
51
+ release was built against a stale @fidacy/firewall dist and silently dropped
52
+ the rehydration — caught by the restart behavioral test, now part of the
53
+ release ritual). Keeps the 0.1.6 ClawHub card icon.
package/dist/index.js CHANGED
@@ -4671,7 +4671,7 @@ function resolveMandateRules(cfg) {
4671
4671
  }
4672
4672
 
4673
4673
  // ../mcp/src/telemetry.ts
4674
- var CLIENT_VERSION = true ? "0.1.5" : "dev";
4674
+ var CLIENT_VERSION = true ? "0.1.7" : "dev";
4675
4675
  var currentShell = "mcp";
4676
4676
  function setTelemetryShell(shell) {
4677
4677
  currentShell = shell;
@@ -4794,7 +4794,7 @@ function requestUpgrade() {
4794
4794
  }
4795
4795
 
4796
4796
  // ../mcp/src/provision.ts
4797
- var CLIENT_VERSION2 = true ? "0.1.5" : "dev";
4797
+ var CLIENT_VERSION2 = true ? "0.1.7" : "dev";
4798
4798
  function provisionEnabled() {
4799
4799
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
4800
4800
  return !(v === "1" || v === "true" || v === "yes");
@@ -2,7 +2,8 @@
2
2
  "id": "fidacy",
3
3
  "name": "Fidacy \u2014 Payment Firewall",
4
4
  "description": "A signed, independently-verifiable verdict on every money-moving agent action. Blocks wrong/lookalike payee, over-cap, and duplicate-invoice fraud before money moves. Non-custodial, local-first, deny-by-default.",
5
- "version": "0.1.5",
5
+ "icon": "https://fidacy.com/logo.png",
6
+ "version": "0.1.7",
6
7
  "contracts": {
7
8
  "tools": [
8
9
  "request_payment",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidacy/openclaw-plugin",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Fidacy payment firewall as a native OpenClaw plugin: signed, verifiable verdicts on every money-moving agent action, in-process (no MCP subprocess).",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://fidacy.com",
@@ -56,7 +56,7 @@
56
56
  "typebox": "1.1.39",
57
57
  "typescript": "^5.6.3",
58
58
  "@fidacy/firewall": "0.1.0",
59
- "@fidacy/mcp": "0.1.12"
59
+ "@fidacy/mcp": "0.1.13"
60
60
  },
61
61
  "scripts": {
62
62
  "build": "node scripts/bundle.mjs",