Skip to content

Commit

Permalink
Update to livekit-protocol v1.23.0 (Stubs only), fix tests (#458)
Browse files Browse the repository at this point in the history
* proto

* generated protobuf

* stubs

* Fix datatype

* Fix tests

* file tweak

* diag

* diag

* synthetic

* fmt

* Cleanup

* 3s

* doc

* Default::default(),

* comma

* Update livekit/src/rtc_engine/rtc_session.rs

Co-authored-by: Théo Monnom <theo.8bits@gmail.com>

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Théo Monnom <theo.8bits@gmail.com>
  • Loading branch information
3 people authored Oct 3, 2024
1 parent 5d1f91e commit 8afcb52
Show file tree
Hide file tree
Showing 8 changed files with 6,428 additions and 3,320 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
target
/.idea
/.idea
soxr-sys/test-input.wav
soxr-sys/test-output.wav
.DS_Store
4 changes: 2 additions & 2 deletions examples/play_from_disk/change-sophie.wav
Git LFS file not shown
6 changes: 6 additions & 0 deletions livekit-api/src/services/sip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ impl SIPClient {
allowed_addresses: options.allowed_addresses.to_owned(),
auth_username: options.auth_username.to_owned(),
auth_password: options.auth_password.to_owned(),

headers: Default::default(),
headers_to_attributes: Default::default(),
}),
},
self.base.auth_header(
Expand Down Expand Up @@ -233,6 +236,9 @@ impl SIPClient {

auth_username: options.auth_username.to_owned(),
auth_password: options.auth_password.to_owned(),

headers: Default::default(),
headers_to_attributes: Default::default(),
}),
},
self.base.auth_header(
Expand Down
2 changes: 1 addition & 1 deletion livekit-protocol/protocol
Submodule protocol updated 70 files
+40 −0 CHANGELOG.md
+1 −0 agent/token.go
+76 −52 auth/grants.go
+12 −11 auth/grants_test.go
+1 −3 go.mod
+2 −6 go.sum
+221 −210 livekit/livekit_analytics.pb.go
+283 −267 livekit/livekit_internal.pb.go
+706 −0 livekit/livekit_metrics.pb.go
+1,376 −619 livekit/livekit_models.pb.go
+386 −361 livekit/livekit_rtc.pb.go
+1,023 −457 livekit/livekit_sip.pb.go
+989 −133 livekit/livekit_sip.twirp.go
+108 −0 livekit/sip.go
+8 −0 livekit/types.go
+0 −2 livekit/types_test
+1 −1 logger/logger.go
+2 −2 logger/slog.go
+2 −0 magefile.go
+1 −1 package.json
+50 −0 packages/javascript/CHANGELOG.md
+3 −3 packages/javascript/package.json
+100 −238 pnpm-lock.yaml
+1 −0 protobufs/livekit_analytics.proto
+2 −0 protobufs/livekit_internal.proto
+84 −0 protobufs/livekit_metrics.proto
+65 −4 protobufs/livekit_models.proto
+3 −0 protobufs/livekit_rtc.proto
+54 −1 protobufs/livekit_sip.proto
+16 −2 protobufs/rpc/io.proto
+36 −0 protobufs/rpc/roommanager.proto
+1 −0 protobufs/rpc/signal.proto
+27 −3 protobufs/rpc/sip.proto
+11 −11 replay/cloud_replay.pb.go
+14 −7 rpc/agent.psrpc.go
+22 −15 rpc/agent_dispatch.psrpc.go
+29 −15 rpc/egress.psrpc.go
+5 −0 rpc/egress_client.go
+29 −15 rpc/ingress.psrpc.go
+5 −0 rpc/ingress_client.go
+239 −161 rpc/io.pb.go
+107 −95 rpc/io.psrpc.go
+9 −2 rpc/keepalive.psrpc.go
+27 −20 rpc/participant.psrpc.go
+23 −16 rpc/room.psrpc.go
+94 −0 rpc/roommanager.pb.go
+162 −0 rpc/roommanager.psrpc.go
+30 −0 rpc/rpcfakes/fake_keepalive_pub_sub.go
+30 −0 rpc/rpcfakes/fake_typed_participant_client.go
+30 −0 rpc/rpcfakes/fake_typed_room_client.go
+7 −7 rpc/signal.pb.go
+47 −24 rpc/signal.psrpc.go
+21 −16 rpc/sip.go
+241 −81 rpc/sip.pb.go
+79 −39 rpc/sip.psrpc.go
+8 −2 rpc/sip_test.go
+33 −4 rpc/typed_api.go
+37 −5 sip/sip.go
+5 −2 sip/sip_test.go
+1 −1 utils/bitmap.go
+12 −0 utils/error.go
+80 −12 utils/event_emitter.go
+123 −0 utils/event_emitter_test.go
+14 −3 utils/hedge.go
+78 −13 utils/hedge_test.go
+8 −29 utils/math.go
+0 −144 utils/messaging.go
+32 −0 utils/options/options.go
+4 −5 utils/proto.go
+1 −1 utils/protoproxy.go
370 changes: 366 additions & 4 deletions livekit-protocol/src/livekit.rs

Large diffs are not rendered by default.

Loading

0 comments on commit 8afcb52

Please sign in to comment.