Skip to content

Commit

Permalink
LiveKit ingress v1.3.0 (#214)
Browse files Browse the repository at this point in the history
## 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)
  • Loading branch information
biglittlebigben authored Feb 3, 2024
1 parent 70f823d commit 09377cc
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
14 changes: 14 additions & 0 deletions pkg/service/cmd.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
14 changes: 14 additions & 0 deletions pkg/stats/media_track_stats.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
14 changes: 14 additions & 0 deletions pkg/types/stats.go
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

package version

const Version = "1.2.2"
const Version = "1.3.0"

0 comments on commit 09377cc

Please sign in to comment.