chore(release): 📦 version packages (canary)#25
Merged
Conversation
8c5a6a2 to
89432f3
Compare
89432f3 to
2ee9b33
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.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@fltsci/taurpc@2.0.0-canary.6
Patch Changes
#24
a0b7c5bThanks @johncarmack1984! - Bump dprint to current 2025 plugin/CLI versions and relaxoperatorPositiontomaintain.Plugin/CLI bumps:
Config tweak:
binaryExpression.operatorPosition,conditionalExpression.operatorPosition, andconditionalType.operatorPositionare set tomaintain. The previous default (nextLine) forced a specific multi-line style for&&,||, and ternaries.maintainaccepts whatever the writer used, which is friendlier for external contributors and removes a category of "works locally, fails CI" drift.No source files reformat as a result of these changes; running
dprint fmton main is a no-op after the bump.#23
fe1c820Thanks @johncarmack1984! - Disable the@typescript-eslint/no-unsafe-*rule family forsrc/index.ts.The runtime proxy dispatcher receives serialized values, applies user-supplied transforms, and forwards them. Static types cannot describe that flow without defeating the purpose; the typed contract lives in generated Specta bindings, not the dispatcher. The rules stay active for the rest of the codebase.
#27
8c705f1Thanks @johncarmack1984! - Add Rust toolchain setup step to the Release workflow.pin Rust toolchain to 1.95.0 for deterministic rustfmt #26 pinned the Rust toolchain via
rust-toolchain.tomland added adtolnay/rust-toolchainsetup step to.github/workflows/main.yml(CI). The Release workflow's "Sync formatting if necessary" step also runspnpm format->dprint fmt-> shells torustfmt, but had no setup step. With no pre-installed 1.95.0 toolchain on the runner, dprint's parallel rustfmt invocations all triggered concurrent rustup auto-installs that raced on the~/.rustup/downloads/*.partialrename, surfacing as "component download failed: No such file or directory" errors.Mirroring the CI step into the Release workflow installs the toolchain serially before the parallel formatter runs.
#26
7b51a1fThanks @johncarmack1984! - Pin Rust toolchain to 1.95.0 viarust-toolchain.toml.dprint's exec plugin shells out to
rustfmt --edition 2024for.rsfiles, but neither CI (ubuntu-latest) nor contributor environments had a pinnedrustfmtversion. Different rustfmt builds produce different layouts forif let/ let-chain bodies even with the same--editionflag, which surfaced as "works locally, fails CI" formatter drift. Pinning makes CI deterministic.Components:
rustfmt,clippy. Contributors withrustupwill auto-fetch 1.95.0 on first use; no extra setup needed.