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
32 changes: 0 additions & 32 deletions .changeset/cuddly-papayas-start.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dull-jokes-buy.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/famous-dogs-share.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/fine-crabs-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-carrots-remain.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/gentle-buses-ring.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/grumpy-hairs-retire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-stars-cross.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-planes-cry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-jobs-hide.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/modern-forks-unite.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/nasty-llamas-lie.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/nine-rats-agree.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/pink-pots-fold.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/ready-friends-rescue.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/rotten-poets-fetch.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/rude-parks-dig.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tender-bikes-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/true-clubs-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-cameras-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-keys-wave.md

This file was deleted.

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

## 0.105.1

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))

- feat: add compiler only version of addComponentElement, it does not support spread props but have no runtime overhead, use it by: ([#15](https://github.com/lynx-family/lynx-stack/pull/15))

```js
pluginReactLynx({
compat: {
addComponentElement: {
compilerOnly: true,
},
},
});
```

- Fix error `createRef is not a function` ([#16](https://github.com/lynx-family/lynx-stack/pull/16))

- Support `MIXED` target for worklet, it will be used by unit testing frameworks, etc. ([#27](https://github.com/lynx-family/lynx-stack/pull/27))

- Support return value for `runOnBackground()` and `runOnMainThread()`. ([#119](https://github.com/lynx-family/lynx-stack/pull/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.

```js
import { runOnBackground } from '@lynx-js/react';

const onTap = async () => {
'main thread';
const text = await runOnBackground(() => {
'background only';
return 'Hello, world!';
})();
console.log(text);
};
```

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

## 0.8.3

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))

- Fix error "'wmic' is not recognized as an internal or external command" ([#91](https://github.com/lynx-family/lynx-stack/pull/91))

- Bump Rsbuild v1.2.15 with Rspack v1.2.7. ([#44](https://github.com/lynx-family/lynx-stack/pull/44))

- Updated dependencies [[`c617453`](https://github.com/lynx-family/lynx-stack/commit/c617453aea967aba702967deb2916b5c883f03bb)]:
- @lynx-js/chunk-loading-webpack-plugin@0.1.7
- @lynx-js/webpack-dev-transport@0.1.1
- @lynx-js/websocket@0.0.4

## 0.8.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.8.2",
"version": "0.8.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.8.3

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/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](https://github.com/lynx-family/lynx-stack/pull/106))

## 0.8.2

### 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.8.2",
"version": "0.8.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.4

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))

## 0.3.3

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

## 0.9.1

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))

## 0.9.0

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

## 0.9.1

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))

- fix(rspeedy/plugin-react): mkdir main:background fails in windows ([#76](https://github.com/lynx-family/lynx-stack/pull/76))

- fix(rspeedy/plugin-react): use path.posix.join for backgroundName to ensure consistent path separators across platforms. ([#122](https://github.com/lynx-family/lynx-stack/pull/122))

- Updated dependencies [[`c617453`](https://github.com/lynx-family/lynx-stack/commit/c617453aea967aba702967deb2916b5c883f03bb), [`870106f`](https://github.com/lynx-family/lynx-stack/commit/870106fcb00d54a9f952be14c9bdcc592099863c), [`ea82ef6`](https://github.com/lynx-family/lynx-stack/commit/ea82ef63e367c6bb87e4205b6014cc5e1f6896a2)]:
- @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

## 0.9.0

### Minor 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.9.0",
"version": "0.9.1",
"description": "A rsbuild plugin for ReactLynx",
"keywords": [
"rsbuild",
Expand Down
6 changes: 6 additions & 0 deletions packages/rspeedy/websocket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lynx-js/websocket

## 0.0.4

### Patch Changes

- Support NPM provenance. ([#30](https://github.com/lynx-family/lynx-stack/pull/30))

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rspeedy/websocket/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/websocket",
"version": "0.0.3",
"version": "0.0.4",
"description": "A WebSocket implementation for Lynx",
"keywords": [
"webpack",
Expand Down
Loading