Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update version for release (pre) #7307

Merged
merged 1 commit into from
Aug 31, 2023

Conversation

github-actions[bot]
Copy link
Contributor

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 release-next, this PR will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

release-next is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on release-next.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

  • Do not interpret JSX in .ts files (#7306)

    While JSX is supported in .js files for compatibility with existing apps and libraries,
    .ts files should not contain JSX. By not interpreting .ts files as JSX, .ts files
    can contain single-argument type generics without needing a comma to disambiguate from JSX:

    // this works in .ts files
    
    const id = <T>(x: T) => x;
    //          ^ single-argument type generic
    // this doesn't work in .tsx files
    
    const id = <T,>(x: T) => x;
    //          ^ is this a JSX element? or a single-argument type generic?
    // this works in .tsx files
    
    const id = <T,>(x: T) => x;
    //           ^ comma: this is a generic, not a JSX element
    
    const component = <h1>hello</h1>;
    //                   ^ no comma: this is a JSX element
  • Updated dependencies:

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

@remix-run/[email protected]

Patch Changes

[email protected]

[email protected]

remix

See the CHANGELOG.md in individual Remix packages for all changes.

@remix-run/[email protected]

@remix-run/[email protected]

@remix-run/[email protected]

@github-actions github-actions bot force-pushed the changeset-release/release-next branch from 51e3058 to 5beebf8 Compare August 30, 2023 21:13
@brophdawg11 brophdawg11 merged commit 4e52226 into release-next Aug 31, 2023
@brophdawg11 brophdawg11 deleted the changeset-release/release-next branch August 31, 2023 14:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant