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
21 changes: 21 additions & 0 deletions changelog/cli/0.10.46.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
package: "@webjsdev/cli"
version: 0.10.46
date: 2026-07-23T18:50:49.171Z
commit_count: 2
---
## Features

- **refactor the scaffold gallery onto a @webjsdev/ui class-helper design system** ([#1060](https://github.com/webjsdev/webjs/pull/1060)) [`a35e1f52`](https://github.com/webjsdev/webjs/commit/a35e1f52)
* feat: ship @webjsdev/ui class-helper primitives into the gallery scaffold

Add components/ui/{button,card,input,textarea,badge}.ts (the ui tier-1 class
helpers buttonClass/cardClass/inputClass/textareaClass/badgeClass) to the

## Fixes

- **add cursor-pointer to the gallery streaming demo button** ([#1057](https://github.com/webjsdev/webjs/pull/1057)) [`af638b94`](https://github.com/webjsdev/webjs/commit/af638b94)
The streaming demo's 'Stream tokens' button was the one gallery button missing
cursor-pointer (Tailwind v4 dropped the default button cursor, and every other
gallery button already sets it per-button). A full audit of every button and
@click element in the gallery found this was the only gap.
18 changes: 18 additions & 0 deletions changelog/core/0.7.43.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
package: "@webjsdev/core"
version: 0.7.43
date: 2026-07-23T18:50:49.061Z
commit_count: 2
---
## Fixes

- **view-transition soft-nav meta leak and stuck Suspense skeleton** ([#1049](https://github.com/webjsdev/webjs/pull/1049)) [`e9af348b`](https://github.com/webjsdev/webjs/commit/e9af348b)
* fix: view-transition soft-nav meta leak and stuck Suspense skeleton

Two related client-router defects, both triggered by view transitions
during a soft navigation.
- **preserve csp-nonce on mergeHead, warn on dropped streamed resolve** ([#1052](https://github.com/webjsdev/webjs/pull/1052)) [`a32353e2`](https://github.com/webjsdev/webjs/commit/a32353e2)
* fix: preserve csp-nonce on mergeHead, warn on dropped streamed resolve

#1050: mergeHead (the background full-body swap path) treated the live
csp-nonce meta as stale whenever the incoming response carried a different
13 changes: 13 additions & 0 deletions changelog/server/0.8.56.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
package: "@webjsdev/server"
version: 0.8.56
date: 2026-07-23T18:50:49.116Z
commit_count: 1
---
## Features

- **refactor the scaffold gallery onto a @webjsdev/ui class-helper design system** ([#1060](https://github.com/webjsdev/webjs/pull/1060)) [`a35e1f52`](https://github.com/webjsdev/webjs/commit/a35e1f52)
* feat: ship @webjsdev/ui class-helper primitives into the gallery scaffold

Add components/ui/{button,card,input,textarea,badge}.ts (the ui tier-1 class
helpers buttonClass/cardClass/inputClass/textareaClass/badgeClass) to the
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webjsdev/cli",
"version": "0.10.45",
"version": "0.10.46",
"type": "module",
"description": "webjs CLI - dev, start, create, db",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webjsdev/core",
"version": "0.7.42",
"version": "0.7.43",
"type": "module",
"description": "webjs core runtime - html/css tags, WebComponent base, isomorphic renderers",
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webjsdev/server",
"version": "0.8.55",
"version": "0.8.56",
"type": "module",
"description": "webjs dev/prod server: SSR, router, API, server actions, live reload",
"main": "index.js",
Expand Down
Loading