Skip to content

chore: Release 2025-04-05 13:19:16#413

Merged
colinaaa merged 1 commit intomainfrom
changeset-release/main
Apr 5, 2025
Merged

chore: Release 2025-04-05 13:19:16#413
colinaaa merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Mar 31, 2025

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

@lynx-js/rspeedy@0.9.0

Minor Changes

  • Bundle Rspeedy with Rslib for faster start-up times. (#395)

    This would be a BREAKING CHANGE for using global version of Rspeedy.

    Please ensure that you update your globally installed version of Rspeedy:

    npm install --global @lynx-js/rspeedy@latest
  • Bump Rsbuild v1.3.2 with Rspack v1.3.1 (#446)

  • BREAKING CHANGE: Added explicit TypeScript peer dependency requirement of 5.1.6 - 5.8.x. (#480)

    This formalizes the existing TypeScript version requirement in peerDependencies (marked as optional since it is only needed for TypeScript configurations). The actual required TypeScript version has not changed.

    Note: This may cause installation to fail if you have strict peer dependency checks enabled.

    Node.js v22.7+ users can bypass TypeScript installation using --experimental-transform-types or --experimental-strip-types flags. Node.js v23.6+ users don't need any flags. See Node.js - TypeScript for details.

Patch Changes

  • Support cli flag --base to specify the base path of the server. (#387)

  • Support cli option --environment to specify the name of environment to build (#462)

  • Select the most appropriate network interface. (#457)

    This is a port of webpack/webpack-dev-server#5411.

  • Support Node.js v23.6+ native TypeScript. (#481)

    See Node.js - TypeScript for more details.

  • Support cli option --env-mode to specify the env mode to load the .env.[mode] file. (#453)

  • Support dev.hmr and dev.liveReload. (#458)

  • Updated dependencies [df63722, df63722]:

    • @lynx-js/chunk-loading-webpack-plugin@0.2.0

@lynx-js/chunk-loading-webpack-plugin@0.2.0

Minor Changes

  • BREAKING CHANGE: Requires @rspack/core v1.3.0. (#400)

  • BREAKING CHANGE: Remove the deprecated ChunkLoadingRspackPlugin, use ChunkLoadingWebpackPlugin with output.chunkLoading: 'lynx' instead. (#400)

    import { ChunkLoadingWebpackPlugin } from "@lynx-js/chunk-loading-webpack-plugin";
    
    export default {
      output: {
        chunkLoading: "lynx",
      },
      plugins: [new ChunkLoadingWebpackPlugin()],
    };

@lynx-js/react@0.106.3

Patch Changes

  • Do some global var initialize in hydrate, which fixes error like cannot read property '-21' of undefined and some style issue. (#461)

  • fix: ensure ref lifecycle events run after firstScreen in the background thread (#434)

    This patch fixes an issue where ref lifecycle events were running before firstScreen events in the background thread async render mode, which could cause refs to be undefined when components try to access them.

@lynx-js/qrcode-rsbuild-plugin@0.3.5

Patch Changes

  • Build with Rslib (#396)

@lynx-js/react-rsbuild-plugin@0.9.5

Patch Changes

  • fix: add enableCSSInvalidation for encodeCSS of css HMR, this will fix pseudo-class (such as :active) not working in HMR. (#435)

  • Disable module.generator.json.JSONParse option as it increases the bundle size of main-thread.js. For more detail, please see this issue. (#402)

  • Updated dependencies [3e7988f, 7243242]:

    • @lynx-js/css-extract-webpack-plugin@0.5.3
    • @lynx-js/template-webpack-plugin@0.6.8
    • @lynx-js/react-alias-rsbuild-plugin@0.9.5
    • @lynx-js/react-refresh-webpack-plugin@0.3.2
    • @lynx-js/react-webpack-plugin@0.6.10
    • @lynx-js/web-webpack-plugin@0.6.3

@lynx-js/web-constants@0.10.1

Patch Changes

  • feat: onNapiModulesCall function add new param: dispatchNapiModules, napiModulesMap val add new param: handleDispatch. (#414)

    Now you can use them to actively communicate to napiModules (background thread) in onNapiModulesCall (ui thread).

  • Updated dependencies []:

    • @lynx-js/web-worker-rpc@0.10.1

@lynx-js/web-core@0.10.1

Patch Changes

  • docs: fix documents about lynx-view's properties (#412)

    Attributes should be hyphen-name: 'init-data', 'global-props'.

    now all properties has corresponding attributes.

  • feat: onNapiModulesCall function add new param: dispatchNapiModules, napiModulesMap val add new param: handleDispatch. (#414)

    Now you can use them to actively communicate to napiModules (background thread) in onNapiModulesCall (ui thread).

  • Updated dependencies [1af3b60]:

    • @lynx-js/web-constants@0.10.1
    • @lynx-js/web-worker-runtime@0.10.1
    • @lynx-js/web-worker-rpc@0.10.1

@lynx-js/web-elements@0.5.3

Patch Changes

  • feat: add layoutchange event support for x-view and x-text (#408)

@lynx-js/web-mainthread-apis@0.10.1

Patch Changes

  • Updated dependencies [1af3b60]:
    • @lynx-js/web-constants@0.10.1

@lynx-js/web-worker-runtime@0.10.1

Patch Changes

  • feat: onNapiModulesCall function add new param: dispatchNapiModules, napiModulesMap val add new param: handleDispatch. (#414)

    Now you can use them to actively communicate to napiModules (background thread) in onNapiModulesCall (ui thread).

  • Updated dependencies [1af3b60]:

    • @lynx-js/web-constants@0.10.1
    • @lynx-js/web-mainthread-apis@0.10.1
    • @lynx-js/web-worker-rpc@0.10.1

@lynx-js/css-extract-webpack-plugin@0.5.3

Patch Changes

  • Fix CSS HMR not working with nested entry name. (#456)

  • fix: add enableCSSInvalidation for encodeCSS of css HMR, this will fix pseudo-class (such as :active) not working in HMR. (#435)

@lynx-js/template-webpack-plugin@0.6.8

Patch Changes

  • fix: add enableCSSInvalidation for encodeCSS of css HMR, this will fix pseudo-class (such as :active) not working in HMR. (#435)

create-rspeedy@0.9.0

@lynx-js/react-alias-rsbuild-plugin@0.9.5

upgrade-rspeedy@0.9.0

@lynx-js/web-worker-rpc@0.10.1

@github-actions github-actions bot requested a review from PupilTong as a code owner March 31, 2025 10:35
@github-actions github-actions bot changed the title chore: Release 2025-03-31 10:35:29 chore: Release 2025-03-31 13:03:07 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from f698631 to 72cdfbf Compare March 31, 2025 13:03
@github-actions github-actions bot changed the title chore: Release 2025-03-31 13:03:07 chore: Release 2025-03-31 13:17:15 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 72cdfbf to 0bddf55 Compare March 31, 2025 13:17
@github-actions github-actions bot changed the title chore: Release 2025-03-31 13:17:15 chore: Release 2025-03-31 14:03:35 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0bddf55 to ef9d565 Compare March 31, 2025 14:03
@github-actions github-actions bot requested a review from colinaaa as a code owner March 31, 2025 14:03
@github-actions github-actions bot changed the title chore: Release 2025-03-31 14:03:35 chore: Release 2025-03-31 14:18:41 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from ef9d565 to 3521eec Compare March 31, 2025 14:18
@github-actions github-actions bot changed the title chore: Release 2025-03-31 14:18:41 chore: Release 2025-03-31 14:33:12 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3521eec to fbbb352 Compare March 31, 2025 14:33
@github-actions github-actions bot changed the title chore: Release 2025-03-31 14:33:12 chore: Release 2025-03-31 14:37:16 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from fbbb352 to 8a85e92 Compare March 31, 2025 14:37
@github-actions github-actions bot changed the title chore: Release 2025-03-31 14:37:16 chore: Release 2025-03-31 14:55:20 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8a85e92 to c6929b2 Compare March 31, 2025 14:55
@github-actions github-actions bot changed the title chore: Release 2025-03-31 14:55:20 chore: Release 2025-03-31 15:19:05 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from c6929b2 to f75dedc Compare March 31, 2025 15:19
@github-actions github-actions bot changed the title chore: Release 2025-03-31 15:19:05 chore: Release 2025-03-31 16:09:32 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from f75dedc to e617409 Compare March 31, 2025 16:09
@github-actions github-actions bot changed the title chore: Release 2025-03-31 16:09:32 chore: Release 2025-03-31 16:56:03 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from e617409 to 4616781 Compare March 31, 2025 16:56
@github-actions github-actions bot changed the title chore: Release 2025-03-31 16:56:03 chore: Release 2025-03-31 17:57:08 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 4616781 to 479b77b Compare March 31, 2025 17:57
@github-actions github-actions bot changed the title chore: Release 2025-03-31 17:57:08 chore: Release 2025-03-31 18:30:07 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 479b77b to d9b2cc4 Compare March 31, 2025 18:30
@github-actions github-actions bot changed the title chore: Release 2025-03-31 18:30:07 chore: Release 2025-03-31 18:43:55 Mar 31, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from d9b2cc4 to 0be6834 Compare March 31, 2025 18:44
@github-actions github-actions bot changed the title chore: Release 2025-03-31 18:43:55 chore: Release 2025-04-01 01:26:20 Apr 1, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0be6834 to d120fb8 Compare April 1, 2025 01:26
@github-actions github-actions bot changed the title chore: Release 2025-04-01 11:28:14 chore: Release 2025-04-01 11:52:00 Apr 1, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 2f7a23c to 1db3a79 Compare April 1, 2025 11:52
@github-actions github-actions bot changed the title chore: Release 2025-04-01 11:52:00 chore: Release 2025-04-01 12:34:19 Apr 1, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 1db3a79 to bac4683 Compare April 1, 2025 12:34
@github-actions github-actions bot changed the title chore: Release 2025-04-01 12:34:19 chore: Release 2025-04-01 13:36:11 Apr 1, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from bac4683 to ee6f86a Compare April 1, 2025 13:36
@github-actions github-actions bot changed the title chore: Release 2025-04-01 13:36:11 chore: Release 2025-04-01 17:26:31 Apr 1, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from ee6f86a to b902877 Compare April 1, 2025 17:26
@github-actions github-actions bot changed the title chore: Release 2025-04-01 17:26:31 chore: Release 2025-04-01 17:49:25 Apr 1, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from b902877 to bf3a02f Compare April 1, 2025 17:49
@github-actions github-actions bot changed the title chore: Release 2025-04-01 17:49:25 chore: Release 2025-04-02 02:39:14 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from bf3a02f to 4b4f9d7 Compare April 2, 2025 02:39
@github-actions github-actions bot changed the title chore: Release 2025-04-02 02:39:14 chore: Release 2025-04-02 03:32:10 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 4b4f9d7 to 9119522 Compare April 2, 2025 03:32
@github-actions github-actions bot changed the title chore: Release 2025-04-02 03:32:10 chore: Release 2025-04-02 04:02:35 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9119522 to efd8cd2 Compare April 2, 2025 04:02
@github-actions github-actions bot changed the title chore: Release 2025-04-02 04:02:35 chore: Release 2025-04-02 07:21:43 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from efd8cd2 to 6088dbe Compare April 2, 2025 07:21
@github-actions github-actions bot changed the title chore: Release 2025-04-02 07:21:43 chore: Release 2025-04-02 07:54:13 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 6088dbe to d717e9d Compare April 2, 2025 07:54
@github-actions github-actions bot changed the title chore: Release 2025-04-02 07:54:13 chore: Release 2025-04-02 09:08:05 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from d717e9d to 222e1ad Compare April 2, 2025 09:08
@github-actions github-actions bot changed the title chore: Release 2025-04-02 09:08:05 chore: Release 2025-04-02 10:31:06 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 222e1ad to df1dadb Compare April 2, 2025 10:31
@github-actions github-actions bot changed the title chore: Release 2025-04-02 10:31:06 chore: Release 2025-04-02 11:05:40 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from df1dadb to dee1f4a Compare April 2, 2025 11:05
@github-actions github-actions bot changed the title chore: Release 2025-04-02 11:05:40 chore: Release 2025-04-02 14:45:52 Apr 2, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from dee1f4a to e920b5e Compare April 2, 2025 14:46
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