Skip to content

chore: Release 2025-05-16 13:54:27#761

Merged
colinaaa merged 1 commit intomainfrom
changeset-release/main
May 16, 2025
Merged

chore: Release 2025-05-16 13:54:27#761
colinaaa merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented May 10, 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/runtime-wrapper-webpack-plugin@0.1.0

Minor Changes

  • Add parameter forwarding for Browser Object Model (BOM) APIs. (#787)

    This allows direct access to APIs like fetch, requestAnimationFrame.

@lynx-js/react@0.108.1

Patch Changes

  • Bump swc_core v23.2.0. (#827)

@lynx-js/rspeedy@0.9.5

Patch Changes

  • Support source.preEntry. (#750)

    Add a script before the entry file of each page. This script will be executed before the page code.
    It can be used to execute global logics, such as injecting polyfills, setting global styles, etc.

    example:

    import { defineConfig } from "@lynx-js/rspeedy";
    export default defineConfig({
      source: {
        preEntry: "./src/polyfill.ts",
      },
    });
  • Bump Rsbuild v1.3.20 with Rspack v1.3.10. (#799)

  • Add callerName option to createRspeedy. (#757)

    It can be accessed by Rsbuild plugins through api.context.callerName, and execute different logic based on this identifier.

    export const myPlugin = {
      name: "my-plugin",
      setup(api) {
        const { callerName } = api.context;
    
        if (callerName === "rslib") {
          // ...
        } else if (callerName === "rspeedy") {
          // ...
        }
      },
    };
  • Support performance.buildCache. (#766)

  • Updated dependencies [fbc4fbb]:

    • @lynx-js/webpack-dev-transport@0.1.3

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

Patch Changes

  • Updated dependencies [e599635, c38c737, d16522e]:
    • @lynx-js/template-webpack-plugin@0.6.11
    • @lynx-js/web-webpack-plugin@0.6.7
    • @lynx-js/runtime-wrapper-webpack-plugin@0.1.0
    • @lynx-js/react-alias-rsbuild-plugin@0.9.10
    • @lynx-js/react-refresh-webpack-plugin@0.3.2
    • @lynx-js/react-webpack-plugin@0.6.13
    • @lynx-js/css-extract-webpack-plugin@0.5.3

@lynx-js/offscreen-document@0.0.3

Patch Changes

  • feat: support OffscreenDocument.innerHTML (#772)

@lynx-js/web-constants@0.13.2

Patch Changes

  • fix: corrupt mainthread module cache (#806)

  • Updated dependencies []:

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

@lynx-js/web-core@0.13.2

Patch Changes

  • feat: allow lynx code to get JS engine provided properties on globalThis (#786)

    globalThis.Reflect; // this will be the Reflect Object
    

    Note that assigning to the globalThis is still not allowed.

  • perf: use v8 hint for generated javascript file (#807)

    https://v8.dev/blog/explicit-compile-hints

  • feat: add new property inject-style-rules for LynxView (#785)

    This property allows developer to inject some style rules into the shadowroot.

    It's a wrapper of https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/insertRule

  • fix: corrupt mainthread module cache (#806)

  • Updated dependencies [03a5f64, 6d3d852, 8cdd288, 6d3d852]:

    • @lynx-js/web-mainthread-apis@0.13.2
    • @lynx-js/web-worker-runtime@0.13.2
    • @lynx-js/web-constants@0.13.2
    • @lynx-js/offscreen-document@0.0.3
    • @lynx-js/web-worker-rpc@0.13.2

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

Patch Changes

@lynx-js/web-elements@0.7.2

Patch Changes

  • refactor: split shadowroot templates into a package (#811)

    We're going to implement Lynx Web Platform's SSR based on the shadowrootmode.

    https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement/shadowRootMode

    (chrome 111, firefox 123, safari 16.4)

    This means those modern browsers are able to show the correct layout before the web components are defined.

    To make this work, we have to split the shadowroot template string into a new package @lynx-js/web-elements-template.

    No features affected.

  • Updated dependencies [ae9652a, ae9652a]:

    • @lynx-js/web-elements-template@0.7.2
    • @lynx-js/web-elements-reactive@0.2.2

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

Patch Changes

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

Patch Changes

  • refactor: split shadowroot templates into a package (#811)

    We're going to implement Lynx Web Platform's SSR based on the shadowrootmode.

    https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement/shadowRootMode

    (chrome 111, firefox 123, safari 16.4)

    This means those modern browsers are able to show the correct layout before the web components are defined.

    To make this work, we have to split the shadowroot template string into a new package @lynx-js/web-elements-template.

    No features affected.

@lynx-js/web-explorer@0.0.8

Patch Changes

  • chore: import qr-scanner from unpkg (#815)

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

Patch Changes

  • feat: allow lynx code to get JS engine provided properties on globalThis (#786)

    globalThis.Reflect; // this will be the Reflect Object
    

    Note that assigning to the globalThis is still not allowed.

  • fix: corrupt mainthread module cache (#806)

  • Updated dependencies [8cdd288]:

    • @lynx-js/web-constants@0.13.2

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

Patch Changes

  • feat: allow lynx code to get JS engine provided properties on globalThis (#786)

    globalThis.Reflect; // this will be the Reflect Object
    

    Note that assigning to the globalThis is still not allowed.

  • feat: return the offscreenDocument instance for startMainThread() (#772)

  • Updated dependencies [03a5f64, 8cdd288, 6d3d852]:

    • @lynx-js/web-mainthread-apis@0.13.2
    • @lynx-js/web-constants@0.13.2
    • @lynx-js/offscreen-document@0.0.3
    • @lynx-js/web-worker-rpc@0.13.2

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

Patch Changes

  • Be compatible with rspack-manifest-plugin. (#812)

    Now only the [name].lynx.bundle and [name].web.bundle would exist in manifest.json.

    See lynx-family/lynx-stack#763 for details.

  • Avoid CSS encode crash on Web platform. (#814)

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

Patch Changes

  • Be compatible with rspack-manifest-plugin. (#812)

    Now only the [name].lynx.bundle and [name].web.bundle would exist in manifest.json.

    See lynx-family/lynx-stack#763 for details.

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

Patch Changes

  • Fix live-reload not working on Lynx 3.3 (#795)

create-rspeedy@0.9.5

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

upgrade-rspeedy@0.9.5

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

@github-actions github-actions bot requested a review from colinaaa as a code owner May 10, 2025 10:54
@github-actions github-actions bot changed the title chore: Release 2025-05-10 10:54:09 chore: Release 2025-05-10 18:07:53 May 10, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from b8c8a8f to 8c4ce93 Compare May 10, 2025 18:08
@github-actions github-actions bot changed the title chore: Release 2025-05-10 18:07:53 chore: Release 2025-05-11 03:34:29 May 11, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8c4ce93 to 0daf2ea Compare May 11, 2025 03:34
@github-actions github-actions bot changed the title chore: Release 2025-05-11 03:34:29 chore: Release 2025-05-11 05:14:55 May 11, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0daf2ea to 29b0211 Compare May 11, 2025 05:15
@github-actions github-actions bot changed the title chore: Release 2025-05-11 05:14:55 chore: Release 2025-05-11 06:31:27 May 11, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 29b0211 to 49d42c3 Compare May 11, 2025 06:31
@github-actions github-actions bot changed the title chore: Release 2025-05-11 06:31:27 chore: Release 2025-05-11 11:07:59 May 11, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 49d42c3 to 5b43597 Compare May 11, 2025 11:08
@github-actions github-actions bot changed the title chore: Release 2025-05-11 11:07:59 chore: Release 2025-05-12 06:12:38 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5b43597 to 08eacca Compare May 12, 2025 06:12
@github-actions github-actions bot changed the title chore: Release 2025-05-12 06:12:38 chore: Release 2025-05-12 07:38:22 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 08eacca to a73eb95 Compare May 12, 2025 07:38
@github-actions github-actions bot changed the title chore: Release 2025-05-12 07:38:22 chore: Release 2025-05-12 14:19:26 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from a73eb95 to eb546b7 Compare May 12, 2025 14:19
@github-actions github-actions bot requested a review from PupilTong as a code owner May 12, 2025 14:19
@github-actions github-actions bot changed the title chore: Release 2025-05-12 14:19:26 chore: Release 2025-05-12 15:41:42 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from eb546b7 to 99d7b26 Compare May 12, 2025 15:41
@github-actions github-actions bot changed the title chore: Release 2025-05-12 15:41:42 chore: Release 2025-05-12 16:14:26 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 99d7b26 to 2d9f301 Compare May 12, 2025 16:14
@github-actions github-actions bot changed the title chore: Release 2025-05-12 16:14:26 chore: Release 2025-05-12 17:05:56 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 2d9f301 to 9447010 Compare May 12, 2025 17:06
@github-actions github-actions bot changed the title chore: Release 2025-05-12 17:05:56 chore: Release 2025-05-12 17:30:42 May 12, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9447010 to 6fffa44 Compare May 12, 2025 17:30
@github-actions github-actions bot changed the title chore: Release 2025-05-12 17:30:42 chore: Release 2025-05-13 04:20:47 May 13, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 6fffa44 to 21017d9 Compare May 13, 2025 04:20
@github-actions github-actions bot changed the title chore: Release 2025-05-13 04:20:47 chore: Release 2025-05-13 05:37:07 May 13, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 21017d9 to 00b4f18 Compare May 13, 2025 05:37
@github-actions github-actions bot changed the title chore: Release 2025-05-14 02:57:19 chore: Release 2025-05-14 02:58:57 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 065be23 to 3341a1a Compare May 14, 2025 02:59
@github-actions github-actions bot changed the title chore: Release 2025-05-14 02:58:57 chore: Release 2025-05-14 03:00:51 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3341a1a to c686d06 Compare May 14, 2025 03:01
@github-actions github-actions bot changed the title chore: Release 2025-05-14 03:00:51 chore: Release 2025-05-14 04:38:44 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from c686d06 to 737acd2 Compare May 14, 2025 04:38
@github-actions github-actions bot changed the title chore: Release 2025-05-14 04:38:44 chore: Release 2025-05-14 07:59:16 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 737acd2 to edfd607 Compare May 14, 2025 07:59
@github-actions github-actions bot changed the title chore: Release 2025-05-14 07:59:16 chore: Release 2025-05-14 09:22:23 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from edfd607 to e3676a3 Compare May 14, 2025 09:22
@github-actions github-actions bot changed the title chore: Release 2025-05-14 09:22:23 chore: Release 2025-05-14 10:32:52 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from e3676a3 to 8aaffb8 Compare May 14, 2025 10:33
@github-actions github-actions bot changed the title chore: Release 2025-05-14 10:32:52 chore: Release 2025-05-14 13:30:52 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8aaffb8 to b742922 Compare May 14, 2025 13:31
@github-actions github-actions bot changed the title chore: Release 2025-05-14 13:30:52 chore: Release 2025-05-14 14:29:09 May 14, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from b742922 to 1aa40ed Compare May 14, 2025 14:29
@github-actions github-actions bot changed the title chore: Release 2025-05-14 14:29:09 chore: Release 2025-05-15 05:24:13 May 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 1aa40ed to 100a676 Compare May 15, 2025 05:24
@github-actions github-actions bot changed the title chore: Release 2025-05-15 05:24:13 chore: Release 2025-05-15 07:28:22 May 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 100a676 to dbb15e6 Compare May 15, 2025 07:28
@github-actions github-actions bot changed the title chore: Release 2025-05-15 07:28:22 chore: Release 2025-05-15 08:46:16 May 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from dbb15e6 to 8206a16 Compare May 15, 2025 08:46
@github-actions github-actions bot changed the title chore: Release 2025-05-15 08:46:16 chore: Release 2025-05-15 09:00:23 May 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8206a16 to 30f5017 Compare May 15, 2025 09:00
@github-actions github-actions bot changed the title chore: Release 2025-05-15 09:00:23 chore: Release 2025-05-15 09:16:16 May 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 30f5017 to e5bac68 Compare May 15, 2025 09:16
@github-actions github-actions bot changed the title chore: Release 2025-05-15 09:16:16 chore: Release 2025-05-15 09:25:43 May 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from e5bac68 to 7be0bd1 Compare May 15, 2025 09:25
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