Skip to content

Commit f88d997

Browse files
committed
Merge tag 'v0.86.11' into ci
v0.86.11 - net: Address issue with TLS proxy connectivity when using certain kinds of TLS certificates
2 parents cf604fd + c86b4a1 commit f88d997

File tree

120 files changed

+4954
-2882
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+4954
-2882
lines changed

.cargo/audit.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[advisories]
22
ignore = [
33
"RUSTSEC-2024-0370", # proc-macro-error is unmaintained, used by libcrux
4-
"RUSTSEC-2024-0381", # pqcrypto-kyber is unmaintained
54
"RUSTSEC-2024-0436", # paste is unmaintained, used by libsignal-bridge
5+
"RUSTSEC-2025-0141" # bincode is unmaintained, used by zkgroup
66
]

.github/actionlint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ self-hosted-runner:
33
labels:
44
# Used in Slow Tests' AArch64 Linux Tests.
55
- ubuntu-24.04-arm64-4-cores
6+
# This is... not a custom worker label, but it's not included in actionlint for some reason.
7+
# See: https://github.com/rhysd/actionlint/blob/f9408506b4c7f9cda1263bca8166271f65e65c3d/rule_runner_label.go#L29
8+
- windows-latest-4-cores
69

710
# Configuration variables in array of strings defined in your repository or
811
# organization. `null` means disabling configuration variables check.

CODING_GUIDELINES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ These should usually be prioritized in that order, but adjust the trade-off as n
6565

6666
These are automatically detected on x86_64, but will require an opt-in for aarch64 until we can update to `aes 0.9` or newer (not out yet at the time of this writing). All our app library build scripts set this themselves, but doing a manual `cargo build --release` will not.
6767

68+
- Our bridging logic uses code generation tools for the app-language interface files (C header for Swift, wrapper APIs for Java/Kotlin and TypeScript). These tools, or the macros used with them, depend on how types are written in `#[bridge_fn]` and other bridged APIs. Therefore, **use qualified names for non-std, non-libsignal types** in bridged signatures, so that they can be matched specifically and without ambiguity.
69+
70+
(There is one exception: `uuid::Uuid` has been `Uuid` for a long time, and is sufficiently unique to justify leaving it that way.)
71+
6872

6973
## Async
7074

0 commit comments

Comments
 (0)