Skip to content

Commit cf72f4a

Browse files
authored
fix: use fixed versioning group for all published packages (#456)
* fix: use fixed versioning group for all published packages The experimental onlyUpdatePeerDependentsWhenOutOfRange option cannot prevent 0.x minor bumps from triggering major bumps in dependents — workspace:* resolves to an exact version internally, so any minor bump is always "out of range". Replace with a fixed group: all published packages share a single version number, eliminating the peer-dep cascade entirely. * fix: add all published packages to fixed versioning group Adds auth, gutenberg-to-portable-text, x402, and create-emdash which were missing from the fixed group.
1 parent 0b108cf commit cf72f4a

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

.changeset/config.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,30 @@
77
}
88
],
99
"commit": false,
10-
"fixed": [],
10+
"fixed": [
11+
[
12+
"emdash",
13+
"@emdash-cms/admin",
14+
"@emdash-cms/auth",
15+
"@emdash-cms/blocks",
16+
"@emdash-cms/cloudflare",
17+
"@emdash-cms/gutenberg-to-portable-text",
18+
"@emdash-cms/plugin-ai-moderation",
19+
"@emdash-cms/plugin-atproto",
20+
"@emdash-cms/plugin-audit-log",
21+
"@emdash-cms/plugin-color",
22+
"@emdash-cms/plugin-embeds",
23+
"@emdash-cms/plugin-forms",
24+
"@emdash-cms/plugin-webhook-notifier",
25+
"@emdash-cms/x402",
26+
"create-emdash"
27+
]
28+
],
1129
"linked": [],
1230
"access": "public",
1331
"baseBranch": "main",
1432
"updateInternalDependencies": "minor",
1533
"bumpVersionsWithWorkspaceProtocolOnly": true,
16-
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
17-
"onlyUpdatePeerDependentsWhenOutOfRange": true,
18-
"updateInternalDependents": "out-of-range"
19-
},
2034
"ignore": [
2135
"@emdash-cms/blocks-playground",
2236
"@emdash-cms/demo-cloudflare",

0 commit comments

Comments
 (0)