@synapsor/runner 0.1.2 → 0.1.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.
package/CHANGELOG.md CHANGED
@@ -4,10 +4,36 @@
4
4
 
5
5
  No unreleased changes yet.
6
6
 
7
+ ## 0.1.4
8
+
9
+ ### Public Repository Metadata
10
+
11
+ - Points the packaged npm README and repository metadata at the public GitHub
12
+ repository: `https://github.com/Synapsor/Synapsor-Runner`.
13
+ - Pins the CI badge to the `main` branch so Dependabot PR failures do not make
14
+ the public project front door look broken.
15
+ - Adds Dependabot guardrails so semver-major dependency updates are deliberate
16
+ migrations instead of automatic public PR noise.
17
+
18
+ ## 0.1.3
19
+
20
+ ### Public npm DX
21
+
22
+ - Prepares the spec-ready Runner package for the normal untagged npm path so
23
+ developers can use `npx -y -p @synapsor/runner synapsor-runner ...` without
24
+ knowing about the temporary `next` release-candidate tag.
25
+ - Keeps the same contract/spec functionality as `0.1.2`; this is a release
26
+ hygiene patch for public install and README/package-page verification.
27
+ - `@synapsor/spec@0.1.0` and `@synapsor/dsl@0.1.0` remain the canonical
28
+ contract packages.
29
+
7
30
  ## 0.1.2
8
31
 
9
32
  ### Contract Compatibility
10
33
 
34
+ - Publishes the canonical contract packages as `@synapsor/spec@0.1.0` and
35
+ `@synapsor/dsl@0.1.0`, with `@synapsor/runner@0.1.2` available on the `next`
36
+ npm tag for round-trip verification before promotion.
11
37
  - Documents the canonical `synapsor.contract.json` path for contracts produced
12
38
  by the DSL, Cloud, or the C++ exporter.
13
39
  - Adds OSS-side conformance notes for C++/Cloud export snapshots that validate
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@synapsor/runner.svg)](https://www.npmjs.com/package/@synapsor/runner)
4
4
  [![license: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE)
5
- [![ci](https://github.com/synapsor-ai/synapsor-runner/actions/workflows/ci.yml/badge.svg)](https://github.com/synapsor-ai/synapsor-runner/actions/workflows/ci.yml)
5
+ [![ci](https://github.com/Synapsor/Synapsor-Runner/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Synapsor/Synapsor-Runner/actions/workflows/ci.yml?query=branch%3Amain)
6
6
 
7
7
  Stop giving AI agents `execute_sql()`. Give them reviewed business actions.
8
8
 
package/dist/runner.mjs CHANGED
File without changes
@@ -10,10 +10,36 @@ 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.4
14
+
15
+ ### Public Repository Metadata
16
+
17
+ - Points the packaged npm README and repository metadata at the public GitHub
18
+ repository: `https://github.com/Synapsor/Synapsor-Runner`.
19
+ - Pins the CI badge to the `main` branch so Dependabot PR failures do not make
20
+ the public project front door look broken.
21
+ - Adds Dependabot guardrails so semver-major dependency updates are deliberate
22
+ migrations instead of automatic public PR noise.
23
+
24
+ ## 0.1.3
25
+
26
+ ### Public npm DX
27
+
28
+ - Prepares the spec-ready Runner package for the normal untagged npm path so
29
+ developers can use `npx -y -p @synapsor/runner synapsor-runner ...` without
30
+ knowing about the temporary `next` release-candidate tag.
31
+ - Keeps the same contract/spec functionality as `0.1.2`; this is a release
32
+ hygiene patch for public install and README/package-page verification.
33
+ - `@synapsor/spec@0.1.0` and `@synapsor/dsl@0.1.0` remain the canonical
34
+ contract packages.
35
+
13
36
  ## 0.1.2
14
37
 
15
38
  ### Contract Compatibility
16
39
 
40
+ - Publishes the canonical contract packages as `@synapsor/spec@0.1.0` and
41
+ `@synapsor/dsl@0.1.0`, with `@synapsor/runner@0.1.2` available on the `next`
42
+ npm tag for round-trip verification before promotion.
17
43
  - Documents the canonical `synapsor.contract.json` path for contracts produced
18
44
  by the DSL, Cloud, or the C++ exporter.
19
45
  - 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.4",
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",
@@ -65,16 +70,12 @@
65
70
  "homepage": "https://synapsor.ai",
66
71
  "repository": {
67
72
  "type": "git",
68
- "url": "git+https://github.com/synapsor-ai/synapsor-runner.git"
73
+ "url": "git+https://github.com/Synapsor/Synapsor-Runner.git"
69
74
  },
70
75
  "bugs": {
71
76
  "url": "https://synapsor.ai/contact"
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
+ }