Skip to main content

Features

Hidden subgroup visibility (#1522) Subgroup visibility is now part of the public community API. A hidden subgroup is omitted from the community’s subgroup list for users who are not members; a visible subgroup appears for everyone. Visibility is fixed at creation or link time — WhatsApp does not support changing it later. New types in whatsapp_rust::features::community: New methods on Community: The visible-only wrappers create_subgroup and link_subgroups still work and default to SubgroupVisibility::Visible, so existing call sites do not need to change.
CommunitySubgroup gained an is_hidden_group: bool field, parsed from the hidden_group property in the MEX subgroup listing. It defaults to false when the server omits the field, so existing readers keep working. See the community management guide for a full walkthrough.