Skip to content

chore: Release 2025-09-15 10:03:49#1665

Merged
colinaaa merged 1 commit intomainfrom
changeset-release/main
Sep 15, 2025
Merged

chore: Release 2025-09-15 10:03:49#1665
colinaaa merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented Sep 8, 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/react@0.113.0

Minor Changes

  • fix: Delay execution of runOnMainThread() during initial render (#1667)

    When called during the initial render, runOnMainThread() would execute before the main-thread:ref was hydrated, causing it to be incorrectly set to null.

    This change delays the function's execution to ensure the ref is available and correctly assigned.

Patch Changes

  • Fix "TypeError: cannot read property '0' of undefined" in deferred list-item scenarios. (#1692)

    Deferred componentAtIndex causes nodes that quickly appear/disappear to be enqueued without __elements. Update signMap before __FlushElementTree to resolve the issue.

  • Keep the same <page/> element when calling rerender in testing library. (#1656)

  • Bump swc_core to 39.0.3. (#1721)

@lynx-js/tailwind-preset@0.3.0

Minor Changes

  • Added group-*, peer-*, and parent-* modifiers (ancestor, sibling, and direct-parent scopes) for uiVariants plugin. (#1741)

    Fixed prefix handling in prefixed projects — ui-* state markers are not prefixed, while scope markers (.group/.peer) honor config('prefix').

    BREAKING: Removed slash-based naming modifiers on self (non-standard); slash modifiers remain supported for scoped markers (e.g. group/menu, peer/tab).

    Bumped peer dependency to tailwindcss@^3.4.0 (required for use of internal features).

@lynx-js/react-webpack-plugin@0.7.0

Minor Changes

  • Remove @lynx-js/react from peerDependencies. (#1711)

  • Add a new required option workletRuntimePath. (#1711)

@lynx-js/rspeedy@0.11.2

Patch Changes

  • Support server.proxy. (#1745)

  • Support command and env parameters in the function exported by lynx.config.js. (#1669)

    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig(({ command, env }) => {
      const isBuild = command === "build";
      const isTest = env === "test";
    
      return {
        output: {
          minify: !isTest,
        },
        performance: {
          buildCache: isBuild,
        },
      };
    });
  • Support resolve.dedupe. (#1671)

    This is useful when having multiple duplicated packages in the bundle:

    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      resolve: {
        dedupe: ["tslib"],
      },
    });
  • Support resolve.aliasStrategy for controlling priority between tsconfig.json paths and resolve.alias (#1722)

    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      resolve: {
        alias: {
          "@": "./src",
        },
        // 'prefer-tsconfig' (default): tsconfig.json paths take priority
        // 'prefer-alias': resolve.alias takes priority
        aliasStrategy: "prefer-alias",
      },
    });
  • Bump Rsbuild v1.5.4 with Rspack v1.5.2. (#1644)

  • Updated dependencies [d7c5da3]:

    • @lynx-js/chunk-loading-webpack-plugin@0.3.3
    • @lynx-js/cache-events-webpack-plugin@0.0.2

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

Patch Changes

  • Fix using wrong version of @lynx-js/react/worklet-runtime. (#1711)

  • Be compat with @lynx-js/react v0.113.0 (#1667)

  • Disable builtin:lightningcss-loader for environments.web. (#1732)

  • Updated dependencies [5ad38e6, 69b3ae0, 69b3ae0, c2f90bd]:

    • @lynx-js/template-webpack-plugin@0.8.6
    • @lynx-js/react-webpack-plugin@0.7.0
    • @lynx-js/react-alias-rsbuild-plugin@0.10.14
    • @lynx-js/css-extract-webpack-plugin@0.6.2
    • @lynx-js/use-sync-external-store@1.5.0
    • @lynx-js/react-refresh-webpack-plugin@0.3.4

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

Patch Changes

  • Allow customization of the react$ alias. (#1653)

    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      resolve: {
        alias: {
          react$: "@lynx-js/react/compat",
        },
      },
    });

@lynx-js/web-constants@0.16.1

Patch Changes

  • feat: supports lazy bundle. (This feature requires @lynx-js/lynx-core >= 0.1.3) (#1235)

  • Updated dependencies []:

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

@lynx-js/web-core@0.16.1

Patch Changes

  • refactor: improve chunk loading (#1703)

  • feat: supports lazy bundle. (This feature requires @lynx-js/lynx-core >= 0.1.3) (#1235)

  • Updated dependencies [608f375]:

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

@lynx-js/web-core-server@0.16.1

Patch Changes

  • refactor: improve chunk loading (#1703)

  • feat: supports lazy bundle. (This feature requires @lynx-js/lynx-core >= 0.1.3) (#1235)

@lynx-js/web-elements@0.8.6

Patch Changes

  • fix: 1. svg use image tag to render, to differentiate background-image styles (#1668)

    1. use blob instead of raw data-uri

    Not using data-uri(data:image/svg+xml;utf8,${props.content})
    since it has follow limitations:

    < and > must be encoded to %3C and %3E.
    Double quotes must be converted to single quotes.
    Colors must use a non-hex format because # will not work inside data-uri.
    See: https://codepen.io/zvuc/pen/BWNLJL
    Instead, we use modern Blob API to create SVG URL that have the same support

  • Updated dependencies [d618304, 1d97fce]:

    • @lynx-js/web-elements-template@0.8.6

@lynx-js/web-elements-template@0.8.6

Patch Changes

  • x-overlay-ng prevent page scroll when visible (#1499)

  • fix: 1. svg use image tag to render, to differentiate background-image styles (#1668)

    1. use blob instead of raw data-uri

    Not using data-uri(data:image/svg+xml;utf8,${props.content})
    since it has follow limitations:

    < and > must be encoded to %3C and %3E.
    Double quotes must be converted to single quotes.
    Colors must use a non-hex format because # will not work inside data-uri.
    See: https://codepen.io/zvuc/pen/BWNLJL
    Instead, we use modern Blob API to create SVG URL that have the same support

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

Patch Changes

  • feat: supports lazy bundle. (This feature requires @lynx-js/lynx-core >= 0.1.3) (#1235)

  • Updated dependencies [608f375]:

    • @lynx-js/web-constants@0.16.1
    • @lynx-js/web-style-transformer@0.16.1

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

Patch Changes

  • feat: supports lazy bundle. (This feature requires @lynx-js/lynx-core >= 0.1.3) (#1235)

  • Updated dependencies [608f375]:

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

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

Patch Changes

  • Fix unmet peer dependency "@rspack/core@'^1.3.10". (#1660)

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

Patch Changes

  • fix: add appType field for lazy bundle for web (#1738)

create-rspeedy@0.11.2

upgrade-rspeedy@0.11.2

@lynx-js/web-style-transformer@0.16.1

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

@github-actions github-actions Bot requested a review from colinaaa as a code owner September 8, 2025 04:07
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Sep 8, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions Bot changed the title chore: Release 2025-09-08 04:07:19 chore: Release 2025-09-08 06:37:42 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from bbfcc35 to e8b2808 Compare September 8, 2025 06:37
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 06:37:42 chore: Release 2025-09-08 07:45:54 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from e8b2808 to 51844dc Compare September 8, 2025 07:46
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 07:45:54 chore: Release 2025-09-08 08:00:05 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 51844dc to 571fa52 Compare September 8, 2025 08:00
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 08:00:05 chore: Release 2025-09-08 08:55:13 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 571fa52 to c8dbad2 Compare September 8, 2025 08:55
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 08:55:13 chore: Release 2025-09-08 12:57:51 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from c8dbad2 to 02c8c6f Compare September 8, 2025 12:58
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 12:57:51 chore: Release 2025-09-08 12:59:27 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 02c8c6f to 0b2c8cd Compare September 8, 2025 12:59
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 12:59:27 chore: Release 2025-09-08 13:00:19 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 0b2c8cd to 6223dbe Compare September 8, 2025 13:00
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 13:00:19 chore: Release 2025-09-08 15:39:02 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 6223dbe to dcbbbb1 Compare September 8, 2025 15:39
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 15:39:02 chore: Release 2025-09-08 16:02:01 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from dcbbbb1 to d698a1f Compare September 8, 2025 16:02
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 16:02:01 chore: Release 2025-09-08 16:02:59 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from d698a1f to dc54042 Compare September 8, 2025 16:03
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 16:02:59 chore: Release 2025-09-08 16:04:24 Sep 8, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from dc54042 to 8712897 Compare September 8, 2025 16:04
@github-actions github-actions Bot changed the title chore: Release 2025-09-08 16:04:24 chore: Release 2025-09-09 02:48:20 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 8712897 to bc56d15 Compare September 9, 2025 02:48
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 02:48:20 chore: Release 2025-09-09 03:04:55 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from bc56d15 to 4644536 Compare September 9, 2025 03:05
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 03:04:55 chore: Release 2025-09-09 03:43:52 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from efb7495 to 397546d Compare September 9, 2025 10:09
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 10:09:06 chore: Release 2025-09-09 11:54:42 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 397546d to a6bacb4 Compare September 9, 2025 11:54
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 11:54:42 chore: Release 2025-09-09 12:01:25 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from a6bacb4 to 2bb8167 Compare September 9, 2025 12:01
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 12:01:25 chore: Release 2025-09-09 12:42:20 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 2bb8167 to 3598d63 Compare September 9, 2025 12:42
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 12:42:20 chore: Release 2025-09-09 13:40:23 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 3598d63 to 482d2aa Compare September 9, 2025 13:40
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 13:40:23 chore: Release 2025-09-09 14:36:35 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 482d2aa to dea8c08 Compare September 9, 2025 14:36
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 14:36:35 chore: Release 2025-09-09 14:38:00 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from dea8c08 to 256a1b1 Compare September 9, 2025 14:38
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 14:38:00 chore: Release 2025-09-09 14:53:19 Sep 9, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 256a1b1 to 9ca65ea Compare September 9, 2025 14:53
@github-actions github-actions Bot changed the title chore: Release 2025-09-09 14:53:19 chore: Release 2025-09-10 03:34:57 Sep 10, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 9ca65ea to 2dab542 Compare September 10, 2025 03:35
@github-actions github-actions Bot requested a review from PupilTong as a code owner September 10, 2025 03:35
@github-actions github-actions Bot changed the title chore: Release 2025-09-10 03:34:57 chore: Release 2025-09-10 04:27:53 Sep 10, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 2dab542 to 3a9b36c Compare September 10, 2025 04:28
@github-actions github-actions Bot changed the title chore: Release 2025-09-10 04:27:53 chore: Release 2025-09-10 04:50:02 Sep 10, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 3a9b36c to e8aae19 Compare September 10, 2025 04:50
@github-actions github-actions Bot changed the title chore: Release 2025-09-10 04:50:02 chore: Release 2025-09-10 09:35:26 Sep 10, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from e8aae19 to e5a4821 Compare September 10, 2025 09:35
@github-actions github-actions Bot changed the title chore: Release 2025-09-10 09:35:26 chore: Release 2025-09-10 10:32:55 Sep 10, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from e5a4821 to 4bc081b Compare September 10, 2025 10:33
@github-actions github-actions Bot changed the title chore: Release 2025-09-10 10:32:55 chore: Release 2025-09-10 11:40:10 Sep 10, 2025
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 4bc081b to 59e4af3 Compare September 10, 2025 11:40
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