From eb29d486359760b50a7817072481c198360b56d9 Mon Sep 17 00:00:00 2001 From: Jacob Gelman <3182119+ladvoc@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:32:53 -0700 Subject: [PATCH 1/7] Use camel case log name in `GetDataBlobRequest` --- protobufs/livekit_rtc.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protobufs/livekit_rtc.proto b/protobufs/livekit_rtc.proto index b3eeafe0e..c058c3102 100644 --- a/protobufs/livekit_rtc.proto +++ b/protobufs/livekit_rtc.proto @@ -326,7 +326,7 @@ message StoreDataBlobResponse { message GetDataBlobRequest { uint32 request_id = 1 [(logger.name) = "requestID"]; // Identity of the participant who owns the blob. - string participant_identity = 2; + string participant_identity = 2 [(logger.name) = "participantIdentity"]; // Unique key of the data blob to retrieve. DataBlobKey key = 3; } From d9634ec7224303db831bf02cdf055fd1751312f1 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 18:34:06 +0000 Subject: [PATCH 2/7] generated protobuf --- livekit/livekit_rtc.pb.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livekit/livekit_rtc.pb.go b/livekit/livekit_rtc.pb.go index f1cbc4556..230140e15 100644 --- a/livekit/livekit_rtc.pb.go +++ b/livekit/livekit_rtc.pb.go @@ -5511,11 +5511,11 @@ const file_livekit_rtc_proto_rawDesc = "" + "\x15StoreDataBlobResponse\x12+\n" + "\n" + "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x12&\n" + - "\x03key\x18\x02 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\"\x9c\x01\n" + + "\x03key\x18\x02 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\"\xb4\x01\n" + "\x12GetDataBlobRequest\x12+\n" + "\n" + - "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x121\n" + - "\x14participant_identity\x18\x02 \x01(\tR\x13participantIdentity\x12&\n" + + "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x12I\n" + + "\x14participant_identity\x18\x02 \x01(\tB\x16\xbaP\x13participantIdentityR\x13participantIdentity\x12&\n" + "\x03key\x18\x03 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\"i\n" + "\x13GetDataBlobResponse\x12+\n" + "\n" + From 16b5572f2fa7bccc5570b0622a41c1eb45a35ff7 Mon Sep 17 00:00:00 2001 From: Jacob Gelman <3182119+ladvoc@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:59:16 -0700 Subject: [PATCH 3/7] Use camel case log name in `DataBlobKey` --- protobufs/livekit_models.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protobufs/livekit_models.proto b/protobufs/livekit_models.proto index 58fe54ccb..78537f670 100644 --- a/protobufs/livekit_models.proto +++ b/protobufs/livekit_models.proto @@ -393,7 +393,7 @@ message DataBlobKey { // Generic string key, blob contains arbitrary data. string generic = 1; // Data track schema identifier, blob contains schema definition. - DataTrackSchemaId schema_id = 2; + DataTrackSchemaId schema_id = 2 [(logger.name) = "schemaID"]; } } From e79374f66c2e03e5a8b6014124851ec86dc90946 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:00:10 +0000 Subject: [PATCH 4/7] generated protobuf --- livekit/livekit_models.pb.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livekit/livekit_models.pb.go b/livekit/livekit_models.pb.go index c95cd9bc7..ac8c9a96a 100644 --- a/livekit/livekit_models.pb.go +++ b/livekit/livekit_models.pb.go @@ -6993,10 +6993,10 @@ const file_livekit_models_proto_rawDesc = "" + "\x1cDataTrackSubscriptionOptions\x12\"\n" + "\n" + "target_fps\x18\x01 \x01(\rH\x00R\ttargetFps\x88\x01\x01B\r\n" + - "\v_target_fps\"k\n" + + "\v_target_fps\"x\n" + "\vDataBlobKey\x12\x1a\n" + - "\ageneric\x18\x01 \x01(\tH\x00R\ageneric\x129\n" + - "\tschema_id\x18\x02 \x01(\v2\x1a.livekit.DataTrackSchemaIdH\x00R\bschemaIdB\x05\n" + + "\ageneric\x18\x01 \x01(\tH\x00R\ageneric\x12F\n" + + "\tschema_id\x18\x02 \x01(\v2\x1a.livekit.DataTrackSchemaIdB\v\xbaP\bschemaIDH\x00R\bschemaIdB\x05\n" + "\x03key\"t\n" + "\bDataBlob\x12&\n" + "\x03key\x18\x01 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\x12@\n" + From 1e84bb17f90c630ba066ab8b2207789863c977a5 Mon Sep 17 00:00:00 2001 From: Jacob Gelman <3182119+ladvoc@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:05:21 -0700 Subject: [PATCH 5/7] Revert "Use camel case log name in `GetDataBlobRequest`" This reverts commit eb29d486359760b50a7817072481c198360b56d9. --- protobufs/livekit_rtc.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protobufs/livekit_rtc.proto b/protobufs/livekit_rtc.proto index c058c3102..b3eeafe0e 100644 --- a/protobufs/livekit_rtc.proto +++ b/protobufs/livekit_rtc.proto @@ -326,7 +326,7 @@ message StoreDataBlobResponse { message GetDataBlobRequest { uint32 request_id = 1 [(logger.name) = "requestID"]; // Identity of the participant who owns the blob. - string participant_identity = 2 [(logger.name) = "participantIdentity"]; + string participant_identity = 2; // Unique key of the data blob to retrieve. DataBlobKey key = 3; } From e878e5018bb3ec163844d9c6fa48e8a4632b44bc Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:06:33 +0000 Subject: [PATCH 6/7] generated protobuf --- livekit/livekit_rtc.pb.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livekit/livekit_rtc.pb.go b/livekit/livekit_rtc.pb.go index 230140e15..f1cbc4556 100644 --- a/livekit/livekit_rtc.pb.go +++ b/livekit/livekit_rtc.pb.go @@ -5511,11 +5511,11 @@ const file_livekit_rtc_proto_rawDesc = "" + "\x15StoreDataBlobResponse\x12+\n" + "\n" + "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x12&\n" + - "\x03key\x18\x02 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\"\xb4\x01\n" + + "\x03key\x18\x02 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\"\x9c\x01\n" + "\x12GetDataBlobRequest\x12+\n" + "\n" + - "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x12I\n" + - "\x14participant_identity\x18\x02 \x01(\tB\x16\xbaP\x13participantIdentityR\x13participantIdentity\x12&\n" + + "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x121\n" + + "\x14participant_identity\x18\x02 \x01(\tR\x13participantIdentity\x12&\n" + "\x03key\x18\x03 \x01(\v2\x14.livekit.DataBlobKeyR\x03key\"i\n" + "\x13GetDataBlobResponse\x12+\n" + "\n" + From 413fcb271eef5ffd2ea12a1754de5b540a2d35f6 Mon Sep 17 00:00:00 2001 From: Jacob Gelman <3182119+ladvoc@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:07:43 -0700 Subject: [PATCH 7/7] Changeset --- .changeset/free-turtles-tease.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/free-turtles-tease.md diff --git a/.changeset/free-turtles-tease.md b/.changeset/free-turtles-tease.md new file mode 100644 index 000000000..99cf2b2e5 --- /dev/null +++ b/.changeset/free-turtles-tease.md @@ -0,0 +1,6 @@ +--- +"github.com/livekit/protocol": patch +"@livekit/protocol": patch +--- + +Use camel case log name in `DataBlobKey`