Skip to content

Commit

Permalink
Ingress v0.9.0 (#86)
Browse files Browse the repository at this point in the history
 ## Changeling

This release breaks the existing ingress protocol API.

 ### Fixed

-  Update Ingress state to `failed` when we fail to start the handler (#68)
- Configure logrus to provide an output that is similar to the zap output for go-rtmp logging (#70)
- Drain active ingress when receiving SIGTERM (#71)
- Use codec constants instead of mime types (#74)
- Prevent go-rtmp panics on bad user input (#80)
- Mark the track as stereo when we have more than channel (#76)
-  Adopt psrpc Errors (#83)
- Adopt core.Fuse (#82)
-  Fail the health check while draining (#84)

 ### Added
- Support limiting the input framerate (#79)
- Install wget in the server container (#77)
- Add support for audio and video presets (#81)
  • Loading branch information
biglittlebigben authored Mar 31, 2023
1 parent 21aea1f commit 1f4eee5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/frostbyte73/core v0.0.5
github.com/livekit/go-rtmp v0.0.0-20230317185657-6e9cfa387c7e
github.com/livekit/mageutil v0.0.0-20230125210925-54e8a70427c1
github.com/livekit/protocol v1.5.1-0.20230322011329-e78c5b18c0f3
github.com/livekit/protocol v1.5.1
github.com/livekit/psrpc v0.2.10-0.20230303054701-5853a56b4643
github.com/livekit/server-sdk-go v1.0.9-0.20230314192457-52c28d42b5d4
github.com/pion/rtcp v1.2.10
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ github.com/livekit/mageutil v0.0.0-20230125210925-54e8a70427c1 h1:jm09419p0lqTkD
github.com/livekit/mageutil v0.0.0-20230125210925-54e8a70427c1/go.mod h1:Rs3MhFwutWhGwmY1VQsygw28z5bWcnEYmS1OG9OxjOQ=
github.com/livekit/mediatransportutil v0.0.0-20230130133657-96cfb115473a h1:5UkGQpskXp7HcBmyrCwWtO7ygDWbqtjN09Yva4l/nyE=
github.com/livekit/mediatransportutil v0.0.0-20230130133657-96cfb115473a/go.mod h1:1Dlx20JPoIKGP45eo+yuj0HjeE25zmyeX/EWHiPCjFw=
github.com/livekit/protocol v1.5.1-0.20230322011329-e78c5b18c0f3 h1:4MG8Wmnjohhjl6EWaxv6DfYQ47yY197TbSTQ8Eq1fcA=
github.com/livekit/protocol v1.5.1-0.20230322011329-e78c5b18c0f3/go.mod h1:m5PkhcDT0EWdhatB0MpjmMaxyySjfE5NyZQC/LJWfEM=
github.com/livekit/protocol v1.5.1 h1:K/p0ByfXuPv6yLeTcoQJn7pHI7bW4IKOSyb2ueG/qq0=
github.com/livekit/protocol v1.5.1/go.mod h1:m5PkhcDT0EWdhatB0MpjmMaxyySjfE5NyZQC/LJWfEM=
github.com/livekit/psrpc v0.2.10-0.20230303054701-5853a56b4643 h1:ftDwqesgXMu0hUXFxf4KWAqqDIXz8BBdNnit3xc6RQA=
github.com/livekit/psrpc v0.2.10-0.20230303054701-5853a56b4643/go.mod h1:K0j8f1PgLShR7Lx80KbmwFkDH2BvOnycXGV0OSRURKc=
github.com/livekit/server-sdk-go v1.0.9-0.20230314192457-52c28d42b5d4 h1:fSm7wr75fh6NcTtLKa6nsyFKb7z+kRt6YzgxpyFrym4=
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "0.0.2"
const Version = "0.9.0"

0 comments on commit 1f4eee5

Please sign in to comment.