diff --git a/changelog/cli/0.10.44.md b/changelog/cli/0.10.44.md new file mode 100644 index 000000000..6942b3445 --- /dev/null +++ b/changelog/cli/0.10.44.md @@ -0,0 +1,12 @@ +--- +package: "@webjsdev/cli" +version: 0.10.44 +date: 2026-07-15T19:05:19.987Z +commit_count: 1 +--- +## Features + +- **add webjs-frame gallery demo and rework the server-actions demo** ([#989](https://github.com/webjsdev/webjs/pull/989)) [`69b3e3f9`](https://github.com/webjsdev/webjs/commit/69b3e3f9) + * feat: add webjs-frame partial-swap gallery demo + + * fix: prune modules/frames in gallery:clear reset diff --git a/changelog/core/0.7.39.md b/changelog/core/0.7.39.md new file mode 100644 index 000000000..103c2eb8f --- /dev/null +++ b/changelog/core/0.7.39.md @@ -0,0 +1,10 @@ +--- +package: "@webjsdev/core" +version: 0.7.39 +date: 2026-07-15T19:05:19.871Z +commit_count: 1 +--- +## Fixes + +- **recover a dropped wj:children close marker on soft nav** ([#994](https://github.com/webjsdev/webjs/pull/994)) [`779dbb1d`](https://github.com/webjsdev/webjs/commit/779dbb1d) + Recover an orphaned wj:children open marker whose close comment was dropped by the browser parser (a cross-engine parse race seen on Android Chrome and desktop Chromium), so a soft nav takes the correct scoped swap and the outer-layout navbar keeps its DOM identity instead of being wiped by the destructive full-body fallback. Bound the recovered range against the well-formed side's trailing-sibling count so a footer in the marker's own parent is preserved, and keep buildHaveHeader strict so an orphaned page fetches the full page where the bounding aligns. diff --git a/package-lock.json b/package-lock.json index bd8f660f9..61a20d8ae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6975,7 +6975,7 @@ }, "packages/cli": { "name": "@webjsdev/cli", - "version": "0.10.43", + "version": "0.10.44", "license": "MIT", "dependencies": { "@webjsdev/mcp": "^0.1.0", @@ -6991,7 +6991,7 @@ }, "packages/core": { "name": "@webjsdev/core", - "version": "0.7.38", + "version": "0.7.39", "license": "MIT", "devDependencies": { "esbuild": "^0.25.0" diff --git a/packages/cli/package.json b/packages/cli/package.json index 833cfcdbc..94b99bcd6 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@webjsdev/cli", - "version": "0.10.43", + "version": "0.10.44", "type": "module", "description": "webjs CLI - dev, start, create, db", "bin": { diff --git a/packages/core/package.json b/packages/core/package.json index f779deced..3c54b09f5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@webjsdev/core", - "version": "0.7.38", + "version": "0.7.39", "type": "module", "description": "webjs core runtime - html/css tags, WebComponent base, isomorphic renderers", "types": "./index.d.ts",