Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/crisp-cougars-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sip-carrier-outbound.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# github.com/livekit/protocol

## 1.49.0

### Minor Changes

- Support cloud agent attributes in CRUD operations - [#1636](https://github.com/livekit/protocol/pull/1636) ([@rektdeckard](https://github.com/rektdeckard))

### Patch Changes

- Relax SIP outbound validation to support carriers. - [#1611](https://github.com/livekit/protocol/pull/1611) ([@dennwc](https://github.com/dennwc))

## 1.48.2

### Patch Changes
Expand Down
184 changes: 108 additions & 76 deletions livekit/livekit_cloud_agent.pb.go

Large diffs are not rendered by default.

326 changes: 164 additions & 162 deletions livekit/livekit_cloud_agent.twirp.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "github.com/livekit/protocol",
"private": true,
"version": "1.48.2",
"version": "1.49.0",
"scripts": {
"changeset": "changeset",
"ci:publish": "pnpm --filter @livekit/protocol run build && changeset publish"
Expand Down
10 changes: 10 additions & 0 deletions packages/javascript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @livekit/protocol

## 1.49.0

### Minor Changes

- Support cloud agent attributes in CRUD operations - [#1636](https://github.com/livekit/protocol/pull/1636) ([@rektdeckard](https://github.com/rektdeckard))

### Patch Changes

- add job id in MetricsRecordingHeader for chat log re-injection - [#1646](https://github.com/livekit/protocol/pull/1646) ([@chenghao-mou](https://github.com/chenghao-mou))

## 1.48.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/protocol",
"version": "1.48.2",
"version": "1.49.0",
"description": "",
"type": "module",
"require": "dist/index.cjs",
Expand Down
22 changes: 12 additions & 10 deletions protobufs/livekit_cloud_agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,14 @@ message RestartAgentResponse {
}

message DeployAgentRequest {
string agent_id = 1 [(logger.name) = "agentID"];
string agent_name = 2 [deprecated=true];
repeated AgentSecret secrets = 3;
int32 replicas = 4 [deprecated=true];
int32 max_replicas = 5 [deprecated=true];
string cpu_req = 6 [deprecated=true];
string deployment = 7;
string agent_id = 1 [(logger.name) = "agentID"];
string agent_name = 2 [deprecated=true];
repeated AgentSecret secrets = 3;
int32 replicas = 4 [deprecated=true];
int32 max_replicas = 5 [deprecated=true];
string cpu_req = 6 [deprecated=true];
string deployment = 7;
map<string, string> attributes = 8;
}

message DeployAgentResponse {
Expand All @@ -207,9 +208,10 @@ message DeployAgentResponse {
}

message DeployAgentV2Request {
string agent_id = 1 [(logger.name) = "agentID"];
repeated AgentSecret secrets = 2;
string deployment = 3;
string agent_id = 1 [(logger.name) = "agentID"];
repeated AgentSecret secrets = 2;
string deployment = 3;
map<string, string> attributes = 4;
}

message DeployAgentV2Response {
Expand Down
Loading