Skip to content

Commit 9ce6255

Browse files
committed
11.4
1 parent 1d2c0db commit 9ce6255

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

content/docs/overview/changelog/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ Check the [**🔧 Install & Update**]({{< relref "/docs/how-to/install" >}}) pag
6161
- **WEBJS, GOWS, NOWEB**
6262

6363
🛠️ **Fixes**
64+
- `2025.11.4` - **GOWS** - cap gRPC responses at 128MB to avoid oversized payloads
65+
- `2025.11.4` - **GOWS** - webhook `requestId` uses `uniqid` and logs the event
66+
- `2025.11.4` - **ALL** - Disable CPU profiling when `WAHA_DEBUG_MODE=true` - fix #1681
67+
- `2025.11.4` - **GOWS** - send and send media via file (core & PLUS) - fix #1639
6468
- `2025.11.3` - **GOWS** - fix file sent by me - fix #1630
6569
- `2025.11.3` - **GOWS** - fix memory leak - fix #1639
6670
- `2025.11.3` - **GOWS** - fix DNS resolving `127.0.0.11:53: i/o timeout` - fix #1649
@@ -86,6 +90,8 @@ Check the [**🔧 Install & Update**]({{< relref "/docs/how-to/install" >}}) pag
8690
- `2025.11.3` - fix contact name with 255 symbols - fix #1556
8791

8892
⚙️ **Updates**
93+
- `2025.11.4` - **WEBJS** - engine update - fix #1678
94+
- `2025.11.4` - **Node.js** `24.11` - fix #1639
8995
- `2025.11.3` - **WEBJS** - engine update - fix #1662
9096
- `2025.11.3` - **Dashboard** - app id is UUID now
9197
- `2025.11.2` - **GOWS** - stability update

static/swagger/openapi.json

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6290,6 +6290,40 @@
62906290
]
62916291
}
62926292
},
6293+
"/api/server/debug/cpu": {
6294+
"get": {
6295+
"operationId": "ServerDebugController_cpuProfile",
6296+
"summary": "Collect and return a CPU profile for the current nodejs process",
6297+
"description": "Uses the Node.js inspector profiler to capture a .cpuprofile",
6298+
"parameters": [
6299+
{
6300+
"name": "seconds",
6301+
"required": false,
6302+
"in": "query",
6303+
"description": "How many seconds to sample CPU",
6304+
"schema": {
6305+
"minimum": 1,
6306+
"default": 30,
6307+
"example": 30,
6308+
"type": "number"
6309+
}
6310+
}
6311+
],
6312+
"responses": {
6313+
"200": {
6314+
"description": ""
6315+
}
6316+
},
6317+
"tags": [
6318+
"🔍 Observability"
6319+
],
6320+
"security": [
6321+
{
6322+
"api_key": []
6323+
}
6324+
]
6325+
}
6326+
},
62936327
"/api/server/debug/heapsnapshot": {
62946328
"get": {
62956329
"operationId": "ServerDebugController_heapsnapshot",
@@ -6707,7 +6741,7 @@
67076741
"info": {
67086742
"title": "WAHA - WhatsApp HTTP API",
67096743
"description": "<b>WhatsApp HTTP API</b> that you can run in a click!<br/><a href=\"/dashboard\"><b>📊 Dashboard</b></a><br/><br/>Learn more:<ul><li><a href=\"https://waha.devlike.pro/\" target=\"_blank\">Documentation</a></li><li><a href=\"https://waha.devlike.pro/docs/how-to/engines/#features\" target=\"_blank\">Supported features in engines</a></li><li><a href=\"https://github.com/devlikeapro/waha\" target=\"_blank\">GitHub - WAHA Core</a></li><li><a href=\"https://github.com/devlikeapro/waha-plus\" target=\"_blank\">GitHub - WAHA Plus</a></li></ul><p>Support the project and get WAHA Plus version!</p><ul><li><a href=\"https://waha.devlike.pro/docs/how-to/plus-version/\" target=\"_blank\">WAHA Plus</a></li><li><a href=\"https://patreon.com/wa_http_api/\" target=\"_blank\">Patreon</a></li><li><a href=\"https://boosty.to/wa-http-api/\" target=\"_blank\">Boosty</a></li><li><a href=\"https://portal.devlike.pro/\" target=\"_blank\">Patron Portal</a></li></ul>",
6710-
"version": "2025.11.2",
6744+
"version": "2025.11.4",
67116745
"contact": {}
67126746
},
67136747
"tags": [

0 commit comments

Comments
 (0)