Skip to content

Commit adc784c

Browse files
committed
2025.11.1
1 parent ed02aa2 commit adc784c

File tree

5 files changed

+98
-1
lines changed

5 files changed

+98
-1
lines changed

content/docs/how-to/groups/index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,35 @@ GET /api/{session}/groups/{groupId}/settings/security/messages-admin-only
329329

330330
### Participants
331331

332+
#### Get participants v2
333+
334+
Get list of participants with the "almost" the same response across engines
335+
336+
```http request
337+
GET /api/{session}/groups/{groupId}/participants/v2
338+
```
339+
```json
340+
[
341+
{
342+
343+
"role": "participant"
344+
},
345+
{
346+
347+
"role": "superadmin"
348+
},
349+
{
350+
351+
"role": "participant"
352+
}
353+
]
354+
```
355+
Role:
356+
- `left`
357+
- `participant`
358+
- `admin`
359+
- `superadmin`
360+
332361
#### Get participants
333362

334363
```http request

content/docs/how-to/send-messages/index.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,18 @@ also mention it in `mentions` in format `[email protected]`
223223
}
224224
```
225225

226+
{{< callout context="tip" icon="outline/hand-finger-right" title="Mention Everyone in a Group" >}}
227+
In **groups**, you can mention all participants at once by using the `"all"` keyword in the `mentions` field:
228+
```jsonc { title="Body (Mention All)" }
229+
{
230+
"session": "default",
231+
"chatId": "[email protected]",
232+
"text": "Hi there, check this out!",
233+
"mentions": [ "all" ]
234+
}
235+
```
236+
{{< /callout >}}
237+
226238
## Send Image
227239
Use API to send images to the chat.
228240

@@ -1024,4 +1036,4 @@ Here's available buttons you can use in `buttons`:
10241036
}
10251037
```
10261038
{{< /tab >}}
1027-
{{< /tabs >}}
1039+
{{< /tabs >}}

content/docs/overview/changelog/index.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,33 @@ Latest Version:
4747
Check the [**🔧 Install & Update**]({{< relref "/docs/how-to/install" >}}) page to learn how to update WAHA.
4848
{{< /callout >}}
4949

50+
{{< autolink-issues repo=devlikeapro/waha >}}
51+
### 2025.11
52+
53+
🆕 **New**
54+
- `2025.11.1` - **API** - mention everyone in groups with `mentions: ["all"]` - fix #1377
55+
- **WEBJS, GOWS, NOWEB**
56+
- `2025.11.1` - **API** - `/api/:session/groups/:id/participants/v2`
57+
- **WEBJS, GOWS, NOWEB**
58+
59+
🛠️ **Fixes**
60+
- `2025.11.1` - **WEBJS** - forward messages - fix #1546
61+
- `2025.11.1` - **WEBJS** - update contact name - fix #1583
62+
- `2025.11.1` - **API** - Exclude `/ping` (and `/health` using `WAHA_API_KEY_EXCLUDE_PATH`) from Swagger auth - fix #1562
63+
- `2025.11.1` - **Dashboard** - fix Chat UI - fix #1602
64+
- `2025.11.1` - **GOWS** - mention support - fix #1372
65+
- `2025.11.1` - **GOWS** - raise gRPC payload limit to 512MB - fix #1365
66+
- `2025.11.1` - **GOWS** - Ignore status@broadcast for ack updates - fix #1557
67+
- `2025.11.1` - **GOWS** - Fix `poll.vote.failed` - fix #1561, fix #1570
68+
69+
70+
⚙️ **Updates**
71+
- `2025.11.1` - **GOWS** - engine update
72+
- `2025.11.1` - **WEBJS** - engine update
73+
- `2025.11.1` - **NOWEB** - engine update
74+
75+
{{< /autolink-issues >}}
76+
5077
### 2025.10
5178
📢 **BREAKING CHANGE** 📢
5279

hugo_stats.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,7 @@
514514
"20249",
515515
"20251",
516516
"202510",
517+
"202511",
517518
"20252",
518519
"20253",
519520
"20254",
@@ -677,6 +678,7 @@
677678
"get-notified",
678679
"get-pairing-code",
679680
"get-participants",
681+
"get-participants-v2",
680682
"get-phone-number-by-lid",
681683
"get-profile",
682684
"get-qr",
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{{/*
2+
Shortcode: autolink-issues
3+
Required param: repo (e.g. "devlikepro/waha-plus")
4+
5+
Usage:
6+
{{< autolink-issues repo="devlikepro/waha-plus" >}}
7+
- fix #123
8+
- issue devlikepro/other-repo#45
9+
{{< /autolink-issues >}}
10+
*/}}
11+
12+
{{- $repo := .Get "repo" -}}
13+
{{- if not $repo -}}
14+
{{- errorf "autolink-issues: missing required param 'repo'" -}}
15+
{{- end -}}
16+
17+
{{- $patternExplicit := `(?i)(?:fix|issue|pr|pull)\s+([A-Za-z0-9_.-]+/[A-Za-z0-9_.-]+)#([0-9]+)` -}}
18+
{{- $replaceExplicit := `<a href="https://github.com/${1}/issues/${2}">${1}#${2}</a>` -}}
19+
20+
{{- $patternDefault := `(?i)(?:fix|issue|pr|pull)\s*#([0-9]+)` -}}
21+
{{- $replaceDefault := printf `<a href="https://github.com/%s/issues/${1}">#${1}</a>` $repo -}}
22+
23+
{{- $text := .Inner -}}
24+
{{- $text = replaceRE $patternExplicit $replaceExplicit $text -}}
25+
{{- $text = replaceRE $patternDefault $replaceDefault $text -}}
26+
27+
{{- $text | markdownify | safeHTML -}}

0 commit comments

Comments
 (0)