v0.68.0

lipku/LiveTalkingv0.68.0Mar 20, 2026by fatedier

AI Summary

This release introduces a built-in persistent storage capability for frpc, including new admin APIs and dashboard pages. It also brings significant improvements to build processes, configuration error handling, and authentication token management.

Key Highlights

  • Added a built-in persistent storage capability for frpc with configuration support and management pages.
  • Introduced a `noweb` build tag and auto-detection logic to allow building without frontend assets.
  • Enhanced TOML parsing to provide precise position details and field-level error reporting.
  • Optimized OIDC authentication to cache and refresh tokens, reducing overhead during heartbeats.

New Features

  • Built-in `store` capability for frpc with persisted store source (`[store] path = "..."`)
  • Store CRUD admin APIs (`/api/store/proxies*`, `/api/store/visitors*`) with runtime reload
  • Store management pages in the frpc web dashboard
  • Added `noweb` build tag to allow compiling without frontend assets
  • Improved config parsing errors for `.toml` files with position details and field-level reporting
  • OIDC auth now caches access token and refreshes before expiry

Full Release Notes

## Features

* Added a built-in `store` capability for frpc, including persisted store source (`[store] path = "..."`), Store CRUD admin APIs (`/api/store/proxies*`, `/api/store/visitors*`) with runtime reload, and Store management pages in the frpc web dashboard.

## Improvements

* Kept proxy/visitor names as raw config names during completion; moved user-prefix handling to explicit wire-level naming logic.
* Added `noweb` build tag to allow compiling without frontend assets. `make build` now auto-detects missing `web/*/dist` directories and skips embedding, so a fresh clone can build without running `make web` first. The dashboard gracefully returns 404 when assets are not embedded.
* Improved config parsing errors: for `.toml` files, syntax errors now return immediately with parser position details (line/column when available) instead of falling through to YAML/JSON parsing, and TOML type mismatches report field-level errors without misleading line numbers.
* OIDC auth now caches the access token and refreshes it before expiry, avoiding a new token request on every heartbeat. Falls back to per-request fetch when the provider omits `expires_in`.