davinci-resolve-mcp 2.37.0 → 2.37.1
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 +17 -0
- package/README.md +1 -1
- package/install.py +1 -1
- package/package.json +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
Release history for the DaVinci Resolve MCP Server. The latest release is summarized in the root README; older entries live here to keep the README focused.
|
|
4
4
|
|
|
5
|
+
## What's New in v2.37.1
|
|
6
|
+
|
|
7
|
+
Test-suite hygiene — no server behavior changed.
|
|
8
|
+
|
|
9
|
+
- **Fixed** the legacy live-harness scripts (`test_all_tools`, `test_phase2`–`5`)
|
|
10
|
+
exiting at import when Resolve is unavailable, which crashed pytest
|
|
11
|
+
collection and surfaced as five loader errors under unittest discovery.
|
|
12
|
+
They now skip cleanly under both runners and keep the hard-exit behavior
|
|
13
|
+
when run as standalone scripts. (Adapted from a contribution by @diesdaas.)
|
|
14
|
+
- **Fixed** pytest mis-collecting `test_resolve20_api.py`'s internal `test()`
|
|
15
|
+
helper (renamed to `run_live_check()`), and made the batch-CLI synthetic-job
|
|
16
|
+
test independent of which transcription backends the host has installed.
|
|
17
|
+
- **CI**: the npm publish workflow no longer reports failure when the registry
|
|
18
|
+
accepted the publish but npm's retried request hit a consumed OIDC token;
|
|
19
|
+
it now verifies the published tarball shasum before failing. Runner actions
|
|
20
|
+
bumped to their Node 24 majors.
|
|
21
|
+
|
|
5
22
|
## What's New in v2.37.0
|
|
6
23
|
|
|
7
24
|
Render format-id fix, offline-media diagnosis, and a setup doctor.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# DaVinci Resolve MCP Server
|
|
2
2
|
|
|
3
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
4
4
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
5
5
|
[](docs/reference/api-coverage.md)
|
|
6
6
|
[-blue.svg)](#server-modes)
|
package/install.py
CHANGED
|
@@ -35,7 +35,7 @@ from src.utils.update_check import (
|
|
|
35
35
|
|
|
36
36
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
37
37
|
|
|
38
|
-
VERSION = "2.37.
|
|
38
|
+
VERSION = "2.37.1"
|
|
39
39
|
# Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
|
|
40
40
|
# Resolve's scripting bridge loads into newer interpreters on recent builds
|
|
41
41
|
# (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
|
package/package.json
CHANGED
package/src/granular/common.py
CHANGED
|
@@ -80,7 +80,7 @@ if not logging.getLogger().handlers:
|
|
|
80
80
|
handlers=[logging.StreamHandler()],
|
|
81
81
|
)
|
|
82
82
|
|
|
83
|
-
VERSION = "2.37.
|
|
83
|
+
VERSION = "2.37.1"
|
|
84
84
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
85
85
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
86
86
|
logger.info(f"Detected platform: {get_platform()}")
|