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
33 changes: 0 additions & 33 deletions .changeset/20260720-v010-release.md

This file was deleted.

32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## v0.1.0 (2026-07-20)

- Initial minor release consolidating all features since first commit.

**Features**
- Library API with batch rendering, error reporting, and CLI enhancements (#1)
- ES module loader architecture with shared runtime (#9)
- Engine pool for concurrent request handling in `golit serve` (#12)
- SSR fetch bridge and Lit-aligned domshim globals (#8)
- Middleware examples, warm path serving, and SSR benchmarks (#7)
- Server-Timing header with render duration and pool utilization (#21)
- Reading HTML fragments from stdin (#23)
- Stdio mode (`--stdio`) for NUL-delimited stdin/stdout protocol (#24)
- Shared render cache across pool engines with 4096-entry cap (#28, #29, #31)
- Configurable esbuild options: `--target`, `--format`, `--platform`, `--conditions`, `--main-fields` (#34)
- Warn on unregistered elements and render failures with `--quiet` suppression (#35)
- Filename-based tag discovery for bundles with inlined dependencies (#34)

**Fixes**
- Guard domshim globals to prevent CustomElementRegistry wipe (#6)
- Stop injecting defer-hydration attribute during SSR (#3)
- Non-fatal discovery errors and dynamic import resolution (#13)
- Emit root lit-part markers for components with empty render (#17)
- Register dynamic import targets as standalone QJS modules (#20)
- Preserve DOCTYPE/html/head/body in full document input (#27)
- Walk all node_modules directories for nested dependency resolution (#34)
- Add MainFields and browser conditions for PlatformNeutral esbuild resolution (#34)

**Performance**
- Transform pipeline optimizations (#2)
- Render result caching and JS execution optimizations (#28)

# golit

## Changelog
2 changes: 1 addition & 1 deletion cmd/golit/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ package main

// Version is the current release version of golit.
// Updated automatically by the changeset tool during releases.
var Version = "0.0.1"
var Version = "0.1.0"
Loading