Skip to content

Commit 74cd6f6

Browse files
committed
12.2
1 parent 8fd0d37 commit 74cd6f6

File tree

4 files changed

+43
-8
lines changed

4 files changed

+43
-8
lines changed

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,25 @@ The payload may have more fields, it depends on the engine you use, but here's a
533533
}
534534
```
535535

536+
### message.ack.group
537+
The `message.ack.group` event is triggered when a message in a group chat is acknowledged by a participant.
538+
539+
```jsonc { title="message.ack.group" }
540+
{
541+
"event": "message.ack",
542+
"session": "default",
543+
"engine": "WEBJS",
544+
"payload": {
545+
"id":"[email protected]_4CC5EDD64BC22EBA6D639F2AF571346C_9999@lid",
546+
547+
"participant": "9999@lid",
548+
"fromMe":true,
549+
"ack":3,
550+
"ackName":"READ"
551+
}
552+
}
553+
```
554+
536555
### message.waiting
537556
Happens when you see
538557
[Waiting for this message. This may take a while.](https://faq.whatsapp.com/3398056720476987)

content/docs/how-to/polls/features-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
{{< details "**📶 Polls - Events**" >}}
33

44
| **Events** | WEBJS | NOWEB | GOWS |
5-
|--------------------|-------|-------|:-----|
6-
| `poll.vote` | | ✔️ | ✔️ |
7-
| `poll.vote.failed` | | ✔️ | ✔️ |
5+
|--------------------|:-----:|:-----:|:----:|
6+
| `poll.vote` | ✔️ | ✔️ | ✔️ |
7+
| `poll.vote.failed` | ✔️ | ✔️ | ✔️ |
88

99
{{< /details >}}

content/docs/how-to/polls/features.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<div></div>
22
{{< details "**📶 Polls - API**" >}}
33

4-
| **Events** | WEBJS | GOWS | NOWEB |
5-
|--------------------------|--------------------------------------------------------|:----:|:------|
6-
| `POST /api/sendPoll` | [#189](https://github.com/devlikeapro/waha/issues/189) | ✔️ | ✔️ |
7-
| `POST /api/sendPollVote` | || |
4+
| **Events** | WEBJS | GOWS | NOWEB |
5+
|--------------------------|:-----:|:----:|:-----:|
6+
| `POST /api/sendPoll` | ✔️ | ✔️ | ✔️ |
7+
| `POST /api/sendPollVote` | || |
88

99
_If you see the feature is not available in the above list, please [create a feature request](https://github.com/devlikeapro/waha/issues/new/choose) or **leave "+1" comment** on the existing one._
1010

content/docs/overview/changelog/index.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Check the [**🔧 Install & Update**]({{< relref "/docs/how-to/install" >}}) pag
5555
{{< autolink-prs repo=devlikeapro/waha >}}
5656

5757
🆕 **New**
58+
- `2025.12.1` - **WEBJS** - Add [**📶 Polls**]({{< relref "docs/how-to/polls" >}}) API and events - fix #189
59+
- `2025.12.2` - add dedicated `message.ack.group` event for [**👥 Groups**]({{< relref "/docs/how-to/groups" >}}) message ack
5860
- `2025.12.1` - **API** - [**📞 Reject Call API**]({{< relref "/docs/how-to/calls#reject-call" >}}) - fix #608 fix #1258
5961
- **WEBJS, GOWS, NOWEB**
6062
- `2025.12.1` - **WEBJS** - Add `call.rejected` event when rejected via API
@@ -65,16 +67,30 @@ Check the [**🔧 Install & Update**]({{< relref "/docs/how-to/install" >}}) pag
6567
- `2025.12.1` - [**🧩 Apps API**]({{< relref "/docs/apps/about#api" >}}) and [**🖥️ Sessions - Apps**]({{< relref "/docs/how-to/sessions#apps" >}}) to manage apps via API
6668
- `2025.12.1` - `WAHA_APPS_ON` and `WAHA_APPS_OFF` to control which apps to enable (so it doesn't require redis for chatwoot)
6769

68-
6970
**🧩 ChatWoot**
71+
- `2025.12.2` - add Italian translations - closes #1722
7072
- `2025.12.1` - add [**📞 Calls**]({{< relref "/docs/how-to/calls" >}}) messages
7173
- `2025.12.1` - fix symbols in the middle of text - fix #1643
7274
- `2025.12.1` - `config.conversations.markAsRead` - fix #1650
7375

7476
🛠️ **Fixes**
77+
- `2025.12.2` - **GOWS** - gRPC client per session and pool for clients - fix #1715
78+
- `2025.12.2` - **NOWEB** - MongoDB - use separate keys for each key - fix #1713
79+
- `2025.12.2` - **NOWEB** - fix `poll.vote` for `@lid` - fix #1688
80+
- `2025.12.2` - **Webhook** - ignore SSL errors - mention #1717
81+
- `2025.12.2` - **GOWS** - fix message duplications - closes #1718 fix #1564 fix #1564
82+
- `2025.12.2` - **GOWS** - missing messages fix
7583
- `2025.12.1` - **WEBJS** - fix stuck in `SCAN_QR_CODE` - fix #1690 closes #1695
7684
- `2025.12.1` - **NOWEB** - fix `poll.vote` for `@lid` - fix #1688
7785

86+
**📊 Dashboard**
87+
- `2025.12.2` - add Italian translations
88+
89+
⚙️ **Updates**
90+
- `2025.12.2`- up **WEBJS**
91+
- `2025.12.2`- up **GOWS**
92+
- `2025.12.2`- up **NOWEB**
93+
7894
{{< /autolink-prs >}}
7995
{{< /autolink-issues >}}
8096

0 commit comments

Comments
 (0)