chore: version packages - #17
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 6, 2026 13:07
16ccf01 to
5848817
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
@murky-web/oxlint-plugin-solid@1.2.0
Minor Changes
8fdeefb: Add two rules for Solid 2.0's split effects and unowned ref callbacks, and
repair two existing ones.
solid/no-untracked-effect-readreports a reactive read in the apply phase of atwo-argument
createEffect. That phase runs untracked, socreateEffect(() => roomId(), (id) => connect(id, theme()))never re-runs whenthemechanges. Nothing reported this:reactivitymarks the apply phase as atracked scope, and its model has no state for "matches, but does not subscribe".
solid/no-owned-primitives-in-refreportscreateEffect,onCleanupandrelated primitives inside a ref callback. Solid 2.0 ref callbacks are unowned —
getOwner()returns null — so the effect is never disposed and the cleanupnever runs. Directive factories, which create these primitives while they still
have an owner, are unaffected.
solid/no-setter-in-effectnow also reports an async apply phase that awaits andwrites the result back into a signal. Its existing check requires every
statement to be a setter call, which an
awaitbreaks.solid/prefer-class-objectmatched only the lowercaseclasslist. JSX propnames are case-sensitive and the Solid 1 prop is
classList, so the migrationrule missed every real call site.
solid/importsnow knowscreateLoadingBoundary,createErrorBoundaryandcreateRevealOrder, so importing one from the wrong module is reported likeevery neighbouring primitive.
solid/jsx-no-duplicate-propsrecommendedclassList, which Solid 2.0 removedand the neighbouring rule reports. It now points at the object and array forms
of
class.@murky-web/typebuddy@1.4.0
Minor Changes
6c30131: Repair the oxlint autofixes and close the rules' blind spots.
Two fixes were producing broken code.
prefer-maybe-promiseinsertedreturn err()directly before a catch block's closing brace, socatch { log("boom") }becamecatch { log("boom") return err(); }, which doesnot parse.
require-try-catchrebuilt the function body line by line andstripped leading whitespace from every line — including lines inside template
literals, silently changing string values. It now wraps the body with two
zero-width insertions and leaves it byte for byte intact.
Six blind spots closed:
err(). It was fed to the same code path as thetry block, so a catch return got two reports with opposite fixes (
ok(value)and
err()), and--fixappended an unreachablereturn err()after anexisting return. Returns that hand back a value are now reported without a
fix — rewriting them to
err()would drop the author's fallback, and wherethe default belongs is the author's decision.
if, loop orswitchin a try block are wrapped.Only the try block's direct children were, so
try { if (flag) return "early"; return "late"; }wrapped just"late".Promise<T>in a type-level signature is reported.TSDeclareFunction,TSFunctionTypeandTSMethodSignaturewere routed through a check forasync, which a type signature can never carry, so all three visitors wereunreachable. Ambient
declarecontext stays exempt: rewriting a third-partycallback shape would misdescribe that API.
MaybePromiseandAsyncResultcount as awaited return types. Matching onlyPromisemeant a barereturn;in aMaybePromise<void>function was leftalone while its
Promise<void>twin was fixed — the rule went blind onalready-migrated code, and on the spelling the package recommends.
async () => fetch(url)has no block for the try/catch to live in and escaped entirely.
null | undefinedis left alone instead of being rewritten to theequivalent-but-longer
Optional<null>.Also fixed: an inserted helper import landed glued to the following statement in
any file that starts with a comment. Whether to append after an existing import
was inferred from the anchor's byte offset, which only answers that question in
a file whose first statement begins at byte zero.