Conversation
Co-Authored-By: GPT-6 Astra <codex@openai.com>
Implement publisher priority properties, defer track acceptance until SUBSCRIBE_OK, refuse TRACK_STATUS, and restore per-draft FETCH errors. Co-Authored-By: GPT-6 Astra <codex@openai.com>
Remove the finished roadmap plan and unblock track priority scope. Co-Authored-By: GPT-6 Astra <codex@openai.com>
This branch has not been deployed
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.
Summary
Impact
Public API: additive Rust
Error::InvalidRangeandError::InvalidJoiningRequestIdvariants on the non-exhaustive enum; optional JSPublish.priority. No signature change. An older peer that omits property 0x0E now contributes the IETF wire default 128, which maps to model priority 127. This corrects observable ranking from the previous model default of 0.Wire: property 0x0E is written in draft 17+ property blocks and read in draft 16+ blocks. TRACK_STATUS uses draft-14 TRACK_STATUS_ERROR 0x0F, then REQUEST_ERROR. FETCH uses INVALID_RANGE 0x05 (draft 14) / 0x11 (draft 15+), and INVALID_JOINING_REQUEST_ID 0x07 (draft 14) / 0x32 (drafts 15–19). These are existing IETF registry values; no new format or codepoint is introduced.
Verification
moq-netlibrary suite: 1,191 passed, including 407 IETF tests with exact bytes per draft, older-peer fallback, and early FILL ordering.js/netTypeScript check, declaration build, and publint passed.just test smoke --allpassed every Rust, Python, Go, JS, C, and GStreamer publisher/subscriber pairing.moq-netClippy with-D warnings, Rust formatting,git diff --check, andquest check(364 documents) passed.just checkpassed its JS gates, Rust Clippy, formatting, and doc-name stages. I stopped it during a separate native Rustdoc rebuild on a busy shared host. The broadjust fixwas likewise stopped after 17 minutes of single-job native dependency compilation. The remaining Rustdoc/wasm portion and downstream affected-packagejust testhave not run locally; CI can finish the broader gates. This PR remains a draft until those results are available.Closes #3534
Closes #3492
(written by GPT-6 Astra)