Skip to content
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

don't marshal integer values as msgpack floats #396

Merged
merged 4 commits into from
Apr 18, 2024

Commits on Apr 17, 2024

  1. don't marshal integer values as msgpack floats

    Round-tripping a large integer through a float64, even if the binary
    representation is exact, causes us to end up with a rounded string
    representation after decoding, because the decoded number has 52-bit
    precision instead of the 512 we use when dealing with string
    representations of large integers.
    jbardin committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    2c76a0a View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    269d3d4 View commit details
    Browse the repository at this point in the history
  2. update CHANGELOG.md

    jbardin committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    e766d1b View commit details
    Browse the repository at this point in the history
  3. update to changie log

    austinvalle committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    e2c18d4 View commit details
    Browse the repository at this point in the history