Skip to content

chore: Release 2025-06-30 16:18:59#1137

Merged
colinaaa merged 1 commit intomainfrom
changeset-release/main
Jun 30, 2025
Merged

chore: Release 2025-06-30 16:18:59#1137
colinaaa merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Jun 23, 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/qrcode-rsbuild-plugin@0.4.0

Minor Changes

  • Support "Type to search" when switching entries and schema. (#1115)

@lynx-js/react@0.110.1

Patch Changes

  • Fix a memory leak when using <list/>. (#1144)

@lynx-js/rspeedy@0.9.11

Patch Changes

  • Enable fine-grained control for output.inlineScripts (#883)

    type InlineChunkTestFunction = (params: {
      size: number;
      name: string;
    }) => boolean;
    
    type InlineChunkTest = RegExp | InlineChunkTestFunction;
    
    type InlineChunkConfig =
      | boolean
      | InlineChunkTest
      | { enable?: boolean | "auto"; test: InlineChunkTest };
    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      output: {
        inlineScripts: ({ name, size }) => {
          return name.includes("foo") && size < 1000;
        },
      },
    });
  • docs: remove chunks: 'all' in comments (#1168)

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

Patch Changes

  • Avoid IIFE in main-thread.js to resolve memory leak when using <list />. (#1176)

  • Enable fine-grained control for output.inlineScripts (#883)

    type InlineChunkTestFunction = (params: {
      size: number;
      name: string;
    }) => boolean;
    
    type InlineChunkTest = RegExp | InlineChunkTestFunction;
    
    type InlineChunkConfig =
      | boolean
      | InlineChunkTest
      | { enable?: boolean | "auto"; test: InlineChunkTest };
    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      output: {
        inlineScripts: ({ name, size }) => {
          return name.includes("foo") && size < 1000;
        },
      },
    });
  • Updated dependencies [51cb73d, 69fb042, a7e8b5b]:

    • @lynx-js/runtime-wrapper-webpack-plugin@0.1.2
    • @lynx-js/template-webpack-plugin@0.8.1
    • @lynx-js/react-webpack-plugin@0.6.17
    • @lynx-js/react-alias-rsbuild-plugin@0.10.5
    • @lynx-js/use-sync-external-store@1.5.0
    • @lynx-js/react-refresh-webpack-plugin@0.3.3
    • @lynx-js/css-extract-webpack-plugin@0.6.0

@lynx-js/web-constants@0.14.1

Patch Changes

  • feat: support BTS API lynx.reportError && __SetSourceMapRelease, now you can use it and handle it in lynx-view error event. (#1059)

  • fix: in lynx-view all-on-ui mode, the input event of input and textarea is triggered twice, and the first e.detail is a string, which does not conform to the expected data format. (#1179)

  • fix: under the all-on-ui strategy, reload() will add two page elements. (#1147)

  • Updated dependencies []:

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

@lynx-js/web-core@0.14.1

Patch Changes

  • feat: support BTS API lynx.reportError && __SetSourceMapRelease, now you can use it and handle it in lynx-view error event. (#1059)

  • fix: under the all-on-ui strategy, reload() will add two page elements. (#1147)

  • Updated dependencies [a64333e, 7751375, b52a924]:

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

@lynx-js/web-elements@0.7.7

Patch Changes

  • fix: the param index of list scrollToPosition function should be position. (#1135)

  • fix: in lynx-view all-on-ui mode, the input event of input and textarea is triggered twice, and the first e.detail is a string, which does not conform to the expected data format. (#1179)

  • Updated dependencies []:

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

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

Patch Changes

  • fix: under the all-on-ui strategy, reload() will add two page elements. (#1147)

  • Updated dependencies [a64333e, 7751375, b52a924]:

    • @lynx-js/web-constants@0.14.1

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

Patch Changes

  • feat: support BTS API lynx.reportError && __SetSourceMapRelease, now you can use it and handle it in lynx-view error event. (#1059)

  • Updated dependencies [a64333e, 7751375, b52a924]:

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

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

Patch Changes

  • Enable fine-grained control for output.inlineScripts (#883)

    type InlineChunkTestFunction = (params: {
      size: number;
      name: string;
    }) => boolean;
    
    type InlineChunkTest = RegExp | InlineChunkTestFunction;
    
    type InlineChunkConfig =
      | boolean
      | InlineChunkTest
      | { enable?: boolean | "auto"; test: InlineChunkTest };
    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      output: {
        inlineScripts: ({ name, size }) => {
          return name.includes("foo") && size < 1000;
        },
      },
    });

@lynx-js/runtime-wrapper-webpack-plugin@0.1.2

Patch Changes

  • Wrap with IIFE when output.iife: false to avoid naming conflict. (#1176)

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

Patch Changes

  • feat: ::placeholder will be compiled to part(input)::placeholder, which means you can use pseudo-element CSS to add placeholder styles to input and textarea. (#1158)

    // before
    <input placeholder-color='red' placeholder-font-weight='bold' placeholder-font-size='20px'>
    
    // after
    <input>
    
    input::placeholder {
      color: red;
      font-weight: bold;
      font-size: 20px;
    }
    
  • Enable fine-grained control for output.inlineScripts (#883)

    type InlineChunkTestFunction = (params: {
      size: number;
      name: string;
    }) => boolean;
    
    type InlineChunkTest = RegExp | InlineChunkTestFunction;
    
    type InlineChunkConfig =
      | boolean
      | InlineChunkTest
      | { enable?: boolean | "auto"; test: InlineChunkTest };
    import { defineConfig } from "@lynx-js/rspeedy";
    
    export default defineConfig({
      output: {
        inlineScripts: ({ name, size }) => {
          return name.includes("foo") && size < 1000;
        },
      },
    });

create-rspeedy@0.9.11

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

upgrade-rspeedy@0.9.11

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

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

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

@github-actions github-actions bot requested a review from PupilTong as a code owner June 23, 2025 09:35
@github-actions github-actions bot changed the title chore: Release 2025-06-23 09:35:36 chore: Release 2025-06-23 10:24:12 Jun 23, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 1b7a11b to c623039 Compare June 23, 2025 10:24
@github-actions github-actions bot changed the title chore: Release 2025-06-23 10:24:12 chore: Release 2025-06-23 10:39:32 Jun 23, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from c623039 to 0a9a027 Compare June 23, 2025 10:39
@github-actions github-actions bot changed the title chore: Release 2025-06-23 10:39:32 chore: Release 2025-06-23 11:15:29 Jun 23, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0a9a027 to e8c71a6 Compare June 23, 2025 11:15
@github-actions github-actions bot changed the title chore: Release 2025-06-23 11:15:29 chore: Release 2025-06-23 13:22:29 Jun 23, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from e8c71a6 to 444b8bc Compare June 23, 2025 13:22
@github-actions github-actions bot changed the title chore: Release 2025-06-23 13:22:29 chore: Release 2025-06-23 13:40:38 Jun 23, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 444b8bc to 879df41 Compare June 23, 2025 13:40
@github-actions github-actions bot changed the title chore: Release 2025-06-23 13:40:38 chore: Release 2025-06-23 15:45:54 Jun 23, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 879df41 to 90f4942 Compare June 23, 2025 15:46
@github-actions github-actions bot changed the title chore: Release 2025-06-23 15:45:54 chore: Release 2025-06-24 06:36:01 Jun 24, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 90f4942 to 3acddfe Compare June 24, 2025 06:36
@github-actions github-actions bot changed the title chore: Release 2025-06-24 06:36:01 chore: Release 2025-06-24 08:43:40 Jun 24, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3acddfe to 6b97483 Compare June 24, 2025 08:43
@github-actions github-actions bot changed the title chore: Release 2025-06-24 08:43:40 chore: Release 2025-06-24 13:34:09 Jun 24, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 6b97483 to 068aca6 Compare June 24, 2025 13:34
@github-actions github-actions bot changed the title chore: Release 2025-06-24 13:34:09 chore: Release 2025-06-25 03:45:55 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 068aca6 to 9267f49 Compare June 25, 2025 03:46
@github-actions github-actions bot changed the title chore: Release 2025-06-25 03:45:55 chore: Release 2025-06-25 06:04:08 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9267f49 to 48dfeca Compare June 25, 2025 06:04
@github-actions github-actions bot changed the title chore: Release 2025-06-25 06:04:08 chore: Release 2025-06-25 07:36:06 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 48dfeca to 0475f2d Compare June 25, 2025 07:36
@github-actions github-actions bot changed the title chore: Release 2025-06-25 07:36:06 chore: Release 2025-06-25 07:48:36 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0475f2d to 5c3c7fa Compare June 25, 2025 07:48
@github-actions github-actions bot changed the title chore: Release 2025-06-25 07:48:36 chore: Release 2025-06-25 08:19:35 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5c3c7fa to 97b903a Compare June 25, 2025 08:19
@github-actions github-actions bot changed the title chore: Release 2025-06-25 08:19:35 chore: Release 2025-06-25 10:19:07 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 249856f to 76aa3f9 Compare June 25, 2025 10:24
@github-actions github-actions bot changed the title chore: Release 2025-06-25 10:23:59 chore: Release 2025-06-25 18:42:44 Jun 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 76aa3f9 to cdf6b4a Compare June 25, 2025 18:42
@github-actions github-actions bot changed the title chore: Release 2025-06-25 18:42:44 chore: Release 2025-06-26 03:08:45 Jun 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from cdf6b4a to d602d4d Compare June 26, 2025 03:08
@github-actions github-actions bot changed the title chore: Release 2025-06-26 03:08:45 chore: Release 2025-06-26 04:00:01 Jun 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from d602d4d to 8343851 Compare June 26, 2025 04:00
@github-actions github-actions bot changed the title chore: Release 2025-06-26 04:00:01 chore: Release 2025-06-26 04:57:48 Jun 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8343851 to 3289af1 Compare June 26, 2025 04:58
@github-actions github-actions bot requested a review from colinaaa as a code owner June 26, 2025 04:58
@github-actions github-actions bot changed the title chore: Release 2025-06-26 04:57:48 chore: Release 2025-06-26 06:19:06 Jun 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3289af1 to 7856152 Compare June 26, 2025 06:19
@github-actions github-actions bot changed the title chore: Release 2025-06-26 06:19:06 chore: Release 2025-06-26 11:58:37 Jun 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 7856152 to 743af38 Compare June 26, 2025 11:58
@github-actions github-actions bot changed the title chore: Release 2025-06-26 11:58:37 chore: Release 2025-06-26 12:01:33 Jun 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 743af38 to a18d884 Compare June 26, 2025 12:01
@github-actions github-actions bot changed the title chore: Release 2025-06-26 12:01:33 chore: Release 2025-06-27 04:14:29 Jun 27, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from a18d884 to 2765d6d Compare June 27, 2025 04:14
@github-actions github-actions bot changed the title chore: Release 2025-06-27 04:14:29 chore: Release 2025-06-27 14:34:30 Jun 27, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 2765d6d to 92c3351 Compare June 27, 2025 14:34
@github-actions github-actions bot changed the title chore: Release 2025-06-27 14:34:30 chore: Release 2025-06-30 11:58:32 Jun 30, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 92c3351 to db4b80b Compare June 30, 2025 11:58
@github-actions github-actions bot changed the title chore: Release 2025-06-30 11:58:32 chore: Release 2025-06-30 16:18:11 Jun 30, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from db4b80b to fc02bf6 Compare June 30, 2025 16:18
@github-actions github-actions bot changed the title chore: Release 2025-06-30 16:18:11 chore: Release 2025-06-30 16:18:59 Jun 30, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from fc02bf6 to 4f4c7f9 Compare June 30, 2025 16:19
@colinaaa colinaaa merged commit 8ef8181 into main Jun 30, 2025
1 check passed
@colinaaa colinaaa deleted the changeset-release/main branch June 30, 2025 16:28
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