Bump version to v2.44.4

This commit is contained in:
Rashad Sookram 2024-07-17 15:17:59 -04:00 committed by GitHub
parent ef4a660529
commit de0d4fb0dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 34 additions and 14 deletions

View File

@ -1,5 +1,25 @@
# Changelog
## v2.44.4
- Group Calls: Reduce log noise
- Run dump_syms on CI
- Support overlapping memory copy for decrypt
- Enable sending dependency descriptor in group calls
- Send encrypted TOC byte in group calls
- Update dependencies
- Update to webrtc 6478f
- Improve network type detection on macOS
- Enable sending dependency descriptor in group calls
- Mark audio packets as having an encrypted TOC byte
- Fix ios device orientation left/right assignment
## v2.44.3
- Android: Add audio device module based on Oboe

6
Cargo.lock generated
View File

@ -1613,7 +1613,7 @@ checksum = "c9be0862c1b3f26a88803c4a49de6889c10e608b3ee9344e6ef5b45fb37ad3d1"
[[package]]
name = "mrp"
version = "2.44.3"
version = "2.44.4"
dependencies = [
"anyhow",
"log",
@ -2027,7 +2027,7 @@ dependencies = [
[[package]]
name = "protobuf"
version = "2.44.3"
version = "2.44.4"
dependencies = [
"prost-build",
"tonic-build",
@ -2171,7 +2171,7 @@ dependencies = [
[[package]]
name = "ringrtc"
version = "2.44.3"
version = "2.44.4"
dependencies = [
"aes",
"aes-gcm-siv",

View File

@ -13,7 +13,7 @@ members = [
]
[workspace.package]
version = "2.44.3"
version = "2.44.4"
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.44.3"
s.version = "2.44.4"
s.summary = "A Swift & Objective-C library used by the Signal iOS app for WebRTC interactions."
s.description = <<-DESC

View File

@ -5,7 +5,7 @@ This directory contains pre-generated acknowledgments for the Rust dependencies
If you update RingRTC's dependencies, you'll need to update this listing. Install [cargo-about][] if you haven't already:
```shell
cargo +stable install --locked cargo-about --version 0.6.0
cargo +stable install --locked cargo-about --version 0.6.2
```
Then:

View File

@ -733,9 +733,9 @@ For more information on this, and how to apply and follow the GNU AGPL, see
<h4>Used by:</h4>
<ul class="license-used-by">
<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.44.3</a></li>
<li><a href="https://crates.io/crates/protobuf">protobuf 2.44.3</a></li>
<li><a href="https://crates.io/crates/ringrtc">ringrtc 2.44.3</a></li>
<li><a href="https://crates.io/crates/mrp">mrp 2.44.4</a></li>
<li><a href="https://crates.io/crates/protobuf">protobuf 2.44.4</a></li>
<li><a href="https://crates.io/crates/ringrtc">ringrtc 2.44.4</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>
</ul>

View File

@ -669,7 +669,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
```
## libsignal-core 0.1.0, mrp 2.44.3, protobuf 2.44.3, ringrtc 2.44.3, regex-aot 0.1.0, partial-default-derive 0.1.0
## libsignal-core 0.1.0, mrp 2.44.4, protobuf 2.44.4, ringrtc 2.44.4, regex-aot 0.1.0, partial-default-derive 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</string>
<key>Title</key>
<string>libsignal-core 0.1.0, mrp 2.44.3, protobuf 2.44.3, ringrtc 2.44.3, regex-aot 0.1.0, partial-default-derive 0.1.0</string>
<string>libsignal-core 0.1.0, mrp 2.44.4, protobuf 2.44.4, ringrtc 2.44.4, regex-aot 0.1.0, partial-default-derive 0.1.0</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>

View File

@ -729,7 +729,7 @@ dependencies = [
[[package]]
name = "protobuf"
version = "2.44.3"
version = "2.44.4"
dependencies = [
"prost-build",
"tonic-build",

View File

@ -2,4 +2,4 @@ webrtc.version=6478f
ringrtc.version.major=2
ringrtc.version.minor=44
ringrtc.version.revision=3
ringrtc.version.revision=4

View File

@ -1,6 +1,6 @@
{
"name": "@signalapp/ringrtc",
"version": "2.44.3",
"version": "2.44.4",
"description": "Signal Messenger voice and video calling library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",