Version Packages (beta) - #2320
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
June 13, 2026 02:38
139eb6e to
4c6b876
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
June 14, 2026 00:36
4c6b876 to
408f7bb
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.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@farmfe/plugin-vue-jsx@0.1.0-beta.0
Minor Changes
8c8f849: Add
@farmfe/plugin-vue-jsx— a Farm Rust plugin to transform Vue JSX/TSX at build time, ported fromswc-plugin-vue-jsx. Converts Vue-specific JSX syntax (directives likev-model,v-show,v-html,v-text,v-slots, custom directives) into Vue 3 runtime calls with zero JS overhead.Supports TypeScript props/emits type resolution (
resolveType), PatchFlags optimization injection (optimize),transformOnconversion, custom element patterns, object slots, and custom pragmas.@farmfe/js-plugin-less@2.0.0-beta.12
Patch Changes
@farmfe/js-plugin-postcss@2.0.0-beta.12
Patch Changes
@farmfe/js-plugin-sass@3.0.0-beta.12
Patch Changes
@farmfe/js-plugin-svgr@2.0.0-beta.12
Patch Changes
@farmfe/js-plugin-tailwindcss@2.0.0-beta.12
Patch Changes
@farmfe/js-plugin-vuetify@0.0.2-beta.0
Patch Changes
@farmfe/plugin-vueas the Vue SFC plugin when applying Vuetify auto imports.@farmfe/core@2.0.0-beta.12
Patch Changes
629aba4: Fix SWC plugin transforms hanging during example builds on macOS and Windows
CI runners (reproducible at
FARM_THREAD_NUMS=2).The hang was traced to wasmer's
Engine::compile/Engine::validatepathscontending on an internal
std::sync::Mutexwhen multiple Farm rayon workerthreads ran wasm plugin transforms in parallel. We now serialize the
transform_plugin_executor.transform()call via a process-wide mutex whilekeeping every other build phase fully parallel.
In addition, the plugin host's
block_onnow always runs on a dedicated,process-wide multi-threaded tokio runtime (constructed once instead of
per-call) and uses
tokio::task::block_in_placewhen invoked from inside anambient tokio runtime, avoiding worker-thread starvation.