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-08-31
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

U+055F joins the case ignorable set

By RepoJournal · Filed · About Elixir & Phoenix

Elixir now skips the Armenian abbreviation mark in Greek final sigma scans, fixing String.downcase/2 and String.capitalize/2 edge cases.

Elixir's hardcoded case ignorable set now includes U+055F ARMENIAN ABBREVIATION MARK [1]. Previously, `case_context/1` returned `:other` for U+055F, so the Final_Sigma context scan stopped at it instead of skipping it [2]. This affected `String.downcase/2` and `String.capitalize/2` in `:greek` mode on both sides of the Final_Sigma rule [1]. The change aligns with the UCD properties Word_Break=MidLetter and Case_Ignorable [2]. In Phoenix, a docs and chore rename of the `secret` argument to `salt` in the token module aligns the argument name with what `sign/4` and `verify/4` already call it, matching the moduledocs which describe it as a "cryptographic salt" [3]. This is a cosmetic rename, not a behavior change. The CaptureLog formatter test was simplified [4], a test-only change with no runtime impact.

Quick answers

What shipped in Elixir & Phoenix on August 31, 2026?
Elixir now skips the Armenian abbreviation mark in Greek final sigma scans, fixing String.downcase/2 and String.capitalize/2 edge cases. In total, 3 commits and 3 pull requests landed.
Who contributed to Elixir & Phoenix on August 31, 2026?
3 developers shipped this update, including tiagoefmoraes, Jaideep Pyne, and kevinschweikert.
What were the notable Elixir & Phoenix updates?
Add U+055F to the case ignorable set (#15812), Add U+055F to the case ignorable set, and chore: rename secret to salt (#6813).