-
Notifications
You must be signed in to change notification settings - Fork 216
Update go deps (major) #298
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?
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 |
|---|---|---|
|
|
@@ -15,9 +15,9 @@ require ( | |
| 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/mjibson/go-dsp v0.0.0-20180508042940-11479a337f12 | ||
| github.com/ory/dockertest/v3 v3.12.0 | ||
| github.com/pion/rtp v1.10.2 | ||
| github.com/mjibson/go-dsp v1.0.0 | ||
| github.com/ory/dockertest/v4 v4.0.0 | ||
| github.com/pion/rtp/v2 v2.0.0 | ||
|
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. 🔴 RTP library import path mismatch causes build failure The dependency declaration was bumped to a new major version ( Impact: The project cannot be built; all compilation attempts will fail. Import path mismatch detailsIn Go modules, a v2+ module requires the import path to include the major version suffix. The
These imports need to be updated to Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| github.com/pion/sdp/v3 v3.0.18 | ||
| github.com/pion/webrtc/v4 v4.2.14 | ||
| github.com/prometheus/client_golang v1.23.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.
🔴 Docker test library import path mismatch causes test build failure
The dependency declaration was bumped to a new major version (
github.com/ory/dockertest/v4atgo.mod:19) without updating the corresponding import paths in test files, so integration tests will fail to compile.Impact: All integration tests cannot be built or run.
Import path mismatch details
The
go.modnow declaresgithub.com/ory/dockertest/v4 v4.0.0but the oldgithub.com/ory/dockertest/v3was removed. Three test files still use the old v3 import path:test/integration/docker_test.go:11imports"github.com/ory/dockertest/v3"test/integration/livekit_test.go:11imports"github.com/ory/dockertest/v3"test/integration/livekit_test.go:12imports"github.com/ory/dockertest/v3/docker"test/integration/docker_mac_test.go:12imports"github.com/ory/dockertest/v3"These imports need to be updated to
"github.com/ory/dockertest/v4"(andv4/docker) to match the module path declared ingo.mod.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.