diff --git a/changelog/cli/0.10.45.md b/changelog/cli/0.10.45.md new file mode 100644 index 000000000..0a58b0f2b --- /dev/null +++ b/changelog/cli/0.10.45.md @@ -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) diff --git a/changelog/core/0.7.42.md b/changelog/core/0.7.42.md new file mode 100644 index 000000000..498d4d367 --- /dev/null +++ b/changelog/core/0.7.42.md @@ -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 diff --git a/package-lock.json b/package-lock.json index a3f6ecd93..3bd8d4d6a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6975,7 +6975,7 @@ }, "packages/cli": { "name": "@webjsdev/cli", - "version": "0.10.44", + "version": "0.10.45", "license": "MIT", "dependencies": { "@webjsdev/mcp": "^0.1.0", @@ -6991,7 +6991,7 @@ }, "packages/core": { "name": "@webjsdev/core", - "version": "0.7.40", + "version": "0.7.42", "license": "MIT", "devDependencies": { "esbuild": "^0.25.0" @@ -7040,7 +7040,7 @@ }, "packages/server": { "name": "@webjsdev/server", - "version": "0.8.54", + "version": "0.8.55", "license": "MIT", "dependencies": { "@webjsdev/core": "^0.7.1", diff --git a/packages/cli/package.json b/packages/cli/package.json index 94b99bcd6..6f95a1d78 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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": { diff --git a/packages/core/package.json b/packages/core/package.json index 9e2fb4da8..2473cbd8e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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",