@withpica/mcp-server 2.55.0 → 2.56.0

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
@@ -11,6 +11,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
 
12
12
  ## [Unreleased]
13
13
 
14
+ ## [2.56.0] - 2026-05-14
15
+
16
+ ### Added
17
+
18
+ - **`conflict_strategy` arg on `pica_import_execute` (PR #427, promoted to main via PR #428 on 2026-05-13).**
19
+ New optional input on the import executor MCP tool. Enum `["error", "skip"]`,
20
+ defaults to `"error"` to preserve current bulk-batch behavior. `"skip"` falls
21
+ back to per-row insert on Postgres 23505 unique-constraint collisions
22
+ (duplicate `tunecode`/`iswc`), so a single duplicate no longer kills the
23
+ entire batch — duplicates surface as warnings and the rest of the rows still
24
+ land. Backward-compatible (existing callers without `conflict_strategy` get
25
+ the default `"error"` behavior). Pairs with the underlying server-side
26
+ satellite-write fix that also shipped in PR #427 (PRO-registration fields
27
+ routed to `work_registrations` per ADR-125 WS5).
28
+
14
29
  ## [2.55.0] - 2026-05-13
15
30
 
16
31
  ### Added