From 40408407ca7f97d059dd3a8a89320b1dfd390256 Mon Sep 17 00:00:00 2001 From: Raja Subramanian Date: Thu, 15 Jan 2026 12:03:11 +0530 Subject: [PATCH] Release v1.9.11 (#4245) Have copied over the WARNING note for v1.9.10 from the releases page https://github.com/livekit/livekit/releases/tag/v1.9.10 to the CHANGELOG. Also adding a note for this release about previous release being bad. --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 624b0e518..a1e21ab9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,35 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.9.11] - 2026-01-15 + +## PLEASE NOTE: The previous release tag v1.9.10 hit a panic under some conditions. Sincerely regret the inconvenience caused. Although we do test rigorously, it is not guaranteed to cover all scenarios. We request you to report any issues you encounter. Thank you. + +### Added +- Support OpenTelemetry tracing. Add Jaeger support. (#4222) +- Add option to force simuclast codec. (#4226) +- Log timeout in API (#4231, #4232) +- Add participant option for data track auto-subscribe. (#4240) + +### Changed +- Remove enable arrival time forwarding method. (#4217) +- sfu/receiver and sfu/buffer refactor (#4221, #4224, #4225) +- Change some logs to debugw (#4229) +- Changing field naming of data track packet (#4235) +- Update Pion transport package. (#4237) +- Wrapping the invalid request errors for CreateSipParticipant (#4239) + +### Fixed +- Swap result sink atomically rather than closing and setting (#4216) +- Address crash in v1.9.10 (#4219, #4220) +- Return on SDP fragment read error. (#4228) + +## What's Changed + ## [1.9.10] - 2026-01-01 +## WARNING: Please do not use this release. There is a run time issue which causes the server to panic. The issue has been addressed in #4219 and #4220. + ### Added - add explicit room exists servicestore op (#4175) - Add support for TURN static auth secret credentials (#3796) diff --git a/version/version.go b/version/version.go index 61882bb14..e9829ea14 100644 --- a/version/version.go +++ b/version/version.go @@ -14,4 +14,4 @@ package version -const Version = "1.9.10" +const Version = "1.9.11"