From 84c1bcbfc210d1313ea2d9275a9d110f82bc638b Mon Sep 17 00:00:00 2001 From: jsonbailey Date: Mon, 27 Apr 2026 13:56:42 -0500 Subject: [PATCH] ci: enable automatic peer dependency updates in release-please Pre-1.0, ^0.x.0 ranges are narrow (>=0.x.0 <0.(x+1).0), so every minor bump to server-sdk-ai breaks the peer dep constraint in provider packages. Setting updatePeerDependencies to true ensures release-please keeps them in sync automatically. Revert to false after the 1.0 release. Co-Authored-By: Claude Sonnet 4.6 --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index ff6931f647..99a007ad08 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -305,7 +305,7 @@ "plugins": [ { "type": "node-workspace", - "updatePeerDependencies": false + "updatePeerDependencies": true } ] }