Version Packages - #397
Open
gtbuchanan[bot] wants to merge 1 commit into
Open
Conversation
gtbuchanan
Bot
force-pushed
the
changeset-release/main
branch
3 times, most recently
from
August 14, 2026 18:42
ec8ff95 to
ba7d06e
Compare
gtbuchanan
Bot
force-pushed
the
changeset-release/main
branch
from
August 14, 2026 20:39
ba7d06e to
d1ebd9e
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@gtbuchanan/cli@0.7.0
Minor Changes
6b1453b: Verify that published packages declare no private workspace dependencies
gtb verify(scopemanifest) now asserts that every install-timeworkspace:dependency of a published package is itself published. pnpmrewrites the specifier to the linked package's concrete version at pack
time without checking that the version ever reached the registry, so a
private workspace package ships in the tarball as a dependency no
consumer can resolve.
Covers
dependencies,peerDependencies, andoptionalDependencies.devDependenciesare exempt (publishing strips them) as is anythingbundleDependenciesactually bundles — an explicit name list covers anyfield, while
truecoversdependenciesalone, so a workspace peer oroptional dependency stays checked.
Patch Changes
c897a61: Make
gtb publishresilient to partial release failuresA release run no longer aborts on the first problem it meets. Failures are
collected and re-thrown together, so one package or channel can't strand the
rest, and the run reports everything that went wrong instead of only the first
thing.
The skip-if-exists check now reads a single
gh release listrather than agh release viewper package, and a failed listing raises instead of beingread as "nothing is released" — which previously sent every package on to a
create that could only fail. A create GitHub rejects because the tag is
already taken now counts as released, covering both a race with the listing
and a tag reserved by a deleted immutable release.
@gtbuchanan/vitest-config@0.2.0
Minor Changes
59b6616: Add a
testTimeoutoption toconfigure,configurePackage, andconfigureGlobalRaise it for a package whose tests do seconds of real work — building an
ESLint config, starting a TypeScript project service, spawning a child
process. On a machine running the rest of the build in parallel, that
work exceeds vitest's 5s default and the suite fails under load while
passing in isolation.
The trade is real: this is a duration bound, so a higher one catches a
performance regression later. It buys reliability, because a wall-clock
limit can't distinguish a slower test from a busier machine. Size it to
the worst contention the suite runs under, not to the test's own cost.
testTimeoutwas already accepted by the e2e entry points; this makesit consistent for source tests.
Fixes
testTimeout: 0on the e2e entry points, where vitest'sdocumented way to disable the limit was dropped by a truthiness check
and silently fell back to the default.
hookTimeoutderives from itthere, so both were affected.