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
26 changes: 26 additions & 0 deletions .changeset/good-ears-relate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
"@hyperse/inspector-babel-plugin": patch
"@hyperse/inspector-middleware": patch
"@hyperse/inspector-component": patch
"@hyperse/inspector-swc-plugin": patch
"@hyperse/inspector-common": patch
"@hyperse/next-inspector": patch
"@hyperse/inspector": patch
---

### Fixed

- `@hyperse/inspector-swc-plugin`: Improve transform stability and fix location shifts caused by JSX prop order; align behavior with the Babel plugin.

### Changed

- `@hyperse/next-inspector`: Refine API route creation and configuration pass-through; tweak `vitest` settings for more stable tests.
- `@hyperse/inspector-babel-plugin`: Align shared constants and type references; minor performance and bundle size improvements.
- `@hyperse/inspector-middleware`: Strengthen request parsing and error handling; better edge-case coverage.
- `@hyperse/inspector-component`: Improve component prop types and interaction details for better usability.
- `@hyperse/inspector-common`: Add missing types and constant exports; unify internal dependency versions.
- `@hyperse/inspector`: Sync dependencies and internal exports; fine-tune client initialization.

### Documentation

- Update package READMEs to reflect latest usage and configuration guidance.
2 changes: 1 addition & 1 deletion .github/workflows/ci-inspector-babel-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-inspector-swc-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-inspector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-or-version-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
rustc --version
cargo --version

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x

- name: 📥 Monorepo install
uses: ./.github/actions/yarn-nm-install
Expand Down
724 changes: 359 additions & 365 deletions .yarn/releases/yarn-4.9.1.cjs → .yarn/releases/yarn-4.9.4.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.9.1.cjs
yarnPath: .yarn/releases/yarn-4.9.4.cjs
Loading