Skip to content

Commit f3d54bb

Browse files
gcmsgclaude
andcommitted
fix: bump peerclaw-core to v0.7.0, update Sign/SignEnvelope call sites
The code already expected identity.Sign to return (string, error) and identity.SignEnvelope to return error, but go.mod pinned v0.6.2 where Sign returned only string and SignEnvelope returned nothing. Bump to v0.7.0 which adds nil-key guards and error returns to both functions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b12ac02 commit f3d54bb

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/coder/websocket v1.8.14
99
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0
1010
github.com/google/uuid v1.6.0
11-
github.com/peerclaw/peerclaw-core v0.6.2
11+
github.com/peerclaw/peerclaw-core v0.7.0
1212
github.com/pion/webrtc/v4 v4.1.2
1313
golang.org/x/crypto v0.48.0
1414
)

go.sum

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,8 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w
3232
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
3333
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
3434
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
35-
github.com/peerclaw/peerclaw-core v0.6.0 h1:2Ng1dRgKo+Kg1/R9ybAWrIxX/Otc3veemQe39hEKJy0=
36-
github.com/peerclaw/peerclaw-core v0.6.0/go.mod h1:nlxhZV5ClCDDAh11ubrTLFluae1fK7bLj3uyUk/Gc4A=
37-
github.com/peerclaw/peerclaw-core v0.6.1 h1:xacM1gXa0ypFC31nNCvqY+9dr2s4xxQb/mWhybMIgP8=
38-
github.com/peerclaw/peerclaw-core v0.6.1/go.mod h1:nlxhZV5ClCDDAh11ubrTLFluae1fK7bLj3uyUk/Gc4A=
39-
github.com/peerclaw/peerclaw-core v0.6.2 h1:NIxTcOisypXJ+CYJunCIUkKHpFcP9QeJrMbqn+sokuU=
40-
github.com/peerclaw/peerclaw-core v0.6.2/go.mod h1:nlxhZV5ClCDDAh11ubrTLFluae1fK7bLj3uyUk/Gc4A=
35+
github.com/peerclaw/peerclaw-core v0.7.0 h1:x7Z4QWRExGv0Fcv2WnD45JTer/Fktsgpt8IAx5LRwLI=
36+
github.com/peerclaw/peerclaw-core v0.7.0/go.mod h1:nlxhZV5ClCDDAh11ubrTLFluae1fK7bLj3uyUk/Gc4A=
4137
github.com/pion/datachannel v1.5.10 h1:ly0Q26K1i6ZkGf42W7D4hQYR90pZwzFOjTq5AuCKk4o=
4238
github.com/pion/datachannel v1.5.10/go.mod h1:p/jJfC9arb29W7WrxyKbepTU20CFgyx5oLo8Rs4Py/M=
4339
github.com/pion/dtls/v3 v3.0.6 h1:7Hkd8WhAJNbRgq9RgdNh1aaWlZlGpYTzdqjy9x9sK2E=

0 commit comments

Comments
 (0)