chore(release): version packages - #35
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 12, 2026 12:34
ad5bf95 to
c167efc
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
@dunky.dev/dialog@0.2.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
Updated dependencies [
827c079]:@dunky.dev/controllable@0.1.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
@dunky.dev/overlay@0.1.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
@dunky.dev/dom-focus-trap@0.1.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
@dunky.dev/dom-navigation@0.1.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
@dunky.dev/dom-overlay@0.1.1
Patch Changes
#32
548ef7cThanks @ivanbanov! - Anchor the overlay layer stack and the scroll-lock registry on a realm-globalkeyed by
Symbol.for, so they survive the module being loaded more than once ina single page (duplicate bundles in a monorepo or micro-frontend).
Both were plain module-level singletons. When a bundler ships two copies of the
module — a common monorepo/micro-frontend hazard — each copy got its own stack
and its own lock registry, so their "which layer is topmost" and "is the page
still locked" decisions drifted apart: Escape or an outside press could dismiss
the wrong dialog in a nested stack, and scroll lock could double-lock or leak.
Radix hit the same class of bug with its focus-scope stack
(Nested Popover in Dialog does not focus (focus scope stack in a monorepo) radix-ui/primitives#2815).
The shared state now resolves through a well-known global symbol, so every
duplicate copy rendezvous on the same instance. It is resolved lazily on first
use, so the packages keep their
sideEffects: falsecontract (no import-timeglobal write). No API change.
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
Updated dependencies [
827c079]:@dunky.dev/dom-scroll-lock@0.1.1
Patch Changes
#32
548ef7cThanks @ivanbanov! - Anchor the overlay layer stack and the scroll-lock registry on a realm-globalkeyed by
Symbol.for, so they survive the module being loaded more than once ina single page (duplicate bundles in a monorepo or micro-frontend).
Both were plain module-level singletons. When a bundler ships two copies of the
module — a common monorepo/micro-frontend hazard — each copy got its own stack
and its own lock registry, so their "which layer is topmost" and "is the page
still locked" decisions drifted apart: Escape or an outside press could dismiss
the wrong dialog in a nested stack, and scroll lock could double-lock or leak.
Radix hit the same class of bug with its focus-scope stack
(Nested Popover in Dialog does not focus (focus scope stack in a monorepo) radix-ui/primitives#2815).
The shared state now resolves through a well-known global symbol, so every
duplicate copy rendezvous on the same instance. It is resolved lazily on first
use, so the packages keep their
sideEffects: falsecontract (no import-timeglobal write). No API change.
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
@dunky.dev/react-dialog@0.2.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
Updated dependencies [
548ef7c,827c079]:@dunky.dev/react-use-focus-trap@0.1.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
Updated dependencies [
827c079]:@dunky.dev/react-use-scroll-lock@0.1.1
Patch Changes
#36
827c079Thanks @ivanbanov! - ShipSPEC.mdand the TypeScript sources in the published package, alongsidethe built
dist.The tarball used to carry
distandREADME.mdonly, so the two things youactually want when a behavior surprises you — the spec that defines the contract
and the code that implements it — were reachable only by finding the repo and
guessing which tag matches the installed version. Both now sit in
node_modules/<pkg>/, pinned to the exact version installed.Nothing about resolution changes:
publishConfigstill pointsmain,types,and
exportsatdist, and the sources are inert payload — read them, don'timport them.
Updated dependencies [
548ef7c,827c079]: