Skip to content

Commit 76aa713

Browse files
committed
Merge remote-tracking branch 'origin/main' into dz/add-test
2 parents 8cffdfc + 0efe517 commit 76aa713

32 files changed

+414
-74
lines changed

.github/workflows/proto.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Generate protobuf stubs
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
pull_request:
8+
branches:
9+
- main
10+
# If rust-sdks is a git submodule, GitHub sees updates as a change to the
11+
# gitlink at the submodule path (not files under it), so include the bare
12+
# path. If it's checked into the repo normally, the ** pattern will match.
13+
paths:
14+
- 'packages/livekit-rtc/rust-sdks'
15+
- 'packages/livekit-rtc/rust-sdks/**'
16+
17+
jobs:
18+
generate-proto:
19+
name: Regenerate protobuf stubs
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v6
24+
with:
25+
submodules: recursive
26+
ref: ${{ github.event.pull_request.head.ref }}
27+
28+
- uses: pnpm/action-setup@v4
29+
30+
- name: Setup Node.js
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: 24
34+
cache: pnpm
35+
36+
- name: Install Protoc
37+
uses: arduino/setup-protoc@v3
38+
with:
39+
version: '25.1'
40+
repo-token: ${{ secrets.GITHUB_TOKEN }}
41+
42+
- name: Install dependencies
43+
run: pnpm install
44+
45+
- name: Generate stubs
46+
run: ./generate_proto.sh
47+
working-directory: packages/livekit-rtc
48+
49+
- name: Add changes
50+
uses: EndBug/add-and-commit@v9
51+
with:
52+
add: '["packages/livekit-rtc"]'
53+
default_author: github_actions
54+
message: generated protobuf

packages/livekit-rtc/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @livekit/rtc-node
22

3+
## 0.13.23
4+
5+
### Patch Changes
6+
7+
- Add frame processor support for audio streams - [#583](https://github.com/livekit/node-sdks/pull/583) ([@1egoman](https://github.com/1egoman))
8+
9+
- update rust ffi to 0.12.43 - [#589](https://github.com/livekit/node-sdks/pull/589) ([@davidzhao](https://github.com/davidzhao))
10+
311
## 0.13.22
412

513
### Patch Changes

packages/livekit-rtc/npm/darwin-arm64/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @livekit/rtc-node-darwin-arm64
22

3+
## 0.13.23
4+
35
## 0.13.22
46

57
## 0.13.21

packages/livekit-rtc/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@livekit/rtc-node-darwin-arm64",
3-
"version": "0.13.22",
3+
"version": "0.13.23",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/livekit/node-sdks.git",

packages/livekit-rtc/npm/darwin-x64/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @livekit/rtc-node-darwin-x64
22

3+
## 0.13.23
4+
35
## 0.13.22
46

57
## 0.13.21

packages/livekit-rtc/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@livekit/rtc-node-darwin-x64",
33
"author": "LiveKit",
4-
"version": "0.13.22",
4+
"version": "0.13.23",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/livekit/node-sdks.git",

packages/livekit-rtc/npm/linux-arm64-gnu/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @livekit/rtc-node-linux-arm64-gnu
22

3+
## 0.13.23
4+
35
## 0.13.22
46

57
## 0.13.21

packages/livekit-rtc/npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@livekit/rtc-node-linux-arm64-gnu",
33
"author": "LiveKit",
4-
"version": "0.13.22",
4+
"version": "0.13.23",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/livekit/node-sdks.git",

packages/livekit-rtc/npm/linux-x64-gnu/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @livekit/rtc-node-linux-x64-gnu
22

3+
## 0.13.23
4+
35
## 0.13.22
46

57
## 0.13.21

packages/livekit-rtc/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@livekit/rtc-node-linux-x64-gnu",
33
"author": "LiveKit",
4-
"version": "0.13.22",
4+
"version": "0.13.23",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/livekit/node-sdks.git",

0 commit comments

Comments
 (0)