From 09377cc34b0c81a9c42db81008766f6c441e8099 Mon Sep 17 00:00:00 2001 From: Benjamin Pracht Date: Fri, 2 Feb 2024 16:28:14 -0800 Subject: [PATCH] LiveKit ingress v1.3.0 (#214) ## Changelog ### Added - Add EndedAt field to Ingress State (#40) - Log room name and participant ID (#191) - Gather input stats for url pull sessions (#192) - Add support for SRT in URL Pull ingress (#206) - Compute input media jitter (#205) - Gather pipeline output statistics (#207) - Add WHIP Simulcast Support (#209) ### Fixed - Use a secret token to authenticate relay connections (#186) - Update go-sdk to fix pli missed (#188) - Use new upstream go-gst repository (#189) - Refactor stats gathering functionality (#201) - Add nil check in media stats merging code (#204) - Do not use sample providers in the go SDK (#212) --- pkg/service/cmd.go | 14 ++++++++++++++ pkg/stats/media_track_stats.go | 14 ++++++++++++++ pkg/types/stats.go | 14 ++++++++++++++ version/version.go | 2 +- 4 files changed, 43 insertions(+), 1 deletion(-) diff --git a/pkg/service/cmd.go b/pkg/service/cmd.go index 1e86e2c3..9e4e2812 100644 --- a/pkg/service/cmd.go +++ b/pkg/service/cmd.go @@ -1,3 +1,17 @@ +// Copyright 2024 LiveKit, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package service import ( diff --git a/pkg/stats/media_track_stats.go b/pkg/stats/media_track_stats.go index 65935ab9..088d0979 100644 --- a/pkg/stats/media_track_stats.go +++ b/pkg/stats/media_track_stats.go @@ -1,3 +1,17 @@ +// Copyright 2024 LiveKit, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package stats import ( diff --git a/pkg/types/stats.go b/pkg/types/stats.go index 4f11f6f6..7bd0c00c 100644 --- a/pkg/types/stats.go +++ b/pkg/types/stats.go @@ -1,3 +1,17 @@ +// Copyright 2024 LiveKit, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package types import ( diff --git a/version/version.go b/version/version.go index d27ccff6..57efeb5a 100644 --- a/version/version.go +++ b/version/version.go @@ -14,4 +14,4 @@ package version -const Version = "1.2.2" +const Version = "1.3.0"