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
8 changes: 0 additions & 8 deletions .changeset/afraid-donuts-cut.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/cruel-hornets-burn.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/dull-heads-fall.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/eighty-planes-decide.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/giant-seas-leave.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/hip-seals-read.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/honest-pandas-float.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/light-facts-sniff.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loose-moments-itch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-eyes-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-plants-flash.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/open-taxis-hear.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/orange-days-chew.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/ready-months-type.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/rotten-walls-hear.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/rude-memes-shave.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/rude-pears-open.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaky-games-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-tools-ring.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changeset/small-friends-grin.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/soft-baths-scream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-hounds-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-bikes-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-singers-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-peas-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yellow-wasps-brush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yummy-trains-sort.md

This file was deleted.

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

## 0.107.0

### Minor Changes

- Some of the timing keys are renamed to match the naming convention of the Lynx Engine. ([#438](https://github.com/lynx-family/lynx-stack/pull/438))

- `update_set_state_trigger` -> `updateSetStateTrigger`
- `update_diff_vdom_start` -> `updateDiffVdomStart`
- `update_diff_vdom_end` -> `updateDiffVdomEnd`
- `diff_vdom_start` -> `diffVdomStart`
- `diff_vdom_end` -> `diffVdomEnd`
- `pack_changes_start` -> `packChangesStart`
- `pack_changes_end` -> `packChangesEnd`
- `parse_changes_start` -> `parseChangesStart`
- `parse_changes_end` -> `parseChangesEnd`
- `patch_changes_start` -> `patchChangesStart`
- `patch_changes_end` -> `patchChangesEnd`
- `hydrate_parse_snapshot_start` -> `hydrateParseSnapshotStart`
- `hydrate_parse_snapshot_end` -> `hydrateParseSnapshotEnd`
- `mts_render_start` -> `mtsRenderStart`
- `mts_render_end` -> `mtsRenderEnd`

### Patch Changes

- Add testing library for ReactLynx ([#74](https://github.com/lynx-family/lynx-stack/pull/74))

- Refactor: Improved naming for list operation related types. Renamed `UpdateAction` interface to `ListOperations`. ([#592](https://github.com/lynx-family/lynx-stack/pull/592))

- Support using `"jsx": "react-jsx"` along with `"jsxImportSource": "@lynx-js/react"` in `tsconfig.json`. ([#545](https://github.com/lynx-family/lynx-stack/pull/545))

```json
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "@lynx-js/react"
}
}
```

This configuration enhances TypeScript definitions for standard JSX elements,
providing type errors for unsupported elements like `<div>` or `<button>`.

- fix: JSX elements with dynamic `key={expr}` now wrapped in `wrapper` element to prevent merging. ([#547](https://github.com/lynx-family/lynx-stack/pull/547))

## 0.106.5

### Patch 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.106.5",
"version": "0.107.0",
"description": "ReactLynx is a framework for developing Lynx applications with familiar React.",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/rspeedy/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lynx-js/rspeedy

## 0.9.3

### Patch Changes

- Bump Rsbuild v1.3.11 with Rspack v1.3.6. ([#594](https://github.com/lynx-family/lynx-stack/pull/594))

## 0.9.2

### Patch Changes
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.2",
"version": "0.9.3",
"description": "A webpack/rspack-based frontend toolchain for Lynx",
"keywords": [
"webpack",
Expand Down
8 changes: 8 additions & 0 deletions packages/rspeedy/create-rspeedy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# create-rspeedy

## 0.9.3

### Patch Changes

- Add testing library for ReactLynx ([#74](https://github.com/lynx-family/lynx-stack/pull/74))

- Use `"jsx": "react-jsx"` with `"jsxImportSource": "@lynx-js/react"`. ([#545](https://github.com/lynx-family/lynx-stack/pull/545))

## 0.9.2

## 0.9.1
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.2",
"version": "0.9.3",
"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.3.6

### Patch Changes

- Fix the issue where QR code fails to print after initial compilation errors are fixed. ([#610](https://github.com/lynx-family/lynx-stack/pull/610))

## 0.3.5

### 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.5",
"version": "0.3.6",
"description": "A rsbuild plugin for printing QRCode in terminal",
"keywords": [
"rsbuild",
Expand Down
13 changes: 13 additions & 0 deletions packages/rspeedy/plugin-react-alias/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @lynx-js/react-alias-rsbuild-plugin

## 0.9.8

### Patch Changes

- Refactor: Replace built-in `background-only` implementation with npm package ([#602](https://github.com/lynx-family/lynx-stack/pull/602))

Previously we maintained custom files:

- `empty.ts` for background thread
- `error.ts` for main thread validation

Now adopting the standard `background-only` npm package

## 0.9.7

## 0.9.6
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.9.7",
"version": "0.9.8",
"description": "A rsbuild plugin for making alias in ReactLynx",
"keywords": [
"rsbuild",
Expand Down
Loading