fix: wrap telegram reasoning italics per line (#2181) (thanks @YuriNachos)

This commit is contained in:
Ayaan Zaidi 2026-01-26 20:33:44 +05:30
parent 29c5b0c756
commit 21d43c8795
2 changed files with 2 additions and 1 deletions

View File

@ -37,6 +37,7 @@ Status: unreleased.
- macOS: keep custom SSH usernames in remote target. (#2046) Thanks @algal. - macOS: keep custom SSH usernames in remote target. (#2046) Thanks @algal.
### Fixes ### Fixes
- Telegram: wrap reasoning italics per line to avoid raw underscores. (#2181) Thanks @YuriNachos.
- Security: harden Tailscale Serve auth by validating identity via local tailscaled before trusting headers. - Security: harden Tailscale Serve auth by validating identity via local tailscaled before trusting headers.
- Build: align memory-core peer dependency with lockfile. - Build: align memory-core peer dependency with lockfile.
- Security: add mDNS discovery mode with minimal default to reduce information disclosure. (#1882) Thanks @orlyjamie. - Security: add mDNS discovery mode with minimal default to reduce information disclosure. (#1882) Thanks @orlyjamie.

View File

@ -10,7 +10,7 @@ const {
disableTailscaleServe, disableTailscaleServe,
ensureFunnel, ensureFunnel,
} = tailscale; } = tailscale;
const tailscaleBin = expect.stringMatching(/tailscale$/); const tailscaleBin = expect.stringMatching(/tailscale$/i);
describe("tailscale helpers", () => { describe("tailscale helpers", () => {
afterEach(() => { afterEach(() => {