docs(sdk): add CHANGELOG migration note for 0.0.14 → 0.0.3x (#587)#629
Open
aggre wants to merge 2 commits into
Open
docs(sdk): add CHANGELOG migration note for 0.0.14 → 0.0.3x (#587)#629aggre wants to merge 2 commits into
aggre wants to merge 2 commits into
Conversation
Fulfills promised follow-up #2 from issue #587: a 'what moved' note covering the 0.0.14 → 0.0.3x transition. Docs-only, single new file. Covers four real surface changes: - Breaking: deep ./dist/* imports removed (0.0.14 → 0.0.33) - commit + /disclose published (0.0.33 → 0.0.35) - disclose.createProof added (0.0.35 → 0.0.36) - Network-error diagnostics enriched (#601, 0.0.36+) 0.0.14 baseline attributed to the reporter (not in repo git history; earliest commit is 0.0.23 with exports already encapsulated). Cites published npm versions, not in-repo commit-time version strings. PrepareOutput cleanup listed as 'tracked, not yet done' (design decision, out of scope for this change).
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
Adds BundleAnchor struct (packed uint64+uint32), registerDocumentRoot() function, and isRootRegistered() view to LemmaRegistry. Deployed as a new contract address — existing registerDocument() path is untouched. Part of the Merkle bundle anchor feature: batch N documents into one Merkle root on-chain, reducing gas cost ~90%. Foundry tests: 12/12 pass (8 existing + 4 new bundle tests).
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
Deploying web with
|
| Latest commit: |
b63aa69
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://8814dce6.web-zgj.pages.dev |
| Branch Preview URL: | https://feature-merkle-bundle-anchor.web-zgj.pages.dev |
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
mcp | b63aa69 | Jul 07 2026, 03:14 AM |
Deploying schemas with
|
| Latest commit: |
b63aa69
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a5a94189.schemas-a8x.pages.dev |
| Branch Preview URL: | https://feature-merkle-bundle-anchor.schemas-a8x.pages.dev |
Deploying demo with
|
| Latest commit: |
b63aa69
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://9638c61b.lemma-1ri.pages.dev |
| Branch Preview URL: | https://feature-merkle-bundle-anchor.lemma-1ri.pages.dev |
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
Adds
packages/sdk/CHANGELOG.md— a focused migration note covering the0.0.14 → 0.0.3xSDK transition. Fulfills promised follow-up #2 from issue #587 ("We'll add a 'what moved' note to the next release covering the 0.0.14 → 0.0.3x transition"), which had been overdue 6+ days.Changes
packages/sdk/CHANGELOG.md(114 lines, docs-only)Scope
Four real surface changes documented with before/after import snippets:
./dist/*imports no longer resolve (0.0.14→0.0.33) due topackage.json#exportsencapsulation.0.0.33→0.0.35) —commit(formerly internalcommitNormalized) as a root export, plus the./disclosesubpath.disclose.createProofadded (0.0.35→0.0.36), with a caveat that the 0.0.35 README advertised it before implementation.0.0.36\+) — network rejections now includeapiBase+apiKeystatus (non-breaking, message text only; fix(sdk): enrich fetch network errors with apiBase + apiKey status (#587) #601).Plus a clearly-labeled "Tracked, not yet done" forward reference to the
PrepareOutputcleanup (#587 item #3 — a type change pending a design decision).Accuracy notes
0.0.14baseline is attributed to the reporter's stated pre-upgrade version (issue Upgrade friction 0.0.14 → 0.0.33: deep-import removal + no offline commitment path #587), since it is not present in this repo's git history (earliestpackages/sdk/package.jsoncommit is0.0.23with the exports map already encapsulated).package.jsonstrings (which lag — e.g. thecommit//disclosepublish commit records0.0.34in-tree but shipped as0.0.35on npm).Refs #587.