Skip to content

Commit d565266

Browse files
authored
chore: bump version to v2026.4.13-beta19 (librefang#2383)
1 parent 90d86df commit d565266

File tree

8 files changed

+65
-22
lines changed

8 files changed

+65
-22
lines changed

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,49 @@ All notable changes to LibreFang will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project uses [Calendar Versioning](https://calver.org/) (YYYY.M.DD).
77

8+
## [2026.4.13] - 2026-04-13
9+
10+
### Added
11+
12+
- Allow editing hand agent model settings from agents page (#2335) (@leszek3737)
13+
- Add config-driven session_mode for agent triggers (#2341) (@neo-wanderer)
14+
- Telegram rich media, polls, interactive commands, and channel_send tool (#2356) (@leszek3737)
15+
16+
### Fixed
17+
18+
- Decryption retry, streaming tag leak, session isolation (#2217) (@f-liva)
19+
- Inherit kernel default_model instead of hardcoded Anthropic (#2299) (@houko)
20+
- Per-agent loading state so streaming one agent doesn't block others (#2324) (@houko)
21+
- Write MCP server config as TOML table, not stringified JSON (#2327) (@houko)
22+
- Load secrets.env autonomously at boot time (#2359) (@f-liva)
23+
- Prevent zombie processes on shutdown (#2360) (@f-liva)
24+
- Refuse direct DELETE on hand-spawned agents + clarify revert warning (#2361) (@houko)
25+
- Normalize MIME type parameters before allowlist check (#2362) (@f-liva)
26+
- Resolve LID JIDs to phone numbers for owner detection (#2363) (@f-liva)
27+
- Harden poll_options parsing and poll context cleanup (#2364) (@houko)
28+
- Deterministic prompt context ordering and raise truncation cap (#2365) (@houko)
29+
- Stop Qwen driver from leaking raw JSON into chat (#2366) (@f-liva)
30+
- Let FallbackDriver recover from transient unhealthiness (#2367) (@f-liva)
31+
- Clear stale per-agent overrides on provider switch (#2371) (@neo-wanderer)
32+
- Scrub NO_REPLY sentinel in every reply path (#2373) (@f-liva)
33+
- Restore /message/send-audio endpoint accidentally removed in #2217 (#2376) (@f-liva)
34+
- Support "date" metric format and drop ureq from cli (#2382) (@houko)
35+
36+
### Performance
37+
38+
- Shrink dev debug info to line-tables-only (#2378) (@houko)
39+
40+
### Maintenance
41+
42+
- Split Docker image and deploy status (#2323) (@houko)
43+
- Fix max_tokens assertions after pure-text short-circuit (#2325) (@houko)
44+
- Strengthen telegram sanitizer coverage (#2334) (@leszek3737)
45+
- Fix rustfmt on upsert_mcp_server test assert (#2358) (@houko)
46+
- Replace cat with sleep in process_manager tests to fix flake (#2375) (@houko)
47+
- Skip security and install-smoke on unrelated PRs (#2377) (@houko)
48+
- Apply cargo fmt to runtime drivers (#2380) (@houko)
49+
50+
851
## [Unreleased]
952

1053
### Added

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = [
2020
]
2121

2222
[workspace.package]
23-
version = "2026.4.11-beta18"
23+
version = "2026.4.13-beta19"
2424
edition = "2021"
2525
license = "MIT"
2626
repository = "https://github.com/librefang/librefang"

crates/librefang-desktop/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "LibreFang",
4-
"version": "26.4.32128",
4+
"version": "26.4.32149",
55
"identifier": "ai.librefang.desktop",
66
"build": {},
77
"app": {

packages/whatsapp-gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librefang/whatsapp-gateway",
3-
"version": "2026.4.11-beta18",
3+
"version": "2026.4.13-beta19",
44
"description": "WhatsApp Web gateway for LibreFang — QR code login, bidirectional messaging via Baileys",
55
"bin": {
66
"librefang-whatsapp-gateway": "./index.js"

sdk/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librefang/sdk",
3-
"version": "2026.4.11-beta18",
3+
"version": "2026.4.13-beta19",
44
"description": "Official JavaScript/TypeScript client for the LibreFang Agent OS REST API",
55
"main": "index.js",
66
"types": "index.d.ts",

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="librefang",
5-
version="2026.4.11b18",
5+
version="2026.4.13b19",
66
description="Official Python client for the LibreFang Agent OS REST API",
77
py_modules=["librefang_sdk", "librefang_client"],
88
python_requires=">=3.8",

sdk/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "librefang"
5-
version = "2026.4.11-beta18"
5+
version = "2026.4.13-beta19"
66
edition = "2021"
77
description = "Official Rust client for LibreFang Agent OS"
88
license = "MIT"

0 commit comments

Comments
 (0)