Skip to content

chore: Release 2025-03-09 08:44:58#24

Merged
colinaaa merged 1 commit intomainfrom
changeset-release/main
Mar 9, 2025
Merged

chore: Release 2025-03-09 08:44:58#24
colinaaa merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Mar 4, 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/web-elements@0.3.0

Minor Changes

  • feat: support justify-content, align-self in linear container (#37)

    Now these two properties could work in a linear container.

    We don't transforms the justify-content and align-self to css vars any more.

    The previous version of @lynx-js/web-core won't work with current @lynx-js/web-core after this change.

Patch Changes

  • Support NPM provenance. (#30)

  • Updated dependencies [c617453]:

    • @lynx-js/web-elements-reactive@0.1.1

@lynx-js/react@0.105.1

Patch Changes

  • Support NPM provenance. (#30)

  • feat: add compiler only version of addComponentElement, it does not support spread props but have no runtime overhead, use it by: (#15)

    pluginReactLynx({
      compat: {
        addComponentElement: {
          compilerOnly: true,
        },
      },
    });
  • Fix error createRef is not a function (#16)

  • Support MIXED target for worklet, it will be used by unit testing frameworks, etc. (#27)

  • Support return value for runOnBackground() and runOnMainThread(). (#119)

    Now you can get the return value from runOnBackground() and runOnMainThread(), which enables more flexible data flow between the main thread and the background thread.

    import { runOnBackground } from "@lynx-js/react";
    
    const onTap = async () => {
      "main thread";
      const text = await runOnBackground(() => {
        "background only";
        return "Hello, world!";
      })();
      console.log(text);
    };

@lynx-js/rspeedy@0.8.3

Patch Changes

  • Support NPM provenance. (#30)

  • Fix error "'wmic' is not recognized as an internal or external command" (#91)

  • Bump Rsbuild v1.2.15 with Rspack v1.2.7. (#44)

  • Updated dependencies [c617453]:

    • @lynx-js/chunk-loading-webpack-plugin@0.1.7
    • @lynx-js/webpack-dev-transport@0.1.1
    • @lynx-js/websocket@0.0.4

create-rspeedy@0.8.3

Patch Changes

  • Support NPM provenance. (#30)

  • Changing filename of index.jsx to index.js because rspeedy requires index.js. Then edit index.js import statement to make it import App.jsx instead of App.js since App.jsx is present in the template. This resolves "Module not found" error. (#106)

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

Patch Changes

  • Support NPM provenance. (#30)

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

Patch Changes

  • Support NPM provenance. (#30)

  • fix(rspeedy/plugin-react): mkdir main:background fails in windows (#76)

  • fix(rspeedy/plugin-react): use path.posix.join for backgroundName to ensure consistent path separators across platforms. (#122)

  • Updated dependencies [c617453, 870106f, ea82ef6]:

    • @lynx-js/runtime-wrapper-webpack-plugin@0.0.8
    • @lynx-js/react-refresh-webpack-plugin@0.3.2
    • @lynx-js/css-extract-webpack-plugin@0.5.1
    • @lynx-js/template-webpack-plugin@0.6.4
    • @lynx-js/react-webpack-plugin@0.6.7
    • @lynx-js/react-alias-rsbuild-plugin@0.9.1
    • @lynx-js/web-webpack-plugin@0.6.2

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

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/websocket@0.0.4

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/tailwind-preset@0.0.2

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/css-serializer@0.1.2

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/web-constants@0.7.1

Patch Changes

  • Support NPM provenance. (#30)

  • fix: some valus should be updateable by global scope (#130)

    Now we add an allowlist to allow some identifiers could be updated by globalThis.

    For those values in the allowlist:

    globalThis.foo = 'xx';
    console.log(foo); //'xx'
    
  • refractor: improve some internal logic for element creating in MTS (#71)

  • Updated dependencies [c617453]:

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

@lynx-js/web-core@0.7.1

Patch Changes

  • Support NPM provenance. (#30)

  • fix: some valus should be updateable by global scope (#130)

    Now we add an allowlist to allow some identifiers could be updated by globalThis.

    For those values in the allowlist:

    globalThis.foo = 'xx';
    console.log(foo); //'xx'
    
  • refactor: isolate the globalThis in mts (#90)

    After this commit, developers' mts code won't be able to access the globalThis

    The following usage will NOT work

    globalThis.foo = () =>{};
    foo();//crash
    
  • refractor: improve some internal logic for element creating in MTS (#71)

  • Updated dependencies [c617453, 2044571, 7da7601]:

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

@lynx-js/web-elements-compat@0.2.3

Patch Changes

  • Support NPM provenance. (#30)

  • feat: support justify-content, align-self in linear container (#37)

    Now these two properties could work in a linear container.

    We don't transforms the justify-content and align-self to css vars any more.

    The previous version of @lynx-js/web-core won't work with current @lynx-js/web-core after this change.

@lynx-js/web-elements-reactive@0.1.1

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/web-explorer@0.0.2

Patch Changes

  • Support NPM provenance. (#30)

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

Patch Changes

  • Support NPM provenance. (#30)

  • fix: some valus should be updateable by global scope (#130)

    Now we add an allowlist to allow some identifiers could be updated by globalThis.

    For those values in the allowlist:

    globalThis.foo = 'xx';
    console.log(foo); //'xx'
    
  • refactor: isolate the globalThis in mts (#90)

    After this commit, developers' mts code won't be able to access the globalThis

    The following usage will NOT work

    globalThis.foo = () =>{};
    foo();//crash
    
  • refractor: improve some internal logic for element creating in MTS (#71)

  • Updated dependencies [c617453, 2044571, 399a6d9, 7da7601]:

    • @lynx-js/web-style-transformer@0.2.2
    • @lynx-js/web-constants@0.7.1

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

Patch Changes

  • Support NPM provenance. (#30)

  • feat: support justify-content, align-self in linear container (#37)

    Now these two properties could work in a linear container.

    We don't transforms the justify-content and align-self to css vars any more.

    The previous version of @lynx-js/web-core won't work with current @lynx-js/web-core after this change.

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

Patch Changes

  • Support NPM provenance. (#30)

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

Patch Changes

  • Support NPM provenance. (#30)

  • Updated dependencies [c617453, 2044571, 82285ce, 7da7601]:

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

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

Patch Changes

  • Support NPM provenance. (#30)

  • Updated dependencies [c617453]:

    • @lynx-js/webpack-runtime-globals@0.0.5

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

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/react-refresh-webpack-plugin@0.3.2

Patch Changes

  • Support NPM provenance. (#30)

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

Patch Changes

  • Support NPM provenance. (#30)

  • Updated dependencies [c617453]:

    • @lynx-js/webpack-runtime-globals@0.0.5

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

Patch Changes

  • Support NPM provenance. (#30)

  • Updated dependencies [c617453]:

    • @lynx-js/webpack-runtime-globals@0.0.5

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

Patch Changes

  • Support NPM provenance. (#30)

  • Use WASM when NAPI is not available. (#138)

  • Add defaultOverflowVisible option to LynxTemplatePlugin. (#78)

    import { LynxTemplatePlugin } from "@lynx-js/template-webpack-plugin";
    
    new LynxTemplatePlugin({
      defaultOverflowVisible: false,
    });
  • Updated dependencies [c617453]:

    • @lynx-js/webpack-runtime-globals@0.0.5
    • @lynx-js/css-serializer@0.1.2

@lynx-js/web-webpack-plugin@0.6.2

Patch Changes

  • Support NPM provenance. (#30)

  • Updated dependencies [c617453, 399a6d9]:

    • @lynx-js/web-style-transformer@0.2.2

@lynx-js/webpack-dev-transport@0.1.1

Patch Changes

  • Support NPM provenance. (#30)

@lynx-js/webpack-runtime-globals@0.0.5

Patch Changes

  • Support NPM provenance. (#30)

@CLAassistant
Copy link
Copy Markdown

CLAassistant commented Mar 4, 2025

CLA assistant check
All committers have signed the CLA.

@github-actions github-actions bot changed the title chore: Release 2025-03-04 11:51:36 chore: Release 2025-03-04 12:02:56 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 02e65f8 to 5ab9ae5 Compare March 4, 2025 12:03
@github-actions github-actions bot changed the title chore: Release 2025-03-04 12:02:56 chore: Release 2025-03-04 12:42:37 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5ab9ae5 to bc5f2d1 Compare March 4, 2025 12:42
@github-actions github-actions bot changed the title chore: Release 2025-03-04 12:42:37 chore: Release 2025-03-04 13:34:27 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from bc5f2d1 to 05bbcc0 Compare March 4, 2025 13:34
@github-actions github-actions bot changed the title chore: Release 2025-03-04 13:34:27 chore: Release 2025-03-04 13:46:42 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 05bbcc0 to d03dd1f Compare March 4, 2025 13:46
@github-actions github-actions bot changed the title chore: Release 2025-03-04 13:46:42 chore: Release 2025-03-04 13:47:33 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from d03dd1f to aa21e0f Compare March 4, 2025 13:47
@github-actions github-actions bot changed the title chore: Release 2025-03-04 13:47:33 chore: Release 2025-03-04 13:55:47 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from aa21e0f to efb3460 Compare March 4, 2025 13:55
@github-actions github-actions bot changed the title chore: Release 2025-03-04 13:55:47 chore: Release 2025-03-04 14:30:57 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from efb3460 to d7fbc1b Compare March 4, 2025 14:31
@github-actions github-actions bot changed the title chore: Release 2025-03-04 14:30:57 chore: Release 2025-03-04 14:50:04 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from d7fbc1b to 5ddae32 Compare March 4, 2025 14:50
@github-actions github-actions bot changed the title chore: Release 2025-03-04 14:50:04 chore: Release 2025-03-04 15:17:04 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5ddae32 to edf6b13 Compare March 4, 2025 15:17
@github-actions github-actions bot changed the title chore: Release 2025-03-04 15:17:04 chore: Release 2025-03-04 15:48:04 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from edf6b13 to 08822b5 Compare March 4, 2025 15:48
@github-actions github-actions bot changed the title chore: Release 2025-03-04 15:48:04 chore: Release 2025-03-04 16:08:47 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 08822b5 to 72c7273 Compare March 4, 2025 16:08
@github-actions github-actions bot changed the title chore: Release 2025-03-04 16:08:47 chore: Release 2025-03-04 17:11:59 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 72c7273 to 7d55ac6 Compare March 4, 2025 17:12
@github-actions github-actions bot changed the title chore: Release 2025-03-04 17:11:59 chore: Release 2025-03-04 17:35:50 Mar 4, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 7d55ac6 to 831a9b6 Compare March 4, 2025 17:35
@github-actions github-actions bot changed the title chore: Release 2025-03-04 17:35:50 chore: Release 2025-03-05 00:46:38 Mar 5, 2025
@github-actions github-actions bot changed the title chore: Release 2025-03-05 08:57:23 chore: Release 2025-03-05 09:47:55 Mar 5, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 86ce782 to 941d0c4 Compare March 5, 2025 09:48
@github-actions github-actions bot changed the title chore: Release 2025-03-05 09:47:55 chore: Release 2025-03-05 11:47:45 Mar 5, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 941d0c4 to 63c088a Compare March 5, 2025 11:47
@github-actions github-actions bot changed the title chore: Release 2025-03-05 11:47:45 chore: Release 2025-03-05 12:25:58 Mar 5, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 63c088a to 80f7eb5 Compare March 5, 2025 12:26
@github-actions github-actions bot changed the title chore: Release 2025-03-05 12:25:58 chore: Release 2025-03-05 12:50:18 Mar 5, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 80f7eb5 to 9c822d7 Compare March 5, 2025 12:50
@github-actions github-actions bot changed the title chore: Release 2025-03-05 12:50:18 chore: Release 2025-03-05 13:34:05 Mar 5, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9c822d7 to 429677f Compare March 5, 2025 13:34
@github-actions github-actions bot changed the title chore: Release 2025-03-05 13:34:05 chore: Release 2025-03-06 03:11:09 Mar 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 429677f to 4e1d22d Compare March 6, 2025 03:11
@github-actions github-actions bot changed the title chore: Release 2025-03-06 03:11:09 chore: Release 2025-03-06 07:44:57 Mar 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 4e1d22d to 0b1f8b6 Compare March 6, 2025 07:45
@github-actions github-actions bot changed the title chore: Release 2025-03-06 07:44:57 chore: Release 2025-03-06 09:22:40 Mar 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0b1f8b6 to afe266c Compare March 6, 2025 09:22
@github-actions github-actions bot changed the title chore: Release 2025-03-06 09:22:40 chore: Release 2025-03-06 10:59:35 Mar 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from afe266c to cd7f49f Compare March 6, 2025 10:59
@github-actions github-actions bot changed the title chore: Release 2025-03-06 10:59:35 chore: Release 2025-03-06 14:02:02 Mar 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from cd7f49f to 910647b Compare March 6, 2025 14:02
@github-actions github-actions bot changed the title chore: Release 2025-03-06 14:02:02 chore: Release 2025-03-06 17:21:54 Mar 6, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 910647b to fd14ad1 Compare March 6, 2025 17:22
@github-actions github-actions bot changed the title chore: Release 2025-03-06 17:21:54 chore: Release 2025-03-07 02:59:29 Mar 7, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from fd14ad1 to 4135528 Compare March 7, 2025 02:59
@github-actions github-actions bot changed the title chore: Release 2025-03-07 02:59:29 chore: Release 2025-03-07 03:38:35 Mar 7, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 4135528 to ec24959 Compare March 7, 2025 03:38
hzy
hzy previously approved these changes Mar 7, 2025
PupilTong
PupilTong previously approved these changes Mar 7, 2025
PupilTong
PupilTong previously approved these changes Mar 8, 2025
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.

4 participants