fix: Pin @changesets/cli to properly apply patch to release c2pa-web correctly - #196
Merged
Merged
Conversation
…s/cli The patch introduced in #194 targeted @changesets/cli@2.31.0, but the root workspace's own devDependency range (^2.29.6) resolved to a separate, unpatched 2.29.8 -- the version actually invoked by `pnpm ci:publish`, since that script runs from the workspace root, not from packages/c2pa-node (whose own ^2.31.0 devDependency was the only thing getting patched). This is why c2pa-web@0.14.1 still published with unrewritten workspace:* dependencies in the most recent release, identically to the original c2pa-web@0.14.0 failure: the concurrency fix was never actually in effect. Bumping root's range to ^2.31.0 lets pnpm dedupe to a single resolved version, so the existing patch now covers the invocation that matters. Verified via a clean `pnpm install --frozen-lockfile` that only the patched instance exists and that node_modules/.bin/changeset's NODE_PATH resolves to it. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
0.14.1 published with unresolved workspace:* dependencies for the same reason 0.14.0 did -- see the preceding commit fixing which @changesets/cli resolution the serial-publish patch covers. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
🦋 Changeset detectedLatest commit: 3dd262e The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
c2pa-web correctlyc2pa-web correctly
tmathern
approved these changes
Aug 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Republish again —
0.14.1still published with unresolvedworkspace:*dependencies, because the serial-publish patch from #194 was applied to a@changesets/cliresolution that the release pipeline never actually invoked (see the patch-targeting fix in this same release). No source changes; this release exists solely to get a correctly published package out now that the patch is wired up correctly.