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
17 changes: 17 additions & 0 deletions changelog/cli/0.10.45.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
package: "@webjsdev/cli"
version: 0.10.45
date: 2026-07-22T10:44:04.512Z
commit_count: 2
---
## Features

- **add streaming-action, view-transition, and webjs-suspense gallery demos** ([#1039](https://github.com/webjsdev/webjs/pull/1039)) [`7e523375`](https://github.com/webjsdev/webjs/commit/7e523375)
* feat: add streaming-action gallery demo (for await over an async generator)

A use-server action returning an async generator, consumed at the call
site with for await so tokens render as they arrive. Fills a gallery gap:
- **fold auth into the default template as a gallery card, drop saas** ([#1040](https://github.com/webjsdev/webjs/pull/1040)) [`94b3b82a`](https://github.com/webjsdev/webjs/commit/94b3b82a)
* chore: start auth gallery card work

* feat(scaffold): add auth gallery card (login, session, protected route)
13 changes: 13 additions & 0 deletions changelog/core/0.7.42.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
package: "@webjsdev/core"
version: 0.7.42
date: 2026-07-22T10:44:04.410Z
commit_count: 1
---
## Fixes

- **correct core .d.ts type surface (phantom base + register param)** ([#1038](https://github.com/webjsdev/webjs/pull/1038)) [`2cb78130`](https://github.com/webjsdev/webjs/commit/2cb78130)
* fix: stop core overlay leaking WebComponentBase as a value export

WebComponentBase is an internal base class the runtime never exports,
but the .d.ts declared it as an abstract class. A class is a value as
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.44",
"version": "0.10.45",
"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.41",
"version": "0.7.42",
"type": "module",
"description": "webjs core runtime - html/css tags, WebComponent base, isomorphic renderers",
"types": "./index.d.ts",
Expand Down
Loading