RepoJournal
Elixir & Phoenix Elixir & Phoenix
94 wires and counting

$ follow Elixir & Phoenix

Keep up with Elixir & Phoenix 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-01
stories 22

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Phoenix adds CI-friendly test summary formatter

By RepoJournal · Filed · About Elixir & Phoenix

Phoenix ships a new SummaryFormatter that surfaces integration test durations in CI without sacrificing async concurrency.

Phoenix added a lightweight `Phoenix.Integration.SummaryFormatter` for CI visibility [1], replacing a run that emitted only dots for ~10 minutes with a structured Markdown summary. Running tests with `--slowest` previously forced `--trace`, which serialized async tests and set an infinite timeout; the new formatter runs at `max_cases: 20` with active timeout protection instead [1]. Elixir fixed a typecheck crash for functions with impossible clauses by returning an uncallable `fun(arity)` type [2], covering anonymous functions, local captures, and cross-module remote captures. DateTime convert/2 and truncate/2 now honor a custom calendar passed via map [3], and Kernel.CLI drops a duplicate `:elixir_def` entry [4]. The Myers list diff lost unused parameters [5], and a Kernel.SpecialForms ::/2 doc example was corrected [6].

Quick answers

What shipped in Elixir & Phoenix on September 1, 2026?
Phoenix ships a new SummaryFormatter that surfaces integration test durations in CI without sacrificing async concurrency. In total, 12 commits and 10 pull requests landed.
Who contributed to Elixir & Phoenix on September 1, 2026?
3 developers shipped this update, including Alexander Gubarev, Barna Kovacs, and rhcarvalho.
What were the notable Elixir & Phoenix updates?
Add SummaryFormatter for integration test visibility in CI, Fix functions with impossible clauses typecheck crash, and Fix DateTime convert/2 and truncate/2 ignoring custom calendar from map (#15814).