108 wires and counting

$ follow Laravel

Keep up with Laravel in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-05
stories 35

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

cloud-cli v0.6.0 adds GitLab and Bitbucket source providers

By RepoJournal · Filed · About Laravel

cloud-cli v0.6.0 ships support for GitLab and Bitbucket source providers, resolving a GitHub-only assumption that broke repo links and provider detection for non-GitHub remotes.

cloud-cli v0.6.0 adds GitLab and Bitbucket as source providers [1], [2], [3]. The CLI previously assumed GitHub everywhere: it never sent the provider when creating or updating an app and hardcoded github.com into every repo, commit, and branch link. Provider knowledge now sits behind a driver interface in `app/SourceProviders/`, one class per provider. The provider comes from the origin remote, so nothing changes for GitHub users. Unrecognized hosts prompt, or take `--source-provider`. Bitbucket has no official CLI, so the driver only builds URLs and there is no repo creation path. Users create the repository themselves and add it as a remote [2].

The release also bounds the site-readiness poll in ship. Previously `Ship::waitForUrlToBeReady()` looped indefinitely, exiting only on a 2xx or 5xx; any persistent 4xx, like a 404 while the vanity domain propagates, would hang forever. The poll is now bounded and survives connection failures [4], [1].

Across surveyor and ranger, test matrices drop Laravel 11 and add PHP 8.2 [5], [6], and both projects ran a phpstan level 5 pass. Surveyor ended back down to 0 but kept the fixes the level found, with a real level 5 bump to follow [7]. Ranger's CI tests are re-enabled after the matrix fix [6]. Surveyor also fixes `Condition::removeType()`: when the current type does not match the removal target, the original type is now preserved instead of being replaced [8].

Boost removed deprecated Rector skips [9].

Quick answers

What shipped in Laravel on September 5, 2026?
cloud-cli v0.6.0 ships support for GitLab and Bitbucket source providers, resolving a GitHub-only assumption that broke repo links and provider detection for non-GitHub remotes. In total, 18 commits, 16 pull requests, and 1 releases landed.
Who contributed to Laravel on September 5, 2026?
4 developers shipped this update, including Mohammad Javad Ranjbar, joetannenbaum, usamamuneerchaudhary, and Button99.
What were the notable Laravel updates?
v0.6.0, Support Bitbucket as a source provider, and Support GitLab as a source provider.