WhatsApp Introduces @all Mentions and New Group Chat Features
WhatsApp Deploys @all Mentions and Granular Poll Controls in Latest Production Push
As enterprise adoption scales past 3 billion global users, Meta has initiated a production roll-out for WhatsApp introducing the @all tag, granular poll upgrades, and streamlined group chat creation workflows.
The Tech TL;DR:
- Deterministic Polling: Poll creators can now programmatically set hard end times to lock voting, hide individual voter identities for privacy compliance, and patch typo-laden queries within a 15-minute window.
- Dynamic Thread Forking: A single-tap “Create a similar group” mechanism allows developers and teams to spin off isolated sub-groups carrying over existing membership rosters instantly.
Managing high-density developer channels or sprawling community chats on consumer-grade infrastructure often introduces significant noise-to-signal ratios.
Architectural Breakdown of the @all Notification Pipeline
According to coverage from MacRumors, the mechanism is engineered for time-sensitive operational alerts such as infrastructure outages, office closures, or urgent release deadlines.
In any group chat containing more than 32 members, standard users are stripped of the capability; only verified administrators retain the execution privilege for @all broadcasts.
State Management and UI Enhancements for Group Polls
The current release introduces three primary state-management upgrades:

- Automated Vote Locking: Creators can define an explicit expiration timestamp. Once reached, the poll automatically transitions to a read-only state, eliminating trailing votes.
- Anonymous Anonymization: Voter names can now be obfuscated on the client display, ensuring participants can register preferences without peer pressure or visibility concerns.
- Mutable Query Windows: A 15-minute grace period allows engineers and organizers to edit poll strings post-deployment to correct syntax errors or clarify parameters.
Programmatic Group Forking and Implementation Logic
The newly added “Create a similar group” shortcut abstracts this process.
{
"action": "fork_group",
"source_uuid": "grp_88493021_prod",
"new_group_metadata": {
"title": "Incident Response Sub-Team",
"inherit_members": true,
"admin_override": false
},
"timestamp": "2026-08-13T12:20:00Z"
}
This architectural shift allows technical teams to immediately isolate side conversations—such as incident triage or event logistics—away from primary deployment channels without cluttering the global workspace or losing context.