Skip to content

Commit b6ace8f

Browse files
thetillhoffclaude
andcommitted
chore: fix plan doc type reference, gitignore superpowers dir
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 8c18939 commit b6ace8f

3 files changed

Lines changed: 25 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ cmd/server/server
55

66
test/config.yaml
77
test/*/*.mkv
8+
.superpowers/

TODO.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# TODO
2+
3+
## Bump livekit/sipgo to pick up IPv6 Via header fix
4+
5+
The `go.mod` currently pins:
6+
7+
```text
8+
github.com/livekit/sipgo v0.13.2-0.20260519205735-a5b4a38b6ceb
9+
```
10+
11+
That pseudoversion points to a commit on livekit/sipgo's `fork` branch. A new PR has
12+
been merged into that `fork` branch adding IPv6 Via header parsing support (bumps the
13+
underlying `emiago/sipgo` from `v0.24.1` to `v1.4.0`).
14+
15+
Steps:
16+
17+
- Find the latest commit hash on livekit/sipgo's `fork` branch:
18+
`git ls-remote https://github.com/livekit/sipgo.git fork`
19+
- Update `go.mod` to point to that commit:
20+
`go get github.com/livekit/sipgo@<new-commit-sha>` then `go mod tidy`
21+
- Fix any compilation errors from the updated sipgo API (`go build ./...`)
22+
- Verify the `emiago/sipgo` indirect dep in `go.mod` is at `v1.4.0` or later
23+
- Commit on branch `feat/ipv6-support` referencing the sipgo bump

docs/superpowers/plans/2026-06-29-opus-codec-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ unit tests — without adding any YAGNI abstractions.
259259

260260
m := &livekit.SIPMediaConfig{
261261
OnlyListedCodecs: true,
262-
Codecs: []*livekit.SIPCodecOptions{
262+
Codecs: []*livekit.SIPCodec{
263263
{Name: "opus", Rate: 48000},
264264
},
265265
}

0 commit comments

Comments
 (0)