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
14 changes: 7 additions & 7 deletions bun.lock

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

16 changes: 16 additions & 0 deletions packages/web-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

## [Unreleased]

## [1.19.0] - 2026-07-24

### Tests

- The `hydrate-browser` e2e fixture's `<Framed>` island now takes a light-DOM `{children}`
slot *inside* its JSX-value local, plus a second `framed={false}` instance. `<Framed>` was
documented as the exact `DocsLayout` shape, but it had no slot — the one ingredient that
matters — so the suite stayed green while the docs site died on first paint with
`ReferenceError: __children is not defined` (fixed in `@opentf/web-compiler`). Nine new
assertions cover both branches: the slotted node is adopted in place, still parented by its
slot, and present exactly once. Reverting the codegen fix now fails this suite with the
reported error instead of passing.
- Its slot is ordered *before* the nested `<Tree>` deliberately: `hydrateSlot` locates slotted
content by the first `<!--c[-->` marker under the host, and the tree's `<Link>` islands emit
markers of their own — a separate, pre-existing limitation of that lookup.

## [1.18.0] - 2026-07-19

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/web-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web-cli",
"version": "1.18.0",
"version": "1.19.0",
"description": "OTF Web dev toolchain — the Rolldown-driven CSR dev server, production build, and SSG.",
"type": "module",
"bin": {
Expand All @@ -20,7 +20,7 @@
"bun": ">=1.0.0"
},
"dependencies": {
"@opentf/web-compiler": "0.10.0",
"@opentf/web-compiler": "0.11.0",
"@tailwindcss/node": "4.2.2",
"@tailwindcss/oxide": "4.2.2",
"rolldown": "1.0.0-rc.17",
Expand Down
2 changes: 2 additions & 0 deletions packages/web-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.11.0] - 2026-07-24

### Fixed

- **A JSX-value local containing a `{children}` slot no longer crashes hydration
Expand Down
2 changes: 1 addition & 1 deletion packages/web-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web-compiler",
"version": "0.10.0",
"version": "0.11.0",
"description": "OTF Web IR compiler (otfwc) — prebuilt platform binaries + host resolver (ARCHITECTURE.md §8).",
"type": "module",
"main": "index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/web-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.18.0] - 2026-07-24

_Dependency updates._

## [0.17.0] - 2026-07-18

_Dependency updates._
Expand Down
2 changes: 1 addition & 1 deletion packages/web-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web-docs",
"version": "0.17.0",
"version": "0.18.0",
"description": "Documentation-site generator for OTF Web — themed shell components (sidebar, TOC, callouts, tabs), a build-time nav generator, and a default light/dark theme.",
"type": "module",
"exports": {
Expand Down
4 changes: 4 additions & 0 deletions packages/web-form/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [1.16.0] - 2026-07-24

_Dependency updates._

## [1.15.0] - 2026-07-18

_Dependency updates._
Expand Down
2 changes: 1 addition & 1 deletion packages/web-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web-form",
"version": "1.15.0",
"version": "1.16.0",
"description": "A high-performance, path-based reactive forms engine for the native-first OTF Web.",
"main": "index.js",
"module": "index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/web-i18n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [1.16.0] - 2026-07-24

_Dependency updates._

## [1.15.0] - 2026-07-18

_Dependency updates._
Expand Down
2 changes: 1 addition & 1 deletion packages/web-i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web-i18n",
"version": "1.15.0",
"version": "1.16.0",
"description": "Internationalization for OTF Web — ICU messages, Intl formatters, and a reactive t() that pairs with the core's URL-prefix locale routing.",
"main": "index.js",
"module": "index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/web-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [1.16.0] - 2026-07-24

_Dependency updates._

## [1.15.0] - 2026-07-18

_Dependency updates._
Expand Down
2 changes: 1 addition & 1 deletion packages/web-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web-test",
"version": "1.15.0",
"version": "1.16.0",
"description": "DOM testing utilities for OTF Web",
"type": "module",
"main": "index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.21.0] - 2026-07-24

### Fixed

- **`skipSlot` now returns the slotted nodes it steps over.** Adoption never *captures* a
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentf/web",
"version": "0.20.0",
"version": "0.21.0",
"description": "The native-first OTF Web runtime — signal-based reactivity and zero-VDOM DOM operations, paired with the IR-based compiler.",
"type": "module",
"exports": {
Expand Down
Loading