Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: onejs/one
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ddd092a
Choose a base ref
...
head repository: onejs/one
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ba6d154
Choose a head ref
  • 4 commits
  • 71 files changed
  • 1 contributor

Commits on Jun 13, 2026

  1. fix(one): only clear SSR module runner cache when files change

    clearing the runner cache on every page render forced a full re-evaluation
    of the whole server module tree (new AsyncFunction per module) per request,
    leaking heap unboundedly under sustained navigation (-> 5-8GB RSS / OOM) and
    re-transforming every module each request. gate it behind a dirty flag set by
    the file watcher so we only re-evaluate after an actual change.
    
    Agentbus-Session: ab-mqc0xy8q-83000
    natew committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    a398e54 View commit details
    Browse the repository at this point in the history
  2. fix(one): remove dead write-only LoaderDataCache

    LoaderDataCache was written on every render (LoaderDataCache[route.file] =
    loaderData) but never read anywhere, pinning the latest loader payload per
    route for the life of the dev server. pure leak, removed.
    
    Agentbus-Session: ab-mqc0xy8q-83000
    natew committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    41f6ef6 View commit details
    Browse the repository at this point in the history
  3. docs: dev memory leak rca + fix + native floor follow-ups

    Agentbus-Session: ab-mqc0xy8q-83000
    natew committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    dbe4113 View commit details
    Browse the repository at this point in the history
  4. v1.18.1

    natew committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    ba6d154 View commit details
    Browse the repository at this point in the history
Loading