@zackbart/connecta 0.7.4 → 0.7.5

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
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this package are documented here.
4
4
 
5
+ ## 0.7.5 — 2026-07-27
6
+
7
+ 0.7.5 makes the deployable Cloudflare Worker starter match Connecta's
8
+ pay-as-you-opt-in runtime behavior. The default config now runs on Workers Free;
9
+ accounts that want sandboxed `execute_code` add one paid Worker Loader binding,
10
+ and the existing optional `env.LOADER` wiring turns code mode on without a
11
+ source edit. There are no package API or runtime changes.
12
+
13
+ ### Changed
14
+
15
+ - **The Cloudflare Worker starter is now free-tier compatible by default.**
16
+ Its Worker Loader binding is an explicit paid-plan opt-in: adding that one
17
+ Wrangler block makes the already-optional `env.LOADER` register
18
+ `execute_code`, while leaving it absent serves the nine base meta-tools from
19
+ the same TypeScript. The Worker example, package README, and code-mode
20
+ reference now document the binding-as-switch pattern, plan requirement, and
21
+ deployment-owned `@cloudflare/codemode` install together.
22
+
5
23
  ## 0.7.4 — 2026-07-27
6
24
 
7
25
  0.7.4 moves the built-in QuickJS executor out of the HTTP-serving process. A
package/README.md CHANGED
@@ -170,8 +170,9 @@ Point an MCP client at `http://localhost:8787/mcp` with an
170
170
  Runnable deployments live in
171
171
  [`examples/`](https://github.com/zackbart/connecta/tree/main/examples):
172
172
  [`worker/`](https://github.com/zackbart/connecta/tree/main/examples/worker) is a
173
- deployable Cloudflare Worker with KV and D1 adapters, and the template to copy
174
- for a real deployment;
173
+ free-tier-compatible Cloudflare Worker with KV and D1 adapters, and the template
174
+ to copy for a real deployment; adding one Worker Loader binding opts it into
175
+ paid Dynamic Worker code mode without changing its TypeScript;
175
176
  [`node/`](https://github.com/zackbart/connecta/tree/main/examples/node) adds
176
177
  toolkits and code mode to the server above;
177
178
  [`docker/`](https://github.com/zackbart/connecta/tree/main/examples/docker) is a
package/dist/version.d.ts CHANGED
@@ -4,5 +4,5 @@
4
4
  * a bump that forgets this file fails the build rather than shipping a stale
5
5
  * version to `/health` and to downstream MCP handshakes.
6
6
  */
7
- export declare const CONNECTA_VERSION = "0.7.4";
7
+ export declare const CONNECTA_VERSION = "0.7.5";
8
8
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * a bump that forgets this file fails the build rather than shipping a stale
5
5
  * version to `/health` and to downstream MCP handshakes.
6
6
  */
7
- export const CONNECTA_VERSION = "0.7.4";
7
+ export const CONNECTA_VERSION = "0.7.5";
8
8
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zackbart/connecta",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "One MCP to rule them all — a single MCP endpoint aggregating many downstream connectors behind nine meta-tools.",
package/src/version.ts CHANGED
@@ -4,4 +4,4 @@
4
4
  * a bump that forgets this file fails the build rather than shipping a stale
5
5
  * version to `/health` and to downstream MCP handshakes.
6
6
  */
7
- export const CONNECTA_VERSION = "0.7.4";
7
+ export const CONNECTA_VERSION = "0.7.5";