Bump version to 2.67.0

This commit is contained in:
emir-signal 2026-03-13 19:45:22 -04:00 committed by GitHub
parent 30a6caeb54
commit 712ace786c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 37 additions and 29 deletions

View File

@ -1,5 +1,13 @@
# Changelog
## v2.67.0
- Refactor StreamSummary to avoid a map
- Update to webrtc 7444h
- Revert change that skips DTX refresh packet
- Android: Make oboe more resilient to errors when starting
## v2.66.1
- Update BigInt in electron to use native JsBigInt.

14
Cargo.lock generated
View File

@ -366,7 +366,7 @@ dependencies = [
[[package]]
name = "call_sim"
version = "2.66.1"
version = "2.67.0"
dependencies = [
"anyhow",
"base64",
@ -380,7 +380,7 @@ dependencies = [
"itertools",
"plotters",
"prost",
"protobuf 2.66.1",
"protobuf 2.67.0",
"regex",
"relative-path",
"serde",
@ -2012,7 +2012,7 @@ dependencies = [
[[package]]
name = "mrp"
version = "2.66.1"
version = "2.67.0"
dependencies = [
"anyhow",
"log",
@ -2531,7 +2531,7 @@ dependencies = [
[[package]]
name = "protobuf"
version = "2.66.1"
version = "2.67.0"
dependencies = [
"prost-build",
"tonic-prost-build",
@ -2854,7 +2854,7 @@ dependencies = [
[[package]]
name = "ringrtc"
version = "2.66.1"
version = "2.67.0"
dependencies = [
"aes",
"aes-gcm-siv",
@ -2883,7 +2883,7 @@ dependencies = [
"neon",
"num_enum",
"prost",
"protobuf 2.66.1",
"protobuf 2.67.0",
"rand 0.8.5",
"rand_chacha 0.3.1",
"regex",
@ -3981,7 +3981,7 @@ dependencies = [
[[package]]
name = "webrtc-sys"
version = "2.66.1"
version = "2.67.0"
dependencies = [
"anyhow",
"webrtc-sys-build",

View File

@ -15,7 +15,7 @@ members = [
]
[workspace.package]
version = "2.66.1"
version = "2.67.0"
authors = ["Calling Team <callingteam@signal.org>"]
[patch.crates-io]

View File

@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = "SignalRingRTC"
s.version = "2.66.1"
s.version = "2.67.0"
s.summary = "A Swift & Objective-C library used by the Signal iOS app for WebRTC interactions."
s.description = <<-DESC

View File

@ -735,9 +735,9 @@ For more information on this, and how to apply and follow the GNU AGPL, see
<ul class="license-used-by">
<li><a href="https://crates.io/crates/libsignal-account-keys">libsignal-account-keys 0.1.0</a></li>
<li><a href="https://crates.io/crates/libsignal-core">libsignal-core 0.1.0</a></li>
<li><a href="https://crates.io/crates/mrp">mrp 2.66.1</a></li>
<li><a href="https://crates.io/crates/protobuf">protobuf 2.66.1</a></li>
<li><a href="https://crates.io/crates/ringrtc">ringrtc 2.66.1</a></li>
<li><a href="https://crates.io/crates/mrp">mrp 2.67.0</a></li>
<li><a href="https://crates.io/crates/protobuf">protobuf 2.67.0</a></li>
<li><a href="https://crates.io/crates/ringrtc">ringrtc 2.67.0</a></li>
<li><a href="https://crates.io/crates/regex-aot">regex-aot 0.1.0</a></li>
<li><a href="https://github.com/signalapp/partial-default">partial-default-derive 0.1.0</a></li>
<li><a href="https://github.com/signalapp/partial-default">partial-default 0.1.0</a></li>

View File

@ -669,7 +669,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
```
## libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.66.1, protobuf 2.66.1, ringrtc 2.66.1, regex-aot 0.1.0, partial-default-derive 0.1.0, partial-default 0.1.0
## libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.67.0, protobuf 2.67.0, ringrtc 2.67.0, regex-aot 0.1.0, partial-default-derive 0.1.0, partial-default 0.1.0
```
GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -924,7 +924,7 @@ You should also get your employer (if you work as a programmer) or school, if an
<key>License</key>
<string>GNU Affero General Public License v3.0 only</string>
<key>Title</key>
<string>libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.66.1, protobuf 2.66.1, ringrtc 2.66.1, regex-aot 0.1.0, partial-default-derive 0.1.0, partial-default 0.1.0</string>
<string>libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.67.0, protobuf 2.67.0, ringrtc 2.67.0, regex-aot 0.1.0, partial-default-derive 0.1.0, partial-default 0.1.0</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>

View File

@ -662,7 +662,7 @@ dependencies = [
[[package]]
name = "protobuf"
version = "2.66.1"
version = "2.67.0"
dependencies = [
"prost-build",
"tonic-prost-build",

View File

@ -1,5 +1,5 @@
webrtc.version=7444g
webrtc.version=7444h
ringrtc.version.major=2
ringrtc.version.minor=66
ringrtc.version.revision=1
ringrtc.version.minor=67
ringrtc.version.revision=0

View File

@ -1,10 +1,10 @@
{
"android": "55d78b4d23d57d9d8024bcae79cbe2c4baf0b894947883fdf81c5233c7e55f58",
"ios": "f3d9053150c63aac44aae65352d8af53f4d4db8fc168d872488f99ef3bad356d",
"linux-x64": "fb70877c7135df2e9bfa4eb4cd5dc5e8055883a2f6326de7c5dc7f8edb89efe2",
"linux-arm64": "4831abfa080883b88c35f5f3b4a4ed2788b26003fe09dae07535d57ba9877642",
"mac-x64": "ce7992482c6a1efc0573fe68993e7e7dcbec13261da8b042f93a911a69e80cd6",
"mac-arm64": "778eae1359619943b537e16785d006113bd8becff6efc1d645a5e2440082ff74",
"windows-x64": "d130fde178e62d88fd4293c089436edcede3350dcc1f6faf4a4fcf4feeb91a89",
"windows-arm64": "3039aadc76fb76322bbdb50205a8b043d290915b81499cb5ade1284505bf839a"
"android": "29c7a789ba7c641fd71f27563f9fc8f2863c11ef8bba986dba9f7234902244fd",
"ios": "a9ee874613977319fd31cf2c87c2ab1bf434eaf64d72f446f6fdb0b899e0a61e",
"linux-x64": "f0a8fb24c7bd717e9ddcb0741909946987898595279b193b06ef2dcf21cb983a",
"linux-arm64": "4473a9239d3453dc26e6038e827ded3c0d826a6303343463f46f9edea5b22e5a",
"mac-x64": "9957e51250be8c1804e9a33e32bf97bc11592a640074a2f98901555e0fe2e5d5",
"mac-arm64": "76aff4499578064a33c7b2691c2f7ce993e4366eb5950c79eeb360a2d0d998e6",
"windows-x64": "10352eb69ad3494bbf91d5588364b854e73cfcb13a42f05982ffb9a18508a85d",
"windows-arm64": "72e3528382d9e0b1777427d83a41db7dcf564ef871a88530337ef394af0b65c7"
}

View File

@ -1,12 +1,12 @@
{
"name": "@signalapp/ringrtc",
"version": "2.66.1",
"version": "2.67.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@signalapp/ringrtc",
"version": "2.66.1",
"version": "2.67.0",
"hasInstallScript": true,
"license": "AGPL-3.0-only",
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@signalapp/ringrtc",
"version": "2.66.1",
"version": "2.67.0",
"repository": {
"type": "git",
"url": "https://github.com/signalapp/ringrtc.git",