Skip to main content

Documentation Index

Fetch the complete documentation index at: https://86d.app/docs/llms.txt

Use this file to discover all available pages before exploring further.

The canonical changelog for 86d lives in the repository, generated from Changesets entries. Every release entry covers:
  • A summary of changes (features, fixes, internal work).
  • Migration notes for breaking changes (database migrations, renamed environment variables, removed APIs).
  • The list of packages bumped in that release. All packages move together; see Versioning.

Following releases

  • Watch the GitHub repo for release notifications: open github.com/86d-app/86d, click Watch, and choose Custom -> Releases.
  • Subscribe to the npm RSS feeds for individual packages on the package page (https://www.npmjs.com/package/@86d-app/<name>).
  • Follow @86d_app on X for shipped-feature posts.

Upgrading

After pulling a new release into your store:
bun install
bun run db:migrate
86d generate
86d doctor
Read the release notes for that version before you deploy. They flag any required .env changes, removed module options, or schema-affecting migrations. For module upgrades specifically:
86d module update
86d module add <name>   # for each outdated module

Reporting regressions

If a release breaks something for you:
  1. Note the version you upgraded from and to.
  2. Capture the error and the smallest possible reproduction.
  3. Open an issue at github.com/86d-app/86d/issues tagged with regression.
We treat regressions as the highest priority and aim to ship a patch within a few days.