Release packages#12
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 26, 2026 03:07
d58d9f6 to
1e1e35b
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 the packages will be published to npm 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
@svebcomponents/atproto.client@0.3.0
Minor Changes
6b1769a: Remove the unused
ServiceClient.hasTokengetter.Nothing consumed it, and class members are never tree-shaken, so it shipped in every bundle that touched
ServiceClient. Callers that need to know whether a session exists should usegetSession(), which reflects whether the token is still valid rather than merely present.Marked minor rather than patch because it removes a member from a published class, even though the surface was almost certainly unused outside this repo.
@svebcomponents/atproto.comments@0.2.2
Patch Changes
6b1769a: Ship a Svelte-external build and route bundler consumers to it via the
svelteexport condition, fixing a hydration crash (
Cannot read properties of null (reading 'f')) that wiped a correctly server-rendered thread on the client.The client build bundled its own Svelte runtime. In a SvelteKit/Vite app —
which has its own Svelte — that put two Svelte runtimes on the page, and
under
experimental.asyncthe app's async-boundary hydration would cross intothe component's separate runtime and dereference a null effect. The component
now also emits
dist/client-svelte/dist/server-svelte(Svelte markedexternal), and its package
exportsdeclare asveltecondition pointing atthem, so bundlers dedupe the component onto the app's single Svelte runtime.
The default
dist/client(Svelte bundled) is unchanged and still serves theCDN / bare-
importdrop-in, which has no app Svelte to dedupe against.6b1769a: Shrink the CDN / bare-
importclient bundle by 13% (93.6 kB → 81.3 kB raw,31.8 kB → 27.8 kB gzipped) by no longer shipping Svelte's dev-only code.
The build resolved
esm-env'sDEVexport through itsdev-fallback— aruntime
process.env.NODE_ENVcheck rather than a literal — so noif (DEV)branch in Svelte's runtime could be eliminated, and the full dev-only error and
warning message texts ended up in
dist/client. Fixed upstream in@svebcomponents/build0.3.3 (fix(build): resolve browser bundles against the production condition svebcomponents#126); this is thetoolchain bump that picks it up. No source or API changes.
6b1769a: Drop the vendored
HydrationHostand use the one@svebcomponents/ssrships.The local copy existed only to avoid destructuring
$props(), which under anearlier
@svebcomponents/ssrproduced writable prop signals with no parenteffect and broke hydration before the user's component mounted. On the current
pin (
svelte5.56.4,@svebcomponents/ssr0.3.1) that no longer reproduces:the SSR'd shadow DOM is still hydrated in place, with
experimental.asyncandthe async SSR wrapper both on or both off. Removing the vendored copy also
removes the build-config aliasing that kept every build variant pointed at it,
so the component now tracks upstream's host automatically. No API change.
@svebcomponents/atproto.bridge@0.2.1
Patch Changes