chore: release - #4
Merged
Merged
Conversation
chore: release
The react-server export condition pointed to dist/react-server.js which only
had redirect and isRedirectError. RSC pages importing { Link } got undefined.
Removed the condition; main entry now has 'use client' so all exports are
properly wrapped as client references.
teneburu
force-pushed
the
changeset-release/main
branch
from
July 19, 2026 13:08
87049b9 to
aa97e38
Compare
teneburu
force-pushed
the
main
branch
2 times, most recently
from
July 19, 2026 13:08
ff3f572 to
39ba143
Compare
Contributor
Author
|
🎉 This PR is included in version 8.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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
@cyb3rcore/reactify@1.2.2
Patch Changes
0ce5bda: rsc: remove
react-serverexport condition, add'use client'to package entry (814d6821)The
react-serverexport condition pointed todist/react-server.jswhich only exportedredirectandisRedirectError. When the RSC environment resolved@cyb3rcore/reactify, it got this entry —Link,RouteProvider, etc. were missing, resolving toundefined. Removed the condition; the RSC environment now uses the main entry (dist/index.js) which has'use client', so all exports are properly wrapped as client references.