-
Notifications
You must be signed in to change notification settings - Fork 197
Release packages #1211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release packages #1211
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@livekit/rtc-ffi-bindings-darwin-x64", | ||
| "version": "0.12.68", | ||
| "version": "0.12.69", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -316,6 +316,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
| ### Added | ||
|
|
||
| - bump libwebrtc to m125 | ||
| ## 0.12.69 (2026-07-09) | ||
|
|
||
| ### Fixes | ||
|
|
||
| - feat: auto failover APIs with LK Cloud - #1196 (@davidzhao) | ||
| - Fix for dynacast error - #1213 (@MaxHeimbrock) | ||
| - Fix malformed RTC error handling | ||
| - Handle data track SID reassignment | ||
| - introduce LiveKitAPI construct, added smoke tests - #1220 (@davidzhao) | ||
| - Turn single peerconnection off by default - #1206 (@cnderrauber) | ||
|
Comment on lines
+321
to
+328
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Feature listed under "Fixes" heading in changelog entries In both Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| ## 0.12.68 (2026-06-30) | ||
|
|
||
| ### Features | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -257,6 +257,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
| ### Added | ||
|
|
||
| - bump libwebrtc to m125 | ||
| ## 0.7.51 (2026-07-09) | ||
|
|
||
| ### Fixes | ||
|
|
||
| - feat: auto failover APIs with LK Cloud - #1196 (@davidzhao) | ||
| - Fix for dynacast error - #1213 (@MaxHeimbrock) | ||
| - Fix malformed RTC error handling | ||
| - Handle data track SID reassignment | ||
| - introduce LiveKitAPI construct, added smoke tests - #1220 (@davidzhao) | ||
| - Turn single peerconnection off by default - #1206 (@cnderrauber) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Changelog entry describes the opposite of what the code change actually does The release notes say the feature is turned "off" by default ( Impact: Users reading the changelog will believe single peer connection is disabled when it is actually enabled, potentially causing confusion when debugging connection behavior. Mismatch between changeset description and codeCommit 95187df ("Turn single peerconnection on by default (#1206)") changes Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| ## 0.7.50 (2026-06-30) | ||
|
|
||
| ### Features | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔍 Changelog insertion issue likely caused by knope tooling encountering split changelog formats
The
livekit-ffi/CHANGELOG.mdandlivekit/CHANGELOG.mdfiles have a split structure: older entries use therelease-plzformat with bracketed links (e.g.,## [0.12.47](...)), while newer entries use theknopeformat (e.g.,## 0.12.68 (2026-06-30)). The knope-format entries were previously appended at the end of the file (after the oldest release-plz entries). This release appears to have appended the new entry at the same boundary, resulting in the new 0.12.69/0.7.51 entries appearing between the oldest release-plz entry and the existing knope entries. Thelivekit-api/CHANGELOG.mdandlivekit-uniffi/CHANGELOG.mddon't have this split structure, which is why they were generated correctly. This suggests the release tooling may need adjustment to handle the mixed-format changelogs.Was this helpful? React with 👍 or 👎 to provide feedback.