-
Notifications
You must be signed in to change notification settings - Fork 222
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 | ||
|
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. 🔴 Docker test library import path mismatch causes test build failure The dependency declaration was bumped to a new major version ( Impact: All integration tests cannot be built or run. Import path mismatch detailsThe
These imports need to be updated to Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| 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.
🔴 Build fails because dependency checksums were not updated
The go-dsp dependency version is changed to v1.0.0 (
go.mod:18) but no matching checksum entry exists in the module checksum file, so the build fails with a missing checksum error.Impact: The project fails to build/verify until the checksum file is regenerated.
go.sum not regenerated for go-dsp v1.0.0
go.mod:18now requiresgithub.com/mjibson/go-dsp v1.0.0, butgo.sumstill only contains the old pseudo-versionv0.0.0-20180508042940-11479a337f12and has nov1.0.0entry.go build/go mod verifywill fail with a missing go.sum entry. The import path is unchanged (github.com/mjibson/go-dsp/fftatpkg/audiotest/freq.go:23), so onlygo.sumneeds regenerating viago mod tidy.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.