-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into lukas/data-stream
- Loading branch information
Showing
38 changed files
with
2,741 additions
and
1,567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@livekit/protocol": minor | ||
"github.com/livekit/protocol": minor | ||
--- | ||
|
||
Add disconnect reason for SIP failures. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"github.com/livekit/protocol": patch | ||
--- | ||
|
||
Annotate SIP errors with Twirp codes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@livekit/protocol": patch | ||
"github.com/livekit/protocol": patch | ||
--- | ||
|
||
Fix port type for SIPUri. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,88 @@ | ||
module github.com/livekit/protocol | ||
|
||
go 1.22 | ||
go 1.23 | ||
|
||
toolchain go1.23.3 | ||
|
||
require ( | ||
buf.build/go/protoyaml v0.2.0 | ||
github.com/benbjohnson/clock v1.3.5 | ||
github.com/bufbuild/protoyaml-go v0.1.9 | ||
github.com/frostbyte73/core v0.0.12 | ||
github.com/fsnotify/fsnotify v1.7.0 | ||
github.com/frostbyte73/core v0.0.13 | ||
github.com/fsnotify/fsnotify v1.8.0 | ||
github.com/gammazero/deque v0.2.1 | ||
github.com/go-jose/go-jose/v3 v3.0.3 | ||
github.com/go-logr/logr v1.4.2 | ||
github.com/hashicorp/go-retryablehttp v0.7.7 | ||
github.com/jxskiss/base62 v1.1.0 | ||
github.com/lithammer/shortuuid/v4 v4.0.0 | ||
github.com/livekit/mageutil v0.0.0-20230125210925-54e8a70427c1 | ||
github.com/livekit/psrpc v0.6.1-0.20240924010758-9f0a4268a3b9 | ||
github.com/mackerelio/go-osstat v0.2.4 | ||
github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1 | ||
github.com/livekit/psrpc v0.6.1-0.20241018124827-1efff3d113a8 | ||
github.com/mackerelio/go-osstat v0.2.5 | ||
github.com/maxbrunsfeld/counterfeiter/v6 v6.10.0 | ||
github.com/pion/logging v0.2.2 | ||
github.com/pion/sdp/v3 v3.0.6 | ||
github.com/pion/webrtc/v3 v3.2.28 | ||
github.com/pion/sdp/v3 v3.0.9 | ||
github.com/pion/webrtc/v3 v3.3.4 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.19.0 | ||
github.com/prometheus/procfs v0.12.0 | ||
github.com/puzpuzpuz/xsync/v3 v3.1.0 | ||
github.com/redis/go-redis/v9 v9.6.1 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/prometheus/procfs v0.15.1 | ||
github.com/puzpuzpuz/xsync/v3 v3.4.0 | ||
github.com/redis/go-redis/v9 v9.7.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/twitchtv/twirp v8.1.3+incompatible | ||
github.com/zeebo/xxh3 v1.0.2 | ||
go.uber.org/atomic v1.11.0 | ||
go.uber.org/multierr v1.11.0 | ||
go.uber.org/zap v1.27.0 | ||
go.uber.org/zap/exp v0.2.0 | ||
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 | ||
golang.org/x/mod v0.19.0 | ||
google.golang.org/grpc v1.65.0 | ||
google.golang.org/protobuf v1.34.2 | ||
go.uber.org/zap/exp v0.3.0 | ||
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f | ||
golang.org/x/mod v0.22.0 | ||
google.golang.org/grpc v1.68.0 | ||
google.golang.org/protobuf v1.35.2 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.33.0-20240401165935-b983156c5e99.1 // indirect | ||
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.34.2-20240717164558-a6c49f84cc0f.2 // indirect | ||
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bufbuild/protovalidate-go v0.6.1 // indirect | ||
github.com/bufbuild/protovalidate-go v0.6.3 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/google/cel-go v0.20.1 // indirect | ||
github.com/google/cel-go v0.21.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.6 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/nats-io/nats.go v1.36.0 // indirect | ||
github.com/nats-io/nkeys v0.4.7 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/pion/datachannel v1.5.5 // indirect | ||
github.com/pion/dtls/v2 v2.2.7 // indirect | ||
github.com/pion/ice/v2 v2.3.13 // indirect | ||
github.com/pion/interceptor v0.1.25 // indirect | ||
github.com/pion/datachannel v1.5.8 // indirect | ||
github.com/pion/dtls/v2 v2.2.12 // indirect | ||
github.com/pion/ice/v2 v2.3.36 // indirect | ||
github.com/pion/interceptor v0.1.29 // indirect | ||
github.com/pion/mdns v0.0.12 // indirect | ||
github.com/pion/randutil v0.1.0 // indirect | ||
github.com/pion/rtcp v1.2.12 // indirect | ||
github.com/pion/rtp v1.8.3 // indirect | ||
github.com/pion/sctp v1.8.12 // indirect | ||
github.com/pion/srtp/v2 v2.0.18 // indirect | ||
github.com/pion/rtcp v1.2.14 // indirect | ||
github.com/pion/rtp v1.8.7 // indirect | ||
github.com/pion/sctp v1.8.19 // indirect | ||
github.com/pion/srtp/v2 v2.0.20 // indirect | ||
github.com/pion/stun v0.6.1 // indirect | ||
github.com/pion/transport/v2 v2.2.3 // indirect | ||
github.com/pion/turn/v2 v2.1.3 // indirect | ||
github.com/pion/transport/v2 v2.2.10 // indirect | ||
github.com/pion/turn/v2 v2.1.6 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.48.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.55.0 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/stoewer/go-strcase v1.3.0 // indirect | ||
golang.org/x/crypto v0.25.0 // indirect | ||
golang.org/x/net v0.27.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/tools v0.23.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240725223205-93522f1f2a9f // indirect | ||
github.com/wlynxg/anet v0.0.3 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
golang.org/x/tools v0.27.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
) |
Oops, something went wrong.