Skip to content

v0.1.4

Choose a tag to compare

@github-actions github-actions released this 05 Jun 10:45
· 0 commits to 549539108e891e74467afb09ca94ab38d306b1f0 since this release

Highlights

  • Windows is unblocked. tangly dev and tangly build crashed on Windows with TypeError [ERR_INVALID_URL_SCHEME]: The URL must be of scheme file. The content loader handed your project root to Astro as a raw path string, and a drive-letter path like E:\project parses its E: as a URL scheme. The root is now passed as a proper file: URL, so it resolves on every platform (#6).
  • Mintlify api.playground.display is accepted. Mintlify renamed api.playground.mode to display (interactive / simple / none / auth). Unmodified projects hit Unrecognized key: "display" on parse. The value now normalizes to Tangly's native mode (none maps to hide, auth to interactive) across dev, build, check, and migrate.

Changes

Fixes

  • fix(schema): alias api.playground.display to native mode (666771a)
  • fix(runtime): pass file URL as glob base for Windows compat (15ad9aa)