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
23 changes: 23 additions & 0 deletions changelog/cli/0.10.58.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
package: "@webjsdev/cli"
version: 0.10.58
date: 2026-09-19T12:04:46.240Z
commit_count: 3
---
## Features

- **make webjs db bring-your-own-ORM via a webjs.db verb map** ([#1469](https://github.com/webjsdev/webjs/pull/1469)) [`4f685d1a`](https://github.com/webjsdev/webjs/commit/4f685d1a)
Drizzle is the scaffold default, not lock-in. A `webjs.db` block in
`package.json` maps a verb to a shell command, so `webjs db migrate` keeps
one spelling across ORMs and the scaffolded start task, Dockerfile, and CI
keep working after a swap. An unmapped verb keeps its Drizzle default.
- **add `webjs ci`, a local CI runner the scaffold workflow reuses** ([#1472](https://github.com/webjsdev/webjs/pull/1472)) [`1b80e0c3`](https://github.com/webjsdev/webjs/commit/1b80e0c3)
`webjs ci` runs the step list an app declares under `webjs.ci.steps`, with
one timed result line per step, parallel groups, `--only`, `--fail-fast`,
`--json`, and `--signoff`. The scaffolded GitHub workflow runs the same list
through `npm run ci`, so local and cloud CI cannot drift, and
`webjs create --skip-ci` omits the workflow.
- **add an opt-in, agent-first design-system linter** ([#1479](https://github.com/webjsdev/webjs/pull/1479)) [`cb073574`](https://github.com/webjsdev/webjs/commit/cb073574)
`webjs ui lint` is wired through to the `@webjsdev/ui` linter, and the
declared `@webjsdev/ui` and `@webjsdev/server` ranges are raised to the
versions that carry it and the new config keys.
15 changes: 15 additions & 0 deletions changelog/core/0.7.54.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
package: "@webjsdev/core"
version: 0.7.54
date: 2026-09-19T12:04:46.131Z
commit_count: 2
---
## Features

- **make webjs db bring-your-own-ORM via a webjs.db verb map** ([#1469](https://github.com/webjsdev/webjs/pull/1469)) [`4f685d1a`](https://github.com/webjsdev/webjs/commit/4f685d1a)
The `WebjsConfig` type gains the `db` block, a map from a `webjs db` verb to
the shell command that runs in its place, so a typed `package.json` config
accepts it.
- **add `webjs ci`, a local CI runner the scaffold workflow reuses** ([#1472](https://github.com/webjsdev/webjs/pull/1472)) [`1b80e0c3`](https://github.com/webjsdev/webjs/commit/1b80e0c3)
The `WebjsConfig` type gains the `ci` block and exports the step types
(a command string, a titled command, and a group that can run in parallel).
15 changes: 15 additions & 0 deletions changelog/server/0.8.67.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
package: "@webjsdev/server"
version: 0.8.67
date: 2026-09-19T12:04:46.184Z
commit_count: 2
---
## Features

- **make webjs db bring-your-own-ORM via a webjs.db verb map** ([#1469](https://github.com/webjsdev/webjs/pull/1469)) [`4f685d1a`](https://github.com/webjsdev/webjs/commit/4f685d1a)
The config validator and the published JSON Schema accept a `webjs.db`
block, so an app that maps a verb to its own ORM command no longer reports
an unknown key.
- **add `webjs ci`, a local CI runner the scaffold workflow reuses** ([#1472](https://github.com/webjsdev/webjs/pull/1472)) [`1b80e0c3`](https://github.com/webjsdev/webjs/commit/1b80e0c3)
The config validator and the published JSON Schema accept the `webjs.ci`
step list, which every freshly scaffolded app now declares.
14 changes: 14 additions & 0 deletions changelog/ui/0.3.15.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
package: "@webjsdev/ui"
version: 0.3.15
date: 2026-09-19T12:04:46.200Z
commit_count: 1
---
## Features

- **add an opt-in, agent-first design-system linter** ([#1479](https://github.com/webjsdev/webjs/pull/1479)) [`cb073574`](https://github.com/webjsdev/webjs/commit/cb073574)
`webjs ui lint` checks an app's templates against its own design system:
no raw colors, no arbitrary values, and no restyling classes composed next to
a kit helper, where the message names the helper's real variant and size
values. It is configured by an optional `lint` block in
`components.json`, and an app with no block reports nothing.
12 changes: 6 additions & 6 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webjsdev/cli",
"version": "0.10.57",
"version": "0.10.58",
"type": "module",
"description": "The CLI for WebJs, a full-stack JavaScript framework built on web components with server-side rendering and no build step. Runs the dev and production servers, scaffolds apps, validates conventions, and drives the database. Node 24+ or Bun.",
"bin": {
Expand All @@ -18,8 +18,8 @@
],
"dependencies": {
"@webjsdev/mcp": "^0.1.0",
"@webjsdev/server": "^0.8.0",
"@webjsdev/ui": "^0.3.1"
"@webjsdev/server": "^0.8.67",
"@webjsdev/ui": "^0.3.15"
},
"publishConfig": {
"access": "public"
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.53",
"version": "0.7.54",
"type": "module",
"description": "The runtime for WebJs, a full-stack JavaScript framework built on web components with server-side rendering and no build step. Ships the html and css template tags, the WebComponent base class, signals, directives, and the 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.66",
"version": "0.8.67",
"type": "module",
"description": "The server for WebJs, a full-stack JavaScript framework built on web components with server-side rendering and no build step. Provides the file-based router, SSR, server actions, route handlers, middleware, and live reload on Node 24+ or Bun.",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webjsdev/ui",
"version": "0.3.14",
"version": "0.3.15",
"type": "module",
"description": "The AI-first component library for WebJs, a full-stack JavaScript framework built on web components with server-side rendering and no build step. Class-helper functions for visuals, custom elements only where state matters, source-copied into your repo so you own it.",
"bin": {
Expand Down
Loading