From 28ae092ea887a598bdacb4657ed150e50657d212 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Thu, 21 Dec 2023 23:04:19 -0800 Subject: [PATCH] version 1.5.2 (#2338) --- CHANGELOG | 26 ++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 1947140a6..bb789bceb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,32 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.2] - 2023-12-21 + +Support for LiveKit SIP Bridge + +### Added +- Add SIP Support (#2240 #2241 #2244 #2250 #2263 #2291 #2293) +- Introduce `LOST` connection quality. (#2265 #2276) +- Expose detailed connection info with ICEConnectionDetails (#2287) +- Add Version to TrackInfo. (#2324 #2325) + +### Fixed +- Guard against bad quality in trackInfo (#2271) +- Group SDES items for one SSRC in the same chunk. (#2280) +- Avoid dropping data packets on local router (#2270) +- Fix signal response delivery after session start failure (#2294) +- Populate disconnect updates with participant identity (#2310) +- Fix mid info lost when migrating multi-codec simulcast track (#2315) +- Store identity in participant update cache. (#2320) +- Fix panic occurs when starting livekit-server with key-file option (#2312) (#2313) + +### Changed +- INFO logging reduction (#2243 #2273 #2275 #2281 #2283 #2285 #2322) +- Clean up restart a bit. (#2247) +- Use a worker to report signal/data stats. (#2260) +- Consolidate TrackInfo. (#2331) + ## [1.5.1] - 2023-11-09 Support for the Agent framework. diff --git a/version/version.go b/version/version.go index cbd85195e..e821eae6b 100644 --- a/version/version.go +++ b/version/version.go @@ -14,4 +14,4 @@ package version -const Version = "1.5.1" +const Version = "1.5.2"