-
Notifications
You must be signed in to change notification settings - Fork 2
relayburn-sdk-node: napi-rs bindings skeleton (#247 part a) #306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+1,282
−4
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ac0d53d
relayburn-sdk-node: napi-rs bindings skeleton (#247 part a)
willwashburn 290b970
relayburn-sdk-node: typed BurnError + kebab-case enum values + typed …
willwashburn 7ce35bf
Merge origin/main into rust-port/sdk-node-skeleton (resolve CHANGELOG…
Copilot a3e2f01
Merge remote-tracking branch 'origin/main' into pr306-fixups-2
willwashburn e5fcf8e
relayburn-sdk-node: tighten ingest() typed-error contract docs (revie…
willwashburn 8eccecd
relayburn-sdk-node: BigInt promotion on export verbs (review fix roun…
willwashburn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| // napi-rs build script. Generates the symbol-export table the Node loader | ||
| // needs. See https://napi.rs/docs/cli/build for details. | ||
| extern crate napi_build; | ||
|
|
||
| fn main() { | ||
| napi_build::setup(); | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move this note out of the root changelog.
This PR adds an internal
relayburn-sdk-nodecrate skeleton, while the cross-package packaging and published npm surface are explicitly deferred. Keeping this in the root[Unreleased]block overstates what is actually shipping from this change.As per coding guidelines,
CHANGELOG.md:Update the root \CHANGELOG.md` `[Unreleased]` block only for work that spans packages or warrants top-level summary; single-package work belongs only in that package's CHANGELOG`.🤖 Prompt for AI Agents
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pushing back on this one — keeping the entry in the root CHANGELOG. Per CLAUDE.md, the root file is the cross-package narrative for the rewrite, and
relayburn-sdk-nodeis intentionally an internal crate (publish = falsein Cargo.toml; not on crates.io and not in the per-package list of eight published TS packages). There's no per-crateCHANGELOG.mdto move it to — the npm publish workflow only touches the eightpackages/*files. The root[Unreleased]block is exactly where port-progress notes belong for anyone watching the 2.0 cutover, and the publish workflow will promote that block verbatim when the next release runs.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@willwashburn, that makes sense — thank you for the context. The rootCHANGELOG.mdserving as the unified port-progress narrative for the 2.0 cutover (withrelayburn-sdk-nodebeingpublish = falseand outside the eightpackages/*TS packages) is a meaningful distinction I missed. The entry belongs where it is. I'll stand down on this one.✏️ Learnings added