Skip to content

v0.1.4

Choose a tag to compare

@github-actions github-actions released this 21 Aug 12:45
· 10 commits to main since this release

Makes the Debugger Luau API beta impossible to miss, and stops it from being able to break anything else.

Fixed

  • The plugin could fail to load entirely when the Debugger beta was off. ScriptDebuggerService is only registered when that beta is on, and the handler asked for it at plugin start with no guard. If GetService threw there, every tool went down with it, not just debug — and silently, since a plugin that never loads never connects. The lookup is now guarded and a missing service is just a missing feature.

Added

  • studio_status reports debuggerBeta: "off" when the beta is disabled, so an agent finds out before calling debug rather than by failing. Absent when it is on, so the usual answer costs nothing.
  • CHANGELOG.md, and the release workflow now builds each release body from it. A tag whose version has no section fails the workflow instead of publishing an empty release.