From c3ea5890d5d7e268878b65699284000bfc463b8b Mon Sep 17 00:00:00 2001 From: Raja Subramanian Date: Sat, 15 Nov 2025 17:08:17 +0530 Subject: [PATCH] Prepare release v1.9.4. (#4083) - Removing x/tools replace for release script to work. Will add it after the release. --- CHANGELOG.md | 16 ++++++++++++++++ go.mod | 2 -- version/version.go | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c7c67962..413cc40df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.9.4] - 2025-11-15 + +### Added +- Log reason for subscriber not being able to determine codec. (#4071) +- Kind details for connector (#4072) + +### Fixed +- Prevent invalid track access while peer connection is shutting down. (#4054) + +### Changed +- Update PsRPC to get redis pipeliner implementation (#4055) +- Forwarding latency measurement. (#4056. #4057, #4059, #4061, #4062, #4067, #4080) +- Update pion/transport to v3.1.1 (to get batch I/O ping-pong buffer) (#4070) +- Use sync.Pool for objects in packet path. (#4066) +- Bump protocol to pull sip validation changes and error mapping (#4081) + ## [1.9.3] - 2025-11-02 ### Added diff --git a/go.mod b/go.mod index a8d079485..c8ad05ca0 100644 --- a/go.mod +++ b/go.mod @@ -150,5 +150,3 @@ require ( google.golang.org/grpc v1.76.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) - -replace golang.org/x/tools => golang.org/x/tools v0.37.0 // counterfeiter is broken diff --git a/version/version.go b/version/version.go index 9ea2deaba..9823ff213 100644 --- a/version/version.go +++ b/version/version.go @@ -14,4 +14,4 @@ package version -const Version = "1.9.3" +const Version = "1.9.4"