QVAC-18580 chore[skiplog]: release sdk 0.10.2#1939
Merged
simon-iribarren merged 2 commits intoMay 7, 2026
Merged
Conversation
…ated connect (tetherto#1934) The `await swarm.dht.fullyBootstrapped()` block in `ensureRPCConnection` (introduced in tetherto#1729) serialized 1-3s of cold-start time onto every first delegated call, regressing `loadModel.delegation.connection` vs 0.9.0. Local bench (5 cold consumer runs against the same long-running provider, model already in cache): - Baseline (current main): mean = 3.82s, p50 = 3.91s - This patch: mean = 1.18s, p50 = 1.15s (-2.64s, ≈3.2× faster, all runs succeeded) WB team reported the same regression as 2.46s → 8.34s on their environment when bumping @qvac/sdk 0.9.0 → 0.10.0; this fix is expected to land them in the 2-3s range, back inside the 0.9.0 baseline. `getSwarm()` is still invoked for its side-effect (lazy swarm creation on the first call). `dht.connect()` itself bootstraps on demand if the routing table isn't warm enough, so removing the explicit await loses no correctness — the explicit guard was conservative scaffolding from tetherto#1729 that never actually mattered on the SDK's normal init path, where `getSwarm()` is called early during registry/runtime initialisation. Refs QVAC-18144. (cherry picked from commit 318f0c6)
- Bump packages/sdk/package.json: 0.10.1 -> 0.10.2.
- Add packages/sdk/changelog/0.10.2/{CHANGELOG.md, CHANGELOG_LLM.md}.
- Rebuild root packages/sdk/CHANGELOG.md aggregate with v0.10.2 at top.
Hotfix release for the delegated-inference connection regression introduced
in v0.10.0 (tetherto#1934). NOTICE file unchanged — no dependency changes since v0.10.1.
Contributor
Contributor
Contributor
Contributor
Contributor
NamelsKing
approved these changes
May 7, 2026
Victor-Rodzko
approved these changes
May 7, 2026
Contributor
Author
|
/review |
Contributor
Tier-based Approval Status |
2357ceb
into
tetherto:release-sdk-0.10.2
37 of 46 checks passed
Proletter
pushed a commit
that referenced
this pull request
May 24, 2026
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.
Note: be concise and prefer bullet points.
🎯 What problem does this PR solve?
Cuts the v0.10.2 hotfix of
@qvac/sdkon therelease-sdk-0.10.2branch. Brings a single high-priority fix frommainto the 0.10.x line — the delegated-inference connection regression that was blocking the Workbench 0.7.0 release.dht.fullyBootstrapped()wait from delegated connect (loadModel.delegation.connection~3.2× faster: 3.82s → 1.18s mean, restoring v0.9.0-class latency).📝 How does it solve it?
#1934(fix, QVAC-18580) fromupstream/mainontorelease-sdk-0.10.1(5eb6b52e5).packages/sdk/package.json:0.10.1→0.10.2.packages/sdk/changelog/0.10.2/{CHANGELOG.md, CHANGELOG_LLM.md}.packages/sdk/CHANGELOG.mdaggregate with v0.10.2 at the top.packages/sdk/NOTICEis unchanged — no dependency changes since v0.10.1, so the existing attribution list is byte-identical and stays accurate.🧪 How was it tested?
The underlying fix (#1934) was benchmarked locally before merge (10 consumer↔provider runs each, against the published v0.10.1 build):
Failure-path tests (
delegated-connection-failure,delegated-provider-not-found,delegated-load-model-fallback-local) were re-run against the patched SDK and pass —PEER_NOT_FOUNDfor non-existent peers and connection timeouts for unreachable ones still fire on the same code path. Full verification notes are on PR #1934.This release branch carries only the cherry-pick + release metadata (4 files: package.json, root CHANGELOG.md, two changelog/0.10.2/ files). No other functional changes from main are included.
Once merged → triggers GPR publish for
@tetherto/sdk@0.10.2. A backmerge PR (release-sdk-0.10.2 → main) will follow to publish to npm and keep main aligned.