@melaya/runner 1.1.41 → 1.1.42

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.
Files changed (2) hide show
  1. package/dist/pythonEnv.js +11 -0
  2. package/package.json +1 -1
package/dist/pythonEnv.js CHANGED
@@ -204,6 +204,17 @@ const PIP_DEPS = [
204
204
  // via the anthropic/openai wheels; pinned explicitly so a future dep
205
205
  // shuffle in those SDKs can't silently break the crew risk watcher.
206
206
  "httpx",
207
+ // ── Database connectors + "Test via runner" (localDbProbe.py) ──────────
208
+ // asyncpg + PyMySQL power the PostgreSQL / MySQL tools (shared.tools.database)
209
+ // AND the runner-side connection probe. Without them the DB tools 401 at
210
+ // runtime and the "Test via runner" button returns "asyncpg/PyMySQL not
211
+ // installed on this runner". cryptography (also a common transitive dep) is
212
+ // pinned so the Snowflake key-pair JWT path in the probe always resolves.
213
+ // These are the runner twin of the requirements.lock entries — the runner
214
+ // venv installs from THIS list, not the lock, so they must be listed here too.
215
+ "asyncpg",
216
+ "PyMySQL",
217
+ "cryptography",
207
218
  ];
208
219
  export function venvPython() {
209
220
  return platform() === "win32"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melaya/runner",
3
- "version": "1.1.41",
3
+ "version": "1.1.42",
4
4
  "description": "Run Melaya AI pipelines locally with your own LM Studio or Ollama models",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,