QVAC-18580 chore[skiplog]: backmerge release-sdk-0.10.2 — version bump, changelog#1940
Merged
simon-iribarren merged 2 commits intoMay 7, 2026
Conversation
- 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.
(cherry picked from commit a4f7225)
NamelsKing
approved these changes
May 7, 2026
Victor-Rodzko
approved these changes
May 7, 2026
Contributor
Author
|
/review |
Contributor
Tier-based Approval Status |
Proletter
pushed a commit
that referenced
this pull request
May 24, 2026
- 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 (#1934). NOTICE file unchanged — no dependency changes since v0.10.1.
(cherry picked from commit a4f7225)
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?
mainaligned with the v0.10.2 hotfix of@qvac/sdkshipping onrelease-sdk-0.10.2(companion release PR: QVAC-18580 chore[skiplog]: release sdk 0.10.2 #1939).mainwould have a hole in its changelog history (nochangelog/0.10.2/folder, no v0.10.2 entry in the aggregatedCHANGELOG.md) andpackage.jsonwould still claim0.10.1even though@qvac/sdk@0.10.2is on npm.📝 How does it solve it?
-x) the single release-metadata commita4f72257afromrelease-sdk-0.10.2ontomain.mainfrom its original merge (318f0c6a3).packages/sdk/package.json—0.10.1→0.10.2(single-line change, dependencies untouched)packages/sdk/changelog/0.10.2/{CHANGELOG.md, CHANGELOG_LLM.md}— generated changelog filespackages/sdk/CHANGELOG.md— aggregated changelog (v0.10.2 added at top)🧪 How was it tested?
This is a hand-crafted backmerge rather than a literal
git merge release-sdk-0.10.2 → mainbecausemainhas advanced pastrelease-sdk-0.10.1(the base ofrelease-sdk-0.10.2) on multiple SDK dependencies. A literal merge would either bring up conflict markers or quietly regress these versions:@qvac/diffusion-cpp^0.3.0^0.5.0@qvac/embed-llamacpp^0.14.0^0.15.0@qvac/llm-llamacpp^0.17.1^0.18.0@qvac/transcription-whispercpp^0.6.1^0.6.5hyperswarm^4.12.1^4.14.0hyperdht^6.23.0hyperblobs^2.8.0peerDependenciesblockThe cherry-pick of
a4f72257acarries only the version-bump line inpackage.json(0.10.1→0.10.2) plus the newchangelog/0.10.2/folder and the rootCHANGELOG.mdaggregate update. Verified locally withgit diff --stat upstream/main:Same shape as the previous backmerge (#1910 for v0.10.1).