Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/better-wings-peel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-carrots-feel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cute-falcons-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-rats-tickle.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/gold-ravens-nail.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/heavy-spiders-beg.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loose-zoos-say.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/many-nails-press.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/nice-islands-repeat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-chairs-care.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/odd-deer-smile.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/public-emus-drop.md

This file was deleted.

34 changes: 0 additions & 34 deletions .changeset/tangy-ends-act.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-jokes-clap.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/tiny-flowers-appear.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/whole-deer-walk.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lynx-js/react

## 0.110.1

### Patch Changes

- Fix a memory leak when using `<list/>`. ([#1144](https://github.com/lynx-family/lynx-stack/pull/1144))

## 0.110.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/react",
"version": "0.110.0",
"version": "0.110.1",
"description": "ReactLynx is a framework for developing Lynx applications with familiar React.",
"repository": {
"type": "git",
Expand Down
34 changes: 34 additions & 0 deletions packages/rspeedy/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @lynx-js/rspeedy

## 0.9.11

### Patch Changes

- Enable fine-grained control for `output.inlineScripts` ([#883](https://github.com/lynx-family/lynx-stack/pull/883))

```ts
type InlineChunkTestFunction = (params: {
size: number
name: string
}) => boolean

type InlineChunkTest = RegExp | InlineChunkTestFunction

type InlineChunkConfig =
| boolean
| InlineChunkTest
| { enable?: boolean | 'auto', test: InlineChunkTest }
```

```ts
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](https://github.com/lynx-family/lynx-stack/pull/1168))

## 0.9.10

## 0.9.9
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/rspeedy",
"version": "0.9.10",
"version": "0.9.11",
"description": "A webpack/rspack-based frontend toolchain for Lynx",
"keywords": [
"webpack",
Expand Down
2 changes: 2 additions & 0 deletions packages/rspeedy/create-rspeedy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-rspeedy

## 0.9.11

## 0.9.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/create-rspeedy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-rspeedy",
"version": "0.9.10",
"version": "0.9.11",
"description": "Create Rspeedy-powered ReactLynx apps with one command",
"keywords": [
"webpack",
Expand Down
6 changes: 6 additions & 0 deletions packages/rspeedy/plugin-qrcode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lynx-js/qrcode-rsbuild-plugin

## 0.4.0

### Minor Changes

- Support "Type to search" when switching entries and schema. ([#1115](https://github.com/lynx-family/lynx-stack/pull/1115))

## 0.3.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/plugin-qrcode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/qrcode-rsbuild-plugin",
"version": "0.3.6",
"version": "0.4.0",
"description": "A rsbuild plugin for printing QRCode in terminal",
"keywords": [
"rsbuild",
Expand Down
2 changes: 2 additions & 0 deletions packages/rspeedy/plugin-react-alias/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @lynx-js/react-alias-rsbuild-plugin

## 0.10.5

## 0.10.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/plugin-react-alias/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/react-alias-rsbuild-plugin",
"version": "0.10.4",
"version": "0.10.5",
"description": "A rsbuild plugin for making alias in ReactLynx",
"keywords": [
"rsbuild",
Expand Down
43 changes: 43 additions & 0 deletions packages/rspeedy/plugin-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# @lynx-js/react-rsbuild-plugin

## 0.10.5

### Patch Changes

- Avoid IIFE in `main-thread.js` to resolve memory leak when using `<list />`. ([#1176](https://github.com/lynx-family/lynx-stack/pull/1176))

- Enable fine-grained control for `output.inlineScripts` ([#883](https://github.com/lynx-family/lynx-stack/pull/883))

```ts
type InlineChunkTestFunction = (params: {
size: number
name: string
}) => boolean

type InlineChunkTest = RegExp | InlineChunkTestFunction

type InlineChunkConfig =
| boolean
| InlineChunkTest
| { enable?: boolean | 'auto', test: InlineChunkTest }
```

```ts
import { defineConfig } from '@lynx-js/rspeedy'

export default defineConfig({
output: {
inlineScripts: ({ name, size }) => {
return name.includes('foo') && size < 1000
},
},
})
```

- Updated dependencies [[`51cb73d`](https://github.com/lynx-family/lynx-stack/commit/51cb73dd0b77d35540644cdd2e6c37db856f0e8a), [`69fb042`](https://github.com/lynx-family/lynx-stack/commit/69fb0420e297abf768c889769c95a207c480b3c7), [`a7e8b5b`](https://github.com/lynx-family/lynx-stack/commit/a7e8b5bbbab0490e7cf6f47581130e7b32739abb)]:
- @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

## 0.10.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/plugin-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/react-rsbuild-plugin",
"version": "0.10.4",
"version": "0.10.5",
"description": "A rsbuild plugin for ReactLynx",
"keywords": [
"rsbuild",
Expand Down
2 changes: 2 additions & 0 deletions packages/rspeedy/upgrade-rspeedy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# upgrade-rspeedy

## 0.9.11

## 0.9.10

## 0.9.9
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/upgrade-rspeedy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "upgrade-rspeedy",
"version": "0.9.10",
"version": "0.9.11",
"description": "Upgrade Rspeedy-related packages",
"keywords": [
"webpack",
Expand Down
13 changes: 13 additions & 0 deletions packages/web-platform/web-constants/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @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](https://github.com/lynx-family/lynx-stack/pull/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](https://github.com/lynx-family/lynx-stack/pull/1179))

- fix: under the all-on-ui strategy, reload() will add two page elements. ([#1147](https://github.com/lynx-family/lynx-stack/pull/1147))

- Updated dependencies []:
- @lynx-js/web-worker-rpc@0.14.1

## 0.14.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web-platform/web-constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/web-constants",
"version": "0.14.0",
"version": "0.14.1",
"private": false,
"description": "",
"keywords": [],
Expand Down
2 changes: 2 additions & 0 deletions packages/web-platform/web-core-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @lynx-js/web-core-server

## 0.14.1

## 0.14.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web-platform/web-core-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/web-core-server",
"version": "0.14.0",
"version": "0.14.1",
"private": false,
"description": "",
"keywords": [],
Expand Down
14 changes: 14 additions & 0 deletions packages/web-platform/web-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @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](https://github.com/lynx-family/lynx-stack/pull/1059))

- fix: under the all-on-ui strategy, reload() will add two page elements. ([#1147](https://github.com/lynx-family/lynx-stack/pull/1147))

- Updated dependencies [[`a64333e`](https://github.com/lynx-family/lynx-stack/commit/a64333ef28228d6b90c32e027f67bef8acbd8432), [`7751375`](https://github.com/lynx-family/lynx-stack/commit/775137521782ca5445f22029c39163c0a63bbfa5), [`b52a924`](https://github.com/lynx-family/lynx-stack/commit/b52a924a2375cb6f7ebafdd8abfbab0254eb2330)]:
- @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

## 0.14.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web-platform/web-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/web-core",
"version": "0.14.0",
"version": "0.14.1",
"private": false,
"description": "",
"keywords": [],
Expand Down
Loading