Bump vendored pjproject 2.16 → 2.17 (security fixes) (#40)#44
Merged
Conversation
pjproject 2.17 (2026-04-22) carries security fixes across ICE, H.264 packetization, DNS parsing, and codec handling. Point the shim's optional pjproject-cffi layer at it: - scripts/fetch-pjproject.sh: default PJ_VERSION 2.16 -> 2.17. - crates/pjsip-shim/build.rs: vendored/tmp candidate paths and the not-found guidance now reference pjproject-2.17. Verified locally on Rust 1.97.0: scripts/fetch-pjproject.sh (fetches 2.17), then cargo build -p pjsip-shim --features pjproject-cffi builds and links clean against the 2.17 sources (same check as the CI pjsip-shim-cffi job). Vendored sources remain git-ignored (GPL-2.0). No Rust code changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #40.
Why
pjproject 2.17 (2026-04-22) carries security fixes across ICE, H.264 packetization, DNS parsing, and codec handling. The shim's optional
pjproject-cffilayer compiled the 2.16 sources.Changes
scripts/fetch-pjproject.sh: defaultPJ_VERSION2.16 → 2.17.crates/pjsip-shim/build.rs: the vendored//tmpcandidate paths and the not-found guidance now referencepjproject-2.17.No Rust code changes; vendored sources remain git-ignored (GPL-2.0).
Verification
On Rust 1.97.0 (the newly-pinned toolchain):
scripts/fetch-pjproject.shfetches & lays out pjproject 2.17 (pjlib/include/pj/types.hpresent) ✅cargo build -p pjsip-shim --features pjproject-cffibuilds and links clean against the 2.17 sources ✅ (same check as the CIpjsip-shim-cffijob; the pure-Rust default build is unaffected since only the cffi path changed)🤖 Generated with Claude Code