@jigyasudham/veto 3.1.1 → 3.1.2

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/README.md CHANGED
@@ -509,6 +509,9 @@ costs milliseconds. The inference code is Veto's own.
509
509
 
510
510
  ## Release Notes
511
511
 
512
+ ### 3.1.2
513
+ - **The embedding table Veto installs is now a signed artifact.** Veto pins `@jigyasudham/veto-model` to an exact version, and that pin now points at `1.0.1`, which was published from CI with provenance — a signed attestation linking the package to the repository, workflow and commit that built it. `1.0.0` was published by hand and can never be attested, so the pin was the only way to close the gap. The payload itself is byte-for-byte identical between the two versions: same embeddings, same scales, same tokenizer, same vectors. Nothing about search behaviour, results or ranking changes.
514
+
512
515
  ### 3.1.1
513
516
  - **Bug fix: `veto memory export --markdown` always failed.** The markdown export assembled its query with the project filter placed after `ORDER BY`, which is not valid SQL, so the export reported failure instead of writing a file. Because the CLI always filters by the current project, the command could never succeed; the MCP tool `veto_memory_export` failed the same way whenever a project was specified. Exports without a project filter were unaffected, which is why this went unnoticed. Both queries are corrected and covered by regression tests.
514
517
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jigyasudham/veto",
3
3
  "mcpName": "io.github.jigyasudham/veto",
4
- "version": "3.1.1",
4
+ "version": "3.1.2",
5
5
  "description": "93 agentic tools. 49 specialists. Every major AI CLI. Self-learning. Zero extra cost on subscriptions.",
6
6
  "keywords": [
7
7
  "mcp",
@@ -56,7 +56,7 @@
56
56
  "test:coverage": "vitest run --coverage"
57
57
  },
58
58
  "dependencies": {
59
- "@jigyasudham/veto-model": "1.0.0",
59
+ "@jigyasudham/veto-model": "1.0.1",
60
60
  "@modelcontextprotocol/sdk": "^1.0.0",
61
61
  "web-tree-sitter": "^0.26.9",
62
62
  "zod": "^4.4.3"
package/server.json CHANGED
@@ -8,13 +8,13 @@
8
8
  "source": "github"
9
9
  },
10
10
  "websiteUrl": "https://github.com/jigyasudham/veto#readme",
11
- "version": "3.1.1",
11
+ "version": "3.1.2",
12
12
  "packages": [
13
13
  {
14
14
  "registryType": "npm",
15
15
  "registryBaseUrl": "https://registry.npmjs.org",
16
16
  "identifier": "@jigyasudham/veto",
17
- "version": "3.1.1",
17
+ "version": "3.1.2",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  }