@synapsor/runner 0.1.2 → 0.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
@@ -4,10 +4,25 @@
4
4
 
5
5
  No unreleased changes yet.
6
6
 
7
+ ## 0.1.3
8
+
9
+ ### Public npm DX
10
+
11
+ - Prepares the spec-ready Runner package for the normal untagged npm path so
12
+ developers can use `npx -y -p @synapsor/runner synapsor-runner ...` without
13
+ knowing about the temporary `next` release-candidate tag.
14
+ - Keeps the same contract/spec functionality as `0.1.2`; this is a release
15
+ hygiene patch for public install and README/package-page verification.
16
+ - `@synapsor/spec@0.1.0` and `@synapsor/dsl@0.1.0` remain the canonical
17
+ contract packages.
18
+
7
19
  ## 0.1.2
8
20
 
9
21
  ### Contract Compatibility
10
22
 
23
+ - Publishes the canonical contract packages as `@synapsor/spec@0.1.0` and
24
+ `@synapsor/dsl@0.1.0`, with `@synapsor/runner@0.1.2` available on the `next`
25
+ npm tag for round-trip verification before promotion.
11
26
  - Documents the canonical `synapsor.contract.json` path for contracts produced
12
27
  by the DSL, Cloud, or the C++ exporter.
13
28
  - Adds OSS-side conformance notes for C++/Cloud export snapshots that validate
package/dist/runner.mjs CHANGED
File without changes
@@ -10,10 +10,25 @@ npx -y -p @synapsor/runner synapsor-runner demo --quick
10
10
  The OSS runner command is `synapsor-runner`. The `synapsor` command is reserved
11
11
  for the Synapsor Cloud CLI.
12
12
 
13
+ ## 0.1.3
14
+
15
+ ### Public npm DX
16
+
17
+ - Prepares the spec-ready Runner package for the normal untagged npm path so
18
+ developers can use `npx -y -p @synapsor/runner synapsor-runner ...` without
19
+ knowing about the temporary `next` release-candidate tag.
20
+ - Keeps the same contract/spec functionality as `0.1.2`; this is a release
21
+ hygiene patch for public install and README/package-page verification.
22
+ - `@synapsor/spec@0.1.0` and `@synapsor/dsl@0.1.0` remain the canonical
23
+ contract packages.
24
+
13
25
  ## 0.1.2
14
26
 
15
27
  ### Contract Compatibility
16
28
 
29
+ - Publishes the canonical contract packages as `@synapsor/spec@0.1.0` and
30
+ `@synapsor/dsl@0.1.0`, with `@synapsor/runner@0.1.2` available on the `next`
31
+ npm tag for round-trip verification before promotion.
17
32
  - Documents the canonical `synapsor.contract.json` path for contracts produced
18
33
  by the DSL, Cloud, or the C++ exporter.
19
34
  - Adds OSS-side conformance notes for C++/Cloud export snapshots that validate
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synapsor/runner",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Stop giving AI agents execute_sql; expose reviewed Postgres/MySQL MCP actions with proposals, approval, writeback, and replay.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -52,6 +52,11 @@
52
52
  "engines": {
53
53
  "node": ">=22.5.0"
54
54
  },
55
+ "scripts": {
56
+ "build": "tsc -b && node ../../scripts/build-runner-package.mjs",
57
+ "prepack": "cd ../.. && corepack pnpm build:runner-package",
58
+ "test": "vitest run"
59
+ },
55
60
  "dependencies": {
56
61
  "@modelcontextprotocol/sdk": "1.29.0",
57
62
  "mysql2": "^3.11.0",
@@ -72,9 +77,5 @@
72
77
  },
73
78
  "publishConfig": {
74
79
  "access": "public"
75
- },
76
- "scripts": {
77
- "build": "tsc -b && node ../../scripts/build-runner-package.mjs",
78
- "test": "vitest run"
79
80
  }
80
- }
81
+ }