-
Notifications
You must be signed in to change notification settings - Fork 216
Update livekit deps #308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update livekit deps #308
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,12 +9,12 @@ require ( | |||||
| github.com/icholy/digest v1.1.0 | ||||||
| github.com/jfreymuth/oggvorbis v1.0.5 | ||||||
| github.com/livekit/mageutil v0.0.0-20250511045019-0f1ff63f7731 | ||||||
| github.com/livekit/media-sdk v0.0.0-20260612175532-3d4d26d136c9 | ||||||
| github.com/livekit/media-sdk v0.0.0-20260623124604-40d3338a7426 | ||||||
| github.com/livekit/mediatransportutil v0.0.0-20260608063931-a3417d38cda0 | ||||||
| github.com/livekit/protocol v1.48.1-0.20260624204523-bd5703442db6 | ||||||
| github.com/livekit/protocol v1.48.2 | ||||||
| github.com/livekit/psrpc v0.7.2 | ||||||
| github.com/livekit/server-sdk-go/v2 v2.16.7-0.20260625120102-b6d1838861e7 | ||||||
| github.com/livekit/sipgo v0.13.2-0.20260519205735-a5b4a38b6ceb | ||||||
| github.com/livekit/server-sdk-go/v2 v2.16.7 | ||||||
| github.com/livekit/sipgo v0.13.2-0.20250410120437-ca5b8ca7b53d | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 SIP library downgraded to a version that predates required features, breaking the build The SIP signaling library is downgraded to an April 2025 snapshot ( Impact: The service fails to build because it references TCP configuration types and options that do not exist in the downgraded library version. Mechanism: missing TCPConfig, PortRange, and WithUserAgentTCPConfig in older sipgoThe code at The PR downgrades sipgo from
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback. |
||||||
| github.com/mjibson/go-dsp v0.0.0-20180508042940-11479a337f12 | ||||||
| github.com/ory/dockertest/v3 v3.12.0 | ||||||
| github.com/pion/rtp v1.10.2 | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔍 sipgo dependency appears to be downgraded by over a year
The
livekit/sipgopseudo-version changed fromv0.13.2-0.20260519205735-a5b4a38b6ceb(May 19, 2026) tov0.13.2-0.20250410120437-ca5b8ca7b53d(April 10, 2025). Thego.modhashes differ (aDa6...vsnbNi...), confirming different source code. The codebase uses several sipgo APIs that may have been introduced after April 2025:sipgo.WithUserAgentTCPConfig,sipgo.TCPConfig,sipgo.PortRangeatpkg/sip/service.go:234-237sipgo.WithUserAgenTLSConfigatpkg/sip/service.go:301sipgo.ClientRequestAddViaatpkg/sip/outbound_utilities_test.go:359sipClient.TransportLayer()andtpl.GetConnection()atpkg/sip/outbound.go:1114-1118"github.com/livekit/sipgo/transport"sub-package withtransport.UDPMTUSizeatpkg/sip/service.go:34,89If any of these APIs were added between April 2025 and May 2026, this downgrade will cause compilation failures. This should be verified by CI or by checking the sipgo commit history. If this downgrade is intentional (e.g., reverting to a more stable commit), the PR description should explain why.
Was this helpful? React with 👍 or 👎 to provide feedback.