feat: pack oversized BigInt as MessagePack ext 0x42 - #25693
Merged
Merged
Conversation
Values outside int64/uint64 pack as msgpackr useBigIntExtension (two's-complement, type 0x42) with a 256-byte payload cap. In-range values still use integer wire. Unpack of ext 0x42 returns bigint.
godsflaw
approved these changes
Sep 19, 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.
Summary
Pack
bigintvalues outside the int64/uint64 range as MessagePack ext type0x42(msgpackruseBigIntExtensiontwo's-complement payload) and unpack that type back tobigint. Payload is capped at 256 bytes. Values that still fit 64-bit integer range keep using integer wire.Test plan
node --test test/bigint.test.js(20 tests)npm test(233 tests, 0 fail)Covers uint256, 64-bit boundaries (
2^64,-2^63-1), nested arrays/maps/objects, 256-byte cap, empty/oversize/other-ext unpack, and in-range BigInt still on integer wire (0xcf/0xd3).