Skip to content

v1.71.3

Choose a tag to compare

@MichaelSowah MichaelSowah released this 25 Jul 22:35
0c19add

[1.71.3] - 2026-07-25 — Alcor

Theme: discovered console commands join the booted world — a one-line-in-spirit console fix
with a wide blast radius: extension-discovered commands no longer run inside a parallel,
never-booted container. Pure fix: no new env vars, no migrations, no default changes, no API
changes.

Fixed

  • Console: discovered commands ran in a parallel, never-booted world
    Application::registerDeferredExtensionCommands() instantiated non-container-registered
    commands bare (new $class()), sending BaseCommand down its no-args path: a fresh
    ApplicationContext plus a fresh container in which extension boot() never ran, so
    discovered commands silently operated without capabilities, boot-registered contributors,
    or listeners. Bare instantiation now passes the console's own container and
    ApplicationContext when the class is a BaseCommand, matching container-resolved commands.