Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This repository provides:
| [`faq-bot`](./faq-bot) | Auto-replies to inbound WhatsApp messages from configurable FAQ keyword/regex rules. | 0.2.0 | stable |
| [`group-translate`](./group-translate) | Auto-translates group messages between participants' languages via a LibreTranslate backend. Configure in-chat with /tr commands. Admin-gated; disabled until enabled. | 1.1.0 | stable |
| [`gsheets-logger`](./gsheets-logger) | Logs WhatsApp message events to a Google Sheet via a service account. | 0.3.2 | stable |
| [`http-action`](./http-action) | Triggers safe REST API requests from WhatsApp commands and renders JSON responses back to chat. | 0.2.0 | beta |
| [`http-action`](./http-action) | Triggers safe REST API requests from WhatsApp commands and renders JSON responses back to chat. | 0.2.1 | stable |
| [`supabase-otp-hook`](./supabase-otp-hook) | Deliver Supabase Auth phone OTPs over WhatsApp. | 0.3.0 | beta |
| [`typebot-connector`](./typebot-connector) | Runs a Typebot flow as the brain of a WhatsApp bot: inbound messages drive a Typebot chat session via the live Chat API, and the bot's replies — text, media, and numbered-choice inputs — are sent back to WhatsApp. Auto-starts every chat, handles file-upload steps, and resets when the flow ends or after an idle timeout. Runs sandboxed in the plugin worker; no public URL or webhook required. | 0.2.1 | stable |
| [`voice-transcription`](./voice-transcription) | Transcribes inbound WhatsApp voice notes to text via an OpenAI-compatible speech-to-text backend (self-hosted Speaches/faster-whisper or hosted Groq/OpenAI) and delivers a `message.transcription` event to your webhook — so bots and AI can read and reply to audio. Off the message-delivery path; disabled until enabled. | 1.2.0 | beta |
Expand Down
15 changes: 15 additions & 0 deletions http-action/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to HTTP Action Bot are listed here. Versions follow [Semantic Versioning](https://semver.org/),
and the top entry's version must match `manifest.json`.

## [0.2.1] — 2026-08-01

### Changed

- **Status promoted from `beta` to `stable`.** No behaviour changed in this release. A manual install
smoke on a real OpenWA 0.12.1 host — the one check that cannot be automated — has now been run in
full and passed: install from package, configure, and enable; a POST command with path and JSON-body
templating (reply carried the templated body, the sender's phone number resolved correctly, the
configured bearer credential reached the upstream); a command against an upstream 404 (the configured
not-found template was used); a command against an upstream 500 (the configured error template was
used); disable/re-enable (configuration survived, a command worked afterwards); and a host restart
(the plugin came back enabled and a command was confirmed working afterwards). With another
responder plugin installed alongside, commands were answered by this plugin and non-command messages
went to the other plugin, confirming the co-installation ordering behaves as documented.

## [0.2.0] — 2026-07-31

### Fixed
Expand Down
14 changes: 6 additions & 8 deletions http-action/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
| Field | Value |
| ----- | ----- |
| **Identifier** | `http-action` |
| **Version** | 0.2.0 |
| **Released** | 2026-07-31 |
| **Status** | beta |
| **Version** | 0.2.1 |
| **Released** | 2026-08-01 |
| **Status** | stable |
| **Author** | Yudhi Armyndharis |
| **License** | MIT |
| **Type** | `extension` |
Expand Down Expand Up @@ -106,11 +106,9 @@ and upload it in the dashboard **Plugins → Install** (or the **Catalog** tab).

## Compatibility

Status is **beta**. It targets OpenWA **≥ 0.8.0**, the release that introduced both capabilities it
relies on (`net.allowConfigHosts` and `conversation:send`). `testedOpenWAVersion` is deliberately unset:
the plugin has not been install- and runtime-tested on a real OpenWA instance, and that field is only
worth anything if it is honest. Live config edits apply on the next inbound message (config is re-read
per event).
Targets OpenWA **≥ 0.8.0**, the release that introduced both capabilities it relies on
(`net.allowConfigHosts` and `conversation:send`). Live config edits apply on the next inbound message
(config is re-read per event).

### Per-session config

Expand Down
4 changes: 2 additions & 2 deletions http-action/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "http-action",
"name": "HTTP Action Bot",
"version": "0.2.0",
"version": "0.2.1",
"type": "extension",
"main": "dist/index.js",
"description": "Triggers safe REST API requests from WhatsApp commands and renders JSON responses back to chat.",
Expand All @@ -17,7 +17,7 @@
"whatsapp",
"openwa"
],
"status": "beta",
"status": "stable",
"testedOpenWAVersion": "0.12.1",
"minOpenWAVersion": "0.8.0",
"sdkVersion": "1",
Expand Down
8 changes: 4 additions & 4 deletions plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -1271,9 +1271,9 @@
{
"id": "http-action",
"name": "HTTP Action Bot",
"version": "0.2.0",
"version": "0.2.1",
"type": "extension",
"status": "beta",
"status": "stable",
"description": "Triggers safe REST API requests from WhatsApp commands and renders JSON responses back to chat.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
Expand All @@ -1287,11 +1287,11 @@
],
"minOpenWAVersion": "0.8.0",
"testedOpenWAVersion": "0.12.1",
"releasedAt": "2026-07-31",
"releasedAt": "2026-08-01",
"repoPath": "http-action",
"repoUrl": "https://github.com/rmyndharis/OpenWA-plugins",
"homepage": "https://github.com/rmyndharis/OpenWA-plugins/tree/main/http-action",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/http-action-v0.2.0/http-action.zip",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/http-action-v0.2.1/http-action.zip",
"i18n": {
"es": {
"name": "Bot de acciones HTTP",
Expand Down
Loading